blob: bde1602a94f5c04e8f915944f2a08ea19d6989fa [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>
Thomas Gleixner28a27752018-04-29 15:01:37 +020054#include <asm/spec-ctrl.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
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -040074static bool __read_mostly nosmt;
75module_param(nosmt, bool, S_IRUGO);
76
Rusty Russell476bc002012-01-13 09:32:18 +103077static bool __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020078module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080079
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010080static bool __read_mostly enable_vnmi = 1;
81module_param_named(vnmi, enable_vnmi, bool, S_IRUGO);
82
Rusty Russell476bc002012-01-13 09:32:18 +103083static bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020084module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020085
Rusty Russell476bc002012-01-13 09:32:18 +103086static bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020087module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080088
Rusty Russell476bc002012-01-13 09:32:18 +103089static bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070090module_param_named(unrestricted_guest,
91 enable_unrestricted_guest, bool, S_IRUGO);
92
Xudong Hao83c3a332012-05-28 19:33:35 +080093static bool __read_mostly enable_ept_ad_bits = 1;
94module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
95
Avi Kivitya27685c2012-06-12 20:30:18 +030096static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020097module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030098
Rusty Russell476bc002012-01-13 09:32:18 +103099static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +0300100module_param(fasteoi, bool, S_IRUGO);
101
Yang Zhang5a717852013-04-11 19:25:16 +0800102static bool __read_mostly enable_apicv = 1;
Yang Zhang01e439b2013-04-11 19:25:12 +0800103module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +0800104
Abel Gordonabc4fc52013-04-18 14:35:25 +0300105static bool __read_mostly enable_shadow_vmcs = 1;
106module_param_named(enable_shadow_vmcs, enable_shadow_vmcs, bool, S_IRUGO);
Nadav Har'El801d3422011-05-25 23:02:23 +0300107/*
108 * If nested=1, nested virtualization is supported, i.e., guests may use
109 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
110 * use VMX instructions.
111 */
Rusty Russell476bc002012-01-13 09:32:18 +1030112static bool __read_mostly nested = 0;
Nadav Har'El801d3422011-05-25 23:02:23 +0300113module_param(nested, bool, S_IRUGO);
114
Wanpeng Li20300092014-12-02 19:14:59 +0800115static u64 __read_mostly host_xss;
116
Kai Huang843e4332015-01-28 10:54:28 +0800117static bool __read_mostly enable_pml = 1;
118module_param_named(pml, enable_pml, bool, S_IRUGO);
119
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100120#define MSR_TYPE_R 1
121#define MSR_TYPE_W 2
122#define MSR_TYPE_RW 3
123
124#define MSR_BITMAP_MODE_X2APIC 1
125#define MSR_BITMAP_MODE_X2APIC_APICV 2
126#define MSR_BITMAP_MODE_LM 4
127
Haozhong Zhang64903d62015-10-20 15:39:09 +0800128#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
129
Yunhong Jiang64672c92016-06-13 14:19:59 -0700130/* Guest_tsc -> host_tsc conversion requires 64-bit division. */
131static int __read_mostly cpu_preemption_timer_multi;
132static bool __read_mostly enable_preemption_timer = 1;
133#ifdef CONFIG_X86_64
134module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
135#endif
136
Gleb Natapov50378782013-02-04 16:00:28 +0200137#define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD)
Sean Christopherson1706bd02018-03-05 12:04:38 -0800138#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR0_NE
139#define KVM_VM_CR0_ALWAYS_ON \
140 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | \
141 X86_CR0_WP | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200142#define KVM_CR4_GUEST_OWNED_BITS \
143 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
Yu Zhangfd8cb432017-08-24 20:27:56 +0800144 | X86_CR4_OSXMMEXCPT | X86_CR4_LA57 | X86_CR4_TSD)
Avi Kivity4c386092009-12-07 12:26:18 +0200145
Sean Christopherson5dc1f042018-03-05 12:04:39 -0800146#define KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR4_VMXE
Avi Kivitycdc0e242009-12-06 17:21:14 +0200147#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
148#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
149
Avi Kivity78ac8b42010-04-08 18:19:35 +0300150#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
151
Jan Kiszkaf4124502014-03-07 20:03:13 +0100152#define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5
153
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800154/*
Jan Dakinevich16c2aec2016-10-28 07:00:30 +0300155 * Hyper-V requires all of these, so mark them as supported even though
156 * they are just treated the same as all-context.
157 */
158#define VMX_VPID_EXTENT_SUPPORTED_MASK \
159 (VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT | \
160 VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT | \
161 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT | \
162 VMX_VPID_EXTENT_SINGLE_NON_GLOBAL_BIT)
163
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800164/*
165 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
166 * ple_gap: upper bound on the amount of time between two successive
167 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500168 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800169 * ple_window: upper bound on the amount of time a guest is allowed to execute
170 * in a PAUSE loop. Tests indicate that most spinlocks are held for
171 * less than 2^12 cycles
172 * Time is measured based on a counter that runs at the same rate as the TSC,
173 * refer SDM volume 3b section 21.6.13 & 22.1.3.
174 */
Babu Mogerc8e88712018-03-16 16:37:24 -0400175static unsigned int ple_gap = KVM_DEFAULT_PLE_GAP;
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200176
Babu Moger7fbc85a2018-03-16 16:37:22 -0400177static unsigned int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
178module_param(ple_window, uint, 0444);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800179
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200180/* Default doubles per-vcpu window every exit. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400181static unsigned int ple_window_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400182module_param(ple_window_grow, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200183
184/* Default resets per-vcpu window every exit to ple_window. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400185static unsigned int ple_window_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400186module_param(ple_window_shrink, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200187
188/* Default is to compute the maximum so we can never overflow. */
Babu Moger7fbc85a2018-03-16 16:37:22 -0400189static unsigned int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
190module_param(ple_window_max, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200191
Avi Kivity83287ea422012-09-16 15:10:57 +0300192extern const ulong vmx_return;
193
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200194static DEFINE_STATIC_KEY_FALSE(vmx_l1d_should_flush);
195
196/* These MUST be in sync with vmentry_l1d_param order. */
197enum vmx_l1d_flush_state {
198 VMENTER_L1D_FLUSH_NEVER,
199 VMENTER_L1D_FLUSH_COND,
200 VMENTER_L1D_FLUSH_ALWAYS,
201};
202
203static enum vmx_l1d_flush_state __read_mostly vmentry_l1d_flush = VMENTER_L1D_FLUSH_COND;
204
205static const struct {
206 const char *option;
207 enum vmx_l1d_flush_state cmd;
208} vmentry_l1d_param[] = {
209 {"never", VMENTER_L1D_FLUSH_NEVER},
210 {"cond", VMENTER_L1D_FLUSH_COND},
211 {"always", VMENTER_L1D_FLUSH_ALWAYS},
212};
213
214static int vmentry_l1d_flush_set(const char *s, const struct kernel_param *kp)
215{
216 unsigned int i;
217
218 if (!s)
219 return -EINVAL;
220
221 for (i = 0; i < ARRAY_SIZE(vmentry_l1d_param); i++) {
222 if (!strcmp(s, vmentry_l1d_param[i].option)) {
223 vmentry_l1d_flush = vmentry_l1d_param[i].cmd;
224 return 0;
225 }
226 }
227
228 return -EINVAL;
229}
230
231static int vmentry_l1d_flush_get(char *s, const struct kernel_param *kp)
232{
233 return sprintf(s, "%s\n", vmentry_l1d_param[vmentry_l1d_flush].option);
234}
235
236static const struct kernel_param_ops vmentry_l1d_flush_ops = {
237 .set = vmentry_l1d_flush_set,
238 .get = vmentry_l1d_flush_get,
239};
240module_param_cb(vmentry_l1d_flush, &vmentry_l1d_flush_ops, &vmentry_l1d_flush, S_IRUGO);
241
Sean Christopherson40bbb9d2018-03-20 12:17:20 -0700242struct kvm_vmx {
243 struct kvm kvm;
244
245 unsigned int tss_addr;
246 bool ept_identity_pagetable_done;
247 gpa_t ept_identity_map_addr;
248};
249
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200250#define NR_AUTOLOAD_MSRS 8
Avi Kivity61d2ef22010-04-28 16:40:38 +0300251
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400252struct vmcs {
253 u32 revision_id;
254 u32 abort;
255 char data[0];
256};
257
Nadav Har'Eld462b812011-05-24 15:26:10 +0300258/*
259 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
260 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
261 * loaded on this CPU (so we can clear them if the CPU goes down).
262 */
263struct loaded_vmcs {
264 struct vmcs *vmcs;
Jim Mattson355f4fb2016-10-28 08:29:39 -0700265 struct vmcs *shadow_vmcs;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300266 int cpu;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +0200267 bool launched;
268 bool nmi_known_unmasked;
Ladi Prosek44889942017-09-22 07:53:15 +0200269 unsigned long vmcs_host_cr3; /* May not match real cr3 */
270 unsigned long vmcs_host_cr4; /* May not match real cr4 */
Paolo Bonzini8a1b4392017-11-06 13:31:12 +0100271 /* Support for vnmi-less CPUs */
272 int soft_vnmi_blocked;
273 ktime_t entry_time;
274 s64 vnmi_blocked_time;
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100275 unsigned long *msr_bitmap;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300276 struct list_head loaded_vmcss_on_cpu_link;
277};
278
Avi Kivity26bb0982009-09-07 11:14:12 +0300279struct shared_msr_entry {
280 unsigned index;
281 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200282 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300283};
284
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300285/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300286 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
287 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
288 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
289 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
290 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
291 * More than one of these structures may exist, if L1 runs multiple L2 guests.
Jim Mattsonde3a0022017-11-27 17:22:25 -0600292 * nested_vmx_run() will use the data here to build the vmcs02: a VMCS for the
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300293 * underlying hardware which will be used to run L2.
294 * This structure is packed to ensure that its layout is identical across
295 * machines (necessary for live migration).
Jim Mattsonb348e792018-05-01 15:40:27 -0700296 *
297 * IMPORTANT: Changing the layout of existing fields in this structure
298 * will break save/restore compatibility with older kvm releases. When
299 * adding new fields, either use space in the reserved padding* arrays
300 * or add the new fields to the end of the structure.
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300301 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300302typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300303struct __packed vmcs12 {
304 /* According to the Intel spec, a VMCS region must start with the
305 * following two fields. Then follow implementation-specific data.
306 */
307 u32 revision_id;
308 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300309
Nadav Har'El27d6c862011-05-25 23:06:59 +0300310 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
311 u32 padding[7]; /* room for future expansion */
312
Nadav Har'El22bd0352011-05-25 23:05:57 +0300313 u64 io_bitmap_a;
314 u64 io_bitmap_b;
315 u64 msr_bitmap;
316 u64 vm_exit_msr_store_addr;
317 u64 vm_exit_msr_load_addr;
318 u64 vm_entry_msr_load_addr;
319 u64 tsc_offset;
320 u64 virtual_apic_page_addr;
321 u64 apic_access_addr;
Wincy Van705699a2015-02-03 23:58:17 +0800322 u64 posted_intr_desc_addr;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300323 u64 ept_pointer;
Wincy Van608406e2015-02-03 23:57:51 +0800324 u64 eoi_exit_bitmap0;
325 u64 eoi_exit_bitmap1;
326 u64 eoi_exit_bitmap2;
327 u64 eoi_exit_bitmap3;
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800328 u64 xss_exit_bitmap;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300329 u64 guest_physical_address;
330 u64 vmcs_link_pointer;
331 u64 guest_ia32_debugctl;
332 u64 guest_ia32_pat;
333 u64 guest_ia32_efer;
334 u64 guest_ia32_perf_global_ctrl;
335 u64 guest_pdptr0;
336 u64 guest_pdptr1;
337 u64 guest_pdptr2;
338 u64 guest_pdptr3;
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100339 u64 guest_bndcfgs;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300340 u64 host_ia32_pat;
341 u64 host_ia32_efer;
342 u64 host_ia32_perf_global_ctrl;
Jim Mattsonb348e792018-05-01 15:40:27 -0700343 u64 vmread_bitmap;
344 u64 vmwrite_bitmap;
345 u64 vm_function_control;
346 u64 eptp_list_address;
347 u64 pml_address;
348 u64 padding64[3]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300349 /*
350 * To allow migration of L1 (complete with its L2 guests) between
351 * machines of different natural widths (32 or 64 bit), we cannot have
352 * unsigned long fields with no explict size. We use u64 (aliased
353 * natural_width) instead. Luckily, x86 is little-endian.
354 */
355 natural_width cr0_guest_host_mask;
356 natural_width cr4_guest_host_mask;
357 natural_width cr0_read_shadow;
358 natural_width cr4_read_shadow;
359 natural_width cr3_target_value0;
360 natural_width cr3_target_value1;
361 natural_width cr3_target_value2;
362 natural_width cr3_target_value3;
363 natural_width exit_qualification;
364 natural_width guest_linear_address;
365 natural_width guest_cr0;
366 natural_width guest_cr3;
367 natural_width guest_cr4;
368 natural_width guest_es_base;
369 natural_width guest_cs_base;
370 natural_width guest_ss_base;
371 natural_width guest_ds_base;
372 natural_width guest_fs_base;
373 natural_width guest_gs_base;
374 natural_width guest_ldtr_base;
375 natural_width guest_tr_base;
376 natural_width guest_gdtr_base;
377 natural_width guest_idtr_base;
378 natural_width guest_dr7;
379 natural_width guest_rsp;
380 natural_width guest_rip;
381 natural_width guest_rflags;
382 natural_width guest_pending_dbg_exceptions;
383 natural_width guest_sysenter_esp;
384 natural_width guest_sysenter_eip;
385 natural_width host_cr0;
386 natural_width host_cr3;
387 natural_width host_cr4;
388 natural_width host_fs_base;
389 natural_width host_gs_base;
390 natural_width host_tr_base;
391 natural_width host_gdtr_base;
392 natural_width host_idtr_base;
393 natural_width host_ia32_sysenter_esp;
394 natural_width host_ia32_sysenter_eip;
395 natural_width host_rsp;
396 natural_width host_rip;
397 natural_width paddingl[8]; /* room for future expansion */
398 u32 pin_based_vm_exec_control;
399 u32 cpu_based_vm_exec_control;
400 u32 exception_bitmap;
401 u32 page_fault_error_code_mask;
402 u32 page_fault_error_code_match;
403 u32 cr3_target_count;
404 u32 vm_exit_controls;
405 u32 vm_exit_msr_store_count;
406 u32 vm_exit_msr_load_count;
407 u32 vm_entry_controls;
408 u32 vm_entry_msr_load_count;
409 u32 vm_entry_intr_info_field;
410 u32 vm_entry_exception_error_code;
411 u32 vm_entry_instruction_len;
412 u32 tpr_threshold;
413 u32 secondary_vm_exec_control;
414 u32 vm_instruction_error;
415 u32 vm_exit_reason;
416 u32 vm_exit_intr_info;
417 u32 vm_exit_intr_error_code;
418 u32 idt_vectoring_info_field;
419 u32 idt_vectoring_error_code;
420 u32 vm_exit_instruction_len;
421 u32 vmx_instruction_info;
422 u32 guest_es_limit;
423 u32 guest_cs_limit;
424 u32 guest_ss_limit;
425 u32 guest_ds_limit;
426 u32 guest_fs_limit;
427 u32 guest_gs_limit;
428 u32 guest_ldtr_limit;
429 u32 guest_tr_limit;
430 u32 guest_gdtr_limit;
431 u32 guest_idtr_limit;
432 u32 guest_es_ar_bytes;
433 u32 guest_cs_ar_bytes;
434 u32 guest_ss_ar_bytes;
435 u32 guest_ds_ar_bytes;
436 u32 guest_fs_ar_bytes;
437 u32 guest_gs_ar_bytes;
438 u32 guest_ldtr_ar_bytes;
439 u32 guest_tr_ar_bytes;
440 u32 guest_interruptibility_info;
441 u32 guest_activity_state;
442 u32 guest_sysenter_cs;
443 u32 host_ia32_sysenter_cs;
Jan Kiszka0238ea92013-03-13 11:31:24 +0100444 u32 vmx_preemption_timer_value;
445 u32 padding32[7]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300446 u16 virtual_processor_id;
Wincy Van705699a2015-02-03 23:58:17 +0800447 u16 posted_intr_nv;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300448 u16 guest_es_selector;
449 u16 guest_cs_selector;
450 u16 guest_ss_selector;
451 u16 guest_ds_selector;
452 u16 guest_fs_selector;
453 u16 guest_gs_selector;
454 u16 guest_ldtr_selector;
455 u16 guest_tr_selector;
Wincy Van608406e2015-02-03 23:57:51 +0800456 u16 guest_intr_status;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300457 u16 host_es_selector;
458 u16 host_cs_selector;
459 u16 host_ss_selector;
460 u16 host_ds_selector;
461 u16 host_fs_selector;
462 u16 host_gs_selector;
463 u16 host_tr_selector;
Jim Mattsonb348e792018-05-01 15:40:27 -0700464 u16 guest_pml_index;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300465};
466
467/*
Jim Mattson21ebf532018-05-01 15:40:28 -0700468 * For save/restore compatibility, the vmcs12 field offsets must not change.
469 */
470#define CHECK_OFFSET(field, loc) \
471 BUILD_BUG_ON_MSG(offsetof(struct vmcs12, field) != (loc), \
472 "Offset of " #field " in struct vmcs12 has changed.")
473
474static inline void vmx_check_vmcs12_offsets(void) {
475 CHECK_OFFSET(revision_id, 0);
476 CHECK_OFFSET(abort, 4);
477 CHECK_OFFSET(launch_state, 8);
478 CHECK_OFFSET(io_bitmap_a, 40);
479 CHECK_OFFSET(io_bitmap_b, 48);
480 CHECK_OFFSET(msr_bitmap, 56);
481 CHECK_OFFSET(vm_exit_msr_store_addr, 64);
482 CHECK_OFFSET(vm_exit_msr_load_addr, 72);
483 CHECK_OFFSET(vm_entry_msr_load_addr, 80);
484 CHECK_OFFSET(tsc_offset, 88);
485 CHECK_OFFSET(virtual_apic_page_addr, 96);
486 CHECK_OFFSET(apic_access_addr, 104);
487 CHECK_OFFSET(posted_intr_desc_addr, 112);
488 CHECK_OFFSET(ept_pointer, 120);
489 CHECK_OFFSET(eoi_exit_bitmap0, 128);
490 CHECK_OFFSET(eoi_exit_bitmap1, 136);
491 CHECK_OFFSET(eoi_exit_bitmap2, 144);
492 CHECK_OFFSET(eoi_exit_bitmap3, 152);
493 CHECK_OFFSET(xss_exit_bitmap, 160);
494 CHECK_OFFSET(guest_physical_address, 168);
495 CHECK_OFFSET(vmcs_link_pointer, 176);
496 CHECK_OFFSET(guest_ia32_debugctl, 184);
497 CHECK_OFFSET(guest_ia32_pat, 192);
498 CHECK_OFFSET(guest_ia32_efer, 200);
499 CHECK_OFFSET(guest_ia32_perf_global_ctrl, 208);
500 CHECK_OFFSET(guest_pdptr0, 216);
501 CHECK_OFFSET(guest_pdptr1, 224);
502 CHECK_OFFSET(guest_pdptr2, 232);
503 CHECK_OFFSET(guest_pdptr3, 240);
504 CHECK_OFFSET(guest_bndcfgs, 248);
505 CHECK_OFFSET(host_ia32_pat, 256);
506 CHECK_OFFSET(host_ia32_efer, 264);
507 CHECK_OFFSET(host_ia32_perf_global_ctrl, 272);
508 CHECK_OFFSET(vmread_bitmap, 280);
509 CHECK_OFFSET(vmwrite_bitmap, 288);
510 CHECK_OFFSET(vm_function_control, 296);
511 CHECK_OFFSET(eptp_list_address, 304);
512 CHECK_OFFSET(pml_address, 312);
513 CHECK_OFFSET(cr0_guest_host_mask, 344);
514 CHECK_OFFSET(cr4_guest_host_mask, 352);
515 CHECK_OFFSET(cr0_read_shadow, 360);
516 CHECK_OFFSET(cr4_read_shadow, 368);
517 CHECK_OFFSET(cr3_target_value0, 376);
518 CHECK_OFFSET(cr3_target_value1, 384);
519 CHECK_OFFSET(cr3_target_value2, 392);
520 CHECK_OFFSET(cr3_target_value3, 400);
521 CHECK_OFFSET(exit_qualification, 408);
522 CHECK_OFFSET(guest_linear_address, 416);
523 CHECK_OFFSET(guest_cr0, 424);
524 CHECK_OFFSET(guest_cr3, 432);
525 CHECK_OFFSET(guest_cr4, 440);
526 CHECK_OFFSET(guest_es_base, 448);
527 CHECK_OFFSET(guest_cs_base, 456);
528 CHECK_OFFSET(guest_ss_base, 464);
529 CHECK_OFFSET(guest_ds_base, 472);
530 CHECK_OFFSET(guest_fs_base, 480);
531 CHECK_OFFSET(guest_gs_base, 488);
532 CHECK_OFFSET(guest_ldtr_base, 496);
533 CHECK_OFFSET(guest_tr_base, 504);
534 CHECK_OFFSET(guest_gdtr_base, 512);
535 CHECK_OFFSET(guest_idtr_base, 520);
536 CHECK_OFFSET(guest_dr7, 528);
537 CHECK_OFFSET(guest_rsp, 536);
538 CHECK_OFFSET(guest_rip, 544);
539 CHECK_OFFSET(guest_rflags, 552);
540 CHECK_OFFSET(guest_pending_dbg_exceptions, 560);
541 CHECK_OFFSET(guest_sysenter_esp, 568);
542 CHECK_OFFSET(guest_sysenter_eip, 576);
543 CHECK_OFFSET(host_cr0, 584);
544 CHECK_OFFSET(host_cr3, 592);
545 CHECK_OFFSET(host_cr4, 600);
546 CHECK_OFFSET(host_fs_base, 608);
547 CHECK_OFFSET(host_gs_base, 616);
548 CHECK_OFFSET(host_tr_base, 624);
549 CHECK_OFFSET(host_gdtr_base, 632);
550 CHECK_OFFSET(host_idtr_base, 640);
551 CHECK_OFFSET(host_ia32_sysenter_esp, 648);
552 CHECK_OFFSET(host_ia32_sysenter_eip, 656);
553 CHECK_OFFSET(host_rsp, 664);
554 CHECK_OFFSET(host_rip, 672);
555 CHECK_OFFSET(pin_based_vm_exec_control, 744);
556 CHECK_OFFSET(cpu_based_vm_exec_control, 748);
557 CHECK_OFFSET(exception_bitmap, 752);
558 CHECK_OFFSET(page_fault_error_code_mask, 756);
559 CHECK_OFFSET(page_fault_error_code_match, 760);
560 CHECK_OFFSET(cr3_target_count, 764);
561 CHECK_OFFSET(vm_exit_controls, 768);
562 CHECK_OFFSET(vm_exit_msr_store_count, 772);
563 CHECK_OFFSET(vm_exit_msr_load_count, 776);
564 CHECK_OFFSET(vm_entry_controls, 780);
565 CHECK_OFFSET(vm_entry_msr_load_count, 784);
566 CHECK_OFFSET(vm_entry_intr_info_field, 788);
567 CHECK_OFFSET(vm_entry_exception_error_code, 792);
568 CHECK_OFFSET(vm_entry_instruction_len, 796);
569 CHECK_OFFSET(tpr_threshold, 800);
570 CHECK_OFFSET(secondary_vm_exec_control, 804);
571 CHECK_OFFSET(vm_instruction_error, 808);
572 CHECK_OFFSET(vm_exit_reason, 812);
573 CHECK_OFFSET(vm_exit_intr_info, 816);
574 CHECK_OFFSET(vm_exit_intr_error_code, 820);
575 CHECK_OFFSET(idt_vectoring_info_field, 824);
576 CHECK_OFFSET(idt_vectoring_error_code, 828);
577 CHECK_OFFSET(vm_exit_instruction_len, 832);
578 CHECK_OFFSET(vmx_instruction_info, 836);
579 CHECK_OFFSET(guest_es_limit, 840);
580 CHECK_OFFSET(guest_cs_limit, 844);
581 CHECK_OFFSET(guest_ss_limit, 848);
582 CHECK_OFFSET(guest_ds_limit, 852);
583 CHECK_OFFSET(guest_fs_limit, 856);
584 CHECK_OFFSET(guest_gs_limit, 860);
585 CHECK_OFFSET(guest_ldtr_limit, 864);
586 CHECK_OFFSET(guest_tr_limit, 868);
587 CHECK_OFFSET(guest_gdtr_limit, 872);
588 CHECK_OFFSET(guest_idtr_limit, 876);
589 CHECK_OFFSET(guest_es_ar_bytes, 880);
590 CHECK_OFFSET(guest_cs_ar_bytes, 884);
591 CHECK_OFFSET(guest_ss_ar_bytes, 888);
592 CHECK_OFFSET(guest_ds_ar_bytes, 892);
593 CHECK_OFFSET(guest_fs_ar_bytes, 896);
594 CHECK_OFFSET(guest_gs_ar_bytes, 900);
595 CHECK_OFFSET(guest_ldtr_ar_bytes, 904);
596 CHECK_OFFSET(guest_tr_ar_bytes, 908);
597 CHECK_OFFSET(guest_interruptibility_info, 912);
598 CHECK_OFFSET(guest_activity_state, 916);
599 CHECK_OFFSET(guest_sysenter_cs, 920);
600 CHECK_OFFSET(host_ia32_sysenter_cs, 924);
601 CHECK_OFFSET(vmx_preemption_timer_value, 928);
602 CHECK_OFFSET(virtual_processor_id, 960);
603 CHECK_OFFSET(posted_intr_nv, 962);
604 CHECK_OFFSET(guest_es_selector, 964);
605 CHECK_OFFSET(guest_cs_selector, 966);
606 CHECK_OFFSET(guest_ss_selector, 968);
607 CHECK_OFFSET(guest_ds_selector, 970);
608 CHECK_OFFSET(guest_fs_selector, 972);
609 CHECK_OFFSET(guest_gs_selector, 974);
610 CHECK_OFFSET(guest_ldtr_selector, 976);
611 CHECK_OFFSET(guest_tr_selector, 978);
612 CHECK_OFFSET(guest_intr_status, 980);
613 CHECK_OFFSET(host_es_selector, 982);
614 CHECK_OFFSET(host_cs_selector, 984);
615 CHECK_OFFSET(host_ss_selector, 986);
616 CHECK_OFFSET(host_ds_selector, 988);
617 CHECK_OFFSET(host_fs_selector, 990);
618 CHECK_OFFSET(host_gs_selector, 992);
619 CHECK_OFFSET(host_tr_selector, 994);
620 CHECK_OFFSET(guest_pml_index, 996);
621}
622
623/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300624 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
625 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
626 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
Jim Mattsonb348e792018-05-01 15:40:27 -0700627 *
628 * IMPORTANT: Changing this value will break save/restore compatibility with
629 * older kvm releases.
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300630 */
631#define VMCS12_REVISION 0x11e57ed0
632
633/*
634 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
635 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
636 * current implementation, 4K are reserved to avoid future complications.
637 */
638#define VMCS12_SIZE 0x1000
639
640/*
Jim Mattson5b157062017-12-22 12:11:12 -0800641 * VMCS12_MAX_FIELD_INDEX is the highest index value used in any
642 * supported VMCS12 field encoding.
643 */
644#define VMCS12_MAX_FIELD_INDEX 0x17
645
Paolo Bonzini6677f3d2018-02-26 13:40:08 +0100646struct nested_vmx_msrs {
647 /*
648 * We only store the "true" versions of the VMX capability MSRs. We
649 * generate the "non-true" versions by setting the must-be-1 bits
650 * according to the SDM.
651 */
652 u32 procbased_ctls_low;
653 u32 procbased_ctls_high;
654 u32 secondary_ctls_low;
655 u32 secondary_ctls_high;
656 u32 pinbased_ctls_low;
657 u32 pinbased_ctls_high;
658 u32 exit_ctls_low;
659 u32 exit_ctls_high;
660 u32 entry_ctls_low;
661 u32 entry_ctls_high;
662 u32 misc_low;
663 u32 misc_high;
664 u32 ept_caps;
665 u32 vpid_caps;
666 u64 basic;
667 u64 cr0_fixed0;
668 u64 cr0_fixed1;
669 u64 cr4_fixed0;
670 u64 cr4_fixed1;
671 u64 vmcs_enum;
672 u64 vmfunc_controls;
673};
674
Jim Mattson5b157062017-12-22 12:11:12 -0800675/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300676 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
677 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
678 */
679struct nested_vmx {
680 /* Has the level1 guest done vmxon? */
681 bool vmxon;
Bandan Das3573e222014-05-06 02:19:16 -0400682 gpa_t vmxon_ptr;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400683 bool pml_full;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300684
685 /* The guest-physical address of the current VMCS L1 keeps for L2 */
686 gpa_t current_vmptr;
David Matlack4f2777b2016-07-13 17:16:37 -0700687 /*
688 * Cache of the guest's VMCS, existing outside of guest memory.
689 * Loaded from guest memory during VMPTRLD. Flushed to guest
David Matlack8ca44e82017-08-01 14:00:39 -0700690 * memory during VMCLEAR and VMPTRLD.
David Matlack4f2777b2016-07-13 17:16:37 -0700691 */
692 struct vmcs12 *cached_vmcs12;
Abel Gordon012f83c2013-04-18 14:39:25 +0300693 /*
694 * Indicates if the shadow vmcs must be updated with the
695 * data hold by vmcs12
696 */
697 bool sync_shadow_vmcs;
Paolo Bonzini74a497f2017-12-20 13:55:39 +0100698 bool dirty_vmcs12;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300699
Jim Mattson8d860bb2018-05-09 16:56:05 -0400700 bool change_vmcs01_virtual_apic_mode;
701
Nadav Har'El644d7112011-05-25 23:12:35 +0300702 /* L2 must run next, and mustn't decide to exit to L1. */
703 bool nested_run_pending;
Jim Mattsonde3a0022017-11-27 17:22:25 -0600704
705 struct loaded_vmcs vmcs02;
706
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300707 /*
Jim Mattsonde3a0022017-11-27 17:22:25 -0600708 * Guest pages referred to in the vmcs02 with host-physical
709 * pointers, so we must keep them pinned while L2 runs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300710 */
711 struct page *apic_access_page;
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800712 struct page *virtual_apic_page;
Wincy Van705699a2015-02-03 23:58:17 +0800713 struct page *pi_desc_page;
714 struct pi_desc *pi_desc;
715 bool pi_pending;
716 u16 posted_intr_nv;
Jan Kiszkaf4124502014-03-07 20:03:13 +0100717
718 struct hrtimer preemption_timer;
719 bool preemption_timer_expired;
Jan Kiszka2996fca2014-06-16 13:59:43 +0200720
721 /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */
722 u64 vmcs01_debugctl;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800723
Wanpeng Li5c614b32015-10-13 09:18:36 -0700724 u16 vpid02;
725 u16 last_vpid;
726
Paolo Bonzini6677f3d2018-02-26 13:40:08 +0100727 struct nested_vmx_msrs msrs;
Ladi Prosek72e9cbd2017-10-11 16:54:43 +0200728
729 /* SMM related state */
730 struct {
731 /* in VMX operation on SMM entry? */
732 bool vmxon;
733 /* in guest mode on SMM entry? */
734 bool guest_mode;
735 } smm;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300736};
737
Yang Zhang01e439b2013-04-11 19:25:12 +0800738#define POSTED_INTR_ON 0
Feng Wuebbfc762015-09-18 22:29:46 +0800739#define POSTED_INTR_SN 1
740
Yang Zhang01e439b2013-04-11 19:25:12 +0800741/* Posted-Interrupt Descriptor */
742struct pi_desc {
743 u32 pir[8]; /* Posted interrupt requested */
Feng Wu6ef15222015-09-18 22:29:45 +0800744 union {
745 struct {
746 /* bit 256 - Outstanding Notification */
747 u16 on : 1,
748 /* bit 257 - Suppress Notification */
749 sn : 1,
750 /* bit 271:258 - Reserved */
751 rsvd_1 : 14;
752 /* bit 279:272 - Notification Vector */
753 u8 nv;
754 /* bit 287:280 - Reserved */
755 u8 rsvd_2;
756 /* bit 319:288 - Notification Destination */
757 u32 ndst;
758 };
759 u64 control;
760 };
761 u32 rsvd[6];
Yang Zhang01e439b2013-04-11 19:25:12 +0800762} __aligned(64);
763
Yang Zhanga20ed542013-04-11 19:25:15 +0800764static bool pi_test_and_set_on(struct pi_desc *pi_desc)
765{
766 return test_and_set_bit(POSTED_INTR_ON,
767 (unsigned long *)&pi_desc->control);
768}
769
770static bool pi_test_and_clear_on(struct pi_desc *pi_desc)
771{
772 return test_and_clear_bit(POSTED_INTR_ON,
773 (unsigned long *)&pi_desc->control);
774}
775
776static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc)
777{
778 return test_and_set_bit(vector, (unsigned long *)pi_desc->pir);
779}
780
Feng Wuebbfc762015-09-18 22:29:46 +0800781static inline void pi_clear_sn(struct pi_desc *pi_desc)
782{
783 return clear_bit(POSTED_INTR_SN,
784 (unsigned long *)&pi_desc->control);
785}
786
787static inline void pi_set_sn(struct pi_desc *pi_desc)
788{
789 return set_bit(POSTED_INTR_SN,
790 (unsigned long *)&pi_desc->control);
791}
792
Paolo Bonziniad361092016-09-20 16:15:05 +0200793static inline void pi_clear_on(struct pi_desc *pi_desc)
794{
795 clear_bit(POSTED_INTR_ON,
796 (unsigned long *)&pi_desc->control);
797}
798
Feng Wuebbfc762015-09-18 22:29:46 +0800799static inline int pi_test_on(struct pi_desc *pi_desc)
800{
801 return test_bit(POSTED_INTR_ON,
802 (unsigned long *)&pi_desc->control);
803}
804
805static inline int pi_test_sn(struct pi_desc *pi_desc)
806{
807 return test_bit(POSTED_INTR_SN,
808 (unsigned long *)&pi_desc->control);
809}
810
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400811struct vmx_msrs {
812 unsigned int nr;
813 struct vmx_msr_entry val[NR_AUTOLOAD_MSRS];
814};
815
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400816struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000817 struct kvm_vcpu vcpu;
Avi Kivity313dbd492008-07-17 18:04:30 +0300818 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300819 u8 fail;
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100820 u8 msr_bitmap_mode;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300821 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200822 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200823 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300824 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400825 int nmsrs;
826 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800827 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400828#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300829 u64 msr_host_kernel_gs_base;
830 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400831#endif
Ashok Raj15d45072018-02-01 22:59:43 +0100832
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +0100833 u64 arch_capabilities;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100834 u64 spec_ctrl;
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +0100835
Gleb Natapov2961e8762013-11-25 15:37:13 +0200836 u32 vm_entry_controls_shadow;
837 u32 vm_exit_controls_shadow;
Paolo Bonzini80154d72017-08-24 13:55:35 +0200838 u32 secondary_exec_control;
839
Nadav Har'Eld462b812011-05-24 15:26:10 +0300840 /*
841 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
842 * non-nested (L1) guest, it always points to vmcs01. For a nested
843 * guest (L2), it points to a different VMCS.
844 */
845 struct loaded_vmcs vmcs01;
846 struct loaded_vmcs *loaded_vmcs;
847 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300848 struct msr_autoload {
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400849 struct vmx_msrs guest;
850 struct vmx_msrs host;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300851 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400852 struct {
853 int loaded;
854 u16 fs_sel, gs_sel, ldt_sel;
Avi Kivityb2da15a2012-05-13 19:53:24 +0300855#ifdef CONFIG_X86_64
856 u16 ds_sel, es_sel;
857#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +0200858 int gs_ldt_reload_needed;
859 int fs_reload_needed;
Liu, Jinsongda8999d2014-02-24 10:55:46 +0000860 u64 msr_host_bndcfgs;
Mike Dayd77c26f2007-10-08 09:02:08 -0400861 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200862 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300863 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300864 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300865 struct kvm_segment segs[8];
866 } rmode;
867 struct {
868 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300869 struct kvm_save_segment {
870 u16 selector;
871 unsigned long base;
872 u32 limit;
873 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300874 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +0300875 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800876 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300877 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200878
Andi Kleena0861c02009-06-08 17:37:09 +0800879 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800880
Yang Zhang01e439b2013-04-11 19:25:12 +0800881 /* Posted interrupt descriptor */
882 struct pi_desc pi_desc;
883
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300884 /* Support for a guest hypervisor (nested VMX) */
885 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +0200886
887 /* Dynamic PLE window. */
888 int ple_window;
889 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +0800890
891 /* Support for PML */
892#define PML_ENTITY_NUM 512
893 struct page *pml_pg;
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800894
Yunhong Jiang64672c92016-06-13 14:19:59 -0700895 /* apic deadline value in host tsc */
896 u64 hv_deadline_tsc;
897
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800898 u64 current_tsc_ratio;
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800899
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800900 u32 host_pkru;
Haozhong Zhang3b840802016-06-22 14:59:54 +0800901
Wanpeng Li74c55932017-11-29 01:31:20 -0800902 unsigned long host_debugctlmsr;
903
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800904 /*
905 * Only bits masked by msr_ia32_feature_control_valid_bits can be set in
906 * msr_ia32_feature_control. FEATURE_CONTROL_LOCKED is always included
907 * in msr_ia32_feature_control_valid_bits.
908 */
Haozhong Zhang3b840802016-06-22 14:59:54 +0800909 u64 msr_ia32_feature_control;
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800910 u64 msr_ia32_feature_control_valid_bits;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400911};
912
Avi Kivity2fb92db2011-04-27 19:42:18 +0300913enum segment_cache_field {
914 SEG_FIELD_SEL = 0,
915 SEG_FIELD_BASE = 1,
916 SEG_FIELD_LIMIT = 2,
917 SEG_FIELD_AR = 3,
918
919 SEG_FIELD_NR = 4
920};
921
Sean Christopherson40bbb9d2018-03-20 12:17:20 -0700922static inline struct kvm_vmx *to_kvm_vmx(struct kvm *kvm)
923{
924 return container_of(kvm, struct kvm_vmx, kvm);
925}
926
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400927static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
928{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000929 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400930}
931
Feng Wuefc64402015-09-18 22:29:51 +0800932static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
933{
934 return &(to_vmx(vcpu)->pi_desc);
935}
936
Jim Mattson58e9ffa2017-12-22 12:13:13 -0800937#define ROL16(val, n) ((u16)(((u16)(val) << (n)) | ((u16)(val) >> (16 - (n)))))
Nadav Har'El22bd0352011-05-25 23:05:57 +0300938#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
Jim Mattson58e9ffa2017-12-22 12:13:13 -0800939#define FIELD(number, name) [ROL16(number, 6)] = VMCS12_OFFSET(name)
940#define FIELD64(number, name) \
941 FIELD(number, name), \
942 [ROL16(number##_HIGH, 6)] = VMCS12_OFFSET(name) + sizeof(u32)
Nadav Har'El22bd0352011-05-25 23:05:57 +0300943
Abel Gordon4607c2d2013-04-18 14:35:55 +0300944
Paolo Bonzini44900ba2017-12-13 12:58:02 +0100945static u16 shadow_read_only_fields[] = {
Paolo Bonzinic9e9dea2017-12-20 13:16:29 +0100946#define SHADOW_FIELD_RO(x) x,
947#include "vmx_shadow_fields.h"
Abel Gordon4607c2d2013-04-18 14:35:55 +0300948};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400949static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300950 ARRAY_SIZE(shadow_read_only_fields);
951
Paolo Bonzini44900ba2017-12-13 12:58:02 +0100952static u16 shadow_read_write_fields[] = {
Paolo Bonzinic9e9dea2017-12-20 13:16:29 +0100953#define SHADOW_FIELD_RW(x) x,
954#include "vmx_shadow_fields.h"
Abel Gordon4607c2d2013-04-18 14:35:55 +0300955};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400956static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300957 ARRAY_SIZE(shadow_read_write_fields);
958
Mathias Krause772e0312012-08-30 01:30:19 +0200959static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +0300960 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +0800961 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300962 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
963 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
964 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
965 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
966 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
967 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
968 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
969 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +0800970 FIELD(GUEST_INTR_STATUS, guest_intr_status),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400971 FIELD(GUEST_PML_INDEX, guest_pml_index),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300972 FIELD(HOST_ES_SELECTOR, host_es_selector),
973 FIELD(HOST_CS_SELECTOR, host_cs_selector),
974 FIELD(HOST_SS_SELECTOR, host_ss_selector),
975 FIELD(HOST_DS_SELECTOR, host_ds_selector),
976 FIELD(HOST_FS_SELECTOR, host_fs_selector),
977 FIELD(HOST_GS_SELECTOR, host_gs_selector),
978 FIELD(HOST_TR_SELECTOR, host_tr_selector),
979 FIELD64(IO_BITMAP_A, io_bitmap_a),
980 FIELD64(IO_BITMAP_B, io_bitmap_b),
981 FIELD64(MSR_BITMAP, msr_bitmap),
982 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
983 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
984 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
Jim Mattsonb348e792018-05-01 15:40:27 -0700985 FIELD64(PML_ADDRESS, pml_address),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300986 FIELD64(TSC_OFFSET, tsc_offset),
987 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
988 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
Wincy Van705699a2015-02-03 23:58:17 +0800989 FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr),
Bandan Das27c42a12017-08-03 15:54:42 -0400990 FIELD64(VM_FUNCTION_CONTROL, vm_function_control),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300991 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +0800992 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
993 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
994 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
995 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Bandan Das41ab9372017-08-03 15:54:43 -0400996 FIELD64(EPTP_LIST_ADDRESS, eptp_list_address),
Jim Mattsonb348e792018-05-01 15:40:27 -0700997 FIELD64(VMREAD_BITMAP, vmread_bitmap),
998 FIELD64(VMWRITE_BITMAP, vmwrite_bitmap),
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800999 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001000 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
1001 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
1002 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
1003 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
1004 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
1005 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
1006 FIELD64(GUEST_PDPTR0, guest_pdptr0),
1007 FIELD64(GUEST_PDPTR1, guest_pdptr1),
1008 FIELD64(GUEST_PDPTR2, guest_pdptr2),
1009 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +01001010 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001011 FIELD64(HOST_IA32_PAT, host_ia32_pat),
1012 FIELD64(HOST_IA32_EFER, host_ia32_efer),
1013 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
1014 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
1015 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
1016 FIELD(EXCEPTION_BITMAP, exception_bitmap),
1017 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
1018 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
1019 FIELD(CR3_TARGET_COUNT, cr3_target_count),
1020 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
1021 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
1022 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
1023 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
1024 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
1025 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
1026 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
1027 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
1028 FIELD(TPR_THRESHOLD, tpr_threshold),
1029 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
1030 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
1031 FIELD(VM_EXIT_REASON, vm_exit_reason),
1032 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
1033 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
1034 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
1035 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
1036 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
1037 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
1038 FIELD(GUEST_ES_LIMIT, guest_es_limit),
1039 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
1040 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
1041 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
1042 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
1043 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
1044 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
1045 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
1046 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
1047 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
1048 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
1049 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
1050 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
1051 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
1052 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
1053 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
1054 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
1055 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
1056 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
1057 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
1058 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
1059 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +01001060 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001061 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
1062 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
1063 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
1064 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
1065 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
1066 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
1067 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
1068 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
1069 FIELD(EXIT_QUALIFICATION, exit_qualification),
1070 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
1071 FIELD(GUEST_CR0, guest_cr0),
1072 FIELD(GUEST_CR3, guest_cr3),
1073 FIELD(GUEST_CR4, guest_cr4),
1074 FIELD(GUEST_ES_BASE, guest_es_base),
1075 FIELD(GUEST_CS_BASE, guest_cs_base),
1076 FIELD(GUEST_SS_BASE, guest_ss_base),
1077 FIELD(GUEST_DS_BASE, guest_ds_base),
1078 FIELD(GUEST_FS_BASE, guest_fs_base),
1079 FIELD(GUEST_GS_BASE, guest_gs_base),
1080 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
1081 FIELD(GUEST_TR_BASE, guest_tr_base),
1082 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
1083 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
1084 FIELD(GUEST_DR7, guest_dr7),
1085 FIELD(GUEST_RSP, guest_rsp),
1086 FIELD(GUEST_RIP, guest_rip),
1087 FIELD(GUEST_RFLAGS, guest_rflags),
1088 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
1089 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
1090 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
1091 FIELD(HOST_CR0, host_cr0),
1092 FIELD(HOST_CR3, host_cr3),
1093 FIELD(HOST_CR4, host_cr4),
1094 FIELD(HOST_FS_BASE, host_fs_base),
1095 FIELD(HOST_GS_BASE, host_gs_base),
1096 FIELD(HOST_TR_BASE, host_tr_base),
1097 FIELD(HOST_GDTR_BASE, host_gdtr_base),
1098 FIELD(HOST_IDTR_BASE, host_idtr_base),
1099 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
1100 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
1101 FIELD(HOST_RSP, host_rsp),
1102 FIELD(HOST_RIP, host_rip),
1103};
Nadav Har'El22bd0352011-05-25 23:05:57 +03001104
1105static inline short vmcs_field_to_offset(unsigned long field)
1106{
Dan Williams085331d2018-01-31 17:47:03 -08001107 const size_t size = ARRAY_SIZE(vmcs_field_to_offset_table);
1108 unsigned short offset;
Jim Mattson58e9ffa2017-12-22 12:13:13 -08001109 unsigned index;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01001110
Jim Mattson58e9ffa2017-12-22 12:13:13 -08001111 if (field >> 15)
Andrew Honig75f139a2018-01-10 10:12:03 -08001112 return -ENOENT;
1113
Jim Mattson58e9ffa2017-12-22 12:13:13 -08001114 index = ROL16(field, 6);
Linus Torvalds15303ba2018-02-10 13:16:35 -08001115 if (index >= size)
Andrew Honig75f139a2018-01-10 10:12:03 -08001116 return -ENOENT;
1117
Linus Torvalds15303ba2018-02-10 13:16:35 -08001118 index = array_index_nospec(index, size);
1119 offset = vmcs_field_to_offset_table[index];
Dan Williams085331d2018-01-31 17:47:03 -08001120 if (offset == 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01001121 return -ENOENT;
Dan Williams085331d2018-01-31 17:47:03 -08001122 return offset;
Nadav Har'El22bd0352011-05-25 23:05:57 +03001123}
1124
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03001125static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
1126{
David Matlack4f2777b2016-07-13 17:16:37 -07001127 return to_vmx(vcpu)->nested.cached_vmcs12;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03001128}
1129
Peter Feiner995f00a2017-06-30 17:26:32 -07001130static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03001131static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Peter Feiner995f00a2017-06-30 17:26:32 -07001132static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa);
Wanpeng Lif53cd632014-12-02 19:14:58 +08001133static bool vmx_xsaves_supported(void);
Orit Wassermanb246dd52012-05-31 14:49:22 +03001134static void vmx_set_segment(struct kvm_vcpu *vcpu,
1135 struct kvm_segment *var, int seg);
1136static void vmx_get_segment(struct kvm_vcpu *vcpu,
1137 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +02001138static bool guest_state_valid(struct kvm_vcpu *vcpu);
1139static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordon16f5b902013-04-18 14:38:25 +03001140static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Paolo Bonzinib96fb432017-07-27 12:29:32 +02001141static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu);
1142static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked);
1143static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
1144 u16 error_code);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01001145static void vmx_update_msr_bitmap(struct kvm_vcpu *vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01001146static void __always_inline vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
1147 u32 msr, int type);
Avi Kivity75880a02007-06-20 11:20:04 +03001148
Avi Kivity6aa8b732006-12-10 02:21:36 -08001149static DEFINE_PER_CPU(struct vmcs *, vmxarea);
1150static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001151/*
1152 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
1153 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
1154 */
1155static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001156
Feng Wubf9f6ac2015-09-18 22:29:55 +08001157/*
1158 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
1159 * can find which vCPU should be waken up.
1160 */
1161static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
1162static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
1163
Radim Krčmář23611332016-09-29 22:41:33 +02001164enum {
Radim Krčmář23611332016-09-29 22:41:33 +02001165 VMX_VMREAD_BITMAP,
1166 VMX_VMWRITE_BITMAP,
1167 VMX_BITMAP_NR
1168};
1169
1170static unsigned long *vmx_bitmap[VMX_BITMAP_NR];
1171
Radim Krčmář23611332016-09-29 22:41:33 +02001172#define vmx_vmread_bitmap (vmx_bitmap[VMX_VMREAD_BITMAP])
1173#define vmx_vmwrite_bitmap (vmx_bitmap[VMX_VMWRITE_BITMAP])
He, Qingfdef3ad2007-04-30 09:45:24 +03001174
Avi Kivity110312c2010-12-21 12:54:20 +02001175static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001176static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +02001177
Sheng Yang2384d2b2008-01-17 15:14:33 +08001178static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
1179static DEFINE_SPINLOCK(vmx_vpid_lock);
1180
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001181static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001182 int size;
1183 int order;
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03001184 u32 basic_cap;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001185 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001186 u32 pin_based_exec_ctrl;
1187 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001188 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001189 u32 vmexit_ctrl;
1190 u32 vmentry_ctrl;
Paolo Bonzini13893092018-02-26 13:40:09 +01001191 struct nested_vmx_msrs nested;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001192} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001193
Hannes Ederefff9e52008-11-28 17:02:06 +01001194static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +08001195 u32 ept;
1196 u32 vpid;
1197} vmx_capability;
1198
Avi Kivity6aa8b732006-12-10 02:21:36 -08001199#define VMX_SEGMENT_FIELD(seg) \
1200 [VCPU_SREG_##seg] = { \
1201 .selector = GUEST_##seg##_SELECTOR, \
1202 .base = GUEST_##seg##_BASE, \
1203 .limit = GUEST_##seg##_LIMIT, \
1204 .ar_bytes = GUEST_##seg##_AR_BYTES, \
1205 }
1206
Mathias Krause772e0312012-08-30 01:30:19 +02001207static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001208 unsigned selector;
1209 unsigned base;
1210 unsigned limit;
1211 unsigned ar_bytes;
1212} kvm_vmx_segment_fields[] = {
1213 VMX_SEGMENT_FIELD(CS),
1214 VMX_SEGMENT_FIELD(DS),
1215 VMX_SEGMENT_FIELD(ES),
1216 VMX_SEGMENT_FIELD(FS),
1217 VMX_SEGMENT_FIELD(GS),
1218 VMX_SEGMENT_FIELD(SS),
1219 VMX_SEGMENT_FIELD(TR),
1220 VMX_SEGMENT_FIELD(LDTR),
1221};
1222
Avi Kivity26bb0982009-09-07 11:14:12 +03001223static u64 host_efer;
1224
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001225static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
1226
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001227/*
Brian Gerst8c065852010-07-17 09:03:26 -04001228 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001229 * away by decrementing the array size.
1230 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001231static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001232#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +03001233 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001234#endif
Brian Gerst8c065852010-07-17 09:03:26 -04001235 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001236};
Avi Kivity6aa8b732006-12-10 02:21:36 -08001237
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001238DEFINE_STATIC_KEY_FALSE(enable_evmcs);
1239
1240#define current_evmcs ((struct hv_enlightened_vmcs *)this_cpu_read(current_vmcs))
1241
1242#define KVM_EVMCS_VERSION 1
1243
1244#if IS_ENABLED(CONFIG_HYPERV)
1245static bool __read_mostly enlightened_vmcs = true;
1246module_param(enlightened_vmcs, bool, 0444);
1247
1248static inline void evmcs_write64(unsigned long field, u64 value)
1249{
1250 u16 clean_field;
1251 int offset = get_evmcs_offset(field, &clean_field);
1252
1253 if (offset < 0)
1254 return;
1255
1256 *(u64 *)((char *)current_evmcs + offset) = value;
1257
1258 current_evmcs->hv_clean_fields &= ~clean_field;
1259}
1260
1261static inline void evmcs_write32(unsigned long field, u32 value)
1262{
1263 u16 clean_field;
1264 int offset = get_evmcs_offset(field, &clean_field);
1265
1266 if (offset < 0)
1267 return;
1268
1269 *(u32 *)((char *)current_evmcs + offset) = value;
1270 current_evmcs->hv_clean_fields &= ~clean_field;
1271}
1272
1273static inline void evmcs_write16(unsigned long field, u16 value)
1274{
1275 u16 clean_field;
1276 int offset = get_evmcs_offset(field, &clean_field);
1277
1278 if (offset < 0)
1279 return;
1280
1281 *(u16 *)((char *)current_evmcs + offset) = value;
1282 current_evmcs->hv_clean_fields &= ~clean_field;
1283}
1284
1285static inline u64 evmcs_read64(unsigned long field)
1286{
1287 int offset = get_evmcs_offset(field, NULL);
1288
1289 if (offset < 0)
1290 return 0;
1291
1292 return *(u64 *)((char *)current_evmcs + offset);
1293}
1294
1295static inline u32 evmcs_read32(unsigned long field)
1296{
1297 int offset = get_evmcs_offset(field, NULL);
1298
1299 if (offset < 0)
1300 return 0;
1301
1302 return *(u32 *)((char *)current_evmcs + offset);
1303}
1304
1305static inline u16 evmcs_read16(unsigned long field)
1306{
1307 int offset = get_evmcs_offset(field, NULL);
1308
1309 if (offset < 0)
1310 return 0;
1311
1312 return *(u16 *)((char *)current_evmcs + offset);
1313}
1314
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02001315static inline void evmcs_touch_msr_bitmap(void)
1316{
1317 if (unlikely(!current_evmcs))
1318 return;
1319
1320 if (current_evmcs->hv_enlightenments_control.msr_bitmap)
1321 current_evmcs->hv_clean_fields &=
1322 ~HV_VMX_ENLIGHTENED_CLEAN_FIELD_MSR_BITMAP;
1323}
1324
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001325static void evmcs_load(u64 phys_addr)
1326{
1327 struct hv_vp_assist_page *vp_ap =
1328 hv_get_vp_assist_page(smp_processor_id());
1329
1330 vp_ap->current_nested_vmcs = phys_addr;
1331 vp_ap->enlighten_vmentry = 1;
1332}
1333
1334static void evmcs_sanitize_exec_ctrls(struct vmcs_config *vmcs_conf)
1335{
1336 /*
1337 * Enlightened VMCSv1 doesn't support these:
1338 *
1339 * POSTED_INTR_NV = 0x00000002,
1340 * GUEST_INTR_STATUS = 0x00000810,
1341 * APIC_ACCESS_ADDR = 0x00002014,
1342 * POSTED_INTR_DESC_ADDR = 0x00002016,
1343 * EOI_EXIT_BITMAP0 = 0x0000201c,
1344 * EOI_EXIT_BITMAP1 = 0x0000201e,
1345 * EOI_EXIT_BITMAP2 = 0x00002020,
1346 * EOI_EXIT_BITMAP3 = 0x00002022,
1347 */
1348 vmcs_conf->pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
1349 vmcs_conf->cpu_based_2nd_exec_ctrl &=
1350 ~SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1351 vmcs_conf->cpu_based_2nd_exec_ctrl &=
1352 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1353 vmcs_conf->cpu_based_2nd_exec_ctrl &=
1354 ~SECONDARY_EXEC_APIC_REGISTER_VIRT;
1355
1356 /*
1357 * GUEST_PML_INDEX = 0x00000812,
1358 * PML_ADDRESS = 0x0000200e,
1359 */
1360 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_ENABLE_PML;
1361
1362 /* VM_FUNCTION_CONTROL = 0x00002018, */
1363 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_ENABLE_VMFUNC;
1364
1365 /*
1366 * EPTP_LIST_ADDRESS = 0x00002024,
1367 * VMREAD_BITMAP = 0x00002026,
1368 * VMWRITE_BITMAP = 0x00002028,
1369 */
1370 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_SHADOW_VMCS;
1371
1372 /*
1373 * TSC_MULTIPLIER = 0x00002032,
1374 */
1375 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_TSC_SCALING;
1376
1377 /*
1378 * PLE_GAP = 0x00004020,
1379 * PLE_WINDOW = 0x00004022,
1380 */
1381 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1382
1383 /*
1384 * VMX_PREEMPTION_TIMER_VALUE = 0x0000482E,
1385 */
1386 vmcs_conf->pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
1387
1388 /*
1389 * GUEST_IA32_PERF_GLOBAL_CTRL = 0x00002808,
1390 * HOST_IA32_PERF_GLOBAL_CTRL = 0x00002c04,
1391 */
1392 vmcs_conf->vmexit_ctrl &= ~VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL;
1393 vmcs_conf->vmentry_ctrl &= ~VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL;
1394
1395 /*
1396 * Currently unsupported in KVM:
1397 * GUEST_IA32_RTIT_CTL = 0x00002814,
1398 */
1399}
1400#else /* !IS_ENABLED(CONFIG_HYPERV) */
1401static inline void evmcs_write64(unsigned long field, u64 value) {}
1402static inline void evmcs_write32(unsigned long field, u32 value) {}
1403static inline void evmcs_write16(unsigned long field, u16 value) {}
1404static inline u64 evmcs_read64(unsigned long field) { return 0; }
1405static inline u32 evmcs_read32(unsigned long field) { return 0; }
1406static inline u16 evmcs_read16(unsigned long field) { return 0; }
1407static inline void evmcs_load(u64 phys_addr) {}
1408static inline void evmcs_sanitize_exec_ctrls(struct vmcs_config *vmcs_conf) {}
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02001409static inline void evmcs_touch_msr_bitmap(void) {}
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001410#endif /* IS_ENABLED(CONFIG_HYPERV) */
1411
Jan Kiszka5bb16012016-02-09 20:14:21 +01001412static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001413{
1414 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1415 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +01001416 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
1417}
1418
Jan Kiszka6f054852016-02-09 20:15:18 +01001419static inline bool is_debug(u32 intr_info)
1420{
1421 return is_exception_n(intr_info, DB_VECTOR);
1422}
1423
1424static inline bool is_breakpoint(u32 intr_info)
1425{
1426 return is_exception_n(intr_info, BP_VECTOR);
1427}
1428
Jan Kiszka5bb16012016-02-09 20:14:21 +01001429static inline bool is_page_fault(u32 intr_info)
1430{
1431 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001432}
1433
Gui Jianfeng31299942010-03-15 17:29:09 +08001434static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001435{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001436 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001437}
1438
Gui Jianfeng31299942010-03-15 17:29:09 +08001439static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001440{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001441 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001442}
1443
Liran Alon9e869482018-03-12 13:12:51 +02001444static inline bool is_gp_fault(u32 intr_info)
1445{
1446 return is_exception_n(intr_info, GP_VECTOR);
1447}
1448
Gui Jianfeng31299942010-03-15 17:29:09 +08001449static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001450{
1451 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1452 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1453}
1454
Gui Jianfeng31299942010-03-15 17:29:09 +08001455static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001456{
1457 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1458 INTR_INFO_VALID_MASK)) ==
1459 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1460}
1461
Linus Torvalds32d43cd2018-03-20 12:16:59 -07001462/* Undocumented: icebp/int1 */
1463static inline bool is_icebp(u32 intr_info)
1464{
1465 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1466 == (INTR_TYPE_PRIV_SW_EXCEPTION | INTR_INFO_VALID_MASK);
1467}
1468
Gui Jianfeng31299942010-03-15 17:29:09 +08001469static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001470{
Sheng Yang04547152009-04-01 15:52:31 +08001471 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001472}
1473
Gui Jianfeng31299942010-03-15 17:29:09 +08001474static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001475{
Sheng Yang04547152009-04-01 15:52:31 +08001476 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001477}
1478
Paolo Bonzini35754c92015-07-29 12:05:37 +02001479static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001480{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001481 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001482}
1483
Gui Jianfeng31299942010-03-15 17:29:09 +08001484static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001485{
Sheng Yang04547152009-04-01 15:52:31 +08001486 return vmcs_config.cpu_based_exec_ctrl &
1487 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001488}
1489
Avi Kivity774ead32007-12-26 13:57:04 +02001490static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001491{
Sheng Yang04547152009-04-01 15:52:31 +08001492 return vmcs_config.cpu_based_2nd_exec_ctrl &
1493 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1494}
1495
Yang Zhang8d146952013-01-25 10:18:50 +08001496static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1497{
1498 return vmcs_config.cpu_based_2nd_exec_ctrl &
1499 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1500}
1501
Yang Zhang83d4c282013-01-25 10:18:49 +08001502static inline bool cpu_has_vmx_apic_register_virt(void)
1503{
1504 return vmcs_config.cpu_based_2nd_exec_ctrl &
1505 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1506}
1507
Yang Zhangc7c9c562013-01-25 10:18:51 +08001508static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1509{
1510 return vmcs_config.cpu_based_2nd_exec_ctrl &
1511 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1512}
1513
Yunhong Jiang64672c92016-06-13 14:19:59 -07001514/*
1515 * Comment's format: document - errata name - stepping - processor name.
1516 * Refer from
1517 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
1518 */
1519static u32 vmx_preemption_cpu_tfms[] = {
1520/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
15210x000206E6,
1522/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
1523/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
1524/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
15250x00020652,
1526/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
15270x00020655,
1528/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
1529/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
1530/*
1531 * 320767.pdf - AAP86 - B1 -
1532 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
1533 */
15340x000106E5,
1535/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
15360x000106A0,
1537/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
15380x000106A1,
1539/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
15400x000106A4,
1541 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
1542 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
1543 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
15440x000106A5,
1545};
1546
1547static inline bool cpu_has_broken_vmx_preemption_timer(void)
1548{
1549 u32 eax = cpuid_eax(0x00000001), i;
1550
1551 /* Clear the reserved bits */
1552 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +00001553 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -07001554 if (eax == vmx_preemption_cpu_tfms[i])
1555 return true;
1556
1557 return false;
1558}
1559
1560static inline bool cpu_has_vmx_preemption_timer(void)
1561{
Yunhong Jiang64672c92016-06-13 14:19:59 -07001562 return vmcs_config.pin_based_exec_ctrl &
1563 PIN_BASED_VMX_PREEMPTION_TIMER;
1564}
1565
Yang Zhang01e439b2013-04-11 19:25:12 +08001566static inline bool cpu_has_vmx_posted_intr(void)
1567{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001568 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1569 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001570}
1571
1572static inline bool cpu_has_vmx_apicv(void)
1573{
1574 return cpu_has_vmx_apic_register_virt() &&
1575 cpu_has_vmx_virtual_intr_delivery() &&
1576 cpu_has_vmx_posted_intr();
1577}
1578
Sheng Yang04547152009-04-01 15:52:31 +08001579static inline bool cpu_has_vmx_flexpriority(void)
1580{
1581 return cpu_has_vmx_tpr_shadow() &&
1582 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001583}
1584
Marcelo Tosattie7997942009-06-11 12:07:40 -03001585static inline bool cpu_has_vmx_ept_execute_only(void)
1586{
Gui Jianfeng31299942010-03-15 17:29:09 +08001587 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001588}
1589
Marcelo Tosattie7997942009-06-11 12:07:40 -03001590static inline bool cpu_has_vmx_ept_2m_page(void)
1591{
Gui Jianfeng31299942010-03-15 17:29:09 +08001592 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001593}
1594
Sheng Yang878403b2010-01-05 19:02:29 +08001595static inline bool cpu_has_vmx_ept_1g_page(void)
1596{
Gui Jianfeng31299942010-03-15 17:29:09 +08001597 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001598}
1599
Sheng Yang4bc9b982010-06-02 14:05:24 +08001600static inline bool cpu_has_vmx_ept_4levels(void)
1601{
1602 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1603}
1604
David Hildenbrand42aa53b2017-08-10 23:15:29 +02001605static inline bool cpu_has_vmx_ept_mt_wb(void)
1606{
1607 return vmx_capability.ept & VMX_EPTP_WB_BIT;
1608}
1609
Yu Zhang855feb62017-08-24 20:27:55 +08001610static inline bool cpu_has_vmx_ept_5levels(void)
1611{
1612 return vmx_capability.ept & VMX_EPT_PAGE_WALK_5_BIT;
1613}
1614
Xudong Hao83c3a332012-05-28 19:33:35 +08001615static inline bool cpu_has_vmx_ept_ad_bits(void)
1616{
1617 return vmx_capability.ept & VMX_EPT_AD_BIT;
1618}
1619
Gui Jianfeng31299942010-03-15 17:29:09 +08001620static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001621{
Gui Jianfeng31299942010-03-15 17:29:09 +08001622 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001623}
1624
Gui Jianfeng31299942010-03-15 17:29:09 +08001625static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001626{
Gui Jianfeng31299942010-03-15 17:29:09 +08001627 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001628}
1629
Liran Aloncd9a4912018-05-22 17:16:15 +03001630static inline bool cpu_has_vmx_invvpid_individual_addr(void)
1631{
1632 return vmx_capability.vpid & VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT;
1633}
1634
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001635static inline bool cpu_has_vmx_invvpid_single(void)
1636{
1637 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1638}
1639
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001640static inline bool cpu_has_vmx_invvpid_global(void)
1641{
1642 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1643}
1644
Wanpeng Li08d839c2017-03-23 05:30:08 -07001645static inline bool cpu_has_vmx_invvpid(void)
1646{
1647 return vmx_capability.vpid & VMX_VPID_INVVPID_BIT;
1648}
1649
Gui Jianfeng31299942010-03-15 17:29:09 +08001650static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001651{
Sheng Yang04547152009-04-01 15:52:31 +08001652 return vmcs_config.cpu_based_2nd_exec_ctrl &
1653 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001654}
1655
Gui Jianfeng31299942010-03-15 17:29:09 +08001656static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001657{
1658 return vmcs_config.cpu_based_2nd_exec_ctrl &
1659 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1660}
1661
Gui Jianfeng31299942010-03-15 17:29:09 +08001662static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001663{
1664 return vmcs_config.cpu_based_2nd_exec_ctrl &
1665 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1666}
1667
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03001668static inline bool cpu_has_vmx_basic_inout(void)
1669{
1670 return (((u64)vmcs_config.basic_cap << 32) & VMX_BASIC_INOUT);
1671}
1672
Paolo Bonzini35754c92015-07-29 12:05:37 +02001673static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001674{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001675 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001676}
1677
Gui Jianfeng31299942010-03-15 17:29:09 +08001678static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001679{
Sheng Yang04547152009-04-01 15:52:31 +08001680 return vmcs_config.cpu_based_2nd_exec_ctrl &
1681 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001682}
1683
Gui Jianfeng31299942010-03-15 17:29:09 +08001684static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001685{
1686 return vmcs_config.cpu_based_2nd_exec_ctrl &
1687 SECONDARY_EXEC_RDTSCP;
1688}
1689
Mao, Junjiead756a12012-07-02 01:18:48 +00001690static inline bool cpu_has_vmx_invpcid(void)
1691{
1692 return vmcs_config.cpu_based_2nd_exec_ctrl &
1693 SECONDARY_EXEC_ENABLE_INVPCID;
1694}
1695
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01001696static inline bool cpu_has_virtual_nmis(void)
1697{
1698 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
1699}
1700
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001701static inline bool cpu_has_vmx_wbinvd_exit(void)
1702{
1703 return vmcs_config.cpu_based_2nd_exec_ctrl &
1704 SECONDARY_EXEC_WBINVD_EXITING;
1705}
1706
Abel Gordonabc4fc52013-04-18 14:35:25 +03001707static inline bool cpu_has_vmx_shadow_vmcs(void)
1708{
1709 u64 vmx_msr;
1710 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1711 /* check if the cpu supports writing r/o exit information fields */
1712 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1713 return false;
1714
1715 return vmcs_config.cpu_based_2nd_exec_ctrl &
1716 SECONDARY_EXEC_SHADOW_VMCS;
1717}
1718
Kai Huang843e4332015-01-28 10:54:28 +08001719static inline bool cpu_has_vmx_pml(void)
1720{
1721 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1722}
1723
Haozhong Zhang64903d62015-10-20 15:39:09 +08001724static inline bool cpu_has_vmx_tsc_scaling(void)
1725{
1726 return vmcs_config.cpu_based_2nd_exec_ctrl &
1727 SECONDARY_EXEC_TSC_SCALING;
1728}
1729
Bandan Das2a499e42017-08-03 15:54:41 -04001730static inline bool cpu_has_vmx_vmfunc(void)
1731{
1732 return vmcs_config.cpu_based_2nd_exec_ctrl &
1733 SECONDARY_EXEC_ENABLE_VMFUNC;
1734}
1735
Sean Christopherson64f7a112018-04-30 10:01:06 -07001736static bool vmx_umip_emulated(void)
1737{
1738 return vmcs_config.cpu_based_2nd_exec_ctrl &
1739 SECONDARY_EXEC_DESC;
1740}
1741
Sheng Yang04547152009-04-01 15:52:31 +08001742static inline bool report_flexpriority(void)
1743{
1744 return flexpriority_enabled;
1745}
1746
Jim Mattsonc7c2c702017-05-05 11:28:09 -07001747static inline unsigned nested_cpu_vmx_misc_cr3_count(struct kvm_vcpu *vcpu)
1748{
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01001749 return vmx_misc_cr3_count(to_vmx(vcpu)->nested.msrs.misc_low);
Jim Mattsonc7c2c702017-05-05 11:28:09 -07001750}
1751
Jim Mattsonf4160e42018-05-29 09:11:33 -07001752/*
1753 * Do the virtual VMX capability MSRs specify that L1 can use VMWRITE
1754 * to modify any valid field of the VMCS, or are the VM-exit
1755 * information fields read-only?
1756 */
1757static inline bool nested_cpu_has_vmwrite_any_field(struct kvm_vcpu *vcpu)
1758{
1759 return to_vmx(vcpu)->nested.msrs.misc_low &
1760 MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS;
1761}
1762
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001763static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1764{
1765 return vmcs12->cpu_based_vm_exec_control & bit;
1766}
1767
1768static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1769{
1770 return (vmcs12->cpu_based_vm_exec_control &
1771 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1772 (vmcs12->secondary_vm_exec_control & bit);
1773}
1774
Jan Kiszkaf4124502014-03-07 20:03:13 +01001775static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1776{
1777 return vmcs12->pin_based_vm_exec_control &
1778 PIN_BASED_VMX_PREEMPTION_TIMER;
1779}
1780
Krish Sadhukhan0c7f6502018-02-20 21:24:39 -05001781static inline bool nested_cpu_has_nmi_exiting(struct vmcs12 *vmcs12)
1782{
1783 return vmcs12->pin_based_vm_exec_control & PIN_BASED_NMI_EXITING;
1784}
1785
1786static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
1787{
1788 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1789}
1790
Nadav Har'El155a97a2013-08-05 11:07:16 +03001791static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1792{
1793 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1794}
1795
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001796static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1797{
Paolo Bonzini3db13482017-08-24 14:48:03 +02001798 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001799}
1800
Bandan Dasc5f983f2017-05-05 15:25:14 -04001801static inline bool nested_cpu_has_pml(struct vmcs12 *vmcs12)
1802{
1803 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML);
1804}
1805
Wincy Vanf2b93282015-02-03 23:56:03 +08001806static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1807{
1808 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1809}
1810
Wanpeng Li5c614b32015-10-13 09:18:36 -07001811static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1812{
1813 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1814}
1815
Wincy Van82f0dd42015-02-03 23:57:18 +08001816static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1817{
1818 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1819}
1820
Wincy Van608406e2015-02-03 23:57:51 +08001821static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1822{
1823 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1824}
1825
Wincy Van705699a2015-02-03 23:58:17 +08001826static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1827{
1828 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1829}
1830
Bandan Das27c42a12017-08-03 15:54:42 -04001831static inline bool nested_cpu_has_vmfunc(struct vmcs12 *vmcs12)
1832{
1833 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VMFUNC);
1834}
1835
Bandan Das41ab9372017-08-03 15:54:43 -04001836static inline bool nested_cpu_has_eptp_switching(struct vmcs12 *vmcs12)
1837{
1838 return nested_cpu_has_vmfunc(vmcs12) &&
1839 (vmcs12->vm_function_control &
1840 VMX_VMFUNC_EPTP_SWITCHING);
1841}
1842
Jim Mattsonef85b672016-12-12 11:01:37 -08001843static inline bool is_nmi(u32 intr_info)
Nadav Har'El644d7112011-05-25 23:12:35 +03001844{
1845 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
Jim Mattsonef85b672016-12-12 11:01:37 -08001846 == (INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK);
Nadav Har'El644d7112011-05-25 23:12:35 +03001847}
1848
Jan Kiszka533558b2014-01-04 18:47:20 +01001849static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1850 u32 exit_intr_info,
1851 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001852static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1853 struct vmcs12 *vmcs12,
1854 u32 reason, unsigned long qualification);
1855
Rusty Russell8b9cf982007-07-30 16:31:43 +10001856static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001857{
1858 int i;
1859
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001860 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001861 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001862 return i;
1863 return -1;
1864}
1865
Sheng Yang2384d2b2008-01-17 15:14:33 +08001866static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1867{
1868 struct {
1869 u64 vpid : 16;
1870 u64 rsvd : 48;
1871 u64 gva;
1872 } operand = { vpid, 0, gva };
1873
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001874 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001875 /* CF==1 or ZF==1 --> rc = -1 */
1876 "; ja 1f ; ud2 ; 1:"
1877 : : "a"(&operand), "c"(ext) : "cc", "memory");
1878}
1879
Sheng Yang14394422008-04-28 12:24:45 +08001880static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1881{
1882 struct {
1883 u64 eptp, gpa;
1884 } operand = {eptp, gpa};
1885
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001886 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001887 /* CF==1 or ZF==1 --> rc = -1 */
1888 "; ja 1f ; ud2 ; 1:\n"
1889 : : "a" (&operand), "c" (ext) : "cc", "memory");
1890}
1891
Avi Kivity26bb0982009-09-07 11:14:12 +03001892static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001893{
1894 int i;
1895
Rusty Russell8b9cf982007-07-30 16:31:43 +10001896 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001897 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001898 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001899 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001900}
1901
Avi Kivity6aa8b732006-12-10 02:21:36 -08001902static void vmcs_clear(struct vmcs *vmcs)
1903{
1904 u64 phys_addr = __pa(vmcs);
1905 u8 error;
1906
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001907 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001908 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001909 : "cc", "memory");
1910 if (error)
1911 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1912 vmcs, phys_addr);
1913}
1914
Nadav Har'Eld462b812011-05-24 15:26:10 +03001915static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1916{
1917 vmcs_clear(loaded_vmcs->vmcs);
Jim Mattson355f4fb2016-10-28 08:29:39 -07001918 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
1919 vmcs_clear(loaded_vmcs->shadow_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001920 loaded_vmcs->cpu = -1;
1921 loaded_vmcs->launched = 0;
1922}
1923
Dongxiao Xu7725b892010-05-11 18:29:38 +08001924static void vmcs_load(struct vmcs *vmcs)
1925{
1926 u64 phys_addr = __pa(vmcs);
1927 u8 error;
1928
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001929 if (static_branch_unlikely(&enable_evmcs))
1930 return evmcs_load(phys_addr);
1931
Dongxiao Xu7725b892010-05-11 18:29:38 +08001932 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001933 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001934 : "cc", "memory");
1935 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001936 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001937 vmcs, phys_addr);
1938}
1939
Dave Young2965faa2015-09-09 15:38:55 -07001940#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001941/*
1942 * This bitmap is used to indicate whether the vmclear
1943 * operation is enabled on all cpus. All disabled by
1944 * default.
1945 */
1946static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1947
1948static inline void crash_enable_local_vmclear(int cpu)
1949{
1950 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1951}
1952
1953static inline void crash_disable_local_vmclear(int cpu)
1954{
1955 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1956}
1957
1958static inline int crash_local_vmclear_enabled(int cpu)
1959{
1960 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1961}
1962
1963static void crash_vmclear_local_loaded_vmcss(void)
1964{
1965 int cpu = raw_smp_processor_id();
1966 struct loaded_vmcs *v;
1967
1968 if (!crash_local_vmclear_enabled(cpu))
1969 return;
1970
1971 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1972 loaded_vmcss_on_cpu_link)
1973 vmcs_clear(v->vmcs);
1974}
1975#else
1976static inline void crash_enable_local_vmclear(int cpu) { }
1977static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001978#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001979
Nadav Har'Eld462b812011-05-24 15:26:10 +03001980static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001981{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001982 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001983 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001984
Nadav Har'Eld462b812011-05-24 15:26:10 +03001985 if (loaded_vmcs->cpu != cpu)
1986 return; /* vcpu migration can race with cpu offline */
1987 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001988 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001989 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001990 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001991
1992 /*
1993 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1994 * is before setting loaded_vmcs->vcpu to -1 which is done in
1995 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1996 * then adds the vmcs into percpu list before it is deleted.
1997 */
1998 smp_wmb();
1999
Nadav Har'Eld462b812011-05-24 15:26:10 +03002000 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002001 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002002}
2003
Nadav Har'Eld462b812011-05-24 15:26:10 +03002004static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08002005{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08002006 int cpu = loaded_vmcs->cpu;
2007
2008 if (cpu != -1)
2009 smp_call_function_single(cpu,
2010 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08002011}
2012
Wanpeng Lidd5f5342015-09-23 18:26:57 +08002013static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08002014{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08002015 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08002016 return;
2017
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08002018 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08002019 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08002020}
2021
Gui Jianfengb9d762f2010-06-07 10:32:29 +08002022static inline void vpid_sync_vcpu_global(void)
2023{
2024 if (cpu_has_vmx_invvpid_global())
2025 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
2026}
2027
Wanpeng Lidd5f5342015-09-23 18:26:57 +08002028static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08002029{
2030 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08002031 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08002032 else
2033 vpid_sync_vcpu_global();
2034}
2035
Sheng Yang14394422008-04-28 12:24:45 +08002036static inline void ept_sync_global(void)
2037{
David Hildenbrandf5f51582017-08-24 20:51:30 +02002038 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
Sheng Yang14394422008-04-28 12:24:45 +08002039}
2040
2041static inline void ept_sync_context(u64 eptp)
2042{
David Hildenbrand0e1252d2017-08-24 20:51:28 +02002043 if (cpu_has_vmx_invept_context())
2044 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
2045 else
2046 ept_sync_global();
Sheng Yang14394422008-04-28 12:24:45 +08002047}
2048
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002049static __always_inline void vmcs_check16(unsigned long field)
2050{
2051 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
2052 "16-bit accessor invalid for 64-bit field");
2053 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
2054 "16-bit accessor invalid for 64-bit high field");
2055 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
2056 "16-bit accessor invalid for 32-bit high field");
2057 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
2058 "16-bit accessor invalid for natural width field");
2059}
2060
2061static __always_inline void vmcs_check32(unsigned long field)
2062{
2063 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
2064 "32-bit accessor invalid for 16-bit field");
2065 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
2066 "32-bit accessor invalid for natural width field");
2067}
2068
2069static __always_inline void vmcs_check64(unsigned long field)
2070{
2071 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
2072 "64-bit accessor invalid for 16-bit field");
2073 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
2074 "64-bit accessor invalid for 64-bit high field");
2075 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
2076 "64-bit accessor invalid for 32-bit field");
2077 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
2078 "64-bit accessor invalid for natural width field");
2079}
2080
2081static __always_inline void vmcs_checkl(unsigned long field)
2082{
2083 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
2084 "Natural width accessor invalid for 16-bit field");
2085 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
2086 "Natural width accessor invalid for 64-bit field");
2087 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
2088 "Natural width accessor invalid for 64-bit high field");
2089 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
2090 "Natural width accessor invalid for 32-bit field");
2091}
2092
2093static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002094{
Avi Kivity5e520e62011-05-15 10:13:12 -04002095 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002096
Avi Kivity5e520e62011-05-15 10:13:12 -04002097 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
2098 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08002099 return value;
2100}
2101
Avi Kivity96304212011-05-15 10:13:13 -04002102static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002103{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002104 vmcs_check16(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002105 if (static_branch_unlikely(&enable_evmcs))
2106 return evmcs_read16(field);
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002107 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002108}
2109
Avi Kivity96304212011-05-15 10:13:13 -04002110static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002111{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002112 vmcs_check32(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002113 if (static_branch_unlikely(&enable_evmcs))
2114 return evmcs_read32(field);
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002115 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002116}
2117
Avi Kivity96304212011-05-15 10:13:13 -04002118static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002119{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002120 vmcs_check64(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002121 if (static_branch_unlikely(&enable_evmcs))
2122 return evmcs_read64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002123#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002124 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002125#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002126 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002127#endif
2128}
2129
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002130static __always_inline unsigned long vmcs_readl(unsigned long field)
2131{
2132 vmcs_checkl(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002133 if (static_branch_unlikely(&enable_evmcs))
2134 return evmcs_read64(field);
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002135 return __vmcs_readl(field);
2136}
2137
Avi Kivitye52de1b2007-01-05 16:36:56 -08002138static noinline void vmwrite_error(unsigned long field, unsigned long value)
2139{
2140 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
2141 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
2142 dump_stack();
2143}
2144
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002145static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002146{
2147 u8 error;
2148
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002149 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04002150 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08002151 if (unlikely(error))
2152 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002153}
2154
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002155static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002156{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002157 vmcs_check16(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002158 if (static_branch_unlikely(&enable_evmcs))
2159 return evmcs_write16(field, value);
2160
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002161 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002162}
2163
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002164static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002165{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002166 vmcs_check32(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002167 if (static_branch_unlikely(&enable_evmcs))
2168 return evmcs_write32(field, value);
2169
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002170 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002171}
2172
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002173static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002174{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002175 vmcs_check64(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002176 if (static_branch_unlikely(&enable_evmcs))
2177 return evmcs_write64(field, value);
2178
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002179 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03002180#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002181 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002182 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002183#endif
2184}
2185
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002186static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002187{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002188 vmcs_checkl(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002189 if (static_branch_unlikely(&enable_evmcs))
2190 return evmcs_write64(field, value);
2191
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002192 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002193}
2194
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002195static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002196{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002197 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
2198 "vmcs_clear_bits does not support 64-bit fields");
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002199 if (static_branch_unlikely(&enable_evmcs))
2200 return evmcs_write32(field, evmcs_read32(field) & ~mask);
2201
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002202 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
2203}
2204
2205static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
2206{
2207 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
2208 "vmcs_set_bits does not support 64-bit fields");
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002209 if (static_branch_unlikely(&enable_evmcs))
2210 return evmcs_write32(field, evmcs_read32(field) | mask);
2211
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002212 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002213}
2214
Paolo Bonzini8391ce42016-07-07 14:58:33 +02002215static inline void vm_entry_controls_reset_shadow(struct vcpu_vmx *vmx)
2216{
2217 vmx->vm_entry_controls_shadow = vmcs_read32(VM_ENTRY_CONTROLS);
2218}
2219
Gleb Natapov2961e8762013-11-25 15:37:13 +02002220static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
2221{
2222 vmcs_write32(VM_ENTRY_CONTROLS, val);
2223 vmx->vm_entry_controls_shadow = val;
2224}
2225
2226static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
2227{
2228 if (vmx->vm_entry_controls_shadow != val)
2229 vm_entry_controls_init(vmx, val);
2230}
2231
2232static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
2233{
2234 return vmx->vm_entry_controls_shadow;
2235}
2236
2237
2238static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
2239{
2240 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
2241}
2242
2243static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
2244{
2245 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
2246}
2247
Paolo Bonzini8391ce42016-07-07 14:58:33 +02002248static inline void vm_exit_controls_reset_shadow(struct vcpu_vmx *vmx)
2249{
2250 vmx->vm_exit_controls_shadow = vmcs_read32(VM_EXIT_CONTROLS);
2251}
2252
Gleb Natapov2961e8762013-11-25 15:37:13 +02002253static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
2254{
2255 vmcs_write32(VM_EXIT_CONTROLS, val);
2256 vmx->vm_exit_controls_shadow = val;
2257}
2258
2259static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
2260{
2261 if (vmx->vm_exit_controls_shadow != val)
2262 vm_exit_controls_init(vmx, val);
2263}
2264
2265static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
2266{
2267 return vmx->vm_exit_controls_shadow;
2268}
2269
2270
2271static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
2272{
2273 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
2274}
2275
2276static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
2277{
2278 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
2279}
2280
Avi Kivity2fb92db2011-04-27 19:42:18 +03002281static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
2282{
2283 vmx->segment_cache.bitmask = 0;
2284}
2285
2286static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
2287 unsigned field)
2288{
2289 bool ret;
2290 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
2291
2292 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
2293 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
2294 vmx->segment_cache.bitmask = 0;
2295 }
2296 ret = vmx->segment_cache.bitmask & mask;
2297 vmx->segment_cache.bitmask |= mask;
2298 return ret;
2299}
2300
2301static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
2302{
2303 u16 *p = &vmx->segment_cache.seg[seg].selector;
2304
2305 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
2306 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
2307 return *p;
2308}
2309
2310static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
2311{
2312 ulong *p = &vmx->segment_cache.seg[seg].base;
2313
2314 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
2315 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
2316 return *p;
2317}
2318
2319static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
2320{
2321 u32 *p = &vmx->segment_cache.seg[seg].limit;
2322
2323 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
2324 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
2325 return *p;
2326}
2327
2328static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
2329{
2330 u32 *p = &vmx->segment_cache.seg[seg].ar;
2331
2332 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
2333 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
2334 return *p;
2335}
2336
Avi Kivityabd3f2d2007-05-02 17:57:40 +03002337static void update_exception_bitmap(struct kvm_vcpu *vcpu)
2338{
2339 u32 eb;
2340
Jan Kiszkafd7373c2010-01-20 18:20:20 +01002341 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002342 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Liran Alon9e869482018-03-12 13:12:51 +02002343 /*
2344 * Guest access to VMware backdoor ports could legitimately
2345 * trigger #GP because of TSS I/O permission bitmap.
2346 * We intercept those #GP and allow access to them anyway
2347 * as VMware does.
2348 */
2349 if (enable_vmware_backdoor)
2350 eb |= (1u << GP_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01002351 if ((vcpu->guest_debug &
2352 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
2353 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
2354 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002355 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03002356 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02002357 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002358 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002359
2360 /* When we are running a nested L2 guest and L1 specified for it a
2361 * certain exception bitmap, we must trap the same exceptions and pass
2362 * them to L1. When running L2, we will only handle the exceptions
2363 * specified above if L1 did not want them.
2364 */
2365 if (is_guest_mode(vcpu))
2366 eb |= get_vmcs12(vcpu)->exception_bitmap;
2367
Avi Kivityabd3f2d2007-05-02 17:57:40 +03002368 vmcs_write32(EXCEPTION_BITMAP, eb);
2369}
2370
Ashok Raj15d45072018-02-01 22:59:43 +01002371/*
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002372 * Check if MSR is intercepted for currently loaded MSR bitmap.
2373 */
2374static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr)
2375{
2376 unsigned long *msr_bitmap;
2377 int f = sizeof(unsigned long);
2378
2379 if (!cpu_has_vmx_msr_bitmap())
2380 return true;
2381
2382 msr_bitmap = to_vmx(vcpu)->loaded_vmcs->msr_bitmap;
2383
2384 if (msr <= 0x1fff) {
2385 return !!test_bit(msr, msr_bitmap + 0x800 / f);
2386 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2387 msr &= 0x1fff;
2388 return !!test_bit(msr, msr_bitmap + 0xc00 / f);
2389 }
2390
2391 return true;
2392}
2393
2394/*
Ashok Raj15d45072018-02-01 22:59:43 +01002395 * Check if MSR is intercepted for L01 MSR bitmap.
2396 */
2397static bool msr_write_intercepted_l01(struct kvm_vcpu *vcpu, u32 msr)
2398{
2399 unsigned long *msr_bitmap;
2400 int f = sizeof(unsigned long);
2401
2402 if (!cpu_has_vmx_msr_bitmap())
2403 return true;
2404
2405 msr_bitmap = to_vmx(vcpu)->vmcs01.msr_bitmap;
2406
2407 if (msr <= 0x1fff) {
2408 return !!test_bit(msr, msr_bitmap + 0x800 / f);
2409 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2410 msr &= 0x1fff;
2411 return !!test_bit(msr, msr_bitmap + 0xc00 / f);
2412 }
2413
2414 return true;
2415}
2416
Gleb Natapov2961e8762013-11-25 15:37:13 +02002417static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
2418 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002419{
Gleb Natapov2961e8762013-11-25 15:37:13 +02002420 vm_entry_controls_clearbit(vmx, entry);
2421 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002422}
2423
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04002424static int find_msr(struct vmx_msrs *m, unsigned int msr)
2425{
2426 unsigned int i;
2427
2428 for (i = 0; i < m->nr; ++i) {
2429 if (m->val[i].index == msr)
2430 return i;
2431 }
2432 return -ENOENT;
2433}
2434
Avi Kivity61d2ef22010-04-28 16:40:38 +03002435static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
2436{
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04002437 int i;
Avi Kivity61d2ef22010-04-28 16:40:38 +03002438 struct msr_autoload *m = &vmx->msr_autoload;
2439
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002440 switch (msr) {
2441 case MSR_EFER:
2442 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002443 clear_atomic_switch_msr_special(vmx,
2444 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002445 VM_EXIT_LOAD_IA32_EFER);
2446 return;
2447 }
2448 break;
2449 case MSR_CORE_PERF_GLOBAL_CTRL:
2450 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002451 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002452 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
2453 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
2454 return;
2455 }
2456 break;
Avi Kivity110312c2010-12-21 12:54:20 +02002457 }
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04002458 i = find_msr(&m->guest, msr);
2459 if (i < 0)
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002460 goto skip_guest;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002461 --m->guest.nr;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002462 m->guest.val[i] = m->guest.val[m->guest.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002463 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002464
2465skip_guest:
2466 i = find_msr(&m->host, msr);
2467 if (i < 0)
2468 return;
2469
2470 --m->host.nr;
2471 m->host.val[i] = m->host.val[m->host.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002472 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +03002473}
2474
Gleb Natapov2961e8762013-11-25 15:37:13 +02002475static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
2476 unsigned long entry, unsigned long exit,
2477 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
2478 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002479{
2480 vmcs_write64(guest_val_vmcs, guest_val);
2481 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02002482 vm_entry_controls_setbit(vmx, entry);
2483 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002484}
2485
Avi Kivity61d2ef22010-04-28 16:40:38 +03002486static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
2487 u64 guest_val, u64 host_val)
2488{
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002489 int i, j;
Avi Kivity61d2ef22010-04-28 16:40:38 +03002490 struct msr_autoload *m = &vmx->msr_autoload;
2491
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002492 switch (msr) {
2493 case MSR_EFER:
2494 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002495 add_atomic_switch_msr_special(vmx,
2496 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002497 VM_EXIT_LOAD_IA32_EFER,
2498 GUEST_IA32_EFER,
2499 HOST_IA32_EFER,
2500 guest_val, host_val);
2501 return;
2502 }
2503 break;
2504 case MSR_CORE_PERF_GLOBAL_CTRL:
2505 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002506 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002507 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
2508 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
2509 GUEST_IA32_PERF_GLOBAL_CTRL,
2510 HOST_IA32_PERF_GLOBAL_CTRL,
2511 guest_val, host_val);
2512 return;
2513 }
2514 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +01002515 case MSR_IA32_PEBS_ENABLE:
2516 /* PEBS needs a quiescent period after being disabled (to write
2517 * a record). Disabling PEBS through VMX MSR swapping doesn't
2518 * provide that period, so a CPU could write host's record into
2519 * guest's memory.
2520 */
2521 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +02002522 }
2523
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04002524 i = find_msr(&m->guest, msr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002525 j = find_msr(&m->host, msr);
2526 if (i == NR_AUTOLOAD_MSRS || j == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02002527 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02002528 "Can't add msr %x\n", msr);
2529 return;
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002530 }
2531 if (i < 0) {
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04002532 i = m->guest.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002533 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002534 }
2535 if (j < 0) {
2536 j = m->host.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002537 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +03002538 }
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002539 m->guest.val[i].index = msr;
2540 m->guest.val[i].value = guest_val;
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002541 m->host.val[j].index = msr;
2542 m->host.val[j].value = host_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +03002543}
2544
Avi Kivity92c0d902009-10-29 11:00:16 +02002545static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03002546{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002547 u64 guest_efer = vmx->vcpu.arch.efer;
2548 u64 ignore_bits = 0;
Eddie Dong2cc51562007-05-21 07:28:09 +03002549
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002550 if (!enable_ept) {
2551 /*
2552 * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing
2553 * host CPUID is more efficient than testing guest CPUID
2554 * or CR4. Host SMEP is anyway a requirement for guest SMEP.
2555 */
2556 if (boot_cpu_has(X86_FEATURE_SMEP))
2557 guest_efer |= EFER_NX;
2558 else if (!(guest_efer & EFER_NX))
2559 ignore_bits |= EFER_NX;
2560 }
Roel Kluin3a34a882009-08-04 02:08:45 -07002561
Avi Kivity51c6cf62007-08-29 03:48:05 +03002562 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002563 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03002564 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002565 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03002566#ifdef CONFIG_X86_64
2567 ignore_bits |= EFER_LMA | EFER_LME;
2568 /* SCE is meaningful only in long mode on Intel */
2569 if (guest_efer & EFER_LMA)
2570 ignore_bits &= ~(u64)EFER_SCE;
2571#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03002572
2573 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08002574
2575 /*
2576 * On EPT, we can't emulate NX, so we must switch EFER atomically.
2577 * On CPUs that support "load IA32_EFER", always switch EFER
2578 * atomically, since it's faster than switching it manually.
2579 */
2580 if (cpu_has_load_ia32_efer ||
2581 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03002582 if (!(guest_efer & EFER_LMA))
2583 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08002584 if (guest_efer != host_efer)
2585 add_atomic_switch_msr(vmx, MSR_EFER,
2586 guest_efer, host_efer);
Avi Kivity84ad33e2010-04-28 16:42:29 +03002587 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002588 } else {
2589 guest_efer &= ~ignore_bits;
2590 guest_efer |= host_efer & ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03002591
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002592 vmx->guest_msrs[efer_offset].data = guest_efer;
2593 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
2594
2595 return true;
2596 }
Avi Kivity51c6cf62007-08-29 03:48:05 +03002597}
2598
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002599#ifdef CONFIG_X86_32
2600/*
2601 * On 32-bit kernels, VM exits still load the FS and GS bases from the
2602 * VMCS rather than the segment table. KVM uses this helper to figure
2603 * out the current bases to poke them into the VMCS before entry.
2604 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002605static unsigned long segment_base(u16 selector)
2606{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002607 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002608 unsigned long v;
2609
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002610 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002611 return 0;
2612
Thomas Garnier45fc8752017-03-14 10:05:08 -07002613 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002614
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002615 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002616 u16 ldt_selector = kvm_read_ldt();
2617
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002618 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002619 return 0;
2620
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002621 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002622 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002623 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002624 return v;
2625}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002626#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002627
Avi Kivity04d2cc72007-09-10 18:10:54 +03002628static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03002629{
Avi Kivity04d2cc72007-09-10 18:10:54 +03002630 struct vcpu_vmx *vmx = to_vmx(vcpu);
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02002631#ifdef CONFIG_X86_64
Vitaly Kuznetsov35060ed2018-03-13 18:48:05 +01002632 int cpu = raw_smp_processor_id();
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02002633#endif
Avi Kivity26bb0982009-09-07 11:14:12 +03002634 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002635
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002636 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002637 return;
2638
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002639 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002640 /*
2641 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
2642 * allow segment selectors with cpl > 0 or ti == 1.
2643 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002644 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02002645 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01002646
2647#ifdef CONFIG_X86_64
2648 save_fsgs_for_kvm();
2649 vmx->host_state.fs_sel = current->thread.fsindex;
2650 vmx->host_state.gs_sel = current->thread.gsindex;
2651#else
Avi Kivity9581d442010-10-19 16:46:55 +02002652 savesegment(fs, vmx->host_state.fs_sel);
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01002653 savesegment(gs, vmx->host_state.gs_sel);
2654#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002655 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002656 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002657 vmx->host_state.fs_reload_needed = 0;
2658 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03002659 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002660 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002661 }
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002662 if (!(vmx->host_state.gs_sel & 7))
2663 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002664 else {
2665 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002666 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002667 }
2668
2669#ifdef CONFIG_X86_64
Avi Kivityb2da15a2012-05-13 19:53:24 +03002670 savesegment(ds, vmx->host_state.ds_sel);
2671 savesegment(es, vmx->host_state.es_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002672
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01002673 vmcs_writel(HOST_FS_BASE, current->thread.fsbase);
Vitaly Kuznetsov35060ed2018-03-13 18:48:05 +01002674 vmcs_writel(HOST_GS_BASE, cpu_kernelmode_gs_base(cpu));
Avi Kivity707c0872007-05-02 17:33:43 +03002675
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01002676 vmx->msr_host_kernel_gs_base = current->thread.gsbase;
Avi Kivityc8770e72010-11-11 12:37:26 +02002677 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03002678 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity33ed6322007-05-02 16:54:03 +03002679#else
2680 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
2681 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
2682#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002683 if (boot_cpu_has(X86_FEATURE_MPX))
2684 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Avi Kivity26bb0982009-09-07 11:14:12 +03002685 for (i = 0; i < vmx->save_nmsrs; ++i)
2686 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02002687 vmx->guest_msrs[i].data,
2688 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03002689}
2690
Avi Kivitya9b21b62008-06-24 11:48:49 +03002691static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03002692{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002693 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002694 return;
2695
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002696 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002697 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02002698#ifdef CONFIG_X86_64
2699 if (is_long_mode(&vmx->vcpu))
2700 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
2701#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002702 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002703 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002704#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02002705 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002706#else
2707 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002708#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002709 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02002710 if (vmx->host_state.fs_reload_needed)
2711 loadsegment(fs, vmx->host_state.fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002712#ifdef CONFIG_X86_64
2713 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
2714 loadsegment(ds, vmx->host_state.ds_sel);
2715 loadsegment(es, vmx->host_state.es_sel);
2716 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002717#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002718 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002719#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002720 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002721#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002722 if (vmx->host_state.msr_host_bndcfgs)
2723 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Thomas Garnier45fc8752017-03-14 10:05:08 -07002724 load_fixmap_gdt(raw_smp_processor_id());
Avi Kivity33ed6322007-05-02 16:54:03 +03002725}
2726
Avi Kivitya9b21b62008-06-24 11:48:49 +03002727static void vmx_load_host_state(struct vcpu_vmx *vmx)
2728{
2729 preempt_disable();
2730 __vmx_load_host_state(vmx);
2731 preempt_enable();
2732}
2733
Feng Wu28b835d2015-09-18 22:29:54 +08002734static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2735{
2736 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2737 struct pi_desc old, new;
2738 unsigned int dest;
2739
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002740 /*
2741 * In case of hot-plug or hot-unplug, we may have to undo
2742 * vmx_vcpu_pi_put even if there is no assigned device. And we
2743 * always keep PI.NDST up to date for simplicity: it makes the
2744 * code easier, and CPU migration is not a fast path.
2745 */
2746 if (!pi_test_sn(pi_desc) && vcpu->cpu == cpu)
Feng Wu28b835d2015-09-18 22:29:54 +08002747 return;
2748
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002749 /*
2750 * First handle the simple case where no cmpxchg is necessary; just
2751 * allow posting non-urgent interrupts.
2752 *
2753 * If the 'nv' field is POSTED_INTR_WAKEUP_VECTOR, do not change
2754 * PI.NDST: pi_post_block will do it for us and the wakeup_handler
2755 * expects the VCPU to be on the blocked_vcpu_list that matches
2756 * PI.NDST.
2757 */
2758 if (pi_desc->nv == POSTED_INTR_WAKEUP_VECTOR ||
2759 vcpu->cpu == cpu) {
2760 pi_clear_sn(pi_desc);
2761 return;
2762 }
2763
2764 /* The full case. */
Feng Wu28b835d2015-09-18 22:29:54 +08002765 do {
2766 old.control = new.control = pi_desc->control;
2767
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002768 dest = cpu_physical_id(cpu);
Feng Wu28b835d2015-09-18 22:29:54 +08002769
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002770 if (x2apic_enabled())
2771 new.ndst = dest;
2772 else
2773 new.ndst = (dest << 8) & 0xFF00;
Feng Wu28b835d2015-09-18 22:29:54 +08002774
Feng Wu28b835d2015-09-18 22:29:54 +08002775 new.sn = 0;
Paolo Bonzinic0a16662017-09-28 17:58:41 +02002776 } while (cmpxchg64(&pi_desc->control, old.control,
2777 new.control) != old.control);
Feng Wu28b835d2015-09-18 22:29:54 +08002778}
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002779
Peter Feinerc95ba922016-08-17 09:36:47 -07002780static void decache_tsc_multiplier(struct vcpu_vmx *vmx)
2781{
2782 vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio;
2783 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
2784}
2785
Avi Kivity6aa8b732006-12-10 02:21:36 -08002786/*
2787 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2788 * vcpu mutex is already taken.
2789 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002790static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002791{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002792 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002793 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002794
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002795 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002796 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002797 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002798 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002799
2800 /*
2801 * Read loaded_vmcs->cpu should be before fetching
2802 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2803 * See the comments in __loaded_vmcs_clear().
2804 */
2805 smp_rmb();
2806
Nadav Har'Eld462b812011-05-24 15:26:10 +03002807 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2808 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002809 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002810 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002811 }
2812
2813 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2814 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2815 vmcs_load(vmx->loaded_vmcs->vmcs);
Ashok Raj15d45072018-02-01 22:59:43 +01002816 indirect_branch_prediction_barrier();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002817 }
2818
2819 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002820 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002821 unsigned long sysenter_esp;
2822
2823 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002824
Avi Kivity6aa8b732006-12-10 02:21:36 -08002825 /*
2826 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002827 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08002828 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002829 vmcs_writel(HOST_TR_BASE,
Andy Lutomirski72f5e082017-12-04 15:07:20 +01002830 (unsigned long)&get_cpu_entry_area(cpu)->tss.x86_tss);
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002831 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002832
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002833 /*
2834 * VM exits change the host TR limit to 0x67 after a VM
2835 * exit. This is okay, since 0x67 covers everything except
2836 * the IO bitmap and have have code to handle the IO bitmap
2837 * being lost after a VM exit.
2838 */
2839 BUILD_BUG_ON(IO_BITMAP_OFFSET - 1 != 0x67);
2840
Avi Kivity6aa8b732006-12-10 02:21:36 -08002841 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2842 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002843
Nadav Har'Eld462b812011-05-24 15:26:10 +03002844 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002845 }
Feng Wu28b835d2015-09-18 22:29:54 +08002846
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002847 /* Setup TSC multiplier */
2848 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07002849 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
2850 decache_tsc_multiplier(vmx);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002851
Feng Wu28b835d2015-09-18 22:29:54 +08002852 vmx_vcpu_pi_load(vcpu, cpu);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002853 vmx->host_pkru = read_pkru();
Wanpeng Li74c55932017-11-29 01:31:20 -08002854 vmx->host_debugctlmsr = get_debugctlmsr();
Feng Wu28b835d2015-09-18 22:29:54 +08002855}
2856
2857static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2858{
2859 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2860
2861 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002862 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2863 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002864 return;
2865
2866 /* Set SN when the vCPU is preempted */
2867 if (vcpu->preempted)
2868 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002869}
2870
2871static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2872{
Feng Wu28b835d2015-09-18 22:29:54 +08002873 vmx_vcpu_pi_put(vcpu);
2874
Avi Kivitya9b21b62008-06-24 11:48:49 +03002875 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002876}
2877
Wanpeng Lif244dee2017-07-20 01:11:54 -07002878static bool emulation_required(struct kvm_vcpu *vcpu)
2879{
2880 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
2881}
2882
Avi Kivityedcafe32009-12-30 18:07:40 +02002883static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2884
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002885/*
2886 * Return the cr0 value that a nested guest would read. This is a combination
2887 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2888 * its hypervisor (cr0_read_shadow).
2889 */
2890static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2891{
2892 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2893 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2894}
2895static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2896{
2897 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2898 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2899}
2900
Avi Kivity6aa8b732006-12-10 02:21:36 -08002901static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2902{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002903 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002904
Avi Kivity6de12732011-03-07 12:51:22 +02002905 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2906 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2907 rflags = vmcs_readl(GUEST_RFLAGS);
2908 if (to_vmx(vcpu)->rmode.vm86_active) {
2909 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2910 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2911 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2912 }
2913 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002914 }
Avi Kivity6de12732011-03-07 12:51:22 +02002915 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002916}
2917
2918static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2919{
Wanpeng Lif244dee2017-07-20 01:11:54 -07002920 unsigned long old_rflags = vmx_get_rflags(vcpu);
2921
Avi Kivity6de12732011-03-07 12:51:22 +02002922 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2923 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002924 if (to_vmx(vcpu)->rmode.vm86_active) {
2925 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002926 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002927 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002928 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07002929
2930 if ((old_rflags ^ to_vmx(vcpu)->rflags) & X86_EFLAGS_VM)
2931 to_vmx(vcpu)->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002932}
2933
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002934static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002935{
2936 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2937 int ret = 0;
2938
2939 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002940 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002941 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002942 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002943
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002944 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002945}
2946
2947static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2948{
2949 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2950 u32 interruptibility = interruptibility_old;
2951
2952 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2953
Jan Kiszka48005f62010-02-19 19:38:07 +01002954 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002955 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002956 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002957 interruptibility |= GUEST_INTR_STATE_STI;
2958
2959 if ((interruptibility != interruptibility_old))
2960 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2961}
2962
Avi Kivity6aa8b732006-12-10 02:21:36 -08002963static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2964{
2965 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002966
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002967 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002968 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002969 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002970
Glauber Costa2809f5d2009-05-12 16:21:05 -04002971 /* skipping an emulated instruction also counts */
2972 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002973}
2974
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002975static void nested_vmx_inject_exception_vmexit(struct kvm_vcpu *vcpu,
2976 unsigned long exit_qual)
2977{
2978 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2979 unsigned int nr = vcpu->arch.exception.nr;
2980 u32 intr_info = nr | INTR_INFO_VALID_MASK;
2981
2982 if (vcpu->arch.exception.has_error_code) {
2983 vmcs12->vm_exit_intr_error_code = vcpu->arch.exception.error_code;
2984 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2985 }
2986
2987 if (kvm_exception_is_soft(nr))
2988 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2989 else
2990 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2991
2992 if (!(vmcs12->idt_vectoring_info_field & VECTORING_INFO_VALID_MASK) &&
2993 vmx_get_nmi_mask(vcpu))
2994 intr_info |= INTR_INFO_UNBLOCK_NMI;
2995
2996 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, intr_info, exit_qual);
2997}
2998
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002999/*
3000 * KVM wants to inject page-faults which it got to the guest. This function
3001 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03003002 */
Wanpeng Libfcf83b2017-08-24 03:35:11 -07003003static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned long *exit_qual)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03003004{
3005 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003006 unsigned int nr = vcpu->arch.exception.nr;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03003007
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003008 if (nr == PF_VECTOR) {
3009 if (vcpu->arch.exception.nested_apf) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07003010 *exit_qual = vcpu->arch.apf.nested_apf_token;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003011 return 1;
3012 }
3013 /*
3014 * FIXME: we must not write CR2 when L1 intercepts an L2 #PF exception.
3015 * The fix is to add the ancillary datum (CR2 or DR6) to structs
3016 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6
3017 * can be written only when inject_pending_event runs. This should be
3018 * conditional on a new capability---if the capability is disabled,
3019 * kvm_multiple_exception would write the ancillary information to
3020 * CR2 or DR6, for backwards ABI-compatibility.
3021 */
3022 if (nested_vmx_is_page_fault_vmexit(vmcs12,
3023 vcpu->arch.exception.error_code)) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07003024 *exit_qual = vcpu->arch.cr2;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003025 return 1;
3026 }
3027 } else {
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003028 if (vmcs12->exception_bitmap & (1u << nr)) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07003029 if (nr == DB_VECTOR)
3030 *exit_qual = vcpu->arch.dr6;
3031 else
3032 *exit_qual = 0;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003033 return 1;
3034 }
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003035 }
3036
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003037 return 0;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03003038}
3039
Wanpeng Licaa057a2018-03-12 04:53:03 -07003040static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
3041{
3042 /*
3043 * Ensure that we clear the HLT state in the VMCS. We don't need to
3044 * explicitly skip the instruction because if the HLT state is set,
3045 * then the instruction is already executing and RIP has already been
3046 * advanced.
3047 */
3048 if (kvm_hlt_in_guest(vcpu->kvm) &&
3049 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
3050 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
3051}
3052
Wanpeng Licfcd20e2017-07-13 18:30:39 -07003053static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02003054{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003055 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07003056 unsigned nr = vcpu->arch.exception.nr;
3057 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07003058 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01003059 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003060
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01003061 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003062 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01003063 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
3064 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003065
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003066 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05003067 int inc_eip = 0;
3068 if (kvm_exception_is_soft(nr))
3069 inc_eip = vcpu->arch.event_exit_inst_len;
3070 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02003071 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003072 return;
3073 }
3074
Sean Christophersonadd5ff72018-03-23 09:34:00 -07003075 WARN_ON_ONCE(vmx->emulation_required);
3076
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003077 if (kvm_exception_is_soft(nr)) {
3078 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
3079 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01003080 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
3081 } else
3082 intr_info |= INTR_TYPE_HARD_EXCEPTION;
3083
3084 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Wanpeng Licaa057a2018-03-12 04:53:03 -07003085
3086 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02003087}
3088
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003089static bool vmx_rdtscp_supported(void)
3090{
3091 return cpu_has_vmx_rdtscp();
3092}
3093
Mao, Junjiead756a12012-07-02 01:18:48 +00003094static bool vmx_invpcid_supported(void)
3095{
3096 return cpu_has_vmx_invpcid() && enable_ept;
3097}
3098
Avi Kivity6aa8b732006-12-10 02:21:36 -08003099/*
Eddie Donga75beee2007-05-17 18:55:15 +03003100 * Swap MSR entry in host/guest MSR entry array.
3101 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10003102static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03003103{
Avi Kivity26bb0982009-09-07 11:14:12 +03003104 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003105
3106 tmp = vmx->guest_msrs[to];
3107 vmx->guest_msrs[to] = vmx->guest_msrs[from];
3108 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03003109}
3110
3111/*
Avi Kivitye38aea32007-04-19 13:22:48 +03003112 * Set up the vmcs to automatically save and restore system
3113 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
3114 * mode, as fiddling with msrs is very expensive.
3115 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10003116static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03003117{
Avi Kivity26bb0982009-09-07 11:14:12 +03003118 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03003119
Eddie Donga75beee2007-05-17 18:55:15 +03003120 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03003121#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10003122 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10003123 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03003124 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10003125 move_msr_up(vmx, index, save_nmsrs++);
3126 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03003127 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10003128 move_msr_up(vmx, index, save_nmsrs++);
3129 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03003130 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10003131 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003132 index = __find_msr_index(vmx, MSR_TSC_AUX);
Radim Krčmářd6321d42017-08-05 00:12:49 +02003133 if (index >= 0 && guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003134 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03003135 /*
Brian Gerst8c065852010-07-17 09:03:26 -04003136 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03003137 * if efer.sce is enabled.
3138 */
Brian Gerst8c065852010-07-17 09:03:26 -04003139 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02003140 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10003141 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03003142 }
Eddie Donga75beee2007-05-17 18:55:15 +03003143#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02003144 index = __find_msr_index(vmx, MSR_EFER);
3145 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03003146 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03003147
Avi Kivity26bb0982009-09-07 11:14:12 +03003148 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02003149
Yang Zhang8d146952013-01-25 10:18:50 +08003150 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003151 vmx_update_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03003152}
3153
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003154static u64 vmx_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003155{
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003156 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003157
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003158 if (is_guest_mode(vcpu) &&
3159 (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING))
3160 return vcpu->arch.tsc_offset - vmcs12->tsc_offset;
3161
3162 return vcpu->arch.tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003163}
3164
3165/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10003166 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08003167 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10003168static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003169{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03003170 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03003171 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03003172 * We're here if L1 chose not to trap WRMSR to TSC. According
3173 * to the spec, this should set L1's TSC; The offset that L1
3174 * set for L2 remains unchanged, and still needs to be added
3175 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03003176 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03003177 struct vmcs12 *vmcs12;
Nadav Har'El27fc51b2011-08-02 15:54:52 +03003178 /* recalculate vmcs02.TSC_OFFSET: */
3179 vmcs12 = get_vmcs12(vcpu);
3180 vmcs_write64(TSC_OFFSET, offset +
3181 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
3182 vmcs12->tsc_offset : 0));
3183 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09003184 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
3185 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03003186 vmcs_write64(TSC_OFFSET, offset);
3187 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003188}
3189
Nadav Har'El801d3422011-05-25 23:02:23 +03003190/*
3191 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
3192 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
3193 * all guests if the "nested" module option is off, and can also be disabled
3194 * for a single guest by disabling its VMX cpuid bit.
3195 */
3196static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
3197{
Radim Krčmářd6321d42017-08-05 00:12:49 +02003198 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03003199}
3200
Avi Kivity6aa8b732006-12-10 02:21:36 -08003201/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003202 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
3203 * returned for the various VMX controls MSRs when nested VMX is enabled.
3204 * The same values should also be used to verify that vmcs12 control fields are
3205 * valid during nested entry from L1 to L2.
3206 * Each of these control msrs has a low and high 32-bit half: A low bit is on
3207 * if the corresponding bit in the (32-bit) control field *must* be on, and a
3208 * bit in the high half is on if the corresponding bit in the control field
3209 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003210 */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003211static void nested_vmx_setup_ctls_msrs(struct nested_vmx_msrs *msrs, bool apicv)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003212{
Paolo Bonzini13893092018-02-26 13:40:09 +01003213 if (!nested) {
3214 memset(msrs, 0, sizeof(*msrs));
3215 return;
3216 }
3217
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003218 /*
3219 * Note that as a general rule, the high half of the MSRs (bits in
3220 * the control fields which may be 1) should be initialized by the
3221 * intersection of the underlying hardware's MSR (i.e., features which
3222 * can be supported) and the list of features we want to expose -
3223 * because they are known to be properly supported in our code.
3224 * Also, usually, the low half of the MSRs (bits which must be 1) can
3225 * be set to 0, meaning that L1 may turn off any of these bits. The
3226 * reason is that if one of these bits is necessary, it will appear
3227 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
3228 * fields of vmcs01 and vmcs02, will turn these bits off - and
Paolo Bonzini7313c692017-07-27 10:31:25 +02003229 * nested_vmx_exit_reflected() will not pass related exits to L1.
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003230 * These rules have exceptions below.
3231 */
3232
3233 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01003234 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003235 msrs->pinbased_ctls_low,
3236 msrs->pinbased_ctls_high);
3237 msrs->pinbased_ctls_low |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003238 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003239 msrs->pinbased_ctls_high &=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003240 PIN_BASED_EXT_INTR_MASK |
3241 PIN_BASED_NMI_EXITING |
Paolo Bonzini13893092018-02-26 13:40:09 +01003242 PIN_BASED_VIRTUAL_NMIS |
3243 (apicv ? PIN_BASED_POSTED_INTR : 0);
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003244 msrs->pinbased_ctls_high |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003245 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01003246 PIN_BASED_VMX_PREEMPTION_TIMER;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003247
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02003248 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08003249 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003250 msrs->exit_ctls_low,
3251 msrs->exit_ctls_high);
3252 msrs->exit_ctls_low =
Wincy Vanb9c237b2015-02-03 23:56:30 +08003253 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04003254
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003255 msrs->exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003256#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08003257 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003258#endif
Jan Kiszkaf4124502014-03-07 20:03:13 +01003259 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003260 msrs->exit_ctls_high |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003261 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf4124502014-03-07 20:03:13 +01003262 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04003263 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
3264
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003265 if (kvm_mpx_supported())
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003266 msrs->exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003267
Jan Kiszka2996fca2014-06-16 13:59:43 +02003268 /* We support free control of debug control saving. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003269 msrs->exit_ctls_low &= ~VM_EXIT_SAVE_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02003270
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003271 /* entry controls */
3272 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003273 msrs->entry_ctls_low,
3274 msrs->entry_ctls_high);
3275 msrs->entry_ctls_low =
Wincy Vanb9c237b2015-02-03 23:56:30 +08003276 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003277 msrs->entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02003278#ifdef CONFIG_X86_64
3279 VM_ENTRY_IA32E_MODE |
3280#endif
3281 VM_ENTRY_LOAD_IA32_PAT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003282 msrs->entry_ctls_high |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003283 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003284 if (kvm_mpx_supported())
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003285 msrs->entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02003286
Jan Kiszka2996fca2014-06-16 13:59:43 +02003287 /* We support free control of debug control loading. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003288 msrs->entry_ctls_low &= ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02003289
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003290 /* cpu-based controls */
3291 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003292 msrs->procbased_ctls_low,
3293 msrs->procbased_ctls_high);
3294 msrs->procbased_ctls_low =
Wincy Vanb9c237b2015-02-03 23:56:30 +08003295 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003296 msrs->procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01003297 CPU_BASED_VIRTUAL_INTR_PENDING |
3298 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003299 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
3300 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
3301 CPU_BASED_CR3_STORE_EXITING |
3302#ifdef CONFIG_X86_64
3303 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
3304#endif
3305 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03003306 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
3307 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
3308 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
3309 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003310 /*
3311 * We can allow some features even when not supported by the
3312 * hardware. For example, L1 can specify an MSR bitmap - and we
3313 * can use it to avoid exits to L1 - even when L0 runs L2
3314 * without MSR bitmaps.
3315 */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003316 msrs->procbased_ctls_high |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003317 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02003318 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003319
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02003320 /* We support free control of CR3 access interception. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003321 msrs->procbased_ctls_low &=
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02003322 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
3323
Paolo Bonzini80154d72017-08-24 13:55:35 +02003324 /*
3325 * secondary cpu-based controls. Do not include those that
3326 * depend on CPUID bits, they are added later by vmx_cpuid_update.
3327 */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003328 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003329 msrs->secondary_ctls_low,
3330 msrs->secondary_ctls_high);
3331 msrs->secondary_ctls_low = 0;
3332 msrs->secondary_ctls_high &=
Jan Kiszkad6851fb2013-02-23 22:34:39 +01003333 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini1b073042016-10-25 16:06:30 +02003334 SECONDARY_EXEC_DESC |
Wincy Vanf2b93282015-02-03 23:56:03 +08003335 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wincy Van82f0dd42015-02-03 23:57:18 +08003336 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08003337 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Paolo Bonzini3db13482017-08-24 14:48:03 +02003338 SECONDARY_EXEC_WBINVD_EXITING;
Jan Kiszkac18911a2013-03-13 16:06:41 +01003339
Nadav Har'Elafa61f72013-08-07 14:59:22 +02003340 if (enable_ept) {
3341 /* nested EPT: emulate EPT also to L1 */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003342 msrs->secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01003343 SECONDARY_EXEC_ENABLE_EPT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003344 msrs->ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01003345 VMX_EPTP_WB_BIT | VMX_EPT_INVEPT_BIT;
Bandan Das02120c42016-07-12 18:18:52 -04003346 if (cpu_has_vmx_ept_execute_only())
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003347 msrs->ept_caps |=
Bandan Das02120c42016-07-12 18:18:52 -04003348 VMX_EPT_EXECUTE_ONLY_BIT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003349 msrs->ept_caps &= vmx_capability.ept;
3350 msrs->ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01003351 VMX_EPT_EXTENT_CONTEXT_BIT | VMX_EPT_2MB_PAGE_BIT |
3352 VMX_EPT_1GB_PAGE_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04003353 if (enable_ept_ad_bits) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003354 msrs->secondary_ctls_high |=
Bandan Das03efce62017-05-05 15:25:15 -04003355 SECONDARY_EXEC_ENABLE_PML;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003356 msrs->ept_caps |= VMX_EPT_AD_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04003357 }
David Hildenbrand1c13bff2017-08-24 20:51:33 +02003358 }
Nadav Har'Elafa61f72013-08-07 14:59:22 +02003359
Bandan Das27c42a12017-08-03 15:54:42 -04003360 if (cpu_has_vmx_vmfunc()) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003361 msrs->secondary_ctls_high |=
Bandan Das27c42a12017-08-03 15:54:42 -04003362 SECONDARY_EXEC_ENABLE_VMFUNC;
Bandan Das41ab9372017-08-03 15:54:43 -04003363 /*
3364 * Advertise EPTP switching unconditionally
3365 * since we emulate it
3366 */
Wanpeng Li575b3a22017-10-19 07:00:34 +08003367 if (enable_ept)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003368 msrs->vmfunc_controls =
Wanpeng Li575b3a22017-10-19 07:00:34 +08003369 VMX_VMFUNC_EPTP_SWITCHING;
Bandan Das27c42a12017-08-03 15:54:42 -04003370 }
3371
Paolo Bonzinief697a72016-03-18 16:58:38 +01003372 /*
3373 * Old versions of KVM use the single-context version without
3374 * checking for support, so declare that it is supported even
3375 * though it is treated as global context. The alternative is
3376 * not failing the single-context invvpid, and it is worse.
3377 */
Wanpeng Li63cb6d52017-03-20 21:18:53 -07003378 if (enable_vpid) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003379 msrs->secondary_ctls_high |=
Wanpeng Li63cb6d52017-03-20 21:18:53 -07003380 SECONDARY_EXEC_ENABLE_VPID;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003381 msrs->vpid_caps = VMX_VPID_INVVPID_BIT |
Jan Dakinevichbcdde302016-10-28 07:00:30 +03003382 VMX_VPID_EXTENT_SUPPORTED_MASK;
David Hildenbrand1c13bff2017-08-24 20:51:33 +02003383 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07003384
Radim Krčmář0790ec12015-03-17 14:02:32 +01003385 if (enable_unrestricted_guest)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003386 msrs->secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01003387 SECONDARY_EXEC_UNRESTRICTED_GUEST;
3388
Jan Kiszkac18911a2013-03-13 16:06:41 +01003389 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08003390 rdmsr(MSR_IA32_VMX_MISC,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003391 msrs->misc_low,
3392 msrs->misc_high);
3393 msrs->misc_low &= VMX_MISC_SAVE_EFER_LMA;
3394 msrs->misc_low |=
Jim Mattsonf4160e42018-05-29 09:11:33 -07003395 MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS |
Wincy Vanb9c237b2015-02-03 23:56:30 +08003396 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf4124502014-03-07 20:03:13 +01003397 VMX_MISC_ACTIVITY_HLT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003398 msrs->misc_high = 0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003399
3400 /*
3401 * This MSR reports some information about VMX support. We
3402 * should return information about the VMX we emulate for the
3403 * guest, and the VMCS structure we give it - not about the
3404 * VMX support of the underlying hardware.
3405 */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003406 msrs->basic =
David Matlack62cc6b9d2016-11-29 18:14:07 -08003407 VMCS12_REVISION |
3408 VMX_BASIC_TRUE_CTLS |
3409 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
3410 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
3411
3412 if (cpu_has_vmx_basic_inout())
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003413 msrs->basic |= VMX_BASIC_INOUT;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003414
3415 /*
David Matlack8322ebb2016-11-29 18:14:09 -08003416 * These MSRs specify bits which the guest must keep fixed on
David Matlack62cc6b9d2016-11-29 18:14:07 -08003417 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
3418 * We picked the standard core2 setting.
3419 */
3420#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
3421#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003422 msrs->cr0_fixed0 = VMXON_CR0_ALWAYSON;
3423 msrs->cr4_fixed0 = VMXON_CR4_ALWAYSON;
David Matlack8322ebb2016-11-29 18:14:09 -08003424
3425 /* These MSRs specify bits which the guest must keep fixed off. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003426 rdmsrl(MSR_IA32_VMX_CR0_FIXED1, msrs->cr0_fixed1);
3427 rdmsrl(MSR_IA32_VMX_CR4_FIXED1, msrs->cr4_fixed1);
David Matlack62cc6b9d2016-11-29 18:14:07 -08003428
3429 /* highest index: VMX_PREEMPTION_TIMER_VALUE */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003430 msrs->vmcs_enum = VMCS12_MAX_FIELD_INDEX << 1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003431}
3432
David Matlack38991522016-11-29 18:14:08 -08003433/*
3434 * if fixed0[i] == 1: val[i] must be 1
3435 * if fixed1[i] == 0: val[i] must be 0
3436 */
3437static inline bool fixed_bits_valid(u64 val, u64 fixed0, u64 fixed1)
3438{
3439 return ((val & fixed1) | fixed0) == val;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003440}
3441
3442static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
3443{
David Matlack38991522016-11-29 18:14:08 -08003444 return fixed_bits_valid(control, low, high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003445}
3446
3447static inline u64 vmx_control_msr(u32 low, u32 high)
3448{
3449 return low | ((u64)high << 32);
3450}
3451
David Matlack62cc6b9d2016-11-29 18:14:07 -08003452static bool is_bitwise_subset(u64 superset, u64 subset, u64 mask)
3453{
3454 superset &= mask;
3455 subset &= mask;
3456
3457 return (superset | subset) == superset;
3458}
3459
3460static int vmx_restore_vmx_basic(struct vcpu_vmx *vmx, u64 data)
3461{
3462 const u64 feature_and_reserved =
3463 /* feature (except bit 48; see below) */
3464 BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) |
3465 /* reserved */
3466 BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56);
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003467 u64 vmx_basic = vmx->nested.msrs.basic;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003468
3469 if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved))
3470 return -EINVAL;
3471
3472 /*
3473 * KVM does not emulate a version of VMX that constrains physical
3474 * addresses of VMX structures (e.g. VMCS) to 32-bits.
3475 */
3476 if (data & BIT_ULL(48))
3477 return -EINVAL;
3478
3479 if (vmx_basic_vmcs_revision_id(vmx_basic) !=
3480 vmx_basic_vmcs_revision_id(data))
3481 return -EINVAL;
3482
3483 if (vmx_basic_vmcs_size(vmx_basic) > vmx_basic_vmcs_size(data))
3484 return -EINVAL;
3485
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003486 vmx->nested.msrs.basic = data;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003487 return 0;
3488}
3489
3490static int
3491vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3492{
3493 u64 supported;
3494 u32 *lowp, *highp;
3495
3496 switch (msr_index) {
3497 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003498 lowp = &vmx->nested.msrs.pinbased_ctls_low;
3499 highp = &vmx->nested.msrs.pinbased_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003500 break;
3501 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003502 lowp = &vmx->nested.msrs.procbased_ctls_low;
3503 highp = &vmx->nested.msrs.procbased_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003504 break;
3505 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003506 lowp = &vmx->nested.msrs.exit_ctls_low;
3507 highp = &vmx->nested.msrs.exit_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003508 break;
3509 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003510 lowp = &vmx->nested.msrs.entry_ctls_low;
3511 highp = &vmx->nested.msrs.entry_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003512 break;
3513 case MSR_IA32_VMX_PROCBASED_CTLS2:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003514 lowp = &vmx->nested.msrs.secondary_ctls_low;
3515 highp = &vmx->nested.msrs.secondary_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003516 break;
3517 default:
3518 BUG();
3519 }
3520
3521 supported = vmx_control_msr(*lowp, *highp);
3522
3523 /* Check must-be-1 bits are still 1. */
3524 if (!is_bitwise_subset(data, supported, GENMASK_ULL(31, 0)))
3525 return -EINVAL;
3526
3527 /* Check must-be-0 bits are still 0. */
3528 if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32)))
3529 return -EINVAL;
3530
3531 *lowp = data;
3532 *highp = data >> 32;
3533 return 0;
3534}
3535
3536static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data)
3537{
3538 const u64 feature_and_reserved_bits =
3539 /* feature */
3540 BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) |
3541 BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) |
3542 /* reserved */
3543 GENMASK_ULL(13, 9) | BIT_ULL(31);
3544 u64 vmx_misc;
3545
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003546 vmx_misc = vmx_control_msr(vmx->nested.msrs.misc_low,
3547 vmx->nested.msrs.misc_high);
David Matlack62cc6b9d2016-11-29 18:14:07 -08003548
3549 if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits))
3550 return -EINVAL;
3551
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003552 if ((vmx->nested.msrs.pinbased_ctls_high &
David Matlack62cc6b9d2016-11-29 18:14:07 -08003553 PIN_BASED_VMX_PREEMPTION_TIMER) &&
3554 vmx_misc_preemption_timer_rate(data) !=
3555 vmx_misc_preemption_timer_rate(vmx_misc))
3556 return -EINVAL;
3557
3558 if (vmx_misc_cr3_count(data) > vmx_misc_cr3_count(vmx_misc))
3559 return -EINVAL;
3560
3561 if (vmx_misc_max_msr(data) > vmx_misc_max_msr(vmx_misc))
3562 return -EINVAL;
3563
3564 if (vmx_misc_mseg_revid(data) != vmx_misc_mseg_revid(vmx_misc))
3565 return -EINVAL;
3566
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003567 vmx->nested.msrs.misc_low = data;
3568 vmx->nested.msrs.misc_high = data >> 32;
Jim Mattsonf4160e42018-05-29 09:11:33 -07003569
3570 /*
3571 * If L1 has read-only VM-exit information fields, use the
3572 * less permissive vmx_vmwrite_bitmap to specify write
3573 * permissions for the shadow VMCS.
3574 */
3575 if (enable_shadow_vmcs && !nested_cpu_has_vmwrite_any_field(&vmx->vcpu))
3576 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
3577
David Matlack62cc6b9d2016-11-29 18:14:07 -08003578 return 0;
3579}
3580
3581static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data)
3582{
3583 u64 vmx_ept_vpid_cap;
3584
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003585 vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.msrs.ept_caps,
3586 vmx->nested.msrs.vpid_caps);
David Matlack62cc6b9d2016-11-29 18:14:07 -08003587
3588 /* Every bit is either reserved or a feature bit. */
3589 if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL))
3590 return -EINVAL;
3591
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003592 vmx->nested.msrs.ept_caps = data;
3593 vmx->nested.msrs.vpid_caps = data >> 32;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003594 return 0;
3595}
3596
3597static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3598{
3599 u64 *msr;
3600
3601 switch (msr_index) {
3602 case MSR_IA32_VMX_CR0_FIXED0:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003603 msr = &vmx->nested.msrs.cr0_fixed0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003604 break;
3605 case MSR_IA32_VMX_CR4_FIXED0:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003606 msr = &vmx->nested.msrs.cr4_fixed0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003607 break;
3608 default:
3609 BUG();
3610 }
3611
3612 /*
3613 * 1 bits (which indicates bits which "must-be-1" during VMX operation)
3614 * must be 1 in the restored value.
3615 */
3616 if (!is_bitwise_subset(data, *msr, -1ULL))
3617 return -EINVAL;
3618
3619 *msr = data;
3620 return 0;
3621}
3622
3623/*
3624 * Called when userspace is restoring VMX MSRs.
3625 *
3626 * Returns 0 on success, non-0 otherwise.
3627 */
3628static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
3629{
3630 struct vcpu_vmx *vmx = to_vmx(vcpu);
3631
Jim Mattsona943ac52018-05-29 09:11:32 -07003632 /*
3633 * Don't allow changes to the VMX capability MSRs while the vCPU
3634 * is in VMX operation.
3635 */
3636 if (vmx->nested.vmxon)
3637 return -EBUSY;
3638
David Matlack62cc6b9d2016-11-29 18:14:07 -08003639 switch (msr_index) {
3640 case MSR_IA32_VMX_BASIC:
3641 return vmx_restore_vmx_basic(vmx, data);
3642 case MSR_IA32_VMX_PINBASED_CTLS:
3643 case MSR_IA32_VMX_PROCBASED_CTLS:
3644 case MSR_IA32_VMX_EXIT_CTLS:
3645 case MSR_IA32_VMX_ENTRY_CTLS:
3646 /*
3647 * The "non-true" VMX capability MSRs are generated from the
3648 * "true" MSRs, so we do not support restoring them directly.
3649 *
3650 * If userspace wants to emulate VMX_BASIC[55]=0, userspace
3651 * should restore the "true" MSRs with the must-be-1 bits
3652 * set according to the SDM Vol 3. A.2 "RESERVED CONTROLS AND
3653 * DEFAULT SETTINGS".
3654 */
3655 return -EINVAL;
3656 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3657 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3658 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3659 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3660 case MSR_IA32_VMX_PROCBASED_CTLS2:
3661 return vmx_restore_control_msr(vmx, msr_index, data);
3662 case MSR_IA32_VMX_MISC:
3663 return vmx_restore_vmx_misc(vmx, data);
3664 case MSR_IA32_VMX_CR0_FIXED0:
3665 case MSR_IA32_VMX_CR4_FIXED0:
3666 return vmx_restore_fixed0_msr(vmx, msr_index, data);
3667 case MSR_IA32_VMX_CR0_FIXED1:
3668 case MSR_IA32_VMX_CR4_FIXED1:
3669 /*
3670 * These MSRs are generated based on the vCPU's CPUID, so we
3671 * do not support restoring them directly.
3672 */
3673 return -EINVAL;
3674 case MSR_IA32_VMX_EPT_VPID_CAP:
3675 return vmx_restore_vmx_ept_vpid_cap(vmx, data);
3676 case MSR_IA32_VMX_VMCS_ENUM:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003677 vmx->nested.msrs.vmcs_enum = data;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003678 return 0;
3679 default:
3680 /*
3681 * The rest of the VMX capability MSRs do not support restore.
3682 */
3683 return -EINVAL;
3684 }
3685}
3686
Jan Kiszkacae50132014-01-04 18:47:22 +01003687/* Returns 0 on success, non-0 otherwise. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003688static int vmx_get_vmx_msr(struct nested_vmx_msrs *msrs, u32 msr_index, u64 *pdata)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003689{
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003690 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003691 case MSR_IA32_VMX_BASIC:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003692 *pdata = msrs->basic;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003693 break;
3694 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3695 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003696 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003697 msrs->pinbased_ctls_low,
3698 msrs->pinbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003699 if (msr_index == MSR_IA32_VMX_PINBASED_CTLS)
3700 *pdata |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003701 break;
3702 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3703 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003704 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003705 msrs->procbased_ctls_low,
3706 msrs->procbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003707 if (msr_index == MSR_IA32_VMX_PROCBASED_CTLS)
3708 *pdata |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003709 break;
3710 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3711 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003712 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003713 msrs->exit_ctls_low,
3714 msrs->exit_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003715 if (msr_index == MSR_IA32_VMX_EXIT_CTLS)
3716 *pdata |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003717 break;
3718 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3719 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003720 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003721 msrs->entry_ctls_low,
3722 msrs->entry_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003723 if (msr_index == MSR_IA32_VMX_ENTRY_CTLS)
3724 *pdata |= VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003725 break;
3726 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003727 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003728 msrs->misc_low,
3729 msrs->misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003730 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003731 case MSR_IA32_VMX_CR0_FIXED0:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003732 *pdata = msrs->cr0_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003733 break;
3734 case MSR_IA32_VMX_CR0_FIXED1:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003735 *pdata = msrs->cr0_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003736 break;
3737 case MSR_IA32_VMX_CR4_FIXED0:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003738 *pdata = msrs->cr4_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003739 break;
3740 case MSR_IA32_VMX_CR4_FIXED1:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003741 *pdata = msrs->cr4_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003742 break;
3743 case MSR_IA32_VMX_VMCS_ENUM:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003744 *pdata = msrs->vmcs_enum;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003745 break;
3746 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003747 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003748 msrs->secondary_ctls_low,
3749 msrs->secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003750 break;
3751 case MSR_IA32_VMX_EPT_VPID_CAP:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003752 *pdata = msrs->ept_caps |
3753 ((u64)msrs->vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003754 break;
Bandan Das27c42a12017-08-03 15:54:42 -04003755 case MSR_IA32_VMX_VMFUNC:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003756 *pdata = msrs->vmfunc_controls;
Bandan Das27c42a12017-08-03 15:54:42 -04003757 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003758 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003759 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08003760 }
3761
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003762 return 0;
3763}
3764
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003765static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
3766 uint64_t val)
3767{
3768 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
3769
3770 return !(val & ~valid_bits);
3771}
3772
Tom Lendacky801e4592018-02-21 13:39:51 -06003773static int vmx_get_msr_feature(struct kvm_msr_entry *msr)
3774{
Paolo Bonzini13893092018-02-26 13:40:09 +01003775 switch (msr->index) {
3776 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
3777 if (!nested)
3778 return 1;
3779 return vmx_get_vmx_msr(&vmcs_config.nested, msr->index, &msr->data);
3780 default:
3781 return 1;
3782 }
3783
3784 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06003785}
3786
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003787/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003788 * Reads an msr value (of 'msr_index') into 'pdata'.
3789 * Returns 0 on success, non-0 otherwise.
3790 * Assumes vcpu_load() was already called.
3791 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003792static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003793{
Borislav Petkova6cb0992017-12-20 12:50:28 +01003794 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003795 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003796
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003797 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003798#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003799 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003800 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003801 break;
3802 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003803 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003804 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003805 case MSR_KERNEL_GS_BASE:
Borislav Petkova6cb0992017-12-20 12:50:28 +01003806 vmx_load_host_state(vmx);
3807 msr_info->data = vmx->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003808 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03003809#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08003810 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003811 return kvm_get_msr_common(vcpu, msr_info);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01003812 case MSR_IA32_SPEC_CTRL:
3813 if (!msr_info->host_initiated &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01003814 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
3815 return 1;
3816
3817 msr_info->data = to_vmx(vcpu)->spec_ctrl;
3818 break;
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +01003819 case MSR_IA32_ARCH_CAPABILITIES:
3820 if (!msr_info->host_initiated &&
3821 !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES))
3822 return 1;
3823 msr_info->data = to_vmx(vcpu)->arch_capabilities;
3824 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003825 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003826 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003827 break;
3828 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003829 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003830 break;
3831 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003832 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003833 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003834 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003835 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003836 (!msr_info->host_initiated &&
3837 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003838 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003839 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003840 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003841 case MSR_IA32_MCG_EXT_CTL:
3842 if (!msr_info->host_initiated &&
Borislav Petkova6cb0992017-12-20 12:50:28 +01003843 !(vmx->msr_ia32_feature_control &
Ashok Rajc45dcc72016-06-22 14:59:56 +08003844 FEATURE_CONTROL_LMCE))
Jan Kiszkacae50132014-01-04 18:47:22 +01003845 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003846 msr_info->data = vcpu->arch.mcg_ext_ctl;
3847 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003848 case MSR_IA32_FEATURE_CONTROL:
Borislav Petkova6cb0992017-12-20 12:50:28 +01003849 msr_info->data = vmx->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01003850 break;
3851 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
3852 if (!nested_vmx_allowed(vcpu))
3853 return 1;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003854 return vmx_get_vmx_msr(&vmx->nested.msrs, msr_info->index,
3855 &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08003856 case MSR_IA32_XSS:
3857 if (!vmx_xsaves_supported())
3858 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003859 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08003860 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003861 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003862 if (!msr_info->host_initiated &&
3863 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003864 return 1;
3865 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003866 default:
Borislav Petkova6cb0992017-12-20 12:50:28 +01003867 msr = find_msr_entry(vmx, msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003868 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003869 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003870 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003871 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003872 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003873 }
3874
Avi Kivity6aa8b732006-12-10 02:21:36 -08003875 return 0;
3876}
3877
Jan Kiszkacae50132014-01-04 18:47:22 +01003878static void vmx_leave_nested(struct kvm_vcpu *vcpu);
3879
Avi Kivity6aa8b732006-12-10 02:21:36 -08003880/*
3881 * Writes msr value into into the appropriate "register".
3882 * Returns 0 on success, non-0 otherwise.
3883 * Assumes vcpu_load() was already called.
3884 */
Will Auld8fe8ab42012-11-29 12:42:12 -08003885static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003886{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003887 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003888 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03003889 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08003890 u32 msr_index = msr_info->index;
3891 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03003892
Avi Kivity6aa8b732006-12-10 02:21:36 -08003893 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08003894 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08003895 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03003896 break;
Avi Kivity16175a72009-03-23 22:13:44 +02003897#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003898 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003899 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003900 vmcs_writel(GUEST_FS_BASE, data);
3901 break;
3902 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003903 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003904 vmcs_writel(GUEST_GS_BASE, data);
3905 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003906 case MSR_KERNEL_GS_BASE:
3907 vmx_load_host_state(vmx);
3908 vmx->msr_guest_kernel_gs_base = data;
3909 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003910#endif
3911 case MSR_IA32_SYSENTER_CS:
3912 vmcs_write32(GUEST_SYSENTER_CS, data);
3913 break;
3914 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003915 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003916 break;
3917 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003918 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003919 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003920 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003921 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003922 (!msr_info->host_initiated &&
3923 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003924 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08003925 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07003926 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003927 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003928 vmcs_write64(GUEST_BNDCFGS, data);
3929 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01003930 case MSR_IA32_SPEC_CTRL:
3931 if (!msr_info->host_initiated &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01003932 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
3933 return 1;
3934
3935 /* The STIBP bit doesn't fault even if it's not advertised */
Konrad Rzeszutek Wilk9f65fb22018-05-09 21:41:38 +02003936 if (data & ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01003937 return 1;
3938
3939 vmx->spec_ctrl = data;
3940
3941 if (!data)
3942 break;
3943
3944 /*
3945 * For non-nested:
3946 * When it's written (to non-zero) for the first time, pass
3947 * it through.
3948 *
3949 * For nested:
3950 * The handling of the MSR bitmap for L2 guests is done in
3951 * nested_vmx_merge_msr_bitmap. We should not touch the
3952 * vmcs02.msr_bitmap here since it gets completely overwritten
3953 * in the merging. We update the vmcs01 here for L1 as well
3954 * since it will end up touching the MSR anyway now.
3955 */
3956 vmx_disable_intercept_for_msr(vmx->vmcs01.msr_bitmap,
3957 MSR_IA32_SPEC_CTRL,
3958 MSR_TYPE_RW);
3959 break;
Ashok Raj15d45072018-02-01 22:59:43 +01003960 case MSR_IA32_PRED_CMD:
3961 if (!msr_info->host_initiated &&
Ashok Raj15d45072018-02-01 22:59:43 +01003962 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
3963 return 1;
3964
3965 if (data & ~PRED_CMD_IBPB)
3966 return 1;
3967
3968 if (!data)
3969 break;
3970
3971 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
3972
3973 /*
3974 * For non-nested:
3975 * When it's written (to non-zero) for the first time, pass
3976 * it through.
3977 *
3978 * For nested:
3979 * The handling of the MSR bitmap for L2 guests is done in
3980 * nested_vmx_merge_msr_bitmap. We should not touch the
3981 * vmcs02.msr_bitmap here since it gets completely overwritten
3982 * in the merging.
3983 */
3984 vmx_disable_intercept_for_msr(vmx->vmcs01.msr_bitmap, MSR_IA32_PRED_CMD,
3985 MSR_TYPE_W);
3986 break;
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +01003987 case MSR_IA32_ARCH_CAPABILITIES:
3988 if (!msr_info->host_initiated)
3989 return 1;
3990 vmx->arch_capabilities = data;
3991 break;
Sheng Yang468d4722008-10-09 16:01:55 +08003992 case MSR_IA32_CR_PAT:
3993 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03003994 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
3995 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003996 vmcs_write64(GUEST_IA32_PAT, data);
3997 vcpu->arch.pat = data;
3998 break;
3999 }
Will Auld8fe8ab42012-11-29 12:42:12 -08004000 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004001 break;
Will Auldba904632012-11-29 12:42:50 -08004002 case MSR_IA32_TSC_ADJUST:
4003 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004004 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004005 case MSR_IA32_MCG_EXT_CTL:
4006 if ((!msr_info->host_initiated &&
4007 !(to_vmx(vcpu)->msr_ia32_feature_control &
4008 FEATURE_CONTROL_LMCE)) ||
4009 (data & ~MCG_EXT_CTL_LMCE_EN))
4010 return 1;
4011 vcpu->arch.mcg_ext_ctl = data;
4012 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01004013 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08004014 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08004015 (to_vmx(vcpu)->msr_ia32_feature_control &
Jan Kiszkacae50132014-01-04 18:47:22 +01004016 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
4017 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08004018 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01004019 if (msr_info->host_initiated && data == 0)
4020 vmx_leave_nested(vcpu);
4021 break;
4022 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08004023 if (!msr_info->host_initiated)
4024 return 1; /* they are read-only */
4025 if (!nested_vmx_allowed(vcpu))
4026 return 1;
4027 return vmx_set_vmx_msr(vcpu, msr_index, data);
Wanpeng Li20300092014-12-02 19:14:59 +08004028 case MSR_IA32_XSS:
4029 if (!vmx_xsaves_supported())
4030 return 1;
4031 /*
4032 * The only supported bit as of Skylake is bit 8, but
4033 * it is not supported on KVM.
4034 */
4035 if (data != 0)
4036 return 1;
4037 vcpu->arch.ia32_xss = data;
4038 if (vcpu->arch.ia32_xss != host_xss)
4039 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
4040 vcpu->arch.ia32_xss, host_xss);
4041 else
4042 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
4043 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004044 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02004045 if (!msr_info->host_initiated &&
4046 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004047 return 1;
4048 /* Check reserved bit, higher 32 bits should be zero */
4049 if ((data >> 32) != 0)
4050 return 1;
4051 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004052 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10004053 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08004054 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07004055 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08004056 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03004057 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
4058 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07004059 ret = kvm_set_shared_msr(msr->index, msr->data,
4060 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03004061 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07004062 if (ret)
4063 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03004064 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08004065 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004066 }
Will Auld8fe8ab42012-11-29 12:42:12 -08004067 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004068 }
4069
Eddie Dong2cc51562007-05-21 07:28:09 +03004070 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004071}
4072
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004073static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004074{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004075 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
4076 switch (reg) {
4077 case VCPU_REGS_RSP:
4078 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
4079 break;
4080 case VCPU_REGS_RIP:
4081 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
4082 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004083 case VCPU_EXREG_PDPTR:
4084 if (enable_ept)
4085 ept_save_pdptrs(vcpu);
4086 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004087 default:
4088 break;
4089 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004090}
4091
Avi Kivity6aa8b732006-12-10 02:21:36 -08004092static __init int cpu_has_kvm_support(void)
4093{
Eduardo Habkost6210e372008-11-17 19:03:16 -02004094 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004095}
4096
4097static __init int vmx_disabled_by_bios(void)
4098{
4099 u64 msr;
4100
4101 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04004102 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08004103 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04004104 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
4105 && tboot_enabled())
4106 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08004107 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04004108 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08004109 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08004110 && !tboot_enabled()) {
4111 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08004112 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04004113 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08004114 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08004115 /* launched w/o TXT and VMX disabled */
4116 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
4117 && !tboot_enabled())
4118 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04004119 }
4120
4121 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004122}
4123
Dongxiao Xu7725b892010-05-11 18:29:38 +08004124static void kvm_cpu_vmxon(u64 addr)
4125{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01004126 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03004127 intel_pt_handle_vmx(1);
4128
Dongxiao Xu7725b892010-05-11 18:29:38 +08004129 asm volatile (ASM_VMX_VMXON_RAX
4130 : : "a"(&addr), "m"(addr)
4131 : "memory", "cc");
4132}
4133
Radim Krčmář13a34e02014-08-28 15:13:03 +02004134static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004135{
4136 int cpu = raw_smp_processor_id();
4137 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04004138 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004139
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07004140 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02004141 return -EBUSY;
4142
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01004143 /*
4144 * This can happen if we hot-added a CPU but failed to allocate
4145 * VP assist page for it.
4146 */
4147 if (static_branch_unlikely(&enable_evmcs) &&
4148 !hv_get_vp_assist_page(cpu))
4149 return -EFAULT;
4150
Nadav Har'Eld462b812011-05-24 15:26:10 +03004151 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08004152 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
4153 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08004154
4155 /*
4156 * Now we can enable the vmclear operation in kdump
4157 * since the loaded_vmcss_on_cpu list on this cpu
4158 * has been initialized.
4159 *
4160 * Though the cpu is not in VMX operation now, there
4161 * is no problem to enable the vmclear operation
4162 * for the loaded_vmcss_on_cpu list is empty!
4163 */
4164 crash_enable_local_vmclear(cpu);
4165
Avi Kivity6aa8b732006-12-10 02:21:36 -08004166 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04004167
4168 test_bits = FEATURE_CONTROL_LOCKED;
4169 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
4170 if (tboot_enabled())
4171 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
4172
4173 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004174 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04004175 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
4176 }
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01004177 kvm_cpu_vmxon(phys_addr);
David Hildenbrandfdf288b2017-08-24 20:51:29 +02004178 if (enable_ept)
4179 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02004180
4181 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004182}
4183
Nadav Har'Eld462b812011-05-24 15:26:10 +03004184static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03004185{
4186 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03004187 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03004188
Nadav Har'Eld462b812011-05-24 15:26:10 +03004189 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
4190 loaded_vmcss_on_cpu_link)
4191 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03004192}
4193
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02004194
4195/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
4196 * tricks.
4197 */
4198static void kvm_cpu_vmxoff(void)
4199{
4200 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03004201
4202 intel_pt_handle_vmx(0);
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01004203 cr4_clear_bits(X86_CR4_VMXE);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02004204}
4205
Radim Krčmář13a34e02014-08-28 15:13:03 +02004206static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004207{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01004208 vmclear_local_loaded_vmcss();
4209 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004210}
4211
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004212static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04004213 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004214{
4215 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004216 u32 ctl = ctl_min | ctl_opt;
4217
4218 rdmsr(msr, vmx_msr_low, vmx_msr_high);
4219
4220 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
4221 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
4222
4223 /* Ensure minimum (required) set of control bits are supported. */
4224 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004225 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004226
4227 *result = ctl;
4228 return 0;
4229}
4230
Avi Kivity110312c2010-12-21 12:54:20 +02004231static __init bool allow_1_setting(u32 msr, u32 ctl)
4232{
4233 u32 vmx_msr_low, vmx_msr_high;
4234
4235 rdmsr(msr, vmx_msr_low, vmx_msr_high);
4236 return vmx_msr_high & ctl;
4237}
4238
Yang, Sheng002c7f72007-07-31 14:23:01 +03004239static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004240{
4241 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08004242 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004243 u32 _pin_based_exec_control = 0;
4244 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004245 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004246 u32 _vmexit_control = 0;
4247 u32 _vmentry_control = 0;
4248
Paolo Bonzini13893092018-02-26 13:40:09 +01004249 memset(vmcs_conf, 0, sizeof(*vmcs_conf));
Raghavendra K T10166742012-02-07 23:19:20 +05304250 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004251#ifdef CONFIG_X86_64
4252 CPU_BASED_CR8_LOAD_EXITING |
4253 CPU_BASED_CR8_STORE_EXITING |
4254#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08004255 CPU_BASED_CR3_LOAD_EXITING |
4256 CPU_BASED_CR3_STORE_EXITING |
Quan Xu8eb73e22017-12-12 16:44:21 +08004257 CPU_BASED_UNCOND_IO_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004258 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03004259 CPU_BASED_USE_TSC_OFFSETING |
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004260 CPU_BASED_MWAIT_EXITING |
4261 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02004262 CPU_BASED_INVLPG_EXITING |
4263 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06004264
Sheng Yangf78e0e22007-10-29 09:40:42 +08004265 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08004266 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08004267 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004268 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
4269 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004270 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004271#ifdef CONFIG_X86_64
4272 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
4273 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
4274 ~CPU_BASED_CR8_STORE_EXITING;
4275#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08004276 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08004277 min2 = 0;
4278 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08004279 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08004280 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08004281 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004282 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004283 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004284 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Paolo Bonzini0367f202016-07-12 10:44:55 +02004285 SECONDARY_EXEC_DESC |
Mao, Junjiead756a12012-07-02 01:18:48 +00004286 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08004287 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08004288 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03004289 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08004290 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08004291 SECONDARY_EXEC_XSAVES |
David Hildenbrand736fdf72017-08-24 20:51:37 +02004292 SECONDARY_EXEC_RDSEED_EXITING |
4293 SECONDARY_EXEC_RDRAND_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08004294 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04004295 SECONDARY_EXEC_TSC_SCALING |
4296 SECONDARY_EXEC_ENABLE_VMFUNC;
Sheng Yangd56f5462008-04-25 10:13:16 +08004297 if (adjust_vmx_controls(min2, opt2,
4298 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08004299 &_cpu_based_2nd_exec_control) < 0)
4300 return -EIO;
4301 }
4302#ifndef CONFIG_X86_64
4303 if (!(_cpu_based_2nd_exec_control &
4304 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
4305 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
4306#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08004307
4308 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
4309 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08004310 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08004311 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
4312 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08004313
Wanpeng Li61f1dd92017-10-18 16:02:19 -07004314 rdmsr_safe(MSR_IA32_VMX_EPT_VPID_CAP,
4315 &vmx_capability.ept, &vmx_capability.vpid);
4316
Sheng Yangd56f5462008-04-25 10:13:16 +08004317 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03004318 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
4319 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03004320 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
4321 CPU_BASED_CR3_STORE_EXITING |
4322 CPU_BASED_INVLPG_EXITING);
Wanpeng Li61f1dd92017-10-18 16:02:19 -07004323 } else if (vmx_capability.ept) {
4324 vmx_capability.ept = 0;
4325 pr_warn_once("EPT CAP should not exist if not support "
4326 "1-setting enable EPT VM-execution control\n");
4327 }
4328 if (!(_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_VPID) &&
4329 vmx_capability.vpid) {
4330 vmx_capability.vpid = 0;
4331 pr_warn_once("VPID CAP should not exist if not support "
4332 "1-setting enable VPID VM-execution control\n");
Sheng Yangd56f5462008-04-25 10:13:16 +08004333 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004334
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02004335 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004336#ifdef CONFIG_X86_64
4337 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
4338#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08004339 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02004340 VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004341 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
4342 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004343 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004344
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004345 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
4346 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
4347 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08004348 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
4349 &_pin_based_exec_control) < 0)
4350 return -EIO;
4351
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02004352 if (cpu_has_broken_vmx_preemption_timer())
4353 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08004354 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02004355 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08004356 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
4357
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01004358 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00004359 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004360 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
4361 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004362 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004363
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08004364 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004365
4366 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
4367 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004368 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004369
4370#ifdef CONFIG_X86_64
4371 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
4372 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03004373 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004374#endif
4375
4376 /* Require Write-Back (WB) memory type for VMCS accesses. */
4377 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004378 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004379
Yang, Sheng002c7f72007-07-31 14:23:01 +03004380 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02004381 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03004382 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01004383
4384 /* KVM supports Enlightened VMCS v1 only */
4385 if (static_branch_unlikely(&enable_evmcs))
4386 vmcs_conf->revision_id = KVM_EVMCS_VERSION;
4387 else
4388 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004389
Yang, Sheng002c7f72007-07-31 14:23:01 +03004390 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
4391 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004392 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03004393 vmcs_conf->vmexit_ctrl = _vmexit_control;
4394 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004395
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01004396 if (static_branch_unlikely(&enable_evmcs))
4397 evmcs_sanitize_exec_ctrls(vmcs_conf);
4398
Avi Kivity110312c2010-12-21 12:54:20 +02004399 cpu_has_load_ia32_efer =
4400 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
4401 VM_ENTRY_LOAD_IA32_EFER)
4402 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
4403 VM_EXIT_LOAD_IA32_EFER);
4404
Gleb Natapov8bf00a52011-10-05 14:01:22 +02004405 cpu_has_load_perf_global_ctrl =
4406 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
4407 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
4408 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
4409 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
4410
4411 /*
4412 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
Andrea Gelminibb3541f2016-05-21 14:14:44 +02004413 * but due to errata below it can't be used. Workaround is to use
Gleb Natapov8bf00a52011-10-05 14:01:22 +02004414 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
4415 *
4416 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
4417 *
4418 * AAK155 (model 26)
4419 * AAP115 (model 30)
4420 * AAT100 (model 37)
4421 * BC86,AAY89,BD102 (model 44)
4422 * BA97 (model 46)
4423 *
4424 */
4425 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
4426 switch (boot_cpu_data.x86_model) {
4427 case 26:
4428 case 30:
4429 case 37:
4430 case 44:
4431 case 46:
4432 cpu_has_load_perf_global_ctrl = false;
4433 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
4434 "does not work properly. Using workaround\n");
4435 break;
4436 default:
4437 break;
4438 }
4439 }
4440
Borislav Petkov782511b2016-04-04 22:25:03 +02004441 if (boot_cpu_has(X86_FEATURE_XSAVES))
Wanpeng Li20300092014-12-02 19:14:59 +08004442 rdmsrl(MSR_IA32_XSS, host_xss);
4443
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004444 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08004445}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004446
4447static struct vmcs *alloc_vmcs_cpu(int cpu)
4448{
4449 int node = cpu_to_node(cpu);
4450 struct page *pages;
4451 struct vmcs *vmcs;
4452
Vlastimil Babka96db8002015-09-08 15:03:50 -07004453 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004454 if (!pages)
4455 return NULL;
4456 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004457 memset(vmcs, 0, vmcs_config.size);
4458 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004459 return vmcs;
4460}
4461
Avi Kivity6aa8b732006-12-10 02:21:36 -08004462static void free_vmcs(struct vmcs *vmcs)
4463{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004464 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004465}
4466
Nadav Har'Eld462b812011-05-24 15:26:10 +03004467/*
4468 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
4469 */
4470static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
4471{
4472 if (!loaded_vmcs->vmcs)
4473 return;
4474 loaded_vmcs_clear(loaded_vmcs);
4475 free_vmcs(loaded_vmcs->vmcs);
4476 loaded_vmcs->vmcs = NULL;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004477 if (loaded_vmcs->msr_bitmap)
4478 free_page((unsigned long)loaded_vmcs->msr_bitmap);
Jim Mattson355f4fb2016-10-28 08:29:39 -07004479 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03004480}
4481
Paolo Bonzinif21f1652018-01-11 12:16:15 +01004482static struct vmcs *alloc_vmcs(void)
4483{
4484 return alloc_vmcs_cpu(raw_smp_processor_id());
4485}
4486
4487static int alloc_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
4488{
4489 loaded_vmcs->vmcs = alloc_vmcs();
4490 if (!loaded_vmcs->vmcs)
4491 return -ENOMEM;
4492
4493 loaded_vmcs->shadow_vmcs = NULL;
4494 loaded_vmcs_init(loaded_vmcs);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004495
4496 if (cpu_has_vmx_msr_bitmap()) {
4497 loaded_vmcs->msr_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL);
4498 if (!loaded_vmcs->msr_bitmap)
4499 goto out_vmcs;
4500 memset(loaded_vmcs->msr_bitmap, 0xff, PAGE_SIZE);
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02004501
Arnd Bergmann1f008e12018-05-25 17:36:17 +02004502 if (IS_ENABLED(CONFIG_HYPERV) &&
4503 static_branch_unlikely(&enable_evmcs) &&
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02004504 (ms_hyperv.nested_features & HV_X64_NESTED_MSR_BITMAP)) {
4505 struct hv_enlightened_vmcs *evmcs =
4506 (struct hv_enlightened_vmcs *)loaded_vmcs->vmcs;
4507
4508 evmcs->hv_enlightenments_control.msr_bitmap = 1;
4509 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004510 }
Paolo Bonzinif21f1652018-01-11 12:16:15 +01004511 return 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004512
4513out_vmcs:
4514 free_loaded_vmcs(loaded_vmcs);
4515 return -ENOMEM;
Paolo Bonzinif21f1652018-01-11 12:16:15 +01004516}
4517
Sam Ravnborg39959582007-06-01 00:47:13 -07004518static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004519{
4520 int cpu;
4521
Zachary Amsden3230bb42009-09-29 11:38:37 -10004522 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004523 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10004524 per_cpu(vmxarea, cpu) = NULL;
4525 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004526}
4527
Jim Mattsond37f4262017-12-22 12:12:16 -08004528enum vmcs_field_width {
4529 VMCS_FIELD_WIDTH_U16 = 0,
4530 VMCS_FIELD_WIDTH_U64 = 1,
4531 VMCS_FIELD_WIDTH_U32 = 2,
4532 VMCS_FIELD_WIDTH_NATURAL_WIDTH = 3
Jim Mattson85fd5142017-07-07 12:51:41 -07004533};
4534
Jim Mattsond37f4262017-12-22 12:12:16 -08004535static inline int vmcs_field_width(unsigned long field)
Jim Mattson85fd5142017-07-07 12:51:41 -07004536{
4537 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
Jim Mattsond37f4262017-12-22 12:12:16 -08004538 return VMCS_FIELD_WIDTH_U32;
Jim Mattson85fd5142017-07-07 12:51:41 -07004539 return (field >> 13) & 0x3 ;
4540}
4541
4542static inline int vmcs_field_readonly(unsigned long field)
4543{
4544 return (((field >> 10) & 0x3) == 1);
4545}
4546
Bandan Dasfe2b2012014-04-21 15:20:14 -04004547static void init_vmcs_shadow_fields(void)
4548{
4549 int i, j;
4550
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004551 for (i = j = 0; i < max_shadow_read_only_fields; i++) {
4552 u16 field = shadow_read_only_fields[i];
Jim Mattsond37f4262017-12-22 12:12:16 -08004553 if (vmcs_field_width(field) == VMCS_FIELD_WIDTH_U64 &&
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004554 (i + 1 == max_shadow_read_only_fields ||
4555 shadow_read_only_fields[i + 1] != field + 1))
4556 pr_err("Missing field from shadow_read_only_field %x\n",
4557 field + 1);
4558
4559 clear_bit(field, vmx_vmread_bitmap);
4560#ifdef CONFIG_X86_64
4561 if (field & 1)
4562 continue;
4563#endif
4564 if (j < i)
4565 shadow_read_only_fields[j] = field;
4566 j++;
4567 }
4568 max_shadow_read_only_fields = j;
Bandan Dasfe2b2012014-04-21 15:20:14 -04004569
4570 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004571 u16 field = shadow_read_write_fields[i];
Jim Mattsond37f4262017-12-22 12:12:16 -08004572 if (vmcs_field_width(field) == VMCS_FIELD_WIDTH_U64 &&
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004573 (i + 1 == max_shadow_read_write_fields ||
4574 shadow_read_write_fields[i + 1] != field + 1))
4575 pr_err("Missing field from shadow_read_write_field %x\n",
4576 field + 1);
4577
Paolo Bonzinic5d167b2017-12-13 11:05:19 +01004578 /*
4579 * PML and the preemption timer can be emulated, but the
4580 * processor cannot vmwrite to fields that don't exist
4581 * on bare metal.
4582 */
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004583 switch (field) {
Paolo Bonzinic5d167b2017-12-13 11:05:19 +01004584 case GUEST_PML_INDEX:
4585 if (!cpu_has_vmx_pml())
4586 continue;
4587 break;
4588 case VMX_PREEMPTION_TIMER_VALUE:
4589 if (!cpu_has_vmx_preemption_timer())
4590 continue;
4591 break;
4592 case GUEST_INTR_STATUS:
4593 if (!cpu_has_vmx_apicv())
Bandan Dasfe2b2012014-04-21 15:20:14 -04004594 continue;
4595 break;
4596 default:
4597 break;
4598 }
4599
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004600 clear_bit(field, vmx_vmwrite_bitmap);
4601 clear_bit(field, vmx_vmread_bitmap);
4602#ifdef CONFIG_X86_64
4603 if (field & 1)
4604 continue;
4605#endif
Bandan Dasfe2b2012014-04-21 15:20:14 -04004606 if (j < i)
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004607 shadow_read_write_fields[j] = field;
Bandan Dasfe2b2012014-04-21 15:20:14 -04004608 j++;
4609 }
4610 max_shadow_read_write_fields = j;
Bandan Dasfe2b2012014-04-21 15:20:14 -04004611}
4612
Avi Kivity6aa8b732006-12-10 02:21:36 -08004613static __init int alloc_kvm_area(void)
4614{
4615 int cpu;
4616
Zachary Amsden3230bb42009-09-29 11:38:37 -10004617 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004618 struct vmcs *vmcs;
4619
4620 vmcs = alloc_vmcs_cpu(cpu);
4621 if (!vmcs) {
4622 free_kvm_area();
4623 return -ENOMEM;
4624 }
4625
4626 per_cpu(vmxarea, cpu) = vmcs;
4627 }
4628 return 0;
4629}
4630
Gleb Natapov91b0aa22013-01-21 15:36:47 +02004631static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02004632 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004633{
Gleb Natapovd99e4152012-12-20 16:57:45 +02004634 if (!emulate_invalid_guest_state) {
4635 /*
4636 * CS and SS RPL should be equal during guest entry according
4637 * to VMX spec, but in reality it is not always so. Since vcpu
4638 * is in the middle of the transition from real mode to
4639 * protected mode it is safe to assume that RPL 0 is a good
4640 * default value.
4641 */
4642 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03004643 save->selector &= ~SEGMENT_RPL_MASK;
4644 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02004645 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004646 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02004647 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004648}
4649
4650static void enter_pmode(struct kvm_vcpu *vcpu)
4651{
4652 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004653 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004654
Gleb Natapovd99e4152012-12-20 16:57:45 +02004655 /*
4656 * Update real mode segment cache. It may be not up-to-date if sement
4657 * register was written while vcpu was in a guest mode.
4658 */
4659 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
4660 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
4661 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
4662 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
4663 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
4664 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
4665
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004666 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004667
Avi Kivity2fb92db2011-04-27 19:42:18 +03004668 vmx_segment_cache_clear(vmx);
4669
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004670 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004671
4672 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03004673 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
4674 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004675 vmcs_writel(GUEST_RFLAGS, flags);
4676
Rusty Russell66aee912007-07-17 23:34:16 +10004677 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
4678 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004679
4680 update_exception_bitmap(vcpu);
4681
Gleb Natapov91b0aa22013-01-21 15:36:47 +02004682 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
4683 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
4684 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
4685 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
4686 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
4687 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004688}
4689
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004690static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004691{
Mathias Krause772e0312012-08-30 01:30:19 +02004692 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02004693 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004694
Gleb Natapovd99e4152012-12-20 16:57:45 +02004695 var.dpl = 0x3;
4696 if (seg == VCPU_SREG_CS)
4697 var.type = 0x3;
4698
4699 if (!emulate_invalid_guest_state) {
4700 var.selector = var.base >> 4;
4701 var.base = var.base & 0xffff0;
4702 var.limit = 0xffff;
4703 var.g = 0;
4704 var.db = 0;
4705 var.present = 1;
4706 var.s = 1;
4707 var.l = 0;
4708 var.unusable = 0;
4709 var.type = 0x3;
4710 var.avl = 0;
4711 if (save->base & 0xf)
4712 printk_once(KERN_WARNING "kvm: segment base is not "
4713 "paragraph aligned when entering "
4714 "protected mode (seg=%d)", seg);
4715 }
4716
4717 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05004718 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004719 vmcs_write32(sf->limit, var.limit);
4720 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004721}
4722
4723static void enter_rmode(struct kvm_vcpu *vcpu)
4724{
4725 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004726 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004727 struct kvm_vmx *kvm_vmx = to_kvm_vmx(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004728
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004729 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
4730 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
4731 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
4732 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
4733 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004734 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
4735 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004736
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004737 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004738
Gleb Natapov776e58e2011-03-13 12:34:27 +02004739 /*
4740 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004741 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02004742 */
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004743 if (!kvm_vmx->tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02004744 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
4745 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02004746
Avi Kivity2fb92db2011-04-27 19:42:18 +03004747 vmx_segment_cache_clear(vmx);
4748
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004749 vmcs_writel(GUEST_TR_BASE, kvm_vmx->tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004750 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004751 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4752
4753 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03004754 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004755
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01004756 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004757
4758 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10004759 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004760 update_exception_bitmap(vcpu);
4761
Gleb Natapovd99e4152012-12-20 16:57:45 +02004762 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
4763 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
4764 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
4765 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
4766 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
4767 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004768
Eddie Dong8668a3c2007-10-10 14:26:45 +08004769 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004770}
4771
Amit Shah401d10d2009-02-20 22:53:37 +05304772static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
4773{
4774 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03004775 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
4776
4777 if (!msr)
4778 return;
Amit Shah401d10d2009-02-20 22:53:37 +05304779
Avi Kivity44ea2b12009-09-06 15:55:37 +03004780 /*
4781 * Force kernel_gs_base reloading before EFER changes, as control
4782 * of this msr depends on is_long_mode().
4783 */
4784 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02004785 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05304786 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004787 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304788 msr->data = efer;
4789 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004790 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304791
4792 msr->data = efer & ~EFER_LME;
4793 }
4794 setup_msrs(vmx);
4795}
4796
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004797#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004798
4799static void enter_lmode(struct kvm_vcpu *vcpu)
4800{
4801 u32 guest_tr_ar;
4802
Avi Kivity2fb92db2011-04-27 19:42:18 +03004803 vmx_segment_cache_clear(to_vmx(vcpu));
4804
Avi Kivity6aa8b732006-12-10 02:21:36 -08004805 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004806 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02004807 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
4808 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004809 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004810 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
4811 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004812 }
Avi Kivityda38f432010-07-06 11:30:49 +03004813 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004814}
4815
4816static void exit_lmode(struct kvm_vcpu *vcpu)
4817{
Gleb Natapov2961e8762013-11-25 15:37:13 +02004818 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03004819 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004820}
4821
4822#endif
4823
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08004824static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid,
4825 bool invalidate_gpa)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004826{
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08004827 if (enable_ept && (invalidate_gpa || !enable_vpid)) {
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004828 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
4829 return;
Peter Feiner995f00a2017-06-30 17:26:32 -07004830 ept_sync_context(construct_eptp(vcpu, vcpu->arch.mmu.root_hpa));
Jim Mattsonf0b98c02017-03-15 07:56:11 -07004831 } else {
4832 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004833 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08004834}
4835
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08004836static void vmx_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004837{
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08004838 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid, invalidate_gpa);
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004839}
4840
Avi Kivitye8467fd2009-12-29 18:43:06 +02004841static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
4842{
4843 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
4844
4845 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
4846 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
4847}
4848
Avi Kivityaff48ba2010-12-05 18:56:11 +02004849static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
4850{
Sean Christophersonb4d18512018-03-05 12:04:40 -08004851 if (enable_unrestricted_guest || (enable_ept && is_paging(vcpu)))
Avi Kivityaff48ba2010-12-05 18:56:11 +02004852 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
4853 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
4854}
4855
Anthony Liguori25c4c272007-04-27 09:29:21 +03004856static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08004857{
Avi Kivityfc78f512009-12-07 12:16:48 +02004858 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
4859
4860 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
4861 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08004862}
4863
Sheng Yang14394422008-04-28 12:24:45 +08004864static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
4865{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004866 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4867
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004868 if (!test_bit(VCPU_EXREG_PDPTR,
4869 (unsigned long *)&vcpu->arch.regs_dirty))
4870 return;
4871
Sheng Yang14394422008-04-28 12:24:45 +08004872 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004873 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
4874 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
4875 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
4876 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08004877 }
4878}
4879
Avi Kivity8f5d5492009-05-31 18:41:29 +03004880static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
4881{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004882 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4883
Avi Kivity8f5d5492009-05-31 18:41:29 +03004884 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004885 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
4886 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
4887 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
4888 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004889 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004890
4891 __set_bit(VCPU_EXREG_PDPTR,
4892 (unsigned long *)&vcpu->arch.regs_avail);
4893 __set_bit(VCPU_EXREG_PDPTR,
4894 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004895}
4896
David Matlack38991522016-11-29 18:14:08 -08004897static bool nested_guest_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4898{
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004899 u64 fixed0 = to_vmx(vcpu)->nested.msrs.cr0_fixed0;
4900 u64 fixed1 = to_vmx(vcpu)->nested.msrs.cr0_fixed1;
David Matlack38991522016-11-29 18:14:08 -08004901 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4902
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004903 if (to_vmx(vcpu)->nested.msrs.secondary_ctls_high &
David Matlack38991522016-11-29 18:14:08 -08004904 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
4905 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
4906 fixed0 &= ~(X86_CR0_PE | X86_CR0_PG);
4907
4908 return fixed_bits_valid(val, fixed0, fixed1);
4909}
4910
4911static bool nested_host_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4912{
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004913 u64 fixed0 = to_vmx(vcpu)->nested.msrs.cr0_fixed0;
4914 u64 fixed1 = to_vmx(vcpu)->nested.msrs.cr0_fixed1;
David Matlack38991522016-11-29 18:14:08 -08004915
4916 return fixed_bits_valid(val, fixed0, fixed1);
4917}
4918
4919static bool nested_cr4_valid(struct kvm_vcpu *vcpu, unsigned long val)
4920{
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004921 u64 fixed0 = to_vmx(vcpu)->nested.msrs.cr4_fixed0;
4922 u64 fixed1 = to_vmx(vcpu)->nested.msrs.cr4_fixed1;
David Matlack38991522016-11-29 18:14:08 -08004923
4924 return fixed_bits_valid(val, fixed0, fixed1);
4925}
4926
4927/* No difference in the restrictions on guest and host CR4 in VMX operation. */
4928#define nested_guest_cr4_valid nested_cr4_valid
4929#define nested_host_cr4_valid nested_cr4_valid
4930
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004931static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08004932
4933static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
4934 unsigned long cr0,
4935 struct kvm_vcpu *vcpu)
4936{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03004937 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
4938 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004939 if (!(cr0 & X86_CR0_PG)) {
4940 /* From paging/starting to nonpaging */
4941 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004942 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08004943 (CPU_BASED_CR3_LOAD_EXITING |
4944 CPU_BASED_CR3_STORE_EXITING));
4945 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004946 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004947 } else if (!is_paging(vcpu)) {
4948 /* From nonpaging to paging */
4949 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004950 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08004951 ~(CPU_BASED_CR3_LOAD_EXITING |
4952 CPU_BASED_CR3_STORE_EXITING));
4953 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004954 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004955 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08004956
4957 if (!(cr0 & X86_CR0_WP))
4958 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08004959}
4960
Avi Kivity6aa8b732006-12-10 02:21:36 -08004961static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
4962{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004963 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004964 unsigned long hw_cr0;
4965
Gleb Natapov50378782013-02-04 16:00:28 +02004966 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004967 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02004968 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02004969 else {
Gleb Natapov50378782013-02-04 16:00:28 +02004970 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08004971
Gleb Natapov218e7632013-01-21 15:36:45 +02004972 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
4973 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004974
Gleb Natapov218e7632013-01-21 15:36:45 +02004975 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
4976 enter_rmode(vcpu);
4977 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004978
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004979#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02004980 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10004981 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004982 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10004983 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004984 exit_lmode(vcpu);
4985 }
4986#endif
4987
Sean Christophersonb4d18512018-03-05 12:04:40 -08004988 if (enable_ept && !enable_unrestricted_guest)
Sheng Yang14394422008-04-28 12:24:45 +08004989 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
4990
Avi Kivity6aa8b732006-12-10 02:21:36 -08004991 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08004992 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004993 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02004994
4995 /* depends on vcpu->arch.cr0 to be set to a new value */
4996 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004997}
4998
Yu Zhang855feb62017-08-24 20:27:55 +08004999static int get_ept_level(struct kvm_vcpu *vcpu)
5000{
5001 if (cpu_has_vmx_ept_5levels() && (cpuid_maxphyaddr(vcpu) > 48))
5002 return 5;
5003 return 4;
5004}
5005
Peter Feiner995f00a2017-06-30 17:26:32 -07005006static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa)
Sheng Yang14394422008-04-28 12:24:45 +08005007{
Yu Zhang855feb62017-08-24 20:27:55 +08005008 u64 eptp = VMX_EPTP_MT_WB;
Sheng Yang14394422008-04-28 12:24:45 +08005009
Yu Zhang855feb62017-08-24 20:27:55 +08005010 eptp |= (get_ept_level(vcpu) == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08005011
Peter Feiner995f00a2017-06-30 17:26:32 -07005012 if (enable_ept_ad_bits &&
5013 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02005014 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08005015 eptp |= (root_hpa & PAGE_MASK);
5016
5017 return eptp;
5018}
5019
Avi Kivity6aa8b732006-12-10 02:21:36 -08005020static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
5021{
Sheng Yang14394422008-04-28 12:24:45 +08005022 unsigned long guest_cr3;
5023 u64 eptp;
5024
5025 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02005026 if (enable_ept) {
Peter Feiner995f00a2017-06-30 17:26:32 -07005027 eptp = construct_eptp(vcpu, cr3);
Sheng Yang14394422008-04-28 12:24:45 +08005028 vmcs_write64(EPT_POINTER, eptp);
Sean Christophersone90008d2018-03-05 12:04:37 -08005029 if (enable_unrestricted_guest || is_paging(vcpu) ||
5030 is_guest_mode(vcpu))
Jan Kiszka59ab5a82013-08-08 16:26:29 +02005031 guest_cr3 = kvm_read_cr3(vcpu);
5032 else
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005033 guest_cr3 = to_kvm_vmx(vcpu->kvm)->ept_identity_map_addr;
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02005034 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08005035 }
5036
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005037 vmx_flush_tlb(vcpu, true);
Sheng Yang14394422008-04-28 12:24:45 +08005038 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005039}
5040
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005041static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005042{
Ben Serebrin085e68e2015-04-16 11:58:05 -07005043 /*
5044 * Pass through host's Machine Check Enable value to hw_cr4, which
5045 * is in force while we are in guest mode. Do not let guests control
5046 * this bit, even if host CR4.MCE == 0.
5047 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08005048 unsigned long hw_cr4;
5049
5050 hw_cr4 = (cr4_read_shadow() & X86_CR4_MCE) | (cr4 & ~X86_CR4_MCE);
5051 if (enable_unrestricted_guest)
5052 hw_cr4 |= KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST;
5053 else if (to_vmx(vcpu)->rmode.vm86_active)
5054 hw_cr4 |= KVM_RMODE_VM_CR4_ALWAYS_ON;
5055 else
5056 hw_cr4 |= KVM_PMODE_VM_CR4_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08005057
Sean Christopherson64f7a112018-04-30 10:01:06 -07005058 if (!boot_cpu_has(X86_FEATURE_UMIP) && vmx_umip_emulated()) {
5059 if (cr4 & X86_CR4_UMIP) {
5060 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
Paolo Bonzini0367f202016-07-12 10:44:55 +02005061 SECONDARY_EXEC_DESC);
Sean Christopherson64f7a112018-04-30 10:01:06 -07005062 hw_cr4 &= ~X86_CR4_UMIP;
5063 } else if (!is_guest_mode(vcpu) ||
5064 !nested_cpu_has2(get_vmcs12(vcpu), SECONDARY_EXEC_DESC))
5065 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
5066 SECONDARY_EXEC_DESC);
5067 }
Paolo Bonzini0367f202016-07-12 10:44:55 +02005068
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005069 if (cr4 & X86_CR4_VMXE) {
5070 /*
5071 * To use VMXON (and later other VMX instructions), a guest
5072 * must first be able to turn on cr4.VMXE (see handle_vmon()).
5073 * So basically the check on whether to allow nested VMX
5074 * is here.
5075 */
5076 if (!nested_vmx_allowed(vcpu))
5077 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005078 }
David Matlack38991522016-11-29 18:14:08 -08005079
5080 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005081 return 1;
5082
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005083 vcpu->arch.cr4 = cr4;
Sheng Yang14394422008-04-28 12:24:45 +08005084
Sean Christopherson5dc1f042018-03-05 12:04:39 -08005085 if (!enable_unrestricted_guest) {
5086 if (enable_ept) {
5087 if (!is_paging(vcpu)) {
5088 hw_cr4 &= ~X86_CR4_PAE;
5089 hw_cr4 |= X86_CR4_PSE;
5090 } else if (!(cr4 & X86_CR4_PAE)) {
5091 hw_cr4 &= ~X86_CR4_PAE;
5092 }
5093 }
5094
Radim Krčmář656ec4a2015-11-02 22:20:00 +01005095 /*
Huaitong Handdba2622016-03-22 16:51:15 +08005096 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
5097 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
5098 * to be manually disabled when guest switches to non-paging
5099 * mode.
5100 *
5101 * If !enable_unrestricted_guest, the CPU is always running
5102 * with CR0.PG=1 and CR4 needs to be modified.
5103 * If enable_unrestricted_guest, the CPU automatically
5104 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01005105 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08005106 if (!is_paging(vcpu))
5107 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
5108 }
Radim Krčmář656ec4a2015-11-02 22:20:00 +01005109
Sheng Yang14394422008-04-28 12:24:45 +08005110 vmcs_writel(CR4_READ_SHADOW, cr4);
5111 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005112 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005113}
5114
Avi Kivity6aa8b732006-12-10 02:21:36 -08005115static void vmx_get_segment(struct kvm_vcpu *vcpu,
5116 struct kvm_segment *var, int seg)
5117{
Avi Kivitya9179492011-01-03 14:28:52 +02005118 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005119 u32 ar;
5120
Gleb Natapovc6ad11532012-12-12 19:10:51 +02005121 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03005122 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02005123 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03005124 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03005125 return;
Avi Kivity1390a282012-08-21 17:07:08 +03005126 var->base = vmx_read_guest_seg_base(vmx, seg);
5127 var->selector = vmx_read_guest_seg_selector(vmx, seg);
5128 return;
Avi Kivitya9179492011-01-03 14:28:52 +02005129 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03005130 var->base = vmx_read_guest_seg_base(vmx, seg);
5131 var->limit = vmx_read_guest_seg_limit(vmx, seg);
5132 var->selector = vmx_read_guest_seg_selector(vmx, seg);
5133 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03005134 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005135 var->type = ar & 15;
5136 var->s = (ar >> 4) & 1;
5137 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03005138 /*
5139 * Some userspaces do not preserve unusable property. Since usable
5140 * segment has to be present according to VMX spec we can use present
5141 * property to amend userspace bug by making unusable segment always
5142 * nonpresent. vmx_segment_access_rights() already marks nonpresent
5143 * segment as unusable.
5144 */
5145 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005146 var->avl = (ar >> 12) & 1;
5147 var->l = (ar >> 13) & 1;
5148 var->db = (ar >> 14) & 1;
5149 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005150}
5151
Avi Kivitya9179492011-01-03 14:28:52 +02005152static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
5153{
Avi Kivitya9179492011-01-03 14:28:52 +02005154 struct kvm_segment s;
5155
5156 if (to_vmx(vcpu)->rmode.vm86_active) {
5157 vmx_get_segment(vcpu, &s, seg);
5158 return s.base;
5159 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03005160 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02005161}
5162
Marcelo Tosattib09408d2013-01-07 19:27:06 -02005163static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02005164{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02005165 struct vcpu_vmx *vmx = to_vmx(vcpu);
5166
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02005167 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02005168 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02005169 else {
5170 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005171 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02005172 }
Avi Kivity69c73022011-03-07 15:26:44 +02005173}
5174
Avi Kivity653e3102007-05-07 10:55:37 +03005175static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005176{
Avi Kivity6aa8b732006-12-10 02:21:36 -08005177 u32 ar;
5178
Avi Kivityf0495f92012-06-07 17:06:10 +03005179 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005180 ar = 1 << 16;
5181 else {
5182 ar = var->type & 15;
5183 ar |= (var->s & 1) << 4;
5184 ar |= (var->dpl & 3) << 5;
5185 ar |= (var->present & 1) << 7;
5186 ar |= (var->avl & 1) << 12;
5187 ar |= (var->l & 1) << 13;
5188 ar |= (var->db & 1) << 14;
5189 ar |= (var->g & 1) << 15;
5190 }
Avi Kivity653e3102007-05-07 10:55:37 +03005191
5192 return ar;
5193}
5194
5195static void vmx_set_segment(struct kvm_vcpu *vcpu,
5196 struct kvm_segment *var, int seg)
5197{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005198 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02005199 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03005200
Avi Kivity2fb92db2011-04-27 19:42:18 +03005201 vmx_segment_cache_clear(vmx);
5202
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02005203 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
5204 vmx->rmode.segs[seg] = *var;
5205 if (seg == VCPU_SREG_TR)
5206 vmcs_write16(sf->selector, var->selector);
5207 else if (var->s)
5208 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02005209 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03005210 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02005211
Avi Kivity653e3102007-05-07 10:55:37 +03005212 vmcs_writel(sf->base, var->base);
5213 vmcs_write32(sf->limit, var->limit);
5214 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005215
5216 /*
5217 * Fix the "Accessed" bit in AR field of segment registers for older
5218 * qemu binaries.
5219 * IA32 arch specifies that at the time of processor reset the
5220 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08005221 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005222 * state vmexit when "unrestricted guest" mode is turned on.
5223 * Fix for this setup issue in cpu_reset is being pushed in the qemu
5224 * tree. Newer qemu binaries with that qemu fix would not need this
5225 * kvm hack.
5226 */
5227 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02005228 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005229
Gleb Natapovf924d662012-12-12 19:10:55 +02005230 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02005231
5232out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01005233 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005234}
5235
Avi Kivity6aa8b732006-12-10 02:21:36 -08005236static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
5237{
Avi Kivity2fb92db2011-04-27 19:42:18 +03005238 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005239
5240 *db = (ar >> 14) & 1;
5241 *l = (ar >> 13) & 1;
5242}
5243
Gleb Natapov89a27f42010-02-16 10:51:48 +02005244static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005245{
Gleb Natapov89a27f42010-02-16 10:51:48 +02005246 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
5247 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005248}
5249
Gleb Natapov89a27f42010-02-16 10:51:48 +02005250static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005251{
Gleb Natapov89a27f42010-02-16 10:51:48 +02005252 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
5253 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005254}
5255
Gleb Natapov89a27f42010-02-16 10:51:48 +02005256static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005257{
Gleb Natapov89a27f42010-02-16 10:51:48 +02005258 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
5259 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005260}
5261
Gleb Natapov89a27f42010-02-16 10:51:48 +02005262static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005263{
Gleb Natapov89a27f42010-02-16 10:51:48 +02005264 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
5265 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005266}
5267
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005268static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
5269{
5270 struct kvm_segment var;
5271 u32 ar;
5272
5273 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02005274 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02005275 if (seg == VCPU_SREG_CS)
5276 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005277 ar = vmx_segment_access_rights(&var);
5278
5279 if (var.base != (var.selector << 4))
5280 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02005281 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005282 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02005283 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005284 return false;
5285
5286 return true;
5287}
5288
5289static bool code_segment_valid(struct kvm_vcpu *vcpu)
5290{
5291 struct kvm_segment cs;
5292 unsigned int cs_rpl;
5293
5294 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03005295 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005296
Avi Kivity1872a3f2009-01-04 23:26:52 +02005297 if (cs.unusable)
5298 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005299 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005300 return false;
5301 if (!cs.s)
5302 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005303 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005304 if (cs.dpl > cs_rpl)
5305 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02005306 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005307 if (cs.dpl != cs_rpl)
5308 return false;
5309 }
5310 if (!cs.present)
5311 return false;
5312
5313 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
5314 return true;
5315}
5316
5317static bool stack_segment_valid(struct kvm_vcpu *vcpu)
5318{
5319 struct kvm_segment ss;
5320 unsigned int ss_rpl;
5321
5322 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03005323 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005324
Avi Kivity1872a3f2009-01-04 23:26:52 +02005325 if (ss.unusable)
5326 return true;
5327 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005328 return false;
5329 if (!ss.s)
5330 return false;
5331 if (ss.dpl != ss_rpl) /* DPL != RPL */
5332 return false;
5333 if (!ss.present)
5334 return false;
5335
5336 return true;
5337}
5338
5339static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
5340{
5341 struct kvm_segment var;
5342 unsigned int rpl;
5343
5344 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03005345 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005346
Avi Kivity1872a3f2009-01-04 23:26:52 +02005347 if (var.unusable)
5348 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005349 if (!var.s)
5350 return false;
5351 if (!var.present)
5352 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005353 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005354 if (var.dpl < rpl) /* DPL < RPL */
5355 return false;
5356 }
5357
5358 /* TODO: Add other members to kvm_segment_field to allow checking for other access
5359 * rights flags
5360 */
5361 return true;
5362}
5363
5364static bool tr_valid(struct kvm_vcpu *vcpu)
5365{
5366 struct kvm_segment tr;
5367
5368 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
5369
Avi Kivity1872a3f2009-01-04 23:26:52 +02005370 if (tr.unusable)
5371 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03005372 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005373 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02005374 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005375 return false;
5376 if (!tr.present)
5377 return false;
5378
5379 return true;
5380}
5381
5382static bool ldtr_valid(struct kvm_vcpu *vcpu)
5383{
5384 struct kvm_segment ldtr;
5385
5386 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
5387
Avi Kivity1872a3f2009-01-04 23:26:52 +02005388 if (ldtr.unusable)
5389 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03005390 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005391 return false;
5392 if (ldtr.type != 2)
5393 return false;
5394 if (!ldtr.present)
5395 return false;
5396
5397 return true;
5398}
5399
5400static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
5401{
5402 struct kvm_segment cs, ss;
5403
5404 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
5405 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
5406
Nadav Amitb32a9912015-03-29 16:33:04 +03005407 return ((cs.selector & SEGMENT_RPL_MASK) ==
5408 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005409}
5410
5411/*
5412 * Check if guest state is valid. Returns true if valid, false if
5413 * not.
5414 * We assume that registers are always usable
5415 */
5416static bool guest_state_valid(struct kvm_vcpu *vcpu)
5417{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02005418 if (enable_unrestricted_guest)
5419 return true;
5420
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005421 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03005422 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005423 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
5424 return false;
5425 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
5426 return false;
5427 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
5428 return false;
5429 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
5430 return false;
5431 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
5432 return false;
5433 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
5434 return false;
5435 } else {
5436 /* protected mode guest state checks */
5437 if (!cs_ss_rpl_check(vcpu))
5438 return false;
5439 if (!code_segment_valid(vcpu))
5440 return false;
5441 if (!stack_segment_valid(vcpu))
5442 return false;
5443 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
5444 return false;
5445 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
5446 return false;
5447 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
5448 return false;
5449 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
5450 return false;
5451 if (!tr_valid(vcpu))
5452 return false;
5453 if (!ldtr_valid(vcpu))
5454 return false;
5455 }
5456 /* TODO:
5457 * - Add checks on RIP
5458 * - Add checks on RFLAGS
5459 */
5460
5461 return true;
5462}
5463
Jim Mattson5fa99cb2017-07-06 16:33:07 -07005464static bool page_address_valid(struct kvm_vcpu *vcpu, gpa_t gpa)
5465{
5466 return PAGE_ALIGNED(gpa) && !(gpa >> cpuid_maxphyaddr(vcpu));
5467}
5468
Mike Dayd77c26f2007-10-08 09:02:08 -04005469static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005470{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005471 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02005472 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005473 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005474
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005475 idx = srcu_read_lock(&kvm->srcu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005476 fn = to_kvm_vmx(kvm)->tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02005477 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
5478 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005479 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02005480 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08005481 r = kvm_write_guest_page(kvm, fn++, &data,
5482 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02005483 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005484 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02005485 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
5486 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005487 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02005488 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
5489 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005490 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02005491 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005492 r = kvm_write_guest_page(kvm, fn, &data,
5493 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
5494 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005495out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005496 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005497 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005498}
5499
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005500static int init_rmode_identity_map(struct kvm *kvm)
5501{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005502 struct kvm_vmx *kvm_vmx = to_kvm_vmx(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08005503 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08005504 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005505 u32 tmp;
5506
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005507 /* Protect kvm_vmx->ept_identity_pagetable_done. */
Tang Chena255d472014-09-16 18:41:58 +08005508 mutex_lock(&kvm->slots_lock);
5509
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005510 if (likely(kvm_vmx->ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08005511 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08005512
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005513 if (!kvm_vmx->ept_identity_map_addr)
5514 kvm_vmx->ept_identity_map_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
5515 identity_map_pfn = kvm_vmx->ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08005516
David Hildenbrandd8a6e362017-08-24 20:51:34 +02005517 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005518 kvm_vmx->ept_identity_map_addr, PAGE_SIZE);
Tang Chenf51770e2014-09-16 18:41:59 +08005519 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08005520 goto out2;
5521
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005522 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005523 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
5524 if (r < 0)
5525 goto out;
5526 /* Set up identity-mapping pagetable for EPT in real mode */
5527 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
5528 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
5529 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
5530 r = kvm_write_guest_page(kvm, identity_map_pfn,
5531 &tmp, i * sizeof(tmp), sizeof(tmp));
5532 if (r < 0)
5533 goto out;
5534 }
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005535 kvm_vmx->ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08005536
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005537out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005538 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08005539
5540out2:
5541 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08005542 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005543}
5544
Avi Kivity6aa8b732006-12-10 02:21:36 -08005545static void seg_setup(int seg)
5546{
Mathias Krause772e0312012-08-30 01:30:19 +02005547 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005548 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005549
5550 vmcs_write16(sf->selector, 0);
5551 vmcs_writel(sf->base, 0);
5552 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02005553 ar = 0x93;
5554 if (seg == VCPU_SREG_CS)
5555 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005556
5557 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005558}
5559
Sheng Yangf78e0e22007-10-29 09:40:42 +08005560static int alloc_apic_access_page(struct kvm *kvm)
5561{
Xiao Guangrong44841412012-09-07 14:14:20 +08005562 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08005563 int r = 0;
5564
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005565 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08005566 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005567 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005568 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
5569 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08005570 if (r)
5571 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02005572
Tang Chen73a6d942014-09-11 13:38:00 +08005573 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08005574 if (is_error_page(page)) {
5575 r = -EFAULT;
5576 goto out;
5577 }
5578
Tang Chenc24ae0d2014-09-24 15:57:58 +08005579 /*
5580 * Do not pin the page in memory, so that memory hot-unplug
5581 * is able to migrate it.
5582 */
5583 put_page(page);
5584 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08005585out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005586 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08005587 return r;
5588}
5589
Wanpeng Li991e7a02015-09-16 17:30:05 +08005590static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08005591{
5592 int vpid;
5593
Avi Kivity919818a2009-03-23 18:01:29 +02005594 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08005595 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08005596 spin_lock(&vmx_vpid_lock);
5597 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08005598 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08005599 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08005600 else
5601 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08005602 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08005603 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08005604}
5605
Wanpeng Li991e7a02015-09-16 17:30:05 +08005606static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08005607{
Wanpeng Li991e7a02015-09-16 17:30:05 +08005608 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08005609 return;
5610 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08005611 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08005612 spin_unlock(&vmx_vpid_lock);
5613}
5614
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005615static void __always_inline vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
5616 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08005617{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005618 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08005619
5620 if (!cpu_has_vmx_msr_bitmap())
5621 return;
5622
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02005623 if (static_branch_unlikely(&enable_evmcs))
5624 evmcs_touch_msr_bitmap();
5625
Sheng Yang25c5f222008-03-28 13:18:56 +08005626 /*
5627 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
5628 * have the write-low and read-high bitmap offsets the wrong way round.
5629 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
5630 */
Sheng Yang25c5f222008-03-28 13:18:56 +08005631 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08005632 if (type & MSR_TYPE_R)
5633 /* read-low */
5634 __clear_bit(msr, msr_bitmap + 0x000 / f);
5635
5636 if (type & MSR_TYPE_W)
5637 /* write-low */
5638 __clear_bit(msr, msr_bitmap + 0x800 / f);
5639
Sheng Yang25c5f222008-03-28 13:18:56 +08005640 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
5641 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08005642 if (type & MSR_TYPE_R)
5643 /* read-high */
5644 __clear_bit(msr, msr_bitmap + 0x400 / f);
5645
5646 if (type & MSR_TYPE_W)
5647 /* write-high */
5648 __clear_bit(msr, msr_bitmap + 0xc00 / f);
5649
5650 }
5651}
5652
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005653static void __always_inline vmx_enable_intercept_for_msr(unsigned long *msr_bitmap,
5654 u32 msr, int type)
5655{
5656 int f = sizeof(unsigned long);
5657
5658 if (!cpu_has_vmx_msr_bitmap())
5659 return;
5660
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02005661 if (static_branch_unlikely(&enable_evmcs))
5662 evmcs_touch_msr_bitmap();
5663
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005664 /*
5665 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
5666 * have the write-low and read-high bitmap offsets the wrong way round.
5667 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
5668 */
5669 if (msr <= 0x1fff) {
5670 if (type & MSR_TYPE_R)
5671 /* read-low */
5672 __set_bit(msr, msr_bitmap + 0x000 / f);
5673
5674 if (type & MSR_TYPE_W)
5675 /* write-low */
5676 __set_bit(msr, msr_bitmap + 0x800 / f);
5677
5678 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
5679 msr &= 0x1fff;
5680 if (type & MSR_TYPE_R)
5681 /* read-high */
5682 __set_bit(msr, msr_bitmap + 0x400 / f);
5683
5684 if (type & MSR_TYPE_W)
5685 /* write-high */
5686 __set_bit(msr, msr_bitmap + 0xc00 / f);
5687
5688 }
5689}
5690
5691static void __always_inline vmx_set_intercept_for_msr(unsigned long *msr_bitmap,
5692 u32 msr, int type, bool value)
5693{
5694 if (value)
5695 vmx_enable_intercept_for_msr(msr_bitmap, msr, type);
5696 else
5697 vmx_disable_intercept_for_msr(msr_bitmap, msr, type);
5698}
5699
Wincy Vanf2b93282015-02-03 23:56:03 +08005700/*
5701 * If a msr is allowed by L0, we should check whether it is allowed by L1.
5702 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
5703 */
5704static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
5705 unsigned long *msr_bitmap_nested,
5706 u32 msr, int type)
5707{
5708 int f = sizeof(unsigned long);
5709
Wincy Vanf2b93282015-02-03 23:56:03 +08005710 /*
5711 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
5712 * have the write-low and read-high bitmap offsets the wrong way round.
5713 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
5714 */
5715 if (msr <= 0x1fff) {
5716 if (type & MSR_TYPE_R &&
5717 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
5718 /* read-low */
5719 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
5720
5721 if (type & MSR_TYPE_W &&
5722 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
5723 /* write-low */
5724 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
5725
5726 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
5727 msr &= 0x1fff;
5728 if (type & MSR_TYPE_R &&
5729 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
5730 /* read-high */
5731 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
5732
5733 if (type & MSR_TYPE_W &&
5734 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
5735 /* write-high */
5736 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
5737
5738 }
5739}
5740
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005741static u8 vmx_msr_bitmap_mode(struct kvm_vcpu *vcpu)
Avi Kivity58972972009-02-24 22:26:47 +02005742{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005743 u8 mode = 0;
5744
5745 if (cpu_has_secondary_exec_ctrls() &&
5746 (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) &
5747 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
5748 mode |= MSR_BITMAP_MODE_X2APIC;
5749 if (enable_apicv && kvm_vcpu_apicv_active(vcpu))
5750 mode |= MSR_BITMAP_MODE_X2APIC_APICV;
5751 }
5752
5753 if (is_long_mode(vcpu))
5754 mode |= MSR_BITMAP_MODE_LM;
5755
5756 return mode;
Yang Zhang8d146952013-01-25 10:18:50 +08005757}
5758
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005759#define X2APIC_MSR(r) (APIC_BASE_MSR + ((r) >> 4))
5760
5761static void vmx_update_msr_bitmap_x2apic(unsigned long *msr_bitmap,
5762 u8 mode)
Yang Zhang8d146952013-01-25 10:18:50 +08005763{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005764 int msr;
5765
5766 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
5767 unsigned word = msr / BITS_PER_LONG;
5768 msr_bitmap[word] = (mode & MSR_BITMAP_MODE_X2APIC_APICV) ? 0 : ~0;
5769 msr_bitmap[word + (0x800 / sizeof(long))] = ~0;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005770 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005771
5772 if (mode & MSR_BITMAP_MODE_X2APIC) {
5773 /*
5774 * TPR reads and writes can be virtualized even if virtual interrupt
5775 * delivery is not in use.
5776 */
5777 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_TASKPRI), MSR_TYPE_RW);
5778 if (mode & MSR_BITMAP_MODE_X2APIC_APICV) {
5779 vmx_enable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_TMCCT), MSR_TYPE_R);
5780 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_EOI), MSR_TYPE_W);
5781 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_SELF_IPI), MSR_TYPE_W);
5782 }
5783 }
5784}
5785
5786static void vmx_update_msr_bitmap(struct kvm_vcpu *vcpu)
5787{
5788 struct vcpu_vmx *vmx = to_vmx(vcpu);
5789 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
5790 u8 mode = vmx_msr_bitmap_mode(vcpu);
5791 u8 changed = mode ^ vmx->msr_bitmap_mode;
5792
5793 if (!changed)
5794 return;
5795
5796 vmx_set_intercept_for_msr(msr_bitmap, MSR_KERNEL_GS_BASE, MSR_TYPE_RW,
5797 !(mode & MSR_BITMAP_MODE_LM));
5798
5799 if (changed & (MSR_BITMAP_MODE_X2APIC | MSR_BITMAP_MODE_X2APIC_APICV))
5800 vmx_update_msr_bitmap_x2apic(msr_bitmap, mode);
5801
5802 vmx->msr_bitmap_mode = mode;
Avi Kivity58972972009-02-24 22:26:47 +02005803}
5804
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05005805static bool vmx_get_enable_apicv(struct kvm_vcpu *vcpu)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005806{
Andrey Smetanind62caab2015-11-10 15:36:33 +03005807 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005808}
5809
David Matlackc9f04402017-08-01 14:00:40 -07005810static void nested_mark_vmcs12_pages_dirty(struct kvm_vcpu *vcpu)
5811{
5812 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5813 gfn_t gfn;
5814
5815 /*
5816 * Don't need to mark the APIC access page dirty; it is never
5817 * written to by the CPU during APIC virtualization.
5818 */
5819
5820 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
5821 gfn = vmcs12->virtual_apic_page_addr >> PAGE_SHIFT;
5822 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5823 }
5824
5825 if (nested_cpu_has_posted_intr(vmcs12)) {
5826 gfn = vmcs12->posted_intr_desc_addr >> PAGE_SHIFT;
5827 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5828 }
5829}
5830
5831
David Hildenbrand6342c502017-01-25 11:58:58 +01005832static void vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
Wincy Van705699a2015-02-03 23:58:17 +08005833{
5834 struct vcpu_vmx *vmx = to_vmx(vcpu);
5835 int max_irr;
5836 void *vapic_page;
5837 u16 status;
5838
David Matlackc9f04402017-08-01 14:00:40 -07005839 if (!vmx->nested.pi_desc || !vmx->nested.pi_pending)
5840 return;
Wincy Van705699a2015-02-03 23:58:17 +08005841
David Matlackc9f04402017-08-01 14:00:40 -07005842 vmx->nested.pi_pending = false;
5843 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
5844 return;
Wincy Van705699a2015-02-03 23:58:17 +08005845
David Matlackc9f04402017-08-01 14:00:40 -07005846 max_irr = find_last_bit((unsigned long *)vmx->nested.pi_desc->pir, 256);
5847 if (max_irr != 256) {
Wincy Van705699a2015-02-03 23:58:17 +08005848 vapic_page = kmap(vmx->nested.virtual_apic_page);
Liran Alone7387b02017-12-24 18:12:54 +02005849 __kvm_apic_update_irr(vmx->nested.pi_desc->pir,
5850 vapic_page, &max_irr);
Wincy Van705699a2015-02-03 23:58:17 +08005851 kunmap(vmx->nested.virtual_apic_page);
5852
5853 status = vmcs_read16(GUEST_INTR_STATUS);
5854 if ((u8)max_irr > ((u8)status & 0xff)) {
5855 status &= ~0xff;
5856 status |= (u8)max_irr;
5857 vmcs_write16(GUEST_INTR_STATUS, status);
5858 }
5859 }
David Matlackc9f04402017-08-01 14:00:40 -07005860
5861 nested_mark_vmcs12_pages_dirty(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08005862}
5863
Wincy Van06a55242017-04-28 13:13:59 +08005864static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
5865 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005866{
5867#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08005868 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
5869
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005870 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08005871 /*
Haozhong Zhang5753743f2017-09-18 09:56:50 +08005872 * The vector of interrupt to be delivered to vcpu had
5873 * been set in PIR before this function.
Feng Wu28b835d2015-09-18 22:29:54 +08005874 *
Haozhong Zhang5753743f2017-09-18 09:56:50 +08005875 * Following cases will be reached in this block, and
5876 * we always send a notification event in all cases as
5877 * explained below.
5878 *
5879 * Case 1: vcpu keeps in non-root mode. Sending a
5880 * notification event posts the interrupt to vcpu.
5881 *
5882 * Case 2: vcpu exits to root mode and is still
5883 * runnable. PIR will be synced to vIRR before the
5884 * next vcpu entry. Sending a notification event in
5885 * this case has no effect, as vcpu is not in root
5886 * mode.
5887 *
5888 * Case 3: vcpu exits to root mode and is blocked.
5889 * vcpu_block() has already synced PIR to vIRR and
5890 * never blocks vcpu if vIRR is not cleared. Therefore,
5891 * a blocked vcpu here does not wait for any requested
5892 * interrupts in PIR, and sending a notification event
5893 * which has no effect is safe here.
Feng Wu28b835d2015-09-18 22:29:54 +08005894 */
Feng Wu28b835d2015-09-18 22:29:54 +08005895
Wincy Van06a55242017-04-28 13:13:59 +08005896 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005897 return true;
5898 }
5899#endif
5900 return false;
5901}
5902
Wincy Van705699a2015-02-03 23:58:17 +08005903static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
5904 int vector)
5905{
5906 struct vcpu_vmx *vmx = to_vmx(vcpu);
5907
5908 if (is_guest_mode(vcpu) &&
5909 vector == vmx->nested.posted_intr_nv) {
Wincy Van705699a2015-02-03 23:58:17 +08005910 /*
5911 * If a posted intr is not recognized by hardware,
5912 * we will accomplish it in the next vmentry.
5913 */
5914 vmx->nested.pi_pending = true;
5915 kvm_make_request(KVM_REQ_EVENT, vcpu);
Liran Alon6b697712017-11-09 20:27:20 +02005916 /* the PIR and ON have been set by L1. */
5917 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, true))
5918 kvm_vcpu_kick(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08005919 return 0;
5920 }
5921 return -1;
5922}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005923/*
Yang Zhanga20ed542013-04-11 19:25:15 +08005924 * Send interrupt to vcpu via posted interrupt way.
5925 * 1. If target vcpu is running(non-root mode), send posted interrupt
5926 * notification to vcpu and hardware will sync PIR to vIRR atomically.
5927 * 2. If target vcpu isn't running(root mode), kick it to pick up the
5928 * interrupt from PIR in next vmentry.
5929 */
5930static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
5931{
5932 struct vcpu_vmx *vmx = to_vmx(vcpu);
5933 int r;
5934
Wincy Van705699a2015-02-03 23:58:17 +08005935 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
5936 if (!r)
5937 return;
5938
Yang Zhanga20ed542013-04-11 19:25:15 +08005939 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
5940 return;
5941
Paolo Bonzinib95234c2016-12-19 13:57:33 +01005942 /* If a previous notification has sent the IPI, nothing to do. */
5943 if (pi_test_and_set_on(&vmx->pi_desc))
5944 return;
5945
Wincy Van06a55242017-04-28 13:13:59 +08005946 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08005947 kvm_vcpu_kick(vcpu);
5948}
5949
Avi Kivity6aa8b732006-12-10 02:21:36 -08005950/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005951 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
5952 * will not change in the lifetime of the guest.
5953 * Note that host-state that does change is set elsewhere. E.g., host-state
5954 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
5955 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005956static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005957{
5958 u32 low32, high32;
5959 unsigned long tmpl;
5960 struct desc_ptr dt;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005961 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005962
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07005963 cr0 = read_cr0();
5964 WARN_ON(cr0 & X86_CR0_TS);
5965 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005966
5967 /*
5968 * Save the most likely value for this task's CR3 in the VMCS.
5969 * We can't use __get_current_cr3_fast() because we're not atomic.
5970 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07005971 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005972 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
Ladi Prosek44889942017-09-22 07:53:15 +02005973 vmx->loaded_vmcs->vmcs_host_cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005974
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005975 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07005976 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005977 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
Ladi Prosek44889942017-09-22 07:53:15 +02005978 vmx->loaded_vmcs->vmcs_host_cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005979
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005980 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005981#ifdef CONFIG_X86_64
5982 /*
5983 * Load null selectors, so we can avoid reloading them in
5984 * __vmx_load_host_state(), in case userspace uses the null selectors
5985 * too (the expected case).
5986 */
5987 vmcs_write16(HOST_DS_SELECTOR, 0);
5988 vmcs_write16(HOST_ES_SELECTOR, 0);
5989#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005990 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5991 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005992#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005993 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5994 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
5995
Juergen Gross87930012017-09-04 12:25:27 +02005996 store_idt(&dt);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005997 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005998 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005999
Avi Kivity83287ea422012-09-16 15:10:57 +03006000 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006001
6002 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
6003 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
6004 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
6005 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
6006
6007 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
6008 rdmsr(MSR_IA32_CR_PAT, low32, high32);
6009 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
6010 }
6011}
6012
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006013static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
6014{
6015 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
6016 if (enable_ept)
6017 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03006018 if (is_guest_mode(&vmx->vcpu))
6019 vmx->vcpu.arch.cr4_guest_owned_bits &=
6020 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006021 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
6022}
6023
Yang Zhang01e439b2013-04-11 19:25:12 +08006024static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
6025{
6026 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
6027
Andrey Smetanind62caab2015-11-10 15:36:33 +03006028 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08006029 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006030
6031 if (!enable_vnmi)
6032 pin_based_exec_ctrl &= ~PIN_BASED_VIRTUAL_NMIS;
6033
Yunhong Jiang64672c92016-06-13 14:19:59 -07006034 /* Enable the preemption timer dynamically */
6035 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08006036 return pin_based_exec_ctrl;
6037}
6038
Andrey Smetanind62caab2015-11-10 15:36:33 +03006039static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
6040{
6041 struct vcpu_vmx *vmx = to_vmx(vcpu);
6042
6043 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03006044 if (cpu_has_secondary_exec_ctrls()) {
6045 if (kvm_vcpu_apicv_active(vcpu))
6046 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
6047 SECONDARY_EXEC_APIC_REGISTER_VIRT |
6048 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
6049 else
6050 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
6051 SECONDARY_EXEC_APIC_REGISTER_VIRT |
6052 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
6053 }
6054
6055 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006056 vmx_update_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03006057}
6058
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006059static u32 vmx_exec_control(struct vcpu_vmx *vmx)
6060{
6061 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01006062
6063 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
6064 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
6065
Paolo Bonzini35754c92015-07-29 12:05:37 +02006066 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006067 exec_control &= ~CPU_BASED_TPR_SHADOW;
6068#ifdef CONFIG_X86_64
6069 exec_control |= CPU_BASED_CR8_STORE_EXITING |
6070 CPU_BASED_CR8_LOAD_EXITING;
6071#endif
6072 }
6073 if (!enable_ept)
6074 exec_control |= CPU_BASED_CR3_STORE_EXITING |
6075 CPU_BASED_CR3_LOAD_EXITING |
6076 CPU_BASED_INVLPG_EXITING;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07006077 if (kvm_mwait_in_guest(vmx->vcpu.kvm))
6078 exec_control &= ~(CPU_BASED_MWAIT_EXITING |
6079 CPU_BASED_MONITOR_EXITING);
Wanpeng Licaa057a2018-03-12 04:53:03 -07006080 if (kvm_hlt_in_guest(vmx->vcpu.kvm))
6081 exec_control &= ~CPU_BASED_HLT_EXITING;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006082 return exec_control;
6083}
6084
Jim Mattson45ec3682017-08-23 16:32:04 -07006085static bool vmx_rdrand_supported(void)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006086{
Jim Mattson45ec3682017-08-23 16:32:04 -07006087 return vmcs_config.cpu_based_2nd_exec_ctrl &
David Hildenbrand736fdf72017-08-24 20:51:37 +02006088 SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07006089}
6090
Jim Mattson75f4fc82017-08-23 16:32:03 -07006091static bool vmx_rdseed_supported(void)
6092{
6093 return vmcs_config.cpu_based_2nd_exec_ctrl &
David Hildenbrand736fdf72017-08-24 20:51:37 +02006094 SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07006095}
6096
Paolo Bonzini80154d72017-08-24 13:55:35 +02006097static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006098{
Paolo Bonzini80154d72017-08-24 13:55:35 +02006099 struct kvm_vcpu *vcpu = &vmx->vcpu;
6100
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006101 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini0367f202016-07-12 10:44:55 +02006102
Paolo Bonzini80154d72017-08-24 13:55:35 +02006103 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006104 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
6105 if (vmx->vpid == 0)
6106 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
6107 if (!enable_ept) {
6108 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
6109 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00006110 /* Enable INVPCID for non-ept guests may cause performance regression. */
6111 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006112 }
6113 if (!enable_unrestricted_guest)
6114 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Wanpeng Lib31c1142018-03-12 04:53:04 -07006115 if (kvm_pause_in_guest(vmx->vcpu.kvm))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006116 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02006117 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08006118 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
6119 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08006120 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Paolo Bonzini0367f202016-07-12 10:44:55 +02006121
6122 /* SECONDARY_EXEC_DESC is enabled/disabled on writes to CR4.UMIP,
6123 * in vmx_set_cr4. */
6124 exec_control &= ~SECONDARY_EXEC_DESC;
6125
Abel Gordonabc4fc52013-04-18 14:35:25 +03006126 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
6127 (handle_vmptrld).
6128 We can NOT enable shadow_vmcs here because we don't have yet
6129 a current VMCS12
6130 */
6131 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08006132
6133 if (!enable_pml)
6134 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08006135
Paolo Bonzini3db13482017-08-24 14:48:03 +02006136 if (vmx_xsaves_supported()) {
6137 /* Exposing XSAVES only when XSAVE is exposed */
6138 bool xsaves_enabled =
6139 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
6140 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
6141
6142 if (!xsaves_enabled)
6143 exec_control &= ~SECONDARY_EXEC_XSAVES;
6144
6145 if (nested) {
6146 if (xsaves_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006147 vmx->nested.msrs.secondary_ctls_high |=
Paolo Bonzini3db13482017-08-24 14:48:03 +02006148 SECONDARY_EXEC_XSAVES;
6149 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006150 vmx->nested.msrs.secondary_ctls_high &=
Paolo Bonzini3db13482017-08-24 14:48:03 +02006151 ~SECONDARY_EXEC_XSAVES;
6152 }
6153 }
6154
Paolo Bonzini80154d72017-08-24 13:55:35 +02006155 if (vmx_rdtscp_supported()) {
6156 bool rdtscp_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP);
6157 if (!rdtscp_enabled)
6158 exec_control &= ~SECONDARY_EXEC_RDTSCP;
6159
6160 if (nested) {
6161 if (rdtscp_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006162 vmx->nested.msrs.secondary_ctls_high |=
Paolo Bonzini80154d72017-08-24 13:55:35 +02006163 SECONDARY_EXEC_RDTSCP;
6164 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006165 vmx->nested.msrs.secondary_ctls_high &=
Paolo Bonzini80154d72017-08-24 13:55:35 +02006166 ~SECONDARY_EXEC_RDTSCP;
6167 }
6168 }
6169
6170 if (vmx_invpcid_supported()) {
6171 /* Exposing INVPCID only when PCID is exposed */
6172 bool invpcid_enabled =
6173 guest_cpuid_has(vcpu, X86_FEATURE_INVPCID) &&
6174 guest_cpuid_has(vcpu, X86_FEATURE_PCID);
6175
6176 if (!invpcid_enabled) {
6177 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
6178 guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID);
6179 }
6180
6181 if (nested) {
6182 if (invpcid_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006183 vmx->nested.msrs.secondary_ctls_high |=
Paolo Bonzini80154d72017-08-24 13:55:35 +02006184 SECONDARY_EXEC_ENABLE_INVPCID;
6185 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006186 vmx->nested.msrs.secondary_ctls_high &=
Paolo Bonzini80154d72017-08-24 13:55:35 +02006187 ~SECONDARY_EXEC_ENABLE_INVPCID;
6188 }
6189 }
6190
Jim Mattson45ec3682017-08-23 16:32:04 -07006191 if (vmx_rdrand_supported()) {
6192 bool rdrand_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDRAND);
6193 if (rdrand_enabled)
David Hildenbrand736fdf72017-08-24 20:51:37 +02006194 exec_control &= ~SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07006195
6196 if (nested) {
6197 if (rdrand_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006198 vmx->nested.msrs.secondary_ctls_high |=
David Hildenbrand736fdf72017-08-24 20:51:37 +02006199 SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07006200 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006201 vmx->nested.msrs.secondary_ctls_high &=
David Hildenbrand736fdf72017-08-24 20:51:37 +02006202 ~SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07006203 }
6204 }
6205
Jim Mattson75f4fc82017-08-23 16:32:03 -07006206 if (vmx_rdseed_supported()) {
6207 bool rdseed_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDSEED);
6208 if (rdseed_enabled)
David Hildenbrand736fdf72017-08-24 20:51:37 +02006209 exec_control &= ~SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07006210
6211 if (nested) {
6212 if (rdseed_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006213 vmx->nested.msrs.secondary_ctls_high |=
David Hildenbrand736fdf72017-08-24 20:51:37 +02006214 SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07006215 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006216 vmx->nested.msrs.secondary_ctls_high &=
David Hildenbrand736fdf72017-08-24 20:51:37 +02006217 ~SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07006218 }
6219 }
6220
Paolo Bonzini80154d72017-08-24 13:55:35 +02006221 vmx->secondary_exec_control = exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006222}
6223
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006224static void ept_set_mmio_spte_mask(void)
6225{
6226 /*
6227 * EPT Misconfigurations can be generated if the value of bits 2:0
6228 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006229 */
Peter Feinerdcdca5f2017-06-30 17:26:30 -07006230 kvm_mmu_set_mmio_spte_mask(VMX_EPT_RWX_MASK,
6231 VMX_EPT_MISCONFIG_WX_VALUE);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006232}
6233
Wanpeng Lif53cd632014-12-02 19:14:58 +08006234#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006235/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08006236 * Sets up the vmcs for emulated real mode.
6237 */
David Hildenbrand12d79912017-08-24 20:51:26 +02006238static void vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006239{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02006240#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08006241 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02006242#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08006243 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006244
Abel Gordon4607c2d2013-04-18 14:35:55 +03006245 if (enable_shadow_vmcs) {
Jim Mattsonf4160e42018-05-29 09:11:33 -07006246 /*
6247 * At vCPU creation, "VMWRITE to any supported field
6248 * in the VMCS" is supported, so use the more
6249 * permissive vmx_vmread_bitmap to specify both read
6250 * and write permissions for the shadow VMCS.
6251 */
Abel Gordon4607c2d2013-04-18 14:35:55 +03006252 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
Jim Mattsonf4160e42018-05-29 09:11:33 -07006253 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmread_bitmap));
Abel Gordon4607c2d2013-04-18 14:35:55 +03006254 }
Sheng Yang25c5f222008-03-28 13:18:56 +08006255 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006256 vmcs_write64(MSR_BITMAP, __pa(vmx->vmcs01.msr_bitmap));
Sheng Yang25c5f222008-03-28 13:18:56 +08006257
Avi Kivity6aa8b732006-12-10 02:21:36 -08006258 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
6259
Avi Kivity6aa8b732006-12-10 02:21:36 -08006260 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08006261 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yunhong Jiang64672c92016-06-13 14:19:59 -07006262 vmx->hv_deadline_tsc = -1;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006263
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006264 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08006265
Dan Williamsdfa169b2016-06-02 11:17:24 -07006266 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +02006267 vmx_compute_secondary_exec_control(vmx);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006268 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
Paolo Bonzini80154d72017-08-24 13:55:35 +02006269 vmx->secondary_exec_control);
Dan Williamsdfa169b2016-06-02 11:17:24 -07006270 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08006271
Andrey Smetanind62caab2015-11-10 15:36:33 +03006272 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08006273 vmcs_write64(EOI_EXIT_BITMAP0, 0);
6274 vmcs_write64(EOI_EXIT_BITMAP1, 0);
6275 vmcs_write64(EOI_EXIT_BITMAP2, 0);
6276 vmcs_write64(EOI_EXIT_BITMAP3, 0);
6277
6278 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08006279
Li RongQing0bcf2612015-12-03 13:29:34 +08006280 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08006281 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08006282 }
6283
Wanpeng Lib31c1142018-03-12 04:53:04 -07006284 if (!kvm_pause_in_guest(vmx->vcpu.kvm)) {
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006285 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02006286 vmx->ple_window = ple_window;
6287 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006288 }
6289
Xiao Guangrongc3707952011-07-12 03:28:04 +08006290 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
6291 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006292 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
6293
Avi Kivity9581d442010-10-19 16:46:55 +02006294 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
6295 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08006296 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08006297#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08006298 rdmsrl(MSR_FS_BASE, a);
6299 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
6300 rdmsrl(MSR_GS_BASE, a);
6301 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
6302#else
6303 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
6304 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
6305#endif
6306
Bandan Das2a499e42017-08-03 15:54:41 -04006307 if (cpu_has_vmx_vmfunc())
6308 vmcs_write64(VM_FUNCTION_CONTROL, 0);
6309
Eddie Dong2cc51562007-05-21 07:28:09 +03006310 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
6311 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04006312 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host.val));
Eddie Dong2cc51562007-05-21 07:28:09 +03006313 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04006314 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest.val));
Avi Kivity6aa8b732006-12-10 02:21:36 -08006315
Radim Krčmář74545702015-04-27 15:11:25 +02006316 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
6317 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08006318
Paolo Bonzini03916db2014-07-24 14:21:57 +02006319 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08006320 u32 index = vmx_msr_index[i];
6321 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006322 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006323
6324 if (rdmsr_safe(index, &data_low, &data_high) < 0)
6325 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08006326 if (wrmsr_safe(index, data_low, data_high) < 0)
6327 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03006328 vmx->guest_msrs[j].index = i;
6329 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02006330 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006331 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006332 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006333
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +01006334 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES))
6335 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, vmx->arch_capabilities);
Gleb Natapov2961e8762013-11-25 15:37:13 +02006336
6337 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006338
6339 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02006340 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03006341
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006342 vmx->vcpu.arch.cr0_guest_owned_bits = X86_CR0_TS;
6343 vmcs_writel(CR0_GUEST_HOST_MASK, ~X86_CR0_TS);
6344
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006345 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006346
Wanpeng Lif53cd632014-12-02 19:14:58 +08006347 if (vmx_xsaves_supported())
6348 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
6349
Peter Feiner4e595162016-07-07 14:49:58 -07006350 if (enable_pml) {
6351 ASSERT(vmx->pml_pg);
6352 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
6353 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
6354 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006355}
6356
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006357static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006358{
6359 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01006360 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006361 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006362
Avi Kivity7ffd92c2009-06-09 14:10:45 +03006363 vmx->rmode.vm86_active = 0;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006364 vmx->spec_ctrl = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006365
Wanpeng Li518e7b92018-02-28 14:03:31 +08006366 vcpu->arch.microcode_version = 0x100000000ULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006367 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006368 kvm_set_cr8(vcpu, 0);
6369
6370 if (!init_event) {
6371 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
6372 MSR_IA32_APICBASE_ENABLE;
6373 if (kvm_vcpu_is_reset_bsp(vcpu))
6374 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
6375 apic_base_msr.host_initiated = true;
6376 kvm_set_apic_base(vcpu, &apic_base_msr);
6377 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006378
Avi Kivity2fb92db2011-04-27 19:42:18 +03006379 vmx_segment_cache_clear(vmx);
6380
Avi Kivity5706be02008-08-20 15:07:31 +03006381 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01006382 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01006383 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006384
6385 seg_setup(VCPU_SREG_DS);
6386 seg_setup(VCPU_SREG_ES);
6387 seg_setup(VCPU_SREG_FS);
6388 seg_setup(VCPU_SREG_GS);
6389 seg_setup(VCPU_SREG_SS);
6390
6391 vmcs_write16(GUEST_TR_SELECTOR, 0);
6392 vmcs_writel(GUEST_TR_BASE, 0);
6393 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
6394 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
6395
6396 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
6397 vmcs_writel(GUEST_LDTR_BASE, 0);
6398 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
6399 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
6400
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006401 if (!init_event) {
6402 vmcs_write32(GUEST_SYSENTER_CS, 0);
6403 vmcs_writel(GUEST_SYSENTER_ESP, 0);
6404 vmcs_writel(GUEST_SYSENTER_EIP, 0);
6405 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
6406 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006407
Wanpeng Lic37c2872017-11-20 14:52:21 -08006408 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
Jan Kiszka66450a22013-03-13 12:42:34 +01006409 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006410
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006411 vmcs_writel(GUEST_GDTR_BASE, 0);
6412 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
6413
6414 vmcs_writel(GUEST_IDTR_BASE, 0);
6415 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
6416
Anthony Liguori443381a2010-12-06 10:53:38 -06006417 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006418 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01006419 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Wanpeng Lia554d202017-10-11 05:10:19 -07006420 if (kvm_mpx_supported())
6421 vmcs_write64(GUEST_BNDCFGS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006422
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006423 setup_msrs(vmx);
6424
Avi Kivity6aa8b732006-12-10 02:21:36 -08006425 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
6426
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006427 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08006428 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02006429 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08006430 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006431 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08006432 vmcs_write32(TPR_THRESHOLD, 0);
6433 }
6434
Paolo Bonzinia73896c2014-11-02 07:54:30 +01006435 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006436
Sheng Yang2384d2b2008-01-17 15:14:33 +08006437 if (vmx->vpid != 0)
6438 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
6439
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006440 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006441 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06006442 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006443 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02006444 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006445
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006446 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006447
Wanpeng Lidd5f5342015-09-23 18:26:57 +08006448 vpid_sync_context(vmx->vpid);
Wanpeng Licaa057a2018-03-12 04:53:03 -07006449 if (init_event)
6450 vmx_clear_hlt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006451}
6452
Nadav Har'Elb6f12502011-05-25 23:13:06 +03006453/*
6454 * In nested virtualization, check if L1 asked to exit on external interrupts.
6455 * For most existing hypervisors, this will always return true.
6456 */
6457static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
6458{
6459 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
6460 PIN_BASED_EXT_INTR_MASK;
6461}
6462
Bandan Das77b0f5d2014-04-19 18:17:45 -04006463/*
6464 * In nested virtualization, check if L1 has set
6465 * VM_EXIT_ACK_INTR_ON_EXIT
6466 */
6467static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
6468{
6469 return get_vmcs12(vcpu)->vm_exit_controls &
6470 VM_EXIT_ACK_INTR_ON_EXIT;
6471}
6472
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02006473static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
6474{
Krish Sadhukhan0c7f6502018-02-20 21:24:39 -05006475 return nested_cpu_has_nmi_exiting(get_vmcs12(vcpu));
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02006476}
6477
Jan Kiszkac9a79532014-03-07 20:03:15 +01006478static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006479{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006480 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
6481 CPU_BASED_VIRTUAL_INTR_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006482}
6483
Jan Kiszkac9a79532014-03-07 20:03:15 +01006484static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006485{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006486 if (!enable_vnmi ||
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006487 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jan Kiszkac9a79532014-03-07 20:03:15 +01006488 enable_irq_window(vcpu);
6489 return;
6490 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02006491
Paolo Bonzini47c01522016-12-19 11:44:07 +01006492 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
6493 CPU_BASED_VIRTUAL_NMI_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006494}
6495
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006496static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03006497{
Avi Kivity9c8cba32007-11-22 11:42:59 +02006498 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006499 uint32_t intr;
6500 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02006501
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006502 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006503
Avi Kivityfa89a812008-09-01 15:57:51 +03006504 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03006505 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05006506 int inc_eip = 0;
6507 if (vcpu->arch.interrupt.soft)
6508 inc_eip = vcpu->arch.event_exit_inst_len;
6509 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02006510 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03006511 return;
6512 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006513 intr = irq | INTR_INFO_VALID_MASK;
6514 if (vcpu->arch.interrupt.soft) {
6515 intr |= INTR_TYPE_SOFT_INTR;
6516 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
6517 vmx->vcpu.arch.event_exit_inst_len);
6518 } else
6519 intr |= INTR_TYPE_EXT_INTR;
6520 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Wanpeng Licaa057a2018-03-12 04:53:03 -07006521
6522 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03006523}
6524
Sheng Yangf08864b2008-05-15 18:23:25 +08006525static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
6526{
Jan Kiszka66a5a342008-09-26 09:30:51 +02006527 struct vcpu_vmx *vmx = to_vmx(vcpu);
6528
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006529 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006530 /*
6531 * Tracking the NMI-blocked state in software is built upon
6532 * finding the next open IRQ window. This, in turn, depends on
6533 * well-behaving guests: They have to keep IRQs disabled at
6534 * least as long as the NMI handler runs. Otherwise we may
6535 * cause NMI nesting, maybe breaking the guest. But as this is
6536 * highly unlikely, we can live with the residual risk.
6537 */
6538 vmx->loaded_vmcs->soft_vnmi_blocked = 1;
6539 vmx->loaded_vmcs->vnmi_blocked_time = 0;
6540 }
6541
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02006542 ++vcpu->stat.nmi_injections;
6543 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006544
Avi Kivity7ffd92c2009-06-09 14:10:45 +03006545 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05006546 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02006547 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02006548 return;
6549 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08006550
Sheng Yangf08864b2008-05-15 18:23:25 +08006551 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
6552 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Wanpeng Licaa057a2018-03-12 04:53:03 -07006553
6554 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006555}
6556
Jan Kiszka3cfc3092009-11-12 01:04:25 +01006557static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
6558{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02006559 struct vcpu_vmx *vmx = to_vmx(vcpu);
6560 bool masked;
6561
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006562 if (!enable_vnmi)
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006563 return vmx->loaded_vmcs->soft_vnmi_blocked;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02006564 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02006565 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02006566 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
6567 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
6568 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01006569}
6570
6571static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
6572{
6573 struct vcpu_vmx *vmx = to_vmx(vcpu);
6574
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006575 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006576 if (vmx->loaded_vmcs->soft_vnmi_blocked != masked) {
6577 vmx->loaded_vmcs->soft_vnmi_blocked = masked;
6578 vmx->loaded_vmcs->vnmi_blocked_time = 0;
6579 }
6580 } else {
6581 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
6582 if (masked)
6583 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
6584 GUEST_INTR_STATE_NMI);
6585 else
6586 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
6587 GUEST_INTR_STATE_NMI);
6588 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01006589}
6590
Jan Kiszka2505dc92013-04-14 12:12:47 +02006591static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
6592{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006593 if (to_vmx(vcpu)->nested.nested_run_pending)
6594 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02006595
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006596 if (!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006597 to_vmx(vcpu)->loaded_vmcs->soft_vnmi_blocked)
6598 return 0;
6599
Jan Kiszka2505dc92013-04-14 12:12:47 +02006600 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
6601 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
6602 | GUEST_INTR_STATE_NMI));
6603}
6604
Gleb Natapov78646122009-03-23 12:12:11 +02006605static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
6606{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006607 return (!to_vmx(vcpu)->nested.nested_run_pending &&
6608 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03006609 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
6610 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02006611}
6612
Izik Eiduscbc94022007-10-25 00:29:55 +02006613static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
6614{
6615 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02006616
Sean Christophersonf7eaeb02018-03-05 12:04:36 -08006617 if (enable_unrestricted_guest)
6618 return 0;
6619
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02006620 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
6621 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02006622 if (ret)
6623 return ret;
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07006624 to_kvm_vmx(kvm)->tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02006625 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02006626}
6627
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07006628static int vmx_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
6629{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07006630 to_kvm_vmx(kvm)->ept_identity_map_addr = ident_addr;
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07006631 return 0;
6632}
6633
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006634static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006635{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02006636 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02006637 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01006638 /*
6639 * Update instruction length as we may reinject the exception
6640 * from user space while in guest debugging mode.
6641 */
6642 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
6643 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006644 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006645 return false;
6646 /* fall through */
6647 case DB_VECTOR:
6648 if (vcpu->guest_debug &
6649 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
6650 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006651 /* fall through */
6652 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02006653 case OF_VECTOR:
6654 case BR_VECTOR:
6655 case UD_VECTOR:
6656 case DF_VECTOR:
6657 case SS_VECTOR:
6658 case GP_VECTOR:
6659 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006660 return true;
6661 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02006662 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006663 return false;
6664}
6665
6666static int handle_rmode_exception(struct kvm_vcpu *vcpu,
6667 int vec, u32 err_code)
6668{
6669 /*
6670 * Instruction with address size override prefix opcode 0x67
6671 * Cause the #SS fault with 0 error code in VM86 mode.
6672 */
6673 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
6674 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
6675 if (vcpu->arch.halt_request) {
6676 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006677 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006678 }
6679 return 1;
6680 }
6681 return 0;
6682 }
6683
6684 /*
6685 * Forward all other exceptions that are valid in real mode.
6686 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
6687 * the required debugging infrastructure rework.
6688 */
6689 kvm_queue_exception(vcpu, vec);
6690 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006691}
6692
Andi Kleena0861c02009-06-08 17:37:09 +08006693/*
6694 * Trigger machine check on the host. We assume all the MSRs are already set up
6695 * by the CPU and that we still run on the same CPU as the MCE occurred on.
6696 * We pass a fake environment to the machine check handler because we want
6697 * the guest to be always treated like user space, no matter what context
6698 * it used internally.
6699 */
6700static void kvm_machine_check(void)
6701{
6702#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
6703 struct pt_regs regs = {
6704 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
6705 .flags = X86_EFLAGS_IF,
6706 };
6707
6708 do_machine_check(&regs, 0);
6709#endif
6710}
6711
Avi Kivity851ba692009-08-24 11:10:17 +03006712static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08006713{
6714 /* already handled by vcpu_run */
6715 return 1;
6716}
6717
Avi Kivity851ba692009-08-24 11:10:17 +03006718static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006719{
Avi Kivity1155f762007-11-22 11:30:47 +02006720 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03006721 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006722 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006723 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006724 u32 vect_info;
6725 enum emulation_result er;
6726
Avi Kivity1155f762007-11-22 11:30:47 +02006727 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02006728 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006729
Andi Kleena0861c02009-06-08 17:37:09 +08006730 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03006731 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08006732
Jim Mattsonef85b672016-12-12 11:01:37 -08006733 if (is_nmi(intr_info))
Avi Kivity1b6269d2007-10-09 12:12:19 +02006734 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03006735
Wanpeng Li082d06e2018-04-03 16:28:48 -07006736 if (is_invalid_opcode(intr_info))
6737 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05006738
Avi Kivity6aa8b732006-12-10 02:21:36 -08006739 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06006740 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006741 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08006742
Liran Alon9e869482018-03-12 13:12:51 +02006743 if (!vmx->rmode.vm86_active && is_gp_fault(intr_info)) {
6744 WARN_ON_ONCE(!enable_vmware_backdoor);
6745 er = emulate_instruction(vcpu,
6746 EMULTYPE_VMWARE | EMULTYPE_NO_UD_ON_FAIL);
6747 if (er == EMULATE_USER_EXIT)
6748 return 0;
6749 else if (er != EMULATE_DONE)
6750 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
6751 return 1;
6752 }
6753
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08006754 /*
6755 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
6756 * MMIO, it is better to report an internal error.
6757 * See the comments in vmx_handle_exit.
6758 */
6759 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
6760 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
6761 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6762 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02006763 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08006764 vcpu->run->internal.data[0] = vect_info;
6765 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02006766 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08006767 return 0;
6768 }
6769
Avi Kivity6aa8b732006-12-10 02:21:36 -08006770 if (is_page_fault(intr_info)) {
6771 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07006772 /* EPT won't cause page fault directly */
6773 WARN_ON_ONCE(!vcpu->arch.apf.host_apf_reason && enable_ept);
Paolo Bonzinid0006532017-08-11 18:36:43 +02006774 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006775 }
6776
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006777 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006778
6779 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
6780 return handle_rmode_exception(vcpu, ex_no, error_code);
6781
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006782 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01006783 case AC_VECTOR:
6784 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
6785 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006786 case DB_VECTOR:
6787 dr6 = vmcs_readl(EXIT_QUALIFICATION);
6788 if (!(vcpu->guest_debug &
6789 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01006790 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03006791 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Linus Torvalds32d43cd2018-03-20 12:16:59 -07006792 if (is_icebp(intr_info))
Huw Daviesfd2a4452014-04-16 10:02:51 +01006793 skip_emulated_instruction(vcpu);
6794
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006795 kvm_queue_exception(vcpu, DB_VECTOR);
6796 return 1;
6797 }
6798 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
6799 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
6800 /* fall through */
6801 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01006802 /*
6803 * Update instruction length as we may reinject #BP from
6804 * user space while in guest debugging mode. Reading it for
6805 * #DB as well causes no harm, it is not used in that case.
6806 */
6807 vmx->vcpu.arch.event_exit_inst_len =
6808 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006809 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03006810 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006811 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
6812 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006813 break;
6814 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006815 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
6816 kvm_run->ex.exception = ex_no;
6817 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006818 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006819 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006820 return 0;
6821}
6822
Avi Kivity851ba692009-08-24 11:10:17 +03006823static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006824{
Avi Kivity1165f5f2007-04-19 17:27:43 +03006825 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006826 return 1;
6827}
6828
Avi Kivity851ba692009-08-24 11:10:17 +03006829static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08006830{
Avi Kivity851ba692009-08-24 11:10:17 +03006831 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07006832 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08006833 return 0;
6834}
Avi Kivity6aa8b732006-12-10 02:21:36 -08006835
Avi Kivity851ba692009-08-24 11:10:17 +03006836static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006837{
He, Qingbfdaab02007-09-12 14:18:28 +08006838 unsigned long exit_qualification;
Sean Christophersondca7f122018-03-08 08:57:27 -08006839 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02006840 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006841
He, Qingbfdaab02007-09-12 14:18:28 +08006842 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02006843 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03006844
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006845 ++vcpu->stat.io_exits;
6846
Sean Christopherson432baf62018-03-08 08:57:26 -08006847 if (string)
Andre Przywara51d8b662010-12-21 11:12:02 +01006848 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006849
6850 port = exit_qualification >> 16;
6851 size = (exit_qualification & 7) + 1;
Sean Christopherson432baf62018-03-08 08:57:26 -08006852 in = (exit_qualification & 8) != 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006853
Sean Christophersondca7f122018-03-08 08:57:27 -08006854 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006855}
6856
Ingo Molnar102d8322007-02-19 14:37:47 +02006857static void
6858vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
6859{
6860 /*
6861 * Patch in the VMCALL instruction:
6862 */
6863 hypercall[0] = 0x0f;
6864 hypercall[1] = 0x01;
6865 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02006866}
6867
Guo Chao0fa06072012-06-28 15:16:19 +08006868/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006869static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
6870{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006871 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006872 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6873 unsigned long orig_val = val;
6874
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006875 /*
6876 * We get here when L2 changed cr0 in a way that did not change
6877 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006878 * but did change L0 shadowed bits. So we first calculate the
6879 * effective cr0 value that L1 would like to write into the
6880 * hardware. It consists of the L2-owned bits from the new
6881 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006882 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006883 val = (val & ~vmcs12->cr0_guest_host_mask) |
6884 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
6885
David Matlack38991522016-11-29 18:14:08 -08006886 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006887 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006888
6889 if (kvm_set_cr0(vcpu, val))
6890 return 1;
6891 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006892 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006893 } else {
6894 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08006895 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006896 return 1;
David Matlack38991522016-11-29 18:14:08 -08006897
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006898 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006899 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006900}
6901
6902static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
6903{
6904 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006905 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6906 unsigned long orig_val = val;
6907
6908 /* analogously to handle_set_cr0 */
6909 val = (val & ~vmcs12->cr4_guest_host_mask) |
6910 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
6911 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006912 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006913 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006914 return 0;
6915 } else
6916 return kvm_set_cr4(vcpu, val);
6917}
6918
Paolo Bonzini0367f202016-07-12 10:44:55 +02006919static int handle_desc(struct kvm_vcpu *vcpu)
6920{
6921 WARN_ON(!(vcpu->arch.cr4 & X86_CR4_UMIP));
6922 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
6923}
6924
Avi Kivity851ba692009-08-24 11:10:17 +03006925static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006926{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006927 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006928 int cr;
6929 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03006930 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006931 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006932
He, Qingbfdaab02007-09-12 14:18:28 +08006933 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006934 cr = exit_qualification & 15;
6935 reg = (exit_qualification >> 8) & 15;
6936 switch ((exit_qualification >> 4) & 3) {
6937 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03006938 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006939 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006940 switch (cr) {
6941 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006942 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006943 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006944 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08006945 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity23902182010-06-10 17:02:16 +03006946 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006947 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006948 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006949 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006950 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006951 case 8: {
6952 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03006953 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01006954 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006955 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02006956 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08006957 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006958 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006959 return ret;
6960 /*
6961 * TODO: we might be squashing a
6962 * KVM_GUESTDBG_SINGLESTEP-triggered
6963 * KVM_EXIT_DEBUG here.
6964 */
Avi Kivity851ba692009-08-24 11:10:17 +03006965 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006966 return 0;
6967 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02006968 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006969 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03006970 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006971 WARN_ONCE(1, "Guest should always own CR0.TS");
6972 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02006973 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08006974 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006975 case 1: /*mov from cr*/
6976 switch (cr) {
6977 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08006978 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity9f8fe502010-12-05 17:30:00 +02006979 val = kvm_read_cr3(vcpu);
6980 kvm_register_write(vcpu, reg, val);
6981 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006982 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006983 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006984 val = kvm_get_cr8(vcpu);
6985 kvm_register_write(vcpu, reg, val);
6986 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006987 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006988 }
6989 break;
6990 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02006991 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02006992 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02006993 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006994
Kyle Huey6affcbe2016-11-29 12:40:40 -08006995 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006996 default:
6997 break;
6998 }
Avi Kivity851ba692009-08-24 11:10:17 +03006999 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03007000 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08007001 (int)(exit_qualification >> 4) & 3, cr);
7002 return 0;
7003}
7004
Avi Kivity851ba692009-08-24 11:10:17 +03007005static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007006{
He, Qingbfdaab02007-09-12 14:18:28 +08007007 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03007008 int dr, dr7, reg;
7009
7010 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7011 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
7012
7013 /* First, if DR does not exist, trigger UD */
7014 if (!kvm_require_dr(vcpu, dr))
7015 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007016
Jan Kiszkaf2483412010-01-20 18:20:20 +01007017 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03007018 if (!kvm_require_cpl(vcpu, 0))
7019 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03007020 dr7 = vmcs_readl(GUEST_DR7);
7021 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007022 /*
7023 * As the vm-exit takes precedence over the debug trap, we
7024 * need to emulate the latter, either for the host or the
7025 * guest debugging itself.
7026 */
7027 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03007028 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03007029 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02007030 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03007031 vcpu->run->debug.arch.exception = DB_VECTOR;
7032 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007033 return 0;
7034 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02007035 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03007036 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007037 kvm_queue_exception(vcpu, DB_VECTOR);
7038 return 1;
7039 }
7040 }
7041
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007042 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01007043 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
7044 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007045
7046 /*
7047 * No more DR vmexits; force a reload of the debug registers
7048 * and reenter on this instruction. The next vmexit will
7049 * retrieve the full state of the debug registers.
7050 */
7051 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
7052 return 1;
7053 }
7054
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007055 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
7056 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03007057 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01007058
7059 if (kvm_get_dr(vcpu, dr, &val))
7060 return 1;
7061 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03007062 } else
Nadav Amit57773922014-06-18 17:19:23 +03007063 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01007064 return 1;
7065
Kyle Huey6affcbe2016-11-29 12:40:40 -08007066 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007067}
7068
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007069static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
7070{
7071 return vcpu->arch.dr6;
7072}
7073
7074static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
7075{
7076}
7077
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007078static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
7079{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007080 get_debugreg(vcpu->arch.db[0], 0);
7081 get_debugreg(vcpu->arch.db[1], 1);
7082 get_debugreg(vcpu->arch.db[2], 2);
7083 get_debugreg(vcpu->arch.db[3], 3);
7084 get_debugreg(vcpu->arch.dr6, 6);
7085 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
7086
7087 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01007088 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007089}
7090
Gleb Natapov020df072010-04-13 10:05:23 +03007091static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
7092{
7093 vmcs_writel(GUEST_DR7, val);
7094}
7095
Avi Kivity851ba692009-08-24 11:10:17 +03007096static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007097{
Kyle Huey6a908b62016-11-29 12:40:37 -08007098 return kvm_emulate_cpuid(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007099}
7100
Avi Kivity851ba692009-08-24 11:10:17 +03007101static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007102{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007103 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02007104 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007105
Paolo Bonzini609e36d2015-04-08 15:30:38 +02007106 msr_info.index = ecx;
7107 msr_info.host_initiated = false;
7108 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02007109 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02007110 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007111 return 1;
7112 }
7113
Paolo Bonzini609e36d2015-04-08 15:30:38 +02007114 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04007115
Avi Kivity6aa8b732006-12-10 02:21:36 -08007116 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02007117 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
7118 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Kyle Huey6affcbe2016-11-29 12:40:40 -08007119 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007120}
7121
Avi Kivity851ba692009-08-24 11:10:17 +03007122static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007123{
Will Auld8fe8ab42012-11-29 12:42:12 -08007124 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007125 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
7126 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
7127 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007128
Will Auld8fe8ab42012-11-29 12:42:12 -08007129 msr.data = data;
7130 msr.index = ecx;
7131 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03007132 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02007133 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02007134 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007135 return 1;
7136 }
7137
Avi Kivity59200272010-01-25 19:47:02 +02007138 trace_kvm_msr_write(ecx, data);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007139 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007140}
7141
Avi Kivity851ba692009-08-24 11:10:17 +03007142static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08007143{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01007144 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08007145 return 1;
7146}
7147
Avi Kivity851ba692009-08-24 11:10:17 +03007148static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007149{
Paolo Bonzini47c01522016-12-19 11:44:07 +01007150 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
7151 CPU_BASED_VIRTUAL_INTR_PENDING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04007152
Avi Kivity3842d132010-07-27 12:30:24 +03007153 kvm_make_request(KVM_REQ_EVENT, vcpu);
7154
Jan Kiszkaa26bf122008-09-26 09:30:45 +02007155 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007156 return 1;
7157}
7158
Avi Kivity851ba692009-08-24 11:10:17 +03007159static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007160{
Avi Kivityd3bef152007-06-05 15:53:05 +03007161 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007162}
7163
Avi Kivity851ba692009-08-24 11:10:17 +03007164static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02007165{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03007166 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02007167}
7168
Gleb Natapovec25d5e2010-11-01 15:35:01 +02007169static int handle_invd(struct kvm_vcpu *vcpu)
7170{
Andre Przywara51d8b662010-12-21 11:12:02 +01007171 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02007172}
7173
Avi Kivity851ba692009-08-24 11:10:17 +03007174static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03007175{
Sheng Yangf9c617f2009-03-25 10:08:52 +08007176 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03007177
7178 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007179 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03007180}
7181
Avi Kivityfee84b02011-11-10 14:57:25 +02007182static int handle_rdpmc(struct kvm_vcpu *vcpu)
7183{
7184 int err;
7185
7186 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007187 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02007188}
7189
Avi Kivity851ba692009-08-24 11:10:17 +03007190static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02007191{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007192 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02007193}
7194
Dexuan Cui2acf9232010-06-10 11:27:12 +08007195static int handle_xsetbv(struct kvm_vcpu *vcpu)
7196{
7197 u64 new_bv = kvm_read_edx_eax(vcpu);
7198 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
7199
7200 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08007201 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08007202 return 1;
7203}
7204
Wanpeng Lif53cd632014-12-02 19:14:58 +08007205static int handle_xsaves(struct kvm_vcpu *vcpu)
7206{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007207 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08007208 WARN(1, "this should never happen\n");
7209 return 1;
7210}
7211
7212static int handle_xrstors(struct kvm_vcpu *vcpu)
7213{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007214 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08007215 WARN(1, "this should never happen\n");
7216 return 1;
7217}
7218
Avi Kivity851ba692009-08-24 11:10:17 +03007219static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08007220{
Kevin Tian58fbbf22011-08-30 13:56:17 +03007221 if (likely(fasteoi)) {
7222 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7223 int access_type, offset;
7224
7225 access_type = exit_qualification & APIC_ACCESS_TYPE;
7226 offset = exit_qualification & APIC_ACCESS_OFFSET;
7227 /*
7228 * Sane guest uses MOV to write EOI, with written value
7229 * not cared. So make a short-circuit here by avoiding
7230 * heavy instruction emulation.
7231 */
7232 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
7233 (offset == APIC_EOI)) {
7234 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007235 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03007236 }
7237 }
Andre Przywara51d8b662010-12-21 11:12:02 +01007238 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08007239}
7240
Yang Zhangc7c9c562013-01-25 10:18:51 +08007241static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
7242{
7243 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7244 int vector = exit_qualification & 0xff;
7245
7246 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
7247 kvm_apic_set_eoi_accelerated(vcpu, vector);
7248 return 1;
7249}
7250
Yang Zhang83d4c282013-01-25 10:18:49 +08007251static int handle_apic_write(struct kvm_vcpu *vcpu)
7252{
7253 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7254 u32 offset = exit_qualification & 0xfff;
7255
7256 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
7257 kvm_apic_write_nodecode(vcpu, offset);
7258 return 1;
7259}
7260
Avi Kivity851ba692009-08-24 11:10:17 +03007261static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02007262{
Jan Kiszka60637aa2008-09-26 09:30:47 +02007263 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02007264 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02007265 bool has_error_code = false;
7266 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02007267 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007268 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007269
7270 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007271 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007272 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02007273
7274 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7275
7276 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007277 if (reason == TASK_SWITCH_GATE && idt_v) {
7278 switch (type) {
7279 case INTR_TYPE_NMI_INTR:
7280 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02007281 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007282 break;
7283 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03007284 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007285 kvm_clear_interrupt_queue(vcpu);
7286 break;
7287 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02007288 if (vmx->idt_vectoring_info &
7289 VECTORING_INFO_DELIVER_CODE_MASK) {
7290 has_error_code = true;
7291 error_code =
7292 vmcs_read32(IDT_VECTORING_ERROR_CODE);
7293 }
7294 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007295 case INTR_TYPE_SOFT_EXCEPTION:
7296 kvm_clear_exception_queue(vcpu);
7297 break;
7298 default:
7299 break;
7300 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02007301 }
Izik Eidus37817f22008-03-24 23:14:53 +02007302 tss_selector = exit_qualification;
7303
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007304 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
7305 type != INTR_TYPE_EXT_INTR &&
7306 type != INTR_TYPE_NMI_INTR))
7307 skip_emulated_instruction(vcpu);
7308
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007309 if (kvm_task_switch(vcpu, tss_selector,
7310 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
7311 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03007312 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7313 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
7314 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007315 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03007316 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007317
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007318 /*
7319 * TODO: What about debug traps on tss switch?
7320 * Are we supposed to inject them and update dr6?
7321 */
7322
7323 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02007324}
7325
Avi Kivity851ba692009-08-24 11:10:17 +03007326static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08007327{
Sheng Yangf9c617f2009-03-25 10:08:52 +08007328 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08007329 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01007330 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08007331
Sheng Yangf9c617f2009-03-25 10:08:52 +08007332 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08007333
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03007334 /*
7335 * EPT violation happened while executing iret from NMI,
7336 * "blocked by NMI" bit has to be set before next VM entry.
7337 * There are errata that may cause this bit to not be set:
7338 * AAK134, BY25.
7339 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03007340 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01007341 enable_vnmi &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03007342 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03007343 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
7344
Sheng Yang14394422008-04-28 12:24:45 +08007345 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007346 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08007347
Junaid Shahid27959a42016-12-06 16:46:10 -08007348 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08007349 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08007350 ? PFERR_USER_MASK : 0;
7351 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08007352 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08007353 ? PFERR_WRITE_MASK : 0;
7354 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08007355 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08007356 ? PFERR_FETCH_MASK : 0;
7357 /* ept page table entry is present? */
7358 error_code |= (exit_qualification &
7359 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
7360 EPT_VIOLATION_EXECUTABLE))
7361 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08007362
Paolo Bonzinieebed242016-11-28 14:39:58 +01007363 error_code |= (exit_qualification & 0x100) != 0 ?
7364 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03007365
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08007366 vcpu->arch.exit_qualification = exit_qualification;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08007367 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08007368}
7369
Avi Kivity851ba692009-08-24 11:10:17 +03007370static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007371{
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007372 gpa_t gpa;
7373
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02007374 /*
7375 * A nested guest cannot optimize MMIO vmexits, because we have an
7376 * nGPA here instead of the required GPA.
7377 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007378 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02007379 if (!is_guest_mode(vcpu) &&
7380 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08007381 trace_kvm_fast_mmio(gpa);
Vitaly Kuznetsovd391f122018-01-25 16:37:07 +01007382 /*
7383 * Doing kvm_skip_emulated_instruction() depends on undefined
7384 * behavior: Intel's manual doesn't mandate
7385 * VM_EXIT_INSTRUCTION_LEN to be set in VMCS when EPT MISCONFIG
7386 * occurs and while on real hardware it was observed to be set,
7387 * other hypervisors (namely Hyper-V) don't set it, we end up
7388 * advancing IP with some random value. Disable fast mmio when
7389 * running nested and keep it for real hardware in hope that
7390 * VM_EXIT_INSTRUCTION_LEN will always be set correctly.
7391 */
7392 if (!static_cpu_has(X86_FEATURE_HYPERVISOR))
7393 return kvm_skip_emulated_instruction(vcpu);
7394 else
7395 return x86_emulate_instruction(vcpu, gpa, EMULTYPE_SKIP,
7396 NULL, 0) == EMULATE_DONE;
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03007397 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007398
Sean Christophersonc75d0edc2018-03-29 14:48:31 -07007399 return kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007400}
7401
Avi Kivity851ba692009-08-24 11:10:17 +03007402static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08007403{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01007404 WARN_ON_ONCE(!enable_vnmi);
Paolo Bonzini47c01522016-12-19 11:44:07 +01007405 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
7406 CPU_BASED_VIRTUAL_NMI_PENDING);
Sheng Yangf08864b2008-05-15 18:23:25 +08007407 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03007408 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08007409
7410 return 1;
7411}
7412
Mohammed Gamal80ced182009-09-01 12:48:18 +02007413static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007414{
Avi Kivity8b3079a2009-01-05 12:10:54 +02007415 struct vcpu_vmx *vmx = to_vmx(vcpu);
7416 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02007417 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02007418 u32 cpu_exec_ctrl;
7419 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03007420 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02007421
Sean Christopherson2bb8caf2018-03-12 10:56:13 -07007422 /*
7423 * We should never reach the point where we are emulating L2
7424 * due to invalid guest state as that means we incorrectly
7425 * allowed a nested VMEntry with an invalid vmcs12.
7426 */
7427 WARN_ON_ONCE(vmx->emulation_required && vmx->nested.nested_run_pending);
7428
Avi Kivity49e9d552010-09-19 14:34:08 +02007429 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
7430 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007431
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01007432 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03007433 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02007434 return handle_interrupt_window(&vmx->vcpu);
7435
Radim Krčmář72875d82017-04-26 22:32:19 +02007436 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03007437 return 1;
7438
Liran Alon9b8ae632017-11-05 16:56:34 +02007439 err = emulate_instruction(vcpu, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007440
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02007441 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02007442 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02007443 ret = 0;
7444 goto out;
7445 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01007446
Sean Christophersonadd5ff72018-03-23 09:34:00 -07007447 if (err != EMULATE_DONE)
7448 goto emulation_error;
7449
7450 if (vmx->emulation_required && !vmx->rmode.vm86_active &&
7451 vcpu->arch.exception.pending)
7452 goto emulation_error;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007453
Gleb Natapov8d76c492013-05-08 18:38:44 +03007454 if (vcpu->arch.halt_request) {
7455 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06007456 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03007457 goto out;
7458 }
7459
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007460 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02007461 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007462 if (need_resched())
7463 schedule();
7464 }
7465
Mohammed Gamal80ced182009-09-01 12:48:18 +02007466out:
7467 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007468
Sean Christophersonadd5ff72018-03-23 09:34:00 -07007469emulation_error:
7470 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7471 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
7472 vcpu->run->internal.ndata = 0;
7473 return 0;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007474}
7475
7476static void grow_ple_window(struct kvm_vcpu *vcpu)
7477{
7478 struct vcpu_vmx *vmx = to_vmx(vcpu);
7479 int old = vmx->ple_window;
7480
Babu Mogerc8e88712018-03-16 16:37:24 -04007481 vmx->ple_window = __grow_ple_window(old, ple_window,
7482 ple_window_grow,
7483 ple_window_max);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007484
7485 if (vmx->ple_window != old)
7486 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02007487
7488 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007489}
7490
7491static void shrink_ple_window(struct kvm_vcpu *vcpu)
7492{
7493 struct vcpu_vmx *vmx = to_vmx(vcpu);
7494 int old = vmx->ple_window;
7495
Babu Mogerc8e88712018-03-16 16:37:24 -04007496 vmx->ple_window = __shrink_ple_window(old, ple_window,
7497 ple_window_shrink,
7498 ple_window);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007499
7500 if (vmx->ple_window != old)
7501 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02007502
7503 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007504}
7505
7506/*
Feng Wubf9f6ac2015-09-18 22:29:55 +08007507 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
7508 */
7509static void wakeup_handler(void)
7510{
7511 struct kvm_vcpu *vcpu;
7512 int cpu = smp_processor_id();
7513
7514 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
7515 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
7516 blocked_vcpu_list) {
7517 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
7518
7519 if (pi_test_on(pi_desc) == 1)
7520 kvm_vcpu_kick(vcpu);
7521 }
7522 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
7523}
7524
Peng Haoe01bca22018-04-07 05:47:32 +08007525static void vmx_enable_tdp(void)
Junaid Shahidf160c7b2016-12-06 16:46:16 -08007526{
7527 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
7528 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
7529 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
7530 0ull, VMX_EPT_EXECUTABLE_MASK,
7531 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05007532 VMX_EPT_RWX_MASK, 0ull);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08007533
7534 ept_set_mmio_spte_mask();
7535 kvm_enable_tdp();
7536}
7537
Tiejun Chenf2c76482014-10-28 10:14:47 +08007538static __init int hardware_setup(void)
7539{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01007540 int r = -ENOMEM, i;
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007541
7542 rdmsrl_safe(MSR_EFER, &host_efer);
7543
7544 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
7545 kvm_define_shared_msr(i, vmx_msr_index[i]);
7546
Radim Krčmář23611332016-09-29 22:41:33 +02007547 for (i = 0; i < VMX_BITMAP_NR; i++) {
7548 vmx_bitmap[i] = (unsigned long *)__get_free_page(GFP_KERNEL);
7549 if (!vmx_bitmap[i])
7550 goto out;
7551 }
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007552
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007553 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
7554 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
7555
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007556 if (setup_vmcs_config(&vmcs_config) < 0) {
7557 r = -EIO;
Radim Krčmář23611332016-09-29 22:41:33 +02007558 goto out;
Tiejun Chenbaa03522014-12-23 16:21:11 +08007559 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08007560
7561 if (boot_cpu_has(X86_FEATURE_NX))
7562 kvm_enable_efer_bits(EFER_NX);
7563
Wanpeng Li08d839c2017-03-23 05:30:08 -07007564 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
7565 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
Tiejun Chenf2c76482014-10-28 10:14:47 +08007566 enable_vpid = 0;
Wanpeng Li08d839c2017-03-23 05:30:08 -07007567
Tiejun Chenf2c76482014-10-28 10:14:47 +08007568 if (!cpu_has_vmx_ept() ||
David Hildenbrand42aa53b2017-08-10 23:15:29 +02007569 !cpu_has_vmx_ept_4levels() ||
David Hildenbrandf5f51582017-08-24 20:51:30 +02007570 !cpu_has_vmx_ept_mt_wb() ||
Wanpeng Li8ad81822017-10-09 15:51:53 -07007571 !cpu_has_vmx_invept_global())
Tiejun Chenf2c76482014-10-28 10:14:47 +08007572 enable_ept = 0;
Tiejun Chenf2c76482014-10-28 10:14:47 +08007573
Wanpeng Lifce6ac42017-05-11 02:58:56 -07007574 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08007575 enable_ept_ad_bits = 0;
7576
Wanpeng Li8ad81822017-10-09 15:51:53 -07007577 if (!cpu_has_vmx_unrestricted_guest() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08007578 enable_unrestricted_guest = 0;
7579
Paolo Bonziniad15a292015-01-30 16:18:49 +01007580 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08007581 flexpriority_enabled = 0;
7582
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01007583 if (!cpu_has_virtual_nmis())
7584 enable_vnmi = 0;
7585
Paolo Bonziniad15a292015-01-30 16:18:49 +01007586 /*
7587 * set_apic_access_page_addr() is used to reload apic access
7588 * page upon invalidation. No need to do anything if not
7589 * using the APIC_ACCESS_ADDR VMCS field.
7590 */
7591 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08007592 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08007593
7594 if (!cpu_has_vmx_tpr_shadow())
7595 kvm_x86_ops->update_cr8_intercept = NULL;
7596
7597 if (enable_ept && !cpu_has_vmx_ept_2m_page())
7598 kvm_disable_largepages();
7599
Wanpeng Li0f107682017-09-28 18:06:24 -07007600 if (!cpu_has_vmx_ple()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08007601 ple_gap = 0;
Wanpeng Li0f107682017-09-28 18:06:24 -07007602 ple_window = 0;
7603 ple_window_grow = 0;
7604 ple_window_max = 0;
7605 ple_window_shrink = 0;
7606 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08007607
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01007608 if (!cpu_has_vmx_apicv()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08007609 enable_apicv = 0;
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01007610 kvm_x86_ops->sync_pir_to_irr = NULL;
7611 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08007612
Haozhong Zhang64903d62015-10-20 15:39:09 +08007613 if (cpu_has_vmx_tsc_scaling()) {
7614 kvm_has_tsc_control = true;
7615 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
7616 kvm_tsc_scaling_ratio_frac_bits = 48;
7617 }
7618
Wanpeng Li04bb92e2015-09-16 19:31:11 +08007619 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
7620
Junaid Shahidf160c7b2016-12-06 16:46:16 -08007621 if (enable_ept)
7622 vmx_enable_tdp();
7623 else
Tiejun Chenbaa03522014-12-23 16:21:11 +08007624 kvm_disable_tdp();
7625
Kai Huang843e4332015-01-28 10:54:28 +08007626 /*
7627 * Only enable PML when hardware supports PML feature, and both EPT
7628 * and EPT A/D bit features are enabled -- PML depends on them to work.
7629 */
7630 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
7631 enable_pml = 0;
7632
7633 if (!enable_pml) {
7634 kvm_x86_ops->slot_enable_log_dirty = NULL;
7635 kvm_x86_ops->slot_disable_log_dirty = NULL;
7636 kvm_x86_ops->flush_log_dirty = NULL;
7637 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
7638 }
7639
Yunhong Jiang64672c92016-06-13 14:19:59 -07007640 if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) {
7641 u64 vmx_msr;
7642
7643 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
7644 cpu_preemption_timer_multi =
7645 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
7646 } else {
7647 kvm_x86_ops->set_hv_timer = NULL;
7648 kvm_x86_ops->cancel_hv_timer = NULL;
7649 }
7650
Paolo Bonzinic5d167b2017-12-13 11:05:19 +01007651 if (!cpu_has_vmx_shadow_vmcs())
7652 enable_shadow_vmcs = 0;
7653 if (enable_shadow_vmcs)
7654 init_vmcs_shadow_fields();
7655
Feng Wubf9f6ac2015-09-18 22:29:55 +08007656 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
Paolo Bonzini13893092018-02-26 13:40:09 +01007657 nested_vmx_setup_ctls_msrs(&vmcs_config.nested, enable_apicv);
Feng Wubf9f6ac2015-09-18 22:29:55 +08007658
Ashok Rajc45dcc72016-06-22 14:59:56 +08007659 kvm_mce_cap_supported |= MCG_LMCE_P;
7660
Tiejun Chenf2c76482014-10-28 10:14:47 +08007661 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007662
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007663out:
Radim Krčmář23611332016-09-29 22:41:33 +02007664 for (i = 0; i < VMX_BITMAP_NR; i++)
7665 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007666
7667 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08007668}
7669
7670static __exit void hardware_unsetup(void)
7671{
Radim Krčmář23611332016-09-29 22:41:33 +02007672 int i;
7673
7674 for (i = 0; i < VMX_BITMAP_NR; i++)
7675 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007676
Tiejun Chenf2c76482014-10-28 10:14:47 +08007677 free_kvm_area();
7678}
7679
Avi Kivity6aa8b732006-12-10 02:21:36 -08007680/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08007681 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
7682 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
7683 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03007684static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08007685{
Wanpeng Lib31c1142018-03-12 04:53:04 -07007686 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007687 grow_ple_window(vcpu);
7688
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08007689 /*
7690 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
7691 * VM-execution control is ignored if CPL > 0. OTOH, KVM
7692 * never set PAUSE_EXITING and just set PLE if supported,
7693 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
7694 */
7695 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007696 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08007697}
7698
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007699static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08007700{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007701 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08007702}
7703
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007704static int handle_mwait(struct kvm_vcpu *vcpu)
7705{
7706 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
7707 return handle_nop(vcpu);
7708}
7709
Jim Mattson45ec3682017-08-23 16:32:04 -07007710static int handle_invalid_op(struct kvm_vcpu *vcpu)
7711{
7712 kvm_queue_exception(vcpu, UD_VECTOR);
7713 return 1;
7714}
7715
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03007716static int handle_monitor_trap(struct kvm_vcpu *vcpu)
7717{
7718 return 1;
7719}
7720
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007721static int handle_monitor(struct kvm_vcpu *vcpu)
7722{
7723 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
7724 return handle_nop(vcpu);
7725}
7726
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08007727/*
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08007728 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
7729 * set the success or error code of an emulated VMX instruction, as specified
7730 * by Vol 2B, VMX Instruction Reference, "Conventions".
7731 */
7732static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
7733{
7734 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
7735 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
7736 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
7737}
7738
7739static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
7740{
7741 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
7742 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
7743 X86_EFLAGS_SF | X86_EFLAGS_OF))
7744 | X86_EFLAGS_CF);
7745}
7746
Abel Gordon145c28d2013-04-18 14:36:55 +03007747static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08007748 u32 vm_instruction_error)
7749{
7750 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
7751 /*
7752 * failValid writes the error number to the current VMCS, which
7753 * can't be done there isn't a current VMCS.
7754 */
7755 nested_vmx_failInvalid(vcpu);
7756 return;
7757 }
7758 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
7759 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
7760 X86_EFLAGS_SF | X86_EFLAGS_OF))
7761 | X86_EFLAGS_ZF);
7762 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
7763 /*
7764 * We don't need to force a shadow sync because
7765 * VM_INSTRUCTION_ERROR is not shadowed
7766 */
7767}
Abel Gordon145c28d2013-04-18 14:36:55 +03007768
Wincy Vanff651cb2014-12-11 08:52:58 +03007769static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
7770{
7771 /* TODO: not to reset guest simply here. */
7772 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02007773 pr_debug_ratelimited("kvm: nested vmx abort, indicator %d\n", indicator);
Wincy Vanff651cb2014-12-11 08:52:58 +03007774}
7775
Jan Kiszkaf4124502014-03-07 20:03:13 +01007776static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
7777{
7778 struct vcpu_vmx *vmx =
7779 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
7780
7781 vmx->nested.preemption_timer_expired = true;
7782 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
7783 kvm_vcpu_kick(&vmx->vcpu);
7784
7785 return HRTIMER_NORESTART;
7786}
7787
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007788/*
Bandan Das19677e32014-05-06 02:19:15 -04007789 * Decode the memory-address operand of a vmx instruction, as recorded on an
7790 * exit caused by such an instruction (run by a guest hypervisor).
7791 * On success, returns 0. When the operand is invalid, returns 1 and throws
7792 * #UD or #GP.
7793 */
7794static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
7795 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007796 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04007797{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007798 gva_t off;
7799 bool exn;
7800 struct kvm_segment s;
7801
Bandan Das19677e32014-05-06 02:19:15 -04007802 /*
7803 * According to Vol. 3B, "Information for VM Exits Due to Instruction
7804 * Execution", on an exit, vmx_instruction_info holds most of the
7805 * addressing components of the operand. Only the displacement part
7806 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
7807 * For how an actual address is calculated from all these components,
7808 * refer to Vol. 1, "Operand Addressing".
7809 */
7810 int scaling = vmx_instruction_info & 3;
7811 int addr_size = (vmx_instruction_info >> 7) & 7;
7812 bool is_reg = vmx_instruction_info & (1u << 10);
7813 int seg_reg = (vmx_instruction_info >> 15) & 7;
7814 int index_reg = (vmx_instruction_info >> 18) & 0xf;
7815 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
7816 int base_reg = (vmx_instruction_info >> 23) & 0xf;
7817 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
7818
7819 if (is_reg) {
7820 kvm_queue_exception(vcpu, UD_VECTOR);
7821 return 1;
7822 }
7823
7824 /* Addr = segment_base + offset */
7825 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007826 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04007827 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007828 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04007829 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007830 off += kvm_register_read(vcpu, index_reg)<<scaling;
7831 vmx_get_segment(vcpu, &s, seg_reg);
7832 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04007833
7834 if (addr_size == 1) /* 32 bit */
7835 *ret &= 0xffffffff;
7836
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007837 /* Checks for #GP/#SS exceptions. */
7838 exn = false;
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007839 if (is_long_mode(vcpu)) {
7840 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
7841 * non-canonical form. This is the only check on the memory
7842 * destination for long mode!
7843 */
Yu Zhangfd8cb432017-08-24 20:27:56 +08007844 exn = is_noncanonical_address(*ret, vcpu);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007845 } else if (is_protmode(vcpu)) {
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007846 /* Protected mode: apply checks for segment validity in the
7847 * following order:
7848 * - segment type check (#GP(0) may be thrown)
7849 * - usability check (#GP(0)/#SS(0))
7850 * - limit check (#GP(0)/#SS(0))
7851 */
7852 if (wr)
7853 /* #GP(0) if the destination operand is located in a
7854 * read-only data segment or any code segment.
7855 */
7856 exn = ((s.type & 0xa) == 0 || (s.type & 8));
7857 else
7858 /* #GP(0) if the source operand is located in an
7859 * execute-only code segment
7860 */
7861 exn = ((s.type & 0xa) == 8);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007862 if (exn) {
7863 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
7864 return 1;
7865 }
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007866 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
7867 */
7868 exn = (s.unusable != 0);
7869 /* Protected mode: #GP(0)/#SS(0) if the memory
7870 * operand is outside the segment limit.
7871 */
7872 exn = exn || (off + sizeof(u64) > s.limit);
7873 }
7874 if (exn) {
7875 kvm_queue_exception_e(vcpu,
7876 seg_reg == VCPU_SREG_SS ?
7877 SS_VECTOR : GP_VECTOR,
7878 0);
7879 return 1;
7880 }
7881
Bandan Das19677e32014-05-06 02:19:15 -04007882 return 0;
7883}
7884
Radim Krčmářcbf71272017-05-19 15:48:51 +02007885static int nested_vmx_get_vmptr(struct kvm_vcpu *vcpu, gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04007886{
7887 gva_t gva;
Bandan Das3573e222014-05-06 02:19:16 -04007888 struct x86_exception e;
Bandan Das3573e222014-05-06 02:19:16 -04007889
7890 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007891 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04007892 return 1;
7893
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02007894 if (kvm_read_guest_virt(vcpu, gva, vmpointer, sizeof(*vmpointer), &e)) {
Bandan Das3573e222014-05-06 02:19:16 -04007895 kvm_inject_page_fault(vcpu, &e);
7896 return 1;
7897 }
7898
Bandan Das3573e222014-05-06 02:19:16 -04007899 return 0;
7900}
7901
Jim Mattsone29acc52016-11-30 12:03:43 -08007902static int enter_vmx_operation(struct kvm_vcpu *vcpu)
7903{
7904 struct vcpu_vmx *vmx = to_vmx(vcpu);
7905 struct vmcs *shadow_vmcs;
Paolo Bonzinif21f1652018-01-11 12:16:15 +01007906 int r;
Jim Mattsone29acc52016-11-30 12:03:43 -08007907
Paolo Bonzinif21f1652018-01-11 12:16:15 +01007908 r = alloc_loaded_vmcs(&vmx->nested.vmcs02);
7909 if (r < 0)
Jim Mattsonde3a0022017-11-27 17:22:25 -06007910 goto out_vmcs02;
Jim Mattsone29acc52016-11-30 12:03:43 -08007911
7912 vmx->nested.cached_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL);
7913 if (!vmx->nested.cached_vmcs12)
7914 goto out_cached_vmcs12;
7915
7916 if (enable_shadow_vmcs) {
7917 shadow_vmcs = alloc_vmcs();
7918 if (!shadow_vmcs)
7919 goto out_shadow_vmcs;
7920 /* mark vmcs as shadow */
7921 shadow_vmcs->revision_id |= (1u << 31);
7922 /* init shadow vmcs */
7923 vmcs_clear(shadow_vmcs);
7924 vmx->vmcs01.shadow_vmcs = shadow_vmcs;
7925 }
7926
Jim Mattsone29acc52016-11-30 12:03:43 -08007927 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
7928 HRTIMER_MODE_REL_PINNED);
7929 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
7930
7931 vmx->nested.vmxon = true;
7932 return 0;
7933
7934out_shadow_vmcs:
7935 kfree(vmx->nested.cached_vmcs12);
7936
7937out_cached_vmcs12:
Jim Mattsonde3a0022017-11-27 17:22:25 -06007938 free_loaded_vmcs(&vmx->nested.vmcs02);
Jim Mattsone29acc52016-11-30 12:03:43 -08007939
Jim Mattsonde3a0022017-11-27 17:22:25 -06007940out_vmcs02:
Jim Mattsone29acc52016-11-30 12:03:43 -08007941 return -ENOMEM;
7942}
7943
Bandan Das3573e222014-05-06 02:19:16 -04007944/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007945 * Emulate the VMXON instruction.
7946 * Currently, we just remember that VMX is active, and do not save or even
7947 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
7948 * do not currently need to store anything in that guest-allocated memory
7949 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
7950 * argument is different from the VMXON pointer (which the spec says they do).
7951 */
7952static int handle_vmon(struct kvm_vcpu *vcpu)
7953{
Jim Mattsone29acc52016-11-30 12:03:43 -08007954 int ret;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007955 gpa_t vmptr;
7956 struct page *page;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007957 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007958 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
7959 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007960
Jim Mattson70f3aac2017-04-26 08:53:46 -07007961 /*
7962 * The Intel VMX Instruction Reference lists a bunch of bits that are
7963 * prerequisite to running VMXON, most notably cr4.VMXE must be set to
7964 * 1 (see vmx_set_cr4() for when we allow the guest to set this).
7965 * Otherwise, we should fail with #UD. But most faulting conditions
7966 * have already been checked by hardware, prior to the VM-exit for
7967 * VMXON. We do test guest cr4.VMXE because processor CR4 always has
7968 * that bit set to 1 in non-root mode.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007969 */
Jim Mattson70f3aac2017-04-26 08:53:46 -07007970 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE)) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007971 kvm_queue_exception(vcpu, UD_VECTOR);
7972 return 1;
7973 }
7974
Felix Wilhelm727ba742018-06-11 09:43:44 +02007975 /* CPL=0 must be checked manually. */
7976 if (vmx_get_cpl(vcpu)) {
7977 kvm_queue_exception(vcpu, UD_VECTOR);
7978 return 1;
7979 }
7980
Abel Gordon145c28d2013-04-18 14:36:55 +03007981 if (vmx->nested.vmxon) {
7982 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007983 return kvm_skip_emulated_instruction(vcpu);
Abel Gordon145c28d2013-04-18 14:36:55 +03007984 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007985
Haozhong Zhang3b840802016-06-22 14:59:54 +08007986 if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007987 != VMXON_NEEDED_FEATURES) {
7988 kvm_inject_gp(vcpu, 0);
7989 return 1;
7990 }
7991
Radim Krčmářcbf71272017-05-19 15:48:51 +02007992 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Jim Mattson21e7fbe2016-12-22 15:49:55 -08007993 return 1;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007994
7995 /*
7996 * SDM 3: 24.11.5
7997 * The first 4 bytes of VMXON region contain the supported
7998 * VMCS revision identifier
7999 *
8000 * Note - IA32_VMX_BASIC[48] will never be 1 for the nested case;
8001 * which replaces physical address width with 32
8002 */
8003 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
8004 nested_vmx_failInvalid(vcpu);
8005 return kvm_skip_emulated_instruction(vcpu);
8006 }
8007
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02008008 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
8009 if (is_error_page(page)) {
Radim Krčmářcbf71272017-05-19 15:48:51 +02008010 nested_vmx_failInvalid(vcpu);
8011 return kvm_skip_emulated_instruction(vcpu);
8012 }
8013 if (*(u32 *)kmap(page) != VMCS12_REVISION) {
8014 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008015 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02008016 nested_vmx_failInvalid(vcpu);
8017 return kvm_skip_emulated_instruction(vcpu);
8018 }
8019 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008020 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02008021
8022 vmx->nested.vmxon_ptr = vmptr;
Jim Mattsone29acc52016-11-30 12:03:43 -08008023 ret = enter_vmx_operation(vcpu);
8024 if (ret)
8025 return ret;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008026
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08008027 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008028 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008029}
8030
8031/*
8032 * Intel's VMX Instruction Reference specifies a common set of prerequisites
8033 * for running VMX instructions (except VMXON, whose prerequisites are
8034 * slightly different). It also specifies what exception to inject otherwise.
Jim Mattson70f3aac2017-04-26 08:53:46 -07008035 * Note that many of these exceptions have priority over VM exits, so they
8036 * don't have to be checked again here.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008037 */
8038static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
8039{
Felix Wilhelm727ba742018-06-11 09:43:44 +02008040 if (vmx_get_cpl(vcpu)) {
8041 kvm_queue_exception(vcpu, UD_VECTOR);
8042 return 0;
8043 }
8044
Jim Mattson70f3aac2017-04-26 08:53:46 -07008045 if (!to_vmx(vcpu)->nested.vmxon) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008046 kvm_queue_exception(vcpu, UD_VECTOR);
8047 return 0;
8048 }
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008049 return 1;
8050}
8051
David Matlack8ca44e82017-08-01 14:00:39 -07008052static void vmx_disable_shadow_vmcs(struct vcpu_vmx *vmx)
8053{
8054 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, SECONDARY_EXEC_SHADOW_VMCS);
8055 vmcs_write64(VMCS_LINK_POINTER, -1ull);
8056}
8057
Abel Gordone7953d72013-04-18 14:37:55 +03008058static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
8059{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008060 if (vmx->nested.current_vmptr == -1ull)
8061 return;
8062
Abel Gordon012f83c2013-04-18 14:39:25 +03008063 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008064 /* copy to memory all shadowed fields in case
8065 they were modified */
8066 copy_shadow_to_vmcs12(vmx);
8067 vmx->nested.sync_shadow_vmcs = false;
David Matlack8ca44e82017-08-01 14:00:39 -07008068 vmx_disable_shadow_vmcs(vmx);
Abel Gordon012f83c2013-04-18 14:39:25 +03008069 }
Wincy Van705699a2015-02-03 23:58:17 +08008070 vmx->nested.posted_intr_nv = -1;
David Matlack4f2777b2016-07-13 17:16:37 -07008071
8072 /* Flush VMCS12 to guest memory */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02008073 kvm_vcpu_write_guest_page(&vmx->vcpu,
8074 vmx->nested.current_vmptr >> PAGE_SHIFT,
8075 vmx->nested.cached_vmcs12, 0, VMCS12_SIZE);
David Matlack4f2777b2016-07-13 17:16:37 -07008076
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008077 vmx->nested.current_vmptr = -1ull;
Abel Gordone7953d72013-04-18 14:37:55 +03008078}
8079
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008080/*
8081 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
8082 * just stops using VMX.
8083 */
8084static void free_nested(struct vcpu_vmx *vmx)
8085{
Wanpeng Lib7455822017-11-22 14:04:00 -08008086 if (!vmx->nested.vmxon && !vmx->nested.smm.vmxon)
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008087 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008088
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008089 vmx->nested.vmxon = false;
Wanpeng Lib7455822017-11-22 14:04:00 -08008090 vmx->nested.smm.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07008091 free_vpid(vmx->nested.vpid02);
David Matlack8ca44e82017-08-01 14:00:39 -07008092 vmx->nested.posted_intr_nv = -1;
8093 vmx->nested.current_vmptr = -1ull;
Jim Mattson355f4fb2016-10-28 08:29:39 -07008094 if (enable_shadow_vmcs) {
David Matlack8ca44e82017-08-01 14:00:39 -07008095 vmx_disable_shadow_vmcs(vmx);
Jim Mattson355f4fb2016-10-28 08:29:39 -07008096 vmcs_clear(vmx->vmcs01.shadow_vmcs);
8097 free_vmcs(vmx->vmcs01.shadow_vmcs);
8098 vmx->vmcs01.shadow_vmcs = NULL;
8099 }
David Matlack4f2777b2016-07-13 17:16:37 -07008100 kfree(vmx->nested.cached_vmcs12);
Jim Mattsonde3a0022017-11-27 17:22:25 -06008101 /* Unpin physical memory we referred to in the vmcs02 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03008102 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02008103 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02008104 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03008105 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008106 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02008107 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02008108 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008109 }
Wincy Van705699a2015-02-03 23:58:17 +08008110 if (vmx->nested.pi_desc_page) {
8111 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008112 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08008113 vmx->nested.pi_desc_page = NULL;
8114 vmx->nested.pi_desc = NULL;
8115 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03008116
Jim Mattsonde3a0022017-11-27 17:22:25 -06008117 free_loaded_vmcs(&vmx->nested.vmcs02);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008118}
8119
8120/* Emulate the VMXOFF instruction */
8121static int handle_vmoff(struct kvm_vcpu *vcpu)
8122{
8123 if (!nested_vmx_check_permission(vcpu))
8124 return 1;
8125 free_nested(to_vmx(vcpu));
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08008126 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008127 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008128}
8129
Nadav Har'El27d6c862011-05-25 23:06:59 +03008130/* Emulate the VMCLEAR instruction */
8131static int handle_vmclear(struct kvm_vcpu *vcpu)
8132{
8133 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattson587d7e722017-03-02 12:41:48 -08008134 u32 zero = 0;
Nadav Har'El27d6c862011-05-25 23:06:59 +03008135 gpa_t vmptr;
Nadav Har'El27d6c862011-05-25 23:06:59 +03008136
8137 if (!nested_vmx_check_permission(vcpu))
8138 return 1;
8139
Radim Krčmářcbf71272017-05-19 15:48:51 +02008140 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03008141 return 1;
8142
Radim Krčmářcbf71272017-05-19 15:48:51 +02008143 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
8144 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS);
8145 return kvm_skip_emulated_instruction(vcpu);
8146 }
8147
8148 if (vmptr == vmx->nested.vmxon_ptr) {
8149 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_VMXON_POINTER);
8150 return kvm_skip_emulated_instruction(vcpu);
8151 }
8152
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008153 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03008154 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03008155
Jim Mattson587d7e722017-03-02 12:41:48 -08008156 kvm_vcpu_write_guest(vcpu,
8157 vmptr + offsetof(struct vmcs12, launch_state),
8158 &zero, sizeof(zero));
Nadav Har'El27d6c862011-05-25 23:06:59 +03008159
Nadav Har'El27d6c862011-05-25 23:06:59 +03008160 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008161 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03008162}
8163
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008164static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
8165
8166/* Emulate the VMLAUNCH instruction */
8167static int handle_vmlaunch(struct kvm_vcpu *vcpu)
8168{
8169 return nested_vmx_run(vcpu, true);
8170}
8171
8172/* Emulate the VMRESUME instruction */
8173static int handle_vmresume(struct kvm_vcpu *vcpu)
8174{
8175
8176 return nested_vmx_run(vcpu, false);
8177}
8178
Nadav Har'El49f705c2011-05-25 23:08:30 +03008179/*
8180 * Read a vmcs12 field. Since these can have varying lengths and we return
8181 * one type, we chose the biggest type (u64) and zero-extend the return value
8182 * to that size. Note that the caller, handle_vmread, might need to use only
8183 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
8184 * 64-bit fields are to be returned).
8185 */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008186static inline int vmcs12_read_any(struct kvm_vcpu *vcpu,
8187 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03008188{
8189 short offset = vmcs_field_to_offset(field);
8190 char *p;
8191
8192 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008193 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03008194
8195 p = ((char *)(get_vmcs12(vcpu))) + offset;
8196
Jim Mattsond37f4262017-12-22 12:12:16 -08008197 switch (vmcs_field_width(field)) {
8198 case VMCS_FIELD_WIDTH_NATURAL_WIDTH:
Nadav Har'El49f705c2011-05-25 23:08:30 +03008199 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008200 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008201 case VMCS_FIELD_WIDTH_U16:
Nadav Har'El49f705c2011-05-25 23:08:30 +03008202 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008203 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008204 case VMCS_FIELD_WIDTH_U32:
Nadav Har'El49f705c2011-05-25 23:08:30 +03008205 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008206 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008207 case VMCS_FIELD_WIDTH_U64:
Nadav Har'El49f705c2011-05-25 23:08:30 +03008208 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008209 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03008210 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008211 WARN_ON(1);
8212 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03008213 }
8214}
8215
Abel Gordon20b97fe2013-04-18 14:36:25 +03008216
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008217static inline int vmcs12_write_any(struct kvm_vcpu *vcpu,
8218 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03008219 short offset = vmcs_field_to_offset(field);
8220 char *p = ((char *) get_vmcs12(vcpu)) + offset;
8221 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008222 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03008223
Jim Mattsond37f4262017-12-22 12:12:16 -08008224 switch (vmcs_field_width(field)) {
8225 case VMCS_FIELD_WIDTH_U16:
Abel Gordon20b97fe2013-04-18 14:36:25 +03008226 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008227 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008228 case VMCS_FIELD_WIDTH_U32:
Abel Gordon20b97fe2013-04-18 14:36:25 +03008229 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008230 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008231 case VMCS_FIELD_WIDTH_U64:
Abel Gordon20b97fe2013-04-18 14:36:25 +03008232 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008233 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008234 case VMCS_FIELD_WIDTH_NATURAL_WIDTH:
Abel Gordon20b97fe2013-04-18 14:36:25 +03008235 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008236 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03008237 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008238 WARN_ON(1);
8239 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03008240 }
8241
8242}
8243
Jim Mattsonf4160e42018-05-29 09:11:33 -07008244/*
8245 * Copy the writable VMCS shadow fields back to the VMCS12, in case
8246 * they have been modified by the L1 guest. Note that the "read-only"
8247 * VM-exit information fields are actually writable if the vCPU is
8248 * configured to support "VMWRITE to any supported field in the VMCS."
8249 */
Abel Gordon16f5b902013-04-18 14:38:25 +03008250static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
8251{
Jim Mattsonf4160e42018-05-29 09:11:33 -07008252 const u16 *fields[] = {
8253 shadow_read_write_fields,
8254 shadow_read_only_fields
8255 };
8256 const int max_fields[] = {
8257 max_shadow_read_write_fields,
8258 max_shadow_read_only_fields
8259 };
8260 int i, q;
Abel Gordon16f5b902013-04-18 14:38:25 +03008261 unsigned long field;
8262 u64 field_value;
Jim Mattson355f4fb2016-10-28 08:29:39 -07008263 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Abel Gordon16f5b902013-04-18 14:38:25 +03008264
Jan Kiszka282da872014-10-08 18:05:39 +02008265 preempt_disable();
8266
Abel Gordon16f5b902013-04-18 14:38:25 +03008267 vmcs_load(shadow_vmcs);
8268
Jim Mattsonf4160e42018-05-29 09:11:33 -07008269 for (q = 0; q < ARRAY_SIZE(fields); q++) {
8270 for (i = 0; i < max_fields[q]; i++) {
8271 field = fields[q][i];
8272 field_value = __vmcs_readl(field);
8273 vmcs12_write_any(&vmx->vcpu, field, field_value);
8274 }
8275 /*
8276 * Skip the VM-exit information fields if they are read-only.
8277 */
8278 if (!nested_cpu_has_vmwrite_any_field(&vmx->vcpu))
8279 break;
Abel Gordon16f5b902013-04-18 14:38:25 +03008280 }
8281
8282 vmcs_clear(shadow_vmcs);
8283 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02008284
8285 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03008286}
8287
Abel Gordonc3114422013-04-18 14:38:55 +03008288static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
8289{
Paolo Bonzini44900ba2017-12-13 12:58:02 +01008290 const u16 *fields[] = {
Mathias Krausec2bae892013-06-26 20:36:21 +02008291 shadow_read_write_fields,
8292 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03008293 };
Mathias Krausec2bae892013-06-26 20:36:21 +02008294 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03008295 max_shadow_read_write_fields,
8296 max_shadow_read_only_fields
8297 };
8298 int i, q;
8299 unsigned long field;
8300 u64 field_value = 0;
Jim Mattson355f4fb2016-10-28 08:29:39 -07008301 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Abel Gordonc3114422013-04-18 14:38:55 +03008302
8303 vmcs_load(shadow_vmcs);
8304
Mathias Krausec2bae892013-06-26 20:36:21 +02008305 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03008306 for (i = 0; i < max_fields[q]; i++) {
8307 field = fields[q][i];
8308 vmcs12_read_any(&vmx->vcpu, field, &field_value);
Paolo Bonzini44900ba2017-12-13 12:58:02 +01008309 __vmcs_writel(field, field_value);
Abel Gordonc3114422013-04-18 14:38:55 +03008310 }
8311 }
8312
8313 vmcs_clear(shadow_vmcs);
8314 vmcs_load(vmx->loaded_vmcs->vmcs);
8315}
8316
Nadav Har'El49f705c2011-05-25 23:08:30 +03008317/*
8318 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
8319 * used before) all generate the same failure when it is missing.
8320 */
8321static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
8322{
8323 struct vcpu_vmx *vmx = to_vmx(vcpu);
8324 if (vmx->nested.current_vmptr == -1ull) {
8325 nested_vmx_failInvalid(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008326 return 0;
8327 }
8328 return 1;
8329}
8330
8331static int handle_vmread(struct kvm_vcpu *vcpu)
8332{
8333 unsigned long field;
8334 u64 field_value;
8335 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8336 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
8337 gva_t gva = 0;
8338
Kyle Hueyeb277562016-11-29 12:40:39 -08008339 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03008340 return 1;
8341
Kyle Huey6affcbe2016-11-29 12:40:40 -08008342 if (!nested_vmx_check_vmcs12(vcpu))
8343 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08008344
Nadav Har'El49f705c2011-05-25 23:08:30 +03008345 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03008346 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03008347 /* Read the field, zero-extended to a u64 field_value */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008348 if (vmcs12_read_any(vcpu, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03008349 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008350 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008351 }
8352 /*
8353 * Now copy part of this value to register or memory, as requested.
8354 * Note that the number of bits actually copied is 32 or 64 depending
8355 * on the guest's mode (32 or 64 bit), not on the given field's length.
8356 */
8357 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03008358 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03008359 field_value);
8360 } else {
8361 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008362 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03008363 return 1;
Felix Wilhelm727ba742018-06-11 09:43:44 +02008364 /* _system ok, nested_vmx_check_permission has verified cpl=0 */
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02008365 kvm_write_guest_virt_system(vcpu, gva, &field_value,
8366 (is_long_mode(vcpu) ? 8 : 4), NULL);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008367 }
8368
8369 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008370 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008371}
8372
8373
8374static int handle_vmwrite(struct kvm_vcpu *vcpu)
8375{
8376 unsigned long field;
8377 gva_t gva;
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008378 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008379 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8380 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008381
Nadav Har'El49f705c2011-05-25 23:08:30 +03008382 /* The value to write might be 32 or 64 bits, depending on L1's long
8383 * mode, and eventually we need to write that into a field of several
8384 * possible lengths. The code below first zero-extends the value to 64
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08008385 * bit (field_value), and then copies only the appropriate number of
Nadav Har'El49f705c2011-05-25 23:08:30 +03008386 * bits into the vmcs12 field.
8387 */
8388 u64 field_value = 0;
8389 struct x86_exception e;
8390
Kyle Hueyeb277562016-11-29 12:40:39 -08008391 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03008392 return 1;
8393
Kyle Huey6affcbe2016-11-29 12:40:40 -08008394 if (!nested_vmx_check_vmcs12(vcpu))
8395 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08008396
Nadav Har'El49f705c2011-05-25 23:08:30 +03008397 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03008398 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008399 (((vmx_instruction_info) >> 3) & 0xf));
8400 else {
8401 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008402 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03008403 return 1;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02008404 if (kvm_read_guest_virt(vcpu, gva, &field_value,
8405 (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03008406 kvm_inject_page_fault(vcpu, &e);
8407 return 1;
8408 }
8409 }
8410
8411
Nadav Amit27e6fb52014-06-18 17:19:26 +03008412 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Jim Mattsonf4160e42018-05-29 09:11:33 -07008413 /*
8414 * If the vCPU supports "VMWRITE to any supported field in the
8415 * VMCS," then the "read-only" fields are actually read/write.
8416 */
8417 if (vmcs_field_readonly(field) &&
8418 !nested_cpu_has_vmwrite_any_field(vcpu)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03008419 nested_vmx_failValid(vcpu,
8420 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008421 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008422 }
8423
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008424 if (vmcs12_write_any(vcpu, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03008425 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008426 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008427 }
8428
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008429 switch (field) {
8430#define SHADOW_FIELD_RW(x) case x:
8431#include "vmx_shadow_fields.h"
8432 /*
8433 * The fields that can be updated by L1 without a vmexit are
8434 * always updated in the vmcs02, the others go down the slow
8435 * path of prepare_vmcs02.
8436 */
8437 break;
8438 default:
8439 vmx->nested.dirty_vmcs12 = true;
8440 break;
8441 }
8442
Nadav Har'El49f705c2011-05-25 23:08:30 +03008443 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008444 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008445}
8446
Jim Mattsona8bc2842016-11-30 12:03:44 -08008447static void set_current_vmptr(struct vcpu_vmx *vmx, gpa_t vmptr)
8448{
8449 vmx->nested.current_vmptr = vmptr;
8450 if (enable_shadow_vmcs) {
8451 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
8452 SECONDARY_EXEC_SHADOW_VMCS);
8453 vmcs_write64(VMCS_LINK_POINTER,
8454 __pa(vmx->vmcs01.shadow_vmcs));
8455 vmx->nested.sync_shadow_vmcs = true;
8456 }
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008457 vmx->nested.dirty_vmcs12 = true;
Jim Mattsona8bc2842016-11-30 12:03:44 -08008458}
8459
Nadav Har'El63846662011-05-25 23:07:29 +03008460/* Emulate the VMPTRLD instruction */
8461static int handle_vmptrld(struct kvm_vcpu *vcpu)
8462{
8463 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03008464 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03008465
8466 if (!nested_vmx_check_permission(vcpu))
8467 return 1;
8468
Radim Krčmářcbf71272017-05-19 15:48:51 +02008469 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03008470 return 1;
8471
Radim Krčmářcbf71272017-05-19 15:48:51 +02008472 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
8473 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS);
8474 return kvm_skip_emulated_instruction(vcpu);
8475 }
8476
8477 if (vmptr == vmx->nested.vmxon_ptr) {
8478 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_VMXON_POINTER);
8479 return kvm_skip_emulated_instruction(vcpu);
8480 }
8481
Nadav Har'El63846662011-05-25 23:07:29 +03008482 if (vmx->nested.current_vmptr != vmptr) {
8483 struct vmcs12 *new_vmcs12;
8484 struct page *page;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02008485 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
8486 if (is_error_page(page)) {
Nadav Har'El63846662011-05-25 23:07:29 +03008487 nested_vmx_failInvalid(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008488 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03008489 }
8490 new_vmcs12 = kmap(page);
8491 if (new_vmcs12->revision_id != VMCS12_REVISION) {
8492 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008493 kvm_release_page_clean(page);
Nadav Har'El63846662011-05-25 23:07:29 +03008494 nested_vmx_failValid(vcpu,
8495 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008496 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03008497 }
Nadav Har'El63846662011-05-25 23:07:29 +03008498
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008499 nested_release_vmcs12(vmx);
David Matlack4f2777b2016-07-13 17:16:37 -07008500 /*
8501 * Load VMCS12 from guest memory since it is not already
8502 * cached.
8503 */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02008504 memcpy(vmx->nested.cached_vmcs12, new_vmcs12, VMCS12_SIZE);
8505 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008506 kvm_release_page_clean(page);
Paolo Bonzini9f744c52017-07-27 15:54:46 +02008507
Jim Mattsona8bc2842016-11-30 12:03:44 -08008508 set_current_vmptr(vmx, vmptr);
Nadav Har'El63846662011-05-25 23:07:29 +03008509 }
8510
8511 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008512 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03008513}
8514
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008515/* Emulate the VMPTRST instruction */
8516static int handle_vmptrst(struct kvm_vcpu *vcpu)
8517{
8518 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8519 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
8520 gva_t vmcs_gva;
8521 struct x86_exception e;
8522
8523 if (!nested_vmx_check_permission(vcpu))
8524 return 1;
8525
8526 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008527 vmx_instruction_info, true, &vmcs_gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008528 return 1;
Felix Wilhelm727ba742018-06-11 09:43:44 +02008529 /* *_system ok, nested_vmx_check_permission has verified cpl=0 */
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02008530 if (kvm_write_guest_virt_system(vcpu, vmcs_gva,
8531 (void *)&to_vmx(vcpu)->nested.current_vmptr,
8532 sizeof(u64), &e)) {
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008533 kvm_inject_page_fault(vcpu, &e);
8534 return 1;
8535 }
8536 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008537 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008538}
8539
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008540/* Emulate the INVEPT instruction */
8541static int handle_invept(struct kvm_vcpu *vcpu)
8542{
Wincy Vanb9c237b2015-02-03 23:56:30 +08008543 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008544 u32 vmx_instruction_info, types;
8545 unsigned long type;
8546 gva_t gva;
8547 struct x86_exception e;
8548 struct {
8549 u64 eptp, gpa;
8550 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008551
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008552 if (!(vmx->nested.msrs.secondary_ctls_high &
Wincy Vanb9c237b2015-02-03 23:56:30 +08008553 SECONDARY_EXEC_ENABLE_EPT) ||
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008554 !(vmx->nested.msrs.ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008555 kvm_queue_exception(vcpu, UD_VECTOR);
8556 return 1;
8557 }
8558
8559 if (!nested_vmx_check_permission(vcpu))
8560 return 1;
8561
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008562 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03008563 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008564
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008565 types = (vmx->nested.msrs.ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008566
Jim Mattson85c856b2016-10-26 08:38:38 -07008567 if (type >= 32 || !(types & (1 << type))) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008568 nested_vmx_failValid(vcpu,
8569 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008570 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008571 }
8572
8573 /* According to the Intel VMX instruction reference, the memory
8574 * operand is read even if it isn't needed (e.g., for type==global)
8575 */
8576 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008577 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008578 return 1;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02008579 if (kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008580 kvm_inject_page_fault(vcpu, &e);
8581 return 1;
8582 }
8583
8584 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008585 case VMX_EPT_EXTENT_GLOBAL:
Bandan Das45e11812016-08-02 16:32:36 -04008586 /*
8587 * TODO: track mappings and invalidate
8588 * single context requests appropriately
8589 */
8590 case VMX_EPT_EXTENT_CONTEXT:
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008591 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04008592 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008593 nested_vmx_succeed(vcpu);
8594 break;
8595 default:
8596 BUG_ON(1);
8597 break;
8598 }
8599
Kyle Huey6affcbe2016-11-29 12:40:40 -08008600 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008601}
8602
Petr Matouseka642fc32014-09-23 20:22:30 +02008603static int handle_invvpid(struct kvm_vcpu *vcpu)
8604{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008605 struct vcpu_vmx *vmx = to_vmx(vcpu);
8606 u32 vmx_instruction_info;
8607 unsigned long type, types;
8608 gva_t gva;
8609 struct x86_exception e;
Jim Mattson40352602017-06-28 09:37:37 -07008610 struct {
8611 u64 vpid;
8612 u64 gla;
8613 } operand;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008614
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008615 if (!(vmx->nested.msrs.secondary_ctls_high &
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008616 SECONDARY_EXEC_ENABLE_VPID) ||
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008617 !(vmx->nested.msrs.vpid_caps & VMX_VPID_INVVPID_BIT)) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008618 kvm_queue_exception(vcpu, UD_VECTOR);
8619 return 1;
8620 }
8621
8622 if (!nested_vmx_check_permission(vcpu))
8623 return 1;
8624
8625 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
8626 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
8627
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008628 types = (vmx->nested.msrs.vpid_caps &
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008629 VMX_VPID_EXTENT_SUPPORTED_MASK) >> 8;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008630
Jim Mattson85c856b2016-10-26 08:38:38 -07008631 if (type >= 32 || !(types & (1 << type))) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008632 nested_vmx_failValid(vcpu,
8633 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008634 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008635 }
8636
8637 /* according to the intel vmx instruction reference, the memory
8638 * operand is read even if it isn't needed (e.g., for type==global)
8639 */
8640 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
8641 vmx_instruction_info, false, &gva))
8642 return 1;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02008643 if (kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e)) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008644 kvm_inject_page_fault(vcpu, &e);
8645 return 1;
8646 }
Jim Mattson40352602017-06-28 09:37:37 -07008647 if (operand.vpid >> 16) {
8648 nested_vmx_failValid(vcpu,
8649 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
8650 return kvm_skip_emulated_instruction(vcpu);
8651 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008652
8653 switch (type) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008654 case VMX_VPID_EXTENT_INDIVIDUAL_ADDR:
Liran Aloncd9a4912018-05-22 17:16:15 +03008655 if (!operand.vpid ||
8656 is_noncanonical_address(operand.gla, vcpu)) {
Jim Mattson40352602017-06-28 09:37:37 -07008657 nested_vmx_failValid(vcpu,
8658 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
8659 return kvm_skip_emulated_instruction(vcpu);
8660 }
Liran Aloncd9a4912018-05-22 17:16:15 +03008661 if (cpu_has_vmx_invvpid_individual_addr() &&
8662 vmx->nested.vpid02) {
8663 __invvpid(VMX_VPID_EXTENT_INDIVIDUAL_ADDR,
8664 vmx->nested.vpid02, operand.gla);
8665 } else
8666 __vmx_flush_tlb(vcpu, vmx->nested.vpid02, true);
8667 break;
Paolo Bonzinief697a72016-03-18 16:58:38 +01008668 case VMX_VPID_EXTENT_SINGLE_CONTEXT:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008669 case VMX_VPID_EXTENT_SINGLE_NON_GLOBAL:
Jim Mattson40352602017-06-28 09:37:37 -07008670 if (!operand.vpid) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008671 nested_vmx_failValid(vcpu,
8672 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008673 return kvm_skip_emulated_instruction(vcpu);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008674 }
Liran Aloncd9a4912018-05-22 17:16:15 +03008675 __vmx_flush_tlb(vcpu, vmx->nested.vpid02, true);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008676 break;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008677 case VMX_VPID_EXTENT_ALL_CONTEXT:
Liran Aloncd9a4912018-05-22 17:16:15 +03008678 __vmx_flush_tlb(vcpu, vmx->nested.vpid02, true);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008679 break;
8680 default:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008681 WARN_ON_ONCE(1);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008682 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008683 }
8684
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008685 nested_vmx_succeed(vcpu);
8686
Kyle Huey6affcbe2016-11-29 12:40:40 -08008687 return kvm_skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02008688}
8689
Kai Huang843e4332015-01-28 10:54:28 +08008690static int handle_pml_full(struct kvm_vcpu *vcpu)
8691{
8692 unsigned long exit_qualification;
8693
8694 trace_kvm_pml_full(vcpu->vcpu_id);
8695
8696 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8697
8698 /*
8699 * PML buffer FULL happened while executing iret from NMI,
8700 * "blocked by NMI" bit has to be set before next VM entry.
8701 */
8702 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01008703 enable_vnmi &&
Kai Huang843e4332015-01-28 10:54:28 +08008704 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
8705 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
8706 GUEST_INTR_STATE_NMI);
8707
8708 /*
8709 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
8710 * here.., and there's no userspace involvement needed for PML.
8711 */
8712 return 1;
8713}
8714
Yunhong Jiang64672c92016-06-13 14:19:59 -07008715static int handle_preemption_timer(struct kvm_vcpu *vcpu)
8716{
8717 kvm_lapic_expired_hv_timer(vcpu);
8718 return 1;
8719}
8720
Bandan Das41ab9372017-08-03 15:54:43 -04008721static bool valid_ept_address(struct kvm_vcpu *vcpu, u64 address)
8722{
8723 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das41ab9372017-08-03 15:54:43 -04008724 int maxphyaddr = cpuid_maxphyaddr(vcpu);
8725
8726 /* Check for memory type validity */
David Hildenbrandbb97a012017-08-10 23:15:28 +02008727 switch (address & VMX_EPTP_MT_MASK) {
8728 case VMX_EPTP_MT_UC:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008729 if (!(vmx->nested.msrs.ept_caps & VMX_EPTP_UC_BIT))
Bandan Das41ab9372017-08-03 15:54:43 -04008730 return false;
8731 break;
David Hildenbrandbb97a012017-08-10 23:15:28 +02008732 case VMX_EPTP_MT_WB:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008733 if (!(vmx->nested.msrs.ept_caps & VMX_EPTP_WB_BIT))
Bandan Das41ab9372017-08-03 15:54:43 -04008734 return false;
8735 break;
8736 default:
8737 return false;
8738 }
8739
David Hildenbrandbb97a012017-08-10 23:15:28 +02008740 /* only 4 levels page-walk length are valid */
8741 if ((address & VMX_EPTP_PWL_MASK) != VMX_EPTP_PWL_4)
Bandan Das41ab9372017-08-03 15:54:43 -04008742 return false;
8743
8744 /* Reserved bits should not be set */
8745 if (address >> maxphyaddr || ((address >> 7) & 0x1f))
8746 return false;
8747
8748 /* AD, if set, should be supported */
David Hildenbrandbb97a012017-08-10 23:15:28 +02008749 if (address & VMX_EPTP_AD_ENABLE_BIT) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008750 if (!(vmx->nested.msrs.ept_caps & VMX_EPT_AD_BIT))
Bandan Das41ab9372017-08-03 15:54:43 -04008751 return false;
8752 }
8753
8754 return true;
8755}
8756
8757static int nested_vmx_eptp_switching(struct kvm_vcpu *vcpu,
8758 struct vmcs12 *vmcs12)
8759{
8760 u32 index = vcpu->arch.regs[VCPU_REGS_RCX];
8761 u64 address;
8762 bool accessed_dirty;
8763 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
8764
8765 if (!nested_cpu_has_eptp_switching(vmcs12) ||
8766 !nested_cpu_has_ept(vmcs12))
8767 return 1;
8768
8769 if (index >= VMFUNC_EPTP_ENTRIES)
8770 return 1;
8771
8772
8773 if (kvm_vcpu_read_guest_page(vcpu, vmcs12->eptp_list_address >> PAGE_SHIFT,
8774 &address, index * 8, 8))
8775 return 1;
8776
David Hildenbrandbb97a012017-08-10 23:15:28 +02008777 accessed_dirty = !!(address & VMX_EPTP_AD_ENABLE_BIT);
Bandan Das41ab9372017-08-03 15:54:43 -04008778
8779 /*
8780 * If the (L2) guest does a vmfunc to the currently
8781 * active ept pointer, we don't have to do anything else
8782 */
8783 if (vmcs12->ept_pointer != address) {
8784 if (!valid_ept_address(vcpu, address))
8785 return 1;
8786
8787 kvm_mmu_unload(vcpu);
8788 mmu->ept_ad = accessed_dirty;
8789 mmu->base_role.ad_disabled = !accessed_dirty;
8790 vmcs12->ept_pointer = address;
8791 /*
8792 * TODO: Check what's the correct approach in case
8793 * mmu reload fails. Currently, we just let the next
8794 * reload potentially fail
8795 */
8796 kvm_mmu_reload(vcpu);
8797 }
8798
8799 return 0;
8800}
8801
Bandan Das2a499e42017-08-03 15:54:41 -04008802static int handle_vmfunc(struct kvm_vcpu *vcpu)
8803{
Bandan Das27c42a12017-08-03 15:54:42 -04008804 struct vcpu_vmx *vmx = to_vmx(vcpu);
8805 struct vmcs12 *vmcs12;
8806 u32 function = vcpu->arch.regs[VCPU_REGS_RAX];
8807
8808 /*
8809 * VMFUNC is only supported for nested guests, but we always enable the
8810 * secondary control for simplicity; for non-nested mode, fake that we
8811 * didn't by injecting #UD.
8812 */
8813 if (!is_guest_mode(vcpu)) {
8814 kvm_queue_exception(vcpu, UD_VECTOR);
8815 return 1;
8816 }
8817
8818 vmcs12 = get_vmcs12(vcpu);
8819 if ((vmcs12->vm_function_control & (1 << function)) == 0)
8820 goto fail;
Bandan Das41ab9372017-08-03 15:54:43 -04008821
8822 switch (function) {
8823 case 0:
8824 if (nested_vmx_eptp_switching(vcpu, vmcs12))
8825 goto fail;
8826 break;
8827 default:
8828 goto fail;
8829 }
8830 return kvm_skip_emulated_instruction(vcpu);
Bandan Das27c42a12017-08-03 15:54:42 -04008831
8832fail:
8833 nested_vmx_vmexit(vcpu, vmx->exit_reason,
8834 vmcs_read32(VM_EXIT_INTR_INFO),
8835 vmcs_readl(EXIT_QUALIFICATION));
Bandan Das2a499e42017-08-03 15:54:41 -04008836 return 1;
8837}
8838
Nadav Har'El0140cae2011-05-25 23:06:28 +03008839/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08008840 * The exit handlers return 1 if the exit was handled fully and guest execution
8841 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
8842 * to be done to userspace and return 0.
8843 */
Mathias Krause772e0312012-08-30 01:30:19 +02008844static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08008845 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
8846 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08008847 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08008848 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008849 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008850 [EXIT_REASON_CR_ACCESS] = handle_cr,
8851 [EXIT_REASON_DR_ACCESS] = handle_dr,
8852 [EXIT_REASON_CPUID] = handle_cpuid,
8853 [EXIT_REASON_MSR_READ] = handle_rdmsr,
8854 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
8855 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
8856 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02008857 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03008858 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02008859 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02008860 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03008861 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008862 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03008863 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008864 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008865 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008866 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008867 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008868 [EXIT_REASON_VMOFF] = handle_vmoff,
8869 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08008870 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
8871 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08008872 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08008873 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02008874 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08008875 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02008876 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08008877 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Paolo Bonzini0367f202016-07-12 10:44:55 +02008878 [EXIT_REASON_GDTR_IDTR] = handle_desc,
8879 [EXIT_REASON_LDTR_TR] = handle_desc,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03008880 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
8881 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008882 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008883 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008884 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008885 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008886 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02008887 [EXIT_REASON_INVVPID] = handle_invvpid,
Jim Mattson45ec3682017-08-23 16:32:04 -07008888 [EXIT_REASON_RDRAND] = handle_invalid_op,
Jim Mattson75f4fc82017-08-23 16:32:03 -07008889 [EXIT_REASON_RDSEED] = handle_invalid_op,
Wanpeng Lif53cd632014-12-02 19:14:58 +08008890 [EXIT_REASON_XSAVES] = handle_xsaves,
8891 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08008892 [EXIT_REASON_PML_FULL] = handle_pml_full,
Bandan Das2a499e42017-08-03 15:54:41 -04008893 [EXIT_REASON_VMFUNC] = handle_vmfunc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07008894 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008895};
8896
8897static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04008898 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008899
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008900static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
8901 struct vmcs12 *vmcs12)
8902{
8903 unsigned long exit_qualification;
8904 gpa_t bitmap, last_bitmap;
8905 unsigned int port;
8906 int size;
8907 u8 b;
8908
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008909 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05008910 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008911
8912 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8913
8914 port = exit_qualification >> 16;
8915 size = (exit_qualification & 7) + 1;
8916
8917 last_bitmap = (gpa_t)-1;
8918 b = -1;
8919
8920 while (size > 0) {
8921 if (port < 0x8000)
8922 bitmap = vmcs12->io_bitmap_a;
8923 else if (port < 0x10000)
8924 bitmap = vmcs12->io_bitmap_b;
8925 else
Joe Perches1d804d02015-03-30 16:46:09 -07008926 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008927 bitmap += (port & 0x7fff) / 8;
8928
8929 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008930 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008931 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008932 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07008933 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008934
8935 port++;
8936 size--;
8937 last_bitmap = bitmap;
8938 }
8939
Joe Perches1d804d02015-03-30 16:46:09 -07008940 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008941}
8942
Nadav Har'El644d7112011-05-25 23:12:35 +03008943/*
8944 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
8945 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
8946 * disinterest in the current event (read or write a specific MSR) by using an
8947 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
8948 */
8949static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
8950 struct vmcs12 *vmcs12, u32 exit_reason)
8951{
8952 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
8953 gpa_t bitmap;
8954
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01008955 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07008956 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008957
8958 /*
8959 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
8960 * for the four combinations of read/write and low/high MSR numbers.
8961 * First we need to figure out which of the four to use:
8962 */
8963 bitmap = vmcs12->msr_bitmap;
8964 if (exit_reason == EXIT_REASON_MSR_WRITE)
8965 bitmap += 2048;
8966 if (msr_index >= 0xc0000000) {
8967 msr_index -= 0xc0000000;
8968 bitmap += 1024;
8969 }
8970
8971 /* Then read the msr_index'th bit from this bitmap: */
8972 if (msr_index < 1024*8) {
8973 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008974 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008975 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008976 return 1 & (b >> (msr_index & 7));
8977 } else
Joe Perches1d804d02015-03-30 16:46:09 -07008978 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03008979}
8980
8981/*
8982 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
8983 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
8984 * intercept (via guest_host_mask etc.) the current event.
8985 */
8986static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
8987 struct vmcs12 *vmcs12)
8988{
8989 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8990 int cr = exit_qualification & 15;
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008991 int reg;
8992 unsigned long val;
Nadav Har'El644d7112011-05-25 23:12:35 +03008993
8994 switch ((exit_qualification >> 4) & 3) {
8995 case 0: /* mov to cr */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008996 reg = (exit_qualification >> 8) & 15;
8997 val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03008998 switch (cr) {
8999 case 0:
9000 if (vmcs12->cr0_guest_host_mask &
9001 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07009002 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009003 break;
9004 case 3:
9005 if ((vmcs12->cr3_target_count >= 1 &&
9006 vmcs12->cr3_target_value0 == val) ||
9007 (vmcs12->cr3_target_count >= 2 &&
9008 vmcs12->cr3_target_value1 == val) ||
9009 (vmcs12->cr3_target_count >= 3 &&
9010 vmcs12->cr3_target_value2 == val) ||
9011 (vmcs12->cr3_target_count >= 4 &&
9012 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07009013 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009014 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07009015 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009016 break;
9017 case 4:
9018 if (vmcs12->cr4_guest_host_mask &
9019 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07009020 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009021 break;
9022 case 8:
9023 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07009024 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009025 break;
9026 }
9027 break;
9028 case 2: /* clts */
9029 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
9030 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07009031 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009032 break;
9033 case 1: /* mov from cr */
9034 switch (cr) {
9035 case 3:
9036 if (vmcs12->cpu_based_vm_exec_control &
9037 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07009038 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009039 break;
9040 case 8:
9041 if (vmcs12->cpu_based_vm_exec_control &
9042 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07009043 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009044 break;
9045 }
9046 break;
9047 case 3: /* lmsw */
9048 /*
9049 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
9050 * cr0. Other attempted changes are ignored, with no exit.
9051 */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02009052 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Nadav Har'El644d7112011-05-25 23:12:35 +03009053 if (vmcs12->cr0_guest_host_mask & 0xe &
9054 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07009055 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009056 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
9057 !(vmcs12->cr0_read_shadow & 0x1) &&
9058 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07009059 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009060 break;
9061 }
Joe Perches1d804d02015-03-30 16:46:09 -07009062 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009063}
9064
9065/*
9066 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
9067 * should handle it ourselves in L0 (and then continue L2). Only call this
9068 * when in is_guest_mode (L2).
9069 */
Paolo Bonzini7313c692017-07-27 10:31:25 +02009070static bool nested_vmx_exit_reflected(struct kvm_vcpu *vcpu, u32 exit_reason)
Nadav Har'El644d7112011-05-25 23:12:35 +03009071{
Nadav Har'El644d7112011-05-25 23:12:35 +03009072 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9073 struct vcpu_vmx *vmx = to_vmx(vcpu);
9074 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9075
Jim Mattson4f350c62017-09-14 16:31:44 -07009076 if (vmx->nested.nested_run_pending)
9077 return false;
9078
9079 if (unlikely(vmx->fail)) {
9080 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
9081 vmcs_read32(VM_INSTRUCTION_ERROR));
9082 return true;
9083 }
Jan Kiszka542060e2014-01-04 18:47:21 +01009084
David Matlackc9f04402017-08-01 14:00:40 -07009085 /*
9086 * The host physical addresses of some pages of guest memory
Jim Mattsonde3a0022017-11-27 17:22:25 -06009087 * are loaded into the vmcs02 (e.g. vmcs12's Virtual APIC
9088 * Page). The CPU may write to these pages via their host
9089 * physical address while L2 is running, bypassing any
9090 * address-translation-based dirty tracking (e.g. EPT write
9091 * protection).
David Matlackc9f04402017-08-01 14:00:40 -07009092 *
9093 * Mark them dirty on every exit from L2 to prevent them from
9094 * getting out of sync with dirty tracking.
9095 */
9096 nested_mark_vmcs12_pages_dirty(vcpu);
9097
Jim Mattson4f350c62017-09-14 16:31:44 -07009098 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
9099 vmcs_readl(EXIT_QUALIFICATION),
9100 vmx->idt_vectoring_info,
9101 intr_info,
9102 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
9103 KVM_ISA_VMX);
Nadav Har'El644d7112011-05-25 23:12:35 +03009104
9105 switch (exit_reason) {
9106 case EXIT_REASON_EXCEPTION_NMI:
Jim Mattsonef85b672016-12-12 11:01:37 -08009107 if (is_nmi(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07009108 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009109 else if (is_page_fault(intr_info))
Wanpeng Li52a5c152017-07-13 18:30:42 -07009110 return !vmx->vcpu.arch.apf.host_apf_reason && enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01009111 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01009112 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07009113 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01009114 else if (is_debug(intr_info) &&
9115 vcpu->guest_debug &
9116 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
9117 return false;
9118 else if (is_breakpoint(intr_info) &&
9119 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
9120 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009121 return vmcs12->exception_bitmap &
9122 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
9123 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07009124 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009125 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07009126 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009127 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02009128 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03009129 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02009130 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03009131 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07009132 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009133 case EXIT_REASON_CPUID:
Joe Perches1d804d02015-03-30 16:46:09 -07009134 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009135 case EXIT_REASON_HLT:
9136 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
9137 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07009138 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009139 case EXIT_REASON_INVLPG:
9140 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
9141 case EXIT_REASON_RDPMC:
9142 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02009143 case EXIT_REASON_RDRAND:
David Hildenbrand736fdf72017-08-24 20:51:37 +02009144 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDRAND_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02009145 case EXIT_REASON_RDSEED:
David Hildenbrand736fdf72017-08-24 20:51:37 +02009146 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDSEED_EXITING);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01009147 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03009148 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
9149 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
9150 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
9151 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
9152 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
9153 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02009154 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03009155 /*
9156 * VMX instructions trap unconditionally. This allows L1 to
9157 * emulate them for its L2 guest, i.e., allows 3-level nesting!
9158 */
Joe Perches1d804d02015-03-30 16:46:09 -07009159 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009160 case EXIT_REASON_CR_ACCESS:
9161 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
9162 case EXIT_REASON_DR_ACCESS:
9163 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
9164 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009165 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Paolo Bonzini1b073042016-10-25 16:06:30 +02009166 case EXIT_REASON_GDTR_IDTR: case EXIT_REASON_LDTR_TR:
9167 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC);
Nadav Har'El644d7112011-05-25 23:12:35 +03009168 case EXIT_REASON_MSR_READ:
9169 case EXIT_REASON_MSR_WRITE:
9170 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
9171 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07009172 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009173 case EXIT_REASON_MWAIT_INSTRUCTION:
9174 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03009175 case EXIT_REASON_MONITOR_TRAP_FLAG:
9176 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03009177 case EXIT_REASON_MONITOR_INSTRUCTION:
9178 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
9179 case EXIT_REASON_PAUSE_INSTRUCTION:
9180 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
9181 nested_cpu_has2(vmcs12,
9182 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
9183 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07009184 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009185 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009186 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03009187 case EXIT_REASON_APIC_ACCESS:
Wincy Van82f0dd42015-02-03 23:57:18 +08009188 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08009189 case EXIT_REASON_EOI_INDUCED:
Jim Mattsonab5df312018-05-09 17:02:03 -04009190 /*
9191 * The controls for "virtualize APIC accesses," "APIC-
9192 * register virtualization," and "virtual-interrupt
9193 * delivery" only come from vmcs12.
9194 */
Joe Perches1d804d02015-03-30 16:46:09 -07009195 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009196 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03009197 /*
9198 * L0 always deals with the EPT violation. If nested EPT is
9199 * used, and the nested mmu code discovers that the address is
9200 * missing in the guest EPT table (EPT12), the EPT violation
9201 * will be injected with nested_ept_inject_page_fault()
9202 */
Joe Perches1d804d02015-03-30 16:46:09 -07009203 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009204 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03009205 /*
9206 * L2 never uses directly L1's EPT, but rather L0's own EPT
9207 * table (shadow on EPT) or a merged EPT table that L0 built
9208 * (EPT on EPT). So any problems with the structure of the
9209 * table is L0's fault.
9210 */
Joe Perches1d804d02015-03-30 16:46:09 -07009211 return false;
Paolo Bonzini90a2db62017-07-27 13:22:13 +02009212 case EXIT_REASON_INVPCID:
9213 return
9214 nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_INVPCID) &&
9215 nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
Nadav Har'El644d7112011-05-25 23:12:35 +03009216 case EXIT_REASON_WBINVD:
9217 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
9218 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07009219 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08009220 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
9221 /*
9222 * This should never happen, since it is not possible to
9223 * set XSS to a non-zero value---neither in L1 nor in L2.
9224 * If if it were, XSS would have to be checked against
9225 * the XSS exit bitmap in vmcs12.
9226 */
9227 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li55123e32016-07-06 18:29:58 +08009228 case EXIT_REASON_PREEMPTION_TIMER:
9229 return false;
Ladi Prosekab007cc2017-03-31 10:19:26 +02009230 case EXIT_REASON_PML_FULL:
Bandan Das03efce62017-05-05 15:25:15 -04009231 /* We emulate PML support to L1. */
Ladi Prosekab007cc2017-03-31 10:19:26 +02009232 return false;
Bandan Das2a499e42017-08-03 15:54:41 -04009233 case EXIT_REASON_VMFUNC:
9234 /* VM functions are emulated through L2->L0 vmexits. */
9235 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009236 default:
Joe Perches1d804d02015-03-30 16:46:09 -07009237 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009238 }
9239}
9240
Paolo Bonzini7313c692017-07-27 10:31:25 +02009241static int nested_vmx_reflect_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason)
9242{
9243 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9244
9245 /*
9246 * At this point, the exit interruption info in exit_intr_info
9247 * is only valid for EXCEPTION_NMI exits. For EXTERNAL_INTERRUPT
9248 * we need to query the in-kernel LAPIC.
9249 */
9250 WARN_ON(exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT);
9251 if ((exit_intr_info &
9252 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
9253 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) {
9254 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9255 vmcs12->vm_exit_intr_error_code =
9256 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
9257 }
9258
9259 nested_vmx_vmexit(vcpu, exit_reason, exit_intr_info,
9260 vmcs_readl(EXIT_QUALIFICATION));
9261 return 1;
9262}
9263
Avi Kivity586f9602010-11-18 13:09:54 +02009264static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
9265{
9266 *info1 = vmcs_readl(EXIT_QUALIFICATION);
9267 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
9268}
9269
Kai Huanga3eaa862015-11-04 13:46:05 +08009270static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08009271{
Kai Huanga3eaa862015-11-04 13:46:05 +08009272 if (vmx->pml_pg) {
9273 __free_page(vmx->pml_pg);
9274 vmx->pml_pg = NULL;
9275 }
Kai Huang843e4332015-01-28 10:54:28 +08009276}
9277
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009278static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08009279{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009280 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08009281 u64 *pml_buf;
9282 u16 pml_idx;
9283
9284 pml_idx = vmcs_read16(GUEST_PML_INDEX);
9285
9286 /* Do nothing if PML buffer is empty */
9287 if (pml_idx == (PML_ENTITY_NUM - 1))
9288 return;
9289
9290 /* PML index always points to next available PML buffer entity */
9291 if (pml_idx >= PML_ENTITY_NUM)
9292 pml_idx = 0;
9293 else
9294 pml_idx++;
9295
9296 pml_buf = page_address(vmx->pml_pg);
9297 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
9298 u64 gpa;
9299
9300 gpa = pml_buf[pml_idx];
9301 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009302 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08009303 }
9304
9305 /* reset PML index */
9306 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
9307}
9308
9309/*
9310 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
9311 * Called before reporting dirty_bitmap to userspace.
9312 */
9313static void kvm_flush_pml_buffers(struct kvm *kvm)
9314{
9315 int i;
9316 struct kvm_vcpu *vcpu;
9317 /*
9318 * We only need to kick vcpu out of guest mode here, as PML buffer
9319 * is flushed at beginning of all VMEXITs, and it's obvious that only
9320 * vcpus running in guest are possible to have unflushed GPAs in PML
9321 * buffer.
9322 */
9323 kvm_for_each_vcpu(i, vcpu, kvm)
9324 kvm_vcpu_kick(vcpu);
9325}
9326
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009327static void vmx_dump_sel(char *name, uint32_t sel)
9328{
9329 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05009330 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009331 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
9332 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
9333 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
9334}
9335
9336static void vmx_dump_dtsel(char *name, uint32_t limit)
9337{
9338 pr_err("%s limit=0x%08x, base=0x%016lx\n",
9339 name, vmcs_read32(limit),
9340 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
9341}
9342
9343static void dump_vmcs(void)
9344{
9345 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
9346 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
9347 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
9348 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
9349 u32 secondary_exec_control = 0;
9350 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01009351 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009352 int i, n;
9353
9354 if (cpu_has_secondary_exec_ctrls())
9355 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
9356
9357 pr_err("*** Guest State ***\n");
9358 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
9359 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
9360 vmcs_readl(CR0_GUEST_HOST_MASK));
9361 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
9362 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
9363 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
9364 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
9365 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
9366 {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009367 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
9368 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
9369 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
9370 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009371 }
9372 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
9373 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
9374 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
9375 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
9376 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
9377 vmcs_readl(GUEST_SYSENTER_ESP),
9378 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
9379 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
9380 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
9381 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
9382 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
9383 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
9384 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
9385 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
9386 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
9387 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
9388 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
9389 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
9390 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009391 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
9392 efer, vmcs_read64(GUEST_IA32_PAT));
9393 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
9394 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009395 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009396 if (cpu_has_load_perf_global_ctrl &&
9397 vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009398 pr_err("PerfGlobCtl = 0x%016llx\n",
9399 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009400 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009401 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009402 pr_err("Interruptibility = %08x ActivityState = %08x\n",
9403 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
9404 vmcs_read32(GUEST_ACTIVITY_STATE));
9405 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
9406 pr_err("InterruptStatus = %04x\n",
9407 vmcs_read16(GUEST_INTR_STATUS));
9408
9409 pr_err("*** Host State ***\n");
9410 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
9411 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
9412 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
9413 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
9414 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
9415 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
9416 vmcs_read16(HOST_TR_SELECTOR));
9417 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
9418 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
9419 vmcs_readl(HOST_TR_BASE));
9420 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
9421 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
9422 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
9423 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
9424 vmcs_readl(HOST_CR4));
9425 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
9426 vmcs_readl(HOST_IA32_SYSENTER_ESP),
9427 vmcs_read32(HOST_IA32_SYSENTER_CS),
9428 vmcs_readl(HOST_IA32_SYSENTER_EIP));
9429 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009430 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
9431 vmcs_read64(HOST_IA32_EFER),
9432 vmcs_read64(HOST_IA32_PAT));
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009433 if (cpu_has_load_perf_global_ctrl &&
9434 vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009435 pr_err("PerfGlobCtl = 0x%016llx\n",
9436 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009437
9438 pr_err("*** Control State ***\n");
9439 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
9440 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
9441 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
9442 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
9443 vmcs_read32(EXCEPTION_BITMAP),
9444 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
9445 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
9446 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
9447 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
9448 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
9449 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
9450 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
9451 vmcs_read32(VM_EXIT_INTR_INFO),
9452 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
9453 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
9454 pr_err(" reason=%08x qualification=%016lx\n",
9455 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
9456 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
9457 vmcs_read32(IDT_VECTORING_INFO_FIELD),
9458 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009459 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08009460 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009461 pr_err("TSC Multiplier = 0x%016llx\n",
9462 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009463 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
9464 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
9465 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
9466 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
9467 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009468 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009469 n = vmcs_read32(CR3_TARGET_COUNT);
9470 for (i = 0; i + 1 < n; i += 4)
9471 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
9472 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
9473 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
9474 if (i < n)
9475 pr_err("CR3 target%u=%016lx\n",
9476 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
9477 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
9478 pr_err("PLE Gap=%08x Window=%08x\n",
9479 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
9480 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
9481 pr_err("Virtual processor ID = 0x%04x\n",
9482 vmcs_read16(VIRTUAL_PROCESSOR_ID));
9483}
9484
Avi Kivity6aa8b732006-12-10 02:21:36 -08009485/*
9486 * The guest has exited. See if we can fix it or if we need userspace
9487 * assistance.
9488 */
Avi Kivity851ba692009-08-24 11:10:17 +03009489static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009490{
Avi Kivity29bd8a72007-09-10 17:27:03 +03009491 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08009492 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02009493 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03009494
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01009495 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
9496
Kai Huang843e4332015-01-28 10:54:28 +08009497 /*
9498 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
9499 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
9500 * querying dirty_bitmap, we only need to kick all vcpus out of guest
9501 * mode as if vcpus is in root mode, the PML buffer must has been
9502 * flushed already.
9503 */
9504 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009505 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08009506
Mohammed Gamal80ced182009-09-01 12:48:18 +02009507 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02009508 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02009509 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01009510
Paolo Bonzini7313c692017-07-27 10:31:25 +02009511 if (is_guest_mode(vcpu) && nested_vmx_exit_reflected(vcpu, exit_reason))
9512 return nested_vmx_reflect_vmexit(vcpu, exit_reason);
Nadav Har'El644d7112011-05-25 23:12:35 +03009513
Mohammed Gamal51207022010-05-31 22:40:54 +03009514 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009515 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03009516 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
9517 vcpu->run->fail_entry.hardware_entry_failure_reason
9518 = exit_reason;
9519 return 0;
9520 }
9521
Avi Kivity29bd8a72007-09-10 17:27:03 +03009522 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03009523 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
9524 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03009525 = vmcs_read32(VM_INSTRUCTION_ERROR);
9526 return 0;
9527 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08009528
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08009529 /*
9530 * Note:
9531 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
9532 * delivery event since it indicates guest is accessing MMIO.
9533 * The vm-exit can be triggered again after return to guest that
9534 * will cause infinite loop.
9535 */
Mike Dayd77c26f2007-10-08 09:02:08 -04009536 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08009537 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02009538 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +00009539 exit_reason != EXIT_REASON_PML_FULL &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08009540 exit_reason != EXIT_REASON_TASK_SWITCH)) {
9541 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
9542 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02009543 vcpu->run->internal.ndata = 3;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08009544 vcpu->run->internal.data[0] = vectoring_info;
9545 vcpu->run->internal.data[1] = exit_reason;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02009546 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
9547 if (exit_reason == EXIT_REASON_EPT_MISCONFIG) {
9548 vcpu->run->internal.ndata++;
9549 vcpu->run->internal.data[3] =
9550 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
9551 }
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08009552 return 0;
9553 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02009554
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01009555 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01009556 vmx->loaded_vmcs->soft_vnmi_blocked)) {
9557 if (vmx_interrupt_allowed(vcpu)) {
9558 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
9559 } else if (vmx->loaded_vmcs->vnmi_blocked_time > 1000000000LL &&
9560 vcpu->arch.nmi_pending) {
9561 /*
9562 * This CPU don't support us in finding the end of an
9563 * NMI-blocked window if the guest runs with IRQs
9564 * disabled. So we pull the trigger after 1 s of
9565 * futile waiting, but inform the user about this.
9566 */
9567 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
9568 "state on VCPU %d after 1 s timeout\n",
9569 __func__, vcpu->vcpu_id);
9570 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
9571 }
9572 }
9573
Avi Kivity6aa8b732006-12-10 02:21:36 -08009574 if (exit_reason < kvm_vmx_max_exit_handlers
9575 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03009576 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009577 else {
Radim Krčmář6c6c5e02017-01-13 18:59:04 +01009578 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
9579 exit_reason);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03009580 kvm_queue_exception(vcpu, UD_VECTOR);
9581 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08009582 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08009583}
9584
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02009585/*
9586 * Software based L1D cache flush which is used when microcode providing
9587 * the cache control MSR is not loaded.
9588 *
9589 * The L1D cache is 32 KiB on Nehalem and later microarchitectures, but to
9590 * flush it is required to read in 64 KiB because the replacement algorithm
9591 * is not exactly LRU. This could be sized at runtime via topology
9592 * information but as all relevant affected CPUs have 32KiB L1D cache size
9593 * there is no point in doing so.
9594 */
9595#define L1D_CACHE_ORDER 4
9596static void *vmx_l1d_flush_pages;
9597
Paolo Bonzinic595cee2018-07-02 13:07:14 +02009598static void vmx_l1d_flush(struct kvm_vcpu *vcpu)
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02009599{
9600 int size = PAGE_SIZE << L1D_CACHE_ORDER;
Paolo Bonzinic595cee2018-07-02 13:07:14 +02009601 bool always;
9602
9603 /*
9604 * If the mitigation mode is 'flush always', keep the flush bit
9605 * set, otherwise clear it. It gets set again either from
9606 * vcpu_run() or from one of the unsafe VMEXIT handlers.
9607 */
9608 always = vmentry_l1d_flush == VMENTER_L1D_FLUSH_ALWAYS;
9609 vcpu->arch.l1tf_flush_l1d = always;
9610
9611 vcpu->stat.l1d_flush++;
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02009612
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02009613 if (static_cpu_has(X86_FEATURE_FLUSH_L1D)) {
9614 wrmsrl(MSR_IA32_FLUSH_CMD, L1D_FLUSH);
9615 return;
9616 }
9617
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02009618 asm volatile(
9619 /* First ensure the pages are in the TLB */
9620 "xorl %%eax, %%eax\n"
9621 ".Lpopulate_tlb:\n\t"
9622 "movzbl (%[empty_zp], %%" _ASM_AX "), %%ecx\n\t"
9623 "addl $4096, %%eax\n\t"
9624 "cmpl %%eax, %[size]\n\t"
9625 "jne .Lpopulate_tlb\n\t"
9626 "xorl %%eax, %%eax\n\t"
9627 "cpuid\n\t"
9628 /* Now fill the cache */
9629 "xorl %%eax, %%eax\n"
9630 ".Lfill_cache:\n"
9631 "movzbl (%[empty_zp], %%" _ASM_AX "), %%ecx\n\t"
9632 "addl $64, %%eax\n\t"
9633 "cmpl %%eax, %[size]\n\t"
9634 "jne .Lfill_cache\n\t"
9635 "lfence\n"
9636 :: [empty_zp] "r" (vmx_l1d_flush_pages),
9637 [size] "r" (size)
9638 : "eax", "ebx", "ecx", "edx");
9639}
9640
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009641static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08009642{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009643 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9644
9645 if (is_guest_mode(vcpu) &&
9646 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
9647 return;
9648
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009649 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08009650 vmcs_write32(TPR_THRESHOLD, 0);
9651 return;
9652 }
9653
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009654 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08009655}
9656
Jim Mattson8d860bb2018-05-09 16:56:05 -04009657static void vmx_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08009658{
9659 u32 sec_exec_control;
9660
Jim Mattson8d860bb2018-05-09 16:56:05 -04009661 if (!lapic_in_kernel(vcpu))
9662 return;
9663
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02009664 /* Postpone execution until vmcs01 is the current VMCS. */
9665 if (is_guest_mode(vcpu)) {
Jim Mattson8d860bb2018-05-09 16:56:05 -04009666 to_vmx(vcpu)->nested.change_vmcs01_virtual_apic_mode = true;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02009667 return;
9668 }
9669
Paolo Bonzini35754c92015-07-29 12:05:37 +02009670 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08009671 return;
9672
9673 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
Jim Mattson8d860bb2018-05-09 16:56:05 -04009674 sec_exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
9675 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
Yang Zhang8d146952013-01-25 10:18:50 +08009676
Jim Mattson8d860bb2018-05-09 16:56:05 -04009677 switch (kvm_get_apic_mode(vcpu)) {
9678 case LAPIC_MODE_INVALID:
9679 WARN_ONCE(true, "Invalid local APIC state");
9680 case LAPIC_MODE_DISABLED:
9681 break;
9682 case LAPIC_MODE_XAPIC:
9683 if (flexpriority_enabled) {
9684 sec_exec_control |=
9685 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9686 vmx_flush_tlb(vcpu, true);
9687 }
9688 break;
9689 case LAPIC_MODE_X2APIC:
9690 if (cpu_has_vmx_virtualize_x2apic_mode())
9691 sec_exec_control |=
9692 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
9693 break;
Yang Zhang8d146952013-01-25 10:18:50 +08009694 }
9695 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
9696
Paolo Bonzini904e14f2018-01-16 16:51:18 +01009697 vmx_update_msr_bitmap(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08009698}
9699
Tang Chen38b99172014-09-24 15:57:54 +08009700static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
9701{
Jim Mattsonab5df312018-05-09 17:02:03 -04009702 if (!is_guest_mode(vcpu)) {
Tang Chen38b99172014-09-24 15:57:54 +08009703 vmcs_write64(APIC_ACCESS_ADDR, hpa);
Junaid Shahida468f2d2018-04-26 13:09:50 -07009704 vmx_flush_tlb(vcpu, true);
Jim Mattsonfb6c8192017-03-16 13:53:59 -07009705 }
Tang Chen38b99172014-09-24 15:57:54 +08009706}
9707
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02009708static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08009709{
9710 u16 status;
9711 u8 old;
9712
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02009713 if (max_isr == -1)
9714 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08009715
9716 status = vmcs_read16(GUEST_INTR_STATUS);
9717 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02009718 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08009719 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02009720 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08009721 vmcs_write16(GUEST_INTR_STATUS, status);
9722 }
9723}
9724
9725static void vmx_set_rvi(int vector)
9726{
9727 u16 status;
9728 u8 old;
9729
Wei Wang4114c272014-11-05 10:53:43 +08009730 if (vector == -1)
9731 vector = 0;
9732
Yang Zhangc7c9c562013-01-25 10:18:51 +08009733 status = vmcs_read16(GUEST_INTR_STATUS);
9734 old = (u8)status & 0xff;
9735 if ((u8)vector != old) {
9736 status &= ~0xff;
9737 status |= (u8)vector;
9738 vmcs_write16(GUEST_INTR_STATUS, status);
9739 }
9740}
9741
9742static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
9743{
Liran Alon851c1a182017-12-24 18:12:56 +02009744 /*
9745 * When running L2, updating RVI is only relevant when
9746 * vmcs12 virtual-interrupt-delivery enabled.
9747 * However, it can be enabled only when L1 also
9748 * intercepts external-interrupts and in that case
9749 * we should not update vmcs02 RVI but instead intercept
9750 * interrupt. Therefore, do nothing when running L2.
9751 */
9752 if (!is_guest_mode(vcpu))
Wanpeng Li963fee12014-07-17 19:03:00 +08009753 vmx_set_rvi(max_irr);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009754}
9755
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01009756static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01009757{
9758 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01009759 int max_irr;
Liran Alonf27a85c2017-12-24 18:12:55 +02009760 bool max_irr_updated;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01009761
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01009762 WARN_ON(!vcpu->arch.apicv_active);
9763 if (pi_test_on(&vmx->pi_desc)) {
9764 pi_clear_on(&vmx->pi_desc);
9765 /*
9766 * IOMMU can write to PIR.ON, so the barrier matters even on UP.
9767 * But on x86 this is just a compiler barrier anyway.
9768 */
9769 smp_mb__after_atomic();
Liran Alonf27a85c2017-12-24 18:12:55 +02009770 max_irr_updated =
9771 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir, &max_irr);
9772
9773 /*
9774 * If we are running L2 and L1 has a new pending interrupt
9775 * which can be injected, we should re-evaluate
9776 * what should be done with this new L1 interrupt.
Liran Alon851c1a182017-12-24 18:12:56 +02009777 * If L1 intercepts external-interrupts, we should
9778 * exit from L2 to L1. Otherwise, interrupt should be
9779 * delivered directly to L2.
Liran Alonf27a85c2017-12-24 18:12:55 +02009780 */
Liran Alon851c1a182017-12-24 18:12:56 +02009781 if (is_guest_mode(vcpu) && max_irr_updated) {
9782 if (nested_exit_on_intr(vcpu))
9783 kvm_vcpu_exiting_guest_mode(vcpu);
9784 else
9785 kvm_make_request(KVM_REQ_EVENT, vcpu);
9786 }
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01009787 } else {
9788 max_irr = kvm_lapic_find_highest_irr(vcpu);
9789 }
9790 vmx_hwapic_irr_update(vcpu, max_irr);
9791 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01009792}
9793
Andrey Smetanin63086302015-11-10 15:36:32 +03009794static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08009795{
Andrey Smetanind62caab2015-11-10 15:36:33 +03009796 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08009797 return;
9798
Yang Zhangc7c9c562013-01-25 10:18:51 +08009799 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
9800 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
9801 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
9802 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
9803}
9804
Paolo Bonzini967235d2016-12-19 14:03:45 +01009805static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
9806{
9807 struct vcpu_vmx *vmx = to_vmx(vcpu);
9808
9809 pi_clear_on(&vmx->pi_desc);
9810 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
9811}
9812
Avi Kivity51aa01d2010-07-20 14:31:20 +03009813static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03009814{
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009815 u32 exit_intr_info = 0;
9816 u16 basic_exit_reason = (u16)vmx->exit_reason;
Avi Kivity00eba012011-03-07 17:24:54 +02009817
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009818 if (!(basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
9819 || basic_exit_reason == EXIT_REASON_EXCEPTION_NMI))
Avi Kivity00eba012011-03-07 17:24:54 +02009820 return;
9821
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009822 if (!(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
9823 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9824 vmx->exit_intr_info = exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08009825
Wanpeng Li1261bfa2017-07-13 18:30:40 -07009826 /* if exit due to PF check for async PF */
9827 if (is_page_fault(exit_intr_info))
9828 vmx->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
9829
Andi Kleena0861c02009-06-08 17:37:09 +08009830 /* Handle machine checks before interrupts are enabled */
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009831 if (basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY ||
9832 is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08009833 kvm_machine_check();
9834
Gleb Natapov20f65982009-05-11 13:35:55 +03009835 /* We need to handle NMIs before interrupts are enabled */
Jim Mattsonef85b672016-12-12 11:01:37 -08009836 if (is_nmi(exit_intr_info)) {
Andi Kleendd60d212017-07-25 17:20:32 -07009837 kvm_before_interrupt(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03009838 asm("int $2");
Andi Kleendd60d212017-07-25 17:20:32 -07009839 kvm_after_interrupt(&vmx->vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08009840 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03009841}
Gleb Natapov20f65982009-05-11 13:35:55 +03009842
Yang Zhanga547c6d2013-04-11 19:25:10 +08009843static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
9844{
9845 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9846
Yang Zhanga547c6d2013-04-11 19:25:10 +08009847 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
9848 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
9849 unsigned int vector;
9850 unsigned long entry;
9851 gate_desc *desc;
9852 struct vcpu_vmx *vmx = to_vmx(vcpu);
9853#ifdef CONFIG_X86_64
9854 unsigned long tmp;
9855#endif
9856
9857 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
9858 desc = (gate_desc *)vmx->host_idt_base + vector;
Thomas Gleixner64b163f2017-08-28 08:47:37 +02009859 entry = gate_offset(desc);
Yang Zhanga547c6d2013-04-11 19:25:10 +08009860 asm volatile(
9861#ifdef CONFIG_X86_64
9862 "mov %%" _ASM_SP ", %[sp]\n\t"
9863 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
9864 "push $%c[ss]\n\t"
9865 "push %[sp]\n\t"
9866#endif
9867 "pushf\n\t"
Yang Zhanga547c6d2013-04-11 19:25:10 +08009868 __ASM_SIZE(push) " $%c[cs]\n\t"
Peter Zijlstrac940a3f2018-01-25 10:58:14 +01009869 CALL_NOSPEC
Yang Zhanga547c6d2013-04-11 19:25:10 +08009870 :
9871#ifdef CONFIG_X86_64
Chris J Arges3f62de52016-01-22 15:44:38 -06009872 [sp]"=&r"(tmp),
Yang Zhanga547c6d2013-04-11 19:25:10 +08009873#endif
Josh Poimboeuff5caf622017-09-20 16:24:33 -05009874 ASM_CALL_CONSTRAINT
Yang Zhanga547c6d2013-04-11 19:25:10 +08009875 :
Peter Zijlstrac940a3f2018-01-25 10:58:14 +01009876 THUNK_TARGET(entry),
Yang Zhanga547c6d2013-04-11 19:25:10 +08009877 [ss]"i"(__KERNEL_DS),
9878 [cs]"i"(__KERNEL_CS)
9879 );
Paolo Bonzinic595cee2018-07-02 13:07:14 +02009880 vcpu->arch.l1tf_flush_l1d = true;
Paolo Bonzinif2485b32016-06-15 15:23:11 +02009881 }
Yang Zhanga547c6d2013-04-11 19:25:10 +08009882}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05009883STACK_FRAME_NON_STANDARD(vmx_handle_external_intr);
Yang Zhanga547c6d2013-04-11 19:25:10 +08009884
Tom Lendackybc226f02018-05-10 22:06:39 +02009885static bool vmx_has_emulated_msr(int index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02009886{
Tom Lendackybc226f02018-05-10 22:06:39 +02009887 switch (index) {
9888 case MSR_IA32_SMBASE:
9889 /*
9890 * We cannot do SMM unless we can run the guest in big
9891 * real mode.
9892 */
9893 return enable_unrestricted_guest || emulate_invalid_guest_state;
9894 case MSR_AMD64_VIRT_SPEC_CTRL:
9895 /* This is AMD only. */
9896 return false;
9897 default:
9898 return true;
9899 }
Paolo Bonzini6d396b52015-04-01 14:25:33 +02009900}
9901
Liu, Jinsongda8999d2014-02-24 10:55:46 +00009902static bool vmx_mpx_supported(void)
9903{
9904 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
9905 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
9906}
9907
Wanpeng Li55412b22014-12-02 19:21:30 +08009908static bool vmx_xsaves_supported(void)
9909{
9910 return vmcs_config.cpu_based_2nd_exec_ctrl &
9911 SECONDARY_EXEC_XSAVES;
9912}
9913
Avi Kivity51aa01d2010-07-20 14:31:20 +03009914static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
9915{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02009916 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03009917 bool unblock_nmi;
9918 u8 vector;
9919 bool idtv_info_valid;
9920
9921 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03009922
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01009923 if (enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01009924 if (vmx->loaded_vmcs->nmi_known_unmasked)
9925 return;
9926 /*
9927 * Can't use vmx->exit_intr_info since we're not sure what
9928 * the exit reason is.
9929 */
9930 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9931 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
9932 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
9933 /*
9934 * SDM 3: 27.7.1.2 (September 2008)
9935 * Re-set bit "block by NMI" before VM entry if vmexit caused by
9936 * a guest IRET fault.
9937 * SDM 3: 23.2.2 (September 2008)
9938 * Bit 12 is undefined in any of the following cases:
9939 * If the VM exit sets the valid bit in the IDT-vectoring
9940 * information field.
9941 * If the VM exit is due to a double fault.
9942 */
9943 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
9944 vector != DF_VECTOR && !idtv_info_valid)
9945 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
9946 GUEST_INTR_STATE_NMI);
9947 else
9948 vmx->loaded_vmcs->nmi_known_unmasked =
9949 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
9950 & GUEST_INTR_STATE_NMI);
9951 } else if (unlikely(vmx->loaded_vmcs->soft_vnmi_blocked))
9952 vmx->loaded_vmcs->vnmi_blocked_time +=
9953 ktime_to_ns(ktime_sub(ktime_get(),
9954 vmx->loaded_vmcs->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03009955}
9956
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009957static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03009958 u32 idt_vectoring_info,
9959 int instr_len_field,
9960 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03009961{
Avi Kivity51aa01d2010-07-20 14:31:20 +03009962 u8 vector;
9963 int type;
9964 bool idtv_info_valid;
9965
9966 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03009967
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009968 vcpu->arch.nmi_injected = false;
9969 kvm_clear_exception_queue(vcpu);
9970 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009971
9972 if (!idtv_info_valid)
9973 return;
9974
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009975 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03009976
Avi Kivity668f6122008-07-02 09:28:55 +03009977 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
9978 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009979
Gleb Natapov64a7ec02009-03-30 16:03:29 +03009980 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03009981 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009982 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03009983 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03009984 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03009985 * Clear bit "block by NMI" before VM entry if a NMI
9986 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03009987 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009988 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009989 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009990 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009991 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009992 /* fall through */
9993 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03009994 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03009995 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03009996 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03009997 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03009998 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009999 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +030010000 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010001 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +030010002 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +030010003 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010004 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +030010005 break;
10006 default:
10007 break;
Avi Kivityf7d92382008-07-03 16:14:28 +030010008 }
Avi Kivitycf393f72008-07-01 16:20:21 +030010009}
10010
Avi Kivity83422e12010-07-20 14:43:23 +030010011static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
10012{
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010013 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +030010014 VM_EXIT_INSTRUCTION_LEN,
10015 IDT_VECTORING_ERROR_CODE);
10016}
10017
Avi Kivityb463a6f2010-07-20 15:06:17 +030010018static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
10019{
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010020 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +030010021 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
10022 VM_ENTRY_INSTRUCTION_LEN,
10023 VM_ENTRY_EXCEPTION_ERROR_CODE);
10024
10025 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
10026}
10027
Gleb Natapovd7cd9792011-10-05 14:01:23 +020010028static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
10029{
10030 int i, nr_msrs;
10031 struct perf_guest_switch_msr *msrs;
10032
10033 msrs = perf_guest_get_msrs(&nr_msrs);
10034
10035 if (!msrs)
10036 return;
10037
10038 for (i = 0; i < nr_msrs; i++)
10039 if (msrs[i].host == msrs[i].guest)
10040 clear_atomic_switch_msr(vmx, msrs[i].msr);
10041 else
10042 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
10043 msrs[i].host);
10044}
10045
Jiang Biao33365e72016-11-03 15:03:37 +080010046static void vmx_arm_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -070010047{
10048 struct vcpu_vmx *vmx = to_vmx(vcpu);
10049 u64 tscl;
10050 u32 delta_tsc;
10051
10052 if (vmx->hv_deadline_tsc == -1)
10053 return;
10054
10055 tscl = rdtsc();
10056 if (vmx->hv_deadline_tsc > tscl)
10057 /* sure to be 32 bit only because checked on set_hv_timer */
10058 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
10059 cpu_preemption_timer_multi);
10060 else
10061 delta_tsc = 0;
10062
10063 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
10064}
10065
Lai Jiangshana3b5ba42011-02-11 14:29:40 +080010066static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -080010067{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040010068 struct vcpu_vmx *vmx = to_vmx(vcpu);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010069 unsigned long cr3, cr4, evmcs_rsp;
Avi Kivity104f2262010-11-18 13:12:52 +020010070
Paolo Bonzini8a1b4392017-11-06 13:31:12 +010010071 /* Record the guest's net vcpu time for enforced NMI injections. */
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010010072 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +010010073 vmx->loaded_vmcs->soft_vnmi_blocked))
10074 vmx->loaded_vmcs->entry_time = ktime_get();
10075
Avi Kivity104f2262010-11-18 13:12:52 +020010076 /* Don't enter VMX if guest state is invalid, let the exit handler
10077 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +020010078 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +020010079 return;
10080
Radim Krčmářa7653ec2014-08-21 18:08:07 +020010081 if (vmx->ple_window_dirty) {
10082 vmx->ple_window_dirty = false;
10083 vmcs_write32(PLE_WINDOW, vmx->ple_window);
10084 }
10085
Abel Gordon012f83c2013-04-18 14:39:25 +030010086 if (vmx->nested.sync_shadow_vmcs) {
10087 copy_vmcs12_to_shadow(vmx);
10088 vmx->nested.sync_shadow_vmcs = false;
10089 }
10090
Avi Kivity104f2262010-11-18 13:12:52 +020010091 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
10092 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
10093 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
10094 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
10095
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070010096 cr3 = __get_current_cr3_fast();
Ladi Prosek44889942017-09-22 07:53:15 +020010097 if (unlikely(cr3 != vmx->loaded_vmcs->vmcs_host_cr3)) {
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070010098 vmcs_writel(HOST_CR3, cr3);
Ladi Prosek44889942017-09-22 07:53:15 +020010099 vmx->loaded_vmcs->vmcs_host_cr3 = cr3;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070010100 }
10101
Andy Lutomirski1e02ce42014-10-24 15:58:08 -070010102 cr4 = cr4_read_shadow();
Ladi Prosek44889942017-09-22 07:53:15 +020010103 if (unlikely(cr4 != vmx->loaded_vmcs->vmcs_host_cr4)) {
Andy Lutomirskid974baa2014-10-08 09:02:13 -070010104 vmcs_writel(HOST_CR4, cr4);
Ladi Prosek44889942017-09-22 07:53:15 +020010105 vmx->loaded_vmcs->vmcs_host_cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -070010106 }
10107
Avi Kivity104f2262010-11-18 13:12:52 +020010108 /* When single-stepping over STI and MOV SS, we must clear the
10109 * corresponding interruptibility bits in the guest state. Otherwise
10110 * vmentry fails as it then expects bit 14 (BS) in pending debug
10111 * exceptions being set, but that's not correct for the guest debugging
10112 * case. */
10113 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
10114 vmx_set_interrupt_shadow(vcpu, 0);
10115
Paolo Bonzinib9dd21e2017-08-23 23:14:38 +020010116 if (static_cpu_has(X86_FEATURE_PKU) &&
10117 kvm_read_cr4_bits(vcpu, X86_CR4_PKE) &&
10118 vcpu->arch.pkru != vmx->host_pkru)
10119 __write_pkru(vcpu->arch.pkru);
Xiao Guangrong1be0e612016-03-22 16:51:18 +080010120
Gleb Natapovd7cd9792011-10-05 14:01:23 +020010121 atomic_switch_perf_msrs(vmx);
10122
Yunhong Jiang64672c92016-06-13 14:19:59 -070010123 vmx_arm_hv_timer(vcpu);
10124
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010125 /*
10126 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
10127 * it's non-zero. Since vmentry is serialising on affected CPUs, there
10128 * is no need to worry about the conditional branch over the wrmsr
10129 * being speculatively taken.
10130 */
Thomas Gleixnerccbcd262018-05-09 23:01:01 +020010131 x86_spec_ctrl_set_guest(vmx->spec_ctrl, 0);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010132
Nadav Har'Eld462b812011-05-24 15:26:10 +030010133 vmx->__launched = vmx->loaded_vmcs->launched;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010134
10135 evmcs_rsp = static_branch_unlikely(&enable_evmcs) ?
10136 (unsigned long)&current_evmcs->host_rsp : 0;
10137
Paolo Bonzinic595cee2018-07-02 13:07:14 +020010138 if (static_branch_unlikely(&vmx_l1d_should_flush)) {
10139 if (vcpu->arch.l1tf_flush_l1d)
10140 vmx_l1d_flush(vcpu);
10141 }
10142
Avi Kivity104f2262010-11-18 13:12:52 +020010143 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -080010144 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +030010145 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
10146 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
10147 "push %%" _ASM_CX " \n\t"
10148 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd492008-07-17 18:04:30 +030010149 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +030010150 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010151 /* Avoid VMWRITE when Enlightened VMCS is in use */
10152 "test %%" _ASM_SI ", %%" _ASM_SI " \n\t"
10153 "jz 2f \n\t"
10154 "mov %%" _ASM_SP ", (%%" _ASM_SI ") \n\t"
10155 "jmp 1f \n\t"
10156 "2: \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +030010157 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd492008-07-17 18:04:30 +030010158 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +030010159 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +030010160 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
10161 "mov %%cr2, %%" _ASM_DX " \n\t"
10162 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010163 "je 3f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +030010164 "mov %%" _ASM_AX", %%cr2 \n\t"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010165 "3: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -080010166 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +020010167 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -080010168 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +030010169 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
10170 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
10171 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
10172 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
10173 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
10174 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -080010175#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +020010176 "mov %c[r8](%0), %%r8 \n\t"
10177 "mov %c[r9](%0), %%r9 \n\t"
10178 "mov %c[r10](%0), %%r10 \n\t"
10179 "mov %c[r11](%0), %%r11 \n\t"
10180 "mov %c[r12](%0), %%r12 \n\t"
10181 "mov %c[r13](%0), %%r13 \n\t"
10182 "mov %c[r14](%0), %%r14 \n\t"
10183 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -080010184#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +030010185 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +030010186
Avi Kivity6aa8b732006-12-10 02:21:36 -080010187 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +030010188 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +030010189 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +030010190 "jmp 2f \n\t"
10191 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
10192 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -080010193 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +030010194 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +020010195 "pop %0 \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -080010196 "setbe %c[fail](%0)\n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +030010197 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
10198 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
10199 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
10200 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
10201 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
10202 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
10203 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -080010204#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +020010205 "mov %%r8, %c[r8](%0) \n\t"
10206 "mov %%r9, %c[r9](%0) \n\t"
10207 "mov %%r10, %c[r10](%0) \n\t"
10208 "mov %%r11, %c[r11](%0) \n\t"
10209 "mov %%r12, %c[r12](%0) \n\t"
10210 "mov %%r13, %c[r13](%0) \n\t"
10211 "mov %%r14, %c[r14](%0) \n\t"
10212 "mov %%r15, %c[r15](%0) \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -080010213 "xor %%r8d, %%r8d \n\t"
10214 "xor %%r9d, %%r9d \n\t"
10215 "xor %%r10d, %%r10d \n\t"
10216 "xor %%r11d, %%r11d \n\t"
10217 "xor %%r12d, %%r12d \n\t"
10218 "xor %%r13d, %%r13d \n\t"
10219 "xor %%r14d, %%r14d \n\t"
10220 "xor %%r15d, %%r15d \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -080010221#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +030010222 "mov %%cr2, %%" _ASM_AX " \n\t"
10223 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +030010224
Jim Mattson0cb5b302018-01-03 14:31:38 -080010225 "xor %%eax, %%eax \n\t"
10226 "xor %%ebx, %%ebx \n\t"
10227 "xor %%esi, %%esi \n\t"
10228 "xor %%edi, %%edi \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +030010229 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +030010230 ".pushsection .rodata \n\t"
10231 ".global vmx_return \n\t"
10232 "vmx_return: " _ASM_PTR " 2b \n\t"
10233 ".popsection"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010234 : : "c"(vmx), "d"((unsigned long)HOST_RSP), "S"(evmcs_rsp),
Nadav Har'Eld462b812011-05-24 15:26:10 +030010235 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +020010236 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd492008-07-17 18:04:30 +030010237 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010238 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
10239 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
10240 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
10241 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
10242 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
10243 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
10244 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -080010245#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010246 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
10247 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
10248 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
10249 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
10250 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
10251 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
10252 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
10253 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -080010254#endif
Avi Kivity40712fa2011-01-06 18:09:12 +020010255 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
10256 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +020010257 : "cc", "memory"
10258#ifdef CONFIG_X86_64
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010259 , "rax", "rbx", "rdi"
Laurent Vivierc2036302007-10-25 14:18:52 +020010260 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +030010261#else
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010262 , "eax", "ebx", "edi"
Laurent Vivierc2036302007-10-25 14:18:52 +020010263#endif
10264 );
Avi Kivity6aa8b732006-12-10 02:21:36 -080010265
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010266 /*
10267 * We do not use IBRS in the kernel. If this vCPU has used the
10268 * SPEC_CTRL MSR it may have left it on; save the value and
10269 * turn it off. This is much more efficient than blindly adding
10270 * it to the atomic save/restore list. Especially as the former
10271 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
10272 *
10273 * For non-nested case:
10274 * If the L01 MSR bitmap does not intercept the MSR, then we need to
10275 * save it.
10276 *
10277 * For nested case:
10278 * If the L02 MSR bitmap does not intercept the MSR, then we need to
10279 * save it.
10280 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +010010281 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +010010282 vmx->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010283
Thomas Gleixnerccbcd262018-05-09 23:01:01 +020010284 x86_spec_ctrl_restore_host(vmx->spec_ctrl, 0);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010285
David Woodhouse117cc7a2018-01-12 11:11:27 +000010286 /* Eliminate branch target predictions from guest mode */
10287 vmexit_fill_RSB();
10288
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010289 /* All fields are clean at this point */
10290 if (static_branch_unlikely(&enable_evmcs))
10291 current_evmcs->hv_clean_fields |=
10292 HV_VMX_ENLIGHTENED_CLEAN_FIELD_ALL;
10293
Gleb Natapov2a7921b2012-08-12 16:12:29 +030010294 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
Wanpeng Li74c55932017-11-29 01:31:20 -080010295 if (vmx->host_debugctlmsr)
10296 update_debugctlmsr(vmx->host_debugctlmsr);
Gleb Natapov2a7921b2012-08-12 16:12:29 +030010297
Avi Kivityaa67f602012-08-01 16:48:03 +030010298#ifndef CONFIG_X86_64
10299 /*
10300 * The sysexit path does not restore ds/es, so we must set them to
10301 * a reasonable value ourselves.
10302 *
10303 * We can't defer this to vmx_load_host_state() since that function
10304 * may be executed in interrupt context, which saves and restore segments
10305 * around it, nullifying its effect.
10306 */
10307 loadsegment(ds, __USER_DS);
10308 loadsegment(es, __USER_DS);
10309#endif
10310
Avi Kivity6de4f3a2009-05-31 22:58:47 +030010311 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +020010312 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +020010313 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +030010314 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +020010315 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010316 vcpu->arch.regs_dirty = 0;
10317
Gleb Natapove0b890d2013-09-25 12:51:33 +030010318 /*
Xiao Guangrong1be0e612016-03-22 16:51:18 +080010319 * eager fpu is enabled if PKEY is supported and CR4 is switched
10320 * back on host, so it is safe to read guest PKRU from current
10321 * XSAVE.
10322 */
Paolo Bonzinib9dd21e2017-08-23 23:14:38 +020010323 if (static_cpu_has(X86_FEATURE_PKU) &&
10324 kvm_read_cr4_bits(vcpu, X86_CR4_PKE)) {
10325 vcpu->arch.pkru = __read_pkru();
10326 if (vcpu->arch.pkru != vmx->host_pkru)
Xiao Guangrong1be0e612016-03-22 16:51:18 +080010327 __write_pkru(vmx->host_pkru);
Xiao Guangrong1be0e612016-03-22 16:51:18 +080010328 }
10329
Gleb Natapove0b890d2013-09-25 12:51:33 +030010330 vmx->nested.nested_run_pending = 0;
Jim Mattsonb060ca32017-09-14 16:31:42 -070010331 vmx->idt_vectoring_info = 0;
10332
10333 vmx->exit_reason = vmx->fail ? 0xdead : vmcs_read32(VM_EXIT_REASON);
10334 if (vmx->fail || (vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
10335 return;
10336
10337 vmx->loaded_vmcs->launched = 1;
10338 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Gleb Natapove0b890d2013-09-25 12:51:33 +030010339
Avi Kivity51aa01d2010-07-20 14:31:20 +030010340 vmx_complete_atomic_exit(vmx);
10341 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +030010342 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -080010343}
Josh Poimboeufc207aee2017-06-28 10:11:06 -050010344STACK_FRAME_NON_STANDARD(vmx_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -080010345
Sean Christopherson434a1e92018-03-20 12:17:18 -070010346static struct kvm *vmx_vm_alloc(void)
10347{
Marc Orrd1e5b0e2018-05-15 04:37:37 -070010348 struct kvm_vmx *kvm_vmx = vzalloc(sizeof(struct kvm_vmx));
Sean Christopherson40bbb9d2018-03-20 12:17:20 -070010349 return &kvm_vmx->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -070010350}
10351
10352static void vmx_vm_free(struct kvm *kvm)
10353{
Marc Orrd1e5b0e2018-05-15 04:37:37 -070010354 vfree(to_kvm_vmx(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -070010355}
10356
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010357static void vmx_switch_vmcs(struct kvm_vcpu *vcpu, struct loaded_vmcs *vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010358{
10359 struct vcpu_vmx *vmx = to_vmx(vcpu);
10360 int cpu;
10361
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010362 if (vmx->loaded_vmcs == vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010363 return;
10364
10365 cpu = get_cpu();
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010366 vmx->loaded_vmcs = vmcs;
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010367 vmx_vcpu_put(vcpu);
10368 vmx_vcpu_load(vcpu, cpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010369 put_cpu();
10370}
10371
Jim Mattson2f1fe812016-07-08 15:36:06 -070010372/*
10373 * Ensure that the current vmcs of the logical processor is the
10374 * vmcs01 of the vcpu before calling free_nested().
10375 */
10376static void vmx_free_vcpu_nested(struct kvm_vcpu *vcpu)
10377{
10378 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -070010379
Christoffer Dallec7660c2017-12-04 21:35:23 +010010380 vcpu_load(vcpu);
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010381 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson2f1fe812016-07-08 15:36:06 -070010382 free_nested(vmx);
10383 vcpu_put(vcpu);
10384}
10385
Avi Kivity6aa8b732006-12-10 02:21:36 -080010386static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
10387{
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010388 struct vcpu_vmx *vmx = to_vmx(vcpu);
10389
Kai Huang843e4332015-01-28 10:54:28 +080010390 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +080010391 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +080010392 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010393 leave_guest_mode(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -070010394 vmx_free_vcpu_nested(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010395 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010396 kfree(vmx->guest_msrs);
10397 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +100010398 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -080010399}
10400
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010401static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -080010402{
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010403 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +100010404 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Paolo Bonzini904e14f2018-01-16 16:51:18 +010010405 unsigned long *msr_bitmap;
Avi Kivity15ad7142007-07-11 18:17:21 +030010406 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -080010407
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040010408 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010409 return ERR_PTR(-ENOMEM);
10410
Wanpeng Li991e7a02015-09-16 17:30:05 +080010411 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +080010412
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010413 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
10414 if (err)
10415 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -080010416
Peter Feiner4e595162016-07-07 14:49:58 -070010417 err = -ENOMEM;
10418
10419 /*
10420 * If PML is turned on, failure on enabling PML just results in failure
10421 * of creating the vcpu, therefore we can simplify PML logic (by
10422 * avoiding dealing with cases, such as enabling PML partially on vcpus
10423 * for the guest, etc.
10424 */
10425 if (enable_pml) {
10426 vmx->pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
10427 if (!vmx->pml_pg)
10428 goto uninit_vcpu;
10429 }
10430
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040010431 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +020010432 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
10433 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +030010434
Peter Feiner4e595162016-07-07 14:49:58 -070010435 if (!vmx->guest_msrs)
10436 goto free_pml;
Ingo Molnar965b58a2007-01-05 16:36:23 -080010437
Paolo Bonzinif21f1652018-01-11 12:16:15 +010010438 err = alloc_loaded_vmcs(&vmx->vmcs01);
10439 if (err < 0)
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010440 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040010441
Paolo Bonzini904e14f2018-01-16 16:51:18 +010010442 msr_bitmap = vmx->vmcs01.msr_bitmap;
10443 vmx_disable_intercept_for_msr(msr_bitmap, MSR_FS_BASE, MSR_TYPE_RW);
10444 vmx_disable_intercept_for_msr(msr_bitmap, MSR_GS_BASE, MSR_TYPE_RW);
10445 vmx_disable_intercept_for_msr(msr_bitmap, MSR_KERNEL_GS_BASE, MSR_TYPE_RW);
10446 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_CS, MSR_TYPE_RW);
10447 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_ESP, MSR_TYPE_RW);
10448 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_EIP, MSR_TYPE_RW);
10449 vmx->msr_bitmap_mode = 0;
10450
Paolo Bonzinif21f1652018-01-11 12:16:15 +010010451 vmx->loaded_vmcs = &vmx->vmcs01;
Avi Kivity15ad7142007-07-11 18:17:21 +030010452 cpu = get_cpu();
10453 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -100010454 vmx->vcpu.cpu = cpu;
David Hildenbrand12d79912017-08-24 20:51:26 +020010455 vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010456 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +030010457 put_cpu();
Paolo Bonzini35754c92015-07-29 12:05:37 +020010458 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +020010459 err = alloc_apic_access_page(kvm);
10460 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -020010461 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +020010462 }
Ingo Molnar965b58a2007-01-05 16:36:23 -080010463
Sean Christophersone90008d2018-03-05 12:04:37 -080010464 if (enable_ept && !enable_unrestricted_guest) {
Tang Chenf51770e2014-09-16 18:41:59 +080010465 err = init_rmode_identity_map(kvm);
10466 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +020010467 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +080010468 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +080010469
Wanpeng Li5c614b32015-10-13 09:18:36 -070010470 if (nested) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010010471 nested_vmx_setup_ctls_msrs(&vmx->nested.msrs,
10472 kvm_vcpu_apicv_active(&vmx->vcpu));
Wanpeng Li5c614b32015-10-13 09:18:36 -070010473 vmx->nested.vpid02 = allocate_vpid();
10474 }
Wincy Vanb9c237b2015-02-03 23:56:30 +080010475
Wincy Van705699a2015-02-03 23:58:17 +080010476 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +030010477 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +030010478
Haozhong Zhang37e4c992016-06-22 14:59:55 +080010479 vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED;
10480
Paolo Bonzini31afb2e2017-06-06 12:57:06 +020010481 /*
10482 * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR
10483 * or POSTED_INTR_WAKEUP_VECTOR.
10484 */
10485 vmx->pi_desc.nv = POSTED_INTR_VECTOR;
10486 vmx->pi_desc.sn = 1;
10487
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010488 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -080010489
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010490free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -070010491 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +080010492 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010493free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010494 kfree(vmx->guest_msrs);
Peter Feiner4e595162016-07-07 14:49:58 -070010495free_pml:
10496 vmx_destroy_pml_buffer(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010497uninit_vcpu:
10498 kvm_vcpu_uninit(&vmx->vcpu);
10499free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +080010500 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +100010501 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010502 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -080010503}
10504
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -040010505#define L1TF_MSG "SMT enabled with L1TF CPU bug present. Refer to CVE-2018-3620 for details.\n"
10506
Wanpeng Lib31c1142018-03-12 04:53:04 -070010507static int vmx_vm_init(struct kvm *kvm)
10508{
10509 if (!ple_gap)
10510 kvm->arch.pause_in_guest = true;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -040010511
10512 if (boot_cpu_has(X86_BUG_L1TF) && cpu_smt_control == CPU_SMT_ENABLED) {
10513 if (nosmt) {
10514 pr_err(L1TF_MSG);
10515 return -EOPNOTSUPP;
10516 }
10517 pr_warn(L1TF_MSG);
10518 }
Wanpeng Lib31c1142018-03-12 04:53:04 -070010519 return 0;
10520}
10521
Yang, Sheng002c7f72007-07-31 14:23:01 +030010522static void __init vmx_check_processor_compat(void *rtn)
10523{
10524 struct vmcs_config vmcs_conf;
10525
10526 *(int *)rtn = 0;
10527 if (setup_vmcs_config(&vmcs_conf) < 0)
10528 *(int *)rtn = -EIO;
Paolo Bonzini13893092018-02-26 13:40:09 +010010529 nested_vmx_setup_ctls_msrs(&vmcs_conf.nested, enable_apicv);
Yang, Sheng002c7f72007-07-31 14:23:01 +030010530 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
10531 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
10532 smp_processor_id());
10533 *(int *)rtn = -EIO;
10534 }
10535}
10536
Sheng Yang4b12f0d2009-04-27 20:35:42 +080010537static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +080010538{
Xiao Guangrongb18d5432015-06-15 16:55:21 +080010539 u8 cache;
10540 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +080010541
Sheng Yang522c68c2009-04-27 20:35:43 +080010542 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +020010543 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +080010544 * 2. EPT with VT-d:
10545 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +020010546 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +080010547 * b. VT-d with snooping control feature: snooping control feature of
10548 * VT-d engine can guarantee the cache correctness. Just set it
10549 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +080010550 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +080010551 * consistent with host MTRR
10552 */
Paolo Bonzini606decd2015-10-01 13:12:47 +020010553 if (is_mmio) {
10554 cache = MTRR_TYPE_UNCACHABLE;
10555 goto exit;
10556 }
10557
10558 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +080010559 ipat = VMX_EPT_IPAT_BIT;
10560 cache = MTRR_TYPE_WRBACK;
10561 goto exit;
10562 }
10563
10564 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
10565 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +020010566 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +080010567 cache = MTRR_TYPE_WRBACK;
10568 else
10569 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +080010570 goto exit;
10571 }
10572
Xiao Guangrongff536042015-06-15 16:55:22 +080010573 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +080010574
10575exit:
10576 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +080010577}
10578
Sheng Yang17cc3932010-01-05 19:02:27 +080010579static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +020010580{
Sheng Yang878403b2010-01-05 19:02:29 +080010581 if (enable_ept && !cpu_has_vmx_ept_1g_page())
10582 return PT_DIRECTORY_LEVEL;
10583 else
10584 /* For shadow and EPT supported 1GB page */
10585 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +020010586}
10587
Xiao Guangrongfeda8052015-09-09 14:05:55 +080010588static void vmcs_set_secondary_exec_control(u32 new_ctl)
10589{
10590 /*
10591 * These bits in the secondary execution controls field
10592 * are dynamic, the others are mostly based on the hypervisor
10593 * architecture and the guest's CPUID. Do not touch the
10594 * dynamic bits.
10595 */
10596 u32 mask =
10597 SECONDARY_EXEC_SHADOW_VMCS |
10598 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Paolo Bonzini0367f202016-07-12 10:44:55 +020010599 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
10600 SECONDARY_EXEC_DESC;
Xiao Guangrongfeda8052015-09-09 14:05:55 +080010601
10602 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
10603
10604 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
10605 (new_ctl & ~mask) | (cur_ctl & mask));
10606}
10607
David Matlack8322ebb2016-11-29 18:14:09 -080010608/*
10609 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
10610 * (indicating "allowed-1") if they are supported in the guest's CPUID.
10611 */
10612static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
10613{
10614 struct vcpu_vmx *vmx = to_vmx(vcpu);
10615 struct kvm_cpuid_entry2 *entry;
10616
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010010617 vmx->nested.msrs.cr0_fixed1 = 0xffffffff;
10618 vmx->nested.msrs.cr4_fixed1 = X86_CR4_PCE;
David Matlack8322ebb2016-11-29 18:14:09 -080010619
10620#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
10621 if (entry && (entry->_reg & (_cpuid_mask))) \
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010010622 vmx->nested.msrs.cr4_fixed1 |= (_cr4_mask); \
David Matlack8322ebb2016-11-29 18:14:09 -080010623} while (0)
10624
10625 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
10626 cr4_fixed1_update(X86_CR4_VME, edx, bit(X86_FEATURE_VME));
10627 cr4_fixed1_update(X86_CR4_PVI, edx, bit(X86_FEATURE_VME));
10628 cr4_fixed1_update(X86_CR4_TSD, edx, bit(X86_FEATURE_TSC));
10629 cr4_fixed1_update(X86_CR4_DE, edx, bit(X86_FEATURE_DE));
10630 cr4_fixed1_update(X86_CR4_PSE, edx, bit(X86_FEATURE_PSE));
10631 cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE));
10632 cr4_fixed1_update(X86_CR4_MCE, edx, bit(X86_FEATURE_MCE));
10633 cr4_fixed1_update(X86_CR4_PGE, edx, bit(X86_FEATURE_PGE));
10634 cr4_fixed1_update(X86_CR4_OSFXSR, edx, bit(X86_FEATURE_FXSR));
10635 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, bit(X86_FEATURE_XMM));
10636 cr4_fixed1_update(X86_CR4_VMXE, ecx, bit(X86_FEATURE_VMX));
10637 cr4_fixed1_update(X86_CR4_SMXE, ecx, bit(X86_FEATURE_SMX));
10638 cr4_fixed1_update(X86_CR4_PCIDE, ecx, bit(X86_FEATURE_PCID));
10639 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, bit(X86_FEATURE_XSAVE));
10640
10641 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
10642 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, bit(X86_FEATURE_FSGSBASE));
10643 cr4_fixed1_update(X86_CR4_SMEP, ebx, bit(X86_FEATURE_SMEP));
10644 cr4_fixed1_update(X86_CR4_SMAP, ebx, bit(X86_FEATURE_SMAP));
10645 cr4_fixed1_update(X86_CR4_PKE, ecx, bit(X86_FEATURE_PKU));
Paolo Bonzinic4ad77e2017-11-13 14:23:59 +010010646 cr4_fixed1_update(X86_CR4_UMIP, ecx, bit(X86_FEATURE_UMIP));
David Matlack8322ebb2016-11-29 18:14:09 -080010647
10648#undef cr4_fixed1_update
10649}
10650
Sheng Yang0e851882009-12-18 16:48:46 +080010651static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
10652{
Sheng Yang4e47c7a2009-12-18 16:48:47 +080010653 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +080010654
Paolo Bonzini80154d72017-08-24 13:55:35 +020010655 if (cpu_has_secondary_exec_ctrls()) {
10656 vmx_compute_secondary_exec_control(vmx);
10657 vmcs_set_secondary_exec_control(vmx->secondary_exec_control);
Sheng Yang4e47c7a2009-12-18 16:48:47 +080010658 }
Mao, Junjiead756a12012-07-02 01:18:48 +000010659
Haozhong Zhang37e4c992016-06-22 14:59:55 +080010660 if (nested_vmx_allowed(vcpu))
10661 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
10662 FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
10663 else
10664 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
10665 ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
David Matlack8322ebb2016-11-29 18:14:09 -080010666
10667 if (nested_vmx_allowed(vcpu))
10668 nested_vmx_cr_fixed1_bits_update(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +080010669}
10670
Joerg Roedeld4330ef2010-04-22 12:33:11 +020010671static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
10672{
Nadav Har'El7b8050f2011-05-25 23:16:10 +030010673 if (func == 1 && nested)
10674 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +020010675}
10676
Yang Zhang25d92082013-08-06 12:00:32 +030010677static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
10678 struct x86_exception *fault)
10679{
Jan Kiszka533558b2014-01-04 18:47:20 +010010680 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Bandan Dasc5f983f2017-05-05 15:25:14 -040010681 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +010010682 u32 exit_reason;
Bandan Dasc5f983f2017-05-05 15:25:14 -040010683 unsigned long exit_qualification = vcpu->arch.exit_qualification;
Yang Zhang25d92082013-08-06 12:00:32 +030010684
Bandan Dasc5f983f2017-05-05 15:25:14 -040010685 if (vmx->nested.pml_full) {
10686 exit_reason = EXIT_REASON_PML_FULL;
10687 vmx->nested.pml_full = false;
10688 exit_qualification &= INTR_INFO_UNBLOCK_NMI;
10689 } else if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +010010690 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +030010691 else
Jan Kiszka533558b2014-01-04 18:47:20 +010010692 exit_reason = EXIT_REASON_EPT_VIOLATION;
Bandan Dasc5f983f2017-05-05 15:25:14 -040010693
10694 nested_vmx_vmexit(vcpu, exit_reason, 0, exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +030010695 vmcs12->guest_physical_address = fault->address;
10696}
10697
Peter Feiner995f00a2017-06-30 17:26:32 -070010698static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu)
10699{
David Hildenbrandbb97a012017-08-10 23:15:28 +020010700 return nested_ept_get_cr3(vcpu) & VMX_EPTP_AD_ENABLE_BIT;
Peter Feiner995f00a2017-06-30 17:26:32 -070010701}
10702
Nadav Har'El155a97a2013-08-05 11:07:16 +030010703/* Callbacks for nested_ept_init_mmu_context: */
10704
10705static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
10706{
10707 /* return the page table to be shadowed - in our case, EPT12 */
10708 return get_vmcs12(vcpu)->ept_pointer;
10709}
10710
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020010711static int nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +030010712{
Paolo Bonziniad896af2013-10-02 16:56:14 +020010713 WARN_ON(mmu_is_nested(vcpu));
David Hildenbranda057e0e2017-08-10 23:36:54 +020010714 if (!valid_ept_address(vcpu, nested_ept_get_cr3(vcpu)))
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020010715 return 1;
10716
10717 kvm_mmu_unload(vcpu);
Paolo Bonziniad896af2013-10-02 16:56:14 +020010718 kvm_init_shadow_ept_mmu(vcpu,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010010719 to_vmx(vcpu)->nested.msrs.ept_caps &
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020010720 VMX_EPT_EXECUTE_ONLY_BIT,
David Hildenbranda057e0e2017-08-10 23:36:54 +020010721 nested_ept_ad_enabled(vcpu));
Nadav Har'El155a97a2013-08-05 11:07:16 +030010722 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
10723 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
10724 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
10725
10726 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020010727 return 0;
Nadav Har'El155a97a2013-08-05 11:07:16 +030010728}
10729
10730static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
10731{
10732 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
10733}
10734
Eugene Korenevsky19d5f102014-12-16 22:35:53 +030010735static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
10736 u16 error_code)
10737{
10738 bool inequality, bit;
10739
10740 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
10741 inequality =
10742 (error_code & vmcs12->page_fault_error_code_mask) !=
10743 vmcs12->page_fault_error_code_match;
10744 return inequality ^ bit;
10745}
10746
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010747static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
10748 struct x86_exception *fault)
10749{
10750 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10751
10752 WARN_ON(!is_guest_mode(vcpu));
10753
Wanpeng Li305d0ab2017-09-28 18:16:44 -070010754 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code) &&
10755 !to_vmx(vcpu)->nested.nested_run_pending) {
Paolo Bonzinib96fb432017-07-27 12:29:32 +020010756 vmcs12->vm_exit_intr_error_code = fault->error_code;
10757 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
10758 PF_VECTOR | INTR_TYPE_HARD_EXCEPTION |
10759 INTR_INFO_DELIVER_CODE_MASK | INTR_INFO_VALID_MASK,
10760 fault->address);
Paolo Bonzini7313c692017-07-27 10:31:25 +020010761 } else {
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010762 kvm_inject_page_fault(vcpu, fault);
Paolo Bonzini7313c692017-07-27 10:31:25 +020010763 }
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010764}
10765
Paolo Bonzinic9923842017-12-13 14:16:30 +010010766static inline bool nested_vmx_prepare_msr_bitmap(struct kvm_vcpu *vcpu,
10767 struct vmcs12 *vmcs12);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010768
10769static void nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
Wanpeng Lia2bcba52014-08-21 19:46:49 +080010770 struct vmcs12 *vmcs12)
10771{
10772 struct vcpu_vmx *vmx = to_vmx(vcpu);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010773 struct page *page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010774 u64 hpa;
Wanpeng Lia2bcba52014-08-21 19:46:49 +080010775
10776 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Wanpeng Lia2bcba52014-08-21 19:46:49 +080010777 /*
10778 * Translate L1 physical address to host physical
10779 * address for vmcs02. Keep the page pinned, so this
10780 * physical address remains valid. We keep a reference
10781 * to it so we can release it later.
10782 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010783 if (vmx->nested.apic_access_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +020010784 kvm_release_page_dirty(vmx->nested.apic_access_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010785 vmx->nested.apic_access_page = NULL;
10786 }
10787 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->apic_access_addr);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010788 /*
10789 * If translation failed, no matter: This feature asks
10790 * to exit when accessing the given address, and if it
10791 * can never be accessed, this feature won't do
10792 * anything anyway.
10793 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010794 if (!is_error_page(page)) {
10795 vmx->nested.apic_access_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010796 hpa = page_to_phys(vmx->nested.apic_access_page);
10797 vmcs_write64(APIC_ACCESS_ADDR, hpa);
10798 } else {
10799 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
10800 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
10801 }
Wanpeng Lia2bcba52014-08-21 19:46:49 +080010802 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010803
10804 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010805 if (vmx->nested.virtual_apic_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +020010806 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010807 vmx->nested.virtual_apic_page = NULL;
10808 }
10809 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->virtual_apic_page_addr);
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010810
10811 /*
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010812 * If translation failed, VM entry will fail because
10813 * prepare_vmcs02 set VIRTUAL_APIC_PAGE_ADDR to -1ull.
10814 * Failing the vm entry is _not_ what the processor
10815 * does but it's basically the only possibility we
10816 * have. We could still enter the guest if CR8 load
10817 * exits are enabled, CR8 store exits are enabled, and
10818 * virtualize APIC access is disabled; in this case
10819 * the processor would never use the TPR shadow and we
10820 * could simply clear the bit from the execution
10821 * control. But such a configuration is useless, so
10822 * let's keep the code simple.
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010823 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010824 if (!is_error_page(page)) {
10825 vmx->nested.virtual_apic_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010826 hpa = page_to_phys(vmx->nested.virtual_apic_page);
10827 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, hpa);
10828 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010829 }
10830
Wincy Van705699a2015-02-03 23:58:17 +080010831 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +080010832 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
10833 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020010834 kvm_release_page_dirty(vmx->nested.pi_desc_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010835 vmx->nested.pi_desc_page = NULL;
Wincy Van705699a2015-02-03 23:58:17 +080010836 }
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010837 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->posted_intr_desc_addr);
10838 if (is_error_page(page))
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010839 return;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010840 vmx->nested.pi_desc_page = page;
10841 vmx->nested.pi_desc = kmap(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +080010842 vmx->nested.pi_desc =
10843 (struct pi_desc *)((void *)vmx->nested.pi_desc +
10844 (unsigned long)(vmcs12->posted_intr_desc_addr &
10845 (PAGE_SIZE - 1)));
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010846 vmcs_write64(POSTED_INTR_DESC_ADDR,
10847 page_to_phys(vmx->nested.pi_desc_page) +
10848 (unsigned long)(vmcs12->posted_intr_desc_addr &
10849 (PAGE_SIZE - 1)));
Wincy Van705699a2015-02-03 23:58:17 +080010850 }
Linus Torvaldsd4667ca2018-02-14 17:02:15 -080010851 if (nested_vmx_prepare_msr_bitmap(vcpu, vmcs12))
KarimAllah Ahmed3712caeb2018-02-10 23:39:26 +000010852 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
10853 CPU_BASED_USE_MSR_BITMAPS);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010854 else
10855 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
10856 CPU_BASED_USE_MSR_BITMAPS);
Wanpeng Lia2bcba52014-08-21 19:46:49 +080010857}
10858
Jan Kiszkaf4124502014-03-07 20:03:13 +010010859static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
10860{
10861 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
10862 struct vcpu_vmx *vmx = to_vmx(vcpu);
10863
10864 if (vcpu->arch.virtual_tsc_khz == 0)
10865 return;
10866
10867 /* Make sure short timeouts reliably trigger an immediate vmexit.
10868 * hrtimer_start does not guarantee this. */
10869 if (preemption_timeout <= 1) {
10870 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
10871 return;
10872 }
10873
10874 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
10875 preemption_timeout *= 1000000;
10876 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
10877 hrtimer_start(&vmx->nested.preemption_timer,
10878 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
10879}
10880
Jim Mattson56a20512017-07-06 16:33:06 -070010881static int nested_vmx_check_io_bitmap_controls(struct kvm_vcpu *vcpu,
10882 struct vmcs12 *vmcs12)
10883{
10884 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
10885 return 0;
10886
10887 if (!page_address_valid(vcpu, vmcs12->io_bitmap_a) ||
10888 !page_address_valid(vcpu, vmcs12->io_bitmap_b))
10889 return -EINVAL;
10890
10891 return 0;
10892}
10893
Wincy Van3af18d92015-02-03 23:49:31 +080010894static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
10895 struct vmcs12 *vmcs12)
10896{
Wincy Van3af18d92015-02-03 23:49:31 +080010897 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
10898 return 0;
10899
Jim Mattson5fa99cb2017-07-06 16:33:07 -070010900 if (!page_address_valid(vcpu, vmcs12->msr_bitmap))
Wincy Van3af18d92015-02-03 23:49:31 +080010901 return -EINVAL;
10902
10903 return 0;
10904}
10905
Jim Mattson712b12d2017-08-24 13:24:47 -070010906static int nested_vmx_check_tpr_shadow_controls(struct kvm_vcpu *vcpu,
10907 struct vmcs12 *vmcs12)
10908{
10909 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
10910 return 0;
10911
10912 if (!page_address_valid(vcpu, vmcs12->virtual_apic_page_addr))
10913 return -EINVAL;
10914
10915 return 0;
10916}
10917
Wincy Van3af18d92015-02-03 23:49:31 +080010918/*
10919 * Merge L0's and L1's MSR bitmap, return false to indicate that
10920 * we do not use the hardware.
10921 */
Paolo Bonzinic9923842017-12-13 14:16:30 +010010922static inline bool nested_vmx_prepare_msr_bitmap(struct kvm_vcpu *vcpu,
10923 struct vmcs12 *vmcs12)
Wincy Van3af18d92015-02-03 23:49:31 +080010924{
Wincy Van82f0dd42015-02-03 23:57:18 +080010925 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +080010926 struct page *page;
Radim Krčmářd048c092016-08-08 20:16:22 +020010927 unsigned long *msr_bitmap_l1;
Paolo Bonzini904e14f2018-01-16 16:51:18 +010010928 unsigned long *msr_bitmap_l0 = to_vmx(vcpu)->nested.vmcs02.msr_bitmap;
Ashok Raj15d45072018-02-01 22:59:43 +010010929 /*
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010930 * pred_cmd & spec_ctrl are trying to verify two things:
Ashok Raj15d45072018-02-01 22:59:43 +010010931 *
10932 * 1. L0 gave a permission to L1 to actually passthrough the MSR. This
10933 * ensures that we do not accidentally generate an L02 MSR bitmap
10934 * from the L12 MSR bitmap that is too permissive.
10935 * 2. That L1 or L2s have actually used the MSR. This avoids
10936 * unnecessarily merging of the bitmap if the MSR is unused. This
10937 * works properly because we only update the L01 MSR bitmap lazily.
10938 * So even if L0 should pass L1 these MSRs, the L01 bitmap is only
10939 * updated to reflect this when L1 (or its L2s) actually write to
10940 * the MSR.
10941 */
KarimAllah Ahmed206587a2018-02-10 23:39:25 +000010942 bool pred_cmd = !msr_write_intercepted_l01(vcpu, MSR_IA32_PRED_CMD);
10943 bool spec_ctrl = !msr_write_intercepted_l01(vcpu, MSR_IA32_SPEC_CTRL);
Wincy Vanf2b93282015-02-03 23:56:03 +080010944
Paolo Bonzinic9923842017-12-13 14:16:30 +010010945 /* Nothing to do if the MSR bitmap is not in use. */
10946 if (!cpu_has_vmx_msr_bitmap() ||
10947 !nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
10948 return false;
10949
Ashok Raj15d45072018-02-01 22:59:43 +010010950 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010951 !pred_cmd && !spec_ctrl)
Wincy Vanf2b93282015-02-03 23:56:03 +080010952 return false;
10953
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010954 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->msr_bitmap);
10955 if (is_error_page(page))
Wincy Vanf2b93282015-02-03 23:56:03 +080010956 return false;
Paolo Bonzinic9923842017-12-13 14:16:30 +010010957
Radim Krčmářd048c092016-08-08 20:16:22 +020010958 msr_bitmap_l1 = (unsigned long *)kmap(page);
Paolo Bonzinic9923842017-12-13 14:16:30 +010010959 if (nested_cpu_has_apic_reg_virt(vmcs12)) {
10960 /*
10961 * L0 need not intercept reads for MSRs between 0x800 and 0x8ff, it
10962 * just lets the processor take the value from the virtual-APIC page;
10963 * take those 256 bits directly from the L1 bitmap.
10964 */
10965 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
10966 unsigned word = msr / BITS_PER_LONG;
10967 msr_bitmap_l0[word] = msr_bitmap_l1[word];
10968 msr_bitmap_l0[word + (0x800 / sizeof(long))] = ~0;
Wincy Van608406e2015-02-03 23:57:51 +080010969 }
Paolo Bonzinic9923842017-12-13 14:16:30 +010010970 } else {
10971 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
10972 unsigned word = msr / BITS_PER_LONG;
10973 msr_bitmap_l0[word] = ~0;
10974 msr_bitmap_l0[word + (0x800 / sizeof(long))] = ~0;
10975 }
10976 }
10977
10978 nested_vmx_disable_intercept_for_msr(
10979 msr_bitmap_l1, msr_bitmap_l0,
Paolo Bonzinid7231e72017-12-21 00:47:55 +010010980 X2APIC_MSR(APIC_TASKPRI),
Paolo Bonzinic9923842017-12-13 14:16:30 +010010981 MSR_TYPE_W);
10982
10983 if (nested_cpu_has_vid(vmcs12)) {
10984 nested_vmx_disable_intercept_for_msr(
10985 msr_bitmap_l1, msr_bitmap_l0,
Paolo Bonzinid7231e72017-12-21 00:47:55 +010010986 X2APIC_MSR(APIC_EOI),
Paolo Bonzinic9923842017-12-13 14:16:30 +010010987 MSR_TYPE_W);
10988 nested_vmx_disable_intercept_for_msr(
10989 msr_bitmap_l1, msr_bitmap_l0,
Paolo Bonzinid7231e72017-12-21 00:47:55 +010010990 X2APIC_MSR(APIC_SELF_IPI),
Paolo Bonzinic9923842017-12-13 14:16:30 +010010991 MSR_TYPE_W);
Wincy Van82f0dd42015-02-03 23:57:18 +080010992 }
Ashok Raj15d45072018-02-01 22:59:43 +010010993
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010994 if (spec_ctrl)
10995 nested_vmx_disable_intercept_for_msr(
10996 msr_bitmap_l1, msr_bitmap_l0,
10997 MSR_IA32_SPEC_CTRL,
10998 MSR_TYPE_R | MSR_TYPE_W);
10999
Ashok Raj15d45072018-02-01 22:59:43 +010011000 if (pred_cmd)
11001 nested_vmx_disable_intercept_for_msr(
11002 msr_bitmap_l1, msr_bitmap_l0,
11003 MSR_IA32_PRED_CMD,
11004 MSR_TYPE_W);
11005
Wincy Vanf2b93282015-02-03 23:56:03 +080011006 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011007 kvm_release_page_clean(page);
Wincy Vanf2b93282015-02-03 23:56:03 +080011008
11009 return true;
11010}
11011
Krish Sadhukhanf0f4cf52018-04-11 01:10:16 -040011012static int nested_vmx_check_apic_access_controls(struct kvm_vcpu *vcpu,
11013 struct vmcs12 *vmcs12)
11014{
11015 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) &&
11016 !page_address_valid(vcpu, vmcs12->apic_access_addr))
11017 return -EINVAL;
11018 else
11019 return 0;
11020}
11021
Wincy Vanf2b93282015-02-03 23:56:03 +080011022static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
11023 struct vmcs12 *vmcs12)
11024{
Wincy Van82f0dd42015-02-03 23:57:18 +080011025 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +080011026 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +080011027 !nested_cpu_has_vid(vmcs12) &&
11028 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +080011029 return 0;
11030
11031 /*
11032 * If virtualize x2apic mode is enabled,
11033 * virtualize apic access must be disabled.
11034 */
Wincy Van82f0dd42015-02-03 23:57:18 +080011035 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
11036 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +080011037 return -EINVAL;
11038
Wincy Van608406e2015-02-03 23:57:51 +080011039 /*
11040 * If virtual interrupt delivery is enabled,
11041 * we must exit on external interrupts.
11042 */
11043 if (nested_cpu_has_vid(vmcs12) &&
11044 !nested_exit_on_intr(vcpu))
11045 return -EINVAL;
11046
Wincy Van705699a2015-02-03 23:58:17 +080011047 /*
11048 * bits 15:8 should be zero in posted_intr_nv,
11049 * the descriptor address has been already checked
11050 * in nested_get_vmcs12_pages.
11051 */
11052 if (nested_cpu_has_posted_intr(vmcs12) &&
11053 (!nested_cpu_has_vid(vmcs12) ||
11054 !nested_exit_intr_ack_set(vcpu) ||
11055 vmcs12->posted_intr_nv & 0xff00))
11056 return -EINVAL;
11057
Wincy Vanf2b93282015-02-03 23:56:03 +080011058 /* tpr shadow is needed by all apicv features. */
11059 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
11060 return -EINVAL;
11061
11062 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +080011063}
11064
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011065static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
11066 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011067 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +030011068{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011069 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011070 u64 count, addr;
11071
11072 if (vmcs12_read_any(vcpu, count_field, &count) ||
11073 vmcs12_read_any(vcpu, addr_field, &addr)) {
11074 WARN_ON(1);
11075 return -EINVAL;
11076 }
11077 if (count == 0)
11078 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011079 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011080 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
11081 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011082 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011083 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
11084 addr_field, maxphyaddr, count, addr);
11085 return -EINVAL;
11086 }
11087 return 0;
11088}
11089
11090static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
11091 struct vmcs12 *vmcs12)
11092{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011093 if (vmcs12->vm_exit_msr_load_count == 0 &&
11094 vmcs12->vm_exit_msr_store_count == 0 &&
11095 vmcs12->vm_entry_msr_load_count == 0)
11096 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011097 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011098 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011099 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011100 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011101 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011102 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +030011103 return -EINVAL;
11104 return 0;
11105}
11106
Bandan Dasc5f983f2017-05-05 15:25:14 -040011107static int nested_vmx_check_pml_controls(struct kvm_vcpu *vcpu,
11108 struct vmcs12 *vmcs12)
11109{
11110 u64 address = vmcs12->pml_address;
11111 int maxphyaddr = cpuid_maxphyaddr(vcpu);
11112
11113 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML)) {
11114 if (!nested_cpu_has_ept(vmcs12) ||
11115 !IS_ALIGNED(address, 4096) ||
11116 address >> maxphyaddr)
11117 return -EINVAL;
11118 }
11119
11120 return 0;
11121}
11122
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011123static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
11124 struct vmx_msr_entry *e)
11125{
11126 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +020011127 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011128 return -EINVAL;
11129 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
11130 e->index == MSR_IA32_UCODE_REV)
11131 return -EINVAL;
11132 if (e->reserved != 0)
11133 return -EINVAL;
11134 return 0;
11135}
11136
11137static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
11138 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +030011139{
11140 if (e->index == MSR_FS_BASE ||
11141 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011142 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
11143 nested_vmx_msr_check_common(vcpu, e))
11144 return -EINVAL;
11145 return 0;
11146}
11147
11148static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
11149 struct vmx_msr_entry *e)
11150{
11151 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
11152 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +030011153 return -EINVAL;
11154 return 0;
11155}
11156
11157/*
11158 * Load guest's/host's msr at nested entry/exit.
11159 * return 0 for success, entry index for failure.
11160 */
11161static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
11162{
11163 u32 i;
11164 struct vmx_msr_entry e;
11165 struct msr_data msr;
11166
11167 msr.host_initiated = false;
11168 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020011169 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
11170 &e, sizeof(e))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011171 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011172 "%s cannot read MSR entry (%u, 0x%08llx)\n",
11173 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030011174 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011175 }
11176 if (nested_vmx_load_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011177 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011178 "%s check failed (%u, 0x%x, 0x%x)\n",
11179 __func__, i, e.index, e.reserved);
11180 goto fail;
11181 }
Wincy Vanff651cb2014-12-11 08:52:58 +030011182 msr.index = e.index;
11183 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011184 if (kvm_set_msr(vcpu, &msr)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011185 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011186 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
11187 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +030011188 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011189 }
Wincy Vanff651cb2014-12-11 08:52:58 +030011190 }
11191 return 0;
11192fail:
11193 return i + 1;
11194}
11195
11196static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
11197{
11198 u32 i;
11199 struct vmx_msr_entry e;
11200
11201 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +020011202 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020011203 if (kvm_vcpu_read_guest(vcpu,
11204 gpa + i * sizeof(e),
11205 &e, 2 * sizeof(u32))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011206 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011207 "%s cannot read MSR entry (%u, 0x%08llx)\n",
11208 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030011209 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011210 }
11211 if (nested_vmx_store_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011212 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011213 "%s check failed (%u, 0x%x, 0x%x)\n",
11214 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +030011215 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011216 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +020011217 msr_info.host_initiated = false;
11218 msr_info.index = e.index;
11219 if (kvm_get_msr(vcpu, &msr_info)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011220 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011221 "%s cannot read MSR (%u, 0x%x)\n",
11222 __func__, i, e.index);
11223 return -EINVAL;
11224 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020011225 if (kvm_vcpu_write_guest(vcpu,
11226 gpa + i * sizeof(e) +
11227 offsetof(struct vmx_msr_entry, value),
11228 &msr_info.data, sizeof(msr_info.data))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011229 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011230 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +020011231 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011232 return -EINVAL;
11233 }
Wincy Vanff651cb2014-12-11 08:52:58 +030011234 }
11235 return 0;
11236}
11237
Ladi Prosek1dc35da2016-11-30 16:03:11 +010011238static bool nested_cr3_valid(struct kvm_vcpu *vcpu, unsigned long val)
11239{
11240 unsigned long invalid_mask;
11241
11242 invalid_mask = (~0ULL) << cpuid_maxphyaddr(vcpu);
11243 return (val & invalid_mask) == 0;
11244}
11245
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011246/*
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011247 * Load guest's/host's cr3 at nested entry/exit. nested_ept is true if we are
11248 * emulating VM entry into a guest with EPT enabled.
11249 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
11250 * is assigned to entry_failure_code on failure.
11251 */
11252static int nested_vmx_load_cr3(struct kvm_vcpu *vcpu, unsigned long cr3, bool nested_ept,
Jim Mattsonca0bde22016-11-30 12:03:46 -080011253 u32 *entry_failure_code)
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011254{
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011255 if (cr3 != kvm_read_cr3(vcpu) || (!nested_ept && pdptrs_changed(vcpu))) {
Ladi Prosek1dc35da2016-11-30 16:03:11 +010011256 if (!nested_cr3_valid(vcpu, cr3)) {
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011257 *entry_failure_code = ENTRY_FAIL_DEFAULT;
11258 return 1;
11259 }
11260
11261 /*
11262 * If PAE paging and EPT are both on, CR3 is not used by the CPU and
11263 * must not be dereferenced.
11264 */
11265 if (!is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu) &&
11266 !nested_ept) {
11267 if (!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) {
11268 *entry_failure_code = ENTRY_FAIL_PDPTE;
11269 return 1;
11270 }
11271 }
11272
11273 vcpu->arch.cr3 = cr3;
11274 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
11275 }
11276
11277 kvm_mmu_reset_context(vcpu);
11278 return 0;
11279}
11280
Jim Mattson6514dc32018-04-26 16:09:12 -070011281static void prepare_vmcs02_full(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
Paolo Bonzini74a497f2017-12-20 13:55:39 +010011282{
Paolo Bonzini8665c3f2017-12-20 13:56:53 +010011283 struct vcpu_vmx *vmx = to_vmx(vcpu);
11284
11285 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
11286 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
11287 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
11288 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
11289 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
11290 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
11291 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
11292 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
11293 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
11294 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
11295 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
11296 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
11297 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
11298 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
11299 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
11300 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
11301 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
11302 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
11303 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
11304 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
11305 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
11306 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
11307 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
11308 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
11309 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
11310 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
11311 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
11312 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
11313 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
11314 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
11315 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
Paolo Bonzini25a2e4f2017-12-20 14:05:21 +010011316
11317 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
11318 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
11319 vmcs12->guest_pending_dbg_exceptions);
11320 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
11321 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
11322
11323 if (nested_cpu_has_xsaves(vmcs12))
11324 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
11325 vmcs_write64(VMCS_LINK_POINTER, -1ull);
11326
11327 if (cpu_has_vmx_posted_intr())
11328 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_NESTED_VECTOR);
11329
11330 /*
11331 * Whether page-faults are trapped is determined by a combination of
11332 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
11333 * If enable_ept, L0 doesn't care about page faults and we should
11334 * set all of these to L1's desires. However, if !enable_ept, L0 does
11335 * care about (at least some) page faults, and because it is not easy
11336 * (if at all possible?) to merge L0 and L1's desires, we simply ask
11337 * to exit on each and every L2 page fault. This is done by setting
11338 * MASK=MATCH=0 and (see below) EB.PF=1.
11339 * Note that below we don't need special code to set EB.PF beyond the
11340 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
11341 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
11342 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
11343 */
11344 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
11345 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
11346 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
11347 enable_ept ? vmcs12->page_fault_error_code_match : 0);
11348
11349 /* All VMFUNCs are currently emulated through L0 vmexits. */
11350 if (cpu_has_vmx_vmfunc())
11351 vmcs_write64(VM_FUNCTION_CONTROL, 0);
11352
11353 if (cpu_has_vmx_apicv()) {
11354 vmcs_write64(EOI_EXIT_BITMAP0, vmcs12->eoi_exit_bitmap0);
11355 vmcs_write64(EOI_EXIT_BITMAP1, vmcs12->eoi_exit_bitmap1);
11356 vmcs_write64(EOI_EXIT_BITMAP2, vmcs12->eoi_exit_bitmap2);
11357 vmcs_write64(EOI_EXIT_BITMAP3, vmcs12->eoi_exit_bitmap3);
11358 }
11359
11360 /*
11361 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
11362 * Some constant fields are set here by vmx_set_constant_host_state().
11363 * Other fields are different per CPU, and will be set later when
11364 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
11365 */
11366 vmx_set_constant_host_state(vmx);
11367
11368 /*
11369 * Set the MSR load/store lists to match L0's settings.
11370 */
11371 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -040011372 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.host.nr);
11373 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host.val));
11374 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.guest.nr);
11375 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest.val));
Paolo Bonzini25a2e4f2017-12-20 14:05:21 +010011376
11377 set_cr4_guest_host_mask(vmx);
11378
11379 if (vmx_mpx_supported())
11380 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
11381
11382 if (enable_vpid) {
11383 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02)
11384 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
11385 else
11386 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
11387 }
11388
11389 /*
11390 * L1 may access the L2's PDPTR, so save them to construct vmcs12
11391 */
11392 if (enable_ept) {
11393 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
11394 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
11395 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
11396 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
11397 }
Radim Krčmář80132f42018-02-02 18:26:58 +010011398
11399 if (cpu_has_vmx_msr_bitmap())
11400 vmcs_write64(MSR_BITMAP, __pa(vmx->nested.vmcs02.msr_bitmap));
Paolo Bonzini74a497f2017-12-20 13:55:39 +010011401}
11402
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011403/*
11404 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
11405 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +080011406 * 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 +030011407 * guest in a way that will both be appropriate to L1's requests, and our
11408 * needs. In addition to modifying the active vmcs (which is vmcs02), this
11409 * function also has additional necessary side-effects, like setting various
11410 * vcpu->arch fields.
Ladi Prosekee146c12016-11-30 16:03:09 +010011411 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
11412 * is assigned to entry_failure_code on failure.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011413 */
Ladi Prosekee146c12016-11-30 16:03:09 +010011414static int prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
Jim Mattson6514dc32018-04-26 16:09:12 -070011415 u32 *entry_failure_code)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011416{
11417 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das03efce62017-05-05 15:25:15 -040011418 u32 exec_control, vmcs12_exec_ctrl;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011419
Sean Christopherson9d1887e2018-03-05 09:33:27 -080011420 if (vmx->nested.dirty_vmcs12) {
Jim Mattson6514dc32018-04-26 16:09:12 -070011421 prepare_vmcs02_full(vcpu, vmcs12);
Sean Christopherson9d1887e2018-03-05 09:33:27 -080011422 vmx->nested.dirty_vmcs12 = false;
11423 }
11424
Paolo Bonzini8665c3f2017-12-20 13:56:53 +010011425 /*
11426 * First, the fields that are shadowed. This must be kept in sync
11427 * with vmx_shadow_fields.h.
11428 */
11429
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011430 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011431 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011432 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011433 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
11434 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
Paolo Bonzini8665c3f2017-12-20 13:56:53 +010011435
11436 /*
11437 * Not in vmcs02: GUEST_PML_INDEX, HOST_FS_SELECTOR, HOST_GS_SELECTOR,
11438 * HOST_FS_BASE, HOST_GS_BASE.
11439 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011440
Jim Mattson6514dc32018-04-26 16:09:12 -070011441 if (vmx->nested.nested_run_pending &&
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011442 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) {
Jan Kiszka2996fca2014-06-16 13:59:43 +020011443 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
11444 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
11445 } else {
11446 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
11447 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
11448 }
Jim Mattson6514dc32018-04-26 16:09:12 -070011449 if (vmx->nested.nested_run_pending) {
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011450 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
11451 vmcs12->vm_entry_intr_info_field);
11452 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
11453 vmcs12->vm_entry_exception_error_code);
11454 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
11455 vmcs12->vm_entry_instruction_len);
11456 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
11457 vmcs12->guest_interruptibility_info);
Wanpeng Li2d6144e2017-07-25 03:40:46 -070011458 vmx->loaded_vmcs->nmi_known_unmasked =
11459 !(vmcs12->guest_interruptibility_info & GUEST_INTR_STATE_NMI);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011460 } else {
11461 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
11462 }
Gleb Natapov63fbf592013-07-28 18:31:06 +030011463 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011464
Jan Kiszkaf4124502014-03-07 20:03:13 +010011465 exec_control = vmcs12->pin_based_vm_exec_control;
Wincy Van705699a2015-02-03 23:58:17 +080011466
Paolo Bonzini93140062016-07-06 13:23:51 +020011467 /* Preemption timer setting is only taken from vmcs01. */
11468 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
11469 exec_control |= vmcs_config.pin_based_exec_ctrl;
11470 if (vmx->hv_deadline_tsc == -1)
11471 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
11472
11473 /* Posted interrupts setting is only taken from vmcs12. */
Wincy Van705699a2015-02-03 23:58:17 +080011474 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +080011475 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
11476 vmx->nested.pi_pending = false;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011477 } else {
Wincy Van705699a2015-02-03 23:58:17 +080011478 exec_control &= ~PIN_BASED_POSTED_INTR;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011479 }
Wincy Van705699a2015-02-03 23:58:17 +080011480
Jan Kiszkaf4124502014-03-07 20:03:13 +010011481 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011482
Jan Kiszkaf4124502014-03-07 20:03:13 +010011483 vmx->nested.preemption_timer_expired = false;
11484 if (nested_cpu_has_preemption_timer(vmcs12))
11485 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +010011486
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011487 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +020011488 exec_control = vmx->secondary_exec_control;
Xiao Guangronge2821622015-09-09 14:05:52 +080011489
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011490 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +020011491 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini90a2db62017-07-27 13:22:13 +020011492 SECONDARY_EXEC_ENABLE_INVPCID |
Jan Kiszkab3a2a902015-03-23 19:27:19 +010011493 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini3db13482017-08-24 14:48:03 +020011494 SECONDARY_EXEC_XSAVES |
Paolo Bonzini696dfd92014-05-07 11:20:54 +020011495 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Bandan Das27c42a12017-08-03 15:54:42 -040011496 SECONDARY_EXEC_APIC_REGISTER_VIRT |
11497 SECONDARY_EXEC_ENABLE_VMFUNC);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011498 if (nested_cpu_has(vmcs12,
Bandan Das03efce62017-05-05 15:25:15 -040011499 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) {
11500 vmcs12_exec_ctrl = vmcs12->secondary_vm_exec_control &
11501 ~SECONDARY_EXEC_ENABLE_PML;
11502 exec_control |= vmcs12_exec_ctrl;
11503 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011504
Paolo Bonzini25a2e4f2017-12-20 14:05:21 +010011505 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
Wincy Van608406e2015-02-03 23:57:51 +080011506 vmcs_write16(GUEST_INTR_STATUS,
11507 vmcs12->guest_intr_status);
Wincy Van608406e2015-02-03 23:57:51 +080011508
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011509 /*
11510 * Write an illegal value to APIC_ACCESS_ADDR. Later,
11511 * nested_get_vmcs12_pages will either fix it up or
11512 * remove the VM execution control.
11513 */
11514 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
11515 vmcs_write64(APIC_ACCESS_ADDR, -1ull);
11516
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011517 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
11518 }
11519
Jim Mattson83bafef2016-10-04 10:48:38 -070011520 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011521 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
11522 * entry, but only if the current (host) sp changed from the value
11523 * we wrote last (vmx->host_rsp). This cache is no longer relevant
11524 * if we switch vmcs, and rather than hold a separate cache per vmcs,
11525 * here we just force the write to happen on entry.
11526 */
11527 vmx->host_rsp = 0;
11528
11529 exec_control = vmx_exec_control(vmx); /* L0's desires */
11530 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
11531 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
11532 exec_control &= ~CPU_BASED_TPR_SHADOW;
11533 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011534
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011535 /*
11536 * Write an illegal value to VIRTUAL_APIC_PAGE_ADDR. Later, if
11537 * nested_get_vmcs12_pages can't fix it up, the illegal value
11538 * will result in a VM entry failure.
11539 */
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011540 if (exec_control & CPU_BASED_TPR_SHADOW) {
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011541 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, -1ull);
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011542 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
Jim Mattson51aa68e2017-09-12 13:02:54 -070011543 } else {
11544#ifdef CONFIG_X86_64
11545 exec_control |= CPU_BASED_CR8_LOAD_EXITING |
11546 CPU_BASED_CR8_STORE_EXITING;
11547#endif
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011548 }
11549
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011550 /*
Quan Xu8eb73e22017-12-12 16:44:21 +080011551 * A vmexit (to either L1 hypervisor or L0 userspace) is always needed
11552 * for I/O port accesses.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011553 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011554 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
11555 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
11556
11557 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
11558
11559 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
11560 * bitwise-or of what L1 wants to trap for L2, and what we want to
11561 * trap. Note that CR0.TS also needs updating - we do this later.
11562 */
11563 update_exception_bitmap(vcpu);
11564 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
11565 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
11566
Nadav Har'El8049d652013-08-05 11:07:06 +030011567 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
11568 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
11569 * bits are further modified by vmx_set_efer() below.
11570 */
Jan Kiszkaf4124502014-03-07 20:03:13 +010011571 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +030011572
11573 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
11574 * emulated by vmx_set_efer(), below.
11575 */
Gleb Natapov2961e8762013-11-25 15:37:13 +020011576 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +030011577 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
11578 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011579 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
11580
Jim Mattson6514dc32018-04-26 16:09:12 -070011581 if (vmx->nested.nested_run_pending &&
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011582 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011583 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020011584 vcpu->arch.pat = vmcs12->guest_ia32_pat;
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011585 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011586 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011587 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011588
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020011589 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
11590
Peter Feinerc95ba922016-08-17 09:36:47 -070011591 if (kvm_has_tsc_control)
11592 decache_tsc_multiplier(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011593
11594 if (enable_vpid) {
11595 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -070011596 * There is no direct mapping between vpid02 and vpid12, the
11597 * vpid02 is per-vCPU for L0 and reused while the value of
11598 * vpid12 is changed w/ one invvpid during nested vmentry.
11599 * The vpid12 is allocated by L1 for L2, so it will not
11600 * influence global bitmap(for vpid01 and vpid02 allocation)
11601 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011602 */
Wanpeng Li5c614b32015-10-13 09:18:36 -070011603 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
Wanpeng Li5c614b32015-10-13 09:18:36 -070011604 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
11605 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
Liran Alon6bce30c2018-05-22 17:16:12 +030011606 __vmx_flush_tlb(vcpu, vmx->nested.vpid02, true);
Wanpeng Li5c614b32015-10-13 09:18:36 -070011607 }
11608 } else {
Wanpeng Lic2ba05c2017-12-12 17:33:03 -080011609 vmx_flush_tlb(vcpu, true);
Wanpeng Li5c614b32015-10-13 09:18:36 -070011610 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011611 }
11612
Ladi Prosek1fb883b2017-04-04 14:18:53 +020011613 if (enable_pml) {
11614 /*
11615 * Conceptually we want to copy the PML address and index from
11616 * vmcs01 here, and then back to vmcs01 on nested vmexit. But,
11617 * since we always flush the log on each vmexit, this happens
11618 * to be equivalent to simply resetting the fields in vmcs02.
11619 */
11620 ASSERT(vmx->pml_pg);
11621 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
11622 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
11623 }
11624
Nadav Har'El155a97a2013-08-05 11:07:16 +030011625 if (nested_cpu_has_ept(vmcs12)) {
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020011626 if (nested_ept_init_mmu_context(vcpu)) {
11627 *entry_failure_code = ENTRY_FAIL_DEFAULT;
11628 return 1;
11629 }
Jim Mattsonfb6c8192017-03-16 13:53:59 -070011630 } else if (nested_cpu_has2(vmcs12,
11631 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Junaid Shahida468f2d2018-04-26 13:09:50 -070011632 vmx_flush_tlb(vcpu, true);
Nadav Har'El155a97a2013-08-05 11:07:16 +030011633 }
11634
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011635 /*
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011636 * This sets GUEST_CR0 to vmcs12->guest_cr0, possibly modifying those
11637 * bits which we consider mandatory enabled.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011638 * The CR0_READ_SHADOW is what L2 should have expected to read given
11639 * the specifications by L1; It's not enough to take
11640 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
11641 * have more bits than L1 expected.
11642 */
11643 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
11644 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
11645
11646 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
11647 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
11648
Jim Mattson6514dc32018-04-26 16:09:12 -070011649 if (vmx->nested.nested_run_pending &&
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011650 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER))
David Matlack5a6a9742016-11-29 18:14:10 -080011651 vcpu->arch.efer = vmcs12->guest_ia32_efer;
11652 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
11653 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
11654 else
11655 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
11656 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
11657 vmx_set_efer(vcpu, vcpu->arch.efer);
11658
Sean Christopherson2bb8caf2018-03-12 10:56:13 -070011659 /*
11660 * Guest state is invalid and unrestricted guest is disabled,
11661 * which means L1 attempted VMEntry to L2 with invalid state.
11662 * Fail the VMEntry.
11663 */
Paolo Bonzini3184a992018-03-21 14:20:18 +010011664 if (vmx->emulation_required) {
11665 *entry_failure_code = ENTRY_FAIL_DEFAULT;
Sean Christopherson2bb8caf2018-03-12 10:56:13 -070011666 return 1;
Paolo Bonzini3184a992018-03-21 14:20:18 +010011667 }
Sean Christopherson2bb8caf2018-03-12 10:56:13 -070011668
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011669 /* Shadow page tables on either EPT or shadow page tables. */
Ladi Prosek7ad658b2017-03-23 07:18:08 +010011670 if (nested_vmx_load_cr3(vcpu, vmcs12->guest_cr3, nested_cpu_has_ept(vmcs12),
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011671 entry_failure_code))
11672 return 1;
Ladi Prosek7ca29de2016-11-30 16:03:08 +010011673
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030011674 if (!enable_ept)
11675 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
11676
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011677 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
11678 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
Ladi Prosekee146c12016-11-30 16:03:09 +010011679 return 0;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011680}
11681
Krish Sadhukhan0c7f6502018-02-20 21:24:39 -050011682static int nested_vmx_check_nmi_controls(struct vmcs12 *vmcs12)
11683{
11684 if (!nested_cpu_has_nmi_exiting(vmcs12) &&
11685 nested_cpu_has_virtual_nmis(vmcs12))
11686 return -EINVAL;
11687
11688 if (!nested_cpu_has_virtual_nmis(vmcs12) &&
11689 nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING))
11690 return -EINVAL;
11691
11692 return 0;
11693}
11694
Jim Mattsonca0bde22016-11-30 12:03:46 -080011695static int check_vmentry_prereqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
11696{
11697 struct vcpu_vmx *vmx = to_vmx(vcpu);
11698
11699 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
11700 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT)
11701 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11702
Jim Mattson56a20512017-07-06 16:33:06 -070011703 if (nested_vmx_check_io_bitmap_controls(vcpu, vmcs12))
11704 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11705
Jim Mattsonca0bde22016-11-30 12:03:46 -080011706 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12))
11707 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11708
Krish Sadhukhanf0f4cf52018-04-11 01:10:16 -040011709 if (nested_vmx_check_apic_access_controls(vcpu, vmcs12))
11710 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11711
Jim Mattson712b12d2017-08-24 13:24:47 -070011712 if (nested_vmx_check_tpr_shadow_controls(vcpu, vmcs12))
11713 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11714
Jim Mattsonca0bde22016-11-30 12:03:46 -080011715 if (nested_vmx_check_apicv_controls(vcpu, vmcs12))
11716 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11717
11718 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12))
11719 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11720
Bandan Dasc5f983f2017-05-05 15:25:14 -040011721 if (nested_vmx_check_pml_controls(vcpu, vmcs12))
11722 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11723
Jim Mattsonca0bde22016-11-30 12:03:46 -080011724 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011725 vmx->nested.msrs.procbased_ctls_low,
11726 vmx->nested.msrs.procbased_ctls_high) ||
Jim Mattson2e5b0bd2017-05-04 11:51:58 -070011727 (nested_cpu_has(vmcs12, CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
11728 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011729 vmx->nested.msrs.secondary_ctls_low,
11730 vmx->nested.msrs.secondary_ctls_high)) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080011731 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011732 vmx->nested.msrs.pinbased_ctls_low,
11733 vmx->nested.msrs.pinbased_ctls_high) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080011734 !vmx_control_verify(vmcs12->vm_exit_controls,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011735 vmx->nested.msrs.exit_ctls_low,
11736 vmx->nested.msrs.exit_ctls_high) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080011737 !vmx_control_verify(vmcs12->vm_entry_controls,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011738 vmx->nested.msrs.entry_ctls_low,
11739 vmx->nested.msrs.entry_ctls_high))
Jim Mattsonca0bde22016-11-30 12:03:46 -080011740 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11741
Krish Sadhukhan0c7f6502018-02-20 21:24:39 -050011742 if (nested_vmx_check_nmi_controls(vmcs12))
Jim Mattsonca0bde22016-11-30 12:03:46 -080011743 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11744
Bandan Das41ab9372017-08-03 15:54:43 -040011745 if (nested_cpu_has_vmfunc(vmcs12)) {
11746 if (vmcs12->vm_function_control &
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011747 ~vmx->nested.msrs.vmfunc_controls)
Bandan Das41ab9372017-08-03 15:54:43 -040011748 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11749
11750 if (nested_cpu_has_eptp_switching(vmcs12)) {
11751 if (!nested_cpu_has_ept(vmcs12) ||
11752 !page_address_valid(vcpu, vmcs12->eptp_list_address))
11753 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11754 }
11755 }
Bandan Das27c42a12017-08-03 15:54:42 -040011756
Jim Mattsonc7c2c702017-05-05 11:28:09 -070011757 if (vmcs12->cr3_target_count > nested_cpu_vmx_misc_cr3_count(vcpu))
11758 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11759
Jim Mattsonca0bde22016-11-30 12:03:46 -080011760 if (!nested_host_cr0_valid(vcpu, vmcs12->host_cr0) ||
11761 !nested_host_cr4_valid(vcpu, vmcs12->host_cr4) ||
11762 !nested_cr3_valid(vcpu, vmcs12->host_cr3))
11763 return VMXERR_ENTRY_INVALID_HOST_STATE_FIELD;
11764
11765 return 0;
11766}
11767
11768static int check_vmentry_postreqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
11769 u32 *exit_qual)
11770{
11771 bool ia32e;
11772
11773 *exit_qual = ENTRY_FAIL_DEFAULT;
11774
11775 if (!nested_guest_cr0_valid(vcpu, vmcs12->guest_cr0) ||
11776 !nested_guest_cr4_valid(vcpu, vmcs12->guest_cr4))
11777 return 1;
11778
11779 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_SHADOW_VMCS) &&
11780 vmcs12->vmcs_link_pointer != -1ull) {
11781 *exit_qual = ENTRY_FAIL_VMCS_LINK_PTR;
11782 return 1;
11783 }
11784
11785 /*
11786 * If the load IA32_EFER VM-entry control is 1, the following checks
11787 * are performed on the field for the IA32_EFER MSR:
11788 * - Bits reserved in the IA32_EFER MSR must be 0.
11789 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
11790 * the IA-32e mode guest VM-exit control. It must also be identical
11791 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
11792 * CR0.PG) is 1.
11793 */
11794 if (to_vmx(vcpu)->nested.nested_run_pending &&
11795 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) {
11796 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
11797 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
11798 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
11799 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
11800 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME)))
11801 return 1;
11802 }
11803
11804 /*
11805 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
11806 * IA32_EFER MSR must be 0 in the field for that register. In addition,
11807 * the values of the LMA and LME bits in the field must each be that of
11808 * the host address-space size VM-exit control.
11809 */
11810 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
11811 ia32e = (vmcs12->vm_exit_controls &
11812 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
11813 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
11814 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
11815 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME))
11816 return 1;
11817 }
11818
Wanpeng Lif1b026a2017-11-05 16:54:48 -080011819 if ((vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS) &&
11820 (is_noncanonical_address(vmcs12->guest_bndcfgs & PAGE_MASK, vcpu) ||
11821 (vmcs12->guest_bndcfgs & MSR_IA32_BNDCFGS_RSVD)))
11822 return 1;
11823
Jim Mattsonca0bde22016-11-30 12:03:46 -080011824 return 0;
11825}
11826
Jim Mattson6514dc32018-04-26 16:09:12 -070011827static int enter_vmx_non_root_mode(struct kvm_vcpu *vcpu)
Jim Mattson858e25c2016-11-30 12:03:47 -080011828{
11829 struct vcpu_vmx *vmx = to_vmx(vcpu);
11830 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jim Mattson858e25c2016-11-30 12:03:47 -080011831 u32 msr_entry_idx;
11832 u32 exit_qual;
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020011833 int r;
Jim Mattson858e25c2016-11-30 12:03:47 -080011834
Jim Mattson858e25c2016-11-30 12:03:47 -080011835 enter_guest_mode(vcpu);
11836
11837 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
11838 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
11839
Jim Mattsonde3a0022017-11-27 17:22:25 -060011840 vmx_switch_vmcs(vcpu, &vmx->nested.vmcs02);
Jim Mattson858e25c2016-11-30 12:03:47 -080011841 vmx_segment_cache_clear(vmx);
11842
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020011843 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
11844 vcpu->arch.tsc_offset += vmcs12->tsc_offset;
11845
11846 r = EXIT_REASON_INVALID_STATE;
Jim Mattson6514dc32018-04-26 16:09:12 -070011847 if (prepare_vmcs02(vcpu, vmcs12, &exit_qual))
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020011848 goto fail;
Jim Mattson858e25c2016-11-30 12:03:47 -080011849
11850 nested_get_vmcs12_pages(vcpu, vmcs12);
11851
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020011852 r = EXIT_REASON_MSR_LOAD_FAIL;
Jim Mattson858e25c2016-11-30 12:03:47 -080011853 msr_entry_idx = nested_vmx_load_msr(vcpu,
11854 vmcs12->vm_entry_msr_load_addr,
11855 vmcs12->vm_entry_msr_load_count);
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020011856 if (msr_entry_idx)
11857 goto fail;
Jim Mattson858e25c2016-11-30 12:03:47 -080011858
Jim Mattson858e25c2016-11-30 12:03:47 -080011859 /*
11860 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
11861 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
11862 * returned as far as L1 is concerned. It will only return (and set
11863 * the success flag) when L2 exits (see nested_vmx_vmexit()).
11864 */
11865 return 0;
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020011866
11867fail:
11868 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
11869 vcpu->arch.tsc_offset -= vmcs12->tsc_offset;
11870 leave_guest_mode(vcpu);
11871 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
11872 nested_vmx_entry_failure(vcpu, vmcs12, r, exit_qual);
11873 return 1;
Jim Mattson858e25c2016-11-30 12:03:47 -080011874}
11875
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030011876/*
11877 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
11878 * for running an L2 nested guest.
11879 */
11880static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
11881{
11882 struct vmcs12 *vmcs12;
11883 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070011884 u32 interrupt_shadow = vmx_get_interrupt_shadow(vcpu);
Jim Mattsonca0bde22016-11-30 12:03:46 -080011885 u32 exit_qual;
11886 int ret;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030011887
Kyle Hueyeb277562016-11-29 12:40:39 -080011888 if (!nested_vmx_check_permission(vcpu))
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030011889 return 1;
11890
Kyle Hueyeb277562016-11-29 12:40:39 -080011891 if (!nested_vmx_check_vmcs12(vcpu))
11892 goto out;
11893
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030011894 vmcs12 = get_vmcs12(vcpu);
11895
Abel Gordon012f83c2013-04-18 14:39:25 +030011896 if (enable_shadow_vmcs)
11897 copy_shadow_to_vmcs12(vmx);
11898
Nadav Har'El7c177932011-05-25 23:12:04 +030011899 /*
11900 * The nested entry process starts with enforcing various prerequisites
11901 * on vmcs12 as required by the Intel SDM, and act appropriately when
11902 * they fail: As the SDM explains, some conditions should cause the
11903 * instruction to fail, while others will cause the instruction to seem
11904 * to succeed, but return an EXIT_REASON_INVALID_STATE.
11905 * To speed up the normal (success) code path, we should avoid checking
11906 * for misconfigurations which will anyway be caught by the processor
11907 * when using the merged vmcs02.
11908 */
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070011909 if (interrupt_shadow & KVM_X86_SHADOW_INT_MOV_SS) {
11910 nested_vmx_failValid(vcpu,
11911 VMXERR_ENTRY_EVENTS_BLOCKED_BY_MOV_SS);
11912 goto out;
11913 }
11914
Nadav Har'El7c177932011-05-25 23:12:04 +030011915 if (vmcs12->launch_state == launch) {
11916 nested_vmx_failValid(vcpu,
11917 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
11918 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
Kyle Hueyeb277562016-11-29 12:40:39 -080011919 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030011920 }
11921
Jim Mattsonca0bde22016-11-30 12:03:46 -080011922 ret = check_vmentry_prereqs(vcpu, vmcs12);
11923 if (ret) {
11924 nested_vmx_failValid(vcpu, ret);
Kyle Hueyeb277562016-11-29 12:40:39 -080011925 goto out;
Paolo Bonzini26539bd2013-04-15 15:00:27 +020011926 }
11927
Nadav Har'El7c177932011-05-25 23:12:04 +030011928 /*
Jim Mattsonca0bde22016-11-30 12:03:46 -080011929 * After this point, the trap flag no longer triggers a singlestep trap
11930 * on the vm entry instructions; don't call kvm_skip_emulated_instruction.
11931 * This is not 100% correct; for performance reasons, we delegate most
11932 * of the checks on host state to the processor. If those fail,
11933 * the singlestep trap is missed.
Jan Kiszka384bb782013-04-20 10:52:36 +020011934 */
Jim Mattsonca0bde22016-11-30 12:03:46 -080011935 skip_emulated_instruction(vcpu);
Jan Kiszka384bb782013-04-20 10:52:36 +020011936
Jim Mattsonca0bde22016-11-30 12:03:46 -080011937 ret = check_vmentry_postreqs(vcpu, vmcs12, &exit_qual);
11938 if (ret) {
11939 nested_vmx_entry_failure(vcpu, vmcs12,
11940 EXIT_REASON_INVALID_STATE, exit_qual);
11941 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +020011942 }
11943
11944 /*
Nadav Har'El7c177932011-05-25 23:12:04 +030011945 * We're finally done with prerequisite checking, and can start with
11946 * the nested entry.
11947 */
11948
Jim Mattson6514dc32018-04-26 16:09:12 -070011949 vmx->nested.nested_run_pending = 1;
11950 ret = enter_vmx_non_root_mode(vcpu);
11951 if (ret) {
11952 vmx->nested.nested_run_pending = 0;
Jim Mattson858e25c2016-11-30 12:03:47 -080011953 return ret;
Jim Mattson6514dc32018-04-26 16:09:12 -070011954 }
Wincy Vanff651cb2014-12-11 08:52:58 +030011955
Paolo Bonzinic595cee2018-07-02 13:07:14 +020011956 /* Hide L1D cache contents from the nested guest. */
11957 vmx->vcpu.arch.l1tf_flush_l1d = true;
11958
Chao Gao135a06c2018-02-11 10:06:30 +080011959 /*
11960 * If we're entering a halted L2 vcpu and the L2 vcpu won't be woken
11961 * by event injection, halt vcpu.
11962 */
11963 if ((vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT) &&
Jim Mattson6514dc32018-04-26 16:09:12 -070011964 !(vmcs12->vm_entry_intr_info_field & INTR_INFO_VALID_MASK)) {
11965 vmx->nested.nested_run_pending = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -060011966 return kvm_vcpu_halt(vcpu);
Jim Mattson6514dc32018-04-26 16:09:12 -070011967 }
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030011968 return 1;
Kyle Hueyeb277562016-11-29 12:40:39 -080011969
11970out:
Kyle Huey6affcbe2016-11-29 12:40:40 -080011971 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030011972}
11973
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011974/*
11975 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
11976 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
11977 * This function returns the new value we should put in vmcs12.guest_cr0.
11978 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
11979 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
11980 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
11981 * didn't trap the bit, because if L1 did, so would L0).
11982 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
11983 * been modified by L2, and L1 knows it. So just leave the old value of
11984 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
11985 * isn't relevant, because if L0 traps this bit it can set it to anything.
11986 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
11987 * changed these bits, and therefore they need to be updated, but L0
11988 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
11989 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
11990 */
11991static inline unsigned long
11992vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
11993{
11994 return
11995 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
11996 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
11997 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
11998 vcpu->arch.cr0_guest_owned_bits));
11999}
12000
12001static inline unsigned long
12002vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
12003{
12004 return
12005 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
12006 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
12007 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
12008 vcpu->arch.cr4_guest_owned_bits));
12009}
12010
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012011static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
12012 struct vmcs12 *vmcs12)
12013{
12014 u32 idt_vectoring;
12015 unsigned int nr;
12016
Wanpeng Li664f8e22017-08-24 03:35:09 -070012017 if (vcpu->arch.exception.injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012018 nr = vcpu->arch.exception.nr;
12019 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
12020
12021 if (kvm_exception_is_soft(nr)) {
12022 vmcs12->vm_exit_instruction_len =
12023 vcpu->arch.event_exit_inst_len;
12024 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
12025 } else
12026 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
12027
12028 if (vcpu->arch.exception.has_error_code) {
12029 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
12030 vmcs12->idt_vectoring_error_code =
12031 vcpu->arch.exception.error_code;
12032 }
12033
12034 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010012035 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012036 vmcs12->idt_vectoring_info_field =
12037 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
Liran Alon04140b42018-03-23 03:01:31 +030012038 } else if (vcpu->arch.interrupt.injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012039 nr = vcpu->arch.interrupt.nr;
12040 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
12041
12042 if (vcpu->arch.interrupt.soft) {
12043 idt_vectoring |= INTR_TYPE_SOFT_INTR;
12044 vmcs12->vm_entry_instruction_len =
12045 vcpu->arch.event_exit_inst_len;
12046 } else
12047 idt_vectoring |= INTR_TYPE_EXT_INTR;
12048
12049 vmcs12->idt_vectoring_info_field = idt_vectoring;
12050 }
12051}
12052
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012053static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
12054{
12055 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Libfcf83b2017-08-24 03:35:11 -070012056 unsigned long exit_qual;
Liran Alon917dc602017-11-05 16:07:43 +020012057 bool block_nested_events =
12058 vmx->nested.nested_run_pending || kvm_event_needs_reinjection(vcpu);
Wanpeng Liacc9ab62017-02-27 04:24:39 -080012059
Wanpeng Libfcf83b2017-08-24 03:35:11 -070012060 if (vcpu->arch.exception.pending &&
12061 nested_vmx_check_exception(vcpu, &exit_qual)) {
Liran Alon917dc602017-11-05 16:07:43 +020012062 if (block_nested_events)
Wanpeng Libfcf83b2017-08-24 03:35:11 -070012063 return -EBUSY;
12064 nested_vmx_inject_exception_vmexit(vcpu, exit_qual);
Wanpeng Libfcf83b2017-08-24 03:35:11 -070012065 return 0;
12066 }
12067
Jan Kiszkaf4124502014-03-07 20:03:13 +010012068 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
12069 vmx->nested.preemption_timer_expired) {
Liran Alon917dc602017-11-05 16:07:43 +020012070 if (block_nested_events)
Jan Kiszkaf4124502014-03-07 20:03:13 +010012071 return -EBUSY;
12072 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
12073 return 0;
12074 }
12075
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012076 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Liran Alon917dc602017-11-05 16:07:43 +020012077 if (block_nested_events)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012078 return -EBUSY;
12079 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
12080 NMI_VECTOR | INTR_TYPE_NMI_INTR |
12081 INTR_INFO_VALID_MASK, 0);
12082 /*
12083 * The NMI-triggered VM exit counts as injection:
12084 * clear this one and block further NMIs.
12085 */
12086 vcpu->arch.nmi_pending = 0;
12087 vmx_set_nmi_mask(vcpu, true);
12088 return 0;
12089 }
12090
12091 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
12092 nested_exit_on_intr(vcpu)) {
Liran Alon917dc602017-11-05 16:07:43 +020012093 if (block_nested_events)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012094 return -EBUSY;
12095 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080012096 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012097 }
12098
David Hildenbrand6342c502017-01-25 11:58:58 +010012099 vmx_complete_nested_posted_interrupt(vcpu);
12100 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012101}
12102
Jan Kiszkaf4124502014-03-07 20:03:13 +010012103static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
12104{
12105 ktime_t remaining =
12106 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
12107 u64 value;
12108
12109 if (ktime_to_ns(remaining) <= 0)
12110 return 0;
12111
12112 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
12113 do_div(value, 1000000);
12114 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
12115}
12116
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012117/*
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012118 * Update the guest state fields of vmcs12 to reflect changes that
12119 * occurred while L2 was running. (The "IA-32e mode guest" bit of the
12120 * VM-entry controls is also updated, since this is really a guest
12121 * state bit.)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012122 */
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012123static void sync_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012124{
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012125 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
12126 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
12127
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012128 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
12129 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
12130 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
12131
12132 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
12133 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
12134 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
12135 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
12136 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
12137 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
12138 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
12139 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
12140 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
12141 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
12142 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
12143 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
12144 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
12145 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
12146 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
12147 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
12148 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
12149 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
12150 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
12151 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
12152 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
12153 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
12154 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
12155 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
12156 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
12157 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
12158 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
12159 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
12160 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
12161 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
12162 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
12163 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
12164 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
12165 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
12166 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
12167 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
12168
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012169 vmcs12->guest_interruptibility_info =
12170 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
12171 vmcs12->guest_pending_dbg_exceptions =
12172 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010012173 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
12174 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
12175 else
12176 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012177
Jan Kiszkaf4124502014-03-07 20:03:13 +010012178 if (nested_cpu_has_preemption_timer(vmcs12)) {
12179 if (vmcs12->vm_exit_controls &
12180 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
12181 vmcs12->vmx_preemption_timer_value =
12182 vmx_get_preemption_timer_value(vcpu);
12183 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
12184 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080012185
Nadav Har'El3633cfc2013-08-05 11:07:07 +030012186 /*
12187 * In some cases (usually, nested EPT), L2 is allowed to change its
12188 * own CR3 without exiting. If it has changed it, we must keep it.
12189 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
12190 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
12191 *
12192 * Additionally, restore L2's PDPTR to vmcs12.
12193 */
12194 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010012195 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030012196 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
12197 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
12198 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
12199 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
12200 }
12201
Jim Mattsond281e132017-06-01 12:44:46 -070012202 vmcs12->guest_linear_address = vmcs_readl(GUEST_LINEAR_ADDRESS);
Jan Dakinevich119a9c02016-09-04 21:22:47 +030012203
Wincy Van608406e2015-02-03 23:57:51 +080012204 if (nested_cpu_has_vid(vmcs12))
12205 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
12206
Jan Kiszkac18911a2013-03-13 16:06:41 +010012207 vmcs12->vm_entry_controls =
12208 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020012209 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010012210
Jan Kiszka2996fca2014-06-16 13:59:43 +020012211 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
12212 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
12213 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
12214 }
12215
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012216 /* TODO: These cannot have changed unless we have MSR bitmaps and
12217 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020012218 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012219 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020012220 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
12221 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012222 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
12223 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
12224 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzinia87036a2016-03-08 09:52:13 +010012225 if (kvm_mpx_supported())
Paolo Bonzini36be0b92014-02-24 12:30:04 +010012226 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012227}
12228
12229/*
12230 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
12231 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
12232 * and this function updates it to reflect the changes to the guest state while
12233 * L2 was running (and perhaps made some exits which were handled directly by L0
12234 * without going back to L1), and to reflect the exit reason.
12235 * Note that we do not have to copy here all VMCS fields, just those that
12236 * could have changed by the L2 guest or the exit - i.e., the guest-state and
12237 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
12238 * which already writes to vmcs12 directly.
12239 */
12240static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
12241 u32 exit_reason, u32 exit_intr_info,
12242 unsigned long exit_qualification)
12243{
12244 /* update guest state fields: */
12245 sync_vmcs12(vcpu, vmcs12);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012246
12247 /* update exit information fields: */
12248
Jan Kiszka533558b2014-01-04 18:47:20 +010012249 vmcs12->vm_exit_reason = exit_reason;
12250 vmcs12->exit_qualification = exit_qualification;
Jan Kiszka533558b2014-01-04 18:47:20 +010012251 vmcs12->vm_exit_intr_info = exit_intr_info;
Paolo Bonzini7313c692017-07-27 10:31:25 +020012252
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012253 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012254 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
12255 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
12256
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012257 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
Jim Mattson7cdc2d62017-07-06 16:33:05 -070012258 vmcs12->launch_state = 1;
12259
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012260 /* vm_entry_intr_info_field is cleared on exit. Emulate this
12261 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012262 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012263
12264 /*
12265 * Transfer the event that L0 or L1 may wanted to inject into
12266 * L2 to IDT_VECTORING_INFO_FIELD.
12267 */
12268 vmcs12_save_pending_event(vcpu, vmcs12);
12269 }
12270
12271 /*
12272 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
12273 * preserved above and would only end up incorrectly in L1.
12274 */
12275 vcpu->arch.nmi_injected = false;
12276 kvm_clear_exception_queue(vcpu);
12277 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012278}
12279
Wanpeng Li5af41572017-11-05 16:54:49 -080012280static void load_vmcs12_mmu_host_state(struct kvm_vcpu *vcpu,
12281 struct vmcs12 *vmcs12)
12282{
12283 u32 entry_failure_code;
12284
12285 nested_ept_uninit_mmu_context(vcpu);
12286
12287 /*
12288 * Only PDPTE load can fail as the value of cr3 was checked on entry and
12289 * couldn't have changed.
12290 */
12291 if (nested_vmx_load_cr3(vcpu, vmcs12->host_cr3, false, &entry_failure_code))
12292 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_PDPTE_FAIL);
12293
12294 if (!enable_ept)
12295 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
12296}
12297
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012298/*
12299 * A part of what we need to when the nested L2 guest exits and we want to
12300 * run its L1 parent, is to reset L1's guest state to the host state specified
12301 * in vmcs12.
12302 * This function is to be called not only on normal nested exit, but also on
12303 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
12304 * Failures During or After Loading Guest State").
12305 * This function should be called when the active VMCS is L1's (vmcs01).
12306 */
Jan Kiszka733568f2013-02-23 15:07:47 +010012307static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
12308 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012309{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080012310 struct kvm_segment seg;
12311
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012312 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
12313 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020012314 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012315 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
12316 else
12317 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
12318 vmx_set_efer(vcpu, vcpu->arch.efer);
12319
12320 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
12321 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070012322 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012323 /*
12324 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080012325 * actually changed, because vmx_set_cr0 refers to efer set above.
12326 *
12327 * CR0_GUEST_HOST_MASK is already set in the original vmcs01
12328 * (KVM doesn't change it);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012329 */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080012330 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Jan Kiszka9e3e4db2013-09-03 21:11:45 +020012331 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012332
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080012333 /* Same as above - no reason to call set_cr4_guest_host_mask(). */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012334 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
Haozhong Zhang8eb3f872017-10-10 15:01:22 +080012335 vmx_set_cr4(vcpu, vmcs12->host_cr4);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012336
Wanpeng Li5af41572017-11-05 16:54:49 -080012337 load_vmcs12_mmu_host_state(vcpu, vmcs12);
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030012338
Liran Alon6f1e03b2018-05-22 17:16:14 +030012339 /*
12340 * If vmcs01 don't use VPID, CPU flushes TLB on every
12341 * VMEntry/VMExit. Thus, no need to flush TLB.
12342 *
12343 * If vmcs12 uses VPID, TLB entries populated by L2 are
12344 * tagged with vmx->nested.vpid02 while L1 entries are tagged
12345 * with vmx->vpid. Thus, no need to flush TLB.
12346 *
12347 * Therefore, flush TLB only in case vmcs01 uses VPID and
12348 * vmcs12 don't use VPID as in this case L1 & L2 TLB entries
12349 * are both tagged with vmx->vpid.
12350 */
12351 if (enable_vpid &&
12352 !(nested_cpu_has_vpid(vmcs12) && to_vmx(vcpu)->nested.vpid02)) {
Wanpeng Lic2ba05c2017-12-12 17:33:03 -080012353 vmx_flush_tlb(vcpu, true);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012354 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012355
12356 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
12357 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
12358 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
12359 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
12360 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Ladi Prosek21f2d552017-10-11 16:54:42 +020012361 vmcs_write32(GUEST_IDTR_LIMIT, 0xFFFF);
12362 vmcs_write32(GUEST_GDTR_LIMIT, 0xFFFF);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012363
Paolo Bonzini36be0b92014-02-24 12:30:04 +010012364 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
12365 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
12366 vmcs_write64(GUEST_BNDCFGS, 0);
12367
Jan Kiszka44811c02013-08-04 17:17:27 +020012368 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012369 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020012370 vcpu->arch.pat = vmcs12->host_ia32_pat;
12371 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012372 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
12373 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
12374 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010012375
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080012376 /* Set L1 segment info according to Intel SDM
12377 27.5.2 Loading Host Segment and Descriptor-Table Registers */
12378 seg = (struct kvm_segment) {
12379 .base = 0,
12380 .limit = 0xFFFFFFFF,
12381 .selector = vmcs12->host_cs_selector,
12382 .type = 11,
12383 .present = 1,
12384 .s = 1,
12385 .g = 1
12386 };
12387 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
12388 seg.l = 1;
12389 else
12390 seg.db = 1;
12391 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
12392 seg = (struct kvm_segment) {
12393 .base = 0,
12394 .limit = 0xFFFFFFFF,
12395 .type = 3,
12396 .present = 1,
12397 .s = 1,
12398 .db = 1,
12399 .g = 1
12400 };
12401 seg.selector = vmcs12->host_ds_selector;
12402 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
12403 seg.selector = vmcs12->host_es_selector;
12404 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
12405 seg.selector = vmcs12->host_ss_selector;
12406 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
12407 seg.selector = vmcs12->host_fs_selector;
12408 seg.base = vmcs12->host_fs_base;
12409 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
12410 seg.selector = vmcs12->host_gs_selector;
12411 seg.base = vmcs12->host_gs_base;
12412 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
12413 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030012414 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080012415 .limit = 0x67,
12416 .selector = vmcs12->host_tr_selector,
12417 .type = 11,
12418 .present = 1
12419 };
12420 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
12421
Jan Kiszka503cd0c2013-03-03 13:05:44 +010012422 kvm_set_dr(vcpu, 7, 0x400);
12423 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030012424
Wincy Van3af18d92015-02-03 23:49:31 +080012425 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +010012426 vmx_update_msr_bitmap(vcpu);
Wincy Van3af18d92015-02-03 23:49:31 +080012427
Wincy Vanff651cb2014-12-11 08:52:58 +030012428 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
12429 vmcs12->vm_exit_msr_load_count))
12430 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012431}
12432
12433/*
12434 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
12435 * and modify vmcs12 to make it see what it would expect to see there if
12436 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
12437 */
Jan Kiszka533558b2014-01-04 18:47:20 +010012438static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
12439 u32 exit_intr_info,
12440 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012441{
12442 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012443 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
12444
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012445 /* trying to cancel vmlaunch/vmresume is a bug */
12446 WARN_ON_ONCE(vmx->nested.nested_run_pending);
12447
Wanpeng Li6550c4d2017-07-31 19:25:27 -070012448 /*
Jim Mattson4f350c62017-09-14 16:31:44 -070012449 * The only expected VM-instruction error is "VM entry with
12450 * invalid control field(s)." Anything else indicates a
12451 * problem with L0.
Wanpeng Li6550c4d2017-07-31 19:25:27 -070012452 */
Jim Mattson4f350c62017-09-14 16:31:44 -070012453 WARN_ON_ONCE(vmx->fail && (vmcs_read32(VM_INSTRUCTION_ERROR) !=
12454 VMXERR_ENTRY_INVALID_CONTROL_FIELD));
12455
12456 leave_guest_mode(vcpu);
12457
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020012458 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
12459 vcpu->arch.tsc_offset -= vmcs12->tsc_offset;
12460
Jim Mattson4f350c62017-09-14 16:31:44 -070012461 if (likely(!vmx->fail)) {
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020012462 if (exit_reason == -1)
12463 sync_vmcs12(vcpu, vmcs12);
12464 else
12465 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
12466 exit_qualification);
Jim Mattson4f350c62017-09-14 16:31:44 -070012467
12468 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
12469 vmcs12->vm_exit_msr_store_count))
12470 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
Bandan Das77b0f5d2014-04-19 18:17:45 -040012471 }
12472
Jim Mattson4f350c62017-09-14 16:31:44 -070012473 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Paolo Bonzini8391ce42016-07-07 14:58:33 +020012474 vm_entry_controls_reset_shadow(vmx);
12475 vm_exit_controls_reset_shadow(vmx);
Jan Kiszka36c3cc42013-02-23 22:35:37 +010012476 vmx_segment_cache_clear(vmx);
12477
Paolo Bonzini93140062016-07-06 13:23:51 +020012478 /* Update any VMCS fields that might have changed while L2 ran */
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -040012479 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.host.nr);
12480 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.guest.nr);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010012481 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Paolo Bonzini93140062016-07-06 13:23:51 +020012482 if (vmx->hv_deadline_tsc == -1)
12483 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
12484 PIN_BASED_VMX_PREEMPTION_TIMER);
12485 else
12486 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
12487 PIN_BASED_VMX_PREEMPTION_TIMER);
Peter Feinerc95ba922016-08-17 09:36:47 -070012488 if (kvm_has_tsc_control)
12489 decache_tsc_multiplier(vmx);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012490
Jim Mattson8d860bb2018-05-09 16:56:05 -040012491 if (vmx->nested.change_vmcs01_virtual_apic_mode) {
12492 vmx->nested.change_vmcs01_virtual_apic_mode = false;
12493 vmx_set_virtual_apic_mode(vcpu);
Jim Mattsonfb6c8192017-03-16 13:53:59 -070012494 } else if (!nested_cpu_has_ept(vmcs12) &&
12495 nested_cpu_has2(vmcs12,
12496 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Junaid Shahida468f2d2018-04-26 13:09:50 -070012497 vmx_flush_tlb(vcpu, true);
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020012498 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012499
12500 /* This is needed for same reason as it was needed in prepare_vmcs02 */
12501 vmx->host_rsp = 0;
12502
12503 /* Unpin physical memory we referred to in vmcs02 */
12504 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020012505 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020012506 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012507 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080012508 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020012509 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020012510 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080012511 }
Wincy Van705699a2015-02-03 23:58:17 +080012512 if (vmx->nested.pi_desc_page) {
12513 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020012514 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +080012515 vmx->nested.pi_desc_page = NULL;
12516 vmx->nested.pi_desc = NULL;
12517 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012518
12519 /*
Tang Chen38b99172014-09-24 15:57:54 +080012520 * We are now running in L2, mmu_notifier will force to reload the
12521 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
12522 */
Wanpeng Lic83b6d12016-09-06 17:20:33 +080012523 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Tang Chen38b99172014-09-24 15:57:54 +080012524
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020012525 if (enable_shadow_vmcs && exit_reason != -1)
Abel Gordon012f83c2013-04-18 14:39:25 +030012526 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012527
12528 /* in case we halted in L2 */
12529 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Jim Mattson4f350c62017-09-14 16:31:44 -070012530
12531 if (likely(!vmx->fail)) {
12532 /*
12533 * TODO: SDM says that with acknowledge interrupt on
12534 * exit, bit 31 of the VM-exit interrupt information
12535 * (valid interrupt) is always set to 1 on
12536 * EXIT_REASON_EXTERNAL_INTERRUPT, so we shouldn't
12537 * need kvm_cpu_has_interrupt(). See the commit
12538 * message for details.
12539 */
12540 if (nested_exit_intr_ack_set(vcpu) &&
12541 exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT &&
12542 kvm_cpu_has_interrupt(vcpu)) {
12543 int irq = kvm_cpu_get_interrupt(vcpu);
12544 WARN_ON(irq < 0);
12545 vmcs12->vm_exit_intr_info = irq |
12546 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
12547 }
12548
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020012549 if (exit_reason != -1)
12550 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
12551 vmcs12->exit_qualification,
12552 vmcs12->idt_vectoring_info_field,
12553 vmcs12->vm_exit_intr_info,
12554 vmcs12->vm_exit_intr_error_code,
12555 KVM_ISA_VMX);
Jim Mattson4f350c62017-09-14 16:31:44 -070012556
12557 load_vmcs12_host_state(vcpu, vmcs12);
12558
12559 return;
12560 }
12561
12562 /*
12563 * After an early L2 VM-entry failure, we're now back
12564 * in L1 which thinks it just finished a VMLAUNCH or
12565 * VMRESUME instruction, so we need to set the failure
12566 * flag and the VM-instruction error field of the VMCS
12567 * accordingly.
12568 */
12569 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
Wanpeng Li5af41572017-11-05 16:54:49 -080012570
12571 load_vmcs12_mmu_host_state(vcpu, vmcs12);
12572
Jim Mattson4f350c62017-09-14 16:31:44 -070012573 /*
12574 * The emulated instruction was already skipped in
12575 * nested_vmx_run, but the updated RIP was never
12576 * written back to the vmcs01.
12577 */
12578 skip_emulated_instruction(vcpu);
12579 vmx->fail = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012580}
12581
Nadav Har'El7c177932011-05-25 23:12:04 +030012582/*
Jan Kiszka42124922014-01-04 18:47:19 +010012583 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
12584 */
12585static void vmx_leave_nested(struct kvm_vcpu *vcpu)
12586{
Wanpeng Li2f707d92017-03-06 04:03:28 -080012587 if (is_guest_mode(vcpu)) {
12588 to_vmx(vcpu)->nested.nested_run_pending = 0;
Jan Kiszka533558b2014-01-04 18:47:20 +010012589 nested_vmx_vmexit(vcpu, -1, 0, 0);
Wanpeng Li2f707d92017-03-06 04:03:28 -080012590 }
Jan Kiszka42124922014-01-04 18:47:19 +010012591 free_nested(to_vmx(vcpu));
12592}
12593
12594/*
Nadav Har'El7c177932011-05-25 23:12:04 +030012595 * L1's failure to enter L2 is a subset of a normal exit, as explained in
12596 * 23.7 "VM-entry failures during or after loading guest state" (this also
12597 * lists the acceptable exit-reason and exit-qualification parameters).
12598 * It should only be called before L2 actually succeeded to run, and when
12599 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
12600 */
12601static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
12602 struct vmcs12 *vmcs12,
12603 u32 reason, unsigned long qualification)
12604{
12605 load_vmcs12_host_state(vcpu, vmcs12);
12606 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
12607 vmcs12->exit_qualification = qualification;
12608 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030012609 if (enable_shadow_vmcs)
12610 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030012611}
12612
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020012613static int vmx_check_intercept(struct kvm_vcpu *vcpu,
12614 struct x86_instruction_info *info,
12615 enum x86_intercept_stage stage)
12616{
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +020012617 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
12618 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
12619
12620 /*
12621 * RDPID causes #UD if disabled through secondary execution controls.
12622 * Because it is marked as EmulateOnUD, we need to intercept it here.
12623 */
12624 if (info->intercept == x86_intercept_rdtscp &&
12625 !nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDTSCP)) {
12626 ctxt->exception.vector = UD_VECTOR;
12627 ctxt->exception.error_code_valid = false;
12628 return X86EMUL_PROPAGATE_FAULT;
12629 }
12630
12631 /* TODO: check more intercepts... */
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020012632 return X86EMUL_CONTINUE;
12633}
12634
Yunhong Jiang64672c92016-06-13 14:19:59 -070012635#ifdef CONFIG_X86_64
12636/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
12637static inline int u64_shl_div_u64(u64 a, unsigned int shift,
12638 u64 divisor, u64 *result)
12639{
12640 u64 low = a << shift, high = a >> (64 - shift);
12641
12642 /* To avoid the overflow on divq */
12643 if (high >= divisor)
12644 return 1;
12645
12646 /* Low hold the result, high hold rem which is discarded */
12647 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
12648 "rm" (divisor), "0" (low), "1" (high));
12649 *result = low;
12650
12651 return 0;
12652}
12653
12654static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc)
12655{
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +020012656 struct vcpu_vmx *vmx;
Wanpeng Lic5ce8232018-05-29 14:53:17 +080012657 u64 tscl, guest_tscl, delta_tsc, lapic_timer_advance_cycles;
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +020012658
12659 if (kvm_mwait_in_guest(vcpu->kvm))
12660 return -EOPNOTSUPP;
12661
12662 vmx = to_vmx(vcpu);
12663 tscl = rdtsc();
12664 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
12665 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Wanpeng Lic5ce8232018-05-29 14:53:17 +080012666 lapic_timer_advance_cycles = nsec_to_cycles(vcpu, lapic_timer_advance_ns);
12667
12668 if (delta_tsc > lapic_timer_advance_cycles)
12669 delta_tsc -= lapic_timer_advance_cycles;
12670 else
12671 delta_tsc = 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -070012672
12673 /* Convert to host delta tsc if tsc scaling is enabled */
12674 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
12675 u64_shl_div_u64(delta_tsc,
12676 kvm_tsc_scaling_ratio_frac_bits,
12677 vcpu->arch.tsc_scaling_ratio,
12678 &delta_tsc))
12679 return -ERANGE;
12680
12681 /*
12682 * If the delta tsc can't fit in the 32 bit after the multi shift,
12683 * we can't use the preemption timer.
12684 * It's possible that it fits on later vmentries, but checking
12685 * on every vmentry is costly so we just use an hrtimer.
12686 */
12687 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
12688 return -ERANGE;
12689
12690 vmx->hv_deadline_tsc = tscl + delta_tsc;
12691 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
12692 PIN_BASED_VMX_PREEMPTION_TIMER);
Wanpeng Lic8533542017-06-29 06:28:09 -070012693
12694 return delta_tsc == 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -070012695}
12696
12697static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
12698{
12699 struct vcpu_vmx *vmx = to_vmx(vcpu);
12700 vmx->hv_deadline_tsc = -1;
12701 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
12702 PIN_BASED_VMX_PREEMPTION_TIMER);
12703}
12704#endif
12705
Paolo Bonzini48d89b92014-08-26 13:27:46 +020012706static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020012707{
Wanpeng Lib31c1142018-03-12 04:53:04 -070012708 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +020012709 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020012710}
12711
Kai Huang843e4332015-01-28 10:54:28 +080012712static void vmx_slot_enable_log_dirty(struct kvm *kvm,
12713 struct kvm_memory_slot *slot)
12714{
12715 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
12716 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
12717}
12718
12719static void vmx_slot_disable_log_dirty(struct kvm *kvm,
12720 struct kvm_memory_slot *slot)
12721{
12722 kvm_mmu_slot_set_dirty(kvm, slot);
12723}
12724
12725static void vmx_flush_log_dirty(struct kvm *kvm)
12726{
12727 kvm_flush_pml_buffers(kvm);
12728}
12729
Bandan Dasc5f983f2017-05-05 15:25:14 -040012730static int vmx_write_pml_buffer(struct kvm_vcpu *vcpu)
12731{
12732 struct vmcs12 *vmcs12;
12733 struct vcpu_vmx *vmx = to_vmx(vcpu);
12734 gpa_t gpa;
12735 struct page *page = NULL;
12736 u64 *pml_address;
12737
12738 if (is_guest_mode(vcpu)) {
12739 WARN_ON_ONCE(vmx->nested.pml_full);
12740
12741 /*
12742 * Check if PML is enabled for the nested guest.
12743 * Whether eptp bit 6 is set is already checked
12744 * as part of A/D emulation.
12745 */
12746 vmcs12 = get_vmcs12(vcpu);
12747 if (!nested_cpu_has_pml(vmcs12))
12748 return 0;
12749
Dan Carpenter47698862017-05-10 22:43:17 +030012750 if (vmcs12->guest_pml_index >= PML_ENTITY_NUM) {
Bandan Dasc5f983f2017-05-05 15:25:14 -040012751 vmx->nested.pml_full = true;
12752 return 1;
12753 }
12754
12755 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS) & ~0xFFFull;
12756
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020012757 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->pml_address);
12758 if (is_error_page(page))
Bandan Dasc5f983f2017-05-05 15:25:14 -040012759 return 0;
12760
12761 pml_address = kmap(page);
12762 pml_address[vmcs12->guest_pml_index--] = gpa;
12763 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020012764 kvm_release_page_clean(page);
Bandan Dasc5f983f2017-05-05 15:25:14 -040012765 }
12766
12767 return 0;
12768}
12769
Kai Huang843e4332015-01-28 10:54:28 +080012770static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
12771 struct kvm_memory_slot *memslot,
12772 gfn_t offset, unsigned long mask)
12773{
12774 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
12775}
12776
Paolo Bonzinicd39e112017-06-06 12:57:04 +020012777static void __pi_post_block(struct kvm_vcpu *vcpu)
12778{
12779 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
12780 struct pi_desc old, new;
12781 unsigned int dest;
Paolo Bonzinicd39e112017-06-06 12:57:04 +020012782
12783 do {
12784 old.control = new.control = pi_desc->control;
Paolo Bonzini8b306e22017-06-06 12:57:05 +020012785 WARN(old.nv != POSTED_INTR_WAKEUP_VECTOR,
12786 "Wakeup handler not enabled while the VCPU is blocked\n");
Paolo Bonzinicd39e112017-06-06 12:57:04 +020012787
12788 dest = cpu_physical_id(vcpu->cpu);
12789
12790 if (x2apic_enabled())
12791 new.ndst = dest;
12792 else
12793 new.ndst = (dest << 8) & 0xFF00;
12794
Paolo Bonzinicd39e112017-06-06 12:57:04 +020012795 /* set 'NV' to 'notification vector' */
12796 new.nv = POSTED_INTR_VECTOR;
Paolo Bonzinic0a16662017-09-28 17:58:41 +020012797 } while (cmpxchg64(&pi_desc->control, old.control,
12798 new.control) != old.control);
Paolo Bonzinicd39e112017-06-06 12:57:04 +020012799
Paolo Bonzini8b306e22017-06-06 12:57:05 +020012800 if (!WARN_ON_ONCE(vcpu->pre_pcpu == -1)) {
12801 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
Paolo Bonzinicd39e112017-06-06 12:57:04 +020012802 list_del(&vcpu->blocked_vcpu_list);
Paolo Bonzini8b306e22017-06-06 12:57:05 +020012803 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
Paolo Bonzinicd39e112017-06-06 12:57:04 +020012804 vcpu->pre_pcpu = -1;
12805 }
12806}
12807
Feng Wuefc64402015-09-18 22:29:51 +080012808/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080012809 * This routine does the following things for vCPU which is going
12810 * to be blocked if VT-d PI is enabled.
12811 * - Store the vCPU to the wakeup list, so when interrupts happen
12812 * we can find the right vCPU to wake up.
12813 * - Change the Posted-interrupt descriptor as below:
12814 * 'NDST' <-- vcpu->pre_pcpu
12815 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
12816 * - If 'ON' is set during this process, which means at least one
12817 * interrupt is posted for this vCPU, we cannot block it, in
12818 * this case, return 1, otherwise, return 0.
12819 *
12820 */
Yunhong Jiangbc225122016-06-13 14:19:58 -070012821static int pi_pre_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080012822{
Feng Wubf9f6ac2015-09-18 22:29:55 +080012823 unsigned int dest;
12824 struct pi_desc old, new;
12825 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
12826
12827 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080012828 !irq_remapping_cap(IRQ_POSTING_CAP) ||
12829 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080012830 return 0;
12831
Paolo Bonzini8b306e22017-06-06 12:57:05 +020012832 WARN_ON(irqs_disabled());
12833 local_irq_disable();
12834 if (!WARN_ON_ONCE(vcpu->pre_pcpu != -1)) {
12835 vcpu->pre_pcpu = vcpu->cpu;
12836 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
12837 list_add_tail(&vcpu->blocked_vcpu_list,
12838 &per_cpu(blocked_vcpu_on_cpu,
12839 vcpu->pre_pcpu));
12840 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
12841 }
Feng Wubf9f6ac2015-09-18 22:29:55 +080012842
12843 do {
12844 old.control = new.control = pi_desc->control;
12845
Feng Wubf9f6ac2015-09-18 22:29:55 +080012846 WARN((pi_desc->sn == 1),
12847 "Warning: SN field of posted-interrupts "
12848 "is set before blocking\n");
12849
12850 /*
12851 * Since vCPU can be preempted during this process,
12852 * vcpu->cpu could be different with pre_pcpu, we
12853 * need to set pre_pcpu as the destination of wakeup
12854 * notification event, then we can find the right vCPU
12855 * to wakeup in wakeup handler if interrupts happen
12856 * when the vCPU is in blocked state.
12857 */
12858 dest = cpu_physical_id(vcpu->pre_pcpu);
12859
12860 if (x2apic_enabled())
12861 new.ndst = dest;
12862 else
12863 new.ndst = (dest << 8) & 0xFF00;
12864
12865 /* set 'NV' to 'wakeup vector' */
12866 new.nv = POSTED_INTR_WAKEUP_VECTOR;
Paolo Bonzinic0a16662017-09-28 17:58:41 +020012867 } while (cmpxchg64(&pi_desc->control, old.control,
12868 new.control) != old.control);
Feng Wubf9f6ac2015-09-18 22:29:55 +080012869
Paolo Bonzini8b306e22017-06-06 12:57:05 +020012870 /* We should not block the vCPU if an interrupt is posted for it. */
12871 if (pi_test_on(pi_desc) == 1)
12872 __pi_post_block(vcpu);
12873
12874 local_irq_enable();
12875 return (vcpu->pre_pcpu == -1);
Feng Wubf9f6ac2015-09-18 22:29:55 +080012876}
12877
Yunhong Jiangbc225122016-06-13 14:19:58 -070012878static int vmx_pre_block(struct kvm_vcpu *vcpu)
12879{
12880 if (pi_pre_block(vcpu))
12881 return 1;
12882
Yunhong Jiang64672c92016-06-13 14:19:59 -070012883 if (kvm_lapic_hv_timer_in_use(vcpu))
12884 kvm_lapic_switch_to_sw_timer(vcpu);
12885
Yunhong Jiangbc225122016-06-13 14:19:58 -070012886 return 0;
12887}
12888
12889static void pi_post_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080012890{
Paolo Bonzini8b306e22017-06-06 12:57:05 +020012891 if (vcpu->pre_pcpu == -1)
Feng Wubf9f6ac2015-09-18 22:29:55 +080012892 return;
12893
Paolo Bonzini8b306e22017-06-06 12:57:05 +020012894 WARN_ON(irqs_disabled());
12895 local_irq_disable();
Paolo Bonzinicd39e112017-06-06 12:57:04 +020012896 __pi_post_block(vcpu);
Paolo Bonzini8b306e22017-06-06 12:57:05 +020012897 local_irq_enable();
Feng Wubf9f6ac2015-09-18 22:29:55 +080012898}
12899
Yunhong Jiangbc225122016-06-13 14:19:58 -070012900static void vmx_post_block(struct kvm_vcpu *vcpu)
12901{
Yunhong Jiang64672c92016-06-13 14:19:59 -070012902 if (kvm_x86_ops->set_hv_timer)
12903 kvm_lapic_switch_to_hv_timer(vcpu);
12904
Yunhong Jiangbc225122016-06-13 14:19:58 -070012905 pi_post_block(vcpu);
12906}
12907
Feng Wubf9f6ac2015-09-18 22:29:55 +080012908/*
Feng Wuefc64402015-09-18 22:29:51 +080012909 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
12910 *
12911 * @kvm: kvm
12912 * @host_irq: host irq of the interrupt
12913 * @guest_irq: gsi of the interrupt
12914 * @set: set or unset PI
12915 * returns 0 on success, < 0 on failure
12916 */
12917static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
12918 uint32_t guest_irq, bool set)
12919{
12920 struct kvm_kernel_irq_routing_entry *e;
12921 struct kvm_irq_routing_table *irq_rt;
12922 struct kvm_lapic_irq irq;
12923 struct kvm_vcpu *vcpu;
12924 struct vcpu_data vcpu_info;
Jan H. Schönherr3a8b0672017-09-07 19:02:30 +010012925 int idx, ret = 0;
Feng Wuefc64402015-09-18 22:29:51 +080012926
12927 if (!kvm_arch_has_assigned_device(kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080012928 !irq_remapping_cap(IRQ_POSTING_CAP) ||
12929 !kvm_vcpu_apicv_active(kvm->vcpus[0]))
Feng Wuefc64402015-09-18 22:29:51 +080012930 return 0;
12931
12932 idx = srcu_read_lock(&kvm->irq_srcu);
12933 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
Jan H. Schönherr3a8b0672017-09-07 19:02:30 +010012934 if (guest_irq >= irq_rt->nr_rt_entries ||
12935 hlist_empty(&irq_rt->map[guest_irq])) {
12936 pr_warn_once("no route for guest_irq %u/%u (broken user space?)\n",
12937 guest_irq, irq_rt->nr_rt_entries);
12938 goto out;
12939 }
Feng Wuefc64402015-09-18 22:29:51 +080012940
12941 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
12942 if (e->type != KVM_IRQ_ROUTING_MSI)
12943 continue;
12944 /*
12945 * VT-d PI cannot support posting multicast/broadcast
12946 * interrupts to a vCPU, we still use interrupt remapping
12947 * for these kind of interrupts.
12948 *
12949 * For lowest-priority interrupts, we only support
12950 * those with single CPU as the destination, e.g. user
12951 * configures the interrupts via /proc/irq or uses
12952 * irqbalance to make the interrupts single-CPU.
12953 *
12954 * We will support full lowest-priority interrupt later.
12955 */
12956
Radim Krčmář371313132016-07-12 22:09:27 +020012957 kvm_set_msi_irq(kvm, e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080012958 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
12959 /*
12960 * Make sure the IRTE is in remapped mode if
12961 * we don't handle it in posted mode.
12962 */
12963 ret = irq_set_vcpu_affinity(host_irq, NULL);
12964 if (ret < 0) {
12965 printk(KERN_INFO
12966 "failed to back to remapped mode, irq: %u\n",
12967 host_irq);
12968 goto out;
12969 }
12970
Feng Wuefc64402015-09-18 22:29:51 +080012971 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080012972 }
Feng Wuefc64402015-09-18 22:29:51 +080012973
12974 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
12975 vcpu_info.vector = irq.vector;
12976
hu huajun2698d822018-04-11 15:16:40 +080012977 trace_kvm_pi_irte_update(host_irq, vcpu->vcpu_id, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080012978 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
12979
12980 if (set)
12981 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
Haozhong Zhangdc91f2e2017-09-18 09:56:49 +080012982 else
Feng Wuefc64402015-09-18 22:29:51 +080012983 ret = irq_set_vcpu_affinity(host_irq, NULL);
Feng Wuefc64402015-09-18 22:29:51 +080012984
12985 if (ret < 0) {
12986 printk(KERN_INFO "%s: failed to update PI IRTE\n",
12987 __func__);
12988 goto out;
12989 }
12990 }
12991
12992 ret = 0;
12993out:
12994 srcu_read_unlock(&kvm->irq_srcu, idx);
12995 return ret;
12996}
12997
Ashok Rajc45dcc72016-06-22 14:59:56 +080012998static void vmx_setup_mce(struct kvm_vcpu *vcpu)
12999{
13000 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
13001 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
13002 FEATURE_CONTROL_LMCE;
13003 else
13004 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
13005 ~FEATURE_CONTROL_LMCE;
13006}
13007
Ladi Prosek72d7b372017-10-11 16:54:41 +020013008static int vmx_smi_allowed(struct kvm_vcpu *vcpu)
13009{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013010 /* we need a nested vmexit to enter SMM, postpone if run is pending */
13011 if (to_vmx(vcpu)->nested.nested_run_pending)
13012 return 0;
Ladi Prosek72d7b372017-10-11 16:54:41 +020013013 return 1;
13014}
13015
Ladi Prosek0234bf82017-10-11 16:54:40 +020013016static int vmx_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
13017{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013018 struct vcpu_vmx *vmx = to_vmx(vcpu);
13019
13020 vmx->nested.smm.guest_mode = is_guest_mode(vcpu);
13021 if (vmx->nested.smm.guest_mode)
13022 nested_vmx_vmexit(vcpu, -1, 0, 0);
13023
13024 vmx->nested.smm.vmxon = vmx->nested.vmxon;
13025 vmx->nested.vmxon = false;
Wanpeng Licaa057a2018-03-12 04:53:03 -070013026 vmx_clear_hlt(vcpu);
Ladi Prosek0234bf82017-10-11 16:54:40 +020013027 return 0;
13028}
13029
13030static int vmx_pre_leave_smm(struct kvm_vcpu *vcpu, u64 smbase)
13031{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013032 struct vcpu_vmx *vmx = to_vmx(vcpu);
13033 int ret;
13034
13035 if (vmx->nested.smm.vmxon) {
13036 vmx->nested.vmxon = true;
13037 vmx->nested.smm.vmxon = false;
13038 }
13039
13040 if (vmx->nested.smm.guest_mode) {
13041 vcpu->arch.hflags &= ~HF_SMM_MASK;
Jim Mattson6514dc32018-04-26 16:09:12 -070013042 ret = enter_vmx_non_root_mode(vcpu);
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013043 vcpu->arch.hflags |= HF_SMM_MASK;
13044 if (ret)
13045 return ret;
13046
13047 vmx->nested.smm.guest_mode = false;
13048 }
Ladi Prosek0234bf82017-10-11 16:54:40 +020013049 return 0;
13050}
13051
Ladi Prosekcc3d9672017-10-17 16:02:39 +020013052static int enable_smi_window(struct kvm_vcpu *vcpu)
13053{
13054 return 0;
13055}
13056
Kees Cook404f6aa2016-08-08 16:29:06 -070013057static struct kvm_x86_ops vmx_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080013058 .cpu_has_kvm_support = cpu_has_kvm_support,
13059 .disabled_by_bios = vmx_disabled_by_bios,
13060 .hardware_setup = hardware_setup,
13061 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030013062 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080013063 .hardware_enable = hardware_enable,
13064 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080013065 .cpu_has_accelerated_tpr = report_flexpriority,
Tom Lendackybc226f02018-05-10 22:06:39 +020013066 .has_emulated_msr = vmx_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -080013067
Wanpeng Lib31c1142018-03-12 04:53:04 -070013068 .vm_init = vmx_vm_init,
Sean Christopherson434a1e92018-03-20 12:17:18 -070013069 .vm_alloc = vmx_vm_alloc,
13070 .vm_free = vmx_vm_free,
Wanpeng Lib31c1142018-03-12 04:53:04 -070013071
Avi Kivity6aa8b732006-12-10 02:21:36 -080013072 .vcpu_create = vmx_create_vcpu,
13073 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030013074 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080013075
Avi Kivity04d2cc72007-09-10 18:10:54 +030013076 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080013077 .vcpu_load = vmx_vcpu_load,
13078 .vcpu_put = vmx_vcpu_put,
13079
Paolo Bonzinia96036b2015-11-10 11:55:36 +010013080 .update_bp_intercept = update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -060013081 .get_msr_feature = vmx_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -080013082 .get_msr = vmx_get_msr,
13083 .set_msr = vmx_set_msr,
13084 .get_segment_base = vmx_get_segment_base,
13085 .get_segment = vmx_get_segment,
13086 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020013087 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080013088 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020013089 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020013090 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030013091 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080013092 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080013093 .set_cr3 = vmx_set_cr3,
13094 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080013095 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080013096 .get_idt = vmx_get_idt,
13097 .set_idt = vmx_set_idt,
13098 .get_gdt = vmx_get_gdt,
13099 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010013100 .get_dr6 = vmx_get_dr6,
13101 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030013102 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010013103 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030013104 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080013105 .get_rflags = vmx_get_rflags,
13106 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +080013107
Avi Kivity6aa8b732006-12-10 02:21:36 -080013108 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080013109
Avi Kivity6aa8b732006-12-10 02:21:36 -080013110 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020013111 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080013112 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040013113 .set_interrupt_shadow = vmx_set_interrupt_shadow,
13114 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020013115 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030013116 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030013117 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020013118 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030013119 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020013120 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030013121 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010013122 .get_nmi_mask = vmx_get_nmi_mask,
13123 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030013124 .enable_nmi_window = enable_nmi_window,
13125 .enable_irq_window = enable_irq_window,
13126 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -040013127 .set_virtual_apic_mode = vmx_set_virtual_apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080013128 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030013129 .get_enable_apicv = vmx_get_enable_apicv,
13130 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080013131 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +010013132 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Yang Zhangc7c9c562013-01-25 10:18:51 +080013133 .hwapic_irr_update = vmx_hwapic_irr_update,
13134 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080013135 .sync_pir_to_irr = vmx_sync_pir_to_irr,
13136 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030013137
Izik Eiduscbc94022007-10-25 00:29:55 +020013138 .set_tss_addr = vmx_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -070013139 .set_identity_map_addr = vmx_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080013140 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080013141 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030013142
Avi Kivity586f9602010-11-18 13:09:54 +020013143 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020013144
Sheng Yang17cc3932010-01-05 19:02:27 +080013145 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080013146
13147 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080013148
13149 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000013150 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020013151
13152 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080013153
13154 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100013155
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020013156 .read_l1_tsc_offset = vmx_read_l1_tsc_offset,
Zachary Amsden99e3e302010-08-19 22:07:17 -100013157 .write_tsc_offset = vmx_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020013158
13159 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020013160
13161 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080013162 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000013163 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080013164 .xsaves_supported = vmx_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +020013165 .umip_emulated = vmx_umip_emulated,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010013166
13167 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020013168
13169 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080013170
13171 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
13172 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
13173 .flush_log_dirty = vmx_flush_log_dirty,
13174 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Bandan Dasc5f983f2017-05-05 15:25:14 -040013175 .write_log_dirty = vmx_write_pml_buffer,
Wei Huang25462f72015-06-19 15:45:05 +020013176
Feng Wubf9f6ac2015-09-18 22:29:55 +080013177 .pre_block = vmx_pre_block,
13178 .post_block = vmx_post_block,
13179
Wei Huang25462f72015-06-19 15:45:05 +020013180 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080013181
13182 .update_pi_irte = vmx_update_pi_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -070013183
13184#ifdef CONFIG_X86_64
13185 .set_hv_timer = vmx_set_hv_timer,
13186 .cancel_hv_timer = vmx_cancel_hv_timer,
13187#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +080013188
13189 .setup_mce = vmx_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +020013190
Ladi Prosek72d7b372017-10-11 16:54:41 +020013191 .smi_allowed = vmx_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +020013192 .pre_enter_smm = vmx_pre_enter_smm,
13193 .pre_leave_smm = vmx_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +020013194 .enable_smi_window = enable_smi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -080013195};
13196
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020013197static int __init vmx_setup_l1d_flush(void)
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +020013198{
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020013199 struct page *page;
13200
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +020013201 if (vmentry_l1d_flush == VMENTER_L1D_FLUSH_NEVER ||
13202 !boot_cpu_has_bug(X86_BUG_L1TF))
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020013203 return 0;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +020013204
Paolo Bonzini3fa045b2018-07-02 13:03:48 +020013205 if (!boot_cpu_has(X86_FEATURE_FLUSH_L1D)) {
13206 page = alloc_pages(GFP_KERNEL, L1D_CACHE_ORDER);
13207 if (!page)
13208 return -ENOMEM;
13209 vmx_l1d_flush_pages = page_address(page);
13210 }
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020013211
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +020013212 static_branch_enable(&vmx_l1d_should_flush);
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020013213 return 0;
13214}
13215
13216static void vmx_free_l1d_flush_pages(void)
13217{
13218 if (vmx_l1d_flush_pages) {
13219 free_pages((unsigned long)vmx_l1d_flush_pages, L1D_CACHE_ORDER);
13220 vmx_l1d_flush_pages = NULL;
13221 }
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +020013222}
13223
Avi Kivity6aa8b732006-12-10 02:21:36 -080013224static int __init vmx_init(void)
13225{
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010013226 int r;
13227
13228#if IS_ENABLED(CONFIG_HYPERV)
13229 /*
13230 * Enlightened VMCS usage should be recommended and the host needs
13231 * to support eVMCS v1 or above. We can also disable eVMCS support
13232 * with module parameter.
13233 */
13234 if (enlightened_vmcs &&
13235 ms_hyperv.hints & HV_X64_ENLIGHTENED_VMCS_RECOMMENDED &&
13236 (ms_hyperv.nested_features & HV_X64_ENLIGHTENED_VMCS_VERSION) >=
13237 KVM_EVMCS_VERSION) {
13238 int cpu;
13239
13240 /* Check that we have assist pages on all online CPUs */
13241 for_each_online_cpu(cpu) {
13242 if (!hv_get_vp_assist_page(cpu)) {
13243 enlightened_vmcs = false;
13244 break;
13245 }
13246 }
13247
13248 if (enlightened_vmcs) {
13249 pr_info("KVM: vmx: using Hyper-V Enlightened VMCS\n");
13250 static_branch_enable(&enable_evmcs);
13251 }
13252 } else {
13253 enlightened_vmcs = false;
13254 }
13255#endif
13256
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020013257 r = vmx_setup_l1d_flush();
He, Qingfdef3ad2007-04-30 09:45:24 +030013258 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080013259 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080013260
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020013261 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
13262 __alignof__(struct vcpu_vmx), THIS_MODULE);
13263 if (r) {
13264 vmx_free_l1d_flush_pages();
13265 return r;
13266 }
13267
Dave Young2965faa2015-09-09 15:38:55 -070013268#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080013269 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
13270 crash_vmclear_local_loaded_vmcss);
13271#endif
Jim Mattson21ebf532018-05-01 15:40:28 -070013272 vmx_check_vmcs12_offsets();
Zhang Yanfei8f536b72012-12-06 23:43:34 +080013273
He, Qingfdef3ad2007-04-30 09:45:24 +030013274 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080013275}
13276
13277static void __exit vmx_exit(void)
13278{
Dave Young2965faa2015-09-09 15:38:55 -070013279#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053013280 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080013281 synchronize_rcu();
13282#endif
13283
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080013284 kvm_exit();
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010013285
13286#if IS_ENABLED(CONFIG_HYPERV)
13287 if (static_branch_unlikely(&enable_evmcs)) {
13288 int cpu;
13289 struct hv_vp_assist_page *vp_ap;
13290 /*
13291 * Reset everything to support using non-enlightened VMCS
13292 * access later (e.g. when we reload the module with
13293 * enlightened_vmcs=0)
13294 */
13295 for_each_online_cpu(cpu) {
13296 vp_ap = hv_get_vp_assist_page(cpu);
13297
13298 if (!vp_ap)
13299 continue;
13300
13301 vp_ap->current_nested_vmcs = 0;
13302 vp_ap->enlighten_vmentry = 0;
13303 }
13304
13305 static_branch_disable(&enable_evmcs);
13306 }
13307#endif
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020013308 vmx_free_l1d_flush_pages();
Avi Kivity6aa8b732006-12-10 02:21:36 -080013309}
13310
13311module_init(vmx_init)
13312module_exit(vmx_exit)