blob: 16e63a92992f9345025cccab9bdda65c74cdc064 [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08009 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
Eddie Dong85f455f2007-07-06 12:20:49 +030019#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080020#include "mmu.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020021#include "cpuid.h"
Andrey Smetanind62caab2015-11-10 15:36:33 +030022#include "lapic.h"
Avi Kivitye4956062007-06-28 14:15:57 -040023
Avi Kivityedf88412007-12-16 11:02:48 +020024#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020026#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080027#include <linux/mm.h>
28#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040029#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020030#include <linux/moduleparam.h>
Josh Triplette9bda3b2012-03-20 23:33:51 -070031#include <linux/mod_devicetable.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040032#include <linux/trace_events.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040034#include <linux/tboot.h>
Jan Kiszkaf41245002014-03-07 20:03:13 +010035#include <linux/hrtimer.h>
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
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +020041#include <asm/asm.h>
Feng Wu28b835d2015-09-18 22:29:54 +080042#include <asm/cpu.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080043#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080044#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020045#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020046#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080047#include <asm/mce.h>
Ingo Molnar952f07e2015-04-26 16:56:05 +020048#include <asm/fpu/internal.h>
Gleb Natapovd7cd9792011-10-05 14:01:23 +020049#include <asm/perf_event.h>
Paolo Bonzini81908bf2014-02-21 10:32:27 +010050#include <asm/debugreg.h>
Zhang Yanfei8f536b72012-12-06 23:43:34 +080051#include <asm/kexec.h>
Radim Krčmářdab20872015-02-09 22:44:07 +010052#include <asm/apic.h>
Feng Wuefc64402015-09-18 22:29:51 +080053#include <asm/irq_remapping.h>
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070054#include <asm/mmu_context.h>
Thomas Gleixner28a27752018-04-29 15:01:37 +020055#include <asm/spec-ctrl.h>
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010056#include <asm/mshyperv.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080057
Marcelo Tosatti229456f2009-06-17 09:22:14 -030058#include "trace.h"
Wei Huang25462f72015-06-19 15:45:05 +020059#include "pmu.h"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010060#include "vmx_evmcs.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030061
Avi Kivity4ecac3f2008-05-13 13:23:38 +030062#define __ex(x) __kvm_handle_fault_on_reboot(x)
Avi Kivity5e520e62011-05-15 10:13:12 -040063#define __ex_clear(x, reg) \
64 ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg)
Avi Kivity4ecac3f2008-05-13 13:23:38 +030065
Avi Kivity6aa8b732006-12-10 02:21:36 -080066MODULE_AUTHOR("Qumranet");
67MODULE_LICENSE("GPL");
68
Josh Triplette9bda3b2012-03-20 23:33:51 -070069static const struct x86_cpu_id vmx_cpu_id[] = {
70 X86_FEATURE_MATCH(X86_FEATURE_VMX),
71 {}
72};
73MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
74
Rusty Russell476bc002012-01-13 09:32:18 +103075static bool __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020076module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080077
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010078static bool __read_mostly enable_vnmi = 1;
79module_param_named(vnmi, enable_vnmi, bool, S_IRUGO);
80
Rusty Russell476bc002012-01-13 09:32:18 +103081static bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020082module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020083
Rusty Russell476bc002012-01-13 09:32:18 +103084static bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020085module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080086
Rusty Russell476bc002012-01-13 09:32:18 +103087static bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070088module_param_named(unrestricted_guest,
89 enable_unrestricted_guest, bool, S_IRUGO);
90
Xudong Hao83c3a332012-05-28 19:33:35 +080091static bool __read_mostly enable_ept_ad_bits = 1;
92module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
93
Avi Kivitya27685c2012-06-12 20:30:18 +030094static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020095module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030096
Rusty Russell476bc002012-01-13 09:32:18 +103097static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +030098module_param(fasteoi, bool, S_IRUGO);
99
Yang Zhang5a717852013-04-11 19:25:16 +0800100static bool __read_mostly enable_apicv = 1;
Yang Zhang01e439b2013-04-11 19:25:12 +0800101module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +0800102
Abel Gordonabc4fc52013-04-18 14:35:25 +0300103static bool __read_mostly enable_shadow_vmcs = 1;
104module_param_named(enable_shadow_vmcs, enable_shadow_vmcs, bool, S_IRUGO);
Nadav Har'El801d3422011-05-25 23:02:23 +0300105/*
106 * If nested=1, nested virtualization is supported, i.e., guests may use
107 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
108 * use VMX instructions.
109 */
Rusty Russell476bc002012-01-13 09:32:18 +1030110static bool __read_mostly nested = 0;
Nadav Har'El801d3422011-05-25 23:02:23 +0300111module_param(nested, bool, S_IRUGO);
112
Wanpeng Li20300092014-12-02 19:14:59 +0800113static u64 __read_mostly host_xss;
114
Kai Huang843e4332015-01-28 10:54:28 +0800115static bool __read_mostly enable_pml = 1;
116module_param_named(pml, enable_pml, bool, S_IRUGO);
117
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100118#define MSR_TYPE_R 1
119#define MSR_TYPE_W 2
120#define MSR_TYPE_RW 3
121
122#define MSR_BITMAP_MODE_X2APIC 1
123#define MSR_BITMAP_MODE_X2APIC_APICV 2
124#define MSR_BITMAP_MODE_LM 4
125
Haozhong Zhang64903d62015-10-20 15:39:09 +0800126#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
127
Yunhong Jiang64672c92016-06-13 14:19:59 -0700128/* Guest_tsc -> host_tsc conversion requires 64-bit division. */
129static int __read_mostly cpu_preemption_timer_multi;
130static bool __read_mostly enable_preemption_timer = 1;
131#ifdef CONFIG_X86_64
132module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
133#endif
134
Gleb Natapov50378782013-02-04 16:00:28 +0200135#define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD)
Sean Christopherson1706bd02018-03-05 12:04:38 -0800136#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR0_NE
137#define KVM_VM_CR0_ALWAYS_ON \
138 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | \
139 X86_CR0_WP | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200140#define KVM_CR4_GUEST_OWNED_BITS \
141 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
Yu Zhangfd8cb432017-08-24 20:27:56 +0800142 | X86_CR4_OSXMMEXCPT | X86_CR4_LA57 | X86_CR4_TSD)
Avi Kivity4c386092009-12-07 12:26:18 +0200143
Sean Christopherson5dc1f042018-03-05 12:04:39 -0800144#define KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR4_VMXE
Avi Kivitycdc0e242009-12-06 17:21:14 +0200145#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
146#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
147
Avi Kivity78ac8b42010-04-08 18:19:35 +0300148#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
149
Jan Kiszkaf41245002014-03-07 20:03:13 +0100150#define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5
151
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800152/*
Jan Dakinevich16c2aec2016-10-28 07:00:30 +0300153 * Hyper-V requires all of these, so mark them as supported even though
154 * they are just treated the same as all-context.
155 */
156#define VMX_VPID_EXTENT_SUPPORTED_MASK \
157 (VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT | \
158 VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT | \
159 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT | \
160 VMX_VPID_EXTENT_SINGLE_NON_GLOBAL_BIT)
161
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800162/*
163 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
164 * ple_gap: upper bound on the amount of time between two successive
165 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500166 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800167 * ple_window: upper bound on the amount of time a guest is allowed to execute
168 * in a PAUSE loop. Tests indicate that most spinlocks are held for
169 * less than 2^12 cycles
170 * Time is measured based on a counter that runs at the same rate as the TSC,
171 * refer SDM volume 3b section 21.6.13 & 22.1.3.
172 */
Babu Mogerc8e88712018-03-16 16:37:24 -0400173static unsigned int ple_gap = KVM_DEFAULT_PLE_GAP;
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200174
Babu Moger7fbc85a2018-03-16 16:37:22 -0400175static unsigned int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
176module_param(ple_window, uint, 0444);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800177
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200178/* Default doubles per-vcpu window every exit. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400179static unsigned int ple_window_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400180module_param(ple_window_grow, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200181
182/* Default resets per-vcpu window every exit to ple_window. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400183static unsigned int ple_window_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400184module_param(ple_window_shrink, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200185
186/* Default is to compute the maximum so we can never overflow. */
Babu Moger7fbc85a2018-03-16 16:37:22 -0400187static unsigned int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
188module_param(ple_window_max, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200189
Avi Kivity83287ea422012-09-16 15:10:57 +0300190extern const ulong vmx_return;
191
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200192static DEFINE_STATIC_KEY_FALSE(vmx_l1d_should_flush);
Nicolai Stange427362a2018-07-21 22:25:00 +0200193static DEFINE_STATIC_KEY_FALSE(vmx_l1d_flush_cond);
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200194static DEFINE_MUTEX(vmx_l1d_flush_mutex);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200195
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200196/* Storage for pre module init parameter parsing */
197static enum vmx_l1d_flush_state __read_mostly vmentry_l1d_flush_param = VMENTER_L1D_FLUSH_AUTO;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200198
199static const struct {
200 const char *option;
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200201 bool for_parse;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200202} vmentry_l1d_param[] = {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200203 [VMENTER_L1D_FLUSH_AUTO] = {"auto", true},
204 [VMENTER_L1D_FLUSH_NEVER] = {"never", true},
205 [VMENTER_L1D_FLUSH_COND] = {"cond", true},
206 [VMENTER_L1D_FLUSH_ALWAYS] = {"always", true},
207 [VMENTER_L1D_FLUSH_EPT_DISABLED] = {"EPT disabled", false},
208 [VMENTER_L1D_FLUSH_NOT_REQUIRED] = {"not required", false},
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200209};
210
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200211#define L1D_CACHE_ORDER 4
212static void *vmx_l1d_flush_pages;
213
214static int vmx_setup_l1d_flush(enum vmx_l1d_flush_state l1tf)
215{
216 struct page *page;
Nicolai Stange288d1522018-07-18 19:07:38 +0200217 unsigned int i;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200218
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200219 if (!enable_ept) {
220 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_EPT_DISABLED;
221 return 0;
222 }
223
Yi Wangd806afa2018-08-16 13:42:39 +0800224 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES)) {
225 u64 msr;
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200226
Yi Wangd806afa2018-08-16 13:42:39 +0800227 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, msr);
228 if (msr & ARCH_CAP_SKIP_VMENTRY_L1DFLUSH) {
229 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_NOT_REQUIRED;
230 return 0;
231 }
232 }
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200233
Jiri Kosinad90a7a02018-07-13 16:23:25 +0200234 /* If set to auto use the default l1tf mitigation method */
235 if (l1tf == VMENTER_L1D_FLUSH_AUTO) {
236 switch (l1tf_mitigation) {
237 case L1TF_MITIGATION_OFF:
238 l1tf = VMENTER_L1D_FLUSH_NEVER;
239 break;
240 case L1TF_MITIGATION_FLUSH_NOWARN:
241 case L1TF_MITIGATION_FLUSH:
242 case L1TF_MITIGATION_FLUSH_NOSMT:
243 l1tf = VMENTER_L1D_FLUSH_COND;
244 break;
245 case L1TF_MITIGATION_FULL:
246 case L1TF_MITIGATION_FULL_FORCE:
247 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
248 break;
249 }
250 } else if (l1tf_mitigation == L1TF_MITIGATION_FULL_FORCE) {
251 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
252 }
253
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200254 if (l1tf != VMENTER_L1D_FLUSH_NEVER && !vmx_l1d_flush_pages &&
255 !boot_cpu_has(X86_FEATURE_FLUSH_L1D)) {
256 page = alloc_pages(GFP_KERNEL, L1D_CACHE_ORDER);
257 if (!page)
258 return -ENOMEM;
259 vmx_l1d_flush_pages = page_address(page);
Nicolai Stange288d1522018-07-18 19:07:38 +0200260
261 /*
262 * Initialize each page with a different pattern in
263 * order to protect against KSM in the nested
264 * virtualization case.
265 */
266 for (i = 0; i < 1u << L1D_CACHE_ORDER; ++i) {
267 memset(vmx_l1d_flush_pages + i * PAGE_SIZE, i + 1,
268 PAGE_SIZE);
269 }
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200270 }
271
272 l1tf_vmx_mitigation = l1tf;
273
Thomas Gleixner895ae472018-07-13 16:23:22 +0200274 if (l1tf != VMENTER_L1D_FLUSH_NEVER)
275 static_branch_enable(&vmx_l1d_should_flush);
276 else
277 static_branch_disable(&vmx_l1d_should_flush);
Thomas Gleixner4c6523e2018-07-13 16:23:20 +0200278
Nicolai Stange427362a2018-07-21 22:25:00 +0200279 if (l1tf == VMENTER_L1D_FLUSH_COND)
280 static_branch_enable(&vmx_l1d_flush_cond);
Thomas Gleixner895ae472018-07-13 16:23:22 +0200281 else
Nicolai Stange427362a2018-07-21 22:25:00 +0200282 static_branch_disable(&vmx_l1d_flush_cond);
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200283 return 0;
284}
285
286static int vmentry_l1d_flush_parse(const char *s)
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200287{
288 unsigned int i;
289
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200290 if (s) {
291 for (i = 0; i < ARRAY_SIZE(vmentry_l1d_param); i++) {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200292 if (vmentry_l1d_param[i].for_parse &&
293 sysfs_streq(s, vmentry_l1d_param[i].option))
294 return i;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200295 }
296 }
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200297 return -EINVAL;
298}
299
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200300static int vmentry_l1d_flush_set(const char *s, const struct kernel_param *kp)
301{
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200302 int l1tf, ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200303
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200304 l1tf = vmentry_l1d_flush_parse(s);
305 if (l1tf < 0)
306 return l1tf;
307
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200308 if (!boot_cpu_has(X86_BUG_L1TF))
309 return 0;
310
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200311 /*
312 * Has vmx_init() run already? If not then this is the pre init
313 * parameter parsing. In that case just store the value and let
314 * vmx_init() do the proper setup after enable_ept has been
315 * established.
316 */
317 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_AUTO) {
318 vmentry_l1d_flush_param = l1tf;
319 return 0;
320 }
321
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200322 mutex_lock(&vmx_l1d_flush_mutex);
323 ret = vmx_setup_l1d_flush(l1tf);
324 mutex_unlock(&vmx_l1d_flush_mutex);
325 return ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200326}
327
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200328static int vmentry_l1d_flush_get(char *s, const struct kernel_param *kp)
329{
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200330 if (WARN_ON_ONCE(l1tf_vmx_mitigation >= ARRAY_SIZE(vmentry_l1d_param)))
331 return sprintf(s, "???\n");
332
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200333 return sprintf(s, "%s\n", vmentry_l1d_param[l1tf_vmx_mitigation].option);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200334}
335
336static const struct kernel_param_ops vmentry_l1d_flush_ops = {
337 .set = vmentry_l1d_flush_set,
338 .get = vmentry_l1d_flush_get,
339};
Thomas Gleixner895ae472018-07-13 16:23:22 +0200340module_param_cb(vmentry_l1d_flush, &vmentry_l1d_flush_ops, NULL, 0644);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200341
Tianyu Lan877ad952018-07-19 08:40:23 +0000342enum ept_pointers_status {
343 EPT_POINTERS_CHECK = 0,
344 EPT_POINTERS_MATCH = 1,
345 EPT_POINTERS_MISMATCH = 2
346};
347
Sean Christopherson40bbb9d2018-03-20 12:17:20 -0700348struct kvm_vmx {
349 struct kvm kvm;
350
351 unsigned int tss_addr;
352 bool ept_identity_pagetable_done;
353 gpa_t ept_identity_map_addr;
Tianyu Lan877ad952018-07-19 08:40:23 +0000354
355 enum ept_pointers_status ept_pointers_match;
356 spinlock_t ept_pointer_lock;
Sean Christopherson40bbb9d2018-03-20 12:17:20 -0700357};
358
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200359#define NR_AUTOLOAD_MSRS 8
Avi Kivity61d2ef22010-04-28 16:40:38 +0300360
Liran Alon392b2f22018-06-23 02:35:01 +0300361struct vmcs_hdr {
362 u32 revision_id:31;
363 u32 shadow_vmcs:1;
364};
365
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400366struct vmcs {
Liran Alon392b2f22018-06-23 02:35:01 +0300367 struct vmcs_hdr hdr;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400368 u32 abort;
369 char data[0];
370};
371
Nadav Har'Eld462b812011-05-24 15:26:10 +0300372/*
Sean Christophersond7ee0392018-07-23 12:32:47 -0700373 * vmcs_host_state tracks registers that are loaded from the VMCS on VMEXIT
374 * and whose values change infrequently, but are not constant. I.e. this is
375 * used as a write-through cache of the corresponding VMCS fields.
376 */
377struct vmcs_host_state {
378 unsigned long cr3; /* May not match real cr3 */
379 unsigned long cr4; /* May not match real cr4 */
Sean Christopherson5e079c72018-07-23 12:32:50 -0700380 unsigned long gs_base;
381 unsigned long fs_base;
Sean Christophersond7ee0392018-07-23 12:32:47 -0700382
383 u16 fs_sel, gs_sel, ldt_sel;
384#ifdef CONFIG_X86_64
385 u16 ds_sel, es_sel;
386#endif
387};
388
389/*
Nadav Har'Eld462b812011-05-24 15:26:10 +0300390 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
391 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
392 * loaded on this CPU (so we can clear them if the CPU goes down).
393 */
394struct loaded_vmcs {
395 struct vmcs *vmcs;
Jim Mattson355f4fb2016-10-28 08:29:39 -0700396 struct vmcs *shadow_vmcs;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300397 int cpu;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +0200398 bool launched;
399 bool nmi_known_unmasked;
Sean Christophersonf459a702018-08-27 15:21:11 -0700400 bool hv_timer_armed;
Paolo Bonzini8a1b4392017-11-06 13:31:12 +0100401 /* Support for vnmi-less CPUs */
402 int soft_vnmi_blocked;
403 ktime_t entry_time;
404 s64 vnmi_blocked_time;
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100405 unsigned long *msr_bitmap;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300406 struct list_head loaded_vmcss_on_cpu_link;
Sean Christophersond7ee0392018-07-23 12:32:47 -0700407 struct vmcs_host_state host_state;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300408};
409
Avi Kivity26bb0982009-09-07 11:14:12 +0300410struct shared_msr_entry {
411 unsigned index;
412 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200413 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300414};
415
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300416/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300417 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
418 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
419 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
420 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
421 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
422 * More than one of these structures may exist, if L1 runs multiple L2 guests.
Jim Mattsonde3a0022017-11-27 17:22:25 -0600423 * nested_vmx_run() will use the data here to build the vmcs02: a VMCS for the
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300424 * underlying hardware which will be used to run L2.
425 * This structure is packed to ensure that its layout is identical across
426 * machines (necessary for live migration).
Jim Mattsonb348e792018-05-01 15:40:27 -0700427 *
428 * IMPORTANT: Changing the layout of existing fields in this structure
429 * will break save/restore compatibility with older kvm releases. When
430 * adding new fields, either use space in the reserved padding* arrays
431 * or add the new fields to the end of the structure.
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300432 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300433typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300434struct __packed vmcs12 {
435 /* According to the Intel spec, a VMCS region must start with the
436 * following two fields. Then follow implementation-specific data.
437 */
Liran Alon392b2f22018-06-23 02:35:01 +0300438 struct vmcs_hdr hdr;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300439 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300440
Nadav Har'El27d6c862011-05-25 23:06:59 +0300441 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
442 u32 padding[7]; /* room for future expansion */
443
Nadav Har'El22bd0352011-05-25 23:05:57 +0300444 u64 io_bitmap_a;
445 u64 io_bitmap_b;
446 u64 msr_bitmap;
447 u64 vm_exit_msr_store_addr;
448 u64 vm_exit_msr_load_addr;
449 u64 vm_entry_msr_load_addr;
450 u64 tsc_offset;
451 u64 virtual_apic_page_addr;
452 u64 apic_access_addr;
Wincy Van705699a2015-02-03 23:58:17 +0800453 u64 posted_intr_desc_addr;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300454 u64 ept_pointer;
Wincy Van608406e2015-02-03 23:57:51 +0800455 u64 eoi_exit_bitmap0;
456 u64 eoi_exit_bitmap1;
457 u64 eoi_exit_bitmap2;
458 u64 eoi_exit_bitmap3;
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800459 u64 xss_exit_bitmap;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300460 u64 guest_physical_address;
461 u64 vmcs_link_pointer;
462 u64 guest_ia32_debugctl;
463 u64 guest_ia32_pat;
464 u64 guest_ia32_efer;
465 u64 guest_ia32_perf_global_ctrl;
466 u64 guest_pdptr0;
467 u64 guest_pdptr1;
468 u64 guest_pdptr2;
469 u64 guest_pdptr3;
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100470 u64 guest_bndcfgs;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300471 u64 host_ia32_pat;
472 u64 host_ia32_efer;
473 u64 host_ia32_perf_global_ctrl;
Jim Mattsonb348e792018-05-01 15:40:27 -0700474 u64 vmread_bitmap;
475 u64 vmwrite_bitmap;
476 u64 vm_function_control;
477 u64 eptp_list_address;
478 u64 pml_address;
479 u64 padding64[3]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300480 /*
481 * To allow migration of L1 (complete with its L2 guests) between
482 * machines of different natural widths (32 or 64 bit), we cannot have
483 * unsigned long fields with no explict size. We use u64 (aliased
484 * natural_width) instead. Luckily, x86 is little-endian.
485 */
486 natural_width cr0_guest_host_mask;
487 natural_width cr4_guest_host_mask;
488 natural_width cr0_read_shadow;
489 natural_width cr4_read_shadow;
490 natural_width cr3_target_value0;
491 natural_width cr3_target_value1;
492 natural_width cr3_target_value2;
493 natural_width cr3_target_value3;
494 natural_width exit_qualification;
495 natural_width guest_linear_address;
496 natural_width guest_cr0;
497 natural_width guest_cr3;
498 natural_width guest_cr4;
499 natural_width guest_es_base;
500 natural_width guest_cs_base;
501 natural_width guest_ss_base;
502 natural_width guest_ds_base;
503 natural_width guest_fs_base;
504 natural_width guest_gs_base;
505 natural_width guest_ldtr_base;
506 natural_width guest_tr_base;
507 natural_width guest_gdtr_base;
508 natural_width guest_idtr_base;
509 natural_width guest_dr7;
510 natural_width guest_rsp;
511 natural_width guest_rip;
512 natural_width guest_rflags;
513 natural_width guest_pending_dbg_exceptions;
514 natural_width guest_sysenter_esp;
515 natural_width guest_sysenter_eip;
516 natural_width host_cr0;
517 natural_width host_cr3;
518 natural_width host_cr4;
519 natural_width host_fs_base;
520 natural_width host_gs_base;
521 natural_width host_tr_base;
522 natural_width host_gdtr_base;
523 natural_width host_idtr_base;
524 natural_width host_ia32_sysenter_esp;
525 natural_width host_ia32_sysenter_eip;
526 natural_width host_rsp;
527 natural_width host_rip;
528 natural_width paddingl[8]; /* room for future expansion */
529 u32 pin_based_vm_exec_control;
530 u32 cpu_based_vm_exec_control;
531 u32 exception_bitmap;
532 u32 page_fault_error_code_mask;
533 u32 page_fault_error_code_match;
534 u32 cr3_target_count;
535 u32 vm_exit_controls;
536 u32 vm_exit_msr_store_count;
537 u32 vm_exit_msr_load_count;
538 u32 vm_entry_controls;
539 u32 vm_entry_msr_load_count;
540 u32 vm_entry_intr_info_field;
541 u32 vm_entry_exception_error_code;
542 u32 vm_entry_instruction_len;
543 u32 tpr_threshold;
544 u32 secondary_vm_exec_control;
545 u32 vm_instruction_error;
546 u32 vm_exit_reason;
547 u32 vm_exit_intr_info;
548 u32 vm_exit_intr_error_code;
549 u32 idt_vectoring_info_field;
550 u32 idt_vectoring_error_code;
551 u32 vm_exit_instruction_len;
552 u32 vmx_instruction_info;
553 u32 guest_es_limit;
554 u32 guest_cs_limit;
555 u32 guest_ss_limit;
556 u32 guest_ds_limit;
557 u32 guest_fs_limit;
558 u32 guest_gs_limit;
559 u32 guest_ldtr_limit;
560 u32 guest_tr_limit;
561 u32 guest_gdtr_limit;
562 u32 guest_idtr_limit;
563 u32 guest_es_ar_bytes;
564 u32 guest_cs_ar_bytes;
565 u32 guest_ss_ar_bytes;
566 u32 guest_ds_ar_bytes;
567 u32 guest_fs_ar_bytes;
568 u32 guest_gs_ar_bytes;
569 u32 guest_ldtr_ar_bytes;
570 u32 guest_tr_ar_bytes;
571 u32 guest_interruptibility_info;
572 u32 guest_activity_state;
573 u32 guest_sysenter_cs;
574 u32 host_ia32_sysenter_cs;
Jan Kiszka0238ea92013-03-13 11:31:24 +0100575 u32 vmx_preemption_timer_value;
576 u32 padding32[7]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300577 u16 virtual_processor_id;
Wincy Van705699a2015-02-03 23:58:17 +0800578 u16 posted_intr_nv;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300579 u16 guest_es_selector;
580 u16 guest_cs_selector;
581 u16 guest_ss_selector;
582 u16 guest_ds_selector;
583 u16 guest_fs_selector;
584 u16 guest_gs_selector;
585 u16 guest_ldtr_selector;
586 u16 guest_tr_selector;
Wincy Van608406e2015-02-03 23:57:51 +0800587 u16 guest_intr_status;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300588 u16 host_es_selector;
589 u16 host_cs_selector;
590 u16 host_ss_selector;
591 u16 host_ds_selector;
592 u16 host_fs_selector;
593 u16 host_gs_selector;
594 u16 host_tr_selector;
Jim Mattsonb348e792018-05-01 15:40:27 -0700595 u16 guest_pml_index;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300596};
597
598/*
Jim Mattson21ebf532018-05-01 15:40:28 -0700599 * For save/restore compatibility, the vmcs12 field offsets must not change.
600 */
601#define CHECK_OFFSET(field, loc) \
602 BUILD_BUG_ON_MSG(offsetof(struct vmcs12, field) != (loc), \
603 "Offset of " #field " in struct vmcs12 has changed.")
604
605static inline void vmx_check_vmcs12_offsets(void) {
Liran Alon392b2f22018-06-23 02:35:01 +0300606 CHECK_OFFSET(hdr, 0);
Jim Mattson21ebf532018-05-01 15:40:28 -0700607 CHECK_OFFSET(abort, 4);
608 CHECK_OFFSET(launch_state, 8);
609 CHECK_OFFSET(io_bitmap_a, 40);
610 CHECK_OFFSET(io_bitmap_b, 48);
611 CHECK_OFFSET(msr_bitmap, 56);
612 CHECK_OFFSET(vm_exit_msr_store_addr, 64);
613 CHECK_OFFSET(vm_exit_msr_load_addr, 72);
614 CHECK_OFFSET(vm_entry_msr_load_addr, 80);
615 CHECK_OFFSET(tsc_offset, 88);
616 CHECK_OFFSET(virtual_apic_page_addr, 96);
617 CHECK_OFFSET(apic_access_addr, 104);
618 CHECK_OFFSET(posted_intr_desc_addr, 112);
619 CHECK_OFFSET(ept_pointer, 120);
620 CHECK_OFFSET(eoi_exit_bitmap0, 128);
621 CHECK_OFFSET(eoi_exit_bitmap1, 136);
622 CHECK_OFFSET(eoi_exit_bitmap2, 144);
623 CHECK_OFFSET(eoi_exit_bitmap3, 152);
624 CHECK_OFFSET(xss_exit_bitmap, 160);
625 CHECK_OFFSET(guest_physical_address, 168);
626 CHECK_OFFSET(vmcs_link_pointer, 176);
627 CHECK_OFFSET(guest_ia32_debugctl, 184);
628 CHECK_OFFSET(guest_ia32_pat, 192);
629 CHECK_OFFSET(guest_ia32_efer, 200);
630 CHECK_OFFSET(guest_ia32_perf_global_ctrl, 208);
631 CHECK_OFFSET(guest_pdptr0, 216);
632 CHECK_OFFSET(guest_pdptr1, 224);
633 CHECK_OFFSET(guest_pdptr2, 232);
634 CHECK_OFFSET(guest_pdptr3, 240);
635 CHECK_OFFSET(guest_bndcfgs, 248);
636 CHECK_OFFSET(host_ia32_pat, 256);
637 CHECK_OFFSET(host_ia32_efer, 264);
638 CHECK_OFFSET(host_ia32_perf_global_ctrl, 272);
639 CHECK_OFFSET(vmread_bitmap, 280);
640 CHECK_OFFSET(vmwrite_bitmap, 288);
641 CHECK_OFFSET(vm_function_control, 296);
642 CHECK_OFFSET(eptp_list_address, 304);
643 CHECK_OFFSET(pml_address, 312);
644 CHECK_OFFSET(cr0_guest_host_mask, 344);
645 CHECK_OFFSET(cr4_guest_host_mask, 352);
646 CHECK_OFFSET(cr0_read_shadow, 360);
647 CHECK_OFFSET(cr4_read_shadow, 368);
648 CHECK_OFFSET(cr3_target_value0, 376);
649 CHECK_OFFSET(cr3_target_value1, 384);
650 CHECK_OFFSET(cr3_target_value2, 392);
651 CHECK_OFFSET(cr3_target_value3, 400);
652 CHECK_OFFSET(exit_qualification, 408);
653 CHECK_OFFSET(guest_linear_address, 416);
654 CHECK_OFFSET(guest_cr0, 424);
655 CHECK_OFFSET(guest_cr3, 432);
656 CHECK_OFFSET(guest_cr4, 440);
657 CHECK_OFFSET(guest_es_base, 448);
658 CHECK_OFFSET(guest_cs_base, 456);
659 CHECK_OFFSET(guest_ss_base, 464);
660 CHECK_OFFSET(guest_ds_base, 472);
661 CHECK_OFFSET(guest_fs_base, 480);
662 CHECK_OFFSET(guest_gs_base, 488);
663 CHECK_OFFSET(guest_ldtr_base, 496);
664 CHECK_OFFSET(guest_tr_base, 504);
665 CHECK_OFFSET(guest_gdtr_base, 512);
666 CHECK_OFFSET(guest_idtr_base, 520);
667 CHECK_OFFSET(guest_dr7, 528);
668 CHECK_OFFSET(guest_rsp, 536);
669 CHECK_OFFSET(guest_rip, 544);
670 CHECK_OFFSET(guest_rflags, 552);
671 CHECK_OFFSET(guest_pending_dbg_exceptions, 560);
672 CHECK_OFFSET(guest_sysenter_esp, 568);
673 CHECK_OFFSET(guest_sysenter_eip, 576);
674 CHECK_OFFSET(host_cr0, 584);
675 CHECK_OFFSET(host_cr3, 592);
676 CHECK_OFFSET(host_cr4, 600);
677 CHECK_OFFSET(host_fs_base, 608);
678 CHECK_OFFSET(host_gs_base, 616);
679 CHECK_OFFSET(host_tr_base, 624);
680 CHECK_OFFSET(host_gdtr_base, 632);
681 CHECK_OFFSET(host_idtr_base, 640);
682 CHECK_OFFSET(host_ia32_sysenter_esp, 648);
683 CHECK_OFFSET(host_ia32_sysenter_eip, 656);
684 CHECK_OFFSET(host_rsp, 664);
685 CHECK_OFFSET(host_rip, 672);
686 CHECK_OFFSET(pin_based_vm_exec_control, 744);
687 CHECK_OFFSET(cpu_based_vm_exec_control, 748);
688 CHECK_OFFSET(exception_bitmap, 752);
689 CHECK_OFFSET(page_fault_error_code_mask, 756);
690 CHECK_OFFSET(page_fault_error_code_match, 760);
691 CHECK_OFFSET(cr3_target_count, 764);
692 CHECK_OFFSET(vm_exit_controls, 768);
693 CHECK_OFFSET(vm_exit_msr_store_count, 772);
694 CHECK_OFFSET(vm_exit_msr_load_count, 776);
695 CHECK_OFFSET(vm_entry_controls, 780);
696 CHECK_OFFSET(vm_entry_msr_load_count, 784);
697 CHECK_OFFSET(vm_entry_intr_info_field, 788);
698 CHECK_OFFSET(vm_entry_exception_error_code, 792);
699 CHECK_OFFSET(vm_entry_instruction_len, 796);
700 CHECK_OFFSET(tpr_threshold, 800);
701 CHECK_OFFSET(secondary_vm_exec_control, 804);
702 CHECK_OFFSET(vm_instruction_error, 808);
703 CHECK_OFFSET(vm_exit_reason, 812);
704 CHECK_OFFSET(vm_exit_intr_info, 816);
705 CHECK_OFFSET(vm_exit_intr_error_code, 820);
706 CHECK_OFFSET(idt_vectoring_info_field, 824);
707 CHECK_OFFSET(idt_vectoring_error_code, 828);
708 CHECK_OFFSET(vm_exit_instruction_len, 832);
709 CHECK_OFFSET(vmx_instruction_info, 836);
710 CHECK_OFFSET(guest_es_limit, 840);
711 CHECK_OFFSET(guest_cs_limit, 844);
712 CHECK_OFFSET(guest_ss_limit, 848);
713 CHECK_OFFSET(guest_ds_limit, 852);
714 CHECK_OFFSET(guest_fs_limit, 856);
715 CHECK_OFFSET(guest_gs_limit, 860);
716 CHECK_OFFSET(guest_ldtr_limit, 864);
717 CHECK_OFFSET(guest_tr_limit, 868);
718 CHECK_OFFSET(guest_gdtr_limit, 872);
719 CHECK_OFFSET(guest_idtr_limit, 876);
720 CHECK_OFFSET(guest_es_ar_bytes, 880);
721 CHECK_OFFSET(guest_cs_ar_bytes, 884);
722 CHECK_OFFSET(guest_ss_ar_bytes, 888);
723 CHECK_OFFSET(guest_ds_ar_bytes, 892);
724 CHECK_OFFSET(guest_fs_ar_bytes, 896);
725 CHECK_OFFSET(guest_gs_ar_bytes, 900);
726 CHECK_OFFSET(guest_ldtr_ar_bytes, 904);
727 CHECK_OFFSET(guest_tr_ar_bytes, 908);
728 CHECK_OFFSET(guest_interruptibility_info, 912);
729 CHECK_OFFSET(guest_activity_state, 916);
730 CHECK_OFFSET(guest_sysenter_cs, 920);
731 CHECK_OFFSET(host_ia32_sysenter_cs, 924);
732 CHECK_OFFSET(vmx_preemption_timer_value, 928);
733 CHECK_OFFSET(virtual_processor_id, 960);
734 CHECK_OFFSET(posted_intr_nv, 962);
735 CHECK_OFFSET(guest_es_selector, 964);
736 CHECK_OFFSET(guest_cs_selector, 966);
737 CHECK_OFFSET(guest_ss_selector, 968);
738 CHECK_OFFSET(guest_ds_selector, 970);
739 CHECK_OFFSET(guest_fs_selector, 972);
740 CHECK_OFFSET(guest_gs_selector, 974);
741 CHECK_OFFSET(guest_ldtr_selector, 976);
742 CHECK_OFFSET(guest_tr_selector, 978);
743 CHECK_OFFSET(guest_intr_status, 980);
744 CHECK_OFFSET(host_es_selector, 982);
745 CHECK_OFFSET(host_cs_selector, 984);
746 CHECK_OFFSET(host_ss_selector, 986);
747 CHECK_OFFSET(host_ds_selector, 988);
748 CHECK_OFFSET(host_fs_selector, 990);
749 CHECK_OFFSET(host_gs_selector, 992);
750 CHECK_OFFSET(host_tr_selector, 994);
751 CHECK_OFFSET(guest_pml_index, 996);
752}
753
754/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300755 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
756 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
757 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
Jim Mattsonb348e792018-05-01 15:40:27 -0700758 *
759 * IMPORTANT: Changing this value will break save/restore compatibility with
760 * older kvm releases.
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300761 */
762#define VMCS12_REVISION 0x11e57ed0
763
764/*
765 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
766 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
767 * current implementation, 4K are reserved to avoid future complications.
768 */
769#define VMCS12_SIZE 0x1000
770
771/*
Jim Mattson5b157062017-12-22 12:11:12 -0800772 * VMCS12_MAX_FIELD_INDEX is the highest index value used in any
773 * supported VMCS12 field encoding.
774 */
775#define VMCS12_MAX_FIELD_INDEX 0x17
776
Paolo Bonzini6677f3d2018-02-26 13:40:08 +0100777struct nested_vmx_msrs {
778 /*
779 * We only store the "true" versions of the VMX capability MSRs. We
780 * generate the "non-true" versions by setting the must-be-1 bits
781 * according to the SDM.
782 */
783 u32 procbased_ctls_low;
784 u32 procbased_ctls_high;
785 u32 secondary_ctls_low;
786 u32 secondary_ctls_high;
787 u32 pinbased_ctls_low;
788 u32 pinbased_ctls_high;
789 u32 exit_ctls_low;
790 u32 exit_ctls_high;
791 u32 entry_ctls_low;
792 u32 entry_ctls_high;
793 u32 misc_low;
794 u32 misc_high;
795 u32 ept_caps;
796 u32 vpid_caps;
797 u64 basic;
798 u64 cr0_fixed0;
799 u64 cr0_fixed1;
800 u64 cr4_fixed0;
801 u64 cr4_fixed1;
802 u64 vmcs_enum;
803 u64 vmfunc_controls;
804};
805
Jim Mattson5b157062017-12-22 12:11:12 -0800806/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300807 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
808 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
809 */
810struct nested_vmx {
811 /* Has the level1 guest done vmxon? */
812 bool vmxon;
Bandan Das3573e222014-05-06 02:19:16 -0400813 gpa_t vmxon_ptr;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400814 bool pml_full;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300815
816 /* The guest-physical address of the current VMCS L1 keeps for L2 */
817 gpa_t current_vmptr;
David Matlack4f2777b2016-07-13 17:16:37 -0700818 /*
819 * Cache of the guest's VMCS, existing outside of guest memory.
820 * Loaded from guest memory during VMPTRLD. Flushed to guest
David Matlack8ca44e82017-08-01 14:00:39 -0700821 * memory during VMCLEAR and VMPTRLD.
David Matlack4f2777b2016-07-13 17:16:37 -0700822 */
823 struct vmcs12 *cached_vmcs12;
Abel Gordon012f83c2013-04-18 14:39:25 +0300824 /*
Liran Alon61ada742018-06-23 02:35:08 +0300825 * Cache of the guest's shadow VMCS, existing outside of guest
826 * memory. Loaded from guest memory during VM entry. Flushed
827 * to guest memory during VM exit.
828 */
829 struct vmcs12 *cached_shadow_vmcs12;
830 /*
Abel Gordon012f83c2013-04-18 14:39:25 +0300831 * Indicates if the shadow vmcs must be updated with the
832 * data hold by vmcs12
833 */
834 bool sync_shadow_vmcs;
Paolo Bonzini74a497f2017-12-20 13:55:39 +0100835 bool dirty_vmcs12;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300836
Jim Mattson8d860bb2018-05-09 16:56:05 -0400837 bool change_vmcs01_virtual_apic_mode;
838
Nadav Har'El644d7112011-05-25 23:12:35 +0300839 /* L2 must run next, and mustn't decide to exit to L1. */
840 bool nested_run_pending;
Jim Mattsonde3a0022017-11-27 17:22:25 -0600841
842 struct loaded_vmcs vmcs02;
843
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300844 /*
Jim Mattsonde3a0022017-11-27 17:22:25 -0600845 * Guest pages referred to in the vmcs02 with host-physical
846 * pointers, so we must keep them pinned while L2 runs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300847 */
848 struct page *apic_access_page;
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800849 struct page *virtual_apic_page;
Wincy Van705699a2015-02-03 23:58:17 +0800850 struct page *pi_desc_page;
851 struct pi_desc *pi_desc;
852 bool pi_pending;
853 u16 posted_intr_nv;
Jan Kiszkaf41245002014-03-07 20:03:13 +0100854
855 struct hrtimer preemption_timer;
856 bool preemption_timer_expired;
Jan Kiszka2996fca2014-06-16 13:59:43 +0200857
858 /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */
859 u64 vmcs01_debugctl;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800860
Wanpeng Li5c614b32015-10-13 09:18:36 -0700861 u16 vpid02;
862 u16 last_vpid;
863
Paolo Bonzini6677f3d2018-02-26 13:40:08 +0100864 struct nested_vmx_msrs msrs;
Ladi Prosek72e9cbd2017-10-11 16:54:43 +0200865
866 /* SMM related state */
867 struct {
868 /* in VMX operation on SMM entry? */
869 bool vmxon;
870 /* in guest mode on SMM entry? */
871 bool guest_mode;
872 } smm;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300873};
874
Yang Zhang01e439b2013-04-11 19:25:12 +0800875#define POSTED_INTR_ON 0
Feng Wuebbfc762015-09-18 22:29:46 +0800876#define POSTED_INTR_SN 1
877
Yang Zhang01e439b2013-04-11 19:25:12 +0800878/* Posted-Interrupt Descriptor */
879struct pi_desc {
880 u32 pir[8]; /* Posted interrupt requested */
Feng Wu6ef15222015-09-18 22:29:45 +0800881 union {
882 struct {
883 /* bit 256 - Outstanding Notification */
884 u16 on : 1,
885 /* bit 257 - Suppress Notification */
886 sn : 1,
887 /* bit 271:258 - Reserved */
888 rsvd_1 : 14;
889 /* bit 279:272 - Notification Vector */
890 u8 nv;
891 /* bit 287:280 - Reserved */
892 u8 rsvd_2;
893 /* bit 319:288 - Notification Destination */
894 u32 ndst;
895 };
896 u64 control;
897 };
898 u32 rsvd[6];
Yang Zhang01e439b2013-04-11 19:25:12 +0800899} __aligned(64);
900
Yang Zhanga20ed542013-04-11 19:25:15 +0800901static bool pi_test_and_set_on(struct pi_desc *pi_desc)
902{
903 return test_and_set_bit(POSTED_INTR_ON,
904 (unsigned long *)&pi_desc->control);
905}
906
907static bool pi_test_and_clear_on(struct pi_desc *pi_desc)
908{
909 return test_and_clear_bit(POSTED_INTR_ON,
910 (unsigned long *)&pi_desc->control);
911}
912
913static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc)
914{
915 return test_and_set_bit(vector, (unsigned long *)pi_desc->pir);
916}
917
Feng Wuebbfc762015-09-18 22:29:46 +0800918static inline void pi_clear_sn(struct pi_desc *pi_desc)
919{
920 return clear_bit(POSTED_INTR_SN,
921 (unsigned long *)&pi_desc->control);
922}
923
924static inline void pi_set_sn(struct pi_desc *pi_desc)
925{
926 return set_bit(POSTED_INTR_SN,
927 (unsigned long *)&pi_desc->control);
928}
929
Paolo Bonziniad361092016-09-20 16:15:05 +0200930static inline void pi_clear_on(struct pi_desc *pi_desc)
931{
932 clear_bit(POSTED_INTR_ON,
933 (unsigned long *)&pi_desc->control);
934}
935
Feng Wuebbfc762015-09-18 22:29:46 +0800936static inline int pi_test_on(struct pi_desc *pi_desc)
937{
938 return test_bit(POSTED_INTR_ON,
939 (unsigned long *)&pi_desc->control);
940}
941
942static inline int pi_test_sn(struct pi_desc *pi_desc)
943{
944 return test_bit(POSTED_INTR_SN,
945 (unsigned long *)&pi_desc->control);
946}
947
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400948struct vmx_msrs {
949 unsigned int nr;
950 struct vmx_msr_entry val[NR_AUTOLOAD_MSRS];
951};
952
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400953struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000954 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300955 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300956 u8 fail;
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100957 u8 msr_bitmap_mode;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300958 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200959 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200960 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300961 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400962 int nmsrs;
963 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800964 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400965#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300966 u64 msr_host_kernel_gs_base;
967 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400968#endif
Ashok Raj15d45072018-02-01 22:59:43 +0100969
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +0100970 u64 arch_capabilities;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100971 u64 spec_ctrl;
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +0100972
Gleb Natapov2961e8762013-11-25 15:37:13 +0200973 u32 vm_entry_controls_shadow;
974 u32 vm_exit_controls_shadow;
Paolo Bonzini80154d72017-08-24 13:55:35 +0200975 u32 secondary_exec_control;
976
Nadav Har'Eld462b812011-05-24 15:26:10 +0300977 /*
978 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
979 * non-nested (L1) guest, it always points to vmcs01. For a nested
Sean Christophersonbd9966d2018-07-23 12:32:42 -0700980 * guest (L2), it points to a different VMCS. loaded_cpu_state points
981 * to the VMCS whose state is loaded into the CPU registers that only
982 * need to be switched when transitioning to/from the kernel; a NULL
983 * value indicates that host state is loaded.
Nadav Har'Eld462b812011-05-24 15:26:10 +0300984 */
985 struct loaded_vmcs vmcs01;
986 struct loaded_vmcs *loaded_vmcs;
Sean Christophersonbd9966d2018-07-23 12:32:42 -0700987 struct loaded_vmcs *loaded_cpu_state;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300988 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300989 struct msr_autoload {
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400990 struct vmx_msrs guest;
991 struct vmx_msrs host;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300992 } msr_autoload;
Sean Christophersonbd9966d2018-07-23 12:32:42 -0700993
Avi Kivity9c8cba32007-11-22 11:42:59 +0200994 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300995 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300996 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300997 struct kvm_segment segs[8];
998 } rmode;
999 struct {
1000 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001001 struct kvm_save_segment {
1002 u16 selector;
1003 unsigned long base;
1004 u32 limit;
1005 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03001006 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +03001007 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001008 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +03001009 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02001010
Andi Kleena0861c02009-06-08 17:37:09 +08001011 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001012
Yang Zhang01e439b2013-04-11 19:25:12 +08001013 /* Posted interrupt descriptor */
1014 struct pi_desc pi_desc;
1015
Nadav Har'Elec378ae2011-05-25 23:02:54 +03001016 /* Support for a guest hypervisor (nested VMX) */
1017 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +02001018
1019 /* Dynamic PLE window. */
1020 int ple_window;
1021 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +08001022
Sean Christophersond264ee02018-08-27 15:21:12 -07001023 bool req_immediate_exit;
1024
Kai Huang843e4332015-01-28 10:54:28 +08001025 /* Support for PML */
1026#define PML_ENTITY_NUM 512
1027 struct page *pml_pg;
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001028
Yunhong Jiang64672c92016-06-13 14:19:59 -07001029 /* apic deadline value in host tsc */
1030 u64 hv_deadline_tsc;
1031
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001032 u64 current_tsc_ratio;
Xiao Guangrong1be0e612016-03-22 16:51:18 +08001033
Xiao Guangrong1be0e612016-03-22 16:51:18 +08001034 u32 host_pkru;
Haozhong Zhang3b840802016-06-22 14:59:54 +08001035
Wanpeng Li74c55932017-11-29 01:31:20 -08001036 unsigned long host_debugctlmsr;
1037
Haozhong Zhang37e4c992016-06-22 14:59:55 +08001038 /*
1039 * Only bits masked by msr_ia32_feature_control_valid_bits can be set in
1040 * msr_ia32_feature_control. FEATURE_CONTROL_LOCKED is always included
1041 * in msr_ia32_feature_control_valid_bits.
1042 */
Haozhong Zhang3b840802016-06-22 14:59:54 +08001043 u64 msr_ia32_feature_control;
Haozhong Zhang37e4c992016-06-22 14:59:55 +08001044 u64 msr_ia32_feature_control_valid_bits;
Tianyu Lan877ad952018-07-19 08:40:23 +00001045 u64 ept_pointer;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001046};
1047
Avi Kivity2fb92db2011-04-27 19:42:18 +03001048enum segment_cache_field {
1049 SEG_FIELD_SEL = 0,
1050 SEG_FIELD_BASE = 1,
1051 SEG_FIELD_LIMIT = 2,
1052 SEG_FIELD_AR = 3,
1053
1054 SEG_FIELD_NR = 4
1055};
1056
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07001057static inline struct kvm_vmx *to_kvm_vmx(struct kvm *kvm)
1058{
1059 return container_of(kvm, struct kvm_vmx, kvm);
1060}
1061
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001062static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
1063{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001064 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001065}
1066
Feng Wuefc64402015-09-18 22:29:51 +08001067static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
1068{
1069 return &(to_vmx(vcpu)->pi_desc);
1070}
1071
Jim Mattson58e9ffa2017-12-22 12:13:13 -08001072#define ROL16(val, n) ((u16)(((u16)(val) << (n)) | ((u16)(val) >> (16 - (n)))))
Nadav Har'El22bd0352011-05-25 23:05:57 +03001073#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
Jim Mattson58e9ffa2017-12-22 12:13:13 -08001074#define FIELD(number, name) [ROL16(number, 6)] = VMCS12_OFFSET(name)
1075#define FIELD64(number, name) \
1076 FIELD(number, name), \
1077 [ROL16(number##_HIGH, 6)] = VMCS12_OFFSET(name) + sizeof(u32)
Nadav Har'El22bd0352011-05-25 23:05:57 +03001078
Abel Gordon4607c2d2013-04-18 14:35:55 +03001079
Paolo Bonzini44900ba2017-12-13 12:58:02 +01001080static u16 shadow_read_only_fields[] = {
Paolo Bonzinic9e9dea2017-12-20 13:16:29 +01001081#define SHADOW_FIELD_RO(x) x,
1082#include "vmx_shadow_fields.h"
Abel Gordon4607c2d2013-04-18 14:35:55 +03001083};
Bandan Dasfe2b2012014-04-21 15:20:14 -04001084static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +03001085 ARRAY_SIZE(shadow_read_only_fields);
1086
Paolo Bonzini44900ba2017-12-13 12:58:02 +01001087static u16 shadow_read_write_fields[] = {
Paolo Bonzinic9e9dea2017-12-20 13:16:29 +01001088#define SHADOW_FIELD_RW(x) x,
1089#include "vmx_shadow_fields.h"
Abel Gordon4607c2d2013-04-18 14:35:55 +03001090};
Bandan Dasfe2b2012014-04-21 15:20:14 -04001091static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +03001092 ARRAY_SIZE(shadow_read_write_fields);
1093
Mathias Krause772e0312012-08-30 01:30:19 +02001094static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +03001095 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +08001096 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001097 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
1098 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
1099 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
1100 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
1101 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
1102 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
1103 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
1104 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +08001105 FIELD(GUEST_INTR_STATUS, guest_intr_status),
Bandan Dasc5f983f2017-05-05 15:25:14 -04001106 FIELD(GUEST_PML_INDEX, guest_pml_index),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001107 FIELD(HOST_ES_SELECTOR, host_es_selector),
1108 FIELD(HOST_CS_SELECTOR, host_cs_selector),
1109 FIELD(HOST_SS_SELECTOR, host_ss_selector),
1110 FIELD(HOST_DS_SELECTOR, host_ds_selector),
1111 FIELD(HOST_FS_SELECTOR, host_fs_selector),
1112 FIELD(HOST_GS_SELECTOR, host_gs_selector),
1113 FIELD(HOST_TR_SELECTOR, host_tr_selector),
1114 FIELD64(IO_BITMAP_A, io_bitmap_a),
1115 FIELD64(IO_BITMAP_B, io_bitmap_b),
1116 FIELD64(MSR_BITMAP, msr_bitmap),
1117 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
1118 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
1119 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
Jim Mattsonb348e792018-05-01 15:40:27 -07001120 FIELD64(PML_ADDRESS, pml_address),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001121 FIELD64(TSC_OFFSET, tsc_offset),
1122 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
1123 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
Wincy Van705699a2015-02-03 23:58:17 +08001124 FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr),
Bandan Das27c42a12017-08-03 15:54:42 -04001125 FIELD64(VM_FUNCTION_CONTROL, vm_function_control),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001126 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +08001127 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
1128 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
1129 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
1130 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Bandan Das41ab9372017-08-03 15:54:43 -04001131 FIELD64(EPTP_LIST_ADDRESS, eptp_list_address),
Jim Mattsonb348e792018-05-01 15:40:27 -07001132 FIELD64(VMREAD_BITMAP, vmread_bitmap),
1133 FIELD64(VMWRITE_BITMAP, vmwrite_bitmap),
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001134 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001135 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
1136 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
1137 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
1138 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
1139 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
1140 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
1141 FIELD64(GUEST_PDPTR0, guest_pdptr0),
1142 FIELD64(GUEST_PDPTR1, guest_pdptr1),
1143 FIELD64(GUEST_PDPTR2, guest_pdptr2),
1144 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +01001145 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001146 FIELD64(HOST_IA32_PAT, host_ia32_pat),
1147 FIELD64(HOST_IA32_EFER, host_ia32_efer),
1148 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
1149 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
1150 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
1151 FIELD(EXCEPTION_BITMAP, exception_bitmap),
1152 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
1153 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
1154 FIELD(CR3_TARGET_COUNT, cr3_target_count),
1155 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
1156 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
1157 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
1158 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
1159 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
1160 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
1161 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
1162 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
1163 FIELD(TPR_THRESHOLD, tpr_threshold),
1164 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
1165 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
1166 FIELD(VM_EXIT_REASON, vm_exit_reason),
1167 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
1168 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
1169 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
1170 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
1171 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
1172 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
1173 FIELD(GUEST_ES_LIMIT, guest_es_limit),
1174 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
1175 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
1176 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
1177 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
1178 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
1179 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
1180 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
1181 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
1182 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
1183 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
1184 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
1185 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
1186 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
1187 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
1188 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
1189 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
1190 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
1191 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
1192 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
1193 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
1194 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +01001195 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001196 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
1197 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
1198 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
1199 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
1200 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
1201 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
1202 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
1203 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
1204 FIELD(EXIT_QUALIFICATION, exit_qualification),
1205 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
1206 FIELD(GUEST_CR0, guest_cr0),
1207 FIELD(GUEST_CR3, guest_cr3),
1208 FIELD(GUEST_CR4, guest_cr4),
1209 FIELD(GUEST_ES_BASE, guest_es_base),
1210 FIELD(GUEST_CS_BASE, guest_cs_base),
1211 FIELD(GUEST_SS_BASE, guest_ss_base),
1212 FIELD(GUEST_DS_BASE, guest_ds_base),
1213 FIELD(GUEST_FS_BASE, guest_fs_base),
1214 FIELD(GUEST_GS_BASE, guest_gs_base),
1215 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
1216 FIELD(GUEST_TR_BASE, guest_tr_base),
1217 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
1218 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
1219 FIELD(GUEST_DR7, guest_dr7),
1220 FIELD(GUEST_RSP, guest_rsp),
1221 FIELD(GUEST_RIP, guest_rip),
1222 FIELD(GUEST_RFLAGS, guest_rflags),
1223 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
1224 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
1225 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
1226 FIELD(HOST_CR0, host_cr0),
1227 FIELD(HOST_CR3, host_cr3),
1228 FIELD(HOST_CR4, host_cr4),
1229 FIELD(HOST_FS_BASE, host_fs_base),
1230 FIELD(HOST_GS_BASE, host_gs_base),
1231 FIELD(HOST_TR_BASE, host_tr_base),
1232 FIELD(HOST_GDTR_BASE, host_gdtr_base),
1233 FIELD(HOST_IDTR_BASE, host_idtr_base),
1234 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
1235 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
1236 FIELD(HOST_RSP, host_rsp),
1237 FIELD(HOST_RIP, host_rip),
1238};
Nadav Har'El22bd0352011-05-25 23:05:57 +03001239
1240static inline short vmcs_field_to_offset(unsigned long field)
1241{
Dan Williams085331d2018-01-31 17:47:03 -08001242 const size_t size = ARRAY_SIZE(vmcs_field_to_offset_table);
1243 unsigned short offset;
Jim Mattson58e9ffa2017-12-22 12:13:13 -08001244 unsigned index;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01001245
Jim Mattson58e9ffa2017-12-22 12:13:13 -08001246 if (field >> 15)
Andrew Honig75f139a2018-01-10 10:12:03 -08001247 return -ENOENT;
1248
Jim Mattson58e9ffa2017-12-22 12:13:13 -08001249 index = ROL16(field, 6);
Linus Torvalds15303ba2018-02-10 13:16:35 -08001250 if (index >= size)
Andrew Honig75f139a2018-01-10 10:12:03 -08001251 return -ENOENT;
1252
Linus Torvalds15303ba2018-02-10 13:16:35 -08001253 index = array_index_nospec(index, size);
1254 offset = vmcs_field_to_offset_table[index];
Dan Williams085331d2018-01-31 17:47:03 -08001255 if (offset == 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01001256 return -ENOENT;
Dan Williams085331d2018-01-31 17:47:03 -08001257 return offset;
Nadav Har'El22bd0352011-05-25 23:05:57 +03001258}
1259
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03001260static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
1261{
David Matlack4f2777b2016-07-13 17:16:37 -07001262 return to_vmx(vcpu)->nested.cached_vmcs12;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03001263}
1264
Liran Alon61ada742018-06-23 02:35:08 +03001265static inline struct vmcs12 *get_shadow_vmcs12(struct kvm_vcpu *vcpu)
1266{
1267 return to_vmx(vcpu)->nested.cached_shadow_vmcs12;
1268}
1269
Peter Feiner995f00a2017-06-30 17:26:32 -07001270static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03001271static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Peter Feiner995f00a2017-06-30 17:26:32 -07001272static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa);
Wanpeng Lif53cd632014-12-02 19:14:58 +08001273static bool vmx_xsaves_supported(void);
Orit Wassermanb246dd52012-05-31 14:49:22 +03001274static void vmx_set_segment(struct kvm_vcpu *vcpu,
1275 struct kvm_segment *var, int seg);
1276static void vmx_get_segment(struct kvm_vcpu *vcpu,
1277 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +02001278static bool guest_state_valid(struct kvm_vcpu *vcpu);
1279static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordon16f5b902013-04-18 14:38:25 +03001280static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Paolo Bonzinib96fb432017-07-27 12:29:32 +02001281static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu);
1282static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked);
1283static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
1284 u16 error_code);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01001285static void vmx_update_msr_bitmap(struct kvm_vcpu *vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01001286static void __always_inline vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
1287 u32 msr, int type);
Avi Kivity75880a02007-06-20 11:20:04 +03001288
Avi Kivity6aa8b732006-12-10 02:21:36 -08001289static DEFINE_PER_CPU(struct vmcs *, vmxarea);
1290static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001291/*
1292 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
1293 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
1294 */
1295static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001296
Feng Wubf9f6ac2015-09-18 22:29:55 +08001297/*
1298 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
1299 * can find which vCPU should be waken up.
1300 */
1301static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
1302static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
1303
Radim Krčmář23611332016-09-29 22:41:33 +02001304enum {
Radim Krčmář23611332016-09-29 22:41:33 +02001305 VMX_VMREAD_BITMAP,
1306 VMX_VMWRITE_BITMAP,
1307 VMX_BITMAP_NR
1308};
1309
1310static unsigned long *vmx_bitmap[VMX_BITMAP_NR];
1311
Radim Krčmář23611332016-09-29 22:41:33 +02001312#define vmx_vmread_bitmap (vmx_bitmap[VMX_VMREAD_BITMAP])
1313#define vmx_vmwrite_bitmap (vmx_bitmap[VMX_VMWRITE_BITMAP])
He, Qingfdef3ad2007-04-30 09:45:24 +03001314
Avi Kivity110312c2010-12-21 12:54:20 +02001315static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001316static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +02001317
Sheng Yang2384d2b2008-01-17 15:14:33 +08001318static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
1319static DEFINE_SPINLOCK(vmx_vpid_lock);
1320
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001321static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001322 int size;
1323 int order;
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03001324 u32 basic_cap;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001325 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001326 u32 pin_based_exec_ctrl;
1327 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001328 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001329 u32 vmexit_ctrl;
1330 u32 vmentry_ctrl;
Paolo Bonzini13893092018-02-26 13:40:09 +01001331 struct nested_vmx_msrs nested;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001332} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001333
Hannes Ederefff9e52008-11-28 17:02:06 +01001334static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +08001335 u32 ept;
1336 u32 vpid;
1337} vmx_capability;
1338
Avi Kivity6aa8b732006-12-10 02:21:36 -08001339#define VMX_SEGMENT_FIELD(seg) \
1340 [VCPU_SREG_##seg] = { \
1341 .selector = GUEST_##seg##_SELECTOR, \
1342 .base = GUEST_##seg##_BASE, \
1343 .limit = GUEST_##seg##_LIMIT, \
1344 .ar_bytes = GUEST_##seg##_AR_BYTES, \
1345 }
1346
Mathias Krause772e0312012-08-30 01:30:19 +02001347static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001348 unsigned selector;
1349 unsigned base;
1350 unsigned limit;
1351 unsigned ar_bytes;
1352} kvm_vmx_segment_fields[] = {
1353 VMX_SEGMENT_FIELD(CS),
1354 VMX_SEGMENT_FIELD(DS),
1355 VMX_SEGMENT_FIELD(ES),
1356 VMX_SEGMENT_FIELD(FS),
1357 VMX_SEGMENT_FIELD(GS),
1358 VMX_SEGMENT_FIELD(SS),
1359 VMX_SEGMENT_FIELD(TR),
1360 VMX_SEGMENT_FIELD(LDTR),
1361};
1362
Avi Kivity26bb0982009-09-07 11:14:12 +03001363static u64 host_efer;
1364
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001365static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
1366
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001367/*
Brian Gerst8c065852010-07-17 09:03:26 -04001368 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001369 * away by decrementing the array size.
1370 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001371static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001372#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +03001373 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001374#endif
Brian Gerst8c065852010-07-17 09:03:26 -04001375 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001376};
Avi Kivity6aa8b732006-12-10 02:21:36 -08001377
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001378DEFINE_STATIC_KEY_FALSE(enable_evmcs);
1379
1380#define current_evmcs ((struct hv_enlightened_vmcs *)this_cpu_read(current_vmcs))
1381
1382#define KVM_EVMCS_VERSION 1
1383
1384#if IS_ENABLED(CONFIG_HYPERV)
1385static bool __read_mostly enlightened_vmcs = true;
1386module_param(enlightened_vmcs, bool, 0444);
1387
1388static inline void evmcs_write64(unsigned long field, u64 value)
1389{
1390 u16 clean_field;
1391 int offset = get_evmcs_offset(field, &clean_field);
1392
1393 if (offset < 0)
1394 return;
1395
1396 *(u64 *)((char *)current_evmcs + offset) = value;
1397
1398 current_evmcs->hv_clean_fields &= ~clean_field;
1399}
1400
1401static inline void evmcs_write32(unsigned long field, u32 value)
1402{
1403 u16 clean_field;
1404 int offset = get_evmcs_offset(field, &clean_field);
1405
1406 if (offset < 0)
1407 return;
1408
1409 *(u32 *)((char *)current_evmcs + offset) = value;
1410 current_evmcs->hv_clean_fields &= ~clean_field;
1411}
1412
1413static inline void evmcs_write16(unsigned long field, u16 value)
1414{
1415 u16 clean_field;
1416 int offset = get_evmcs_offset(field, &clean_field);
1417
1418 if (offset < 0)
1419 return;
1420
1421 *(u16 *)((char *)current_evmcs + offset) = value;
1422 current_evmcs->hv_clean_fields &= ~clean_field;
1423}
1424
1425static inline u64 evmcs_read64(unsigned long field)
1426{
1427 int offset = get_evmcs_offset(field, NULL);
1428
1429 if (offset < 0)
1430 return 0;
1431
1432 return *(u64 *)((char *)current_evmcs + offset);
1433}
1434
1435static inline u32 evmcs_read32(unsigned long field)
1436{
1437 int offset = get_evmcs_offset(field, NULL);
1438
1439 if (offset < 0)
1440 return 0;
1441
1442 return *(u32 *)((char *)current_evmcs + offset);
1443}
1444
1445static inline u16 evmcs_read16(unsigned long field)
1446{
1447 int offset = get_evmcs_offset(field, NULL);
1448
1449 if (offset < 0)
1450 return 0;
1451
1452 return *(u16 *)((char *)current_evmcs + offset);
1453}
1454
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02001455static inline void evmcs_touch_msr_bitmap(void)
1456{
1457 if (unlikely(!current_evmcs))
1458 return;
1459
1460 if (current_evmcs->hv_enlightenments_control.msr_bitmap)
1461 current_evmcs->hv_clean_fields &=
1462 ~HV_VMX_ENLIGHTENED_CLEAN_FIELD_MSR_BITMAP;
1463}
1464
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001465static void evmcs_load(u64 phys_addr)
1466{
1467 struct hv_vp_assist_page *vp_ap =
1468 hv_get_vp_assist_page(smp_processor_id());
1469
1470 vp_ap->current_nested_vmcs = phys_addr;
1471 vp_ap->enlighten_vmentry = 1;
1472}
1473
1474static void evmcs_sanitize_exec_ctrls(struct vmcs_config *vmcs_conf)
1475{
1476 /*
1477 * Enlightened VMCSv1 doesn't support these:
1478 *
1479 * POSTED_INTR_NV = 0x00000002,
1480 * GUEST_INTR_STATUS = 0x00000810,
1481 * APIC_ACCESS_ADDR = 0x00002014,
1482 * POSTED_INTR_DESC_ADDR = 0x00002016,
1483 * EOI_EXIT_BITMAP0 = 0x0000201c,
1484 * EOI_EXIT_BITMAP1 = 0x0000201e,
1485 * EOI_EXIT_BITMAP2 = 0x00002020,
1486 * EOI_EXIT_BITMAP3 = 0x00002022,
1487 */
1488 vmcs_conf->pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
1489 vmcs_conf->cpu_based_2nd_exec_ctrl &=
1490 ~SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1491 vmcs_conf->cpu_based_2nd_exec_ctrl &=
1492 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1493 vmcs_conf->cpu_based_2nd_exec_ctrl &=
1494 ~SECONDARY_EXEC_APIC_REGISTER_VIRT;
1495
1496 /*
1497 * GUEST_PML_INDEX = 0x00000812,
1498 * PML_ADDRESS = 0x0000200e,
1499 */
1500 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_ENABLE_PML;
1501
1502 /* VM_FUNCTION_CONTROL = 0x00002018, */
1503 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_ENABLE_VMFUNC;
1504
1505 /*
1506 * EPTP_LIST_ADDRESS = 0x00002024,
1507 * VMREAD_BITMAP = 0x00002026,
1508 * VMWRITE_BITMAP = 0x00002028,
1509 */
1510 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_SHADOW_VMCS;
1511
1512 /*
1513 * TSC_MULTIPLIER = 0x00002032,
1514 */
1515 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_TSC_SCALING;
1516
1517 /*
1518 * PLE_GAP = 0x00004020,
1519 * PLE_WINDOW = 0x00004022,
1520 */
1521 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1522
1523 /*
1524 * VMX_PREEMPTION_TIMER_VALUE = 0x0000482E,
1525 */
1526 vmcs_conf->pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
1527
1528 /*
1529 * GUEST_IA32_PERF_GLOBAL_CTRL = 0x00002808,
1530 * HOST_IA32_PERF_GLOBAL_CTRL = 0x00002c04,
1531 */
1532 vmcs_conf->vmexit_ctrl &= ~VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL;
1533 vmcs_conf->vmentry_ctrl &= ~VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL;
1534
1535 /*
1536 * Currently unsupported in KVM:
1537 * GUEST_IA32_RTIT_CTL = 0x00002814,
1538 */
1539}
Tianyu Lan877ad952018-07-19 08:40:23 +00001540
1541/* check_ept_pointer() should be under protection of ept_pointer_lock. */
1542static void check_ept_pointer_match(struct kvm *kvm)
1543{
1544 struct kvm_vcpu *vcpu;
1545 u64 tmp_eptp = INVALID_PAGE;
1546 int i;
1547
1548 kvm_for_each_vcpu(i, vcpu, kvm) {
1549 if (!VALID_PAGE(tmp_eptp)) {
1550 tmp_eptp = to_vmx(vcpu)->ept_pointer;
1551 } else if (tmp_eptp != to_vmx(vcpu)->ept_pointer) {
1552 to_kvm_vmx(kvm)->ept_pointers_match
1553 = EPT_POINTERS_MISMATCH;
1554 return;
1555 }
1556 }
1557
1558 to_kvm_vmx(kvm)->ept_pointers_match = EPT_POINTERS_MATCH;
1559}
1560
1561static int vmx_hv_remote_flush_tlb(struct kvm *kvm)
1562{
1563 int ret;
1564
1565 spin_lock(&to_kvm_vmx(kvm)->ept_pointer_lock);
1566
1567 if (to_kvm_vmx(kvm)->ept_pointers_match == EPT_POINTERS_CHECK)
1568 check_ept_pointer_match(kvm);
1569
1570 if (to_kvm_vmx(kvm)->ept_pointers_match != EPT_POINTERS_MATCH) {
1571 ret = -ENOTSUPP;
1572 goto out;
1573 }
1574
1575 ret = hyperv_flush_guest_mapping(
1576 to_vmx(kvm_get_vcpu(kvm, 0))->ept_pointer);
1577
1578out:
1579 spin_unlock(&to_kvm_vmx(kvm)->ept_pointer_lock);
1580 return ret;
1581}
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001582#else /* !IS_ENABLED(CONFIG_HYPERV) */
1583static inline void evmcs_write64(unsigned long field, u64 value) {}
1584static inline void evmcs_write32(unsigned long field, u32 value) {}
1585static inline void evmcs_write16(unsigned long field, u16 value) {}
1586static inline u64 evmcs_read64(unsigned long field) { return 0; }
1587static inline u32 evmcs_read32(unsigned long field) { return 0; }
1588static inline u16 evmcs_read16(unsigned long field) { return 0; }
1589static inline void evmcs_load(u64 phys_addr) {}
1590static inline void evmcs_sanitize_exec_ctrls(struct vmcs_config *vmcs_conf) {}
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02001591static inline void evmcs_touch_msr_bitmap(void) {}
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001592#endif /* IS_ENABLED(CONFIG_HYPERV) */
1593
Jan Kiszka5bb16012016-02-09 20:14:21 +01001594static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001595{
1596 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1597 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +01001598 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
1599}
1600
Jan Kiszka6f054852016-02-09 20:15:18 +01001601static inline bool is_debug(u32 intr_info)
1602{
1603 return is_exception_n(intr_info, DB_VECTOR);
1604}
1605
1606static inline bool is_breakpoint(u32 intr_info)
1607{
1608 return is_exception_n(intr_info, BP_VECTOR);
1609}
1610
Jan Kiszka5bb16012016-02-09 20:14:21 +01001611static inline bool is_page_fault(u32 intr_info)
1612{
1613 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001614}
1615
Gui Jianfeng31299942010-03-15 17:29:09 +08001616static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001617{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001618 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001619}
1620
Gui Jianfeng31299942010-03-15 17:29:09 +08001621static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001622{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001623 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001624}
1625
Liran Alon9e869482018-03-12 13:12:51 +02001626static inline bool is_gp_fault(u32 intr_info)
1627{
1628 return is_exception_n(intr_info, GP_VECTOR);
1629}
1630
Gui Jianfeng31299942010-03-15 17:29:09 +08001631static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001632{
1633 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1634 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1635}
1636
Gui Jianfeng31299942010-03-15 17:29:09 +08001637static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001638{
1639 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1640 INTR_INFO_VALID_MASK)) ==
1641 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1642}
1643
Linus Torvalds32d43cd2018-03-20 12:16:59 -07001644/* Undocumented: icebp/int1 */
1645static inline bool is_icebp(u32 intr_info)
1646{
1647 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1648 == (INTR_TYPE_PRIV_SW_EXCEPTION | INTR_INFO_VALID_MASK);
1649}
1650
Gui Jianfeng31299942010-03-15 17:29:09 +08001651static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001652{
Sheng Yang04547152009-04-01 15:52:31 +08001653 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001654}
1655
Gui Jianfeng31299942010-03-15 17:29:09 +08001656static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001657{
Sheng Yang04547152009-04-01 15:52:31 +08001658 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001659}
1660
Paolo Bonzini35754c92015-07-29 12:05:37 +02001661static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001662{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001663 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001664}
1665
Gui Jianfeng31299942010-03-15 17:29:09 +08001666static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001667{
Sheng Yang04547152009-04-01 15:52:31 +08001668 return vmcs_config.cpu_based_exec_ctrl &
1669 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001670}
1671
Avi Kivity774ead32007-12-26 13:57:04 +02001672static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001673{
Sheng Yang04547152009-04-01 15:52:31 +08001674 return vmcs_config.cpu_based_2nd_exec_ctrl &
1675 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1676}
1677
Yang Zhang8d146952013-01-25 10:18:50 +08001678static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1679{
1680 return vmcs_config.cpu_based_2nd_exec_ctrl &
1681 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1682}
1683
Yang Zhang83d4c282013-01-25 10:18:49 +08001684static inline bool cpu_has_vmx_apic_register_virt(void)
1685{
1686 return vmcs_config.cpu_based_2nd_exec_ctrl &
1687 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1688}
1689
Yang Zhangc7c9c562013-01-25 10:18:51 +08001690static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1691{
1692 return vmcs_config.cpu_based_2nd_exec_ctrl &
1693 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1694}
1695
Sean Christopherson0b665d32018-08-14 09:33:34 -07001696static inline bool cpu_has_vmx_encls_vmexit(void)
1697{
1698 return vmcs_config.cpu_based_2nd_exec_ctrl &
1699 SECONDARY_EXEC_ENCLS_EXITING;
1700}
1701
Yunhong Jiang64672c92016-06-13 14:19:59 -07001702/*
1703 * Comment's format: document - errata name - stepping - processor name.
1704 * Refer from
1705 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
1706 */
1707static u32 vmx_preemption_cpu_tfms[] = {
1708/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
17090x000206E6,
1710/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
1711/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
1712/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
17130x00020652,
1714/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
17150x00020655,
1716/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
1717/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
1718/*
1719 * 320767.pdf - AAP86 - B1 -
1720 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
1721 */
17220x000106E5,
1723/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
17240x000106A0,
1725/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
17260x000106A1,
1727/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
17280x000106A4,
1729 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
1730 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
1731 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
17320x000106A5,
1733};
1734
1735static inline bool cpu_has_broken_vmx_preemption_timer(void)
1736{
1737 u32 eax = cpuid_eax(0x00000001), i;
1738
1739 /* Clear the reserved bits */
1740 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +00001741 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -07001742 if (eax == vmx_preemption_cpu_tfms[i])
1743 return true;
1744
1745 return false;
1746}
1747
1748static inline bool cpu_has_vmx_preemption_timer(void)
1749{
Yunhong Jiang64672c92016-06-13 14:19:59 -07001750 return vmcs_config.pin_based_exec_ctrl &
1751 PIN_BASED_VMX_PREEMPTION_TIMER;
1752}
1753
Yang Zhang01e439b2013-04-11 19:25:12 +08001754static inline bool cpu_has_vmx_posted_intr(void)
1755{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001756 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1757 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001758}
1759
1760static inline bool cpu_has_vmx_apicv(void)
1761{
1762 return cpu_has_vmx_apic_register_virt() &&
1763 cpu_has_vmx_virtual_intr_delivery() &&
1764 cpu_has_vmx_posted_intr();
1765}
1766
Sheng Yang04547152009-04-01 15:52:31 +08001767static inline bool cpu_has_vmx_flexpriority(void)
1768{
1769 return cpu_has_vmx_tpr_shadow() &&
1770 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001771}
1772
Marcelo Tosattie7997942009-06-11 12:07:40 -03001773static inline bool cpu_has_vmx_ept_execute_only(void)
1774{
Gui Jianfeng31299942010-03-15 17:29:09 +08001775 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001776}
1777
Marcelo Tosattie7997942009-06-11 12:07:40 -03001778static inline bool cpu_has_vmx_ept_2m_page(void)
1779{
Gui Jianfeng31299942010-03-15 17:29:09 +08001780 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001781}
1782
Sheng Yang878403b2010-01-05 19:02:29 +08001783static inline bool cpu_has_vmx_ept_1g_page(void)
1784{
Gui Jianfeng31299942010-03-15 17:29:09 +08001785 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001786}
1787
Sheng Yang4bc9b982010-06-02 14:05:24 +08001788static inline bool cpu_has_vmx_ept_4levels(void)
1789{
1790 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1791}
1792
David Hildenbrand42aa53b2017-08-10 23:15:29 +02001793static inline bool cpu_has_vmx_ept_mt_wb(void)
1794{
1795 return vmx_capability.ept & VMX_EPTP_WB_BIT;
1796}
1797
Yu Zhang855feb62017-08-24 20:27:55 +08001798static inline bool cpu_has_vmx_ept_5levels(void)
1799{
1800 return vmx_capability.ept & VMX_EPT_PAGE_WALK_5_BIT;
1801}
1802
Xudong Hao83c3a332012-05-28 19:33:35 +08001803static inline bool cpu_has_vmx_ept_ad_bits(void)
1804{
1805 return vmx_capability.ept & VMX_EPT_AD_BIT;
1806}
1807
Gui Jianfeng31299942010-03-15 17:29:09 +08001808static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001809{
Gui Jianfeng31299942010-03-15 17:29:09 +08001810 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001811}
1812
Gui Jianfeng31299942010-03-15 17:29:09 +08001813static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001814{
Gui Jianfeng31299942010-03-15 17:29:09 +08001815 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001816}
1817
Liran Aloncd9a4912018-05-22 17:16:15 +03001818static inline bool cpu_has_vmx_invvpid_individual_addr(void)
1819{
1820 return vmx_capability.vpid & VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT;
1821}
1822
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001823static inline bool cpu_has_vmx_invvpid_single(void)
1824{
1825 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1826}
1827
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001828static inline bool cpu_has_vmx_invvpid_global(void)
1829{
1830 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1831}
1832
Wanpeng Li08d839c2017-03-23 05:30:08 -07001833static inline bool cpu_has_vmx_invvpid(void)
1834{
1835 return vmx_capability.vpid & VMX_VPID_INVVPID_BIT;
1836}
1837
Gui Jianfeng31299942010-03-15 17:29:09 +08001838static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001839{
Sheng Yang04547152009-04-01 15:52:31 +08001840 return vmcs_config.cpu_based_2nd_exec_ctrl &
1841 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001842}
1843
Gui Jianfeng31299942010-03-15 17:29:09 +08001844static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001845{
1846 return vmcs_config.cpu_based_2nd_exec_ctrl &
1847 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1848}
1849
Gui Jianfeng31299942010-03-15 17:29:09 +08001850static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001851{
1852 return vmcs_config.cpu_based_2nd_exec_ctrl &
1853 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1854}
1855
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03001856static inline bool cpu_has_vmx_basic_inout(void)
1857{
1858 return (((u64)vmcs_config.basic_cap << 32) & VMX_BASIC_INOUT);
1859}
1860
Paolo Bonzini35754c92015-07-29 12:05:37 +02001861static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001862{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001863 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001864}
1865
Gui Jianfeng31299942010-03-15 17:29:09 +08001866static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001867{
Sheng Yang04547152009-04-01 15:52:31 +08001868 return vmcs_config.cpu_based_2nd_exec_ctrl &
1869 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001870}
1871
Gui Jianfeng31299942010-03-15 17:29:09 +08001872static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001873{
1874 return vmcs_config.cpu_based_2nd_exec_ctrl &
1875 SECONDARY_EXEC_RDTSCP;
1876}
1877
Mao, Junjiead756a12012-07-02 01:18:48 +00001878static inline bool cpu_has_vmx_invpcid(void)
1879{
1880 return vmcs_config.cpu_based_2nd_exec_ctrl &
1881 SECONDARY_EXEC_ENABLE_INVPCID;
1882}
1883
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01001884static inline bool cpu_has_virtual_nmis(void)
1885{
1886 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
1887}
1888
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001889static inline bool cpu_has_vmx_wbinvd_exit(void)
1890{
1891 return vmcs_config.cpu_based_2nd_exec_ctrl &
1892 SECONDARY_EXEC_WBINVD_EXITING;
1893}
1894
Abel Gordonabc4fc52013-04-18 14:35:25 +03001895static inline bool cpu_has_vmx_shadow_vmcs(void)
1896{
1897 u64 vmx_msr;
1898 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1899 /* check if the cpu supports writing r/o exit information fields */
1900 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1901 return false;
1902
1903 return vmcs_config.cpu_based_2nd_exec_ctrl &
1904 SECONDARY_EXEC_SHADOW_VMCS;
1905}
1906
Kai Huang843e4332015-01-28 10:54:28 +08001907static inline bool cpu_has_vmx_pml(void)
1908{
1909 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1910}
1911
Haozhong Zhang64903d62015-10-20 15:39:09 +08001912static inline bool cpu_has_vmx_tsc_scaling(void)
1913{
1914 return vmcs_config.cpu_based_2nd_exec_ctrl &
1915 SECONDARY_EXEC_TSC_SCALING;
1916}
1917
Bandan Das2a499e42017-08-03 15:54:41 -04001918static inline bool cpu_has_vmx_vmfunc(void)
1919{
1920 return vmcs_config.cpu_based_2nd_exec_ctrl &
1921 SECONDARY_EXEC_ENABLE_VMFUNC;
1922}
1923
Sean Christopherson64f7a112018-04-30 10:01:06 -07001924static bool vmx_umip_emulated(void)
1925{
1926 return vmcs_config.cpu_based_2nd_exec_ctrl &
1927 SECONDARY_EXEC_DESC;
1928}
1929
Sheng Yang04547152009-04-01 15:52:31 +08001930static inline bool report_flexpriority(void)
1931{
1932 return flexpriority_enabled;
1933}
1934
Jim Mattsonc7c2c7092017-05-05 11:28:09 -07001935static inline unsigned nested_cpu_vmx_misc_cr3_count(struct kvm_vcpu *vcpu)
1936{
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01001937 return vmx_misc_cr3_count(to_vmx(vcpu)->nested.msrs.misc_low);
Jim Mattsonc7c2c7092017-05-05 11:28:09 -07001938}
1939
Jim Mattsonf4160e42018-05-29 09:11:33 -07001940/*
1941 * Do the virtual VMX capability MSRs specify that L1 can use VMWRITE
1942 * to modify any valid field of the VMCS, or are the VM-exit
1943 * information fields read-only?
1944 */
1945static inline bool nested_cpu_has_vmwrite_any_field(struct kvm_vcpu *vcpu)
1946{
1947 return to_vmx(vcpu)->nested.msrs.misc_low &
1948 MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS;
1949}
1950
Marc Orr04473782018-06-20 17:21:29 -07001951static inline bool nested_cpu_has_zero_length_injection(struct kvm_vcpu *vcpu)
1952{
1953 return to_vmx(vcpu)->nested.msrs.misc_low & VMX_MISC_ZERO_LEN_INS;
1954}
1955
1956static inline bool nested_cpu_supports_monitor_trap_flag(struct kvm_vcpu *vcpu)
1957{
1958 return to_vmx(vcpu)->nested.msrs.procbased_ctls_high &
1959 CPU_BASED_MONITOR_TRAP_FLAG;
1960}
1961
Liran Alonfa97d7d2018-07-18 14:07:59 +02001962static inline bool nested_cpu_has_vmx_shadow_vmcs(struct kvm_vcpu *vcpu)
1963{
1964 return to_vmx(vcpu)->nested.msrs.secondary_ctls_high &
1965 SECONDARY_EXEC_SHADOW_VMCS;
1966}
1967
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001968static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1969{
1970 return vmcs12->cpu_based_vm_exec_control & bit;
1971}
1972
1973static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1974{
1975 return (vmcs12->cpu_based_vm_exec_control &
1976 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1977 (vmcs12->secondary_vm_exec_control & bit);
1978}
1979
Jan Kiszkaf41245002014-03-07 20:03:13 +01001980static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1981{
1982 return vmcs12->pin_based_vm_exec_control &
1983 PIN_BASED_VMX_PREEMPTION_TIMER;
1984}
1985
Krish Sadhukhan0c7f6502018-02-20 21:24:39 -05001986static inline bool nested_cpu_has_nmi_exiting(struct vmcs12 *vmcs12)
1987{
1988 return vmcs12->pin_based_vm_exec_control & PIN_BASED_NMI_EXITING;
1989}
1990
1991static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
1992{
1993 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1994}
1995
Nadav Har'El155a97a2013-08-05 11:07:16 +03001996static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1997{
1998 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1999}
2000
Wanpeng Li81dc01f2014-12-04 19:11:07 +08002001static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
2002{
Paolo Bonzini3db13482017-08-24 14:48:03 +02002003 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li81dc01f2014-12-04 19:11:07 +08002004}
2005
Bandan Dasc5f983f2017-05-05 15:25:14 -04002006static inline bool nested_cpu_has_pml(struct vmcs12 *vmcs12)
2007{
2008 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML);
2009}
2010
Wincy Vanf2b93282015-02-03 23:56:03 +08002011static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
2012{
2013 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
2014}
2015
Wanpeng Li5c614b32015-10-13 09:18:36 -07002016static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
2017{
2018 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
2019}
2020
Wincy Van82f0dd42015-02-03 23:57:18 +08002021static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
2022{
2023 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
2024}
2025
Wincy Van608406e2015-02-03 23:57:51 +08002026static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
2027{
2028 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
2029}
2030
Wincy Van705699a2015-02-03 23:58:17 +08002031static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
2032{
2033 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
2034}
2035
Bandan Das27c42a12017-08-03 15:54:42 -04002036static inline bool nested_cpu_has_vmfunc(struct vmcs12 *vmcs12)
2037{
2038 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VMFUNC);
2039}
2040
Bandan Das41ab9372017-08-03 15:54:43 -04002041static inline bool nested_cpu_has_eptp_switching(struct vmcs12 *vmcs12)
2042{
2043 return nested_cpu_has_vmfunc(vmcs12) &&
2044 (vmcs12->vm_function_control &
2045 VMX_VMFUNC_EPTP_SWITCHING);
2046}
2047
Liran Alonf792d272018-06-23 02:35:05 +03002048static inline bool nested_cpu_has_shadow_vmcs(struct vmcs12 *vmcs12)
2049{
2050 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_SHADOW_VMCS);
2051}
2052
Jim Mattsonef85b672016-12-12 11:01:37 -08002053static inline bool is_nmi(u32 intr_info)
Nadav Har'El644d7112011-05-25 23:12:35 +03002054{
2055 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
Jim Mattsonef85b672016-12-12 11:01:37 -08002056 == (INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK);
Nadav Har'El644d7112011-05-25 23:12:35 +03002057}
2058
Jan Kiszka533558b2014-01-04 18:47:20 +01002059static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
2060 u32 exit_intr_info,
2061 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03002062static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
2063 struct vmcs12 *vmcs12,
2064 u32 reason, unsigned long qualification);
2065
Rusty Russell8b9cf982007-07-30 16:31:43 +10002066static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08002067{
2068 int i;
2069
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002070 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03002071 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03002072 return i;
2073 return -1;
2074}
2075
Sheng Yang2384d2b2008-01-17 15:14:33 +08002076static inline void __invvpid(int ext, u16 vpid, gva_t gva)
2077{
2078 struct {
2079 u64 vpid : 16;
2080 u64 rsvd : 48;
2081 u64 gva;
2082 } operand = { vpid, 0, gva };
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002083 bool error;
Sheng Yang2384d2b2008-01-17 15:14:33 +08002084
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002085 asm volatile (__ex(ASM_VMX_INVVPID) CC_SET(na)
2086 : CC_OUT(na) (error) : "a"(&operand), "c"(ext)
2087 : "memory");
2088 BUG_ON(error);
Sheng Yang2384d2b2008-01-17 15:14:33 +08002089}
2090
Sheng Yang14394422008-04-28 12:24:45 +08002091static inline void __invept(int ext, u64 eptp, gpa_t gpa)
2092{
2093 struct {
2094 u64 eptp, gpa;
2095 } operand = {eptp, gpa};
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002096 bool error;
Sheng Yang14394422008-04-28 12:24:45 +08002097
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002098 asm volatile (__ex(ASM_VMX_INVEPT) CC_SET(na)
2099 : CC_OUT(na) (error) : "a" (&operand), "c" (ext)
2100 : "memory");
2101 BUG_ON(error);
Sheng Yang14394422008-04-28 12:24:45 +08002102}
2103
Avi Kivity26bb0982009-09-07 11:14:12 +03002104static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03002105{
2106 int i;
2107
Rusty Russell8b9cf982007-07-30 16:31:43 +10002108 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03002109 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002110 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00002111 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08002112}
2113
Avi Kivity6aa8b732006-12-10 02:21:36 -08002114static void vmcs_clear(struct vmcs *vmcs)
2115{
2116 u64 phys_addr = __pa(vmcs);
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002117 bool error;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002118
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002119 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) CC_SET(na)
2120 : CC_OUT(na) (error) : "a"(&phys_addr), "m"(phys_addr)
2121 : "memory");
2122 if (unlikely(error))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002123 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
2124 vmcs, phys_addr);
2125}
2126
Nadav Har'Eld462b812011-05-24 15:26:10 +03002127static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
2128{
2129 vmcs_clear(loaded_vmcs->vmcs);
Jim Mattson355f4fb2016-10-28 08:29:39 -07002130 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
2131 vmcs_clear(loaded_vmcs->shadow_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002132 loaded_vmcs->cpu = -1;
2133 loaded_vmcs->launched = 0;
2134}
2135
Dongxiao Xu7725b892010-05-11 18:29:38 +08002136static void vmcs_load(struct vmcs *vmcs)
2137{
2138 u64 phys_addr = __pa(vmcs);
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002139 bool error;
Dongxiao Xu7725b892010-05-11 18:29:38 +08002140
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002141 if (static_branch_unlikely(&enable_evmcs))
2142 return evmcs_load(phys_addr);
2143
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002144 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) CC_SET(na)
2145 : CC_OUT(na) (error) : "a"(&phys_addr), "m"(phys_addr)
2146 : "memory");
2147 if (unlikely(error))
Nadav Har'El2844d842011-05-25 23:16:40 +03002148 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08002149 vmcs, phys_addr);
2150}
2151
Dave Young2965faa2015-09-09 15:38:55 -07002152#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002153/*
2154 * This bitmap is used to indicate whether the vmclear
2155 * operation is enabled on all cpus. All disabled by
2156 * default.
2157 */
2158static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
2159
2160static inline void crash_enable_local_vmclear(int cpu)
2161{
2162 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
2163}
2164
2165static inline void crash_disable_local_vmclear(int cpu)
2166{
2167 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
2168}
2169
2170static inline int crash_local_vmclear_enabled(int cpu)
2171{
2172 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
2173}
2174
2175static void crash_vmclear_local_loaded_vmcss(void)
2176{
2177 int cpu = raw_smp_processor_id();
2178 struct loaded_vmcs *v;
2179
2180 if (!crash_local_vmclear_enabled(cpu))
2181 return;
2182
2183 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
2184 loaded_vmcss_on_cpu_link)
2185 vmcs_clear(v->vmcs);
2186}
2187#else
2188static inline void crash_enable_local_vmclear(int cpu) { }
2189static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07002190#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002191
Nadav Har'Eld462b812011-05-24 15:26:10 +03002192static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002193{
Nadav Har'Eld462b812011-05-24 15:26:10 +03002194 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08002195 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002196
Nadav Har'Eld462b812011-05-24 15:26:10 +03002197 if (loaded_vmcs->cpu != cpu)
2198 return; /* vcpu migration can race with cpu offline */
2199 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002200 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002201 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002202 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002203
2204 /*
2205 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
2206 * is before setting loaded_vmcs->vcpu to -1 which is done in
2207 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
2208 * then adds the vmcs into percpu list before it is deleted.
2209 */
2210 smp_wmb();
2211
Nadav Har'Eld462b812011-05-24 15:26:10 +03002212 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002213 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002214}
2215
Nadav Har'Eld462b812011-05-24 15:26:10 +03002216static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08002217{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08002218 int cpu = loaded_vmcs->cpu;
2219
2220 if (cpu != -1)
2221 smp_call_function_single(cpu,
2222 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08002223}
2224
Junaid Shahidfaff8752018-06-29 13:10:05 -07002225static inline bool vpid_sync_vcpu_addr(int vpid, gva_t addr)
2226{
2227 if (vpid == 0)
2228 return true;
2229
2230 if (cpu_has_vmx_invvpid_individual_addr()) {
2231 __invvpid(VMX_VPID_EXTENT_INDIVIDUAL_ADDR, vpid, addr);
2232 return true;
2233 }
2234
2235 return false;
2236}
2237
Wanpeng Lidd5f5342015-09-23 18:26:57 +08002238static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08002239{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08002240 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08002241 return;
2242
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08002243 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08002244 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08002245}
2246
Gui Jianfengb9d762f2010-06-07 10:32:29 +08002247static inline void vpid_sync_vcpu_global(void)
2248{
2249 if (cpu_has_vmx_invvpid_global())
2250 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
2251}
2252
Wanpeng Lidd5f5342015-09-23 18:26:57 +08002253static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08002254{
2255 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08002256 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08002257 else
2258 vpid_sync_vcpu_global();
2259}
2260
Sheng Yang14394422008-04-28 12:24:45 +08002261static inline void ept_sync_global(void)
2262{
David Hildenbrandf5f51582017-08-24 20:51:30 +02002263 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
Sheng Yang14394422008-04-28 12:24:45 +08002264}
2265
2266static inline void ept_sync_context(u64 eptp)
2267{
David Hildenbrand0e1252d2017-08-24 20:51:28 +02002268 if (cpu_has_vmx_invept_context())
2269 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
2270 else
2271 ept_sync_global();
Sheng Yang14394422008-04-28 12:24:45 +08002272}
2273
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002274static __always_inline void vmcs_check16(unsigned long field)
2275{
2276 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
2277 "16-bit accessor invalid for 64-bit field");
2278 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
2279 "16-bit accessor invalid for 64-bit high field");
2280 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
2281 "16-bit accessor invalid for 32-bit high field");
2282 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
2283 "16-bit accessor invalid for natural width field");
2284}
2285
2286static __always_inline void vmcs_check32(unsigned long field)
2287{
2288 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
2289 "32-bit accessor invalid for 16-bit field");
2290 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
2291 "32-bit accessor invalid for natural width field");
2292}
2293
2294static __always_inline void vmcs_check64(unsigned long field)
2295{
2296 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
2297 "64-bit accessor invalid for 16-bit field");
2298 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
2299 "64-bit accessor invalid for 64-bit high field");
2300 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
2301 "64-bit accessor invalid for 32-bit field");
2302 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
2303 "64-bit accessor invalid for natural width field");
2304}
2305
2306static __always_inline void vmcs_checkl(unsigned long field)
2307{
2308 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
2309 "Natural width accessor invalid for 16-bit field");
2310 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
2311 "Natural width accessor invalid for 64-bit field");
2312 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
2313 "Natural width accessor invalid for 64-bit high field");
2314 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
2315 "Natural width accessor invalid for 32-bit field");
2316}
2317
2318static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002319{
Avi Kivity5e520e62011-05-15 10:13:12 -04002320 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002321
Avi Kivity5e520e62011-05-15 10:13:12 -04002322 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
2323 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08002324 return value;
2325}
2326
Avi Kivity96304212011-05-15 10:13:13 -04002327static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002328{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002329 vmcs_check16(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002330 if (static_branch_unlikely(&enable_evmcs))
2331 return evmcs_read16(field);
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002332 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002333}
2334
Avi Kivity96304212011-05-15 10:13:13 -04002335static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002336{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002337 vmcs_check32(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002338 if (static_branch_unlikely(&enable_evmcs))
2339 return evmcs_read32(field);
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002340 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002341}
2342
Avi Kivity96304212011-05-15 10:13:13 -04002343static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002344{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002345 vmcs_check64(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002346 if (static_branch_unlikely(&enable_evmcs))
2347 return evmcs_read64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002348#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002349 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002350#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002351 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002352#endif
2353}
2354
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002355static __always_inline unsigned long vmcs_readl(unsigned long field)
2356{
2357 vmcs_checkl(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002358 if (static_branch_unlikely(&enable_evmcs))
2359 return evmcs_read64(field);
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002360 return __vmcs_readl(field);
2361}
2362
Avi Kivitye52de1b2007-01-05 16:36:56 -08002363static noinline void vmwrite_error(unsigned long field, unsigned long value)
2364{
2365 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
2366 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
2367 dump_stack();
2368}
2369
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002370static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002371{
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002372 bool error;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002373
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002374 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) CC_SET(na)
2375 : CC_OUT(na) (error) : "a"(value), "d"(field));
Avi Kivitye52de1b2007-01-05 16:36:56 -08002376 if (unlikely(error))
2377 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002378}
2379
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002380static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002381{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002382 vmcs_check16(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002383 if (static_branch_unlikely(&enable_evmcs))
2384 return evmcs_write16(field, value);
2385
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002386 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002387}
2388
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002389static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002390{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002391 vmcs_check32(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002392 if (static_branch_unlikely(&enable_evmcs))
2393 return evmcs_write32(field, value);
2394
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002395 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002396}
2397
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002398static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002399{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002400 vmcs_check64(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002401 if (static_branch_unlikely(&enable_evmcs))
2402 return evmcs_write64(field, value);
2403
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002404 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03002405#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002406 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002407 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002408#endif
2409}
2410
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002411static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002412{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002413 vmcs_checkl(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002414 if (static_branch_unlikely(&enable_evmcs))
2415 return evmcs_write64(field, value);
2416
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002417 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002418}
2419
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002420static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002421{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002422 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
2423 "vmcs_clear_bits does not support 64-bit fields");
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002424 if (static_branch_unlikely(&enable_evmcs))
2425 return evmcs_write32(field, evmcs_read32(field) & ~mask);
2426
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002427 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
2428}
2429
2430static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
2431{
2432 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
2433 "vmcs_set_bits does not support 64-bit fields");
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002434 if (static_branch_unlikely(&enable_evmcs))
2435 return evmcs_write32(field, evmcs_read32(field) | mask);
2436
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002437 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002438}
2439
Paolo Bonzini8391ce42016-07-07 14:58:33 +02002440static inline void vm_entry_controls_reset_shadow(struct vcpu_vmx *vmx)
2441{
2442 vmx->vm_entry_controls_shadow = vmcs_read32(VM_ENTRY_CONTROLS);
2443}
2444
Gleb Natapov2961e8762013-11-25 15:37:13 +02002445static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
2446{
2447 vmcs_write32(VM_ENTRY_CONTROLS, val);
2448 vmx->vm_entry_controls_shadow = val;
2449}
2450
2451static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
2452{
2453 if (vmx->vm_entry_controls_shadow != val)
2454 vm_entry_controls_init(vmx, val);
2455}
2456
2457static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
2458{
2459 return vmx->vm_entry_controls_shadow;
2460}
2461
2462
2463static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
2464{
2465 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
2466}
2467
2468static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
2469{
2470 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
2471}
2472
Paolo Bonzini8391ce42016-07-07 14:58:33 +02002473static inline void vm_exit_controls_reset_shadow(struct vcpu_vmx *vmx)
2474{
2475 vmx->vm_exit_controls_shadow = vmcs_read32(VM_EXIT_CONTROLS);
2476}
2477
Gleb Natapov2961e8762013-11-25 15:37:13 +02002478static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
2479{
2480 vmcs_write32(VM_EXIT_CONTROLS, val);
2481 vmx->vm_exit_controls_shadow = val;
2482}
2483
2484static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
2485{
2486 if (vmx->vm_exit_controls_shadow != val)
2487 vm_exit_controls_init(vmx, val);
2488}
2489
2490static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
2491{
2492 return vmx->vm_exit_controls_shadow;
2493}
2494
2495
2496static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
2497{
2498 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
2499}
2500
2501static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
2502{
2503 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
2504}
2505
Avi Kivity2fb92db2011-04-27 19:42:18 +03002506static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
2507{
2508 vmx->segment_cache.bitmask = 0;
2509}
2510
2511static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
2512 unsigned field)
2513{
2514 bool ret;
2515 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
2516
2517 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
2518 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
2519 vmx->segment_cache.bitmask = 0;
2520 }
2521 ret = vmx->segment_cache.bitmask & mask;
2522 vmx->segment_cache.bitmask |= mask;
2523 return ret;
2524}
2525
2526static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
2527{
2528 u16 *p = &vmx->segment_cache.seg[seg].selector;
2529
2530 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
2531 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
2532 return *p;
2533}
2534
2535static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
2536{
2537 ulong *p = &vmx->segment_cache.seg[seg].base;
2538
2539 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
2540 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
2541 return *p;
2542}
2543
2544static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
2545{
2546 u32 *p = &vmx->segment_cache.seg[seg].limit;
2547
2548 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
2549 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
2550 return *p;
2551}
2552
2553static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
2554{
2555 u32 *p = &vmx->segment_cache.seg[seg].ar;
2556
2557 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
2558 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
2559 return *p;
2560}
2561
Avi Kivityabd3f2d2007-05-02 17:57:40 +03002562static void update_exception_bitmap(struct kvm_vcpu *vcpu)
2563{
2564 u32 eb;
2565
Jan Kiszkafd7373c2010-01-20 18:20:20 +01002566 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002567 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Liran Alon9e869482018-03-12 13:12:51 +02002568 /*
2569 * Guest access to VMware backdoor ports could legitimately
2570 * trigger #GP because of TSS I/O permission bitmap.
2571 * We intercept those #GP and allow access to them anyway
2572 * as VMware does.
2573 */
2574 if (enable_vmware_backdoor)
2575 eb |= (1u << GP_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01002576 if ((vcpu->guest_debug &
2577 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
2578 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
2579 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002580 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03002581 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02002582 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002583 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002584
2585 /* When we are running a nested L2 guest and L1 specified for it a
2586 * certain exception bitmap, we must trap the same exceptions and pass
2587 * them to L1. When running L2, we will only handle the exceptions
2588 * specified above if L1 did not want them.
2589 */
2590 if (is_guest_mode(vcpu))
2591 eb |= get_vmcs12(vcpu)->exception_bitmap;
2592
Avi Kivityabd3f2d2007-05-02 17:57:40 +03002593 vmcs_write32(EXCEPTION_BITMAP, eb);
2594}
2595
Ashok Raj15d45072018-02-01 22:59:43 +01002596/*
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002597 * Check if MSR is intercepted for currently loaded MSR bitmap.
2598 */
2599static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr)
2600{
2601 unsigned long *msr_bitmap;
2602 int f = sizeof(unsigned long);
2603
2604 if (!cpu_has_vmx_msr_bitmap())
2605 return true;
2606
2607 msr_bitmap = to_vmx(vcpu)->loaded_vmcs->msr_bitmap;
2608
2609 if (msr <= 0x1fff) {
2610 return !!test_bit(msr, msr_bitmap + 0x800 / f);
2611 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2612 msr &= 0x1fff;
2613 return !!test_bit(msr, msr_bitmap + 0xc00 / f);
2614 }
2615
2616 return true;
2617}
2618
2619/*
Ashok Raj15d45072018-02-01 22:59:43 +01002620 * Check if MSR is intercepted for L01 MSR bitmap.
2621 */
2622static bool msr_write_intercepted_l01(struct kvm_vcpu *vcpu, u32 msr)
2623{
2624 unsigned long *msr_bitmap;
2625 int f = sizeof(unsigned long);
2626
2627 if (!cpu_has_vmx_msr_bitmap())
2628 return true;
2629
2630 msr_bitmap = to_vmx(vcpu)->vmcs01.msr_bitmap;
2631
2632 if (msr <= 0x1fff) {
2633 return !!test_bit(msr, msr_bitmap + 0x800 / f);
2634 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2635 msr &= 0x1fff;
2636 return !!test_bit(msr, msr_bitmap + 0xc00 / f);
2637 }
2638
2639 return true;
2640}
2641
Gleb Natapov2961e8762013-11-25 15:37:13 +02002642static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
2643 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002644{
Gleb Natapov2961e8762013-11-25 15:37:13 +02002645 vm_entry_controls_clearbit(vmx, entry);
2646 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002647}
2648
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04002649static int find_msr(struct vmx_msrs *m, unsigned int msr)
2650{
2651 unsigned int i;
2652
2653 for (i = 0; i < m->nr; ++i) {
2654 if (m->val[i].index == msr)
2655 return i;
2656 }
2657 return -ENOENT;
2658}
2659
Avi Kivity61d2ef22010-04-28 16:40:38 +03002660static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
2661{
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04002662 int i;
Avi Kivity61d2ef22010-04-28 16:40:38 +03002663 struct msr_autoload *m = &vmx->msr_autoload;
2664
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002665 switch (msr) {
2666 case MSR_EFER:
2667 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002668 clear_atomic_switch_msr_special(vmx,
2669 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002670 VM_EXIT_LOAD_IA32_EFER);
2671 return;
2672 }
2673 break;
2674 case MSR_CORE_PERF_GLOBAL_CTRL:
2675 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002676 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002677 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
2678 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
2679 return;
2680 }
2681 break;
Avi Kivity110312c2010-12-21 12:54:20 +02002682 }
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04002683 i = find_msr(&m->guest, msr);
2684 if (i < 0)
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002685 goto skip_guest;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002686 --m->guest.nr;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002687 m->guest.val[i] = m->guest.val[m->guest.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002688 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Avi Kivity110312c2010-12-21 12:54:20 +02002689
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002690skip_guest:
2691 i = find_msr(&m->host, msr);
2692 if (i < 0)
Avi Kivity61d2ef22010-04-28 16:40:38 +03002693 return;
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002694
2695 --m->host.nr;
2696 m->host.val[i] = m->host.val[m->host.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002697 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +03002698}
2699
Gleb Natapov2961e8762013-11-25 15:37:13 +02002700static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
2701 unsigned long entry, unsigned long exit,
2702 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
2703 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002704{
2705 vmcs_write64(guest_val_vmcs, guest_val);
2706 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02002707 vm_entry_controls_setbit(vmx, entry);
2708 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002709}
2710
Avi Kivity61d2ef22010-04-28 16:40:38 +03002711static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04002712 u64 guest_val, u64 host_val, bool entry_only)
Avi Kivity61d2ef22010-04-28 16:40:38 +03002713{
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04002714 int i, j = 0;
Avi Kivity61d2ef22010-04-28 16:40:38 +03002715 struct msr_autoload *m = &vmx->msr_autoload;
2716
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002717 switch (msr) {
2718 case MSR_EFER:
2719 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002720 add_atomic_switch_msr_special(vmx,
2721 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002722 VM_EXIT_LOAD_IA32_EFER,
2723 GUEST_IA32_EFER,
2724 HOST_IA32_EFER,
2725 guest_val, host_val);
2726 return;
2727 }
2728 break;
2729 case MSR_CORE_PERF_GLOBAL_CTRL:
2730 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002731 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002732 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
2733 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
2734 GUEST_IA32_PERF_GLOBAL_CTRL,
2735 HOST_IA32_PERF_GLOBAL_CTRL,
2736 guest_val, host_val);
2737 return;
2738 }
2739 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +01002740 case MSR_IA32_PEBS_ENABLE:
2741 /* PEBS needs a quiescent period after being disabled (to write
2742 * a record). Disabling PEBS through VMX MSR swapping doesn't
2743 * provide that period, so a CPU could write host's record into
2744 * guest's memory.
2745 */
2746 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +02002747 }
2748
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04002749 i = find_msr(&m->guest, msr);
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04002750 if (!entry_only)
2751 j = find_msr(&m->host, msr);
Avi Kivity61d2ef22010-04-28 16:40:38 +03002752
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002753 if (i == NR_AUTOLOAD_MSRS || j == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02002754 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02002755 "Can't add msr %x\n", msr);
2756 return;
Avi Kivity61d2ef22010-04-28 16:40:38 +03002757 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002758 if (i < 0) {
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04002759 i = m->guest.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002760 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002761 }
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04002762 m->guest.val[i].index = msr;
2763 m->guest.val[i].value = guest_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +03002764
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04002765 if (entry_only)
2766 return;
2767
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002768 if (j < 0) {
2769 j = m->host.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002770 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +03002771 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002772 m->host.val[j].index = msr;
2773 m->host.val[j].value = host_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +03002774}
2775
Avi Kivity92c0d902009-10-29 11:00:16 +02002776static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03002777{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002778 u64 guest_efer = vmx->vcpu.arch.efer;
2779 u64 ignore_bits = 0;
Eddie Dong2cc51562007-05-21 07:28:09 +03002780
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002781 if (!enable_ept) {
2782 /*
2783 * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing
2784 * host CPUID is more efficient than testing guest CPUID
2785 * or CR4. Host SMEP is anyway a requirement for guest SMEP.
2786 */
2787 if (boot_cpu_has(X86_FEATURE_SMEP))
2788 guest_efer |= EFER_NX;
2789 else if (!(guest_efer & EFER_NX))
2790 ignore_bits |= EFER_NX;
2791 }
Roel Kluin3a34a882009-08-04 02:08:45 -07002792
Avi Kivity51c6cf62007-08-29 03:48:05 +03002793 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002794 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03002795 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002796 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03002797#ifdef CONFIG_X86_64
2798 ignore_bits |= EFER_LMA | EFER_LME;
2799 /* SCE is meaningful only in long mode on Intel */
2800 if (guest_efer & EFER_LMA)
2801 ignore_bits &= ~(u64)EFER_SCE;
2802#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03002803
2804 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08002805
2806 /*
2807 * On EPT, we can't emulate NX, so we must switch EFER atomically.
2808 * On CPUs that support "load IA32_EFER", always switch EFER
2809 * atomically, since it's faster than switching it manually.
2810 */
2811 if (cpu_has_load_ia32_efer ||
2812 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03002813 if (!(guest_efer & EFER_LMA))
2814 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08002815 if (guest_efer != host_efer)
2816 add_atomic_switch_msr(vmx, MSR_EFER,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04002817 guest_efer, host_efer, false);
Avi Kivity84ad33e2010-04-28 16:42:29 +03002818 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002819 } else {
2820 guest_efer &= ~ignore_bits;
2821 guest_efer |= host_efer & ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03002822
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002823 vmx->guest_msrs[efer_offset].data = guest_efer;
2824 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
2825
2826 return true;
2827 }
Avi Kivity51c6cf62007-08-29 03:48:05 +03002828}
2829
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002830#ifdef CONFIG_X86_32
2831/*
2832 * On 32-bit kernels, VM exits still load the FS and GS bases from the
2833 * VMCS rather than the segment table. KVM uses this helper to figure
2834 * out the current bases to poke them into the VMCS before entry.
2835 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002836static unsigned long segment_base(u16 selector)
2837{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002838 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002839 unsigned long v;
2840
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002841 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002842 return 0;
2843
Thomas Garnier45fc8752017-03-14 10:05:08 -07002844 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002845
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002846 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002847 u16 ldt_selector = kvm_read_ldt();
2848
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002849 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002850 return 0;
2851
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002852 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002853 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002854 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002855 return v;
2856}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002857#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002858
Sean Christopherson6d6095b2018-07-23 12:32:44 -07002859static void vmx_prepare_switch_to_guest(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03002860{
Avi Kivity04d2cc72007-09-10 18:10:54 +03002861 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond7ee0392018-07-23 12:32:47 -07002862 struct vmcs_host_state *host_state;
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02002863#ifdef CONFIG_X86_64
Vitaly Kuznetsov35060ed2018-03-13 18:48:05 +01002864 int cpu = raw_smp_processor_id();
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02002865#endif
Sean Christophersone368b872018-07-23 12:32:41 -07002866 unsigned long fs_base, gs_base;
2867 u16 fs_sel, gs_sel;
Avi Kivity26bb0982009-09-07 11:14:12 +03002868 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002869
Sean Christophersond264ee02018-08-27 15:21:12 -07002870 vmx->req_immediate_exit = false;
2871
Sean Christophersonbd9966d2018-07-23 12:32:42 -07002872 if (vmx->loaded_cpu_state)
Avi Kivity33ed6322007-05-02 16:54:03 +03002873 return;
2874
Sean Christophersonbd9966d2018-07-23 12:32:42 -07002875 vmx->loaded_cpu_state = vmx->loaded_vmcs;
Sean Christophersond7ee0392018-07-23 12:32:47 -07002876 host_state = &vmx->loaded_cpu_state->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07002877
Avi Kivity33ed6322007-05-02 16:54:03 +03002878 /*
2879 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
2880 * allow segment selectors with cpl > 0 or ti == 1.
2881 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07002882 host_state->ldt_sel = kvm_read_ldt();
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01002883
2884#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07002885 savesegment(ds, host_state->ds_sel);
2886 savesegment(es, host_state->es_sel);
Sean Christophersone368b872018-07-23 12:32:41 -07002887
2888 gs_base = cpu_kernelmode_gs_base(cpu);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02002889 if (likely(is_64bit_mm(current->mm))) {
2890 save_fsgs_for_kvm();
Sean Christophersone368b872018-07-23 12:32:41 -07002891 fs_sel = current->thread.fsindex;
2892 gs_sel = current->thread.gsindex;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02002893 fs_base = current->thread.fsbase;
Sean Christophersone368b872018-07-23 12:32:41 -07002894 vmx->msr_host_kernel_gs_base = current->thread.gsbase;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02002895 } else {
Sean Christophersone368b872018-07-23 12:32:41 -07002896 savesegment(fs, fs_sel);
2897 savesegment(gs, gs_sel);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02002898 fs_base = read_msr(MSR_FS_BASE);
Sean Christophersone368b872018-07-23 12:32:41 -07002899 vmx->msr_host_kernel_gs_base = read_msr(MSR_KERNEL_GS_BASE);
Avi Kivity33ed6322007-05-02 16:54:03 +03002900 }
2901
Avi Kivityc8770e72010-11-11 12:37:26 +02002902 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03002903 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity33ed6322007-05-02 16:54:03 +03002904#else
Sean Christophersone368b872018-07-23 12:32:41 -07002905 savesegment(fs, fs_sel);
2906 savesegment(gs, gs_sel);
2907 fs_base = segment_base(fs_sel);
2908 gs_base = segment_base(gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002909#endif
Sean Christophersone368b872018-07-23 12:32:41 -07002910
Sean Christopherson8f21a0b2018-07-23 12:32:49 -07002911 if (unlikely(fs_sel != host_state->fs_sel)) {
2912 if (!(fs_sel & 7))
2913 vmcs_write16(HOST_FS_SELECTOR, fs_sel);
2914 else
2915 vmcs_write16(HOST_FS_SELECTOR, 0);
2916 host_state->fs_sel = fs_sel;
2917 }
2918 if (unlikely(gs_sel != host_state->gs_sel)) {
2919 if (!(gs_sel & 7))
2920 vmcs_write16(HOST_GS_SELECTOR, gs_sel);
2921 else
2922 vmcs_write16(HOST_GS_SELECTOR, 0);
2923 host_state->gs_sel = gs_sel;
2924 }
Sean Christopherson5e079c72018-07-23 12:32:50 -07002925 if (unlikely(fs_base != host_state->fs_base)) {
2926 vmcs_writel(HOST_FS_BASE, fs_base);
2927 host_state->fs_base = fs_base;
2928 }
2929 if (unlikely(gs_base != host_state->gs_base)) {
2930 vmcs_writel(HOST_GS_BASE, gs_base);
2931 host_state->gs_base = gs_base;
2932 }
Avi Kivity33ed6322007-05-02 16:54:03 +03002933
Avi Kivity26bb0982009-09-07 11:14:12 +03002934 for (i = 0; i < vmx->save_nmsrs; ++i)
2935 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02002936 vmx->guest_msrs[i].data,
2937 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03002938}
2939
Sean Christopherson6d6095b2018-07-23 12:32:44 -07002940static void vmx_prepare_switch_to_host(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03002941{
Sean Christophersond7ee0392018-07-23 12:32:47 -07002942 struct vmcs_host_state *host_state;
2943
Sean Christophersonbd9966d2018-07-23 12:32:42 -07002944 if (!vmx->loaded_cpu_state)
Avi Kivity33ed6322007-05-02 16:54:03 +03002945 return;
2946
Sean Christophersonbd9966d2018-07-23 12:32:42 -07002947 WARN_ON_ONCE(vmx->loaded_cpu_state != vmx->loaded_vmcs);
Sean Christophersond7ee0392018-07-23 12:32:47 -07002948 host_state = &vmx->loaded_cpu_state->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07002949
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002950 ++vmx->vcpu.stat.host_state_reload;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07002951 vmx->loaded_cpu_state = NULL;
2952
Avi Kivityc8770e72010-11-11 12:37:26 +02002953#ifdef CONFIG_X86_64
2954 if (is_long_mode(&vmx->vcpu))
2955 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
2956#endif
Sean Christophersond7ee0392018-07-23 12:32:47 -07002957 if (host_state->ldt_sel || (host_state->gs_sel & 7)) {
2958 kvm_load_ldt(host_state->ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002959#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07002960 load_gs_index(host_state->gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002961#else
Sean Christophersond7ee0392018-07-23 12:32:47 -07002962 loadsegment(gs, host_state->gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002963#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002964 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07002965 if (host_state->fs_sel & 7)
2966 loadsegment(fs, host_state->fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002967#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07002968 if (unlikely(host_state->ds_sel | host_state->es_sel)) {
2969 loadsegment(ds, host_state->ds_sel);
2970 loadsegment(es, host_state->es_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002971 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002972#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002973 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002974#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002975 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002976#endif
Thomas Garnier45fc8752017-03-14 10:05:08 -07002977 load_fixmap_gdt(raw_smp_processor_id());
Avi Kivity33ed6322007-05-02 16:54:03 +03002978}
2979
Sean Christopherson678e3152018-07-23 12:32:43 -07002980#ifdef CONFIG_X86_64
2981static u64 vmx_read_guest_kernel_gs_base(struct vcpu_vmx *vmx)
Avi Kivitya9b21b62008-06-24 11:48:49 +03002982{
Sean Christopherson678e3152018-07-23 12:32:43 -07002983 if (is_long_mode(&vmx->vcpu)) {
2984 preempt_disable();
2985 if (vmx->loaded_cpu_state)
2986 rdmsrl(MSR_KERNEL_GS_BASE,
2987 vmx->msr_guest_kernel_gs_base);
2988 preempt_enable();
2989 }
2990 return vmx->msr_guest_kernel_gs_base;
Avi Kivitya9b21b62008-06-24 11:48:49 +03002991}
2992
Sean Christopherson678e3152018-07-23 12:32:43 -07002993static void vmx_write_guest_kernel_gs_base(struct vcpu_vmx *vmx, u64 data)
2994{
2995 if (is_long_mode(&vmx->vcpu)) {
2996 preempt_disable();
2997 if (vmx->loaded_cpu_state)
2998 wrmsrl(MSR_KERNEL_GS_BASE, data);
2999 preempt_enable();
3000 }
3001 vmx->msr_guest_kernel_gs_base = data;
3002}
3003#endif
3004
Feng Wu28b835d2015-09-18 22:29:54 +08003005static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
3006{
3007 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
3008 struct pi_desc old, new;
3009 unsigned int dest;
3010
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02003011 /*
3012 * In case of hot-plug or hot-unplug, we may have to undo
3013 * vmx_vcpu_pi_put even if there is no assigned device. And we
3014 * always keep PI.NDST up to date for simplicity: it makes the
3015 * code easier, and CPU migration is not a fast path.
3016 */
3017 if (!pi_test_sn(pi_desc) && vcpu->cpu == cpu)
Feng Wu28b835d2015-09-18 22:29:54 +08003018 return;
3019
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02003020 /*
3021 * First handle the simple case where no cmpxchg is necessary; just
3022 * allow posting non-urgent interrupts.
3023 *
3024 * If the 'nv' field is POSTED_INTR_WAKEUP_VECTOR, do not change
3025 * PI.NDST: pi_post_block will do it for us and the wakeup_handler
3026 * expects the VCPU to be on the blocked_vcpu_list that matches
3027 * PI.NDST.
3028 */
3029 if (pi_desc->nv == POSTED_INTR_WAKEUP_VECTOR ||
3030 vcpu->cpu == cpu) {
3031 pi_clear_sn(pi_desc);
3032 return;
3033 }
3034
3035 /* The full case. */
Feng Wu28b835d2015-09-18 22:29:54 +08003036 do {
3037 old.control = new.control = pi_desc->control;
3038
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02003039 dest = cpu_physical_id(cpu);
Feng Wu28b835d2015-09-18 22:29:54 +08003040
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02003041 if (x2apic_enabled())
3042 new.ndst = dest;
3043 else
3044 new.ndst = (dest << 8) & 0xFF00;
Feng Wu28b835d2015-09-18 22:29:54 +08003045
Feng Wu28b835d2015-09-18 22:29:54 +08003046 new.sn = 0;
Paolo Bonzinic0a16662017-09-28 17:58:41 +02003047 } while (cmpxchg64(&pi_desc->control, old.control,
3048 new.control) != old.control);
Feng Wu28b835d2015-09-18 22:29:54 +08003049}
Xiao Guangrong1be0e612016-03-22 16:51:18 +08003050
Peter Feinerc95ba922016-08-17 09:36:47 -07003051static void decache_tsc_multiplier(struct vcpu_vmx *vmx)
3052{
3053 vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio;
3054 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
3055}
3056
Avi Kivity6aa8b732006-12-10 02:21:36 -08003057/*
3058 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
3059 * vcpu mutex is already taken.
3060 */
Avi Kivity15ad7142007-07-11 18:17:21 +03003061static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003062{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003063 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07003064 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003065
Jim Mattsonb80c76e2016-07-29 18:56:53 -07003066 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003067 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08003068 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003069 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08003070
3071 /*
3072 * Read loaded_vmcs->cpu should be before fetching
3073 * loaded_vmcs->loaded_vmcss_on_cpu_link.
3074 * See the comments in __loaded_vmcs_clear().
3075 */
3076 smp_rmb();
3077
Nadav Har'Eld462b812011-05-24 15:26:10 +03003078 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
3079 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003080 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08003081 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07003082 }
3083
3084 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
3085 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
3086 vmcs_load(vmx->loaded_vmcs->vmcs);
Ashok Raj15d45072018-02-01 22:59:43 +01003087 indirect_branch_prediction_barrier();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07003088 }
3089
3090 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07003091 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07003092 unsigned long sysenter_esp;
3093
3094 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08003095
Avi Kivity6aa8b732006-12-10 02:21:36 -08003096 /*
3097 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08003098 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08003099 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08003100 vmcs_writel(HOST_TR_BASE,
Andy Lutomirski72f5e082017-12-04 15:07:20 +01003101 (unsigned long)&get_cpu_entry_area(cpu)->tss.x86_tss);
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07003102 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003103
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08003104 /*
3105 * VM exits change the host TR limit to 0x67 after a VM
3106 * exit. This is okay, since 0x67 covers everything except
3107 * the IO bitmap and have have code to handle the IO bitmap
3108 * being lost after a VM exit.
3109 */
3110 BUILD_BUG_ON(IO_BITMAP_OFFSET - 1 != 0x67);
3111
Avi Kivity6aa8b732006-12-10 02:21:36 -08003112 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
3113 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08003114
Nadav Har'Eld462b812011-05-24 15:26:10 +03003115 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003116 }
Feng Wu28b835d2015-09-18 22:29:54 +08003117
Owen Hofmann2680d6d2016-03-01 13:36:13 -08003118 /* Setup TSC multiplier */
3119 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07003120 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
3121 decache_tsc_multiplier(vmx);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08003122
Feng Wu28b835d2015-09-18 22:29:54 +08003123 vmx_vcpu_pi_load(vcpu, cpu);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08003124 vmx->host_pkru = read_pkru();
Wanpeng Li74c55932017-11-29 01:31:20 -08003125 vmx->host_debugctlmsr = get_debugctlmsr();
Feng Wu28b835d2015-09-18 22:29:54 +08003126}
3127
3128static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
3129{
3130 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
3131
3132 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08003133 !irq_remapping_cap(IRQ_POSTING_CAP) ||
3134 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08003135 return;
3136
3137 /* Set SN when the vCPU is preempted */
3138 if (vcpu->preempted)
3139 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003140}
3141
3142static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
3143{
Feng Wu28b835d2015-09-18 22:29:54 +08003144 vmx_vcpu_pi_put(vcpu);
3145
Sean Christopherson6d6095b2018-07-23 12:32:44 -07003146 vmx_prepare_switch_to_host(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003147}
3148
Wanpeng Lif244dee2017-07-20 01:11:54 -07003149static bool emulation_required(struct kvm_vcpu *vcpu)
3150{
3151 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
3152}
3153
Avi Kivityedcafe32009-12-30 18:07:40 +02003154static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
3155
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03003156/*
3157 * Return the cr0 value that a nested guest would read. This is a combination
3158 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
3159 * its hypervisor (cr0_read_shadow).
3160 */
3161static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
3162{
3163 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
3164 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
3165}
3166static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
3167{
3168 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
3169 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
3170}
3171
Avi Kivity6aa8b732006-12-10 02:21:36 -08003172static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
3173{
Avi Kivity78ac8b42010-04-08 18:19:35 +03003174 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03003175
Avi Kivity6de12732011-03-07 12:51:22 +02003176 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
3177 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
3178 rflags = vmcs_readl(GUEST_RFLAGS);
3179 if (to_vmx(vcpu)->rmode.vm86_active) {
3180 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3181 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
3182 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
3183 }
3184 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03003185 }
Avi Kivity6de12732011-03-07 12:51:22 +02003186 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003187}
3188
3189static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
3190{
Wanpeng Lif244dee2017-07-20 01:11:54 -07003191 unsigned long old_rflags = vmx_get_rflags(vcpu);
3192
Avi Kivity6de12732011-03-07 12:51:22 +02003193 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
3194 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03003195 if (to_vmx(vcpu)->rmode.vm86_active) {
3196 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01003197 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03003198 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003199 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07003200
3201 if ((old_rflags ^ to_vmx(vcpu)->rflags) & X86_EFLAGS_VM)
3202 to_vmx(vcpu)->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003203}
3204
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02003205static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04003206{
3207 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
3208 int ret = 0;
3209
3210 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01003211 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04003212 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01003213 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04003214
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02003215 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04003216}
3217
3218static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
3219{
3220 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
3221 u32 interruptibility = interruptibility_old;
3222
3223 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
3224
Jan Kiszka48005f62010-02-19 19:38:07 +01003225 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04003226 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01003227 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04003228 interruptibility |= GUEST_INTR_STATE_STI;
3229
3230 if ((interruptibility != interruptibility_old))
3231 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
3232}
3233
Avi Kivity6aa8b732006-12-10 02:21:36 -08003234static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
3235{
3236 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003237
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003238 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003239 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003240 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003241
Glauber Costa2809f5d2009-05-12 16:21:05 -04003242 /* skipping an emulated instruction also counts */
3243 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003244}
3245
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003246static void nested_vmx_inject_exception_vmexit(struct kvm_vcpu *vcpu,
3247 unsigned long exit_qual)
3248{
3249 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
3250 unsigned int nr = vcpu->arch.exception.nr;
3251 u32 intr_info = nr | INTR_INFO_VALID_MASK;
3252
3253 if (vcpu->arch.exception.has_error_code) {
3254 vmcs12->vm_exit_intr_error_code = vcpu->arch.exception.error_code;
3255 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
3256 }
3257
3258 if (kvm_exception_is_soft(nr))
3259 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
3260 else
3261 intr_info |= INTR_TYPE_HARD_EXCEPTION;
3262
3263 if (!(vmcs12->idt_vectoring_info_field & VECTORING_INFO_VALID_MASK) &&
3264 vmx_get_nmi_mask(vcpu))
3265 intr_info |= INTR_INFO_UNBLOCK_NMI;
3266
3267 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, intr_info, exit_qual);
3268}
3269
Nadav Har'El0b6ac342011-05-25 23:13:36 +03003270/*
3271 * KVM wants to inject page-faults which it got to the guest. This function
3272 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03003273 */
Wanpeng Libfcf83b2017-08-24 03:35:11 -07003274static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned long *exit_qual)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03003275{
3276 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003277 unsigned int nr = vcpu->arch.exception.nr;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03003278
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003279 if (nr == PF_VECTOR) {
3280 if (vcpu->arch.exception.nested_apf) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07003281 *exit_qual = vcpu->arch.apf.nested_apf_token;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003282 return 1;
3283 }
3284 /*
3285 * FIXME: we must not write CR2 when L1 intercepts an L2 #PF exception.
3286 * The fix is to add the ancillary datum (CR2 or DR6) to structs
3287 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6
3288 * can be written only when inject_pending_event runs. This should be
3289 * conditional on a new capability---if the capability is disabled,
3290 * kvm_multiple_exception would write the ancillary information to
3291 * CR2 or DR6, for backwards ABI-compatibility.
3292 */
3293 if (nested_vmx_is_page_fault_vmexit(vmcs12,
3294 vcpu->arch.exception.error_code)) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07003295 *exit_qual = vcpu->arch.cr2;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003296 return 1;
3297 }
3298 } else {
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003299 if (vmcs12->exception_bitmap & (1u << nr)) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07003300 if (nr == DB_VECTOR)
3301 *exit_qual = vcpu->arch.dr6;
3302 else
3303 *exit_qual = 0;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003304 return 1;
3305 }
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003306 }
3307
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003308 return 0;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03003309}
3310
Wanpeng Licaa057a2018-03-12 04:53:03 -07003311static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
3312{
3313 /*
3314 * Ensure that we clear the HLT state in the VMCS. We don't need to
3315 * explicitly skip the instruction because if the HLT state is set,
3316 * then the instruction is already executing and RIP has already been
3317 * advanced.
3318 */
3319 if (kvm_hlt_in_guest(vcpu->kvm) &&
3320 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
3321 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
3322}
3323
Wanpeng Licfcd20e2017-07-13 18:30:39 -07003324static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02003325{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003326 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07003327 unsigned nr = vcpu->arch.exception.nr;
3328 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07003329 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01003330 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003331
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01003332 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003333 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01003334 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
3335 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003336
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003337 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05003338 int inc_eip = 0;
3339 if (kvm_exception_is_soft(nr))
3340 inc_eip = vcpu->arch.event_exit_inst_len;
3341 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02003342 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003343 return;
3344 }
3345
Sean Christophersonadd5ff72018-03-23 09:34:00 -07003346 WARN_ON_ONCE(vmx->emulation_required);
3347
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003348 if (kvm_exception_is_soft(nr)) {
3349 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
3350 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01003351 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
3352 } else
3353 intr_info |= INTR_TYPE_HARD_EXCEPTION;
3354
3355 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Wanpeng Licaa057a2018-03-12 04:53:03 -07003356
3357 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02003358}
3359
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003360static bool vmx_rdtscp_supported(void)
3361{
3362 return cpu_has_vmx_rdtscp();
3363}
3364
Mao, Junjiead756a12012-07-02 01:18:48 +00003365static bool vmx_invpcid_supported(void)
3366{
Junaid Shahideb4b2482018-06-27 14:59:14 -07003367 return cpu_has_vmx_invpcid();
Mao, Junjiead756a12012-07-02 01:18:48 +00003368}
3369
Avi Kivity6aa8b732006-12-10 02:21:36 -08003370/*
Eddie Donga75beee2007-05-17 18:55:15 +03003371 * Swap MSR entry in host/guest MSR entry array.
3372 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10003373static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03003374{
Avi Kivity26bb0982009-09-07 11:14:12 +03003375 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003376
3377 tmp = vmx->guest_msrs[to];
3378 vmx->guest_msrs[to] = vmx->guest_msrs[from];
3379 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03003380}
3381
3382/*
Avi Kivitye38aea32007-04-19 13:22:48 +03003383 * Set up the vmcs to automatically save and restore system
3384 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
3385 * mode, as fiddling with msrs is very expensive.
3386 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10003387static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03003388{
Avi Kivity26bb0982009-09-07 11:14:12 +03003389 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03003390
Eddie Donga75beee2007-05-17 18:55:15 +03003391 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03003392#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10003393 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10003394 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03003395 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10003396 move_msr_up(vmx, index, save_nmsrs++);
3397 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03003398 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10003399 move_msr_up(vmx, index, save_nmsrs++);
3400 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03003401 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10003402 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003403 index = __find_msr_index(vmx, MSR_TSC_AUX);
Radim Krčmářd6321d42017-08-05 00:12:49 +02003404 if (index >= 0 && guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003405 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03003406 /*
Brian Gerst8c065852010-07-17 09:03:26 -04003407 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03003408 * if efer.sce is enabled.
3409 */
Brian Gerst8c065852010-07-17 09:03:26 -04003410 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02003411 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10003412 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03003413 }
Eddie Donga75beee2007-05-17 18:55:15 +03003414#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02003415 index = __find_msr_index(vmx, MSR_EFER);
3416 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03003417 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03003418
Avi Kivity26bb0982009-09-07 11:14:12 +03003419 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02003420
Yang Zhang8d146952013-01-25 10:18:50 +08003421 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003422 vmx_update_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03003423}
3424
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003425static u64 vmx_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003426{
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003427 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003428
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003429 if (is_guest_mode(vcpu) &&
3430 (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING))
3431 return vcpu->arch.tsc_offset - vmcs12->tsc_offset;
3432
3433 return vcpu->arch.tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003434}
3435
3436/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10003437 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08003438 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10003439static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003440{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03003441 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03003442 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03003443 * We're here if L1 chose not to trap WRMSR to TSC. According
3444 * to the spec, this should set L1's TSC; The offset that L1
3445 * set for L2 remains unchanged, and still needs to be added
3446 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03003447 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03003448 struct vmcs12 *vmcs12;
Nadav Har'El27fc51b2011-08-02 15:54:52 +03003449 /* recalculate vmcs02.TSC_OFFSET: */
3450 vmcs12 = get_vmcs12(vcpu);
3451 vmcs_write64(TSC_OFFSET, offset +
3452 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
3453 vmcs12->tsc_offset : 0));
3454 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09003455 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
3456 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03003457 vmcs_write64(TSC_OFFSET, offset);
3458 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003459}
3460
Nadav Har'El801d3422011-05-25 23:02:23 +03003461/*
3462 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
3463 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
3464 * all guests if the "nested" module option is off, and can also be disabled
3465 * for a single guest by disabling its VMX cpuid bit.
3466 */
3467static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
3468{
Radim Krčmářd6321d42017-08-05 00:12:49 +02003469 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03003470}
3471
Avi Kivity6aa8b732006-12-10 02:21:36 -08003472/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003473 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
3474 * returned for the various VMX controls MSRs when nested VMX is enabled.
3475 * The same values should also be used to verify that vmcs12 control fields are
3476 * valid during nested entry from L1 to L2.
3477 * Each of these control msrs has a low and high 32-bit half: A low bit is on
3478 * if the corresponding bit in the (32-bit) control field *must* be on, and a
3479 * bit in the high half is on if the corresponding bit in the control field
3480 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003481 */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003482static void nested_vmx_setup_ctls_msrs(struct nested_vmx_msrs *msrs, bool apicv)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003483{
Paolo Bonzini13893092018-02-26 13:40:09 +01003484 if (!nested) {
3485 memset(msrs, 0, sizeof(*msrs));
3486 return;
3487 }
3488
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003489 /*
3490 * Note that as a general rule, the high half of the MSRs (bits in
3491 * the control fields which may be 1) should be initialized by the
3492 * intersection of the underlying hardware's MSR (i.e., features which
3493 * can be supported) and the list of features we want to expose -
3494 * because they are known to be properly supported in our code.
3495 * Also, usually, the low half of the MSRs (bits which must be 1) can
3496 * be set to 0, meaning that L1 may turn off any of these bits. The
3497 * reason is that if one of these bits is necessary, it will appear
3498 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
3499 * fields of vmcs01 and vmcs02, will turn these bits off - and
Paolo Bonzini7313c692017-07-27 10:31:25 +02003500 * nested_vmx_exit_reflected() will not pass related exits to L1.
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003501 * These rules have exceptions below.
3502 */
3503
3504 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01003505 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003506 msrs->pinbased_ctls_low,
3507 msrs->pinbased_ctls_high);
3508 msrs->pinbased_ctls_low |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003509 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003510 msrs->pinbased_ctls_high &=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003511 PIN_BASED_EXT_INTR_MASK |
3512 PIN_BASED_NMI_EXITING |
Paolo Bonzini13893092018-02-26 13:40:09 +01003513 PIN_BASED_VIRTUAL_NMIS |
3514 (apicv ? PIN_BASED_POSTED_INTR : 0);
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003515 msrs->pinbased_ctls_high |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003516 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01003517 PIN_BASED_VMX_PREEMPTION_TIMER;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003518
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02003519 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08003520 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003521 msrs->exit_ctls_low,
3522 msrs->exit_ctls_high);
3523 msrs->exit_ctls_low =
Wincy Vanb9c237b2015-02-03 23:56:30 +08003524 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04003525
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003526 msrs->exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003527#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08003528 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003529#endif
Jan Kiszkaf41245002014-03-07 20:03:13 +01003530 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003531 msrs->exit_ctls_high |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003532 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf41245002014-03-07 20:03:13 +01003533 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04003534 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
3535
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003536 if (kvm_mpx_supported())
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003537 msrs->exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003538
Jan Kiszka2996fca2014-06-16 13:59:43 +02003539 /* We support free control of debug control saving. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003540 msrs->exit_ctls_low &= ~VM_EXIT_SAVE_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02003541
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003542 /* entry controls */
3543 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003544 msrs->entry_ctls_low,
3545 msrs->entry_ctls_high);
3546 msrs->entry_ctls_low =
Wincy Vanb9c237b2015-02-03 23:56:30 +08003547 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003548 msrs->entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02003549#ifdef CONFIG_X86_64
3550 VM_ENTRY_IA32E_MODE |
3551#endif
3552 VM_ENTRY_LOAD_IA32_PAT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003553 msrs->entry_ctls_high |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003554 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003555 if (kvm_mpx_supported())
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003556 msrs->entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02003557
Jan Kiszka2996fca2014-06-16 13:59:43 +02003558 /* We support free control of debug control loading. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003559 msrs->entry_ctls_low &= ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02003560
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003561 /* cpu-based controls */
3562 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003563 msrs->procbased_ctls_low,
3564 msrs->procbased_ctls_high);
3565 msrs->procbased_ctls_low =
Wincy Vanb9c237b2015-02-03 23:56:30 +08003566 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003567 msrs->procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01003568 CPU_BASED_VIRTUAL_INTR_PENDING |
3569 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003570 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
3571 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
3572 CPU_BASED_CR3_STORE_EXITING |
3573#ifdef CONFIG_X86_64
3574 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
3575#endif
3576 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03003577 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
3578 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
3579 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
3580 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003581 /*
3582 * We can allow some features even when not supported by the
3583 * hardware. For example, L1 can specify an MSR bitmap - and we
3584 * can use it to avoid exits to L1 - even when L0 runs L2
3585 * without MSR bitmaps.
3586 */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003587 msrs->procbased_ctls_high |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003588 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02003589 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003590
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02003591 /* We support free control of CR3 access interception. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003592 msrs->procbased_ctls_low &=
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02003593 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
3594
Paolo Bonzini80154d72017-08-24 13:55:35 +02003595 /*
3596 * secondary cpu-based controls. Do not include those that
3597 * depend on CPUID bits, they are added later by vmx_cpuid_update.
3598 */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003599 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003600 msrs->secondary_ctls_low,
3601 msrs->secondary_ctls_high);
3602 msrs->secondary_ctls_low = 0;
3603 msrs->secondary_ctls_high &=
Jan Kiszkad6851fb2013-02-23 22:34:39 +01003604 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini1b073042016-10-25 16:06:30 +02003605 SECONDARY_EXEC_DESC |
Wincy Vanf2b93282015-02-03 23:56:03 +08003606 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wincy Van82f0dd42015-02-03 23:57:18 +08003607 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08003608 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Paolo Bonzini3db13482017-08-24 14:48:03 +02003609 SECONDARY_EXEC_WBINVD_EXITING;
Liran Alon32c7acf2018-06-23 02:35:11 +03003610 /*
3611 * We can emulate "VMCS shadowing," even if the hardware
3612 * doesn't support it.
3613 */
3614 msrs->secondary_ctls_high |=
3615 SECONDARY_EXEC_SHADOW_VMCS;
Jan Kiszkac18911a2013-03-13 16:06:41 +01003616
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02003617 if (enable_ept) {
3618 /* nested EPT: emulate EPT also to L1 */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003619 msrs->secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01003620 SECONDARY_EXEC_ENABLE_EPT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003621 msrs->ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01003622 VMX_EPTP_WB_BIT | VMX_EPT_INVEPT_BIT;
Bandan Das02120c42016-07-12 18:18:52 -04003623 if (cpu_has_vmx_ept_execute_only())
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003624 msrs->ept_caps |=
Bandan Das02120c42016-07-12 18:18:52 -04003625 VMX_EPT_EXECUTE_ONLY_BIT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003626 msrs->ept_caps &= vmx_capability.ept;
3627 msrs->ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01003628 VMX_EPT_EXTENT_CONTEXT_BIT | VMX_EPT_2MB_PAGE_BIT |
3629 VMX_EPT_1GB_PAGE_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04003630 if (enable_ept_ad_bits) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003631 msrs->secondary_ctls_high |=
Bandan Das03efce62017-05-05 15:25:15 -04003632 SECONDARY_EXEC_ENABLE_PML;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003633 msrs->ept_caps |= VMX_EPT_AD_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04003634 }
David Hildenbrand1c13bff2017-08-24 20:51:33 +02003635 }
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02003636
Bandan Das27c42a12017-08-03 15:54:42 -04003637 if (cpu_has_vmx_vmfunc()) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003638 msrs->secondary_ctls_high |=
Bandan Das27c42a12017-08-03 15:54:42 -04003639 SECONDARY_EXEC_ENABLE_VMFUNC;
Bandan Das41ab9372017-08-03 15:54:43 -04003640 /*
3641 * Advertise EPTP switching unconditionally
3642 * since we emulate it
3643 */
Wanpeng Li575b3a22017-10-19 07:00:34 +08003644 if (enable_ept)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003645 msrs->vmfunc_controls =
Wanpeng Li575b3a22017-10-19 07:00:34 +08003646 VMX_VMFUNC_EPTP_SWITCHING;
Bandan Das27c42a12017-08-03 15:54:42 -04003647 }
3648
Paolo Bonzinief697a72016-03-18 16:58:38 +01003649 /*
3650 * Old versions of KVM use the single-context version without
3651 * checking for support, so declare that it is supported even
3652 * though it is treated as global context. The alternative is
3653 * not failing the single-context invvpid, and it is worse.
3654 */
Wanpeng Li63cb6d52017-03-20 21:18:53 -07003655 if (enable_vpid) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003656 msrs->secondary_ctls_high |=
Wanpeng Li63cb6d52017-03-20 21:18:53 -07003657 SECONDARY_EXEC_ENABLE_VPID;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003658 msrs->vpid_caps = VMX_VPID_INVVPID_BIT |
Jan Dakinevichbcdde302016-10-28 07:00:30 +03003659 VMX_VPID_EXTENT_SUPPORTED_MASK;
David Hildenbrand1c13bff2017-08-24 20:51:33 +02003660 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07003661
Radim Krčmář0790ec12015-03-17 14:02:32 +01003662 if (enable_unrestricted_guest)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003663 msrs->secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01003664 SECONDARY_EXEC_UNRESTRICTED_GUEST;
3665
Jan Kiszkac18911a2013-03-13 16:06:41 +01003666 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08003667 rdmsr(MSR_IA32_VMX_MISC,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003668 msrs->misc_low,
3669 msrs->misc_high);
3670 msrs->misc_low &= VMX_MISC_SAVE_EFER_LMA;
3671 msrs->misc_low |=
Jim Mattsonf4160e42018-05-29 09:11:33 -07003672 MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS |
Wincy Vanb9c237b2015-02-03 23:56:30 +08003673 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf41245002014-03-07 20:03:13 +01003674 VMX_MISC_ACTIVITY_HLT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003675 msrs->misc_high = 0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003676
3677 /*
3678 * This MSR reports some information about VMX support. We
3679 * should return information about the VMX we emulate for the
3680 * guest, and the VMCS structure we give it - not about the
3681 * VMX support of the underlying hardware.
3682 */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003683 msrs->basic =
David Matlack62cc6b9d2016-11-29 18:14:07 -08003684 VMCS12_REVISION |
3685 VMX_BASIC_TRUE_CTLS |
3686 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
3687 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
3688
3689 if (cpu_has_vmx_basic_inout())
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003690 msrs->basic |= VMX_BASIC_INOUT;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003691
3692 /*
David Matlack8322ebb2016-11-29 18:14:09 -08003693 * These MSRs specify bits which the guest must keep fixed on
David Matlack62cc6b9d2016-11-29 18:14:07 -08003694 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
3695 * We picked the standard core2 setting.
3696 */
3697#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
3698#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003699 msrs->cr0_fixed0 = VMXON_CR0_ALWAYSON;
3700 msrs->cr4_fixed0 = VMXON_CR4_ALWAYSON;
David Matlack8322ebb2016-11-29 18:14:09 -08003701
3702 /* These MSRs specify bits which the guest must keep fixed off. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003703 rdmsrl(MSR_IA32_VMX_CR0_FIXED1, msrs->cr0_fixed1);
3704 rdmsrl(MSR_IA32_VMX_CR4_FIXED1, msrs->cr4_fixed1);
David Matlack62cc6b9d2016-11-29 18:14:07 -08003705
3706 /* highest index: VMX_PREEMPTION_TIMER_VALUE */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003707 msrs->vmcs_enum = VMCS12_MAX_FIELD_INDEX << 1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003708}
3709
David Matlack38991522016-11-29 18:14:08 -08003710/*
3711 * if fixed0[i] == 1: val[i] must be 1
3712 * if fixed1[i] == 0: val[i] must be 0
3713 */
3714static inline bool fixed_bits_valid(u64 val, u64 fixed0, u64 fixed1)
3715{
3716 return ((val & fixed1) | fixed0) == val;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003717}
3718
3719static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
3720{
David Matlack38991522016-11-29 18:14:08 -08003721 return fixed_bits_valid(control, low, high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003722}
3723
3724static inline u64 vmx_control_msr(u32 low, u32 high)
3725{
3726 return low | ((u64)high << 32);
3727}
3728
David Matlack62cc6b9d2016-11-29 18:14:07 -08003729static bool is_bitwise_subset(u64 superset, u64 subset, u64 mask)
3730{
3731 superset &= mask;
3732 subset &= mask;
3733
3734 return (superset | subset) == superset;
3735}
3736
3737static int vmx_restore_vmx_basic(struct vcpu_vmx *vmx, u64 data)
3738{
3739 const u64 feature_and_reserved =
3740 /* feature (except bit 48; see below) */
3741 BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) |
3742 /* reserved */
3743 BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56);
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003744 u64 vmx_basic = vmx->nested.msrs.basic;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003745
3746 if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved))
3747 return -EINVAL;
3748
3749 /*
3750 * KVM does not emulate a version of VMX that constrains physical
3751 * addresses of VMX structures (e.g. VMCS) to 32-bits.
3752 */
3753 if (data & BIT_ULL(48))
3754 return -EINVAL;
3755
3756 if (vmx_basic_vmcs_revision_id(vmx_basic) !=
3757 vmx_basic_vmcs_revision_id(data))
3758 return -EINVAL;
3759
3760 if (vmx_basic_vmcs_size(vmx_basic) > vmx_basic_vmcs_size(data))
3761 return -EINVAL;
3762
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003763 vmx->nested.msrs.basic = data;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003764 return 0;
3765}
3766
3767static int
3768vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3769{
3770 u64 supported;
3771 u32 *lowp, *highp;
3772
3773 switch (msr_index) {
3774 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003775 lowp = &vmx->nested.msrs.pinbased_ctls_low;
3776 highp = &vmx->nested.msrs.pinbased_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003777 break;
3778 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003779 lowp = &vmx->nested.msrs.procbased_ctls_low;
3780 highp = &vmx->nested.msrs.procbased_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003781 break;
3782 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003783 lowp = &vmx->nested.msrs.exit_ctls_low;
3784 highp = &vmx->nested.msrs.exit_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003785 break;
3786 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003787 lowp = &vmx->nested.msrs.entry_ctls_low;
3788 highp = &vmx->nested.msrs.entry_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003789 break;
3790 case MSR_IA32_VMX_PROCBASED_CTLS2:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003791 lowp = &vmx->nested.msrs.secondary_ctls_low;
3792 highp = &vmx->nested.msrs.secondary_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003793 break;
3794 default:
3795 BUG();
3796 }
3797
3798 supported = vmx_control_msr(*lowp, *highp);
3799
3800 /* Check must-be-1 bits are still 1. */
3801 if (!is_bitwise_subset(data, supported, GENMASK_ULL(31, 0)))
3802 return -EINVAL;
3803
3804 /* Check must-be-0 bits are still 0. */
3805 if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32)))
3806 return -EINVAL;
3807
3808 *lowp = data;
3809 *highp = data >> 32;
3810 return 0;
3811}
3812
3813static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data)
3814{
3815 const u64 feature_and_reserved_bits =
3816 /* feature */
3817 BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) |
3818 BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) |
3819 /* reserved */
3820 GENMASK_ULL(13, 9) | BIT_ULL(31);
3821 u64 vmx_misc;
3822
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003823 vmx_misc = vmx_control_msr(vmx->nested.msrs.misc_low,
3824 vmx->nested.msrs.misc_high);
David Matlack62cc6b9d2016-11-29 18:14:07 -08003825
3826 if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits))
3827 return -EINVAL;
3828
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003829 if ((vmx->nested.msrs.pinbased_ctls_high &
David Matlack62cc6b9d2016-11-29 18:14:07 -08003830 PIN_BASED_VMX_PREEMPTION_TIMER) &&
3831 vmx_misc_preemption_timer_rate(data) !=
3832 vmx_misc_preemption_timer_rate(vmx_misc))
3833 return -EINVAL;
3834
3835 if (vmx_misc_cr3_count(data) > vmx_misc_cr3_count(vmx_misc))
3836 return -EINVAL;
3837
3838 if (vmx_misc_max_msr(data) > vmx_misc_max_msr(vmx_misc))
3839 return -EINVAL;
3840
3841 if (vmx_misc_mseg_revid(data) != vmx_misc_mseg_revid(vmx_misc))
3842 return -EINVAL;
3843
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003844 vmx->nested.msrs.misc_low = data;
3845 vmx->nested.msrs.misc_high = data >> 32;
Jim Mattsonf4160e42018-05-29 09:11:33 -07003846
3847 /*
3848 * If L1 has read-only VM-exit information fields, use the
3849 * less permissive vmx_vmwrite_bitmap to specify write
3850 * permissions for the shadow VMCS.
3851 */
3852 if (enable_shadow_vmcs && !nested_cpu_has_vmwrite_any_field(&vmx->vcpu))
3853 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
3854
David Matlack62cc6b9d2016-11-29 18:14:07 -08003855 return 0;
3856}
3857
3858static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data)
3859{
3860 u64 vmx_ept_vpid_cap;
3861
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003862 vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.msrs.ept_caps,
3863 vmx->nested.msrs.vpid_caps);
David Matlack62cc6b9d2016-11-29 18:14:07 -08003864
3865 /* Every bit is either reserved or a feature bit. */
3866 if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL))
3867 return -EINVAL;
3868
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003869 vmx->nested.msrs.ept_caps = data;
3870 vmx->nested.msrs.vpid_caps = data >> 32;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003871 return 0;
3872}
3873
3874static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3875{
3876 u64 *msr;
3877
3878 switch (msr_index) {
3879 case MSR_IA32_VMX_CR0_FIXED0:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003880 msr = &vmx->nested.msrs.cr0_fixed0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003881 break;
3882 case MSR_IA32_VMX_CR4_FIXED0:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003883 msr = &vmx->nested.msrs.cr4_fixed0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003884 break;
3885 default:
3886 BUG();
3887 }
3888
3889 /*
3890 * 1 bits (which indicates bits which "must-be-1" during VMX operation)
3891 * must be 1 in the restored value.
3892 */
3893 if (!is_bitwise_subset(data, *msr, -1ULL))
3894 return -EINVAL;
3895
3896 *msr = data;
3897 return 0;
3898}
3899
3900/*
3901 * Called when userspace is restoring VMX MSRs.
3902 *
3903 * Returns 0 on success, non-0 otherwise.
3904 */
3905static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
3906{
3907 struct vcpu_vmx *vmx = to_vmx(vcpu);
3908
Jim Mattsona943ac52018-05-29 09:11:32 -07003909 /*
3910 * Don't allow changes to the VMX capability MSRs while the vCPU
3911 * is in VMX operation.
3912 */
3913 if (vmx->nested.vmxon)
3914 return -EBUSY;
3915
David Matlack62cc6b9d2016-11-29 18:14:07 -08003916 switch (msr_index) {
3917 case MSR_IA32_VMX_BASIC:
3918 return vmx_restore_vmx_basic(vmx, data);
3919 case MSR_IA32_VMX_PINBASED_CTLS:
3920 case MSR_IA32_VMX_PROCBASED_CTLS:
3921 case MSR_IA32_VMX_EXIT_CTLS:
3922 case MSR_IA32_VMX_ENTRY_CTLS:
3923 /*
3924 * The "non-true" VMX capability MSRs are generated from the
3925 * "true" MSRs, so we do not support restoring them directly.
3926 *
3927 * If userspace wants to emulate VMX_BASIC[55]=0, userspace
3928 * should restore the "true" MSRs with the must-be-1 bits
3929 * set according to the SDM Vol 3. A.2 "RESERVED CONTROLS AND
3930 * DEFAULT SETTINGS".
3931 */
3932 return -EINVAL;
3933 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3934 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3935 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3936 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3937 case MSR_IA32_VMX_PROCBASED_CTLS2:
3938 return vmx_restore_control_msr(vmx, msr_index, data);
3939 case MSR_IA32_VMX_MISC:
3940 return vmx_restore_vmx_misc(vmx, data);
3941 case MSR_IA32_VMX_CR0_FIXED0:
3942 case MSR_IA32_VMX_CR4_FIXED0:
3943 return vmx_restore_fixed0_msr(vmx, msr_index, data);
3944 case MSR_IA32_VMX_CR0_FIXED1:
3945 case MSR_IA32_VMX_CR4_FIXED1:
3946 /*
3947 * These MSRs are generated based on the vCPU's CPUID, so we
3948 * do not support restoring them directly.
3949 */
3950 return -EINVAL;
3951 case MSR_IA32_VMX_EPT_VPID_CAP:
3952 return vmx_restore_vmx_ept_vpid_cap(vmx, data);
3953 case MSR_IA32_VMX_VMCS_ENUM:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003954 vmx->nested.msrs.vmcs_enum = data;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003955 return 0;
3956 default:
3957 /*
3958 * The rest of the VMX capability MSRs do not support restore.
3959 */
3960 return -EINVAL;
3961 }
3962}
3963
Jan Kiszkacae50132014-01-04 18:47:22 +01003964/* Returns 0 on success, non-0 otherwise. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003965static int vmx_get_vmx_msr(struct nested_vmx_msrs *msrs, u32 msr_index, u64 *pdata)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003966{
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003967 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003968 case MSR_IA32_VMX_BASIC:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003969 *pdata = msrs->basic;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003970 break;
3971 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3972 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003973 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003974 msrs->pinbased_ctls_low,
3975 msrs->pinbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003976 if (msr_index == MSR_IA32_VMX_PINBASED_CTLS)
3977 *pdata |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003978 break;
3979 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3980 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003981 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003982 msrs->procbased_ctls_low,
3983 msrs->procbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003984 if (msr_index == MSR_IA32_VMX_PROCBASED_CTLS)
3985 *pdata |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003986 break;
3987 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3988 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003989 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003990 msrs->exit_ctls_low,
3991 msrs->exit_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003992 if (msr_index == MSR_IA32_VMX_EXIT_CTLS)
3993 *pdata |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003994 break;
3995 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3996 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003997 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003998 msrs->entry_ctls_low,
3999 msrs->entry_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08004000 if (msr_index == MSR_IA32_VMX_ENTRY_CTLS)
4001 *pdata |= VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004002 break;
4003 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08004004 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004005 msrs->misc_low,
4006 msrs->misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004007 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004008 case MSR_IA32_VMX_CR0_FIXED0:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004009 *pdata = msrs->cr0_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004010 break;
4011 case MSR_IA32_VMX_CR0_FIXED1:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004012 *pdata = msrs->cr0_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004013 break;
4014 case MSR_IA32_VMX_CR4_FIXED0:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004015 *pdata = msrs->cr4_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004016 break;
4017 case MSR_IA32_VMX_CR4_FIXED1:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004018 *pdata = msrs->cr4_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004019 break;
4020 case MSR_IA32_VMX_VMCS_ENUM:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004021 *pdata = msrs->vmcs_enum;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004022 break;
4023 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08004024 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004025 msrs->secondary_ctls_low,
4026 msrs->secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004027 break;
4028 case MSR_IA32_VMX_EPT_VPID_CAP:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004029 *pdata = msrs->ept_caps |
4030 ((u64)msrs->vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004031 break;
Bandan Das27c42a12017-08-03 15:54:42 -04004032 case MSR_IA32_VMX_VMFUNC:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004033 *pdata = msrs->vmfunc_controls;
Bandan Das27c42a12017-08-03 15:54:42 -04004034 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004035 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004036 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08004037 }
4038
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004039 return 0;
4040}
4041
Haozhong Zhang37e4c992016-06-22 14:59:55 +08004042static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
4043 uint64_t val)
4044{
4045 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
4046
4047 return !(val & ~valid_bits);
4048}
4049
Tom Lendacky801e4592018-02-21 13:39:51 -06004050static int vmx_get_msr_feature(struct kvm_msr_entry *msr)
4051{
Paolo Bonzini13893092018-02-26 13:40:09 +01004052 switch (msr->index) {
4053 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
4054 if (!nested)
4055 return 1;
4056 return vmx_get_vmx_msr(&vmcs_config.nested, msr->index, &msr->data);
4057 default:
4058 return 1;
4059 }
4060
4061 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06004062}
4063
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004064/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08004065 * Reads an msr value (of 'msr_index') into 'pdata'.
4066 * Returns 0 on success, non-0 otherwise.
4067 * Assumes vcpu_load() was already called.
4068 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004069static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004070{
Borislav Petkova6cb0992017-12-20 12:50:28 +01004071 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03004072 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004073
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004074 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004075#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004076 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004077 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004078 break;
4079 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004080 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004081 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03004082 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07004083 msr_info->data = vmx_read_guest_kernel_gs_base(vmx);
Avi Kivity44ea2b12009-09-06 15:55:37 +03004084 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03004085#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08004086 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004087 return kvm_get_msr_common(vcpu, msr_info);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004088 case MSR_IA32_SPEC_CTRL:
4089 if (!msr_info->host_initiated &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004090 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
4091 return 1;
4092
4093 msr_info->data = to_vmx(vcpu)->spec_ctrl;
4094 break;
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +01004095 case MSR_IA32_ARCH_CAPABILITIES:
4096 if (!msr_info->host_initiated &&
4097 !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES))
4098 return 1;
4099 msr_info->data = to_vmx(vcpu)->arch_capabilities;
4100 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004101 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004102 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004103 break;
4104 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004105 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004106 break;
4107 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004108 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004109 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00004110 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08004111 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02004112 (!msr_info->host_initiated &&
4113 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004114 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004115 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00004116 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004117 case MSR_IA32_MCG_EXT_CTL:
4118 if (!msr_info->host_initiated &&
Borislav Petkova6cb0992017-12-20 12:50:28 +01004119 !(vmx->msr_ia32_feature_control &
Ashok Rajc45dcc72016-06-22 14:59:56 +08004120 FEATURE_CONTROL_LMCE))
Jan Kiszkacae50132014-01-04 18:47:22 +01004121 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004122 msr_info->data = vcpu->arch.mcg_ext_ctl;
4123 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01004124 case MSR_IA32_FEATURE_CONTROL:
Borislav Petkova6cb0992017-12-20 12:50:28 +01004125 msr_info->data = vmx->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01004126 break;
4127 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
4128 if (!nested_vmx_allowed(vcpu))
4129 return 1;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004130 return vmx_get_vmx_msr(&vmx->nested.msrs, msr_info->index,
4131 &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08004132 case MSR_IA32_XSS:
4133 if (!vmx_xsaves_supported())
4134 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004135 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08004136 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004137 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02004138 if (!msr_info->host_initiated &&
4139 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004140 return 1;
4141 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004142 default:
Borislav Petkova6cb0992017-12-20 12:50:28 +01004143 msr = find_msr_entry(vmx, msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08004144 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004145 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08004146 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004147 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004148 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004149 }
4150
Avi Kivity6aa8b732006-12-10 02:21:36 -08004151 return 0;
4152}
4153
Jan Kiszkacae50132014-01-04 18:47:22 +01004154static void vmx_leave_nested(struct kvm_vcpu *vcpu);
4155
Avi Kivity6aa8b732006-12-10 02:21:36 -08004156/*
4157 * Writes msr value into into the appropriate "register".
4158 * Returns 0 on success, non-0 otherwise.
4159 * Assumes vcpu_load() was already called.
4160 */
Will Auld8fe8ab42012-11-29 12:42:12 -08004161static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004162{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004163 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03004164 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03004165 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08004166 u32 msr_index = msr_info->index;
4167 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03004168
Avi Kivity6aa8b732006-12-10 02:21:36 -08004169 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08004170 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08004171 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03004172 break;
Avi Kivity16175a72009-03-23 22:13:44 +02004173#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004174 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03004175 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004176 vmcs_writel(GUEST_FS_BASE, data);
4177 break;
4178 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03004179 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004180 vmcs_writel(GUEST_GS_BASE, data);
4181 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03004182 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07004183 vmx_write_guest_kernel_gs_base(vmx, data);
Avi Kivity44ea2b12009-09-06 15:55:37 +03004184 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004185#endif
4186 case MSR_IA32_SYSENTER_CS:
4187 vmcs_write32(GUEST_SYSENTER_CS, data);
4188 break;
4189 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02004190 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004191 break;
4192 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02004193 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004194 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00004195 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08004196 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02004197 (!msr_info->host_initiated &&
4198 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004199 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08004200 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07004201 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004202 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08004203 vmcs_write64(GUEST_BNDCFGS, data);
4204 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004205 case MSR_IA32_SPEC_CTRL:
4206 if (!msr_info->host_initiated &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004207 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
4208 return 1;
4209
4210 /* The STIBP bit doesn't fault even if it's not advertised */
Konrad Rzeszutek Wilk9f65fb22018-05-09 21:41:38 +02004211 if (data & ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004212 return 1;
4213
4214 vmx->spec_ctrl = data;
4215
4216 if (!data)
4217 break;
4218
4219 /*
4220 * For non-nested:
4221 * When it's written (to non-zero) for the first time, pass
4222 * it through.
4223 *
4224 * For nested:
4225 * The handling of the MSR bitmap for L2 guests is done in
4226 * nested_vmx_merge_msr_bitmap. We should not touch the
4227 * vmcs02.msr_bitmap here since it gets completely overwritten
4228 * in the merging. We update the vmcs01 here for L1 as well
4229 * since it will end up touching the MSR anyway now.
4230 */
4231 vmx_disable_intercept_for_msr(vmx->vmcs01.msr_bitmap,
4232 MSR_IA32_SPEC_CTRL,
4233 MSR_TYPE_RW);
4234 break;
Ashok Raj15d45072018-02-01 22:59:43 +01004235 case MSR_IA32_PRED_CMD:
4236 if (!msr_info->host_initiated &&
Ashok Raj15d45072018-02-01 22:59:43 +01004237 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
4238 return 1;
4239
4240 if (data & ~PRED_CMD_IBPB)
4241 return 1;
4242
4243 if (!data)
4244 break;
4245
4246 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
4247
4248 /*
4249 * For non-nested:
4250 * When it's written (to non-zero) for the first time, pass
4251 * it through.
4252 *
4253 * For nested:
4254 * The handling of the MSR bitmap for L2 guests is done in
4255 * nested_vmx_merge_msr_bitmap. We should not touch the
4256 * vmcs02.msr_bitmap here since it gets completely overwritten
4257 * in the merging.
4258 */
4259 vmx_disable_intercept_for_msr(vmx->vmcs01.msr_bitmap, MSR_IA32_PRED_CMD,
4260 MSR_TYPE_W);
4261 break;
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +01004262 case MSR_IA32_ARCH_CAPABILITIES:
4263 if (!msr_info->host_initiated)
4264 return 1;
4265 vmx->arch_capabilities = data;
4266 break;
Sheng Yang468d4722008-10-09 16:01:55 +08004267 case MSR_IA32_CR_PAT:
4268 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03004269 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4270 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08004271 vmcs_write64(GUEST_IA32_PAT, data);
4272 vcpu->arch.pat = data;
4273 break;
4274 }
Will Auld8fe8ab42012-11-29 12:42:12 -08004275 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004276 break;
Will Auldba904632012-11-29 12:42:50 -08004277 case MSR_IA32_TSC_ADJUST:
4278 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004279 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004280 case MSR_IA32_MCG_EXT_CTL:
4281 if ((!msr_info->host_initiated &&
4282 !(to_vmx(vcpu)->msr_ia32_feature_control &
4283 FEATURE_CONTROL_LMCE)) ||
4284 (data & ~MCG_EXT_CTL_LMCE_EN))
4285 return 1;
4286 vcpu->arch.mcg_ext_ctl = data;
4287 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01004288 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08004289 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08004290 (to_vmx(vcpu)->msr_ia32_feature_control &
Jan Kiszkacae50132014-01-04 18:47:22 +01004291 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
4292 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08004293 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01004294 if (msr_info->host_initiated && data == 0)
4295 vmx_leave_nested(vcpu);
4296 break;
4297 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08004298 if (!msr_info->host_initiated)
4299 return 1; /* they are read-only */
4300 if (!nested_vmx_allowed(vcpu))
4301 return 1;
4302 return vmx_set_vmx_msr(vcpu, msr_index, data);
Wanpeng Li20300092014-12-02 19:14:59 +08004303 case MSR_IA32_XSS:
4304 if (!vmx_xsaves_supported())
4305 return 1;
4306 /*
4307 * The only supported bit as of Skylake is bit 8, but
4308 * it is not supported on KVM.
4309 */
4310 if (data != 0)
4311 return 1;
4312 vcpu->arch.ia32_xss = data;
4313 if (vcpu->arch.ia32_xss != host_xss)
4314 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04004315 vcpu->arch.ia32_xss, host_xss, false);
Wanpeng Li20300092014-12-02 19:14:59 +08004316 else
4317 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
4318 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004319 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02004320 if (!msr_info->host_initiated &&
4321 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004322 return 1;
4323 /* Check reserved bit, higher 32 bits should be zero */
4324 if ((data >> 32) != 0)
4325 return 1;
4326 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004327 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10004328 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08004329 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07004330 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08004331 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03004332 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
4333 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07004334 ret = kvm_set_shared_msr(msr->index, msr->data,
4335 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03004336 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07004337 if (ret)
4338 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03004339 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08004340 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004341 }
Will Auld8fe8ab42012-11-29 12:42:12 -08004342 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004343 }
4344
Eddie Dong2cc51562007-05-21 07:28:09 +03004345 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004346}
4347
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004348static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004349{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004350 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
4351 switch (reg) {
4352 case VCPU_REGS_RSP:
4353 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
4354 break;
4355 case VCPU_REGS_RIP:
4356 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
4357 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004358 case VCPU_EXREG_PDPTR:
4359 if (enable_ept)
4360 ept_save_pdptrs(vcpu);
4361 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004362 default:
4363 break;
4364 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004365}
4366
Avi Kivity6aa8b732006-12-10 02:21:36 -08004367static __init int cpu_has_kvm_support(void)
4368{
Eduardo Habkost6210e372008-11-17 19:03:16 -02004369 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004370}
4371
4372static __init int vmx_disabled_by_bios(void)
4373{
4374 u64 msr;
4375
4376 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04004377 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08004378 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04004379 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
4380 && tboot_enabled())
4381 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08004382 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04004383 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08004384 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08004385 && !tboot_enabled()) {
4386 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08004387 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04004388 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08004389 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08004390 /* launched w/o TXT and VMX disabled */
4391 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
4392 && !tboot_enabled())
4393 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04004394 }
4395
4396 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004397}
4398
Dongxiao Xu7725b892010-05-11 18:29:38 +08004399static void kvm_cpu_vmxon(u64 addr)
4400{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01004401 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03004402 intel_pt_handle_vmx(1);
4403
Dongxiao Xu7725b892010-05-11 18:29:38 +08004404 asm volatile (ASM_VMX_VMXON_RAX
4405 : : "a"(&addr), "m"(addr)
4406 : "memory", "cc");
4407}
4408
Radim Krčmář13a34e02014-08-28 15:13:03 +02004409static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004410{
4411 int cpu = raw_smp_processor_id();
4412 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04004413 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004414
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07004415 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02004416 return -EBUSY;
4417
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01004418 /*
4419 * This can happen if we hot-added a CPU but failed to allocate
4420 * VP assist page for it.
4421 */
4422 if (static_branch_unlikely(&enable_evmcs) &&
4423 !hv_get_vp_assist_page(cpu))
4424 return -EFAULT;
4425
Nadav Har'Eld462b812011-05-24 15:26:10 +03004426 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08004427 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
4428 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08004429
4430 /*
4431 * Now we can enable the vmclear operation in kdump
4432 * since the loaded_vmcss_on_cpu list on this cpu
4433 * has been initialized.
4434 *
4435 * Though the cpu is not in VMX operation now, there
4436 * is no problem to enable the vmclear operation
4437 * for the loaded_vmcss_on_cpu list is empty!
4438 */
4439 crash_enable_local_vmclear(cpu);
4440
Avi Kivity6aa8b732006-12-10 02:21:36 -08004441 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04004442
4443 test_bits = FEATURE_CONTROL_LOCKED;
4444 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
4445 if (tboot_enabled())
4446 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
4447
4448 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004449 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04004450 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
4451 }
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01004452 kvm_cpu_vmxon(phys_addr);
David Hildenbrandfdf288b2017-08-24 20:51:29 +02004453 if (enable_ept)
4454 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02004455
4456 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004457}
4458
Nadav Har'Eld462b812011-05-24 15:26:10 +03004459static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03004460{
4461 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03004462 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03004463
Nadav Har'Eld462b812011-05-24 15:26:10 +03004464 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
4465 loaded_vmcss_on_cpu_link)
4466 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03004467}
4468
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02004469
4470/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
4471 * tricks.
4472 */
4473static void kvm_cpu_vmxoff(void)
4474{
4475 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03004476
4477 intel_pt_handle_vmx(0);
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01004478 cr4_clear_bits(X86_CR4_VMXE);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02004479}
4480
Radim Krčmář13a34e02014-08-28 15:13:03 +02004481static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004482{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01004483 vmclear_local_loaded_vmcss();
4484 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004485}
4486
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004487static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04004488 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004489{
4490 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004491 u32 ctl = ctl_min | ctl_opt;
4492
4493 rdmsr(msr, vmx_msr_low, vmx_msr_high);
4494
4495 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
4496 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
4497
4498 /* Ensure minimum (required) set of control bits are supported. */
4499 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004500 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004501
4502 *result = ctl;
4503 return 0;
4504}
4505
Avi Kivity110312c2010-12-21 12:54:20 +02004506static __init bool allow_1_setting(u32 msr, u32 ctl)
4507{
4508 u32 vmx_msr_low, vmx_msr_high;
4509
4510 rdmsr(msr, vmx_msr_low, vmx_msr_high);
4511 return vmx_msr_high & ctl;
4512}
4513
Yang, Sheng002c7f72007-07-31 14:23:01 +03004514static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004515{
4516 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08004517 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004518 u32 _pin_based_exec_control = 0;
4519 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004520 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004521 u32 _vmexit_control = 0;
4522 u32 _vmentry_control = 0;
4523
Paolo Bonzini13893092018-02-26 13:40:09 +01004524 memset(vmcs_conf, 0, sizeof(*vmcs_conf));
Raghavendra K T10166742012-02-07 23:19:20 +05304525 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004526#ifdef CONFIG_X86_64
4527 CPU_BASED_CR8_LOAD_EXITING |
4528 CPU_BASED_CR8_STORE_EXITING |
4529#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08004530 CPU_BASED_CR3_LOAD_EXITING |
4531 CPU_BASED_CR3_STORE_EXITING |
Quan Xu8eb73e2d2017-12-12 16:44:21 +08004532 CPU_BASED_UNCOND_IO_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004533 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03004534 CPU_BASED_USE_TSC_OFFSETING |
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004535 CPU_BASED_MWAIT_EXITING |
4536 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02004537 CPU_BASED_INVLPG_EXITING |
4538 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06004539
Sheng Yangf78e0e22007-10-29 09:40:42 +08004540 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08004541 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08004542 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004543 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
4544 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004545 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004546#ifdef CONFIG_X86_64
4547 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
4548 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
4549 ~CPU_BASED_CR8_STORE_EXITING;
4550#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08004551 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08004552 min2 = 0;
4553 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08004554 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08004555 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08004556 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004557 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004558 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004559 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Paolo Bonzini0367f202016-07-12 10:44:55 +02004560 SECONDARY_EXEC_DESC |
Mao, Junjiead756a12012-07-02 01:18:48 +00004561 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08004562 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08004563 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03004564 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08004565 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08004566 SECONDARY_EXEC_XSAVES |
David Hildenbrand736fdf72017-08-24 20:51:37 +02004567 SECONDARY_EXEC_RDSEED_EXITING |
4568 SECONDARY_EXEC_RDRAND_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08004569 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04004570 SECONDARY_EXEC_TSC_SCALING |
Sean Christopherson0b665d32018-08-14 09:33:34 -07004571 SECONDARY_EXEC_ENABLE_VMFUNC |
4572 SECONDARY_EXEC_ENCLS_EXITING;
Sheng Yangd56f5462008-04-25 10:13:16 +08004573 if (adjust_vmx_controls(min2, opt2,
4574 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08004575 &_cpu_based_2nd_exec_control) < 0)
4576 return -EIO;
4577 }
4578#ifndef CONFIG_X86_64
4579 if (!(_cpu_based_2nd_exec_control &
4580 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
4581 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
4582#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08004583
4584 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
4585 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08004586 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08004587 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
4588 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08004589
Wanpeng Li61f1dd92017-10-18 16:02:19 -07004590 rdmsr_safe(MSR_IA32_VMX_EPT_VPID_CAP,
4591 &vmx_capability.ept, &vmx_capability.vpid);
4592
Sheng Yangd56f5462008-04-25 10:13:16 +08004593 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03004594 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
4595 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03004596 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
4597 CPU_BASED_CR3_STORE_EXITING |
4598 CPU_BASED_INVLPG_EXITING);
Wanpeng Li61f1dd92017-10-18 16:02:19 -07004599 } else if (vmx_capability.ept) {
4600 vmx_capability.ept = 0;
4601 pr_warn_once("EPT CAP should not exist if not support "
4602 "1-setting enable EPT VM-execution control\n");
4603 }
4604 if (!(_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_VPID) &&
4605 vmx_capability.vpid) {
4606 vmx_capability.vpid = 0;
4607 pr_warn_once("VPID CAP should not exist if not support "
4608 "1-setting enable VPID VM-execution control\n");
Sheng Yangd56f5462008-04-25 10:13:16 +08004609 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004610
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02004611 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004612#ifdef CONFIG_X86_64
4613 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
4614#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08004615 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02004616 VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004617 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
4618 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004619 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004620
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004621 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
4622 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
4623 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08004624 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
4625 &_pin_based_exec_control) < 0)
4626 return -EIO;
4627
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02004628 if (cpu_has_broken_vmx_preemption_timer())
4629 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08004630 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02004631 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08004632 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
4633
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01004634 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00004635 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004636 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
4637 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004638 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004639
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08004640 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004641
4642 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
4643 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004644 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004645
4646#ifdef CONFIG_X86_64
4647 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
4648 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03004649 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004650#endif
4651
4652 /* Require Write-Back (WB) memory type for VMCS accesses. */
4653 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004654 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004655
Yang, Sheng002c7f72007-07-31 14:23:01 +03004656 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02004657 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03004658 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01004659
Liran Alon2307af12018-06-29 22:59:04 +03004660 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004661
Yang, Sheng002c7f72007-07-31 14:23:01 +03004662 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
4663 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004664 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03004665 vmcs_conf->vmexit_ctrl = _vmexit_control;
4666 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004667
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01004668 if (static_branch_unlikely(&enable_evmcs))
4669 evmcs_sanitize_exec_ctrls(vmcs_conf);
4670
Avi Kivity110312c2010-12-21 12:54:20 +02004671 cpu_has_load_ia32_efer =
4672 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
4673 VM_ENTRY_LOAD_IA32_EFER)
4674 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
4675 VM_EXIT_LOAD_IA32_EFER);
4676
Gleb Natapov8bf00a52011-10-05 14:01:22 +02004677 cpu_has_load_perf_global_ctrl =
4678 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
4679 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
4680 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
4681 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
4682
4683 /*
4684 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
Andrea Gelminibb3541f2016-05-21 14:14:44 +02004685 * but due to errata below it can't be used. Workaround is to use
Gleb Natapov8bf00a52011-10-05 14:01:22 +02004686 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
4687 *
4688 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
4689 *
4690 * AAK155 (model 26)
4691 * AAP115 (model 30)
4692 * AAT100 (model 37)
4693 * BC86,AAY89,BD102 (model 44)
4694 * BA97 (model 46)
4695 *
4696 */
4697 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
4698 switch (boot_cpu_data.x86_model) {
4699 case 26:
4700 case 30:
4701 case 37:
4702 case 44:
4703 case 46:
4704 cpu_has_load_perf_global_ctrl = false;
4705 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
4706 "does not work properly. Using workaround\n");
4707 break;
4708 default:
4709 break;
4710 }
4711 }
4712
Borislav Petkov782511b2016-04-04 22:25:03 +02004713 if (boot_cpu_has(X86_FEATURE_XSAVES))
Wanpeng Li20300092014-12-02 19:14:59 +08004714 rdmsrl(MSR_IA32_XSS, host_xss);
4715
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004716 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08004717}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004718
Liran Alon491a6032018-06-23 02:35:12 +03004719static struct vmcs *alloc_vmcs_cpu(bool shadow, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004720{
4721 int node = cpu_to_node(cpu);
4722 struct page *pages;
4723 struct vmcs *vmcs;
4724
Vlastimil Babka96db8002015-09-08 15:03:50 -07004725 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004726 if (!pages)
4727 return NULL;
4728 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004729 memset(vmcs, 0, vmcs_config.size);
Liran Alon2307af12018-06-29 22:59:04 +03004730
4731 /* KVM supports Enlightened VMCS v1 only */
4732 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03004733 vmcs->hdr.revision_id = KVM_EVMCS_VERSION;
Liran Alon2307af12018-06-29 22:59:04 +03004734 else
Liran Alon392b2f22018-06-23 02:35:01 +03004735 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03004736
Liran Alon491a6032018-06-23 02:35:12 +03004737 if (shadow)
4738 vmcs->hdr.shadow_vmcs = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004739 return vmcs;
4740}
4741
Avi Kivity6aa8b732006-12-10 02:21:36 -08004742static void free_vmcs(struct vmcs *vmcs)
4743{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004744 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004745}
4746
Nadav Har'Eld462b812011-05-24 15:26:10 +03004747/*
4748 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
4749 */
4750static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
4751{
4752 if (!loaded_vmcs->vmcs)
4753 return;
4754 loaded_vmcs_clear(loaded_vmcs);
4755 free_vmcs(loaded_vmcs->vmcs);
4756 loaded_vmcs->vmcs = NULL;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004757 if (loaded_vmcs->msr_bitmap)
4758 free_page((unsigned long)loaded_vmcs->msr_bitmap);
Jim Mattson355f4fb2016-10-28 08:29:39 -07004759 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03004760}
4761
Liran Alon491a6032018-06-23 02:35:12 +03004762static struct vmcs *alloc_vmcs(bool shadow)
Paolo Bonzinif21f1652018-01-11 12:16:15 +01004763{
Liran Alon491a6032018-06-23 02:35:12 +03004764 return alloc_vmcs_cpu(shadow, raw_smp_processor_id());
Paolo Bonzinif21f1652018-01-11 12:16:15 +01004765}
4766
4767static int alloc_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
4768{
Liran Alon491a6032018-06-23 02:35:12 +03004769 loaded_vmcs->vmcs = alloc_vmcs(false);
Paolo Bonzinif21f1652018-01-11 12:16:15 +01004770 if (!loaded_vmcs->vmcs)
4771 return -ENOMEM;
4772
4773 loaded_vmcs->shadow_vmcs = NULL;
4774 loaded_vmcs_init(loaded_vmcs);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004775
4776 if (cpu_has_vmx_msr_bitmap()) {
4777 loaded_vmcs->msr_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL);
4778 if (!loaded_vmcs->msr_bitmap)
4779 goto out_vmcs;
4780 memset(loaded_vmcs->msr_bitmap, 0xff, PAGE_SIZE);
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02004781
Arnd Bergmann1f008e12018-05-25 17:36:17 +02004782 if (IS_ENABLED(CONFIG_HYPERV) &&
4783 static_branch_unlikely(&enable_evmcs) &&
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02004784 (ms_hyperv.nested_features & HV_X64_NESTED_MSR_BITMAP)) {
4785 struct hv_enlightened_vmcs *evmcs =
4786 (struct hv_enlightened_vmcs *)loaded_vmcs->vmcs;
4787
4788 evmcs->hv_enlightenments_control.msr_bitmap = 1;
4789 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004790 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07004791
4792 memset(&loaded_vmcs->host_state, 0, sizeof(struct vmcs_host_state));
4793
Paolo Bonzinif21f1652018-01-11 12:16:15 +01004794 return 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004795
4796out_vmcs:
4797 free_loaded_vmcs(loaded_vmcs);
4798 return -ENOMEM;
Paolo Bonzinif21f1652018-01-11 12:16:15 +01004799}
4800
Sam Ravnborg39959582007-06-01 00:47:13 -07004801static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004802{
4803 int cpu;
4804
Zachary Amsden3230bb42009-09-29 11:38:37 -10004805 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004806 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10004807 per_cpu(vmxarea, cpu) = NULL;
4808 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004809}
4810
Jim Mattsond37f4262017-12-22 12:12:16 -08004811enum vmcs_field_width {
4812 VMCS_FIELD_WIDTH_U16 = 0,
4813 VMCS_FIELD_WIDTH_U64 = 1,
4814 VMCS_FIELD_WIDTH_U32 = 2,
4815 VMCS_FIELD_WIDTH_NATURAL_WIDTH = 3
Jim Mattson85fd5142017-07-07 12:51:41 -07004816};
4817
Jim Mattsond37f4262017-12-22 12:12:16 -08004818static inline int vmcs_field_width(unsigned long field)
Jim Mattson85fd5142017-07-07 12:51:41 -07004819{
4820 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
Jim Mattsond37f4262017-12-22 12:12:16 -08004821 return VMCS_FIELD_WIDTH_U32;
Jim Mattson85fd5142017-07-07 12:51:41 -07004822 return (field >> 13) & 0x3 ;
4823}
4824
4825static inline int vmcs_field_readonly(unsigned long field)
4826{
4827 return (((field >> 10) & 0x3) == 1);
4828}
4829
Bandan Dasfe2b2012014-04-21 15:20:14 -04004830static void init_vmcs_shadow_fields(void)
4831{
4832 int i, j;
4833
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004834 for (i = j = 0; i < max_shadow_read_only_fields; i++) {
4835 u16 field = shadow_read_only_fields[i];
Jim Mattsond37f4262017-12-22 12:12:16 -08004836 if (vmcs_field_width(field) == VMCS_FIELD_WIDTH_U64 &&
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004837 (i + 1 == max_shadow_read_only_fields ||
4838 shadow_read_only_fields[i + 1] != field + 1))
4839 pr_err("Missing field from shadow_read_only_field %x\n",
4840 field + 1);
4841
4842 clear_bit(field, vmx_vmread_bitmap);
4843#ifdef CONFIG_X86_64
4844 if (field & 1)
4845 continue;
4846#endif
4847 if (j < i)
4848 shadow_read_only_fields[j] = field;
4849 j++;
4850 }
4851 max_shadow_read_only_fields = j;
Bandan Dasfe2b2012014-04-21 15:20:14 -04004852
4853 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004854 u16 field = shadow_read_write_fields[i];
Jim Mattsond37f4262017-12-22 12:12:16 -08004855 if (vmcs_field_width(field) == VMCS_FIELD_WIDTH_U64 &&
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004856 (i + 1 == max_shadow_read_write_fields ||
4857 shadow_read_write_fields[i + 1] != field + 1))
4858 pr_err("Missing field from shadow_read_write_field %x\n",
4859 field + 1);
4860
Paolo Bonzinic5d167b2017-12-13 11:05:19 +01004861 /*
4862 * PML and the preemption timer can be emulated, but the
4863 * processor cannot vmwrite to fields that don't exist
4864 * on bare metal.
4865 */
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004866 switch (field) {
Paolo Bonzinic5d167b2017-12-13 11:05:19 +01004867 case GUEST_PML_INDEX:
4868 if (!cpu_has_vmx_pml())
4869 continue;
4870 break;
4871 case VMX_PREEMPTION_TIMER_VALUE:
4872 if (!cpu_has_vmx_preemption_timer())
4873 continue;
4874 break;
4875 case GUEST_INTR_STATUS:
4876 if (!cpu_has_vmx_apicv())
Bandan Dasfe2b2012014-04-21 15:20:14 -04004877 continue;
4878 break;
4879 default:
4880 break;
4881 }
4882
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004883 clear_bit(field, vmx_vmwrite_bitmap);
4884 clear_bit(field, vmx_vmread_bitmap);
4885#ifdef CONFIG_X86_64
4886 if (field & 1)
4887 continue;
4888#endif
Bandan Dasfe2b2012014-04-21 15:20:14 -04004889 if (j < i)
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004890 shadow_read_write_fields[j] = field;
Bandan Dasfe2b2012014-04-21 15:20:14 -04004891 j++;
4892 }
4893 max_shadow_read_write_fields = j;
Bandan Dasfe2b2012014-04-21 15:20:14 -04004894}
4895
Avi Kivity6aa8b732006-12-10 02:21:36 -08004896static __init int alloc_kvm_area(void)
4897{
4898 int cpu;
4899
Zachary Amsden3230bb42009-09-29 11:38:37 -10004900 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004901 struct vmcs *vmcs;
4902
Liran Alon491a6032018-06-23 02:35:12 +03004903 vmcs = alloc_vmcs_cpu(false, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004904 if (!vmcs) {
4905 free_kvm_area();
4906 return -ENOMEM;
4907 }
4908
Liran Alon2307af12018-06-29 22:59:04 +03004909 /*
4910 * When eVMCS is enabled, alloc_vmcs_cpu() sets
4911 * vmcs->revision_id to KVM_EVMCS_VERSION instead of
4912 * revision_id reported by MSR_IA32_VMX_BASIC.
4913 *
4914 * However, even though not explictly documented by
4915 * TLFS, VMXArea passed as VMXON argument should
4916 * still be marked with revision_id reported by
4917 * physical CPU.
4918 */
4919 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03004920 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03004921
Avi Kivity6aa8b732006-12-10 02:21:36 -08004922 per_cpu(vmxarea, cpu) = vmcs;
4923 }
4924 return 0;
4925}
4926
Gleb Natapov91b0aa22013-01-21 15:36:47 +02004927static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02004928 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004929{
Gleb Natapovd99e4152012-12-20 16:57:45 +02004930 if (!emulate_invalid_guest_state) {
4931 /*
4932 * CS and SS RPL should be equal during guest entry according
4933 * to VMX spec, but in reality it is not always so. Since vcpu
4934 * is in the middle of the transition from real mode to
4935 * protected mode it is safe to assume that RPL 0 is a good
4936 * default value.
4937 */
4938 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03004939 save->selector &= ~SEGMENT_RPL_MASK;
4940 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02004941 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004942 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02004943 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004944}
4945
4946static void enter_pmode(struct kvm_vcpu *vcpu)
4947{
4948 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004949 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004950
Gleb Natapovd99e4152012-12-20 16:57:45 +02004951 /*
4952 * Update real mode segment cache. It may be not up-to-date if sement
4953 * register was written while vcpu was in a guest mode.
4954 */
4955 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
4956 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
4957 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
4958 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
4959 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
4960 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
4961
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004962 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004963
Avi Kivity2fb92db2011-04-27 19:42:18 +03004964 vmx_segment_cache_clear(vmx);
4965
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004966 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004967
4968 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03004969 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
4970 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004971 vmcs_writel(GUEST_RFLAGS, flags);
4972
Rusty Russell66aee912007-07-17 23:34:16 +10004973 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
4974 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004975
4976 update_exception_bitmap(vcpu);
4977
Gleb Natapov91b0aa22013-01-21 15:36:47 +02004978 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
4979 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
4980 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
4981 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
4982 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
4983 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004984}
4985
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004986static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004987{
Mathias Krause772e0312012-08-30 01:30:19 +02004988 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02004989 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004990
Gleb Natapovd99e4152012-12-20 16:57:45 +02004991 var.dpl = 0x3;
4992 if (seg == VCPU_SREG_CS)
4993 var.type = 0x3;
4994
4995 if (!emulate_invalid_guest_state) {
4996 var.selector = var.base >> 4;
4997 var.base = var.base & 0xffff0;
4998 var.limit = 0xffff;
4999 var.g = 0;
5000 var.db = 0;
5001 var.present = 1;
5002 var.s = 1;
5003 var.l = 0;
5004 var.unusable = 0;
5005 var.type = 0x3;
5006 var.avl = 0;
5007 if (save->base & 0xf)
5008 printk_once(KERN_WARNING "kvm: segment base is not "
5009 "paragraph aligned when entering "
5010 "protected mode (seg=%d)", seg);
5011 }
5012
5013 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05005014 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02005015 vmcs_write32(sf->limit, var.limit);
5016 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005017}
5018
5019static void enter_rmode(struct kvm_vcpu *vcpu)
5020{
5021 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03005022 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005023 struct kvm_vmx *kvm_vmx = to_kvm_vmx(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005024
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03005025 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
5026 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
5027 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
5028 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
5029 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02005030 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
5031 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03005032
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005033 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005034
Gleb Natapov776e58e2011-03-13 12:34:27 +02005035 /*
5036 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01005037 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02005038 */
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005039 if (!kvm_vmx->tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02005040 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
5041 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02005042
Avi Kivity2fb92db2011-04-27 19:42:18 +03005043 vmx_segment_cache_clear(vmx);
5044
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005045 vmcs_writel(GUEST_TR_BASE, kvm_vmx->tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005046 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005047 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
5048
5049 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03005050 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005051
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01005052 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005053
5054 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10005055 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005056 update_exception_bitmap(vcpu);
5057
Gleb Natapovd99e4152012-12-20 16:57:45 +02005058 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
5059 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
5060 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
5061 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
5062 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
5063 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03005064
Eddie Dong8668a3c2007-10-10 14:26:45 +08005065 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005066}
5067
Amit Shah401d10d2009-02-20 22:53:37 +05305068static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
5069{
5070 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03005071 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
5072
5073 if (!msr)
5074 return;
Amit Shah401d10d2009-02-20 22:53:37 +05305075
Avi Kivity44ea2b12009-09-06 15:55:37 +03005076 /*
Sean Christopherson678e3152018-07-23 12:32:43 -07005077 * MSR_KERNEL_GS_BASE is not intercepted when the guest is in
5078 * 64-bit mode as a 64-bit kernel may frequently access the
5079 * MSR. This means we need to manually save/restore the MSR
5080 * when switching between guest and host state, but only if
5081 * the guest is in 64-bit mode. Sync our cached value if the
5082 * guest is transitioning to 32-bit mode and the CPU contains
5083 * guest state, i.e. the cache is stale.
Avi Kivity44ea2b12009-09-06 15:55:37 +03005084 */
Sean Christopherson678e3152018-07-23 12:32:43 -07005085#ifdef CONFIG_X86_64
5086 if (!(efer & EFER_LMA))
5087 (void)vmx_read_guest_kernel_gs_base(vmx);
5088#endif
Avi Kivityf6801df2010-01-21 15:31:50 +02005089 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05305090 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02005091 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05305092 msr->data = efer;
5093 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02005094 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05305095
5096 msr->data = efer & ~EFER_LME;
5097 }
5098 setup_msrs(vmx);
5099}
5100
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005101#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005102
5103static void enter_lmode(struct kvm_vcpu *vcpu)
5104{
5105 u32 guest_tr_ar;
5106
Avi Kivity2fb92db2011-04-27 19:42:18 +03005107 vmx_segment_cache_clear(to_vmx(vcpu));
5108
Avi Kivity6aa8b732006-12-10 02:21:36 -08005109 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005110 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02005111 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
5112 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005113 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005114 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
5115 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005116 }
Avi Kivityda38f432010-07-06 11:30:49 +03005117 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005118}
5119
5120static void exit_lmode(struct kvm_vcpu *vcpu)
5121{
Gleb Natapov2961e8762013-11-25 15:37:13 +02005122 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03005123 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005124}
5125
5126#endif
5127
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005128static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid,
5129 bool invalidate_gpa)
Sheng Yang2384d2b2008-01-17 15:14:33 +08005130{
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005131 if (enable_ept && (invalidate_gpa || !enable_vpid)) {
Xiao Guangrongdd180b32010-07-03 16:02:42 +08005132 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
5133 return;
Peter Feiner995f00a2017-06-30 17:26:32 -07005134 ept_sync_context(construct_eptp(vcpu, vcpu->arch.mmu.root_hpa));
Jim Mattsonf0b98c02017-03-15 07:56:11 -07005135 } else {
5136 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08005137 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08005138}
5139
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005140static void vmx_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005141{
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005142 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid, invalidate_gpa);
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005143}
5144
Junaid Shahidfaff8752018-06-29 13:10:05 -07005145static void vmx_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t addr)
5146{
5147 int vpid = to_vmx(vcpu)->vpid;
5148
5149 if (!vpid_sync_vcpu_addr(vpid, addr))
5150 vpid_sync_context(vpid);
5151
5152 /*
5153 * If VPIDs are not supported or enabled, then the above is a no-op.
5154 * But we don't really need a TLB flush in that case anyway, because
5155 * each VM entry/exit includes an implicit flush when VPID is 0.
5156 */
5157}
5158
Avi Kivitye8467fd2009-12-29 18:43:06 +02005159static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
5160{
5161 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
5162
5163 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
5164 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
5165}
5166
Avi Kivityaff48ba2010-12-05 18:56:11 +02005167static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
5168{
Sean Christophersonb4d18512018-03-05 12:04:40 -08005169 if (enable_unrestricted_guest || (enable_ept && is_paging(vcpu)))
Avi Kivityaff48ba2010-12-05 18:56:11 +02005170 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
5171 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
5172}
5173
Anthony Liguori25c4c272007-04-27 09:29:21 +03005174static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08005175{
Avi Kivityfc78f512009-12-07 12:16:48 +02005176 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
5177
5178 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
5179 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08005180}
5181
Sheng Yang14394422008-04-28 12:24:45 +08005182static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
5183{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03005184 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
5185
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005186 if (!test_bit(VCPU_EXREG_PDPTR,
5187 (unsigned long *)&vcpu->arch.regs_dirty))
5188 return;
5189
Sheng Yang14394422008-04-28 12:24:45 +08005190 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03005191 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
5192 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
5193 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
5194 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08005195 }
5196}
5197
Avi Kivity8f5d5492009-05-31 18:41:29 +03005198static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
5199{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03005200 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
5201
Avi Kivity8f5d5492009-05-31 18:41:29 +03005202 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03005203 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
5204 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
5205 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
5206 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03005207 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005208
5209 __set_bit(VCPU_EXREG_PDPTR,
5210 (unsigned long *)&vcpu->arch.regs_avail);
5211 __set_bit(VCPU_EXREG_PDPTR,
5212 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03005213}
5214
David Matlack38991522016-11-29 18:14:08 -08005215static bool nested_guest_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
5216{
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005217 u64 fixed0 = to_vmx(vcpu)->nested.msrs.cr0_fixed0;
5218 u64 fixed1 = to_vmx(vcpu)->nested.msrs.cr0_fixed1;
David Matlack38991522016-11-29 18:14:08 -08005219 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5220
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005221 if (to_vmx(vcpu)->nested.msrs.secondary_ctls_high &
David Matlack38991522016-11-29 18:14:08 -08005222 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
5223 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
5224 fixed0 &= ~(X86_CR0_PE | X86_CR0_PG);
5225
5226 return fixed_bits_valid(val, fixed0, fixed1);
5227}
5228
5229static bool nested_host_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
5230{
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005231 u64 fixed0 = to_vmx(vcpu)->nested.msrs.cr0_fixed0;
5232 u64 fixed1 = to_vmx(vcpu)->nested.msrs.cr0_fixed1;
David Matlack38991522016-11-29 18:14:08 -08005233
5234 return fixed_bits_valid(val, fixed0, fixed1);
5235}
5236
5237static bool nested_cr4_valid(struct kvm_vcpu *vcpu, unsigned long val)
5238{
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005239 u64 fixed0 = to_vmx(vcpu)->nested.msrs.cr4_fixed0;
5240 u64 fixed1 = to_vmx(vcpu)->nested.msrs.cr4_fixed1;
David Matlack38991522016-11-29 18:14:08 -08005241
5242 return fixed_bits_valid(val, fixed0, fixed1);
5243}
5244
5245/* No difference in the restrictions on guest and host CR4 in VMX operation. */
5246#define nested_guest_cr4_valid nested_cr4_valid
5247#define nested_host_cr4_valid nested_cr4_valid
5248
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005249static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08005250
5251static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
5252 unsigned long cr0,
5253 struct kvm_vcpu *vcpu)
5254{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03005255 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
5256 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08005257 if (!(cr0 & X86_CR0_PG)) {
5258 /* From paging/starting to nonpaging */
5259 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08005260 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08005261 (CPU_BASED_CR3_LOAD_EXITING |
5262 CPU_BASED_CR3_STORE_EXITING));
5263 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02005264 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08005265 } else if (!is_paging(vcpu)) {
5266 /* From nonpaging to paging */
5267 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08005268 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08005269 ~(CPU_BASED_CR3_LOAD_EXITING |
5270 CPU_BASED_CR3_STORE_EXITING));
5271 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02005272 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08005273 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08005274
5275 if (!(cr0 & X86_CR0_WP))
5276 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08005277}
5278
Avi Kivity6aa8b732006-12-10 02:21:36 -08005279static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
5280{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005281 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005282 unsigned long hw_cr0;
5283
Gleb Natapov50378782013-02-04 16:00:28 +02005284 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005285 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02005286 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02005287 else {
Gleb Natapov50378782013-02-04 16:00:28 +02005288 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08005289
Gleb Natapov218e7632013-01-21 15:36:45 +02005290 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
5291 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005292
Gleb Natapov218e7632013-01-21 15:36:45 +02005293 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
5294 enter_rmode(vcpu);
5295 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005296
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005297#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02005298 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10005299 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005300 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10005301 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005302 exit_lmode(vcpu);
5303 }
5304#endif
5305
Sean Christophersonb4d18512018-03-05 12:04:40 -08005306 if (enable_ept && !enable_unrestricted_guest)
Sheng Yang14394422008-04-28 12:24:45 +08005307 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
5308
Avi Kivity6aa8b732006-12-10 02:21:36 -08005309 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08005310 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005311 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02005312
5313 /* depends on vcpu->arch.cr0 to be set to a new value */
5314 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005315}
5316
Yu Zhang855feb62017-08-24 20:27:55 +08005317static int get_ept_level(struct kvm_vcpu *vcpu)
5318{
5319 if (cpu_has_vmx_ept_5levels() && (cpuid_maxphyaddr(vcpu) > 48))
5320 return 5;
5321 return 4;
5322}
5323
Peter Feiner995f00a2017-06-30 17:26:32 -07005324static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa)
Sheng Yang14394422008-04-28 12:24:45 +08005325{
Yu Zhang855feb62017-08-24 20:27:55 +08005326 u64 eptp = VMX_EPTP_MT_WB;
Sheng Yang14394422008-04-28 12:24:45 +08005327
Yu Zhang855feb62017-08-24 20:27:55 +08005328 eptp |= (get_ept_level(vcpu) == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08005329
Peter Feiner995f00a2017-06-30 17:26:32 -07005330 if (enable_ept_ad_bits &&
5331 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02005332 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08005333 eptp |= (root_hpa & PAGE_MASK);
5334
5335 return eptp;
5336}
5337
Avi Kivity6aa8b732006-12-10 02:21:36 -08005338static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
5339{
Tianyu Lan877ad952018-07-19 08:40:23 +00005340 struct kvm *kvm = vcpu->kvm;
Sheng Yang14394422008-04-28 12:24:45 +08005341 unsigned long guest_cr3;
5342 u64 eptp;
5343
5344 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02005345 if (enable_ept) {
Peter Feiner995f00a2017-06-30 17:26:32 -07005346 eptp = construct_eptp(vcpu, cr3);
Sheng Yang14394422008-04-28 12:24:45 +08005347 vmcs_write64(EPT_POINTER, eptp);
Tianyu Lan877ad952018-07-19 08:40:23 +00005348
5349 if (kvm_x86_ops->tlb_remote_flush) {
5350 spin_lock(&to_kvm_vmx(kvm)->ept_pointer_lock);
5351 to_vmx(vcpu)->ept_pointer = eptp;
5352 to_kvm_vmx(kvm)->ept_pointers_match
5353 = EPT_POINTERS_CHECK;
5354 spin_unlock(&to_kvm_vmx(kvm)->ept_pointer_lock);
5355 }
5356
Sean Christophersone90008d2018-03-05 12:04:37 -08005357 if (enable_unrestricted_guest || is_paging(vcpu) ||
5358 is_guest_mode(vcpu))
Jan Kiszka59ab5a82013-08-08 16:26:29 +02005359 guest_cr3 = kvm_read_cr3(vcpu);
5360 else
Tianyu Lan877ad952018-07-19 08:40:23 +00005361 guest_cr3 = to_kvm_vmx(kvm)->ept_identity_map_addr;
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02005362 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08005363 }
5364
Sheng Yang14394422008-04-28 12:24:45 +08005365 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005366}
5367
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005368static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005369{
Ben Serebrin085e68e2015-04-16 11:58:05 -07005370 /*
5371 * Pass through host's Machine Check Enable value to hw_cr4, which
5372 * is in force while we are in guest mode. Do not let guests control
5373 * this bit, even if host CR4.MCE == 0.
5374 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08005375 unsigned long hw_cr4;
5376
5377 hw_cr4 = (cr4_read_shadow() & X86_CR4_MCE) | (cr4 & ~X86_CR4_MCE);
5378 if (enable_unrestricted_guest)
5379 hw_cr4 |= KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST;
5380 else if (to_vmx(vcpu)->rmode.vm86_active)
5381 hw_cr4 |= KVM_RMODE_VM_CR4_ALWAYS_ON;
5382 else
5383 hw_cr4 |= KVM_PMODE_VM_CR4_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08005384
Sean Christopherson64f7a112018-04-30 10:01:06 -07005385 if (!boot_cpu_has(X86_FEATURE_UMIP) && vmx_umip_emulated()) {
5386 if (cr4 & X86_CR4_UMIP) {
5387 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
Paolo Bonzini0367f202016-07-12 10:44:55 +02005388 SECONDARY_EXEC_DESC);
Sean Christopherson64f7a112018-04-30 10:01:06 -07005389 hw_cr4 &= ~X86_CR4_UMIP;
5390 } else if (!is_guest_mode(vcpu) ||
5391 !nested_cpu_has2(get_vmcs12(vcpu), SECONDARY_EXEC_DESC))
5392 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
5393 SECONDARY_EXEC_DESC);
5394 }
Paolo Bonzini0367f202016-07-12 10:44:55 +02005395
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005396 if (cr4 & X86_CR4_VMXE) {
5397 /*
5398 * To use VMXON (and later other VMX instructions), a guest
5399 * must first be able to turn on cr4.VMXE (see handle_vmon()).
5400 * So basically the check on whether to allow nested VMX
Paolo Bonzini5bea5122018-09-18 15:19:17 +02005401 * is here. We operate under the default treatment of SMM,
5402 * so VMX cannot be enabled under SMM.
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005403 */
Paolo Bonzini5bea5122018-09-18 15:19:17 +02005404 if (!nested_vmx_allowed(vcpu) || is_smm(vcpu))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005405 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005406 }
David Matlack38991522016-11-29 18:14:08 -08005407
5408 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005409 return 1;
5410
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005411 vcpu->arch.cr4 = cr4;
Sheng Yang14394422008-04-28 12:24:45 +08005412
Sean Christopherson5dc1f042018-03-05 12:04:39 -08005413 if (!enable_unrestricted_guest) {
5414 if (enable_ept) {
5415 if (!is_paging(vcpu)) {
5416 hw_cr4 &= ~X86_CR4_PAE;
5417 hw_cr4 |= X86_CR4_PSE;
5418 } else if (!(cr4 & X86_CR4_PAE)) {
5419 hw_cr4 &= ~X86_CR4_PAE;
5420 }
5421 }
5422
Radim Krčmář656ec4a2015-11-02 22:20:00 +01005423 /*
Huaitong Handdba2622016-03-22 16:51:15 +08005424 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
5425 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
5426 * to be manually disabled when guest switches to non-paging
5427 * mode.
5428 *
5429 * If !enable_unrestricted_guest, the CPU is always running
5430 * with CR0.PG=1 and CR4 needs to be modified.
5431 * If enable_unrestricted_guest, the CPU automatically
5432 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01005433 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08005434 if (!is_paging(vcpu))
5435 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
5436 }
Radim Krčmář656ec4a2015-11-02 22:20:00 +01005437
Sheng Yang14394422008-04-28 12:24:45 +08005438 vmcs_writel(CR4_READ_SHADOW, cr4);
5439 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005440 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005441}
5442
Avi Kivity6aa8b732006-12-10 02:21:36 -08005443static void vmx_get_segment(struct kvm_vcpu *vcpu,
5444 struct kvm_segment *var, int seg)
5445{
Avi Kivitya9179492011-01-03 14:28:52 +02005446 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005447 u32 ar;
5448
Gleb Natapovc6ad11532012-12-12 19:10:51 +02005449 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03005450 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02005451 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03005452 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03005453 return;
Avi Kivity1390a282012-08-21 17:07:08 +03005454 var->base = vmx_read_guest_seg_base(vmx, seg);
5455 var->selector = vmx_read_guest_seg_selector(vmx, seg);
5456 return;
Avi Kivitya9179492011-01-03 14:28:52 +02005457 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03005458 var->base = vmx_read_guest_seg_base(vmx, seg);
5459 var->limit = vmx_read_guest_seg_limit(vmx, seg);
5460 var->selector = vmx_read_guest_seg_selector(vmx, seg);
5461 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03005462 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005463 var->type = ar & 15;
5464 var->s = (ar >> 4) & 1;
5465 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03005466 /*
5467 * Some userspaces do not preserve unusable property. Since usable
5468 * segment has to be present according to VMX spec we can use present
5469 * property to amend userspace bug by making unusable segment always
5470 * nonpresent. vmx_segment_access_rights() already marks nonpresent
5471 * segment as unusable.
5472 */
5473 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005474 var->avl = (ar >> 12) & 1;
5475 var->l = (ar >> 13) & 1;
5476 var->db = (ar >> 14) & 1;
5477 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005478}
5479
Avi Kivitya9179492011-01-03 14:28:52 +02005480static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
5481{
Avi Kivitya9179492011-01-03 14:28:52 +02005482 struct kvm_segment s;
5483
5484 if (to_vmx(vcpu)->rmode.vm86_active) {
5485 vmx_get_segment(vcpu, &s, seg);
5486 return s.base;
5487 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03005488 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02005489}
5490
Marcelo Tosattib09408d2013-01-07 19:27:06 -02005491static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02005492{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02005493 struct vcpu_vmx *vmx = to_vmx(vcpu);
5494
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02005495 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02005496 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02005497 else {
5498 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005499 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02005500 }
Avi Kivity69c73022011-03-07 15:26:44 +02005501}
5502
Avi Kivity653e3102007-05-07 10:55:37 +03005503static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005504{
Avi Kivity6aa8b732006-12-10 02:21:36 -08005505 u32 ar;
5506
Avi Kivityf0495f92012-06-07 17:06:10 +03005507 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005508 ar = 1 << 16;
5509 else {
5510 ar = var->type & 15;
5511 ar |= (var->s & 1) << 4;
5512 ar |= (var->dpl & 3) << 5;
5513 ar |= (var->present & 1) << 7;
5514 ar |= (var->avl & 1) << 12;
5515 ar |= (var->l & 1) << 13;
5516 ar |= (var->db & 1) << 14;
5517 ar |= (var->g & 1) << 15;
5518 }
Avi Kivity653e3102007-05-07 10:55:37 +03005519
5520 return ar;
5521}
5522
5523static void vmx_set_segment(struct kvm_vcpu *vcpu,
5524 struct kvm_segment *var, int seg)
5525{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005526 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02005527 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03005528
Avi Kivity2fb92db2011-04-27 19:42:18 +03005529 vmx_segment_cache_clear(vmx);
5530
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02005531 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
5532 vmx->rmode.segs[seg] = *var;
5533 if (seg == VCPU_SREG_TR)
5534 vmcs_write16(sf->selector, var->selector);
5535 else if (var->s)
5536 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02005537 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03005538 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02005539
Avi Kivity653e3102007-05-07 10:55:37 +03005540 vmcs_writel(sf->base, var->base);
5541 vmcs_write32(sf->limit, var->limit);
5542 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005543
5544 /*
5545 * Fix the "Accessed" bit in AR field of segment registers for older
5546 * qemu binaries.
5547 * IA32 arch specifies that at the time of processor reset the
5548 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08005549 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005550 * state vmexit when "unrestricted guest" mode is turned on.
5551 * Fix for this setup issue in cpu_reset is being pushed in the qemu
5552 * tree. Newer qemu binaries with that qemu fix would not need this
5553 * kvm hack.
5554 */
5555 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02005556 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005557
Gleb Natapovf924d662012-12-12 19:10:55 +02005558 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02005559
5560out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01005561 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005562}
5563
Avi Kivity6aa8b732006-12-10 02:21:36 -08005564static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
5565{
Avi Kivity2fb92db2011-04-27 19:42:18 +03005566 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005567
5568 *db = (ar >> 14) & 1;
5569 *l = (ar >> 13) & 1;
5570}
5571
Gleb Natapov89a27f42010-02-16 10:51:48 +02005572static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005573{
Gleb Natapov89a27f42010-02-16 10:51:48 +02005574 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
5575 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005576}
5577
Gleb Natapov89a27f42010-02-16 10:51:48 +02005578static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005579{
Gleb Natapov89a27f42010-02-16 10:51:48 +02005580 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
5581 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005582}
5583
Gleb Natapov89a27f42010-02-16 10:51:48 +02005584static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005585{
Gleb Natapov89a27f42010-02-16 10:51:48 +02005586 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
5587 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005588}
5589
Gleb Natapov89a27f42010-02-16 10:51:48 +02005590static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005591{
Gleb Natapov89a27f42010-02-16 10:51:48 +02005592 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
5593 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005594}
5595
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005596static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
5597{
5598 struct kvm_segment var;
5599 u32 ar;
5600
5601 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02005602 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02005603 if (seg == VCPU_SREG_CS)
5604 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005605 ar = vmx_segment_access_rights(&var);
5606
5607 if (var.base != (var.selector << 4))
5608 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02005609 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005610 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02005611 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005612 return false;
5613
5614 return true;
5615}
5616
5617static bool code_segment_valid(struct kvm_vcpu *vcpu)
5618{
5619 struct kvm_segment cs;
5620 unsigned int cs_rpl;
5621
5622 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03005623 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005624
Avi Kivity1872a3f2009-01-04 23:26:52 +02005625 if (cs.unusable)
5626 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005627 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005628 return false;
5629 if (!cs.s)
5630 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005631 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005632 if (cs.dpl > cs_rpl)
5633 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02005634 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005635 if (cs.dpl != cs_rpl)
5636 return false;
5637 }
5638 if (!cs.present)
5639 return false;
5640
5641 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
5642 return true;
5643}
5644
5645static bool stack_segment_valid(struct kvm_vcpu *vcpu)
5646{
5647 struct kvm_segment ss;
5648 unsigned int ss_rpl;
5649
5650 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03005651 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005652
Avi Kivity1872a3f2009-01-04 23:26:52 +02005653 if (ss.unusable)
5654 return true;
5655 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005656 return false;
5657 if (!ss.s)
5658 return false;
5659 if (ss.dpl != ss_rpl) /* DPL != RPL */
5660 return false;
5661 if (!ss.present)
5662 return false;
5663
5664 return true;
5665}
5666
5667static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
5668{
5669 struct kvm_segment var;
5670 unsigned int rpl;
5671
5672 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03005673 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005674
Avi Kivity1872a3f2009-01-04 23:26:52 +02005675 if (var.unusable)
5676 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005677 if (!var.s)
5678 return false;
5679 if (!var.present)
5680 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005681 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005682 if (var.dpl < rpl) /* DPL < RPL */
5683 return false;
5684 }
5685
5686 /* TODO: Add other members to kvm_segment_field to allow checking for other access
5687 * rights flags
5688 */
5689 return true;
5690}
5691
5692static bool tr_valid(struct kvm_vcpu *vcpu)
5693{
5694 struct kvm_segment tr;
5695
5696 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
5697
Avi Kivity1872a3f2009-01-04 23:26:52 +02005698 if (tr.unusable)
5699 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03005700 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005701 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02005702 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005703 return false;
5704 if (!tr.present)
5705 return false;
5706
5707 return true;
5708}
5709
5710static bool ldtr_valid(struct kvm_vcpu *vcpu)
5711{
5712 struct kvm_segment ldtr;
5713
5714 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
5715
Avi Kivity1872a3f2009-01-04 23:26:52 +02005716 if (ldtr.unusable)
5717 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03005718 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005719 return false;
5720 if (ldtr.type != 2)
5721 return false;
5722 if (!ldtr.present)
5723 return false;
5724
5725 return true;
5726}
5727
5728static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
5729{
5730 struct kvm_segment cs, ss;
5731
5732 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
5733 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
5734
Nadav Amitb32a9912015-03-29 16:33:04 +03005735 return ((cs.selector & SEGMENT_RPL_MASK) ==
5736 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005737}
5738
5739/*
5740 * Check if guest state is valid. Returns true if valid, false if
5741 * not.
5742 * We assume that registers are always usable
5743 */
5744static bool guest_state_valid(struct kvm_vcpu *vcpu)
5745{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02005746 if (enable_unrestricted_guest)
5747 return true;
5748
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005749 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03005750 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005751 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
5752 return false;
5753 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
5754 return false;
5755 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
5756 return false;
5757 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
5758 return false;
5759 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
5760 return false;
5761 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
5762 return false;
5763 } else {
5764 /* protected mode guest state checks */
5765 if (!cs_ss_rpl_check(vcpu))
5766 return false;
5767 if (!code_segment_valid(vcpu))
5768 return false;
5769 if (!stack_segment_valid(vcpu))
5770 return false;
5771 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
5772 return false;
5773 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
5774 return false;
5775 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
5776 return false;
5777 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
5778 return false;
5779 if (!tr_valid(vcpu))
5780 return false;
5781 if (!ldtr_valid(vcpu))
5782 return false;
5783 }
5784 /* TODO:
5785 * - Add checks on RIP
5786 * - Add checks on RFLAGS
5787 */
5788
5789 return true;
5790}
5791
Jim Mattson5fa99cb2017-07-06 16:33:07 -07005792static bool page_address_valid(struct kvm_vcpu *vcpu, gpa_t gpa)
5793{
5794 return PAGE_ALIGNED(gpa) && !(gpa >> cpuid_maxphyaddr(vcpu));
5795}
5796
Mike Dayd77c26f2007-10-08 09:02:08 -04005797static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005798{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005799 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02005800 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005801 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005802
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005803 idx = srcu_read_lock(&kvm->srcu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005804 fn = to_kvm_vmx(kvm)->tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02005805 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
5806 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005807 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02005808 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08005809 r = kvm_write_guest_page(kvm, fn++, &data,
5810 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02005811 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005812 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02005813 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
5814 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005815 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02005816 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
5817 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005818 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02005819 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005820 r = kvm_write_guest_page(kvm, fn, &data,
5821 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
5822 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005823out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005824 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005825 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005826}
5827
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005828static int init_rmode_identity_map(struct kvm *kvm)
5829{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005830 struct kvm_vmx *kvm_vmx = to_kvm_vmx(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08005831 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08005832 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005833 u32 tmp;
5834
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005835 /* Protect kvm_vmx->ept_identity_pagetable_done. */
Tang Chena255d472014-09-16 18:41:58 +08005836 mutex_lock(&kvm->slots_lock);
5837
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005838 if (likely(kvm_vmx->ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08005839 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08005840
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005841 if (!kvm_vmx->ept_identity_map_addr)
5842 kvm_vmx->ept_identity_map_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
5843 identity_map_pfn = kvm_vmx->ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08005844
David Hildenbrandd8a6e362017-08-24 20:51:34 +02005845 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005846 kvm_vmx->ept_identity_map_addr, PAGE_SIZE);
Tang Chenf51770e2014-09-16 18:41:59 +08005847 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08005848 goto out2;
5849
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005850 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005851 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
5852 if (r < 0)
5853 goto out;
5854 /* Set up identity-mapping pagetable for EPT in real mode */
5855 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
5856 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
5857 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
5858 r = kvm_write_guest_page(kvm, identity_map_pfn,
5859 &tmp, i * sizeof(tmp), sizeof(tmp));
5860 if (r < 0)
5861 goto out;
5862 }
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005863 kvm_vmx->ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08005864
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005865out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005866 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08005867
5868out2:
5869 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08005870 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005871}
5872
Avi Kivity6aa8b732006-12-10 02:21:36 -08005873static void seg_setup(int seg)
5874{
Mathias Krause772e0312012-08-30 01:30:19 +02005875 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005876 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005877
5878 vmcs_write16(sf->selector, 0);
5879 vmcs_writel(sf->base, 0);
5880 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02005881 ar = 0x93;
5882 if (seg == VCPU_SREG_CS)
5883 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005884
5885 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005886}
5887
Sheng Yangf78e0e22007-10-29 09:40:42 +08005888static int alloc_apic_access_page(struct kvm *kvm)
5889{
Xiao Guangrong44841412012-09-07 14:14:20 +08005890 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08005891 int r = 0;
5892
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005893 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08005894 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005895 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005896 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
5897 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08005898 if (r)
5899 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02005900
Tang Chen73a6d942014-09-11 13:38:00 +08005901 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08005902 if (is_error_page(page)) {
5903 r = -EFAULT;
5904 goto out;
5905 }
5906
Tang Chenc24ae0d2014-09-24 15:57:58 +08005907 /*
5908 * Do not pin the page in memory, so that memory hot-unplug
5909 * is able to migrate it.
5910 */
5911 put_page(page);
5912 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08005913out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005914 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08005915 return r;
5916}
5917
Wanpeng Li991e7a02015-09-16 17:30:05 +08005918static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08005919{
5920 int vpid;
5921
Avi Kivity919818a2009-03-23 18:01:29 +02005922 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08005923 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08005924 spin_lock(&vmx_vpid_lock);
5925 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08005926 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08005927 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08005928 else
5929 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08005930 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08005931 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08005932}
5933
Wanpeng Li991e7a02015-09-16 17:30:05 +08005934static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08005935{
Wanpeng Li991e7a02015-09-16 17:30:05 +08005936 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08005937 return;
5938 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08005939 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08005940 spin_unlock(&vmx_vpid_lock);
5941}
5942
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005943static void __always_inline vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
5944 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08005945{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005946 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08005947
5948 if (!cpu_has_vmx_msr_bitmap())
5949 return;
5950
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02005951 if (static_branch_unlikely(&enable_evmcs))
5952 evmcs_touch_msr_bitmap();
5953
Sheng Yang25c5f222008-03-28 13:18:56 +08005954 /*
5955 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
5956 * have the write-low and read-high bitmap offsets the wrong way round.
5957 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
5958 */
Sheng Yang25c5f222008-03-28 13:18:56 +08005959 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08005960 if (type & MSR_TYPE_R)
5961 /* read-low */
5962 __clear_bit(msr, msr_bitmap + 0x000 / f);
5963
5964 if (type & MSR_TYPE_W)
5965 /* write-low */
5966 __clear_bit(msr, msr_bitmap + 0x800 / f);
5967
Sheng Yang25c5f222008-03-28 13:18:56 +08005968 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
5969 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08005970 if (type & MSR_TYPE_R)
5971 /* read-high */
5972 __clear_bit(msr, msr_bitmap + 0x400 / f);
5973
5974 if (type & MSR_TYPE_W)
5975 /* write-high */
5976 __clear_bit(msr, msr_bitmap + 0xc00 / f);
5977
5978 }
5979}
5980
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005981static void __always_inline vmx_enable_intercept_for_msr(unsigned long *msr_bitmap,
5982 u32 msr, int type)
5983{
5984 int f = sizeof(unsigned long);
5985
5986 if (!cpu_has_vmx_msr_bitmap())
5987 return;
5988
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02005989 if (static_branch_unlikely(&enable_evmcs))
5990 evmcs_touch_msr_bitmap();
5991
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005992 /*
5993 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
5994 * have the write-low and read-high bitmap offsets the wrong way round.
5995 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
5996 */
5997 if (msr <= 0x1fff) {
5998 if (type & MSR_TYPE_R)
5999 /* read-low */
6000 __set_bit(msr, msr_bitmap + 0x000 / f);
6001
6002 if (type & MSR_TYPE_W)
6003 /* write-low */
6004 __set_bit(msr, msr_bitmap + 0x800 / f);
6005
6006 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
6007 msr &= 0x1fff;
6008 if (type & MSR_TYPE_R)
6009 /* read-high */
6010 __set_bit(msr, msr_bitmap + 0x400 / f);
6011
6012 if (type & MSR_TYPE_W)
6013 /* write-high */
6014 __set_bit(msr, msr_bitmap + 0xc00 / f);
6015
6016 }
6017}
6018
6019static void __always_inline vmx_set_intercept_for_msr(unsigned long *msr_bitmap,
6020 u32 msr, int type, bool value)
6021{
6022 if (value)
6023 vmx_enable_intercept_for_msr(msr_bitmap, msr, type);
6024 else
6025 vmx_disable_intercept_for_msr(msr_bitmap, msr, type);
6026}
6027
Wincy Vanf2b93282015-02-03 23:56:03 +08006028/*
6029 * If a msr is allowed by L0, we should check whether it is allowed by L1.
6030 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
6031 */
6032static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
6033 unsigned long *msr_bitmap_nested,
6034 u32 msr, int type)
6035{
6036 int f = sizeof(unsigned long);
6037
Wincy Vanf2b93282015-02-03 23:56:03 +08006038 /*
6039 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
6040 * have the write-low and read-high bitmap offsets the wrong way round.
6041 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
6042 */
6043 if (msr <= 0x1fff) {
6044 if (type & MSR_TYPE_R &&
6045 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
6046 /* read-low */
6047 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
6048
6049 if (type & MSR_TYPE_W &&
6050 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
6051 /* write-low */
6052 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
6053
6054 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
6055 msr &= 0x1fff;
6056 if (type & MSR_TYPE_R &&
6057 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
6058 /* read-high */
6059 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
6060
6061 if (type & MSR_TYPE_W &&
6062 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
6063 /* write-high */
6064 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
6065
6066 }
6067}
6068
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006069static u8 vmx_msr_bitmap_mode(struct kvm_vcpu *vcpu)
Avi Kivity58972972009-02-24 22:26:47 +02006070{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006071 u8 mode = 0;
6072
6073 if (cpu_has_secondary_exec_ctrls() &&
6074 (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) &
6075 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
6076 mode |= MSR_BITMAP_MODE_X2APIC;
6077 if (enable_apicv && kvm_vcpu_apicv_active(vcpu))
6078 mode |= MSR_BITMAP_MODE_X2APIC_APICV;
6079 }
6080
6081 if (is_long_mode(vcpu))
6082 mode |= MSR_BITMAP_MODE_LM;
6083
6084 return mode;
Yang Zhang8d146952013-01-25 10:18:50 +08006085}
6086
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006087#define X2APIC_MSR(r) (APIC_BASE_MSR + ((r) >> 4))
6088
6089static void vmx_update_msr_bitmap_x2apic(unsigned long *msr_bitmap,
6090 u8 mode)
Yang Zhang8d146952013-01-25 10:18:50 +08006091{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006092 int msr;
6093
6094 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
6095 unsigned word = msr / BITS_PER_LONG;
6096 msr_bitmap[word] = (mode & MSR_BITMAP_MODE_X2APIC_APICV) ? 0 : ~0;
6097 msr_bitmap[word + (0x800 / sizeof(long))] = ~0;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006098 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006099
6100 if (mode & MSR_BITMAP_MODE_X2APIC) {
6101 /*
6102 * TPR reads and writes can be virtualized even if virtual interrupt
6103 * delivery is not in use.
6104 */
6105 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_TASKPRI), MSR_TYPE_RW);
6106 if (mode & MSR_BITMAP_MODE_X2APIC_APICV) {
6107 vmx_enable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_TMCCT), MSR_TYPE_R);
6108 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_EOI), MSR_TYPE_W);
6109 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_SELF_IPI), MSR_TYPE_W);
6110 }
6111 }
6112}
6113
6114static void vmx_update_msr_bitmap(struct kvm_vcpu *vcpu)
6115{
6116 struct vcpu_vmx *vmx = to_vmx(vcpu);
6117 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
6118 u8 mode = vmx_msr_bitmap_mode(vcpu);
6119 u8 changed = mode ^ vmx->msr_bitmap_mode;
6120
6121 if (!changed)
6122 return;
6123
6124 vmx_set_intercept_for_msr(msr_bitmap, MSR_KERNEL_GS_BASE, MSR_TYPE_RW,
6125 !(mode & MSR_BITMAP_MODE_LM));
6126
6127 if (changed & (MSR_BITMAP_MODE_X2APIC | MSR_BITMAP_MODE_X2APIC_APICV))
6128 vmx_update_msr_bitmap_x2apic(msr_bitmap, mode);
6129
6130 vmx->msr_bitmap_mode = mode;
Avi Kivity58972972009-02-24 22:26:47 +02006131}
6132
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05006133static bool vmx_get_enable_apicv(struct kvm_vcpu *vcpu)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02006134{
Andrey Smetanind62caab2015-11-10 15:36:33 +03006135 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02006136}
6137
David Matlackc9f04402017-08-01 14:00:40 -07006138static void nested_mark_vmcs12_pages_dirty(struct kvm_vcpu *vcpu)
6139{
6140 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6141 gfn_t gfn;
6142
6143 /*
6144 * Don't need to mark the APIC access page dirty; it is never
6145 * written to by the CPU during APIC virtualization.
6146 */
6147
6148 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
6149 gfn = vmcs12->virtual_apic_page_addr >> PAGE_SHIFT;
6150 kvm_vcpu_mark_page_dirty(vcpu, gfn);
6151 }
6152
6153 if (nested_cpu_has_posted_intr(vmcs12)) {
6154 gfn = vmcs12->posted_intr_desc_addr >> PAGE_SHIFT;
6155 kvm_vcpu_mark_page_dirty(vcpu, gfn);
6156 }
6157}
6158
6159
David Hildenbrand6342c502017-01-25 11:58:58 +01006160static void vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
Wincy Van705699a2015-02-03 23:58:17 +08006161{
6162 struct vcpu_vmx *vmx = to_vmx(vcpu);
6163 int max_irr;
6164 void *vapic_page;
6165 u16 status;
6166
David Matlackc9f04402017-08-01 14:00:40 -07006167 if (!vmx->nested.pi_desc || !vmx->nested.pi_pending)
6168 return;
Wincy Van705699a2015-02-03 23:58:17 +08006169
David Matlackc9f04402017-08-01 14:00:40 -07006170 vmx->nested.pi_pending = false;
6171 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
6172 return;
Wincy Van705699a2015-02-03 23:58:17 +08006173
David Matlackc9f04402017-08-01 14:00:40 -07006174 max_irr = find_last_bit((unsigned long *)vmx->nested.pi_desc->pir, 256);
6175 if (max_irr != 256) {
Wincy Van705699a2015-02-03 23:58:17 +08006176 vapic_page = kmap(vmx->nested.virtual_apic_page);
Liran Alone7387b02017-12-24 18:12:54 +02006177 __kvm_apic_update_irr(vmx->nested.pi_desc->pir,
6178 vapic_page, &max_irr);
Wincy Van705699a2015-02-03 23:58:17 +08006179 kunmap(vmx->nested.virtual_apic_page);
6180
6181 status = vmcs_read16(GUEST_INTR_STATUS);
6182 if ((u8)max_irr > ((u8)status & 0xff)) {
6183 status &= ~0xff;
6184 status |= (u8)max_irr;
6185 vmcs_write16(GUEST_INTR_STATUS, status);
6186 }
6187 }
David Matlackc9f04402017-08-01 14:00:40 -07006188
6189 nested_mark_vmcs12_pages_dirty(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08006190}
6191
Wincy Van06a55242017-04-28 13:13:59 +08006192static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
6193 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01006194{
6195#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08006196 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
6197
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01006198 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08006199 /*
Haozhong Zhang5753743f2017-09-18 09:56:50 +08006200 * The vector of interrupt to be delivered to vcpu had
6201 * been set in PIR before this function.
Feng Wu28b835d2015-09-18 22:29:54 +08006202 *
Haozhong Zhang5753743f2017-09-18 09:56:50 +08006203 * Following cases will be reached in this block, and
6204 * we always send a notification event in all cases as
6205 * explained below.
6206 *
6207 * Case 1: vcpu keeps in non-root mode. Sending a
6208 * notification event posts the interrupt to vcpu.
6209 *
6210 * Case 2: vcpu exits to root mode and is still
6211 * runnable. PIR will be synced to vIRR before the
6212 * next vcpu entry. Sending a notification event in
6213 * this case has no effect, as vcpu is not in root
6214 * mode.
6215 *
6216 * Case 3: vcpu exits to root mode and is blocked.
6217 * vcpu_block() has already synced PIR to vIRR and
6218 * never blocks vcpu if vIRR is not cleared. Therefore,
6219 * a blocked vcpu here does not wait for any requested
6220 * interrupts in PIR, and sending a notification event
6221 * which has no effect is safe here.
Feng Wu28b835d2015-09-18 22:29:54 +08006222 */
Feng Wu28b835d2015-09-18 22:29:54 +08006223
Wincy Van06a55242017-04-28 13:13:59 +08006224 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01006225 return true;
6226 }
6227#endif
6228 return false;
6229}
6230
Wincy Van705699a2015-02-03 23:58:17 +08006231static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
6232 int vector)
6233{
6234 struct vcpu_vmx *vmx = to_vmx(vcpu);
6235
6236 if (is_guest_mode(vcpu) &&
6237 vector == vmx->nested.posted_intr_nv) {
Wincy Van705699a2015-02-03 23:58:17 +08006238 /*
6239 * If a posted intr is not recognized by hardware,
6240 * we will accomplish it in the next vmentry.
6241 */
6242 vmx->nested.pi_pending = true;
6243 kvm_make_request(KVM_REQ_EVENT, vcpu);
Liran Alon6b697712017-11-09 20:27:20 +02006244 /* the PIR and ON have been set by L1. */
6245 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, true))
6246 kvm_vcpu_kick(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08006247 return 0;
6248 }
6249 return -1;
6250}
Avi Kivity6aa8b732006-12-10 02:21:36 -08006251/*
Yang Zhanga20ed542013-04-11 19:25:15 +08006252 * Send interrupt to vcpu via posted interrupt way.
6253 * 1. If target vcpu is running(non-root mode), send posted interrupt
6254 * notification to vcpu and hardware will sync PIR to vIRR atomically.
6255 * 2. If target vcpu isn't running(root mode), kick it to pick up the
6256 * interrupt from PIR in next vmentry.
6257 */
6258static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
6259{
6260 struct vcpu_vmx *vmx = to_vmx(vcpu);
6261 int r;
6262
Wincy Van705699a2015-02-03 23:58:17 +08006263 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
6264 if (!r)
6265 return;
6266
Yang Zhanga20ed542013-04-11 19:25:15 +08006267 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
6268 return;
6269
Paolo Bonzinib95234c2016-12-19 13:57:33 +01006270 /* If a previous notification has sent the IPI, nothing to do. */
6271 if (pi_test_and_set_on(&vmx->pi_desc))
6272 return;
6273
Wincy Van06a55242017-04-28 13:13:59 +08006274 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08006275 kvm_vcpu_kick(vcpu);
6276}
6277
Avi Kivity6aa8b732006-12-10 02:21:36 -08006278/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006279 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
6280 * will not change in the lifetime of the guest.
6281 * Note that host-state that does change is set elsewhere. E.g., host-state
6282 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
6283 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08006284static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006285{
6286 u32 low32, high32;
6287 unsigned long tmpl;
6288 struct desc_ptr dt;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07006289 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006290
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07006291 cr0 = read_cr0();
6292 WARN_ON(cr0 & X86_CR0_TS);
6293 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07006294
6295 /*
6296 * Save the most likely value for this task's CR3 in the VMCS.
6297 * We can't use __get_current_cr3_fast() because we're not atomic.
6298 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07006299 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07006300 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
Sean Christophersond7ee0392018-07-23 12:32:47 -07006301 vmx->loaded_vmcs->host_state.cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006302
Andy Lutomirskid974baa2014-10-08 09:02:13 -07006303 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07006304 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07006305 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07006306 vmx->loaded_vmcs->host_state.cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07006307
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006308 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03006309#ifdef CONFIG_X86_64
6310 /*
6311 * Load null selectors, so we can avoid reloading them in
Sean Christopherson6d6095b2018-07-23 12:32:44 -07006312 * vmx_prepare_switch_to_host(), in case userspace uses
6313 * the null selectors too (the expected case).
Avi Kivityb2da15a2012-05-13 19:53:24 +03006314 */
6315 vmcs_write16(HOST_DS_SELECTOR, 0);
6316 vmcs_write16(HOST_ES_SELECTOR, 0);
6317#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006318 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
6319 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03006320#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006321 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
6322 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
6323
Juergen Gross87930012017-09-04 12:25:27 +02006324 store_idt(&dt);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006325 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08006326 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006327
Avi Kivity83287ea422012-09-16 15:10:57 +03006328 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006329
6330 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
6331 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
6332 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
6333 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
6334
6335 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
6336 rdmsr(MSR_IA32_CR_PAT, low32, high32);
6337 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
6338 }
6339}
6340
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006341static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
6342{
6343 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
6344 if (enable_ept)
6345 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03006346 if (is_guest_mode(&vmx->vcpu))
6347 vmx->vcpu.arch.cr4_guest_owned_bits &=
6348 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006349 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
6350}
6351
Yang Zhang01e439b2013-04-11 19:25:12 +08006352static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
6353{
6354 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
6355
Andrey Smetanind62caab2015-11-10 15:36:33 +03006356 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08006357 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006358
6359 if (!enable_vnmi)
6360 pin_based_exec_ctrl &= ~PIN_BASED_VIRTUAL_NMIS;
6361
Yunhong Jiang64672c92016-06-13 14:19:59 -07006362 /* Enable the preemption timer dynamically */
6363 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08006364 return pin_based_exec_ctrl;
6365}
6366
Andrey Smetanind62caab2015-11-10 15:36:33 +03006367static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
6368{
6369 struct vcpu_vmx *vmx = to_vmx(vcpu);
6370
6371 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03006372 if (cpu_has_secondary_exec_ctrls()) {
6373 if (kvm_vcpu_apicv_active(vcpu))
6374 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
6375 SECONDARY_EXEC_APIC_REGISTER_VIRT |
6376 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
6377 else
6378 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
6379 SECONDARY_EXEC_APIC_REGISTER_VIRT |
6380 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
6381 }
6382
6383 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006384 vmx_update_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03006385}
6386
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006387static u32 vmx_exec_control(struct vcpu_vmx *vmx)
6388{
6389 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01006390
6391 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
6392 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
6393
Paolo Bonzini35754c92015-07-29 12:05:37 +02006394 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006395 exec_control &= ~CPU_BASED_TPR_SHADOW;
6396#ifdef CONFIG_X86_64
6397 exec_control |= CPU_BASED_CR8_STORE_EXITING |
6398 CPU_BASED_CR8_LOAD_EXITING;
6399#endif
6400 }
6401 if (!enable_ept)
6402 exec_control |= CPU_BASED_CR3_STORE_EXITING |
6403 CPU_BASED_CR3_LOAD_EXITING |
6404 CPU_BASED_INVLPG_EXITING;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07006405 if (kvm_mwait_in_guest(vmx->vcpu.kvm))
6406 exec_control &= ~(CPU_BASED_MWAIT_EXITING |
6407 CPU_BASED_MONITOR_EXITING);
Wanpeng Licaa057a2018-03-12 04:53:03 -07006408 if (kvm_hlt_in_guest(vmx->vcpu.kvm))
6409 exec_control &= ~CPU_BASED_HLT_EXITING;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006410 return exec_control;
6411}
6412
Jim Mattson45ec3682017-08-23 16:32:04 -07006413static bool vmx_rdrand_supported(void)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006414{
Jim Mattson45ec3682017-08-23 16:32:04 -07006415 return vmcs_config.cpu_based_2nd_exec_ctrl &
David Hildenbrand736fdf72017-08-24 20:51:37 +02006416 SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07006417}
6418
Jim Mattson75f4fc82017-08-23 16:32:03 -07006419static bool vmx_rdseed_supported(void)
6420{
6421 return vmcs_config.cpu_based_2nd_exec_ctrl &
David Hildenbrand736fdf72017-08-24 20:51:37 +02006422 SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07006423}
6424
Paolo Bonzini80154d72017-08-24 13:55:35 +02006425static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006426{
Paolo Bonzini80154d72017-08-24 13:55:35 +02006427 struct kvm_vcpu *vcpu = &vmx->vcpu;
6428
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006429 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini0367f202016-07-12 10:44:55 +02006430
Paolo Bonzini80154d72017-08-24 13:55:35 +02006431 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006432 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
6433 if (vmx->vpid == 0)
6434 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
6435 if (!enable_ept) {
6436 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
6437 enable_unrestricted_guest = 0;
6438 }
6439 if (!enable_unrestricted_guest)
6440 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Wanpeng Lib31c1142018-03-12 04:53:04 -07006441 if (kvm_pause_in_guest(vmx->vcpu.kvm))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006442 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02006443 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08006444 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
6445 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08006446 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Paolo Bonzini0367f202016-07-12 10:44:55 +02006447
6448 /* SECONDARY_EXEC_DESC is enabled/disabled on writes to CR4.UMIP,
6449 * in vmx_set_cr4. */
6450 exec_control &= ~SECONDARY_EXEC_DESC;
6451
Abel Gordonabc4fc52013-04-18 14:35:25 +03006452 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
6453 (handle_vmptrld).
6454 We can NOT enable shadow_vmcs here because we don't have yet
6455 a current VMCS12
6456 */
6457 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08006458
6459 if (!enable_pml)
6460 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08006461
Paolo Bonzini3db13482017-08-24 14:48:03 +02006462 if (vmx_xsaves_supported()) {
6463 /* Exposing XSAVES only when XSAVE is exposed */
6464 bool xsaves_enabled =
6465 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
6466 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
6467
6468 if (!xsaves_enabled)
6469 exec_control &= ~SECONDARY_EXEC_XSAVES;
6470
6471 if (nested) {
6472 if (xsaves_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006473 vmx->nested.msrs.secondary_ctls_high |=
Paolo Bonzini3db13482017-08-24 14:48:03 +02006474 SECONDARY_EXEC_XSAVES;
6475 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006476 vmx->nested.msrs.secondary_ctls_high &=
Paolo Bonzini3db13482017-08-24 14:48:03 +02006477 ~SECONDARY_EXEC_XSAVES;
6478 }
6479 }
6480
Paolo Bonzini80154d72017-08-24 13:55:35 +02006481 if (vmx_rdtscp_supported()) {
6482 bool rdtscp_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP);
6483 if (!rdtscp_enabled)
6484 exec_control &= ~SECONDARY_EXEC_RDTSCP;
6485
6486 if (nested) {
6487 if (rdtscp_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006488 vmx->nested.msrs.secondary_ctls_high |=
Paolo Bonzini80154d72017-08-24 13:55:35 +02006489 SECONDARY_EXEC_RDTSCP;
6490 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006491 vmx->nested.msrs.secondary_ctls_high &=
Paolo Bonzini80154d72017-08-24 13:55:35 +02006492 ~SECONDARY_EXEC_RDTSCP;
6493 }
6494 }
6495
6496 if (vmx_invpcid_supported()) {
6497 /* Exposing INVPCID only when PCID is exposed */
6498 bool invpcid_enabled =
6499 guest_cpuid_has(vcpu, X86_FEATURE_INVPCID) &&
6500 guest_cpuid_has(vcpu, X86_FEATURE_PCID);
6501
6502 if (!invpcid_enabled) {
6503 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
6504 guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID);
6505 }
6506
6507 if (nested) {
6508 if (invpcid_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006509 vmx->nested.msrs.secondary_ctls_high |=
Paolo Bonzini80154d72017-08-24 13:55:35 +02006510 SECONDARY_EXEC_ENABLE_INVPCID;
6511 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006512 vmx->nested.msrs.secondary_ctls_high &=
Paolo Bonzini80154d72017-08-24 13:55:35 +02006513 ~SECONDARY_EXEC_ENABLE_INVPCID;
6514 }
6515 }
6516
Jim Mattson45ec3682017-08-23 16:32:04 -07006517 if (vmx_rdrand_supported()) {
6518 bool rdrand_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDRAND);
6519 if (rdrand_enabled)
David Hildenbrand736fdf72017-08-24 20:51:37 +02006520 exec_control &= ~SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07006521
6522 if (nested) {
6523 if (rdrand_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006524 vmx->nested.msrs.secondary_ctls_high |=
David Hildenbrand736fdf72017-08-24 20:51:37 +02006525 SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07006526 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006527 vmx->nested.msrs.secondary_ctls_high &=
David Hildenbrand736fdf72017-08-24 20:51:37 +02006528 ~SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07006529 }
6530 }
6531
Jim Mattson75f4fc82017-08-23 16:32:03 -07006532 if (vmx_rdseed_supported()) {
6533 bool rdseed_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDSEED);
6534 if (rdseed_enabled)
David Hildenbrand736fdf72017-08-24 20:51:37 +02006535 exec_control &= ~SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07006536
6537 if (nested) {
6538 if (rdseed_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006539 vmx->nested.msrs.secondary_ctls_high |=
David Hildenbrand736fdf72017-08-24 20:51:37 +02006540 SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07006541 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006542 vmx->nested.msrs.secondary_ctls_high &=
David Hildenbrand736fdf72017-08-24 20:51:37 +02006543 ~SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07006544 }
6545 }
6546
Paolo Bonzini80154d72017-08-24 13:55:35 +02006547 vmx->secondary_exec_control = exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006548}
6549
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006550static void ept_set_mmio_spte_mask(void)
6551{
6552 /*
6553 * EPT Misconfigurations can be generated if the value of bits 2:0
6554 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006555 */
Peter Feinerdcdca5f2017-06-30 17:26:30 -07006556 kvm_mmu_set_mmio_spte_mask(VMX_EPT_RWX_MASK,
6557 VMX_EPT_MISCONFIG_WX_VALUE);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006558}
6559
Wanpeng Lif53cd632014-12-02 19:14:58 +08006560#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006561/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08006562 * Sets up the vmcs for emulated real mode.
6563 */
David Hildenbrand12d79912017-08-24 20:51:26 +02006564static void vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006565{
Avi Kivity6aa8b732006-12-10 02:21:36 -08006566 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006567
Abel Gordon4607c2d2013-04-18 14:35:55 +03006568 if (enable_shadow_vmcs) {
Jim Mattsonf4160e42018-05-29 09:11:33 -07006569 /*
6570 * At vCPU creation, "VMWRITE to any supported field
6571 * in the VMCS" is supported, so use the more
6572 * permissive vmx_vmread_bitmap to specify both read
6573 * and write permissions for the shadow VMCS.
6574 */
Abel Gordon4607c2d2013-04-18 14:35:55 +03006575 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
Jim Mattsonf4160e42018-05-29 09:11:33 -07006576 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmread_bitmap));
Abel Gordon4607c2d2013-04-18 14:35:55 +03006577 }
Sheng Yang25c5f222008-03-28 13:18:56 +08006578 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006579 vmcs_write64(MSR_BITMAP, __pa(vmx->vmcs01.msr_bitmap));
Sheng Yang25c5f222008-03-28 13:18:56 +08006580
Avi Kivity6aa8b732006-12-10 02:21:36 -08006581 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
6582
Avi Kivity6aa8b732006-12-10 02:21:36 -08006583 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08006584 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yunhong Jiang64672c92016-06-13 14:19:59 -07006585 vmx->hv_deadline_tsc = -1;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006586
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006587 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08006588
Dan Williamsdfa169b2016-06-02 11:17:24 -07006589 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +02006590 vmx_compute_secondary_exec_control(vmx);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006591 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
Paolo Bonzini80154d72017-08-24 13:55:35 +02006592 vmx->secondary_exec_control);
Dan Williamsdfa169b2016-06-02 11:17:24 -07006593 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08006594
Andrey Smetanind62caab2015-11-10 15:36:33 +03006595 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08006596 vmcs_write64(EOI_EXIT_BITMAP0, 0);
6597 vmcs_write64(EOI_EXIT_BITMAP1, 0);
6598 vmcs_write64(EOI_EXIT_BITMAP2, 0);
6599 vmcs_write64(EOI_EXIT_BITMAP3, 0);
6600
6601 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08006602
Li RongQing0bcf2612015-12-03 13:29:34 +08006603 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08006604 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08006605 }
6606
Wanpeng Lib31c1142018-03-12 04:53:04 -07006607 if (!kvm_pause_in_guest(vmx->vcpu.kvm)) {
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006608 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02006609 vmx->ple_window = ple_window;
6610 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006611 }
6612
Xiao Guangrongc3707952011-07-12 03:28:04 +08006613 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
6614 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006615 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
6616
Avi Kivity9581d442010-10-19 16:46:55 +02006617 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
6618 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08006619 vmx_set_constant_host_state(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006620 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
6621 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08006622
Bandan Das2a499e42017-08-03 15:54:41 -04006623 if (cpu_has_vmx_vmfunc())
6624 vmcs_write64(VM_FUNCTION_CONTROL, 0);
6625
Eddie Dong2cc51562007-05-21 07:28:09 +03006626 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
6627 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04006628 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host.val));
Eddie Dong2cc51562007-05-21 07:28:09 +03006629 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04006630 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest.val));
Avi Kivity6aa8b732006-12-10 02:21:36 -08006631
Radim Krčmář74545702015-04-27 15:11:25 +02006632 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
6633 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08006634
Paolo Bonzini03916db2014-07-24 14:21:57 +02006635 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08006636 u32 index = vmx_msr_index[i];
6637 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006638 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006639
6640 if (rdmsr_safe(index, &data_low, &data_high) < 0)
6641 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08006642 if (wrmsr_safe(index, data_low, data_high) < 0)
6643 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03006644 vmx->guest_msrs[j].index = i;
6645 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02006646 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006647 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006648 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006649
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02006650 vmx->arch_capabilities = kvm_get_arch_capabilities();
Gleb Natapov2961e8762013-11-25 15:37:13 +02006651
6652 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006653
6654 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02006655 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03006656
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006657 vmx->vcpu.arch.cr0_guest_owned_bits = X86_CR0_TS;
6658 vmcs_writel(CR0_GUEST_HOST_MASK, ~X86_CR0_TS);
6659
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006660 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006661
Wanpeng Lif53cd632014-12-02 19:14:58 +08006662 if (vmx_xsaves_supported())
6663 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
6664
Peter Feiner4e595162016-07-07 14:49:58 -07006665 if (enable_pml) {
6666 ASSERT(vmx->pml_pg);
6667 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
6668 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
6669 }
Sean Christopherson0b665d32018-08-14 09:33:34 -07006670
6671 if (cpu_has_vmx_encls_vmexit())
6672 vmcs_write64(ENCLS_EXITING_BITMAP, -1ull);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006673}
6674
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006675static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006676{
6677 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01006678 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006679 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006680
Avi Kivity7ffd92c2009-06-09 14:10:45 +03006681 vmx->rmode.vm86_active = 0;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006682 vmx->spec_ctrl = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006683
Wanpeng Li518e7b92018-02-28 14:03:31 +08006684 vcpu->arch.microcode_version = 0x100000000ULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006685 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006686 kvm_set_cr8(vcpu, 0);
6687
6688 if (!init_event) {
6689 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
6690 MSR_IA32_APICBASE_ENABLE;
6691 if (kvm_vcpu_is_reset_bsp(vcpu))
6692 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
6693 apic_base_msr.host_initiated = true;
6694 kvm_set_apic_base(vcpu, &apic_base_msr);
6695 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006696
Avi Kivity2fb92db2011-04-27 19:42:18 +03006697 vmx_segment_cache_clear(vmx);
6698
Avi Kivity5706be02008-08-20 15:07:31 +03006699 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01006700 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01006701 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006702
6703 seg_setup(VCPU_SREG_DS);
6704 seg_setup(VCPU_SREG_ES);
6705 seg_setup(VCPU_SREG_FS);
6706 seg_setup(VCPU_SREG_GS);
6707 seg_setup(VCPU_SREG_SS);
6708
6709 vmcs_write16(GUEST_TR_SELECTOR, 0);
6710 vmcs_writel(GUEST_TR_BASE, 0);
6711 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
6712 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
6713
6714 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
6715 vmcs_writel(GUEST_LDTR_BASE, 0);
6716 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
6717 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
6718
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006719 if (!init_event) {
6720 vmcs_write32(GUEST_SYSENTER_CS, 0);
6721 vmcs_writel(GUEST_SYSENTER_ESP, 0);
6722 vmcs_writel(GUEST_SYSENTER_EIP, 0);
6723 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
6724 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006725
Wanpeng Lic37c2872017-11-20 14:52:21 -08006726 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
Jan Kiszka66450a22013-03-13 12:42:34 +01006727 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006728
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006729 vmcs_writel(GUEST_GDTR_BASE, 0);
6730 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
6731
6732 vmcs_writel(GUEST_IDTR_BASE, 0);
6733 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
6734
Anthony Liguori443381a2010-12-06 10:53:38 -06006735 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006736 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01006737 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Wanpeng Lia554d202017-10-11 05:10:19 -07006738 if (kvm_mpx_supported())
6739 vmcs_write64(GUEST_BNDCFGS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006740
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006741 setup_msrs(vmx);
6742
Avi Kivity6aa8b732006-12-10 02:21:36 -08006743 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
6744
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006745 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08006746 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02006747 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08006748 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006749 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08006750 vmcs_write32(TPR_THRESHOLD, 0);
6751 }
6752
Paolo Bonzinia73896c2014-11-02 07:54:30 +01006753 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006754
Sheng Yang2384d2b2008-01-17 15:14:33 +08006755 if (vmx->vpid != 0)
6756 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
6757
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006758 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006759 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06006760 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006761 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02006762 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006763
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006764 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006765
Wanpeng Lidd5f5342015-09-23 18:26:57 +08006766 vpid_sync_context(vmx->vpid);
Wanpeng Licaa057a2018-03-12 04:53:03 -07006767 if (init_event)
6768 vmx_clear_hlt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006769}
6770
Nadav Har'Elb6f12502011-05-25 23:13:06 +03006771/*
6772 * In nested virtualization, check if L1 asked to exit on external interrupts.
6773 * For most existing hypervisors, this will always return true.
6774 */
6775static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
6776{
6777 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
6778 PIN_BASED_EXT_INTR_MASK;
6779}
6780
Bandan Das77b0f5d2014-04-19 18:17:45 -04006781/*
6782 * In nested virtualization, check if L1 has set
6783 * VM_EXIT_ACK_INTR_ON_EXIT
6784 */
6785static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
6786{
6787 return get_vmcs12(vcpu)->vm_exit_controls &
6788 VM_EXIT_ACK_INTR_ON_EXIT;
6789}
6790
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02006791static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
6792{
Krish Sadhukhan0c7f6502018-02-20 21:24:39 -05006793 return nested_cpu_has_nmi_exiting(get_vmcs12(vcpu));
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02006794}
6795
Jan Kiszkac9a79532014-03-07 20:03:15 +01006796static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006797{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006798 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
6799 CPU_BASED_VIRTUAL_INTR_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006800}
6801
Jan Kiszkac9a79532014-03-07 20:03:15 +01006802static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006803{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006804 if (!enable_vnmi ||
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006805 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jan Kiszkac9a79532014-03-07 20:03:15 +01006806 enable_irq_window(vcpu);
6807 return;
6808 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02006809
Paolo Bonzini47c01522016-12-19 11:44:07 +01006810 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
6811 CPU_BASED_VIRTUAL_NMI_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006812}
6813
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006814static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03006815{
Avi Kivity9c8cba32007-11-22 11:42:59 +02006816 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006817 uint32_t intr;
6818 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02006819
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006820 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006821
Avi Kivityfa89a812008-09-01 15:57:51 +03006822 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03006823 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05006824 int inc_eip = 0;
6825 if (vcpu->arch.interrupt.soft)
6826 inc_eip = vcpu->arch.event_exit_inst_len;
6827 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02006828 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03006829 return;
6830 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006831 intr = irq | INTR_INFO_VALID_MASK;
6832 if (vcpu->arch.interrupt.soft) {
6833 intr |= INTR_TYPE_SOFT_INTR;
6834 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
6835 vmx->vcpu.arch.event_exit_inst_len);
6836 } else
6837 intr |= INTR_TYPE_EXT_INTR;
6838 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Wanpeng Licaa057a2018-03-12 04:53:03 -07006839
6840 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03006841}
6842
Sheng Yangf08864b2008-05-15 18:23:25 +08006843static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
6844{
Jan Kiszka66a5a342008-09-26 09:30:51 +02006845 struct vcpu_vmx *vmx = to_vmx(vcpu);
6846
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006847 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006848 /*
6849 * Tracking the NMI-blocked state in software is built upon
6850 * finding the next open IRQ window. This, in turn, depends on
6851 * well-behaving guests: They have to keep IRQs disabled at
6852 * least as long as the NMI handler runs. Otherwise we may
6853 * cause NMI nesting, maybe breaking the guest. But as this is
6854 * highly unlikely, we can live with the residual risk.
6855 */
6856 vmx->loaded_vmcs->soft_vnmi_blocked = 1;
6857 vmx->loaded_vmcs->vnmi_blocked_time = 0;
6858 }
6859
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02006860 ++vcpu->stat.nmi_injections;
6861 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006862
Avi Kivity7ffd92c2009-06-09 14:10:45 +03006863 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05006864 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02006865 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02006866 return;
6867 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08006868
Sheng Yangf08864b2008-05-15 18:23:25 +08006869 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
6870 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Wanpeng Licaa057a2018-03-12 04:53:03 -07006871
6872 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006873}
6874
Jan Kiszka3cfc3092009-11-12 01:04:25 +01006875static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
6876{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02006877 struct vcpu_vmx *vmx = to_vmx(vcpu);
6878 bool masked;
6879
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006880 if (!enable_vnmi)
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006881 return vmx->loaded_vmcs->soft_vnmi_blocked;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02006882 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02006883 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02006884 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
6885 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
6886 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01006887}
6888
6889static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
6890{
6891 struct vcpu_vmx *vmx = to_vmx(vcpu);
6892
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006893 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006894 if (vmx->loaded_vmcs->soft_vnmi_blocked != masked) {
6895 vmx->loaded_vmcs->soft_vnmi_blocked = masked;
6896 vmx->loaded_vmcs->vnmi_blocked_time = 0;
6897 }
6898 } else {
6899 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
6900 if (masked)
6901 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
6902 GUEST_INTR_STATE_NMI);
6903 else
6904 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
6905 GUEST_INTR_STATE_NMI);
6906 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01006907}
6908
Jan Kiszka2505dc92013-04-14 12:12:47 +02006909static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
6910{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006911 if (to_vmx(vcpu)->nested.nested_run_pending)
6912 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02006913
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006914 if (!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006915 to_vmx(vcpu)->loaded_vmcs->soft_vnmi_blocked)
6916 return 0;
6917
Jan Kiszka2505dc92013-04-14 12:12:47 +02006918 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
6919 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
6920 | GUEST_INTR_STATE_NMI));
6921}
6922
Gleb Natapov78646122009-03-23 12:12:11 +02006923static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
6924{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006925 return (!to_vmx(vcpu)->nested.nested_run_pending &&
6926 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03006927 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
6928 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02006929}
6930
Izik Eiduscbc94022007-10-25 00:29:55 +02006931static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
6932{
6933 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02006934
Sean Christophersonf7eaeb02018-03-05 12:04:36 -08006935 if (enable_unrestricted_guest)
6936 return 0;
6937
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02006938 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
6939 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02006940 if (ret)
6941 return ret;
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07006942 to_kvm_vmx(kvm)->tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02006943 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02006944}
6945
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07006946static int vmx_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
6947{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07006948 to_kvm_vmx(kvm)->ept_identity_map_addr = ident_addr;
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07006949 return 0;
6950}
6951
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006952static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006953{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02006954 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02006955 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01006956 /*
6957 * Update instruction length as we may reinject the exception
6958 * from user space while in guest debugging mode.
6959 */
6960 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
6961 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006962 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006963 return false;
6964 /* fall through */
6965 case DB_VECTOR:
6966 if (vcpu->guest_debug &
6967 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
6968 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006969 /* fall through */
6970 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02006971 case OF_VECTOR:
6972 case BR_VECTOR:
6973 case UD_VECTOR:
6974 case DF_VECTOR:
6975 case SS_VECTOR:
6976 case GP_VECTOR:
6977 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006978 return true;
6979 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02006980 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006981 return false;
6982}
6983
6984static int handle_rmode_exception(struct kvm_vcpu *vcpu,
6985 int vec, u32 err_code)
6986{
6987 /*
6988 * Instruction with address size override prefix opcode 0x67
6989 * Cause the #SS fault with 0 error code in VM86 mode.
6990 */
6991 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
Sean Christopherson0ce97a22018-08-23 13:56:52 -07006992 if (kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE) {
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006993 if (vcpu->arch.halt_request) {
6994 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006995 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006996 }
6997 return 1;
6998 }
6999 return 0;
7000 }
7001
7002 /*
7003 * Forward all other exceptions that are valid in real mode.
7004 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
7005 * the required debugging infrastructure rework.
7006 */
7007 kvm_queue_exception(vcpu, vec);
7008 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007009}
7010
Andi Kleena0861c02009-06-08 17:37:09 +08007011/*
7012 * Trigger machine check on the host. We assume all the MSRs are already set up
7013 * by the CPU and that we still run on the same CPU as the MCE occurred on.
7014 * We pass a fake environment to the machine check handler because we want
7015 * the guest to be always treated like user space, no matter what context
7016 * it used internally.
7017 */
7018static void kvm_machine_check(void)
7019{
7020#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
7021 struct pt_regs regs = {
7022 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
7023 .flags = X86_EFLAGS_IF,
7024 };
7025
7026 do_machine_check(&regs, 0);
7027#endif
7028}
7029
Avi Kivity851ba692009-08-24 11:10:17 +03007030static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08007031{
7032 /* already handled by vcpu_run */
7033 return 1;
7034}
7035
Avi Kivity851ba692009-08-24 11:10:17 +03007036static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007037{
Avi Kivity1155f762007-11-22 11:30:47 +02007038 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03007039 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007040 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007041 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007042 u32 vect_info;
7043 enum emulation_result er;
7044
Avi Kivity1155f762007-11-22 11:30:47 +02007045 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02007046 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007047
Andi Kleena0861c02009-06-08 17:37:09 +08007048 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03007049 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08007050
Jim Mattsonef85b672016-12-12 11:01:37 -08007051 if (is_nmi(intr_info))
Avi Kivity1b6269d2007-10-09 12:12:19 +02007052 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03007053
Wanpeng Li082d06e2018-04-03 16:28:48 -07007054 if (is_invalid_opcode(intr_info))
7055 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05007056
Avi Kivity6aa8b732006-12-10 02:21:36 -08007057 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06007058 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007059 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08007060
Liran Alon9e869482018-03-12 13:12:51 +02007061 if (!vmx->rmode.vm86_active && is_gp_fault(intr_info)) {
7062 WARN_ON_ONCE(!enable_vmware_backdoor);
Sean Christopherson0ce97a22018-08-23 13:56:52 -07007063 er = kvm_emulate_instruction(vcpu,
Liran Alon9e869482018-03-12 13:12:51 +02007064 EMULTYPE_VMWARE | EMULTYPE_NO_UD_ON_FAIL);
7065 if (er == EMULATE_USER_EXIT)
7066 return 0;
7067 else if (er != EMULATE_DONE)
7068 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
7069 return 1;
7070 }
7071
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08007072 /*
7073 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
7074 * MMIO, it is better to report an internal error.
7075 * See the comments in vmx_handle_exit.
7076 */
7077 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
7078 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
7079 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7080 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02007081 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08007082 vcpu->run->internal.data[0] = vect_info;
7083 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02007084 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08007085 return 0;
7086 }
7087
Avi Kivity6aa8b732006-12-10 02:21:36 -08007088 if (is_page_fault(intr_info)) {
7089 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07007090 /* EPT won't cause page fault directly */
7091 WARN_ON_ONCE(!vcpu->arch.apf.host_apf_reason && enable_ept);
Paolo Bonzinid0006532017-08-11 18:36:43 +02007092 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007093 }
7094
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007095 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02007096
7097 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
7098 return handle_rmode_exception(vcpu, ex_no, error_code);
7099
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007100 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01007101 case AC_VECTOR:
7102 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
7103 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007104 case DB_VECTOR:
7105 dr6 = vmcs_readl(EXIT_QUALIFICATION);
7106 if (!(vcpu->guest_debug &
7107 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01007108 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03007109 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Linus Torvalds32d43cd2018-03-20 12:16:59 -07007110 if (is_icebp(intr_info))
Huw Daviesfd2a4452014-04-16 10:02:51 +01007111 skip_emulated_instruction(vcpu);
7112
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007113 kvm_queue_exception(vcpu, DB_VECTOR);
7114 return 1;
7115 }
7116 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
7117 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
7118 /* fall through */
7119 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01007120 /*
7121 * Update instruction length as we may reinject #BP from
7122 * user space while in guest debugging mode. Reading it for
7123 * #DB as well causes no harm, it is not used in that case.
7124 */
7125 vmx->vcpu.arch.event_exit_inst_len =
7126 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007127 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03007128 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007129 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
7130 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007131 break;
7132 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007133 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
7134 kvm_run->ex.exception = ex_no;
7135 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007136 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007137 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08007138 return 0;
7139}
7140
Avi Kivity851ba692009-08-24 11:10:17 +03007141static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007142{
Avi Kivity1165f5f2007-04-19 17:27:43 +03007143 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007144 return 1;
7145}
7146
Avi Kivity851ba692009-08-24 11:10:17 +03007147static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08007148{
Avi Kivity851ba692009-08-24 11:10:17 +03007149 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07007150 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08007151 return 0;
7152}
Avi Kivity6aa8b732006-12-10 02:21:36 -08007153
Avi Kivity851ba692009-08-24 11:10:17 +03007154static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007155{
He, Qingbfdaab02007-09-12 14:18:28 +08007156 unsigned long exit_qualification;
Sean Christophersondca7f122018-03-08 08:57:27 -08007157 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02007158 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007159
He, Qingbfdaab02007-09-12 14:18:28 +08007160 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02007161 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03007162
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007163 ++vcpu->stat.io_exits;
7164
Sean Christopherson432baf62018-03-08 08:57:26 -08007165 if (string)
Sean Christopherson0ce97a22018-08-23 13:56:52 -07007166 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007167
7168 port = exit_qualification >> 16;
7169 size = (exit_qualification & 7) + 1;
Sean Christopherson432baf62018-03-08 08:57:26 -08007170 in = (exit_qualification & 8) != 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007171
Sean Christophersondca7f122018-03-08 08:57:27 -08007172 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007173}
7174
Ingo Molnar102d8322007-02-19 14:37:47 +02007175static void
7176vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
7177{
7178 /*
7179 * Patch in the VMCALL instruction:
7180 */
7181 hypercall[0] = 0x0f;
7182 hypercall[1] = 0x01;
7183 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02007184}
7185
Guo Chao0fa06072012-06-28 15:16:19 +08007186/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007187static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
7188{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007189 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007190 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7191 unsigned long orig_val = val;
7192
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007193 /*
7194 * We get here when L2 changed cr0 in a way that did not change
7195 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007196 * but did change L0 shadowed bits. So we first calculate the
7197 * effective cr0 value that L1 would like to write into the
7198 * hardware. It consists of the L2-owned bits from the new
7199 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007200 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007201 val = (val & ~vmcs12->cr0_guest_host_mask) |
7202 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
7203
David Matlack38991522016-11-29 18:14:08 -08007204 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007205 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007206
7207 if (kvm_set_cr0(vcpu, val))
7208 return 1;
7209 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007210 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007211 } else {
7212 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08007213 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007214 return 1;
David Matlack38991522016-11-29 18:14:08 -08007215
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007216 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007217 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007218}
7219
7220static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
7221{
7222 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007223 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7224 unsigned long orig_val = val;
7225
7226 /* analogously to handle_set_cr0 */
7227 val = (val & ~vmcs12->cr4_guest_host_mask) |
7228 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
7229 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007230 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007231 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007232 return 0;
7233 } else
7234 return kvm_set_cr4(vcpu, val);
7235}
7236
Paolo Bonzini0367f202016-07-12 10:44:55 +02007237static int handle_desc(struct kvm_vcpu *vcpu)
7238{
7239 WARN_ON(!(vcpu->arch.cr4 & X86_CR4_UMIP));
Sean Christopherson0ce97a22018-08-23 13:56:52 -07007240 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Paolo Bonzini0367f202016-07-12 10:44:55 +02007241}
7242
Avi Kivity851ba692009-08-24 11:10:17 +03007243static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007244{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007245 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007246 int cr;
7247 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03007248 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08007249 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007250
He, Qingbfdaab02007-09-12 14:18:28 +08007251 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007252 cr = exit_qualification & 15;
7253 reg = (exit_qualification >> 8) & 15;
7254 switch ((exit_qualification >> 4) & 3) {
7255 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03007256 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007257 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007258 switch (cr) {
7259 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007260 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007261 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007262 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08007263 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity23902182010-06-10 17:02:16 +03007264 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007265 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007266 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007267 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007268 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03007269 case 8: {
7270 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03007271 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01007272 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007273 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02007274 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08007275 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03007276 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08007277 return ret;
7278 /*
7279 * TODO: we might be squashing a
7280 * KVM_GUESTDBG_SINGLESTEP-triggered
7281 * KVM_EXIT_DEBUG here.
7282 */
Avi Kivity851ba692009-08-24 11:10:17 +03007283 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03007284 return 0;
7285 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02007286 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08007287 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03007288 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08007289 WARN_ONCE(1, "Guest should always own CR0.TS");
7290 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02007291 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08007292 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007293 case 1: /*mov from cr*/
7294 switch (cr) {
7295 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08007296 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity9f8fe502010-12-05 17:30:00 +02007297 val = kvm_read_cr3(vcpu);
7298 kvm_register_write(vcpu, reg, val);
7299 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007300 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007301 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007302 val = kvm_get_cr8(vcpu);
7303 kvm_register_write(vcpu, reg, val);
7304 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007305 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007306 }
7307 break;
7308 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02007309 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02007310 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02007311 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007312
Kyle Huey6affcbe2016-11-29 12:40:40 -08007313 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007314 default:
7315 break;
7316 }
Avi Kivity851ba692009-08-24 11:10:17 +03007317 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03007318 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08007319 (int)(exit_qualification >> 4) & 3, cr);
7320 return 0;
7321}
7322
Avi Kivity851ba692009-08-24 11:10:17 +03007323static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007324{
He, Qingbfdaab02007-09-12 14:18:28 +08007325 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03007326 int dr, dr7, reg;
7327
7328 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7329 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
7330
7331 /* First, if DR does not exist, trigger UD */
7332 if (!kvm_require_dr(vcpu, dr))
7333 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007334
Jan Kiszkaf2483412010-01-20 18:20:20 +01007335 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03007336 if (!kvm_require_cpl(vcpu, 0))
7337 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03007338 dr7 = vmcs_readl(GUEST_DR7);
7339 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007340 /*
7341 * As the vm-exit takes precedence over the debug trap, we
7342 * need to emulate the latter, either for the host or the
7343 * guest debugging itself.
7344 */
7345 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03007346 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03007347 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02007348 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03007349 vcpu->run->debug.arch.exception = DB_VECTOR;
7350 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007351 return 0;
7352 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02007353 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03007354 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007355 kvm_queue_exception(vcpu, DB_VECTOR);
7356 return 1;
7357 }
7358 }
7359
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007360 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01007361 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
7362 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007363
7364 /*
7365 * No more DR vmexits; force a reload of the debug registers
7366 * and reenter on this instruction. The next vmexit will
7367 * retrieve the full state of the debug registers.
7368 */
7369 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
7370 return 1;
7371 }
7372
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007373 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
7374 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03007375 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01007376
7377 if (kvm_get_dr(vcpu, dr, &val))
7378 return 1;
7379 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03007380 } else
Nadav Amit57773922014-06-18 17:19:23 +03007381 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01007382 return 1;
7383
Kyle Huey6affcbe2016-11-29 12:40:40 -08007384 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007385}
7386
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007387static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
7388{
7389 return vcpu->arch.dr6;
7390}
7391
7392static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
7393{
7394}
7395
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007396static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
7397{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007398 get_debugreg(vcpu->arch.db[0], 0);
7399 get_debugreg(vcpu->arch.db[1], 1);
7400 get_debugreg(vcpu->arch.db[2], 2);
7401 get_debugreg(vcpu->arch.db[3], 3);
7402 get_debugreg(vcpu->arch.dr6, 6);
7403 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
7404
7405 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01007406 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007407}
7408
Gleb Natapov020df072010-04-13 10:05:23 +03007409static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
7410{
7411 vmcs_writel(GUEST_DR7, val);
7412}
7413
Avi Kivity851ba692009-08-24 11:10:17 +03007414static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007415{
Kyle Huey6a908b62016-11-29 12:40:37 -08007416 return kvm_emulate_cpuid(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007417}
7418
Avi Kivity851ba692009-08-24 11:10:17 +03007419static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007420{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007421 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02007422 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007423
Paolo Bonzini609e36d2015-04-08 15:30:38 +02007424 msr_info.index = ecx;
7425 msr_info.host_initiated = false;
7426 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02007427 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02007428 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007429 return 1;
7430 }
7431
Paolo Bonzini609e36d2015-04-08 15:30:38 +02007432 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04007433
Avi Kivity6aa8b732006-12-10 02:21:36 -08007434 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02007435 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
7436 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Kyle Huey6affcbe2016-11-29 12:40:40 -08007437 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007438}
7439
Avi Kivity851ba692009-08-24 11:10:17 +03007440static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007441{
Will Auld8fe8ab42012-11-29 12:42:12 -08007442 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007443 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
7444 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
7445 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007446
Will Auld8fe8ab42012-11-29 12:42:12 -08007447 msr.data = data;
7448 msr.index = ecx;
7449 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03007450 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02007451 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02007452 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007453 return 1;
7454 }
7455
Avi Kivity59200272010-01-25 19:47:02 +02007456 trace_kvm_msr_write(ecx, data);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007457 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007458}
7459
Avi Kivity851ba692009-08-24 11:10:17 +03007460static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08007461{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01007462 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08007463 return 1;
7464}
7465
Avi Kivity851ba692009-08-24 11:10:17 +03007466static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007467{
Paolo Bonzini47c01522016-12-19 11:44:07 +01007468 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
7469 CPU_BASED_VIRTUAL_INTR_PENDING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04007470
Avi Kivity3842d132010-07-27 12:30:24 +03007471 kvm_make_request(KVM_REQ_EVENT, vcpu);
7472
Jan Kiszkaa26bf122008-09-26 09:30:45 +02007473 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007474 return 1;
7475}
7476
Avi Kivity851ba692009-08-24 11:10:17 +03007477static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007478{
Avi Kivityd3bef152007-06-05 15:53:05 +03007479 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007480}
7481
Avi Kivity851ba692009-08-24 11:10:17 +03007482static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02007483{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03007484 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02007485}
7486
Gleb Natapovec25d5e2010-11-01 15:35:01 +02007487static int handle_invd(struct kvm_vcpu *vcpu)
7488{
Sean Christopherson0ce97a22018-08-23 13:56:52 -07007489 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02007490}
7491
Avi Kivity851ba692009-08-24 11:10:17 +03007492static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03007493{
Sheng Yangf9c617f2009-03-25 10:08:52 +08007494 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03007495
7496 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007497 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03007498}
7499
Avi Kivityfee84b02011-11-10 14:57:25 +02007500static int handle_rdpmc(struct kvm_vcpu *vcpu)
7501{
7502 int err;
7503
7504 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007505 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02007506}
7507
Avi Kivity851ba692009-08-24 11:10:17 +03007508static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02007509{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007510 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02007511}
7512
Dexuan Cui2acf9232010-06-10 11:27:12 +08007513static int handle_xsetbv(struct kvm_vcpu *vcpu)
7514{
7515 u64 new_bv = kvm_read_edx_eax(vcpu);
7516 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
7517
7518 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08007519 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08007520 return 1;
7521}
7522
Wanpeng Lif53cd632014-12-02 19:14:58 +08007523static int handle_xsaves(struct kvm_vcpu *vcpu)
7524{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007525 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08007526 WARN(1, "this should never happen\n");
7527 return 1;
7528}
7529
7530static int handle_xrstors(struct kvm_vcpu *vcpu)
7531{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007532 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08007533 WARN(1, "this should never happen\n");
7534 return 1;
7535}
7536
Avi Kivity851ba692009-08-24 11:10:17 +03007537static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08007538{
Kevin Tian58fbbf22011-08-30 13:56:17 +03007539 if (likely(fasteoi)) {
7540 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7541 int access_type, offset;
7542
7543 access_type = exit_qualification & APIC_ACCESS_TYPE;
7544 offset = exit_qualification & APIC_ACCESS_OFFSET;
7545 /*
7546 * Sane guest uses MOV to write EOI, with written value
7547 * not cared. So make a short-circuit here by avoiding
7548 * heavy instruction emulation.
7549 */
7550 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
7551 (offset == APIC_EOI)) {
7552 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007553 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03007554 }
7555 }
Sean Christopherson0ce97a22018-08-23 13:56:52 -07007556 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08007557}
7558
Yang Zhangc7c9c562013-01-25 10:18:51 +08007559static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
7560{
7561 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7562 int vector = exit_qualification & 0xff;
7563
7564 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
7565 kvm_apic_set_eoi_accelerated(vcpu, vector);
7566 return 1;
7567}
7568
Yang Zhang83d4c282013-01-25 10:18:49 +08007569static int handle_apic_write(struct kvm_vcpu *vcpu)
7570{
7571 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7572 u32 offset = exit_qualification & 0xfff;
7573
7574 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
7575 kvm_apic_write_nodecode(vcpu, offset);
7576 return 1;
7577}
7578
Avi Kivity851ba692009-08-24 11:10:17 +03007579static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02007580{
Jan Kiszka60637aa2008-09-26 09:30:47 +02007581 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02007582 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02007583 bool has_error_code = false;
7584 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02007585 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007586 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007587
7588 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007589 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007590 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02007591
7592 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7593
7594 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007595 if (reason == TASK_SWITCH_GATE && idt_v) {
7596 switch (type) {
7597 case INTR_TYPE_NMI_INTR:
7598 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02007599 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007600 break;
7601 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03007602 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007603 kvm_clear_interrupt_queue(vcpu);
7604 break;
7605 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02007606 if (vmx->idt_vectoring_info &
7607 VECTORING_INFO_DELIVER_CODE_MASK) {
7608 has_error_code = true;
7609 error_code =
7610 vmcs_read32(IDT_VECTORING_ERROR_CODE);
7611 }
7612 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007613 case INTR_TYPE_SOFT_EXCEPTION:
7614 kvm_clear_exception_queue(vcpu);
7615 break;
7616 default:
7617 break;
7618 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02007619 }
Izik Eidus37817f22008-03-24 23:14:53 +02007620 tss_selector = exit_qualification;
7621
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007622 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
7623 type != INTR_TYPE_EXT_INTR &&
7624 type != INTR_TYPE_NMI_INTR))
7625 skip_emulated_instruction(vcpu);
7626
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007627 if (kvm_task_switch(vcpu, tss_selector,
7628 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
7629 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03007630 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7631 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
7632 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007633 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03007634 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007635
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007636 /*
7637 * TODO: What about debug traps on tss switch?
7638 * Are we supposed to inject them and update dr6?
7639 */
7640
7641 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02007642}
7643
Avi Kivity851ba692009-08-24 11:10:17 +03007644static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08007645{
Sheng Yangf9c617f2009-03-25 10:08:52 +08007646 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08007647 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01007648 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08007649
Sheng Yangf9c617f2009-03-25 10:08:52 +08007650 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08007651
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03007652 /*
7653 * EPT violation happened while executing iret from NMI,
7654 * "blocked by NMI" bit has to be set before next VM entry.
7655 * There are errata that may cause this bit to not be set:
7656 * AAK134, BY25.
7657 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03007658 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01007659 enable_vnmi &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03007660 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03007661 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
7662
Sheng Yang14394422008-04-28 12:24:45 +08007663 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007664 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08007665
Junaid Shahid27959a42016-12-06 16:46:10 -08007666 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08007667 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08007668 ? PFERR_USER_MASK : 0;
7669 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08007670 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08007671 ? PFERR_WRITE_MASK : 0;
7672 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08007673 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08007674 ? PFERR_FETCH_MASK : 0;
7675 /* ept page table entry is present? */
7676 error_code |= (exit_qualification &
7677 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
7678 EPT_VIOLATION_EXECUTABLE))
7679 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08007680
Paolo Bonzinieebed242016-11-28 14:39:58 +01007681 error_code |= (exit_qualification & 0x100) != 0 ?
7682 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03007683
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08007684 vcpu->arch.exit_qualification = exit_qualification;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08007685 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08007686}
7687
Avi Kivity851ba692009-08-24 11:10:17 +03007688static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007689{
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007690 gpa_t gpa;
7691
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02007692 /*
7693 * A nested guest cannot optimize MMIO vmexits, because we have an
7694 * nGPA here instead of the required GPA.
7695 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007696 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02007697 if (!is_guest_mode(vcpu) &&
7698 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08007699 trace_kvm_fast_mmio(gpa);
Vitaly Kuznetsovd391f122018-01-25 16:37:07 +01007700 /*
7701 * Doing kvm_skip_emulated_instruction() depends on undefined
7702 * behavior: Intel's manual doesn't mandate
7703 * VM_EXIT_INSTRUCTION_LEN to be set in VMCS when EPT MISCONFIG
7704 * occurs and while on real hardware it was observed to be set,
7705 * other hypervisors (namely Hyper-V) don't set it, we end up
7706 * advancing IP with some random value. Disable fast mmio when
7707 * running nested and keep it for real hardware in hope that
7708 * VM_EXIT_INSTRUCTION_LEN will always be set correctly.
7709 */
7710 if (!static_cpu_has(X86_FEATURE_HYPERVISOR))
7711 return kvm_skip_emulated_instruction(vcpu);
7712 else
Sean Christopherson0ce97a22018-08-23 13:56:52 -07007713 return kvm_emulate_instruction(vcpu, EMULTYPE_SKIP) ==
Sean Christophersonc4409902018-08-23 13:56:46 -07007714 EMULATE_DONE;
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03007715 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007716
Sean Christophersonc75d0edc2018-03-29 14:48:31 -07007717 return kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007718}
7719
Avi Kivity851ba692009-08-24 11:10:17 +03007720static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08007721{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01007722 WARN_ON_ONCE(!enable_vnmi);
Paolo Bonzini47c01522016-12-19 11:44:07 +01007723 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
7724 CPU_BASED_VIRTUAL_NMI_PENDING);
Sheng Yangf08864b2008-05-15 18:23:25 +08007725 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03007726 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08007727
7728 return 1;
7729}
7730
Mohammed Gamal80ced182009-09-01 12:48:18 +02007731static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007732{
Avi Kivity8b3079a2009-01-05 12:10:54 +02007733 struct vcpu_vmx *vmx = to_vmx(vcpu);
7734 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02007735 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02007736 u32 cpu_exec_ctrl;
7737 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03007738 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02007739
Sean Christopherson2bb8caf2018-03-12 10:56:13 -07007740 /*
7741 * We should never reach the point where we are emulating L2
7742 * due to invalid guest state as that means we incorrectly
7743 * allowed a nested VMEntry with an invalid vmcs12.
7744 */
7745 WARN_ON_ONCE(vmx->emulation_required && vmx->nested.nested_run_pending);
7746
Avi Kivity49e9d552010-09-19 14:34:08 +02007747 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
7748 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007749
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01007750 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03007751 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02007752 return handle_interrupt_window(&vmx->vcpu);
7753
Radim Krčmář72875d82017-04-26 22:32:19 +02007754 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03007755 return 1;
7756
Sean Christopherson0ce97a22018-08-23 13:56:52 -07007757 err = kvm_emulate_instruction(vcpu, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007758
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02007759 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02007760 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02007761 ret = 0;
7762 goto out;
7763 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01007764
Sean Christophersonadd5ff72018-03-23 09:34:00 -07007765 if (err != EMULATE_DONE)
7766 goto emulation_error;
7767
7768 if (vmx->emulation_required && !vmx->rmode.vm86_active &&
7769 vcpu->arch.exception.pending)
7770 goto emulation_error;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007771
Gleb Natapov8d76c492013-05-08 18:38:44 +03007772 if (vcpu->arch.halt_request) {
7773 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06007774 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03007775 goto out;
7776 }
7777
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007778 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02007779 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007780 if (need_resched())
7781 schedule();
7782 }
7783
Mohammed Gamal80ced182009-09-01 12:48:18 +02007784out:
7785 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007786
Sean Christophersonadd5ff72018-03-23 09:34:00 -07007787emulation_error:
7788 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7789 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
7790 vcpu->run->internal.ndata = 0;
7791 return 0;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007792}
7793
7794static void grow_ple_window(struct kvm_vcpu *vcpu)
7795{
7796 struct vcpu_vmx *vmx = to_vmx(vcpu);
7797 int old = vmx->ple_window;
7798
Babu Mogerc8e88712018-03-16 16:37:24 -04007799 vmx->ple_window = __grow_ple_window(old, ple_window,
7800 ple_window_grow,
7801 ple_window_max);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007802
7803 if (vmx->ple_window != old)
7804 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02007805
7806 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007807}
7808
7809static void shrink_ple_window(struct kvm_vcpu *vcpu)
7810{
7811 struct vcpu_vmx *vmx = to_vmx(vcpu);
7812 int old = vmx->ple_window;
7813
Babu Mogerc8e88712018-03-16 16:37:24 -04007814 vmx->ple_window = __shrink_ple_window(old, ple_window,
7815 ple_window_shrink,
7816 ple_window);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007817
7818 if (vmx->ple_window != old)
7819 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02007820
7821 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007822}
7823
7824/*
Feng Wubf9f6ac2015-09-18 22:29:55 +08007825 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
7826 */
7827static void wakeup_handler(void)
7828{
7829 struct kvm_vcpu *vcpu;
7830 int cpu = smp_processor_id();
7831
7832 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
7833 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
7834 blocked_vcpu_list) {
7835 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
7836
7837 if (pi_test_on(pi_desc) == 1)
7838 kvm_vcpu_kick(vcpu);
7839 }
7840 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
7841}
7842
Peng Haoe01bca22018-04-07 05:47:32 +08007843static void vmx_enable_tdp(void)
Junaid Shahidf160c7b2016-12-06 16:46:16 -08007844{
7845 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
7846 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
7847 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
7848 0ull, VMX_EPT_EXECUTABLE_MASK,
7849 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05007850 VMX_EPT_RWX_MASK, 0ull);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08007851
7852 ept_set_mmio_spte_mask();
7853 kvm_enable_tdp();
7854}
7855
Tiejun Chenf2c76482014-10-28 10:14:47 +08007856static __init int hardware_setup(void)
7857{
Sean Christophersoncf81a7e2018-07-11 09:54:30 -07007858 unsigned long host_bndcfgs;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01007859 int r = -ENOMEM, i;
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007860
7861 rdmsrl_safe(MSR_EFER, &host_efer);
7862
7863 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
7864 kvm_define_shared_msr(i, vmx_msr_index[i]);
7865
Radim Krčmář23611332016-09-29 22:41:33 +02007866 for (i = 0; i < VMX_BITMAP_NR; i++) {
7867 vmx_bitmap[i] = (unsigned long *)__get_free_page(GFP_KERNEL);
7868 if (!vmx_bitmap[i])
7869 goto out;
7870 }
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007871
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007872 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
7873 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
7874
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007875 if (setup_vmcs_config(&vmcs_config) < 0) {
7876 r = -EIO;
Radim Krčmář23611332016-09-29 22:41:33 +02007877 goto out;
Tiejun Chenbaa03522014-12-23 16:21:11 +08007878 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08007879
7880 if (boot_cpu_has(X86_FEATURE_NX))
7881 kvm_enable_efer_bits(EFER_NX);
7882
Sean Christophersoncf81a7e2018-07-11 09:54:30 -07007883 if (boot_cpu_has(X86_FEATURE_MPX)) {
7884 rdmsrl(MSR_IA32_BNDCFGS, host_bndcfgs);
7885 WARN_ONCE(host_bndcfgs, "KVM: BNDCFGS in host will be lost");
7886 }
7887
Wanpeng Li08d839c2017-03-23 05:30:08 -07007888 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
7889 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
Tiejun Chenf2c76482014-10-28 10:14:47 +08007890 enable_vpid = 0;
Wanpeng Li08d839c2017-03-23 05:30:08 -07007891
Tiejun Chenf2c76482014-10-28 10:14:47 +08007892 if (!cpu_has_vmx_ept() ||
David Hildenbrand42aa53b2017-08-10 23:15:29 +02007893 !cpu_has_vmx_ept_4levels() ||
David Hildenbrandf5f51582017-08-24 20:51:30 +02007894 !cpu_has_vmx_ept_mt_wb() ||
Wanpeng Li8ad81822017-10-09 15:51:53 -07007895 !cpu_has_vmx_invept_global())
Tiejun Chenf2c76482014-10-28 10:14:47 +08007896 enable_ept = 0;
Tiejun Chenf2c76482014-10-28 10:14:47 +08007897
Wanpeng Lifce6ac42017-05-11 02:58:56 -07007898 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08007899 enable_ept_ad_bits = 0;
7900
Wanpeng Li8ad81822017-10-09 15:51:53 -07007901 if (!cpu_has_vmx_unrestricted_guest() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08007902 enable_unrestricted_guest = 0;
7903
Paolo Bonziniad15a292015-01-30 16:18:49 +01007904 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08007905 flexpriority_enabled = 0;
7906
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01007907 if (!cpu_has_virtual_nmis())
7908 enable_vnmi = 0;
7909
Paolo Bonziniad15a292015-01-30 16:18:49 +01007910 /*
7911 * set_apic_access_page_addr() is used to reload apic access
7912 * page upon invalidation. No need to do anything if not
7913 * using the APIC_ACCESS_ADDR VMCS field.
7914 */
7915 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08007916 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08007917
7918 if (!cpu_has_vmx_tpr_shadow())
7919 kvm_x86_ops->update_cr8_intercept = NULL;
7920
7921 if (enable_ept && !cpu_has_vmx_ept_2m_page())
7922 kvm_disable_largepages();
7923
Tianyu Lan877ad952018-07-19 08:40:23 +00007924#if IS_ENABLED(CONFIG_HYPERV)
7925 if (ms_hyperv.nested_features & HV_X64_NESTED_GUEST_MAPPING_FLUSH
7926 && enable_ept)
7927 kvm_x86_ops->tlb_remote_flush = vmx_hv_remote_flush_tlb;
7928#endif
7929
Wanpeng Li0f107682017-09-28 18:06:24 -07007930 if (!cpu_has_vmx_ple()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08007931 ple_gap = 0;
Wanpeng Li0f107682017-09-28 18:06:24 -07007932 ple_window = 0;
7933 ple_window_grow = 0;
7934 ple_window_max = 0;
7935 ple_window_shrink = 0;
7936 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08007937
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01007938 if (!cpu_has_vmx_apicv()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08007939 enable_apicv = 0;
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01007940 kvm_x86_ops->sync_pir_to_irr = NULL;
7941 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08007942
Haozhong Zhang64903d62015-10-20 15:39:09 +08007943 if (cpu_has_vmx_tsc_scaling()) {
7944 kvm_has_tsc_control = true;
7945 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
7946 kvm_tsc_scaling_ratio_frac_bits = 48;
7947 }
7948
Wanpeng Li04bb92e2015-09-16 19:31:11 +08007949 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
7950
Junaid Shahidf160c7b2016-12-06 16:46:16 -08007951 if (enable_ept)
7952 vmx_enable_tdp();
7953 else
Tiejun Chenbaa03522014-12-23 16:21:11 +08007954 kvm_disable_tdp();
7955
Jim Mattson8fcc4b52018-07-10 11:27:20 +02007956 if (!nested) {
7957 kvm_x86_ops->get_nested_state = NULL;
7958 kvm_x86_ops->set_nested_state = NULL;
7959 }
7960
Kai Huang843e4332015-01-28 10:54:28 +08007961 /*
7962 * Only enable PML when hardware supports PML feature, and both EPT
7963 * and EPT A/D bit features are enabled -- PML depends on them to work.
7964 */
7965 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
7966 enable_pml = 0;
7967
7968 if (!enable_pml) {
7969 kvm_x86_ops->slot_enable_log_dirty = NULL;
7970 kvm_x86_ops->slot_disable_log_dirty = NULL;
7971 kvm_x86_ops->flush_log_dirty = NULL;
7972 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
7973 }
7974
Sean Christophersond264ee02018-08-27 15:21:12 -07007975 if (!cpu_has_vmx_preemption_timer())
7976 kvm_x86_ops->request_immediate_exit = __kvm_request_immediate_exit;
7977
Yunhong Jiang64672c92016-06-13 14:19:59 -07007978 if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) {
7979 u64 vmx_msr;
7980
7981 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
7982 cpu_preemption_timer_multi =
7983 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
7984 } else {
7985 kvm_x86_ops->set_hv_timer = NULL;
7986 kvm_x86_ops->cancel_hv_timer = NULL;
7987 }
7988
Paolo Bonzinic5d167b2017-12-13 11:05:19 +01007989 if (!cpu_has_vmx_shadow_vmcs())
7990 enable_shadow_vmcs = 0;
7991 if (enable_shadow_vmcs)
7992 init_vmcs_shadow_fields();
7993
Feng Wubf9f6ac2015-09-18 22:29:55 +08007994 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
Paolo Bonzini13893092018-02-26 13:40:09 +01007995 nested_vmx_setup_ctls_msrs(&vmcs_config.nested, enable_apicv);
Feng Wubf9f6ac2015-09-18 22:29:55 +08007996
Ashok Rajc45dcc72016-06-22 14:59:56 +08007997 kvm_mce_cap_supported |= MCG_LMCE_P;
7998
Tiejun Chenf2c76482014-10-28 10:14:47 +08007999 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08008000
Tiejun Chen34a1cd62014-10-28 10:14:48 +08008001out:
Radim Krčmář23611332016-09-29 22:41:33 +02008002 for (i = 0; i < VMX_BITMAP_NR; i++)
8003 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08008004
8005 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08008006}
8007
8008static __exit void hardware_unsetup(void)
8009{
Radim Krčmář23611332016-09-29 22:41:33 +02008010 int i;
8011
8012 for (i = 0; i < VMX_BITMAP_NR; i++)
8013 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08008014
Tiejun Chenf2c76482014-10-28 10:14:47 +08008015 free_kvm_area();
8016}
8017
Avi Kivity6aa8b732006-12-10 02:21:36 -08008018/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008019 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
8020 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
8021 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03008022static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008023{
Wanpeng Lib31c1142018-03-12 04:53:04 -07008024 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02008025 grow_ple_window(vcpu);
8026
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08008027 /*
8028 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
8029 * VM-execution control is ignored if CPL > 0. OTOH, KVM
8030 * never set PAUSE_EXITING and just set PLE if supported,
8031 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
8032 */
8033 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008034 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008035}
8036
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008037static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08008038{
Kyle Huey6affcbe2016-11-29 12:40:40 -08008039 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08008040}
8041
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008042static int handle_mwait(struct kvm_vcpu *vcpu)
8043{
8044 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
8045 return handle_nop(vcpu);
8046}
8047
Jim Mattson45ec3682017-08-23 16:32:04 -07008048static int handle_invalid_op(struct kvm_vcpu *vcpu)
8049{
8050 kvm_queue_exception(vcpu, UD_VECTOR);
8051 return 1;
8052}
8053
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008054static int handle_monitor_trap(struct kvm_vcpu *vcpu)
8055{
8056 return 1;
8057}
8058
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008059static int handle_monitor(struct kvm_vcpu *vcpu)
8060{
8061 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
8062 return handle_nop(vcpu);
8063}
8064
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008065/*
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08008066 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
8067 * set the success or error code of an emulated VMX instruction, as specified
8068 * by Vol 2B, VMX Instruction Reference, "Conventions".
8069 */
8070static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
8071{
8072 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
8073 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
8074 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
8075}
8076
8077static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
8078{
8079 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
8080 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
8081 X86_EFLAGS_SF | X86_EFLAGS_OF))
8082 | X86_EFLAGS_CF);
8083}
8084
Abel Gordon145c28d2013-04-18 14:36:55 +03008085static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08008086 u32 vm_instruction_error)
8087{
8088 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
8089 /*
8090 * failValid writes the error number to the current VMCS, which
8091 * can't be done there isn't a current VMCS.
8092 */
8093 nested_vmx_failInvalid(vcpu);
8094 return;
8095 }
8096 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
8097 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
8098 X86_EFLAGS_SF | X86_EFLAGS_OF))
8099 | X86_EFLAGS_ZF);
8100 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
8101 /*
8102 * We don't need to force a shadow sync because
8103 * VM_INSTRUCTION_ERROR is not shadowed
8104 */
8105}
Abel Gordon145c28d2013-04-18 14:36:55 +03008106
Wincy Vanff651cb2014-12-11 08:52:58 +03008107static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
8108{
8109 /* TODO: not to reset guest simply here. */
8110 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02008111 pr_debug_ratelimited("kvm: nested vmx abort, indicator %d\n", indicator);
Wincy Vanff651cb2014-12-11 08:52:58 +03008112}
8113
Jan Kiszkaf41245002014-03-07 20:03:13 +01008114static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
8115{
8116 struct vcpu_vmx *vmx =
8117 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
8118
8119 vmx->nested.preemption_timer_expired = true;
8120 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
8121 kvm_vcpu_kick(&vmx->vcpu);
8122
8123 return HRTIMER_NORESTART;
8124}
8125
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03008126/*
Bandan Das19677e32014-05-06 02:19:15 -04008127 * Decode the memory-address operand of a vmx instruction, as recorded on an
8128 * exit caused by such an instruction (run by a guest hypervisor).
8129 * On success, returns 0. When the operand is invalid, returns 1 and throws
8130 * #UD or #GP.
8131 */
8132static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
8133 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008134 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04008135{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008136 gva_t off;
8137 bool exn;
8138 struct kvm_segment s;
8139
Bandan Das19677e32014-05-06 02:19:15 -04008140 /*
8141 * According to Vol. 3B, "Information for VM Exits Due to Instruction
8142 * Execution", on an exit, vmx_instruction_info holds most of the
8143 * addressing components of the operand. Only the displacement part
8144 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
8145 * For how an actual address is calculated from all these components,
8146 * refer to Vol. 1, "Operand Addressing".
8147 */
8148 int scaling = vmx_instruction_info & 3;
8149 int addr_size = (vmx_instruction_info >> 7) & 7;
8150 bool is_reg = vmx_instruction_info & (1u << 10);
8151 int seg_reg = (vmx_instruction_info >> 15) & 7;
8152 int index_reg = (vmx_instruction_info >> 18) & 0xf;
8153 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
8154 int base_reg = (vmx_instruction_info >> 23) & 0xf;
8155 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
8156
8157 if (is_reg) {
8158 kvm_queue_exception(vcpu, UD_VECTOR);
8159 return 1;
8160 }
8161
8162 /* Addr = segment_base + offset */
8163 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008164 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04008165 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008166 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04008167 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008168 off += kvm_register_read(vcpu, index_reg)<<scaling;
8169 vmx_get_segment(vcpu, &s, seg_reg);
8170 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04008171
8172 if (addr_size == 1) /* 32 bit */
8173 *ret &= 0xffffffff;
8174
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008175 /* Checks for #GP/#SS exceptions. */
8176 exn = false;
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02008177 if (is_long_mode(vcpu)) {
8178 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
8179 * non-canonical form. This is the only check on the memory
8180 * destination for long mode!
8181 */
Yu Zhangfd8cb432017-08-24 20:27:56 +08008182 exn = is_noncanonical_address(*ret, vcpu);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02008183 } else if (is_protmode(vcpu)) {
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008184 /* Protected mode: apply checks for segment validity in the
8185 * following order:
8186 * - segment type check (#GP(0) may be thrown)
8187 * - usability check (#GP(0)/#SS(0))
8188 * - limit check (#GP(0)/#SS(0))
8189 */
8190 if (wr)
8191 /* #GP(0) if the destination operand is located in a
8192 * read-only data segment or any code segment.
8193 */
8194 exn = ((s.type & 0xa) == 0 || (s.type & 8));
8195 else
8196 /* #GP(0) if the source operand is located in an
8197 * execute-only code segment
8198 */
8199 exn = ((s.type & 0xa) == 8);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02008200 if (exn) {
8201 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
8202 return 1;
8203 }
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008204 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
8205 */
8206 exn = (s.unusable != 0);
8207 /* Protected mode: #GP(0)/#SS(0) if the memory
8208 * operand is outside the segment limit.
8209 */
8210 exn = exn || (off + sizeof(u64) > s.limit);
8211 }
8212 if (exn) {
8213 kvm_queue_exception_e(vcpu,
8214 seg_reg == VCPU_SREG_SS ?
8215 SS_VECTOR : GP_VECTOR,
8216 0);
8217 return 1;
8218 }
8219
Bandan Das19677e32014-05-06 02:19:15 -04008220 return 0;
8221}
8222
Radim Krčmářcbf71272017-05-19 15:48:51 +02008223static int nested_vmx_get_vmptr(struct kvm_vcpu *vcpu, gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04008224{
8225 gva_t gva;
Bandan Das3573e222014-05-06 02:19:16 -04008226 struct x86_exception e;
Bandan Das3573e222014-05-06 02:19:16 -04008227
8228 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008229 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04008230 return 1;
8231
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02008232 if (kvm_read_guest_virt(vcpu, gva, vmpointer, sizeof(*vmpointer), &e)) {
Bandan Das3573e222014-05-06 02:19:16 -04008233 kvm_inject_page_fault(vcpu, &e);
8234 return 1;
8235 }
8236
Bandan Das3573e222014-05-06 02:19:16 -04008237 return 0;
8238}
8239
Liran Alonabfc52c2018-06-23 02:35:13 +03008240/*
8241 * Allocate a shadow VMCS and associate it with the currently loaded
8242 * VMCS, unless such a shadow VMCS already exists. The newly allocated
8243 * VMCS is also VMCLEARed, so that it is ready for use.
8244 */
8245static struct vmcs *alloc_shadow_vmcs(struct kvm_vcpu *vcpu)
8246{
8247 struct vcpu_vmx *vmx = to_vmx(vcpu);
8248 struct loaded_vmcs *loaded_vmcs = vmx->loaded_vmcs;
8249
8250 /*
8251 * We should allocate a shadow vmcs for vmcs01 only when L1
8252 * executes VMXON and free it when L1 executes VMXOFF.
8253 * As it is invalid to execute VMXON twice, we shouldn't reach
8254 * here when vmcs01 already have an allocated shadow vmcs.
8255 */
8256 WARN_ON(loaded_vmcs == &vmx->vmcs01 && loaded_vmcs->shadow_vmcs);
8257
8258 if (!loaded_vmcs->shadow_vmcs) {
8259 loaded_vmcs->shadow_vmcs = alloc_vmcs(true);
8260 if (loaded_vmcs->shadow_vmcs)
8261 vmcs_clear(loaded_vmcs->shadow_vmcs);
8262 }
8263 return loaded_vmcs->shadow_vmcs;
8264}
8265
Jim Mattsone29acc52016-11-30 12:03:43 -08008266static int enter_vmx_operation(struct kvm_vcpu *vcpu)
8267{
8268 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzinif21f1652018-01-11 12:16:15 +01008269 int r;
Jim Mattsone29acc52016-11-30 12:03:43 -08008270
Paolo Bonzinif21f1652018-01-11 12:16:15 +01008271 r = alloc_loaded_vmcs(&vmx->nested.vmcs02);
8272 if (r < 0)
Jim Mattsonde3a0022017-11-27 17:22:25 -06008273 goto out_vmcs02;
Jim Mattsone29acc52016-11-30 12:03:43 -08008274
8275 vmx->nested.cached_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL);
8276 if (!vmx->nested.cached_vmcs12)
8277 goto out_cached_vmcs12;
8278
Liran Alon61ada742018-06-23 02:35:08 +03008279 vmx->nested.cached_shadow_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL);
8280 if (!vmx->nested.cached_shadow_vmcs12)
8281 goto out_cached_shadow_vmcs12;
8282
Liran Alonabfc52c2018-06-23 02:35:13 +03008283 if (enable_shadow_vmcs && !alloc_shadow_vmcs(vcpu))
8284 goto out_shadow_vmcs;
Jim Mattsone29acc52016-11-30 12:03:43 -08008285
Jim Mattsone29acc52016-11-30 12:03:43 -08008286 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
8287 HRTIMER_MODE_REL_PINNED);
8288 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
8289
Roman Kagan63aff652018-07-19 21:59:07 +03008290 vmx->nested.vpid02 = allocate_vpid();
8291
Jim Mattsone29acc52016-11-30 12:03:43 -08008292 vmx->nested.vmxon = true;
8293 return 0;
8294
8295out_shadow_vmcs:
Liran Alon61ada742018-06-23 02:35:08 +03008296 kfree(vmx->nested.cached_shadow_vmcs12);
8297
8298out_cached_shadow_vmcs12:
Jim Mattsone29acc52016-11-30 12:03:43 -08008299 kfree(vmx->nested.cached_vmcs12);
8300
8301out_cached_vmcs12:
Jim Mattsonde3a0022017-11-27 17:22:25 -06008302 free_loaded_vmcs(&vmx->nested.vmcs02);
Jim Mattsone29acc52016-11-30 12:03:43 -08008303
Jim Mattsonde3a0022017-11-27 17:22:25 -06008304out_vmcs02:
Jim Mattsone29acc52016-11-30 12:03:43 -08008305 return -ENOMEM;
8306}
8307
Bandan Das3573e222014-05-06 02:19:16 -04008308/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008309 * Emulate the VMXON instruction.
8310 * Currently, we just remember that VMX is active, and do not save or even
8311 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
8312 * do not currently need to store anything in that guest-allocated memory
8313 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
8314 * argument is different from the VMXON pointer (which the spec says they do).
8315 */
8316static int handle_vmon(struct kvm_vcpu *vcpu)
8317{
Jim Mattsone29acc52016-11-30 12:03:43 -08008318 int ret;
Radim Krčmářcbf71272017-05-19 15:48:51 +02008319 gpa_t vmptr;
8320 struct page *page;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008321 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elb3897a42013-07-08 19:12:35 +08008322 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
8323 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008324
Jim Mattson70f3aac2017-04-26 08:53:46 -07008325 /*
8326 * The Intel VMX Instruction Reference lists a bunch of bits that are
8327 * prerequisite to running VMXON, most notably cr4.VMXE must be set to
8328 * 1 (see vmx_set_cr4() for when we allow the guest to set this).
8329 * Otherwise, we should fail with #UD. But most faulting conditions
8330 * have already been checked by hardware, prior to the VM-exit for
8331 * VMXON. We do test guest cr4.VMXE because processor CR4 always has
8332 * that bit set to 1 in non-root mode.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008333 */
Jim Mattson70f3aac2017-04-26 08:53:46 -07008334 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE)) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008335 kvm_queue_exception(vcpu, UD_VECTOR);
8336 return 1;
8337 }
8338
Felix Wilhelm727ba742018-06-11 09:43:44 +02008339 /* CPL=0 must be checked manually. */
8340 if (vmx_get_cpl(vcpu)) {
Jim Mattson36090bf2018-07-27 09:18:50 -07008341 kvm_inject_gp(vcpu, 0);
Felix Wilhelm727ba742018-06-11 09:43:44 +02008342 return 1;
8343 }
8344
Abel Gordon145c28d2013-04-18 14:36:55 +03008345 if (vmx->nested.vmxon) {
8346 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008347 return kvm_skip_emulated_instruction(vcpu);
Abel Gordon145c28d2013-04-18 14:36:55 +03008348 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08008349
Haozhong Zhang3b840802016-06-22 14:59:54 +08008350 if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
Nadav Har'Elb3897a42013-07-08 19:12:35 +08008351 != VMXON_NEEDED_FEATURES) {
8352 kvm_inject_gp(vcpu, 0);
8353 return 1;
8354 }
8355
Radim Krčmářcbf71272017-05-19 15:48:51 +02008356 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Jim Mattson21e7fbe2016-12-22 15:49:55 -08008357 return 1;
Radim Krčmářcbf71272017-05-19 15:48:51 +02008358
8359 /*
8360 * SDM 3: 24.11.5
8361 * The first 4 bytes of VMXON region contain the supported
8362 * VMCS revision identifier
8363 *
8364 * Note - IA32_VMX_BASIC[48] will never be 1 for the nested case;
8365 * which replaces physical address width with 32
8366 */
8367 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
8368 nested_vmx_failInvalid(vcpu);
8369 return kvm_skip_emulated_instruction(vcpu);
8370 }
8371
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02008372 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
8373 if (is_error_page(page)) {
Radim Krčmářcbf71272017-05-19 15:48:51 +02008374 nested_vmx_failInvalid(vcpu);
8375 return kvm_skip_emulated_instruction(vcpu);
8376 }
8377 if (*(u32 *)kmap(page) != VMCS12_REVISION) {
8378 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008379 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02008380 nested_vmx_failInvalid(vcpu);
8381 return kvm_skip_emulated_instruction(vcpu);
8382 }
8383 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008384 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02008385
8386 vmx->nested.vmxon_ptr = vmptr;
Jim Mattsone29acc52016-11-30 12:03:43 -08008387 ret = enter_vmx_operation(vcpu);
8388 if (ret)
8389 return ret;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008390
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08008391 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008392 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008393}
8394
8395/*
8396 * Intel's VMX Instruction Reference specifies a common set of prerequisites
8397 * for running VMX instructions (except VMXON, whose prerequisites are
8398 * slightly different). It also specifies what exception to inject otherwise.
Jim Mattson70f3aac2017-04-26 08:53:46 -07008399 * Note that many of these exceptions have priority over VM exits, so they
8400 * don't have to be checked again here.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008401 */
8402static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
8403{
Jim Mattson70f3aac2017-04-26 08:53:46 -07008404 if (!to_vmx(vcpu)->nested.vmxon) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008405 kvm_queue_exception(vcpu, UD_VECTOR);
8406 return 0;
8407 }
Jim Mattsone49fcb82018-07-27 13:44:45 -07008408
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008409 if (vmx_get_cpl(vcpu)) {
Jim Mattson36090bf2018-07-27 09:18:50 -07008410 kvm_inject_gp(vcpu, 0);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008411 return 0;
8412 }
8413
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008414 return 1;
8415}
8416
David Matlack8ca44e82017-08-01 14:00:39 -07008417static void vmx_disable_shadow_vmcs(struct vcpu_vmx *vmx)
8418{
8419 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, SECONDARY_EXEC_SHADOW_VMCS);
8420 vmcs_write64(VMCS_LINK_POINTER, -1ull);
8421}
8422
Abel Gordone7953d72013-04-18 14:37:55 +03008423static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
8424{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008425 if (vmx->nested.current_vmptr == -1ull)
8426 return;
8427
Abel Gordon012f83c2013-04-18 14:39:25 +03008428 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008429 /* copy to memory all shadowed fields in case
8430 they were modified */
8431 copy_shadow_to_vmcs12(vmx);
8432 vmx->nested.sync_shadow_vmcs = false;
David Matlack8ca44e82017-08-01 14:00:39 -07008433 vmx_disable_shadow_vmcs(vmx);
Abel Gordon012f83c2013-04-18 14:39:25 +03008434 }
Wincy Van705699a2015-02-03 23:58:17 +08008435 vmx->nested.posted_intr_nv = -1;
David Matlack4f2777b2016-07-13 17:16:37 -07008436
8437 /* Flush VMCS12 to guest memory */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02008438 kvm_vcpu_write_guest_page(&vmx->vcpu,
8439 vmx->nested.current_vmptr >> PAGE_SHIFT,
8440 vmx->nested.cached_vmcs12, 0, VMCS12_SIZE);
David Matlack4f2777b2016-07-13 17:16:37 -07008441
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008442 vmx->nested.current_vmptr = -1ull;
Abel Gordone7953d72013-04-18 14:37:55 +03008443}
8444
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008445/*
8446 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
8447 * just stops using VMX.
8448 */
8449static void free_nested(struct vcpu_vmx *vmx)
8450{
Wanpeng Lib7455822017-11-22 14:04:00 -08008451 if (!vmx->nested.vmxon && !vmx->nested.smm.vmxon)
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008452 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008453
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008454 vmx->nested.vmxon = false;
Wanpeng Lib7455822017-11-22 14:04:00 -08008455 vmx->nested.smm.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07008456 free_vpid(vmx->nested.vpid02);
David Matlack8ca44e82017-08-01 14:00:39 -07008457 vmx->nested.posted_intr_nv = -1;
8458 vmx->nested.current_vmptr = -1ull;
Jim Mattson355f4fb2016-10-28 08:29:39 -07008459 if (enable_shadow_vmcs) {
David Matlack8ca44e82017-08-01 14:00:39 -07008460 vmx_disable_shadow_vmcs(vmx);
Jim Mattson355f4fb2016-10-28 08:29:39 -07008461 vmcs_clear(vmx->vmcs01.shadow_vmcs);
8462 free_vmcs(vmx->vmcs01.shadow_vmcs);
8463 vmx->vmcs01.shadow_vmcs = NULL;
8464 }
David Matlack4f2777b2016-07-13 17:16:37 -07008465 kfree(vmx->nested.cached_vmcs12);
Liran Alon61ada742018-06-23 02:35:08 +03008466 kfree(vmx->nested.cached_shadow_vmcs12);
Jim Mattsonde3a0022017-11-27 17:22:25 -06008467 /* Unpin physical memory we referred to in the vmcs02 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03008468 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02008469 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02008470 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03008471 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008472 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02008473 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02008474 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008475 }
Wincy Van705699a2015-02-03 23:58:17 +08008476 if (vmx->nested.pi_desc_page) {
8477 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008478 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08008479 vmx->nested.pi_desc_page = NULL;
8480 vmx->nested.pi_desc = NULL;
8481 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03008482
Jim Mattsonde3a0022017-11-27 17:22:25 -06008483 free_loaded_vmcs(&vmx->nested.vmcs02);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008484}
8485
8486/* Emulate the VMXOFF instruction */
8487static int handle_vmoff(struct kvm_vcpu *vcpu)
8488{
8489 if (!nested_vmx_check_permission(vcpu))
8490 return 1;
8491 free_nested(to_vmx(vcpu));
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08008492 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008493 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008494}
8495
Nadav Har'El27d6c862011-05-25 23:06:59 +03008496/* Emulate the VMCLEAR instruction */
8497static int handle_vmclear(struct kvm_vcpu *vcpu)
8498{
8499 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattson587d7e722017-03-02 12:41:48 -08008500 u32 zero = 0;
Nadav Har'El27d6c862011-05-25 23:06:59 +03008501 gpa_t vmptr;
Nadav Har'El27d6c862011-05-25 23:06:59 +03008502
8503 if (!nested_vmx_check_permission(vcpu))
8504 return 1;
8505
Radim Krčmářcbf71272017-05-19 15:48:51 +02008506 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03008507 return 1;
8508
Radim Krčmářcbf71272017-05-19 15:48:51 +02008509 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
8510 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS);
8511 return kvm_skip_emulated_instruction(vcpu);
8512 }
8513
8514 if (vmptr == vmx->nested.vmxon_ptr) {
8515 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_VMXON_POINTER);
8516 return kvm_skip_emulated_instruction(vcpu);
8517 }
8518
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008519 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03008520 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03008521
Jim Mattson587d7e722017-03-02 12:41:48 -08008522 kvm_vcpu_write_guest(vcpu,
8523 vmptr + offsetof(struct vmcs12, launch_state),
8524 &zero, sizeof(zero));
Nadav Har'El27d6c862011-05-25 23:06:59 +03008525
Nadav Har'El27d6c862011-05-25 23:06:59 +03008526 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008527 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03008528}
8529
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008530static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
8531
8532/* Emulate the VMLAUNCH instruction */
8533static int handle_vmlaunch(struct kvm_vcpu *vcpu)
8534{
8535 return nested_vmx_run(vcpu, true);
8536}
8537
8538/* Emulate the VMRESUME instruction */
8539static int handle_vmresume(struct kvm_vcpu *vcpu)
8540{
8541
8542 return nested_vmx_run(vcpu, false);
8543}
8544
Nadav Har'El49f705c2011-05-25 23:08:30 +03008545/*
8546 * Read a vmcs12 field. Since these can have varying lengths and we return
8547 * one type, we chose the biggest type (u64) and zero-extend the return value
8548 * to that size. Note that the caller, handle_vmread, might need to use only
8549 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
8550 * 64-bit fields are to be returned).
8551 */
Liran Alone2536742018-06-23 02:35:02 +03008552static inline int vmcs12_read_any(struct vmcs12 *vmcs12,
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008553 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03008554{
8555 short offset = vmcs_field_to_offset(field);
8556 char *p;
8557
8558 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008559 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03008560
Liran Alone2536742018-06-23 02:35:02 +03008561 p = (char *)vmcs12 + offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03008562
Jim Mattsond37f4262017-12-22 12:12:16 -08008563 switch (vmcs_field_width(field)) {
8564 case VMCS_FIELD_WIDTH_NATURAL_WIDTH:
Nadav Har'El49f705c2011-05-25 23:08:30 +03008565 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008566 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008567 case VMCS_FIELD_WIDTH_U16:
Nadav Har'El49f705c2011-05-25 23:08:30 +03008568 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008569 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008570 case VMCS_FIELD_WIDTH_U32:
Nadav Har'El49f705c2011-05-25 23:08:30 +03008571 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008572 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008573 case VMCS_FIELD_WIDTH_U64:
Nadav Har'El49f705c2011-05-25 23:08:30 +03008574 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008575 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03008576 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008577 WARN_ON(1);
8578 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03008579 }
8580}
8581
Abel Gordon20b97fe2013-04-18 14:36:25 +03008582
Liran Alone2536742018-06-23 02:35:02 +03008583static inline int vmcs12_write_any(struct vmcs12 *vmcs12,
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008584 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03008585 short offset = vmcs_field_to_offset(field);
Liran Alone2536742018-06-23 02:35:02 +03008586 char *p = (char *)vmcs12 + offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03008587 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008588 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03008589
Jim Mattsond37f4262017-12-22 12:12:16 -08008590 switch (vmcs_field_width(field)) {
8591 case VMCS_FIELD_WIDTH_U16:
Abel Gordon20b97fe2013-04-18 14:36:25 +03008592 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008593 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008594 case VMCS_FIELD_WIDTH_U32:
Abel Gordon20b97fe2013-04-18 14:36:25 +03008595 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008596 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008597 case VMCS_FIELD_WIDTH_U64:
Abel Gordon20b97fe2013-04-18 14:36:25 +03008598 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008599 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008600 case VMCS_FIELD_WIDTH_NATURAL_WIDTH:
Abel Gordon20b97fe2013-04-18 14:36:25 +03008601 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008602 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03008603 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008604 WARN_ON(1);
8605 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03008606 }
8607
8608}
8609
Jim Mattsonf4160e42018-05-29 09:11:33 -07008610/*
8611 * Copy the writable VMCS shadow fields back to the VMCS12, in case
8612 * they have been modified by the L1 guest. Note that the "read-only"
8613 * VM-exit information fields are actually writable if the vCPU is
8614 * configured to support "VMWRITE to any supported field in the VMCS."
8615 */
Abel Gordon16f5b902013-04-18 14:38:25 +03008616static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
8617{
Jim Mattsonf4160e42018-05-29 09:11:33 -07008618 const u16 *fields[] = {
8619 shadow_read_write_fields,
8620 shadow_read_only_fields
8621 };
8622 const int max_fields[] = {
8623 max_shadow_read_write_fields,
8624 max_shadow_read_only_fields
8625 };
8626 int i, q;
Abel Gordon16f5b902013-04-18 14:38:25 +03008627 unsigned long field;
8628 u64 field_value;
Jim Mattson355f4fb2016-10-28 08:29:39 -07008629 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Abel Gordon16f5b902013-04-18 14:38:25 +03008630
Jan Kiszka282da872014-10-08 18:05:39 +02008631 preempt_disable();
8632
Abel Gordon16f5b902013-04-18 14:38:25 +03008633 vmcs_load(shadow_vmcs);
8634
Jim Mattsonf4160e42018-05-29 09:11:33 -07008635 for (q = 0; q < ARRAY_SIZE(fields); q++) {
8636 for (i = 0; i < max_fields[q]; i++) {
8637 field = fields[q][i];
8638 field_value = __vmcs_readl(field);
Liran Alone2536742018-06-23 02:35:02 +03008639 vmcs12_write_any(get_vmcs12(&vmx->vcpu), field, field_value);
Jim Mattsonf4160e42018-05-29 09:11:33 -07008640 }
8641 /*
8642 * Skip the VM-exit information fields if they are read-only.
8643 */
8644 if (!nested_cpu_has_vmwrite_any_field(&vmx->vcpu))
8645 break;
Abel Gordon16f5b902013-04-18 14:38:25 +03008646 }
8647
8648 vmcs_clear(shadow_vmcs);
8649 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02008650
8651 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03008652}
8653
Abel Gordonc3114422013-04-18 14:38:55 +03008654static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
8655{
Paolo Bonzini44900ba2017-12-13 12:58:02 +01008656 const u16 *fields[] = {
Mathias Krausec2bae892013-06-26 20:36:21 +02008657 shadow_read_write_fields,
8658 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03008659 };
Mathias Krausec2bae892013-06-26 20:36:21 +02008660 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03008661 max_shadow_read_write_fields,
8662 max_shadow_read_only_fields
8663 };
8664 int i, q;
8665 unsigned long field;
8666 u64 field_value = 0;
Jim Mattson355f4fb2016-10-28 08:29:39 -07008667 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Abel Gordonc3114422013-04-18 14:38:55 +03008668
8669 vmcs_load(shadow_vmcs);
8670
Mathias Krausec2bae892013-06-26 20:36:21 +02008671 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03008672 for (i = 0; i < max_fields[q]; i++) {
8673 field = fields[q][i];
Liran Alone2536742018-06-23 02:35:02 +03008674 vmcs12_read_any(get_vmcs12(&vmx->vcpu), field, &field_value);
Paolo Bonzini44900ba2017-12-13 12:58:02 +01008675 __vmcs_writel(field, field_value);
Abel Gordonc3114422013-04-18 14:38:55 +03008676 }
8677 }
8678
8679 vmcs_clear(shadow_vmcs);
8680 vmcs_load(vmx->loaded_vmcs->vmcs);
8681}
8682
Nadav Har'El49f705c2011-05-25 23:08:30 +03008683/*
8684 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
8685 * used before) all generate the same failure when it is missing.
8686 */
8687static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
8688{
8689 struct vcpu_vmx *vmx = to_vmx(vcpu);
8690 if (vmx->nested.current_vmptr == -1ull) {
8691 nested_vmx_failInvalid(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008692 return 0;
8693 }
8694 return 1;
8695}
8696
8697static int handle_vmread(struct kvm_vcpu *vcpu)
8698{
8699 unsigned long field;
8700 u64 field_value;
8701 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8702 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
8703 gva_t gva = 0;
Liran Alon6d894f42018-06-23 02:35:09 +03008704 struct vmcs12 *vmcs12;
Nadav Har'El49f705c2011-05-25 23:08:30 +03008705
Kyle Hueyeb277562016-11-29 12:40:39 -08008706 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03008707 return 1;
8708
Kyle Huey6affcbe2016-11-29 12:40:40 -08008709 if (!nested_vmx_check_vmcs12(vcpu))
8710 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08008711
Liran Alon6d894f42018-06-23 02:35:09 +03008712 if (!is_guest_mode(vcpu))
8713 vmcs12 = get_vmcs12(vcpu);
8714 else {
8715 /*
8716 * When vmcs->vmcs_link_pointer is -1ull, any VMREAD
8717 * to shadowed-field sets the ALU flags for VMfailInvalid.
8718 */
8719 if (get_vmcs12(vcpu)->vmcs_link_pointer == -1ull) {
8720 nested_vmx_failInvalid(vcpu);
8721 return kvm_skip_emulated_instruction(vcpu);
8722 }
8723 vmcs12 = get_shadow_vmcs12(vcpu);
8724 }
8725
Nadav Har'El49f705c2011-05-25 23:08:30 +03008726 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03008727 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03008728 /* Read the field, zero-extended to a u64 field_value */
Liran Alon6d894f42018-06-23 02:35:09 +03008729 if (vmcs12_read_any(vmcs12, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03008730 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008731 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008732 }
8733 /*
8734 * Now copy part of this value to register or memory, as requested.
8735 * Note that the number of bits actually copied is 32 or 64 depending
8736 * on the guest's mode (32 or 64 bit), not on the given field's length.
8737 */
8738 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03008739 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03008740 field_value);
8741 } else {
8742 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008743 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03008744 return 1;
Felix Wilhelm727ba742018-06-11 09:43:44 +02008745 /* _system ok, nested_vmx_check_permission has verified cpl=0 */
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02008746 kvm_write_guest_virt_system(vcpu, gva, &field_value,
8747 (is_long_mode(vcpu) ? 8 : 4), NULL);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008748 }
8749
8750 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008751 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008752}
8753
8754
8755static int handle_vmwrite(struct kvm_vcpu *vcpu)
8756{
8757 unsigned long field;
8758 gva_t gva;
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008759 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008760 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8761 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008762
Nadav Har'El49f705c2011-05-25 23:08:30 +03008763 /* The value to write might be 32 or 64 bits, depending on L1's long
8764 * mode, and eventually we need to write that into a field of several
8765 * possible lengths. The code below first zero-extends the value to 64
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08008766 * bit (field_value), and then copies only the appropriate number of
Nadav Har'El49f705c2011-05-25 23:08:30 +03008767 * bits into the vmcs12 field.
8768 */
8769 u64 field_value = 0;
8770 struct x86_exception e;
Liran Alon6d894f42018-06-23 02:35:09 +03008771 struct vmcs12 *vmcs12;
Nadav Har'El49f705c2011-05-25 23:08:30 +03008772
Kyle Hueyeb277562016-11-29 12:40:39 -08008773 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03008774 return 1;
8775
Kyle Huey6affcbe2016-11-29 12:40:40 -08008776 if (!nested_vmx_check_vmcs12(vcpu))
8777 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08008778
Nadav Har'El49f705c2011-05-25 23:08:30 +03008779 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03008780 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008781 (((vmx_instruction_info) >> 3) & 0xf));
8782 else {
8783 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008784 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03008785 return 1;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02008786 if (kvm_read_guest_virt(vcpu, gva, &field_value,
8787 (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03008788 kvm_inject_page_fault(vcpu, &e);
8789 return 1;
8790 }
8791 }
8792
8793
Nadav Amit27e6fb52014-06-18 17:19:26 +03008794 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Jim Mattsonf4160e42018-05-29 09:11:33 -07008795 /*
8796 * If the vCPU supports "VMWRITE to any supported field in the
8797 * VMCS," then the "read-only" fields are actually read/write.
8798 */
8799 if (vmcs_field_readonly(field) &&
8800 !nested_cpu_has_vmwrite_any_field(vcpu)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03008801 nested_vmx_failValid(vcpu,
8802 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008803 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008804 }
8805
Liran Alon6d894f42018-06-23 02:35:09 +03008806 if (!is_guest_mode(vcpu))
8807 vmcs12 = get_vmcs12(vcpu);
8808 else {
8809 /*
8810 * When vmcs->vmcs_link_pointer is -1ull, any VMWRITE
8811 * to shadowed-field sets the ALU flags for VMfailInvalid.
8812 */
8813 if (get_vmcs12(vcpu)->vmcs_link_pointer == -1ull) {
8814 nested_vmx_failInvalid(vcpu);
8815 return kvm_skip_emulated_instruction(vcpu);
8816 }
8817 vmcs12 = get_shadow_vmcs12(vcpu);
8818
8819 }
8820
8821 if (vmcs12_write_any(vmcs12, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03008822 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008823 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008824 }
8825
Liran Alon6d894f42018-06-23 02:35:09 +03008826 /*
8827 * Do not track vmcs12 dirty-state if in guest-mode
8828 * as we actually dirty shadow vmcs12 instead of vmcs12.
8829 */
8830 if (!is_guest_mode(vcpu)) {
8831 switch (field) {
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008832#define SHADOW_FIELD_RW(x) case x:
8833#include "vmx_shadow_fields.h"
Liran Alon6d894f42018-06-23 02:35:09 +03008834 /*
8835 * The fields that can be updated by L1 without a vmexit are
8836 * always updated in the vmcs02, the others go down the slow
8837 * path of prepare_vmcs02.
8838 */
8839 break;
8840 default:
8841 vmx->nested.dirty_vmcs12 = true;
8842 break;
8843 }
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008844 }
8845
Nadav Har'El49f705c2011-05-25 23:08:30 +03008846 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008847 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008848}
8849
Jim Mattsona8bc2842016-11-30 12:03:44 -08008850static void set_current_vmptr(struct vcpu_vmx *vmx, gpa_t vmptr)
8851{
8852 vmx->nested.current_vmptr = vmptr;
8853 if (enable_shadow_vmcs) {
8854 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
8855 SECONDARY_EXEC_SHADOW_VMCS);
8856 vmcs_write64(VMCS_LINK_POINTER,
8857 __pa(vmx->vmcs01.shadow_vmcs));
8858 vmx->nested.sync_shadow_vmcs = true;
8859 }
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008860 vmx->nested.dirty_vmcs12 = true;
Jim Mattsona8bc2842016-11-30 12:03:44 -08008861}
8862
Nadav Har'El63846662011-05-25 23:07:29 +03008863/* Emulate the VMPTRLD instruction */
8864static int handle_vmptrld(struct kvm_vcpu *vcpu)
8865{
8866 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03008867 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03008868
8869 if (!nested_vmx_check_permission(vcpu))
8870 return 1;
8871
Radim Krčmářcbf71272017-05-19 15:48:51 +02008872 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03008873 return 1;
8874
Radim Krčmářcbf71272017-05-19 15:48:51 +02008875 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
8876 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS);
8877 return kvm_skip_emulated_instruction(vcpu);
8878 }
8879
8880 if (vmptr == vmx->nested.vmxon_ptr) {
8881 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_VMXON_POINTER);
8882 return kvm_skip_emulated_instruction(vcpu);
8883 }
8884
Nadav Har'El63846662011-05-25 23:07:29 +03008885 if (vmx->nested.current_vmptr != vmptr) {
8886 struct vmcs12 *new_vmcs12;
8887 struct page *page;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02008888 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
8889 if (is_error_page(page)) {
Nadav Har'El63846662011-05-25 23:07:29 +03008890 nested_vmx_failInvalid(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008891 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03008892 }
8893 new_vmcs12 = kmap(page);
Liran Alon392b2f22018-06-23 02:35:01 +03008894 if (new_vmcs12->hdr.revision_id != VMCS12_REVISION ||
Liran Alonfa97d7d2018-07-18 14:07:59 +02008895 (new_vmcs12->hdr.shadow_vmcs &&
8896 !nested_cpu_has_vmx_shadow_vmcs(vcpu))) {
Nadav Har'El63846662011-05-25 23:07:29 +03008897 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008898 kvm_release_page_clean(page);
Nadav Har'El63846662011-05-25 23:07:29 +03008899 nested_vmx_failValid(vcpu,
8900 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008901 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03008902 }
Nadav Har'El63846662011-05-25 23:07:29 +03008903
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008904 nested_release_vmcs12(vmx);
David Matlack4f2777b2016-07-13 17:16:37 -07008905 /*
8906 * Load VMCS12 from guest memory since it is not already
8907 * cached.
8908 */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02008909 memcpy(vmx->nested.cached_vmcs12, new_vmcs12, VMCS12_SIZE);
8910 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008911 kvm_release_page_clean(page);
Paolo Bonzini9f744c52017-07-27 15:54:46 +02008912
Jim Mattsona8bc2842016-11-30 12:03:44 -08008913 set_current_vmptr(vmx, vmptr);
Nadav Har'El63846662011-05-25 23:07:29 +03008914 }
8915
8916 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008917 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03008918}
8919
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008920/* Emulate the VMPTRST instruction */
8921static int handle_vmptrst(struct kvm_vcpu *vcpu)
8922{
Sean Christopherson0a06d422018-07-19 10:31:00 -07008923 unsigned long exit_qual = vmcs_readl(EXIT_QUALIFICATION);
8924 u32 instr_info = vmcs_read32(VMX_INSTRUCTION_INFO);
8925 gpa_t current_vmptr = to_vmx(vcpu)->nested.current_vmptr;
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008926 struct x86_exception e;
Sean Christopherson0a06d422018-07-19 10:31:00 -07008927 gva_t gva;
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008928
8929 if (!nested_vmx_check_permission(vcpu))
8930 return 1;
8931
Sean Christopherson0a06d422018-07-19 10:31:00 -07008932 if (get_vmx_mem_address(vcpu, exit_qual, instr_info, true, &gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008933 return 1;
Felix Wilhelm727ba742018-06-11 09:43:44 +02008934 /* *_system ok, nested_vmx_check_permission has verified cpl=0 */
Sean Christopherson0a06d422018-07-19 10:31:00 -07008935 if (kvm_write_guest_virt_system(vcpu, gva, (void *)&current_vmptr,
8936 sizeof(gpa_t), &e)) {
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008937 kvm_inject_page_fault(vcpu, &e);
8938 return 1;
8939 }
8940 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008941 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008942}
8943
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008944/* Emulate the INVEPT instruction */
8945static int handle_invept(struct kvm_vcpu *vcpu)
8946{
Wincy Vanb9c237b2015-02-03 23:56:30 +08008947 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008948 u32 vmx_instruction_info, types;
8949 unsigned long type;
8950 gva_t gva;
8951 struct x86_exception e;
8952 struct {
8953 u64 eptp, gpa;
8954 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008955
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008956 if (!(vmx->nested.msrs.secondary_ctls_high &
Wincy Vanb9c237b2015-02-03 23:56:30 +08008957 SECONDARY_EXEC_ENABLE_EPT) ||
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008958 !(vmx->nested.msrs.ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008959 kvm_queue_exception(vcpu, UD_VECTOR);
8960 return 1;
8961 }
8962
8963 if (!nested_vmx_check_permission(vcpu))
8964 return 1;
8965
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008966 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03008967 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008968
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008969 types = (vmx->nested.msrs.ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008970
Jim Mattson85c856b2016-10-26 08:38:38 -07008971 if (type >= 32 || !(types & (1 << type))) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008972 nested_vmx_failValid(vcpu,
8973 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008974 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008975 }
8976
8977 /* According to the Intel VMX instruction reference, the memory
8978 * operand is read even if it isn't needed (e.g., for type==global)
8979 */
8980 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008981 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008982 return 1;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02008983 if (kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008984 kvm_inject_page_fault(vcpu, &e);
8985 return 1;
8986 }
8987
8988 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008989 case VMX_EPT_EXTENT_GLOBAL:
Bandan Das45e11812016-08-02 16:32:36 -04008990 /*
8991 * TODO: track mappings and invalidate
8992 * single context requests appropriately
8993 */
8994 case VMX_EPT_EXTENT_CONTEXT:
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008995 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04008996 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008997 nested_vmx_succeed(vcpu);
8998 break;
8999 default:
9000 BUG_ON(1);
9001 break;
9002 }
9003
Kyle Huey6affcbe2016-11-29 12:40:40 -08009004 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03009005}
9006
Petr Matouseka642fc32014-09-23 20:22:30 +02009007static int handle_invvpid(struct kvm_vcpu *vcpu)
9008{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009009 struct vcpu_vmx *vmx = to_vmx(vcpu);
9010 u32 vmx_instruction_info;
9011 unsigned long type, types;
9012 gva_t gva;
9013 struct x86_exception e;
Jim Mattson40352602017-06-28 09:37:37 -07009014 struct {
9015 u64 vpid;
9016 u64 gla;
9017 } operand;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009018
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01009019 if (!(vmx->nested.msrs.secondary_ctls_high &
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009020 SECONDARY_EXEC_ENABLE_VPID) ||
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01009021 !(vmx->nested.msrs.vpid_caps & VMX_VPID_INVVPID_BIT)) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009022 kvm_queue_exception(vcpu, UD_VECTOR);
9023 return 1;
9024 }
9025
9026 if (!nested_vmx_check_permission(vcpu))
9027 return 1;
9028
9029 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
9030 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
9031
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01009032 types = (vmx->nested.msrs.vpid_caps &
Jan Dakinevichbcdde302016-10-28 07:00:30 +03009033 VMX_VPID_EXTENT_SUPPORTED_MASK) >> 8;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009034
Jim Mattson85c856b2016-10-26 08:38:38 -07009035 if (type >= 32 || !(types & (1 << type))) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009036 nested_vmx_failValid(vcpu,
9037 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08009038 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009039 }
9040
9041 /* according to the intel vmx instruction reference, the memory
9042 * operand is read even if it isn't needed (e.g., for type==global)
9043 */
9044 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
9045 vmx_instruction_info, false, &gva))
9046 return 1;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02009047 if (kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e)) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009048 kvm_inject_page_fault(vcpu, &e);
9049 return 1;
9050 }
Jim Mattson40352602017-06-28 09:37:37 -07009051 if (operand.vpid >> 16) {
9052 nested_vmx_failValid(vcpu,
9053 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
9054 return kvm_skip_emulated_instruction(vcpu);
9055 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009056
9057 switch (type) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03009058 case VMX_VPID_EXTENT_INDIVIDUAL_ADDR:
Liran Aloncd9a4912018-05-22 17:16:15 +03009059 if (!operand.vpid ||
9060 is_noncanonical_address(operand.gla, vcpu)) {
Jim Mattson40352602017-06-28 09:37:37 -07009061 nested_vmx_failValid(vcpu,
9062 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
9063 return kvm_skip_emulated_instruction(vcpu);
9064 }
Liran Aloncd9a4912018-05-22 17:16:15 +03009065 if (cpu_has_vmx_invvpid_individual_addr() &&
9066 vmx->nested.vpid02) {
9067 __invvpid(VMX_VPID_EXTENT_INDIVIDUAL_ADDR,
9068 vmx->nested.vpid02, operand.gla);
9069 } else
9070 __vmx_flush_tlb(vcpu, vmx->nested.vpid02, true);
9071 break;
Paolo Bonzinief697a72016-03-18 16:58:38 +01009072 case VMX_VPID_EXTENT_SINGLE_CONTEXT:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03009073 case VMX_VPID_EXTENT_SINGLE_NON_GLOBAL:
Jim Mattson40352602017-06-28 09:37:37 -07009074 if (!operand.vpid) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03009075 nested_vmx_failValid(vcpu,
9076 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08009077 return kvm_skip_emulated_instruction(vcpu);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03009078 }
Liran Aloncd9a4912018-05-22 17:16:15 +03009079 __vmx_flush_tlb(vcpu, vmx->nested.vpid02, true);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03009080 break;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009081 case VMX_VPID_EXTENT_ALL_CONTEXT:
Liran Aloncd9a4912018-05-22 17:16:15 +03009082 __vmx_flush_tlb(vcpu, vmx->nested.vpid02, true);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009083 break;
9084 default:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03009085 WARN_ON_ONCE(1);
Kyle Huey6affcbe2016-11-29 12:40:40 -08009086 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009087 }
9088
Jan Dakinevichbcdde302016-10-28 07:00:30 +03009089 nested_vmx_succeed(vcpu);
9090
Kyle Huey6affcbe2016-11-29 12:40:40 -08009091 return kvm_skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02009092}
9093
Junaid Shahideb4b2482018-06-27 14:59:14 -07009094static int handle_invpcid(struct kvm_vcpu *vcpu)
9095{
9096 u32 vmx_instruction_info;
9097 unsigned long type;
9098 bool pcid_enabled;
9099 gva_t gva;
9100 struct x86_exception e;
Junaid Shahidb94742c2018-06-27 14:59:20 -07009101 unsigned i;
9102 unsigned long roots_to_free = 0;
Junaid Shahideb4b2482018-06-27 14:59:14 -07009103 struct {
9104 u64 pcid;
9105 u64 gla;
9106 } operand;
9107
9108 if (!guest_cpuid_has(vcpu, X86_FEATURE_INVPCID)) {
9109 kvm_queue_exception(vcpu, UD_VECTOR);
9110 return 1;
9111 }
9112
9113 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
9114 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
9115
9116 if (type > 3) {
9117 kvm_inject_gp(vcpu, 0);
9118 return 1;
9119 }
9120
9121 /* According to the Intel instruction reference, the memory operand
9122 * is read even if it isn't needed (e.g., for type==all)
9123 */
9124 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
9125 vmx_instruction_info, false, &gva))
9126 return 1;
9127
9128 if (kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e)) {
9129 kvm_inject_page_fault(vcpu, &e);
9130 return 1;
9131 }
9132
9133 if (operand.pcid >> 12 != 0) {
9134 kvm_inject_gp(vcpu, 0);
9135 return 1;
9136 }
9137
9138 pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
9139
9140 switch (type) {
9141 case INVPCID_TYPE_INDIV_ADDR:
9142 if ((!pcid_enabled && (operand.pcid != 0)) ||
9143 is_noncanonical_address(operand.gla, vcpu)) {
9144 kvm_inject_gp(vcpu, 0);
9145 return 1;
9146 }
9147 kvm_mmu_invpcid_gva(vcpu, operand.gla, operand.pcid);
9148 return kvm_skip_emulated_instruction(vcpu);
9149
9150 case INVPCID_TYPE_SINGLE_CTXT:
9151 if (!pcid_enabled && (operand.pcid != 0)) {
9152 kvm_inject_gp(vcpu, 0);
9153 return 1;
9154 }
9155
9156 if (kvm_get_active_pcid(vcpu) == operand.pcid) {
9157 kvm_mmu_sync_roots(vcpu);
9158 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
9159 }
9160
Junaid Shahidb94742c2018-06-27 14:59:20 -07009161 for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++)
9162 if (kvm_get_pcid(vcpu, vcpu->arch.mmu.prev_roots[i].cr3)
9163 == operand.pcid)
9164 roots_to_free |= KVM_MMU_ROOT_PREVIOUS(i);
Junaid Shahidade61e22018-06-27 14:59:15 -07009165
Junaid Shahidb94742c2018-06-27 14:59:20 -07009166 kvm_mmu_free_roots(vcpu, roots_to_free);
Junaid Shahideb4b2482018-06-27 14:59:14 -07009167 /*
Junaid Shahidb94742c2018-06-27 14:59:20 -07009168 * If neither the current cr3 nor any of the prev_roots use the
Junaid Shahidade61e22018-06-27 14:59:15 -07009169 * given PCID, then nothing needs to be done here because a
9170 * resync will happen anyway before switching to any other CR3.
Junaid Shahideb4b2482018-06-27 14:59:14 -07009171 */
9172
9173 return kvm_skip_emulated_instruction(vcpu);
9174
9175 case INVPCID_TYPE_ALL_NON_GLOBAL:
9176 /*
9177 * Currently, KVM doesn't mark global entries in the shadow
9178 * page tables, so a non-global flush just degenerates to a
9179 * global flush. If needed, we could optimize this later by
9180 * keeping track of global entries in shadow page tables.
9181 */
9182
9183 /* fall-through */
9184 case INVPCID_TYPE_ALL_INCL_GLOBAL:
9185 kvm_mmu_unload(vcpu);
9186 return kvm_skip_emulated_instruction(vcpu);
9187
9188 default:
9189 BUG(); /* We have already checked above that type <= 3 */
9190 }
9191}
9192
Kai Huang843e4332015-01-28 10:54:28 +08009193static int handle_pml_full(struct kvm_vcpu *vcpu)
9194{
9195 unsigned long exit_qualification;
9196
9197 trace_kvm_pml_full(vcpu->vcpu_id);
9198
9199 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
9200
9201 /*
9202 * PML buffer FULL happened while executing iret from NMI,
9203 * "blocked by NMI" bit has to be set before next VM entry.
9204 */
9205 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01009206 enable_vnmi &&
Kai Huang843e4332015-01-28 10:54:28 +08009207 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
9208 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
9209 GUEST_INTR_STATE_NMI);
9210
9211 /*
9212 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
9213 * here.., and there's no userspace involvement needed for PML.
9214 */
9215 return 1;
9216}
9217
Yunhong Jiang64672c92016-06-13 14:19:59 -07009218static int handle_preemption_timer(struct kvm_vcpu *vcpu)
9219{
Sean Christophersond264ee02018-08-27 15:21:12 -07009220 if (!to_vmx(vcpu)->req_immediate_exit)
9221 kvm_lapic_expired_hv_timer(vcpu);
Yunhong Jiang64672c92016-06-13 14:19:59 -07009222 return 1;
9223}
9224
Bandan Das41ab9372017-08-03 15:54:43 -04009225static bool valid_ept_address(struct kvm_vcpu *vcpu, u64 address)
9226{
9227 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das41ab9372017-08-03 15:54:43 -04009228 int maxphyaddr = cpuid_maxphyaddr(vcpu);
9229
9230 /* Check for memory type validity */
David Hildenbrandbb97a012017-08-10 23:15:28 +02009231 switch (address & VMX_EPTP_MT_MASK) {
9232 case VMX_EPTP_MT_UC:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01009233 if (!(vmx->nested.msrs.ept_caps & VMX_EPTP_UC_BIT))
Bandan Das41ab9372017-08-03 15:54:43 -04009234 return false;
9235 break;
David Hildenbrandbb97a012017-08-10 23:15:28 +02009236 case VMX_EPTP_MT_WB:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01009237 if (!(vmx->nested.msrs.ept_caps & VMX_EPTP_WB_BIT))
Bandan Das41ab9372017-08-03 15:54:43 -04009238 return false;
9239 break;
9240 default:
9241 return false;
9242 }
9243
David Hildenbrandbb97a012017-08-10 23:15:28 +02009244 /* only 4 levels page-walk length are valid */
9245 if ((address & VMX_EPTP_PWL_MASK) != VMX_EPTP_PWL_4)
Bandan Das41ab9372017-08-03 15:54:43 -04009246 return false;
9247
9248 /* Reserved bits should not be set */
9249 if (address >> maxphyaddr || ((address >> 7) & 0x1f))
9250 return false;
9251
9252 /* AD, if set, should be supported */
David Hildenbrandbb97a012017-08-10 23:15:28 +02009253 if (address & VMX_EPTP_AD_ENABLE_BIT) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01009254 if (!(vmx->nested.msrs.ept_caps & VMX_EPT_AD_BIT))
Bandan Das41ab9372017-08-03 15:54:43 -04009255 return false;
9256 }
9257
9258 return true;
9259}
9260
9261static int nested_vmx_eptp_switching(struct kvm_vcpu *vcpu,
9262 struct vmcs12 *vmcs12)
9263{
9264 u32 index = vcpu->arch.regs[VCPU_REGS_RCX];
9265 u64 address;
9266 bool accessed_dirty;
9267 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
9268
9269 if (!nested_cpu_has_eptp_switching(vmcs12) ||
9270 !nested_cpu_has_ept(vmcs12))
9271 return 1;
9272
9273 if (index >= VMFUNC_EPTP_ENTRIES)
9274 return 1;
9275
9276
9277 if (kvm_vcpu_read_guest_page(vcpu, vmcs12->eptp_list_address >> PAGE_SHIFT,
9278 &address, index * 8, 8))
9279 return 1;
9280
David Hildenbrandbb97a012017-08-10 23:15:28 +02009281 accessed_dirty = !!(address & VMX_EPTP_AD_ENABLE_BIT);
Bandan Das41ab9372017-08-03 15:54:43 -04009282
9283 /*
9284 * If the (L2) guest does a vmfunc to the currently
9285 * active ept pointer, we don't have to do anything else
9286 */
9287 if (vmcs12->ept_pointer != address) {
9288 if (!valid_ept_address(vcpu, address))
9289 return 1;
9290
9291 kvm_mmu_unload(vcpu);
9292 mmu->ept_ad = accessed_dirty;
9293 mmu->base_role.ad_disabled = !accessed_dirty;
9294 vmcs12->ept_pointer = address;
9295 /*
9296 * TODO: Check what's the correct approach in case
9297 * mmu reload fails. Currently, we just let the next
9298 * reload potentially fail
9299 */
9300 kvm_mmu_reload(vcpu);
9301 }
9302
9303 return 0;
9304}
9305
Bandan Das2a499e42017-08-03 15:54:41 -04009306static int handle_vmfunc(struct kvm_vcpu *vcpu)
9307{
Bandan Das27c42a12017-08-03 15:54:42 -04009308 struct vcpu_vmx *vmx = to_vmx(vcpu);
9309 struct vmcs12 *vmcs12;
9310 u32 function = vcpu->arch.regs[VCPU_REGS_RAX];
9311
9312 /*
9313 * VMFUNC is only supported for nested guests, but we always enable the
9314 * secondary control for simplicity; for non-nested mode, fake that we
9315 * didn't by injecting #UD.
9316 */
9317 if (!is_guest_mode(vcpu)) {
9318 kvm_queue_exception(vcpu, UD_VECTOR);
9319 return 1;
9320 }
9321
9322 vmcs12 = get_vmcs12(vcpu);
9323 if ((vmcs12->vm_function_control & (1 << function)) == 0)
9324 goto fail;
Bandan Das41ab9372017-08-03 15:54:43 -04009325
9326 switch (function) {
9327 case 0:
9328 if (nested_vmx_eptp_switching(vcpu, vmcs12))
9329 goto fail;
9330 break;
9331 default:
9332 goto fail;
9333 }
9334 return kvm_skip_emulated_instruction(vcpu);
Bandan Das27c42a12017-08-03 15:54:42 -04009335
9336fail:
9337 nested_vmx_vmexit(vcpu, vmx->exit_reason,
9338 vmcs_read32(VM_EXIT_INTR_INFO),
9339 vmcs_readl(EXIT_QUALIFICATION));
Bandan Das2a499e42017-08-03 15:54:41 -04009340 return 1;
9341}
9342
Sean Christopherson0b665d32018-08-14 09:33:34 -07009343static int handle_encls(struct kvm_vcpu *vcpu)
9344{
9345 /*
9346 * SGX virtualization is not yet supported. There is no software
9347 * enable bit for SGX, so we have to trap ENCLS and inject a #UD
9348 * to prevent the guest from executing ENCLS.
9349 */
9350 kvm_queue_exception(vcpu, UD_VECTOR);
9351 return 1;
9352}
9353
Nadav Har'El0140cae2011-05-25 23:06:28 +03009354/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08009355 * The exit handlers return 1 if the exit was handled fully and guest execution
9356 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
9357 * to be done to userspace and return 0.
9358 */
Mathias Krause772e0312012-08-30 01:30:19 +02009359static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08009360 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
9361 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08009362 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08009363 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08009364 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08009365 [EXIT_REASON_CR_ACCESS] = handle_cr,
9366 [EXIT_REASON_DR_ACCESS] = handle_dr,
9367 [EXIT_REASON_CPUID] = handle_cpuid,
9368 [EXIT_REASON_MSR_READ] = handle_rdmsr,
9369 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
9370 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
9371 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02009372 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03009373 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02009374 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02009375 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03009376 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009377 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03009378 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03009379 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03009380 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009381 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03009382 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03009383 [EXIT_REASON_VMOFF] = handle_vmoff,
9384 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08009385 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
9386 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08009387 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08009388 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02009389 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08009390 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02009391 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08009392 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Paolo Bonzini0367f202016-07-12 10:44:55 +02009393 [EXIT_REASON_GDTR_IDTR] = handle_desc,
9394 [EXIT_REASON_LDTR_TR] = handle_desc,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03009395 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
9396 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08009397 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04009398 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03009399 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04009400 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03009401 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02009402 [EXIT_REASON_INVVPID] = handle_invvpid,
Jim Mattson45ec3682017-08-23 16:32:04 -07009403 [EXIT_REASON_RDRAND] = handle_invalid_op,
Jim Mattson75f4fc82017-08-23 16:32:03 -07009404 [EXIT_REASON_RDSEED] = handle_invalid_op,
Wanpeng Lif53cd632014-12-02 19:14:58 +08009405 [EXIT_REASON_XSAVES] = handle_xsaves,
9406 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08009407 [EXIT_REASON_PML_FULL] = handle_pml_full,
Junaid Shahideb4b2482018-06-27 14:59:14 -07009408 [EXIT_REASON_INVPCID] = handle_invpcid,
Bandan Das2a499e42017-08-03 15:54:41 -04009409 [EXIT_REASON_VMFUNC] = handle_vmfunc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07009410 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Sean Christopherson0b665d32018-08-14 09:33:34 -07009411 [EXIT_REASON_ENCLS] = handle_encls,
Avi Kivity6aa8b732006-12-10 02:21:36 -08009412};
9413
9414static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04009415 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009416
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009417static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
9418 struct vmcs12 *vmcs12)
9419{
9420 unsigned long exit_qualification;
9421 gpa_t bitmap, last_bitmap;
9422 unsigned int port;
9423 int size;
9424 u8 b;
9425
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009426 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05009427 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009428
9429 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
9430
9431 port = exit_qualification >> 16;
9432 size = (exit_qualification & 7) + 1;
9433
9434 last_bitmap = (gpa_t)-1;
9435 b = -1;
9436
9437 while (size > 0) {
9438 if (port < 0x8000)
9439 bitmap = vmcs12->io_bitmap_a;
9440 else if (port < 0x10000)
9441 bitmap = vmcs12->io_bitmap_b;
9442 else
Joe Perches1d804d02015-03-30 16:46:09 -07009443 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009444 bitmap += (port & 0x7fff) / 8;
9445
9446 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009447 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07009448 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009449 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07009450 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009451
9452 port++;
9453 size--;
9454 last_bitmap = bitmap;
9455 }
9456
Joe Perches1d804d02015-03-30 16:46:09 -07009457 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009458}
9459
Nadav Har'El644d7112011-05-25 23:12:35 +03009460/*
9461 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
9462 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
9463 * disinterest in the current event (read or write a specific MSR) by using an
9464 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
9465 */
9466static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
9467 struct vmcs12 *vmcs12, u32 exit_reason)
9468{
9469 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
9470 gpa_t bitmap;
9471
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01009472 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07009473 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009474
9475 /*
9476 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
9477 * for the four combinations of read/write and low/high MSR numbers.
9478 * First we need to figure out which of the four to use:
9479 */
9480 bitmap = vmcs12->msr_bitmap;
9481 if (exit_reason == EXIT_REASON_MSR_WRITE)
9482 bitmap += 2048;
9483 if (msr_index >= 0xc0000000) {
9484 msr_index -= 0xc0000000;
9485 bitmap += 1024;
9486 }
9487
9488 /* Then read the msr_index'th bit from this bitmap: */
9489 if (msr_index < 1024*8) {
9490 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009491 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07009492 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009493 return 1 & (b >> (msr_index & 7));
9494 } else
Joe Perches1d804d02015-03-30 16:46:09 -07009495 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03009496}
9497
9498/*
9499 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
9500 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
9501 * intercept (via guest_host_mask etc.) the current event.
9502 */
9503static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
9504 struct vmcs12 *vmcs12)
9505{
9506 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
9507 int cr = exit_qualification & 15;
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02009508 int reg;
9509 unsigned long val;
Nadav Har'El644d7112011-05-25 23:12:35 +03009510
9511 switch ((exit_qualification >> 4) & 3) {
9512 case 0: /* mov to cr */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02009513 reg = (exit_qualification >> 8) & 15;
9514 val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03009515 switch (cr) {
9516 case 0:
9517 if (vmcs12->cr0_guest_host_mask &
9518 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07009519 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009520 break;
9521 case 3:
9522 if ((vmcs12->cr3_target_count >= 1 &&
9523 vmcs12->cr3_target_value0 == val) ||
9524 (vmcs12->cr3_target_count >= 2 &&
9525 vmcs12->cr3_target_value1 == val) ||
9526 (vmcs12->cr3_target_count >= 3 &&
9527 vmcs12->cr3_target_value2 == val) ||
9528 (vmcs12->cr3_target_count >= 4 &&
9529 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07009530 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009531 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07009532 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009533 break;
9534 case 4:
9535 if (vmcs12->cr4_guest_host_mask &
9536 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07009537 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009538 break;
9539 case 8:
9540 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07009541 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009542 break;
9543 }
9544 break;
9545 case 2: /* clts */
9546 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
9547 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07009548 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009549 break;
9550 case 1: /* mov from cr */
9551 switch (cr) {
9552 case 3:
9553 if (vmcs12->cpu_based_vm_exec_control &
9554 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07009555 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009556 break;
9557 case 8:
9558 if (vmcs12->cpu_based_vm_exec_control &
9559 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07009560 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009561 break;
9562 }
9563 break;
9564 case 3: /* lmsw */
9565 /*
9566 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
9567 * cr0. Other attempted changes are ignored, with no exit.
9568 */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02009569 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Nadav Har'El644d7112011-05-25 23:12:35 +03009570 if (vmcs12->cr0_guest_host_mask & 0xe &
9571 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07009572 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009573 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
9574 !(vmcs12->cr0_read_shadow & 0x1) &&
9575 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07009576 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009577 break;
9578 }
Joe Perches1d804d02015-03-30 16:46:09 -07009579 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009580}
9581
Liran Alona7cde482018-06-23 02:35:10 +03009582static bool nested_vmx_exit_handled_vmcs_access(struct kvm_vcpu *vcpu,
9583 struct vmcs12 *vmcs12, gpa_t bitmap)
9584{
9585 u32 vmx_instruction_info;
9586 unsigned long field;
9587 u8 b;
9588
9589 if (!nested_cpu_has_shadow_vmcs(vmcs12))
9590 return true;
9591
9592 /* Decode instruction info and find the field to access */
9593 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
9594 field = kvm_register_read(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
9595
9596 /* Out-of-range fields always cause a VM exit from L2 to L1 */
9597 if (field >> 15)
9598 return true;
9599
9600 if (kvm_vcpu_read_guest(vcpu, bitmap + field/8, &b, 1))
9601 return true;
9602
9603 return 1 & (b >> (field & 7));
9604}
9605
Nadav Har'El644d7112011-05-25 23:12:35 +03009606/*
9607 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
9608 * should handle it ourselves in L0 (and then continue L2). Only call this
9609 * when in is_guest_mode (L2).
9610 */
Paolo Bonzini7313c692017-07-27 10:31:25 +02009611static bool nested_vmx_exit_reflected(struct kvm_vcpu *vcpu, u32 exit_reason)
Nadav Har'El644d7112011-05-25 23:12:35 +03009612{
Nadav Har'El644d7112011-05-25 23:12:35 +03009613 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9614 struct vcpu_vmx *vmx = to_vmx(vcpu);
9615 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9616
Jim Mattson4f350c62017-09-14 16:31:44 -07009617 if (vmx->nested.nested_run_pending)
9618 return false;
9619
9620 if (unlikely(vmx->fail)) {
9621 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
9622 vmcs_read32(VM_INSTRUCTION_ERROR));
9623 return true;
9624 }
Jan Kiszka542060e2014-01-04 18:47:21 +01009625
David Matlackc9f04402017-08-01 14:00:40 -07009626 /*
9627 * The host physical addresses of some pages of guest memory
Jim Mattsonde3a0022017-11-27 17:22:25 -06009628 * are loaded into the vmcs02 (e.g. vmcs12's Virtual APIC
9629 * Page). The CPU may write to these pages via their host
9630 * physical address while L2 is running, bypassing any
9631 * address-translation-based dirty tracking (e.g. EPT write
9632 * protection).
David Matlackc9f04402017-08-01 14:00:40 -07009633 *
9634 * Mark them dirty on every exit from L2 to prevent them from
9635 * getting out of sync with dirty tracking.
9636 */
9637 nested_mark_vmcs12_pages_dirty(vcpu);
9638
Jim Mattson4f350c62017-09-14 16:31:44 -07009639 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
9640 vmcs_readl(EXIT_QUALIFICATION),
9641 vmx->idt_vectoring_info,
9642 intr_info,
9643 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
9644 KVM_ISA_VMX);
Nadav Har'El644d7112011-05-25 23:12:35 +03009645
9646 switch (exit_reason) {
9647 case EXIT_REASON_EXCEPTION_NMI:
Jim Mattsonef85b672016-12-12 11:01:37 -08009648 if (is_nmi(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07009649 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009650 else if (is_page_fault(intr_info))
Wanpeng Li52a5c152017-07-13 18:30:42 -07009651 return !vmx->vcpu.arch.apf.host_apf_reason && enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01009652 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01009653 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07009654 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01009655 else if (is_debug(intr_info) &&
9656 vcpu->guest_debug &
9657 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
9658 return false;
9659 else if (is_breakpoint(intr_info) &&
9660 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
9661 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009662 return vmcs12->exception_bitmap &
9663 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
9664 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07009665 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009666 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07009667 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009668 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02009669 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03009670 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02009671 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03009672 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07009673 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009674 case EXIT_REASON_CPUID:
Joe Perches1d804d02015-03-30 16:46:09 -07009675 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009676 case EXIT_REASON_HLT:
9677 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
9678 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07009679 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009680 case EXIT_REASON_INVLPG:
9681 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
9682 case EXIT_REASON_RDPMC:
9683 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02009684 case EXIT_REASON_RDRAND:
David Hildenbrand736fdf72017-08-24 20:51:37 +02009685 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDRAND_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02009686 case EXIT_REASON_RDSEED:
David Hildenbrand736fdf72017-08-24 20:51:37 +02009687 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDSEED_EXITING);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01009688 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03009689 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
Liran Alona7cde482018-06-23 02:35:10 +03009690 case EXIT_REASON_VMREAD:
9691 return nested_vmx_exit_handled_vmcs_access(vcpu, vmcs12,
9692 vmcs12->vmread_bitmap);
9693 case EXIT_REASON_VMWRITE:
9694 return nested_vmx_exit_handled_vmcs_access(vcpu, vmcs12,
9695 vmcs12->vmwrite_bitmap);
Nadav Har'El644d7112011-05-25 23:12:35 +03009696 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
9697 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
Liran Alona7cde482018-06-23 02:35:10 +03009698 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMRESUME:
Nadav Har'El644d7112011-05-25 23:12:35 +03009699 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02009700 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03009701 /*
9702 * VMX instructions trap unconditionally. This allows L1 to
9703 * emulate them for its L2 guest, i.e., allows 3-level nesting!
9704 */
Joe Perches1d804d02015-03-30 16:46:09 -07009705 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009706 case EXIT_REASON_CR_ACCESS:
9707 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
9708 case EXIT_REASON_DR_ACCESS:
9709 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
9710 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009711 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Paolo Bonzini1b073042016-10-25 16:06:30 +02009712 case EXIT_REASON_GDTR_IDTR: case EXIT_REASON_LDTR_TR:
9713 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC);
Nadav Har'El644d7112011-05-25 23:12:35 +03009714 case EXIT_REASON_MSR_READ:
9715 case EXIT_REASON_MSR_WRITE:
9716 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
9717 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07009718 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009719 case EXIT_REASON_MWAIT_INSTRUCTION:
9720 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03009721 case EXIT_REASON_MONITOR_TRAP_FLAG:
9722 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03009723 case EXIT_REASON_MONITOR_INSTRUCTION:
9724 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
9725 case EXIT_REASON_PAUSE_INSTRUCTION:
9726 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
9727 nested_cpu_has2(vmcs12,
9728 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
9729 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07009730 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009731 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009732 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03009733 case EXIT_REASON_APIC_ACCESS:
Wincy Van82f0dd42015-02-03 23:57:18 +08009734 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08009735 case EXIT_REASON_EOI_INDUCED:
Jim Mattsonab5df312018-05-09 17:02:03 -04009736 /*
9737 * The controls for "virtualize APIC accesses," "APIC-
9738 * register virtualization," and "virtual-interrupt
9739 * delivery" only come from vmcs12.
9740 */
Joe Perches1d804d02015-03-30 16:46:09 -07009741 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009742 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03009743 /*
9744 * L0 always deals with the EPT violation. If nested EPT is
9745 * used, and the nested mmu code discovers that the address is
9746 * missing in the guest EPT table (EPT12), the EPT violation
9747 * will be injected with nested_ept_inject_page_fault()
9748 */
Joe Perches1d804d02015-03-30 16:46:09 -07009749 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009750 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03009751 /*
9752 * L2 never uses directly L1's EPT, but rather L0's own EPT
9753 * table (shadow on EPT) or a merged EPT table that L0 built
9754 * (EPT on EPT). So any problems with the structure of the
9755 * table is L0's fault.
9756 */
Joe Perches1d804d02015-03-30 16:46:09 -07009757 return false;
Paolo Bonzini90a2db62017-07-27 13:22:13 +02009758 case EXIT_REASON_INVPCID:
9759 return
9760 nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_INVPCID) &&
9761 nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
Nadav Har'El644d7112011-05-25 23:12:35 +03009762 case EXIT_REASON_WBINVD:
9763 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
9764 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07009765 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08009766 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
9767 /*
9768 * This should never happen, since it is not possible to
9769 * set XSS to a non-zero value---neither in L1 nor in L2.
9770 * If if it were, XSS would have to be checked against
9771 * the XSS exit bitmap in vmcs12.
9772 */
9773 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li55123e32016-07-06 18:29:58 +08009774 case EXIT_REASON_PREEMPTION_TIMER:
9775 return false;
Ladi Prosekab007cc2017-03-31 10:19:26 +02009776 case EXIT_REASON_PML_FULL:
Bandan Das03efce62017-05-05 15:25:15 -04009777 /* We emulate PML support to L1. */
Ladi Prosekab007cc2017-03-31 10:19:26 +02009778 return false;
Bandan Das2a499e42017-08-03 15:54:41 -04009779 case EXIT_REASON_VMFUNC:
9780 /* VM functions are emulated through L2->L0 vmexits. */
9781 return false;
Sean Christopherson0b665d32018-08-14 09:33:34 -07009782 case EXIT_REASON_ENCLS:
9783 /* SGX is never exposed to L1 */
9784 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009785 default:
Joe Perches1d804d02015-03-30 16:46:09 -07009786 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009787 }
9788}
9789
Paolo Bonzini7313c692017-07-27 10:31:25 +02009790static int nested_vmx_reflect_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason)
9791{
9792 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9793
9794 /*
9795 * At this point, the exit interruption info in exit_intr_info
9796 * is only valid for EXCEPTION_NMI exits. For EXTERNAL_INTERRUPT
9797 * we need to query the in-kernel LAPIC.
9798 */
9799 WARN_ON(exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT);
9800 if ((exit_intr_info &
9801 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
9802 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) {
9803 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9804 vmcs12->vm_exit_intr_error_code =
9805 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
9806 }
9807
9808 nested_vmx_vmexit(vcpu, exit_reason, exit_intr_info,
9809 vmcs_readl(EXIT_QUALIFICATION));
9810 return 1;
9811}
9812
Avi Kivity586f9602010-11-18 13:09:54 +02009813static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
9814{
9815 *info1 = vmcs_readl(EXIT_QUALIFICATION);
9816 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
9817}
9818
Kai Huanga3eaa862015-11-04 13:46:05 +08009819static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08009820{
Kai Huanga3eaa862015-11-04 13:46:05 +08009821 if (vmx->pml_pg) {
9822 __free_page(vmx->pml_pg);
9823 vmx->pml_pg = NULL;
9824 }
Kai Huang843e4332015-01-28 10:54:28 +08009825}
9826
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009827static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08009828{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009829 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08009830 u64 *pml_buf;
9831 u16 pml_idx;
9832
9833 pml_idx = vmcs_read16(GUEST_PML_INDEX);
9834
9835 /* Do nothing if PML buffer is empty */
9836 if (pml_idx == (PML_ENTITY_NUM - 1))
9837 return;
9838
9839 /* PML index always points to next available PML buffer entity */
9840 if (pml_idx >= PML_ENTITY_NUM)
9841 pml_idx = 0;
9842 else
9843 pml_idx++;
9844
9845 pml_buf = page_address(vmx->pml_pg);
9846 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
9847 u64 gpa;
9848
9849 gpa = pml_buf[pml_idx];
9850 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009851 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08009852 }
9853
9854 /* reset PML index */
9855 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
9856}
9857
9858/*
9859 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
9860 * Called before reporting dirty_bitmap to userspace.
9861 */
9862static void kvm_flush_pml_buffers(struct kvm *kvm)
9863{
9864 int i;
9865 struct kvm_vcpu *vcpu;
9866 /*
9867 * We only need to kick vcpu out of guest mode here, as PML buffer
9868 * is flushed at beginning of all VMEXITs, and it's obvious that only
9869 * vcpus running in guest are possible to have unflushed GPAs in PML
9870 * buffer.
9871 */
9872 kvm_for_each_vcpu(i, vcpu, kvm)
9873 kvm_vcpu_kick(vcpu);
9874}
9875
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009876static void vmx_dump_sel(char *name, uint32_t sel)
9877{
9878 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05009879 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009880 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
9881 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
9882 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
9883}
9884
9885static void vmx_dump_dtsel(char *name, uint32_t limit)
9886{
9887 pr_err("%s limit=0x%08x, base=0x%016lx\n",
9888 name, vmcs_read32(limit),
9889 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
9890}
9891
9892static void dump_vmcs(void)
9893{
9894 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
9895 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
9896 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
9897 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
9898 u32 secondary_exec_control = 0;
9899 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01009900 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009901 int i, n;
9902
9903 if (cpu_has_secondary_exec_ctrls())
9904 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
9905
9906 pr_err("*** Guest State ***\n");
9907 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
9908 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
9909 vmcs_readl(CR0_GUEST_HOST_MASK));
9910 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
9911 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
9912 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
9913 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
9914 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
9915 {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009916 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
9917 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
9918 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
9919 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009920 }
9921 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
9922 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
9923 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
9924 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
9925 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
9926 vmcs_readl(GUEST_SYSENTER_ESP),
9927 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
9928 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
9929 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
9930 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
9931 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
9932 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
9933 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
9934 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
9935 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
9936 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
9937 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
9938 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
9939 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009940 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
9941 efer, vmcs_read64(GUEST_IA32_PAT));
9942 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
9943 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009944 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009945 if (cpu_has_load_perf_global_ctrl &&
9946 vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009947 pr_err("PerfGlobCtl = 0x%016llx\n",
9948 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009949 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009950 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009951 pr_err("Interruptibility = %08x ActivityState = %08x\n",
9952 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
9953 vmcs_read32(GUEST_ACTIVITY_STATE));
9954 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
9955 pr_err("InterruptStatus = %04x\n",
9956 vmcs_read16(GUEST_INTR_STATUS));
9957
9958 pr_err("*** Host State ***\n");
9959 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
9960 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
9961 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
9962 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
9963 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
9964 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
9965 vmcs_read16(HOST_TR_SELECTOR));
9966 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
9967 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
9968 vmcs_readl(HOST_TR_BASE));
9969 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
9970 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
9971 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
9972 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
9973 vmcs_readl(HOST_CR4));
9974 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
9975 vmcs_readl(HOST_IA32_SYSENTER_ESP),
9976 vmcs_read32(HOST_IA32_SYSENTER_CS),
9977 vmcs_readl(HOST_IA32_SYSENTER_EIP));
9978 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009979 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
9980 vmcs_read64(HOST_IA32_EFER),
9981 vmcs_read64(HOST_IA32_PAT));
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009982 if (cpu_has_load_perf_global_ctrl &&
9983 vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009984 pr_err("PerfGlobCtl = 0x%016llx\n",
9985 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009986
9987 pr_err("*** Control State ***\n");
9988 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
9989 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
9990 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
9991 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
9992 vmcs_read32(EXCEPTION_BITMAP),
9993 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
9994 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
9995 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
9996 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
9997 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
9998 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
9999 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
10000 vmcs_read32(VM_EXIT_INTR_INFO),
10001 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
10002 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
10003 pr_err(" reason=%08x qualification=%016lx\n",
10004 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
10005 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
10006 vmcs_read32(IDT_VECTORING_INFO_FIELD),
10007 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +010010008 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +080010009 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +010010010 pr_err("TSC Multiplier = 0x%016llx\n",
10011 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +020010012 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
10013 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
10014 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
10015 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
10016 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +010010017 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +020010018 n = vmcs_read32(CR3_TARGET_COUNT);
10019 for (i = 0; i + 1 < n; i += 4)
10020 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
10021 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
10022 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
10023 if (i < n)
10024 pr_err("CR3 target%u=%016lx\n",
10025 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
10026 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
10027 pr_err("PLE Gap=%08x Window=%08x\n",
10028 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
10029 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
10030 pr_err("Virtual processor ID = 0x%04x\n",
10031 vmcs_read16(VIRTUAL_PROCESSOR_ID));
10032}
10033
Avi Kivity6aa8b732006-12-10 02:21:36 -080010034/*
10035 * The guest has exited. See if we can fix it or if we need userspace
10036 * assistance.
10037 */
Avi Kivity851ba692009-08-24 11:10:17 +030010038static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -080010039{
Avi Kivity29bd8a72007-09-10 17:27:03 +030010040 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +080010041 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +020010042 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +030010043
Paolo Bonzini8b89fe12015-12-10 18:37:32 +010010044 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
10045
Kai Huang843e4332015-01-28 10:54:28 +080010046 /*
10047 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
10048 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
10049 * querying dirty_bitmap, we only need to kick all vcpus out of guest
10050 * mode as if vcpus is in root mode, the PML buffer must has been
10051 * flushed already.
10052 */
10053 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010054 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +080010055
Mohammed Gamal80ced182009-09-01 12:48:18 +020010056 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +020010057 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +020010058 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +010010059
Paolo Bonzini7313c692017-07-27 10:31:25 +020010060 if (is_guest_mode(vcpu) && nested_vmx_exit_reflected(vcpu, exit_reason))
10061 return nested_vmx_reflect_vmexit(vcpu, exit_reason);
Nadav Har'El644d7112011-05-25 23:12:35 +030010062
Mohammed Gamal51207022010-05-31 22:40:54 +030010063 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +020010064 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +030010065 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
10066 vcpu->run->fail_entry.hardware_entry_failure_reason
10067 = exit_reason;
10068 return 0;
10069 }
10070
Avi Kivity29bd8a72007-09-10 17:27:03 +030010071 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +030010072 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
10073 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +030010074 = vmcs_read32(VM_INSTRUCTION_ERROR);
10075 return 0;
10076 }
Avi Kivity6aa8b732006-12-10 02:21:36 -080010077
Xiao Guangrongb9bf6882012-10-17 13:46:52 +080010078 /*
10079 * Note:
10080 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
10081 * delivery event since it indicates guest is accessing MMIO.
10082 * The vm-exit can be triggered again after return to guest that
10083 * will cause infinite loop.
10084 */
Mike Dayd77c26f2007-10-08 09:02:08 -040010085 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +080010086 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +020010087 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +000010088 exit_reason != EXIT_REASON_PML_FULL &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +080010089 exit_reason != EXIT_REASON_TASK_SWITCH)) {
10090 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
10091 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Paolo Bonzini70bcd702017-07-05 12:38:06 +020010092 vcpu->run->internal.ndata = 3;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +080010093 vcpu->run->internal.data[0] = vectoring_info;
10094 vcpu->run->internal.data[1] = exit_reason;
Paolo Bonzini70bcd702017-07-05 12:38:06 +020010095 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
10096 if (exit_reason == EXIT_REASON_EPT_MISCONFIG) {
10097 vcpu->run->internal.ndata++;
10098 vcpu->run->internal.data[3] =
10099 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
10100 }
Xiao Guangrongb9bf6882012-10-17 13:46:52 +080010101 return 0;
10102 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +020010103
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010010104 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +010010105 vmx->loaded_vmcs->soft_vnmi_blocked)) {
10106 if (vmx_interrupt_allowed(vcpu)) {
10107 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
10108 } else if (vmx->loaded_vmcs->vnmi_blocked_time > 1000000000LL &&
10109 vcpu->arch.nmi_pending) {
10110 /*
10111 * This CPU don't support us in finding the end of an
10112 * NMI-blocked window if the guest runs with IRQs
10113 * disabled. So we pull the trigger after 1 s of
10114 * futile waiting, but inform the user about this.
10115 */
10116 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
10117 "state on VCPU %d after 1 s timeout\n",
10118 __func__, vcpu->vcpu_id);
10119 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
10120 }
10121 }
10122
Avi Kivity6aa8b732006-12-10 02:21:36 -080010123 if (exit_reason < kvm_vmx_max_exit_handlers
10124 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +030010125 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -080010126 else {
Radim Krčmář6c6c5e02017-01-13 18:59:04 +010010127 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
10128 exit_reason);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +030010129 kvm_queue_exception(vcpu, UD_VECTOR);
10130 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -080010131 }
Avi Kivity6aa8b732006-12-10 02:21:36 -080010132}
10133
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020010134/*
10135 * Software based L1D cache flush which is used when microcode providing
10136 * the cache control MSR is not loaded.
10137 *
10138 * The L1D cache is 32 KiB on Nehalem and later microarchitectures, but to
10139 * flush it is required to read in 64 KiB because the replacement algorithm
10140 * is not exactly LRU. This could be sized at runtime via topology
10141 * information but as all relevant affected CPUs have 32KiB L1D cache size
10142 * there is no point in doing so.
10143 */
Paolo Bonzinic595cee2018-07-02 13:07:14 +020010144static void vmx_l1d_flush(struct kvm_vcpu *vcpu)
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020010145{
10146 int size = PAGE_SIZE << L1D_CACHE_ORDER;
Paolo Bonzinic595cee2018-07-02 13:07:14 +020010147
10148 /*
Thomas Gleixner2f055942018-07-13 16:23:17 +020010149 * This code is only executed when the the flush mode is 'cond' or
10150 * 'always'
Paolo Bonzinic595cee2018-07-02 13:07:14 +020010151 */
Nicolai Stange427362a2018-07-21 22:25:00 +020010152 if (static_branch_likely(&vmx_l1d_flush_cond)) {
Nicolai Stange45b575c2018-07-27 13:22:16 +020010153 bool flush_l1d;
Nicolai Stange5b6ccc62018-07-21 22:35:28 +020010154
Nicolai Stange379fd0c2018-07-21 22:16:56 +020010155 /*
Nicolai Stange45b575c2018-07-27 13:22:16 +020010156 * Clear the per-vcpu flush bit, it gets set again
10157 * either from vcpu_run() or from one of the unsafe
10158 * VMEXIT handlers.
Nicolai Stange379fd0c2018-07-21 22:16:56 +020010159 */
Nicolai Stange45b575c2018-07-27 13:22:16 +020010160 flush_l1d = vcpu->arch.l1tf_flush_l1d;
Thomas Gleixner4c6523e2018-07-13 16:23:20 +020010161 vcpu->arch.l1tf_flush_l1d = false;
Nicolai Stange45b575c2018-07-27 13:22:16 +020010162
10163 /*
10164 * Clear the per-cpu flush bit, it gets set again from
10165 * the interrupt handlers.
10166 */
10167 flush_l1d |= kvm_get_cpu_l1tf_flush_l1d();
10168 kvm_clear_cpu_l1tf_flush_l1d();
10169
Nicolai Stange5b6ccc62018-07-21 22:35:28 +020010170 if (!flush_l1d)
10171 return;
Nicolai Stange379fd0c2018-07-21 22:16:56 +020010172 }
Paolo Bonzinic595cee2018-07-02 13:07:14 +020010173
10174 vcpu->stat.l1d_flush++;
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020010175
Paolo Bonzini3fa045b2018-07-02 13:03:48 +020010176 if (static_cpu_has(X86_FEATURE_FLUSH_L1D)) {
10177 wrmsrl(MSR_IA32_FLUSH_CMD, L1D_FLUSH);
10178 return;
10179 }
10180
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020010181 asm volatile(
10182 /* First ensure the pages are in the TLB */
10183 "xorl %%eax, %%eax\n"
10184 ".Lpopulate_tlb:\n\t"
Nicolai Stange288d1522018-07-18 19:07:38 +020010185 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020010186 "addl $4096, %%eax\n\t"
10187 "cmpl %%eax, %[size]\n\t"
10188 "jne .Lpopulate_tlb\n\t"
10189 "xorl %%eax, %%eax\n\t"
10190 "cpuid\n\t"
10191 /* Now fill the cache */
10192 "xorl %%eax, %%eax\n"
10193 ".Lfill_cache:\n"
Nicolai Stange288d1522018-07-18 19:07:38 +020010194 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020010195 "addl $64, %%eax\n\t"
10196 "cmpl %%eax, %[size]\n\t"
10197 "jne .Lfill_cache\n\t"
10198 "lfence\n"
Nicolai Stange288d1522018-07-18 19:07:38 +020010199 :: [flush_pages] "r" (vmx_l1d_flush_pages),
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020010200 [size] "r" (size)
10201 : "eax", "ebx", "ecx", "edx");
10202}
10203
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010204static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +080010205{
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010206 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10207
10208 if (is_guest_mode(vcpu) &&
10209 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
10210 return;
10211
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010212 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +080010213 vmcs_write32(TPR_THRESHOLD, 0);
10214 return;
10215 }
10216
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010217 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +080010218}
10219
Jim Mattson8d860bb2018-05-09 16:56:05 -040010220static void vmx_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +080010221{
10222 u32 sec_exec_control;
10223
Jim Mattson8d860bb2018-05-09 16:56:05 -040010224 if (!lapic_in_kernel(vcpu))
10225 return;
10226
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020010227 /* Postpone execution until vmcs01 is the current VMCS. */
10228 if (is_guest_mode(vcpu)) {
Jim Mattson8d860bb2018-05-09 16:56:05 -040010229 to_vmx(vcpu)->nested.change_vmcs01_virtual_apic_mode = true;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020010230 return;
10231 }
10232
Paolo Bonzini35754c92015-07-29 12:05:37 +020010233 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +080010234 return;
10235
10236 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
Jim Mattson8d860bb2018-05-09 16:56:05 -040010237 sec_exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
10238 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
Yang Zhang8d146952013-01-25 10:18:50 +080010239
Jim Mattson8d860bb2018-05-09 16:56:05 -040010240 switch (kvm_get_apic_mode(vcpu)) {
10241 case LAPIC_MODE_INVALID:
10242 WARN_ONCE(true, "Invalid local APIC state");
10243 case LAPIC_MODE_DISABLED:
10244 break;
10245 case LAPIC_MODE_XAPIC:
10246 if (flexpriority_enabled) {
10247 sec_exec_control |=
10248 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
10249 vmx_flush_tlb(vcpu, true);
10250 }
10251 break;
10252 case LAPIC_MODE_X2APIC:
10253 if (cpu_has_vmx_virtualize_x2apic_mode())
10254 sec_exec_control |=
10255 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
10256 break;
Yang Zhang8d146952013-01-25 10:18:50 +080010257 }
10258 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
10259
Paolo Bonzini904e14f2018-01-16 16:51:18 +010010260 vmx_update_msr_bitmap(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +080010261}
10262
Tang Chen38b99172014-09-24 15:57:54 +080010263static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
10264{
Jim Mattsonab5df312018-05-09 17:02:03 -040010265 if (!is_guest_mode(vcpu)) {
Tang Chen38b99172014-09-24 15:57:54 +080010266 vmcs_write64(APIC_ACCESS_ADDR, hpa);
Junaid Shahida468f2d2018-04-26 13:09:50 -070010267 vmx_flush_tlb(vcpu, true);
Jim Mattsonfb6c8192017-03-16 13:53:59 -070010268 }
Tang Chen38b99172014-09-24 15:57:54 +080010269}
10270
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +020010271static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +080010272{
10273 u16 status;
10274 u8 old;
10275
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +020010276 if (max_isr == -1)
10277 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +080010278
10279 status = vmcs_read16(GUEST_INTR_STATUS);
10280 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +020010281 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +080010282 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +020010283 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +080010284 vmcs_write16(GUEST_INTR_STATUS, status);
10285 }
10286}
10287
10288static void vmx_set_rvi(int vector)
10289{
10290 u16 status;
10291 u8 old;
10292
Wei Wang4114c272014-11-05 10:53:43 +080010293 if (vector == -1)
10294 vector = 0;
10295
Yang Zhangc7c9c562013-01-25 10:18:51 +080010296 status = vmcs_read16(GUEST_INTR_STATUS);
10297 old = (u8)status & 0xff;
10298 if ((u8)vector != old) {
10299 status &= ~0xff;
10300 status |= (u8)vector;
10301 vmcs_write16(GUEST_INTR_STATUS, status);
10302 }
10303}
10304
10305static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
10306{
Liran Alon851c1a182017-12-24 18:12:56 +020010307 /*
10308 * When running L2, updating RVI is only relevant when
10309 * vmcs12 virtual-interrupt-delivery enabled.
10310 * However, it can be enabled only when L1 also
10311 * intercepts external-interrupts and in that case
10312 * we should not update vmcs02 RVI but instead intercept
10313 * interrupt. Therefore, do nothing when running L2.
10314 */
10315 if (!is_guest_mode(vcpu))
Wanpeng Li963fee12014-07-17 19:03:00 +080010316 vmx_set_rvi(max_irr);
Yang Zhangc7c9c562013-01-25 10:18:51 +080010317}
10318
Paolo Bonzini76dfafd52016-12-19 17:17:11 +010010319static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +010010320{
10321 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +010010322 int max_irr;
Liran Alonf27a85c2017-12-24 18:12:55 +020010323 bool max_irr_updated;
Paolo Bonzini810e6de2016-12-19 13:05:46 +010010324
Paolo Bonzini76dfafd52016-12-19 17:17:11 +010010325 WARN_ON(!vcpu->arch.apicv_active);
10326 if (pi_test_on(&vmx->pi_desc)) {
10327 pi_clear_on(&vmx->pi_desc);
10328 /*
10329 * IOMMU can write to PIR.ON, so the barrier matters even on UP.
10330 * But on x86 this is just a compiler barrier anyway.
10331 */
10332 smp_mb__after_atomic();
Liran Alonf27a85c2017-12-24 18:12:55 +020010333 max_irr_updated =
10334 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir, &max_irr);
10335
10336 /*
10337 * If we are running L2 and L1 has a new pending interrupt
10338 * which can be injected, we should re-evaluate
10339 * what should be done with this new L1 interrupt.
Liran Alon851c1a182017-12-24 18:12:56 +020010340 * If L1 intercepts external-interrupts, we should
10341 * exit from L2 to L1. Otherwise, interrupt should be
10342 * delivered directly to L2.
Liran Alonf27a85c2017-12-24 18:12:55 +020010343 */
Liran Alon851c1a182017-12-24 18:12:56 +020010344 if (is_guest_mode(vcpu) && max_irr_updated) {
10345 if (nested_exit_on_intr(vcpu))
10346 kvm_vcpu_exiting_guest_mode(vcpu);
10347 else
10348 kvm_make_request(KVM_REQ_EVENT, vcpu);
10349 }
Paolo Bonzini76dfafd52016-12-19 17:17:11 +010010350 } else {
10351 max_irr = kvm_lapic_find_highest_irr(vcpu);
10352 }
10353 vmx_hwapic_irr_update(vcpu, max_irr);
10354 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +010010355}
10356
Andrey Smetanin63086302015-11-10 15:36:32 +030010357static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +080010358{
Andrey Smetanind62caab2015-11-10 15:36:33 +030010359 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +080010360 return;
10361
Yang Zhangc7c9c562013-01-25 10:18:51 +080010362 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
10363 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
10364 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
10365 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
10366}
10367
Paolo Bonzini967235d2016-12-19 14:03:45 +010010368static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
10369{
10370 struct vcpu_vmx *vmx = to_vmx(vcpu);
10371
10372 pi_clear_on(&vmx->pi_desc);
10373 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
10374}
10375
Avi Kivity51aa01d2010-07-20 14:31:20 +030010376static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +030010377{
Jim Mattson48ae0fb2017-05-22 09:48:33 -070010378 u32 exit_intr_info = 0;
10379 u16 basic_exit_reason = (u16)vmx->exit_reason;
Avi Kivity00eba012011-03-07 17:24:54 +020010380
Jim Mattson48ae0fb2017-05-22 09:48:33 -070010381 if (!(basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
10382 || basic_exit_reason == EXIT_REASON_EXCEPTION_NMI))
Avi Kivity00eba012011-03-07 17:24:54 +020010383 return;
10384
Jim Mattson48ae0fb2017-05-22 09:48:33 -070010385 if (!(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
10386 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
10387 vmx->exit_intr_info = exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +080010388
Wanpeng Li1261bfa2017-07-13 18:30:40 -070010389 /* if exit due to PF check for async PF */
10390 if (is_page_fault(exit_intr_info))
10391 vmx->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
10392
Andi Kleena0861c02009-06-08 17:37:09 +080010393 /* Handle machine checks before interrupts are enabled */
Jim Mattson48ae0fb2017-05-22 09:48:33 -070010394 if (basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY ||
10395 is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +080010396 kvm_machine_check();
10397
Gleb Natapov20f65982009-05-11 13:35:55 +030010398 /* We need to handle NMIs before interrupts are enabled */
Jim Mattsonef85b672016-12-12 11:01:37 -080010399 if (is_nmi(exit_intr_info)) {
Andi Kleendd60d212017-07-25 17:20:32 -070010400 kvm_before_interrupt(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +030010401 asm("int $2");
Andi Kleendd60d212017-07-25 17:20:32 -070010402 kvm_after_interrupt(&vmx->vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +080010403 }
Avi Kivity51aa01d2010-07-20 14:31:20 +030010404}
Gleb Natapov20f65982009-05-11 13:35:55 +030010405
Yang Zhanga547c6d2013-04-11 19:25:10 +080010406static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
10407{
10408 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
10409
Yang Zhanga547c6d2013-04-11 19:25:10 +080010410 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
10411 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
10412 unsigned int vector;
10413 unsigned long entry;
10414 gate_desc *desc;
10415 struct vcpu_vmx *vmx = to_vmx(vcpu);
10416#ifdef CONFIG_X86_64
10417 unsigned long tmp;
10418#endif
10419
10420 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
10421 desc = (gate_desc *)vmx->host_idt_base + vector;
Thomas Gleixner64b163f2017-08-28 08:47:37 +020010422 entry = gate_offset(desc);
Yang Zhanga547c6d2013-04-11 19:25:10 +080010423 asm volatile(
10424#ifdef CONFIG_X86_64
10425 "mov %%" _ASM_SP ", %[sp]\n\t"
10426 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
10427 "push $%c[ss]\n\t"
10428 "push %[sp]\n\t"
10429#endif
10430 "pushf\n\t"
Yang Zhanga547c6d2013-04-11 19:25:10 +080010431 __ASM_SIZE(push) " $%c[cs]\n\t"
Peter Zijlstrac940a3f2018-01-25 10:58:14 +010010432 CALL_NOSPEC
Yang Zhanga547c6d2013-04-11 19:25:10 +080010433 :
10434#ifdef CONFIG_X86_64
Chris J Arges3f62de52016-01-22 15:44:38 -060010435 [sp]"=&r"(tmp),
Yang Zhanga547c6d2013-04-11 19:25:10 +080010436#endif
Josh Poimboeuff5caf622017-09-20 16:24:33 -050010437 ASM_CALL_CONSTRAINT
Yang Zhanga547c6d2013-04-11 19:25:10 +080010438 :
Peter Zijlstrac940a3f2018-01-25 10:58:14 +010010439 THUNK_TARGET(entry),
Yang Zhanga547c6d2013-04-11 19:25:10 +080010440 [ss]"i"(__KERNEL_DS),
10441 [cs]"i"(__KERNEL_CS)
10442 );
Paolo Bonzinif2485b32016-06-15 15:23:11 +020010443 }
Yang Zhanga547c6d2013-04-11 19:25:10 +080010444}
Josh Poimboeufc207aee2017-06-28 10:11:06 -050010445STACK_FRAME_NON_STANDARD(vmx_handle_external_intr);
Yang Zhanga547c6d2013-04-11 19:25:10 +080010446
Tom Lendackybc226f02018-05-10 22:06:39 +020010447static bool vmx_has_emulated_msr(int index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +020010448{
Tom Lendackybc226f02018-05-10 22:06:39 +020010449 switch (index) {
10450 case MSR_IA32_SMBASE:
10451 /*
10452 * We cannot do SMM unless we can run the guest in big
10453 * real mode.
10454 */
10455 return enable_unrestricted_guest || emulate_invalid_guest_state;
10456 case MSR_AMD64_VIRT_SPEC_CTRL:
10457 /* This is AMD only. */
10458 return false;
10459 default:
10460 return true;
10461 }
Paolo Bonzini6d396b52015-04-01 14:25:33 +020010462}
10463
Liu, Jinsongda8999d2014-02-24 10:55:46 +000010464static bool vmx_mpx_supported(void)
10465{
10466 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
10467 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
10468}
10469
Wanpeng Li55412b22014-12-02 19:21:30 +080010470static bool vmx_xsaves_supported(void)
10471{
10472 return vmcs_config.cpu_based_2nd_exec_ctrl &
10473 SECONDARY_EXEC_XSAVES;
10474}
10475
Avi Kivity51aa01d2010-07-20 14:31:20 +030010476static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
10477{
Avi Kivityc5ca8e52011-03-07 17:37:37 +020010478 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +030010479 bool unblock_nmi;
10480 u8 vector;
10481 bool idtv_info_valid;
10482
10483 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +030010484
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010010485 if (enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +010010486 if (vmx->loaded_vmcs->nmi_known_unmasked)
10487 return;
10488 /*
10489 * Can't use vmx->exit_intr_info since we're not sure what
10490 * the exit reason is.
10491 */
10492 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
10493 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
10494 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
10495 /*
10496 * SDM 3: 27.7.1.2 (September 2008)
10497 * Re-set bit "block by NMI" before VM entry if vmexit caused by
10498 * a guest IRET fault.
10499 * SDM 3: 23.2.2 (September 2008)
10500 * Bit 12 is undefined in any of the following cases:
10501 * If the VM exit sets the valid bit in the IDT-vectoring
10502 * information field.
10503 * If the VM exit is due to a double fault.
10504 */
10505 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
10506 vector != DF_VECTOR && !idtv_info_valid)
10507 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
10508 GUEST_INTR_STATE_NMI);
10509 else
10510 vmx->loaded_vmcs->nmi_known_unmasked =
10511 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
10512 & GUEST_INTR_STATE_NMI);
10513 } else if (unlikely(vmx->loaded_vmcs->soft_vnmi_blocked))
10514 vmx->loaded_vmcs->vnmi_blocked_time +=
10515 ktime_to_ns(ktime_sub(ktime_get(),
10516 vmx->loaded_vmcs->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +030010517}
10518
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010519static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +030010520 u32 idt_vectoring_info,
10521 int instr_len_field,
10522 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +030010523{
Avi Kivity51aa01d2010-07-20 14:31:20 +030010524 u8 vector;
10525 int type;
10526 bool idtv_info_valid;
10527
10528 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +030010529
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010530 vcpu->arch.nmi_injected = false;
10531 kvm_clear_exception_queue(vcpu);
10532 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +030010533
10534 if (!idtv_info_valid)
10535 return;
10536
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010537 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +030010538
Avi Kivity668f6122008-07-02 09:28:55 +030010539 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
10540 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +030010541
Gleb Natapov64a7ec02009-03-30 16:03:29 +030010542 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +030010543 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010544 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +030010545 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +030010546 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +030010547 * Clear bit "block by NMI" before VM entry if a NMI
10548 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +030010549 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010550 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +030010551 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +030010552 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010553 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +030010554 /* fall through */
10555 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +030010556 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +030010557 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +030010558 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +030010559 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +030010560 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +030010561 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +030010562 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010563 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +030010564 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +030010565 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010566 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +030010567 break;
10568 default:
10569 break;
Avi Kivityf7d92382008-07-03 16:14:28 +030010570 }
Avi Kivitycf393f72008-07-01 16:20:21 +030010571}
10572
Avi Kivity83422e12010-07-20 14:43:23 +030010573static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
10574{
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010575 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +030010576 VM_EXIT_INSTRUCTION_LEN,
10577 IDT_VECTORING_ERROR_CODE);
10578}
10579
Avi Kivityb463a6f2010-07-20 15:06:17 +030010580static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
10581{
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010582 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +030010583 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
10584 VM_ENTRY_INSTRUCTION_LEN,
10585 VM_ENTRY_EXCEPTION_ERROR_CODE);
10586
10587 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
10588}
10589
Gleb Natapovd7cd9792011-10-05 14:01:23 +020010590static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
10591{
10592 int i, nr_msrs;
10593 struct perf_guest_switch_msr *msrs;
10594
10595 msrs = perf_guest_get_msrs(&nr_msrs);
10596
10597 if (!msrs)
10598 return;
10599
10600 for (i = 0; i < nr_msrs; i++)
10601 if (msrs[i].host == msrs[i].guest)
10602 clear_atomic_switch_msr(vmx, msrs[i].msr);
10603 else
10604 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -040010605 msrs[i].host, false);
Gleb Natapovd7cd9792011-10-05 14:01:23 +020010606}
10607
Sean Christophersonf459a702018-08-27 15:21:11 -070010608static void vmx_arm_hv_timer(struct vcpu_vmx *vmx, u32 val)
10609{
10610 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, val);
10611 if (!vmx->loaded_vmcs->hv_timer_armed)
10612 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
10613 PIN_BASED_VMX_PREEMPTION_TIMER);
10614 vmx->loaded_vmcs->hv_timer_armed = true;
10615}
10616
10617static void vmx_update_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -070010618{
10619 struct vcpu_vmx *vmx = to_vmx(vcpu);
10620 u64 tscl;
10621 u32 delta_tsc;
10622
Sean Christophersond264ee02018-08-27 15:21:12 -070010623 if (vmx->req_immediate_exit) {
10624 vmx_arm_hv_timer(vmx, 0);
10625 return;
10626 }
10627
Sean Christophersonf459a702018-08-27 15:21:11 -070010628 if (vmx->hv_deadline_tsc != -1) {
10629 tscl = rdtsc();
10630 if (vmx->hv_deadline_tsc > tscl)
10631 /* set_hv_timer ensures the delta fits in 32-bits */
10632 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
10633 cpu_preemption_timer_multi);
10634 else
10635 delta_tsc = 0;
10636
10637 vmx_arm_hv_timer(vmx, delta_tsc);
Yunhong Jiang64672c92016-06-13 14:19:59 -070010638 return;
Sean Christophersonf459a702018-08-27 15:21:11 -070010639 }
Yunhong Jiang64672c92016-06-13 14:19:59 -070010640
Sean Christophersonf459a702018-08-27 15:21:11 -070010641 if (vmx->loaded_vmcs->hv_timer_armed)
10642 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
10643 PIN_BASED_VMX_PREEMPTION_TIMER);
10644 vmx->loaded_vmcs->hv_timer_armed = false;
Yunhong Jiang64672c92016-06-13 14:19:59 -070010645}
10646
Lai Jiangshana3b5ba42011-02-11 14:29:40 +080010647static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -080010648{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040010649 struct vcpu_vmx *vmx = to_vmx(vcpu);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010650 unsigned long cr3, cr4, evmcs_rsp;
Avi Kivity104f2262010-11-18 13:12:52 +020010651
Paolo Bonzini8a1b4392017-11-06 13:31:12 +010010652 /* Record the guest's net vcpu time for enforced NMI injections. */
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010010653 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +010010654 vmx->loaded_vmcs->soft_vnmi_blocked))
10655 vmx->loaded_vmcs->entry_time = ktime_get();
10656
Avi Kivity104f2262010-11-18 13:12:52 +020010657 /* Don't enter VMX if guest state is invalid, let the exit handler
10658 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +020010659 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +020010660 return;
10661
Radim Krčmářa7653ec2014-08-21 18:08:07 +020010662 if (vmx->ple_window_dirty) {
10663 vmx->ple_window_dirty = false;
10664 vmcs_write32(PLE_WINDOW, vmx->ple_window);
10665 }
10666
Abel Gordon012f83c2013-04-18 14:39:25 +030010667 if (vmx->nested.sync_shadow_vmcs) {
10668 copy_vmcs12_to_shadow(vmx);
10669 vmx->nested.sync_shadow_vmcs = false;
10670 }
10671
Avi Kivity104f2262010-11-18 13:12:52 +020010672 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
10673 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
10674 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
10675 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
10676
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070010677 cr3 = __get_current_cr3_fast();
Sean Christophersond7ee0392018-07-23 12:32:47 -070010678 if (unlikely(cr3 != vmx->loaded_vmcs->host_state.cr3)) {
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070010679 vmcs_writel(HOST_CR3, cr3);
Sean Christophersond7ee0392018-07-23 12:32:47 -070010680 vmx->loaded_vmcs->host_state.cr3 = cr3;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070010681 }
10682
Andy Lutomirski1e02ce42014-10-24 15:58:08 -070010683 cr4 = cr4_read_shadow();
Sean Christophersond7ee0392018-07-23 12:32:47 -070010684 if (unlikely(cr4 != vmx->loaded_vmcs->host_state.cr4)) {
Andy Lutomirskid974baa2014-10-08 09:02:13 -070010685 vmcs_writel(HOST_CR4, cr4);
Sean Christophersond7ee0392018-07-23 12:32:47 -070010686 vmx->loaded_vmcs->host_state.cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -070010687 }
10688
Avi Kivity104f2262010-11-18 13:12:52 +020010689 /* When single-stepping over STI and MOV SS, we must clear the
10690 * corresponding interruptibility bits in the guest state. Otherwise
10691 * vmentry fails as it then expects bit 14 (BS) in pending debug
10692 * exceptions being set, but that's not correct for the guest debugging
10693 * case. */
10694 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
10695 vmx_set_interrupt_shadow(vcpu, 0);
10696
Paolo Bonzinib9dd21e2017-08-23 23:14:38 +020010697 if (static_cpu_has(X86_FEATURE_PKU) &&
10698 kvm_read_cr4_bits(vcpu, X86_CR4_PKE) &&
10699 vcpu->arch.pkru != vmx->host_pkru)
10700 __write_pkru(vcpu->arch.pkru);
Xiao Guangrong1be0e612016-03-22 16:51:18 +080010701
Gleb Natapovd7cd9792011-10-05 14:01:23 +020010702 atomic_switch_perf_msrs(vmx);
10703
Sean Christophersonf459a702018-08-27 15:21:11 -070010704 vmx_update_hv_timer(vcpu);
Yunhong Jiang64672c92016-06-13 14:19:59 -070010705
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010706 /*
10707 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
10708 * it's non-zero. Since vmentry is serialising on affected CPUs, there
10709 * is no need to worry about the conditional branch over the wrmsr
10710 * being speculatively taken.
10711 */
Thomas Gleixnerccbcd262018-05-09 23:01:01 +020010712 x86_spec_ctrl_set_guest(vmx->spec_ctrl, 0);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010713
Nadav Har'Eld462b812011-05-24 15:26:10 +030010714 vmx->__launched = vmx->loaded_vmcs->launched;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010715
10716 evmcs_rsp = static_branch_unlikely(&enable_evmcs) ?
10717 (unsigned long)&current_evmcs->host_rsp : 0;
10718
Nicolai Stange5b6ccc62018-07-21 22:35:28 +020010719 if (static_branch_unlikely(&vmx_l1d_should_flush))
10720 vmx_l1d_flush(vcpu);
Paolo Bonzinic595cee2018-07-02 13:07:14 +020010721
Avi Kivity104f2262010-11-18 13:12:52 +020010722 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -080010723 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +030010724 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
10725 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
10726 "push %%" _ASM_CX " \n\t"
10727 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +030010728 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +030010729 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010730 /* Avoid VMWRITE when Enlightened VMCS is in use */
10731 "test %%" _ASM_SI ", %%" _ASM_SI " \n\t"
10732 "jz 2f \n\t"
10733 "mov %%" _ASM_SP ", (%%" _ASM_SI ") \n\t"
10734 "jmp 1f \n\t"
10735 "2: \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +030010736 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +030010737 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +030010738 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +030010739 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
10740 "mov %%cr2, %%" _ASM_DX " \n\t"
10741 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010742 "je 3f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +030010743 "mov %%" _ASM_AX", %%cr2 \n\t"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010744 "3: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -080010745 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +020010746 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -080010747 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +030010748 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
10749 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
10750 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
10751 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
10752 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
10753 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -080010754#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +020010755 "mov %c[r8](%0), %%r8 \n\t"
10756 "mov %c[r9](%0), %%r9 \n\t"
10757 "mov %c[r10](%0), %%r10 \n\t"
10758 "mov %c[r11](%0), %%r11 \n\t"
10759 "mov %c[r12](%0), %%r12 \n\t"
10760 "mov %c[r13](%0), %%r13 \n\t"
10761 "mov %c[r14](%0), %%r14 \n\t"
10762 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -080010763#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +030010764 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +030010765
Avi Kivity6aa8b732006-12-10 02:21:36 -080010766 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +030010767 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +030010768 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +030010769 "jmp 2f \n\t"
10770 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
10771 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -080010772 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +030010773 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +020010774 "pop %0 \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -080010775 "setbe %c[fail](%0)\n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +030010776 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
10777 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
10778 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
10779 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
10780 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
10781 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
10782 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -080010783#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +020010784 "mov %%r8, %c[r8](%0) \n\t"
10785 "mov %%r9, %c[r9](%0) \n\t"
10786 "mov %%r10, %c[r10](%0) \n\t"
10787 "mov %%r11, %c[r11](%0) \n\t"
10788 "mov %%r12, %c[r12](%0) \n\t"
10789 "mov %%r13, %c[r13](%0) \n\t"
10790 "mov %%r14, %c[r14](%0) \n\t"
10791 "mov %%r15, %c[r15](%0) \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -080010792 "xor %%r8d, %%r8d \n\t"
10793 "xor %%r9d, %%r9d \n\t"
10794 "xor %%r10d, %%r10d \n\t"
10795 "xor %%r11d, %%r11d \n\t"
10796 "xor %%r12d, %%r12d \n\t"
10797 "xor %%r13d, %%r13d \n\t"
10798 "xor %%r14d, %%r14d \n\t"
10799 "xor %%r15d, %%r15d \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -080010800#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +030010801 "mov %%cr2, %%" _ASM_AX " \n\t"
10802 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +030010803
Jim Mattson0cb5b302018-01-03 14:31:38 -080010804 "xor %%eax, %%eax \n\t"
10805 "xor %%ebx, %%ebx \n\t"
10806 "xor %%esi, %%esi \n\t"
10807 "xor %%edi, %%edi \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +030010808 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +030010809 ".pushsection .rodata \n\t"
10810 ".global vmx_return \n\t"
10811 "vmx_return: " _ASM_PTR " 2b \n\t"
10812 ".popsection"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010813 : : "c"(vmx), "d"((unsigned long)HOST_RSP), "S"(evmcs_rsp),
Nadav Har'Eld462b812011-05-24 15:26:10 +030010814 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +020010815 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +030010816 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010817 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
10818 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
10819 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
10820 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
10821 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
10822 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
10823 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -080010824#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010825 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
10826 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
10827 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
10828 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
10829 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
10830 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
10831 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
10832 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -080010833#endif
Avi Kivity40712fa2011-01-06 18:09:12 +020010834 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
10835 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +020010836 : "cc", "memory"
10837#ifdef CONFIG_X86_64
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010838 , "rax", "rbx", "rdi"
Laurent Vivierc2036302007-10-25 14:18:52 +020010839 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +030010840#else
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010841 , "eax", "ebx", "edi"
Laurent Vivierc2036302007-10-25 14:18:52 +020010842#endif
10843 );
Avi Kivity6aa8b732006-12-10 02:21:36 -080010844
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010845 /*
10846 * We do not use IBRS in the kernel. If this vCPU has used the
10847 * SPEC_CTRL MSR it may have left it on; save the value and
10848 * turn it off. This is much more efficient than blindly adding
10849 * it to the atomic save/restore list. Especially as the former
10850 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
10851 *
10852 * For non-nested case:
10853 * If the L01 MSR bitmap does not intercept the MSR, then we need to
10854 * save it.
10855 *
10856 * For nested case:
10857 * If the L02 MSR bitmap does not intercept the MSR, then we need to
10858 * save it.
10859 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +010010860 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +010010861 vmx->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010862
Thomas Gleixnerccbcd262018-05-09 23:01:01 +020010863 x86_spec_ctrl_restore_host(vmx->spec_ctrl, 0);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010864
David Woodhouse117cc7a2018-01-12 11:11:27 +000010865 /* Eliminate branch target predictions from guest mode */
10866 vmexit_fill_RSB();
10867
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010868 /* All fields are clean at this point */
10869 if (static_branch_unlikely(&enable_evmcs))
10870 current_evmcs->hv_clean_fields |=
10871 HV_VMX_ENLIGHTENED_CLEAN_FIELD_ALL;
10872
Gleb Natapov2a7921b2012-08-12 16:12:29 +030010873 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
Wanpeng Li74c55932017-11-29 01:31:20 -080010874 if (vmx->host_debugctlmsr)
10875 update_debugctlmsr(vmx->host_debugctlmsr);
Gleb Natapov2a7921b2012-08-12 16:12:29 +030010876
Avi Kivityaa67f602012-08-01 16:48:03 +030010877#ifndef CONFIG_X86_64
10878 /*
10879 * The sysexit path does not restore ds/es, so we must set them to
10880 * a reasonable value ourselves.
10881 *
Sean Christopherson6d6095b2018-07-23 12:32:44 -070010882 * We can't defer this to vmx_prepare_switch_to_host() since that
10883 * function may be executed in interrupt context, which saves and
10884 * restore segments around it, nullifying its effect.
Avi Kivityaa67f602012-08-01 16:48:03 +030010885 */
10886 loadsegment(ds, __USER_DS);
10887 loadsegment(es, __USER_DS);
10888#endif
10889
Avi Kivity6de4f3a2009-05-31 22:58:47 +030010890 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +020010891 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +020010892 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +030010893 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +020010894 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010895 vcpu->arch.regs_dirty = 0;
10896
Gleb Natapove0b890d2013-09-25 12:51:33 +030010897 /*
Xiao Guangrong1be0e612016-03-22 16:51:18 +080010898 * eager fpu is enabled if PKEY is supported and CR4 is switched
10899 * back on host, so it is safe to read guest PKRU from current
10900 * XSAVE.
10901 */
Paolo Bonzinib9dd21e2017-08-23 23:14:38 +020010902 if (static_cpu_has(X86_FEATURE_PKU) &&
10903 kvm_read_cr4_bits(vcpu, X86_CR4_PKE)) {
10904 vcpu->arch.pkru = __read_pkru();
10905 if (vcpu->arch.pkru != vmx->host_pkru)
Xiao Guangrong1be0e612016-03-22 16:51:18 +080010906 __write_pkru(vmx->host_pkru);
Xiao Guangrong1be0e612016-03-22 16:51:18 +080010907 }
10908
Gleb Natapove0b890d2013-09-25 12:51:33 +030010909 vmx->nested.nested_run_pending = 0;
Jim Mattsonb060ca32017-09-14 16:31:42 -070010910 vmx->idt_vectoring_info = 0;
10911
10912 vmx->exit_reason = vmx->fail ? 0xdead : vmcs_read32(VM_EXIT_REASON);
10913 if (vmx->fail || (vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
10914 return;
10915
10916 vmx->loaded_vmcs->launched = 1;
10917 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Gleb Natapove0b890d2013-09-25 12:51:33 +030010918
Avi Kivity51aa01d2010-07-20 14:31:20 +030010919 vmx_complete_atomic_exit(vmx);
10920 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +030010921 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -080010922}
Josh Poimboeufc207aee2017-06-28 10:11:06 -050010923STACK_FRAME_NON_STANDARD(vmx_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -080010924
Sean Christopherson434a1e92018-03-20 12:17:18 -070010925static struct kvm *vmx_vm_alloc(void)
10926{
Marc Orrd1e5b0e2018-05-15 04:37:37 -070010927 struct kvm_vmx *kvm_vmx = vzalloc(sizeof(struct kvm_vmx));
Sean Christopherson40bbb9d2018-03-20 12:17:20 -070010928 return &kvm_vmx->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -070010929}
10930
10931static void vmx_vm_free(struct kvm *kvm)
10932{
Marc Orrd1e5b0e2018-05-15 04:37:37 -070010933 vfree(to_kvm_vmx(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -070010934}
10935
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010936static void vmx_switch_vmcs(struct kvm_vcpu *vcpu, struct loaded_vmcs *vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010937{
10938 struct vcpu_vmx *vmx = to_vmx(vcpu);
10939 int cpu;
10940
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010941 if (vmx->loaded_vmcs == vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010942 return;
10943
10944 cpu = get_cpu();
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010945 vmx_vcpu_put(vcpu);
Sean Christophersonbd9966d2018-07-23 12:32:42 -070010946 vmx->loaded_vmcs = vmcs;
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010947 vmx_vcpu_load(vcpu, cpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010948 put_cpu();
10949}
10950
Jim Mattson2f1fe812016-07-08 15:36:06 -070010951/*
10952 * Ensure that the current vmcs of the logical processor is the
10953 * vmcs01 of the vcpu before calling free_nested().
10954 */
10955static void vmx_free_vcpu_nested(struct kvm_vcpu *vcpu)
10956{
10957 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -070010958
Christoffer Dallec7660c2017-12-04 21:35:23 +010010959 vcpu_load(vcpu);
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010960 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson2f1fe812016-07-08 15:36:06 -070010961 free_nested(vmx);
10962 vcpu_put(vcpu);
10963}
10964
Avi Kivity6aa8b732006-12-10 02:21:36 -080010965static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
10966{
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010967 struct vcpu_vmx *vmx = to_vmx(vcpu);
10968
Kai Huang843e4332015-01-28 10:54:28 +080010969 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +080010970 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +080010971 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010972 leave_guest_mode(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -070010973 vmx_free_vcpu_nested(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010974 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010975 kfree(vmx->guest_msrs);
10976 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +100010977 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -080010978}
10979
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010980static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -080010981{
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010982 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +100010983 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Paolo Bonzini904e14f2018-01-16 16:51:18 +010010984 unsigned long *msr_bitmap;
Avi Kivity15ad7142007-07-11 18:17:21 +030010985 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -080010986
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040010987 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010988 return ERR_PTR(-ENOMEM);
10989
Wanpeng Li991e7a02015-09-16 17:30:05 +080010990 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +080010991
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010992 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
10993 if (err)
10994 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -080010995
Peter Feiner4e595162016-07-07 14:49:58 -070010996 err = -ENOMEM;
10997
10998 /*
10999 * If PML is turned on, failure on enabling PML just results in failure
11000 * of creating the vcpu, therefore we can simplify PML logic (by
11001 * avoiding dealing with cases, such as enabling PML partially on vcpus
11002 * for the guest, etc.
11003 */
11004 if (enable_pml) {
11005 vmx->pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
11006 if (!vmx->pml_pg)
11007 goto uninit_vcpu;
11008 }
11009
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040011010 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +020011011 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
11012 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +030011013
Peter Feiner4e595162016-07-07 14:49:58 -070011014 if (!vmx->guest_msrs)
11015 goto free_pml;
Ingo Molnar965b58a2007-01-05 16:36:23 -080011016
Paolo Bonzinif21f1652018-01-11 12:16:15 +010011017 err = alloc_loaded_vmcs(&vmx->vmcs01);
11018 if (err < 0)
Rusty Russellfb3f0f52007-07-27 17:16:56 +100011019 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040011020
Paolo Bonzini904e14f2018-01-16 16:51:18 +010011021 msr_bitmap = vmx->vmcs01.msr_bitmap;
11022 vmx_disable_intercept_for_msr(msr_bitmap, MSR_FS_BASE, MSR_TYPE_RW);
11023 vmx_disable_intercept_for_msr(msr_bitmap, MSR_GS_BASE, MSR_TYPE_RW);
11024 vmx_disable_intercept_for_msr(msr_bitmap, MSR_KERNEL_GS_BASE, MSR_TYPE_RW);
11025 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_CS, MSR_TYPE_RW);
11026 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_ESP, MSR_TYPE_RW);
11027 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_EIP, MSR_TYPE_RW);
11028 vmx->msr_bitmap_mode = 0;
11029
Paolo Bonzinif21f1652018-01-11 12:16:15 +010011030 vmx->loaded_vmcs = &vmx->vmcs01;
Avi Kivity15ad7142007-07-11 18:17:21 +030011031 cpu = get_cpu();
11032 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -100011033 vmx->vcpu.cpu = cpu;
David Hildenbrand12d79912017-08-24 20:51:26 +020011034 vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100011035 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +030011036 put_cpu();
Paolo Bonzini35754c92015-07-29 12:05:37 +020011037 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +020011038 err = alloc_apic_access_page(kvm);
11039 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -020011040 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +020011041 }
Ingo Molnar965b58a2007-01-05 16:36:23 -080011042
Sean Christophersone90008d2018-03-05 12:04:37 -080011043 if (enable_ept && !enable_unrestricted_guest) {
Tang Chenf51770e2014-09-16 18:41:59 +080011044 err = init_rmode_identity_map(kvm);
11045 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +020011046 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +080011047 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +080011048
Roman Kagan63aff652018-07-19 21:59:07 +030011049 if (nested)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011050 nested_vmx_setup_ctls_msrs(&vmx->nested.msrs,
11051 kvm_vcpu_apicv_active(&vmx->vcpu));
Wincy Vanb9c237b2015-02-03 23:56:30 +080011052
Wincy Van705699a2015-02-03 23:58:17 +080011053 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +030011054 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +030011055
Haozhong Zhang37e4c992016-06-22 14:59:55 +080011056 vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED;
11057
Paolo Bonzini31afb2e2017-06-06 12:57:06 +020011058 /*
11059 * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR
11060 * or POSTED_INTR_WAKEUP_VECTOR.
11061 */
11062 vmx->pi_desc.nv = POSTED_INTR_VECTOR;
11063 vmx->pi_desc.sn = 1;
11064
Rusty Russellfb3f0f52007-07-27 17:16:56 +100011065 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -080011066
Rusty Russellfb3f0f52007-07-27 17:16:56 +100011067free_vmcs:
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +080011068 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100011069free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +100011070 kfree(vmx->guest_msrs);
Peter Feiner4e595162016-07-07 14:49:58 -070011071free_pml:
11072 vmx_destroy_pml_buffer(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100011073uninit_vcpu:
11074 kvm_vcpu_uninit(&vmx->vcpu);
11075free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +080011076 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +100011077 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100011078 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -080011079}
11080
Jiri Kosinad90a7a02018-07-13 16:23:25 +020011081#define L1TF_MSG_SMT "L1TF CPU bug present and SMT on, data leak possible. See CVE-2018-3646 and https://www.kernel.org/doc/html/latest/admin-guide/l1tf.html for details.\n"
11082#define L1TF_MSG_L1D "L1TF CPU bug present and virtualization mitigation disabled, data leak possible. See CVE-2018-3646 and https://www.kernel.org/doc/html/latest/admin-guide/l1tf.html for details.\n"
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -040011083
Wanpeng Lib31c1142018-03-12 04:53:04 -070011084static int vmx_vm_init(struct kvm *kvm)
11085{
Tianyu Lan877ad952018-07-19 08:40:23 +000011086 spin_lock_init(&to_kvm_vmx(kvm)->ept_pointer_lock);
11087
Wanpeng Lib31c1142018-03-12 04:53:04 -070011088 if (!ple_gap)
11089 kvm->arch.pause_in_guest = true;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -040011090
Jiri Kosinad90a7a02018-07-13 16:23:25 +020011091 if (boot_cpu_has(X86_BUG_L1TF) && enable_ept) {
11092 switch (l1tf_mitigation) {
11093 case L1TF_MITIGATION_OFF:
11094 case L1TF_MITIGATION_FLUSH_NOWARN:
11095 /* 'I explicitly don't care' is set */
11096 break;
11097 case L1TF_MITIGATION_FLUSH:
11098 case L1TF_MITIGATION_FLUSH_NOSMT:
11099 case L1TF_MITIGATION_FULL:
11100 /*
11101 * Warn upon starting the first VM in a potentially
11102 * insecure environment.
11103 */
11104 if (cpu_smt_control == CPU_SMT_ENABLED)
11105 pr_warn_once(L1TF_MSG_SMT);
11106 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_NEVER)
11107 pr_warn_once(L1TF_MSG_L1D);
11108 break;
11109 case L1TF_MITIGATION_FULL_FORCE:
11110 /* Flush is enforced */
11111 break;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -040011112 }
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -040011113 }
Wanpeng Lib31c1142018-03-12 04:53:04 -070011114 return 0;
11115}
11116
Yang, Sheng002c7f72007-07-31 14:23:01 +030011117static void __init vmx_check_processor_compat(void *rtn)
11118{
11119 struct vmcs_config vmcs_conf;
11120
11121 *(int *)rtn = 0;
11122 if (setup_vmcs_config(&vmcs_conf) < 0)
11123 *(int *)rtn = -EIO;
Paolo Bonzini13893092018-02-26 13:40:09 +010011124 nested_vmx_setup_ctls_msrs(&vmcs_conf.nested, enable_apicv);
Yang, Sheng002c7f72007-07-31 14:23:01 +030011125 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
11126 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
11127 smp_processor_id());
11128 *(int *)rtn = -EIO;
11129 }
11130}
11131
Sheng Yang4b12f0d2009-04-27 20:35:42 +080011132static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +080011133{
Xiao Guangrongb18d5432015-06-15 16:55:21 +080011134 u8 cache;
11135 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +080011136
Sheng Yang522c68c2009-04-27 20:35:43 +080011137 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +020011138 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +080011139 * 2. EPT with VT-d:
11140 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +020011141 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +080011142 * b. VT-d with snooping control feature: snooping control feature of
11143 * VT-d engine can guarantee the cache correctness. Just set it
11144 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +080011145 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +080011146 * consistent with host MTRR
11147 */
Paolo Bonzini606decd2015-10-01 13:12:47 +020011148 if (is_mmio) {
11149 cache = MTRR_TYPE_UNCACHABLE;
11150 goto exit;
11151 }
11152
11153 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +080011154 ipat = VMX_EPT_IPAT_BIT;
11155 cache = MTRR_TYPE_WRBACK;
11156 goto exit;
11157 }
11158
11159 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
11160 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +020011161 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +080011162 cache = MTRR_TYPE_WRBACK;
11163 else
11164 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +080011165 goto exit;
11166 }
11167
Xiao Guangrongff536042015-06-15 16:55:22 +080011168 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +080011169
11170exit:
11171 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +080011172}
11173
Sheng Yang17cc3932010-01-05 19:02:27 +080011174static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +020011175{
Sheng Yang878403b2010-01-05 19:02:29 +080011176 if (enable_ept && !cpu_has_vmx_ept_1g_page())
11177 return PT_DIRECTORY_LEVEL;
11178 else
11179 /* For shadow and EPT supported 1GB page */
11180 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +020011181}
11182
Xiao Guangrongfeda8052015-09-09 14:05:55 +080011183static void vmcs_set_secondary_exec_control(u32 new_ctl)
11184{
11185 /*
11186 * These bits in the secondary execution controls field
11187 * are dynamic, the others are mostly based on the hypervisor
11188 * architecture and the guest's CPUID. Do not touch the
11189 * dynamic bits.
11190 */
11191 u32 mask =
11192 SECONDARY_EXEC_SHADOW_VMCS |
11193 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Paolo Bonzini0367f202016-07-12 10:44:55 +020011194 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
11195 SECONDARY_EXEC_DESC;
Xiao Guangrongfeda8052015-09-09 14:05:55 +080011196
11197 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
11198
11199 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
11200 (new_ctl & ~mask) | (cur_ctl & mask));
11201}
11202
David Matlack8322ebb2016-11-29 18:14:09 -080011203/*
11204 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
11205 * (indicating "allowed-1") if they are supported in the guest's CPUID.
11206 */
11207static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
11208{
11209 struct vcpu_vmx *vmx = to_vmx(vcpu);
11210 struct kvm_cpuid_entry2 *entry;
11211
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011212 vmx->nested.msrs.cr0_fixed1 = 0xffffffff;
11213 vmx->nested.msrs.cr4_fixed1 = X86_CR4_PCE;
David Matlack8322ebb2016-11-29 18:14:09 -080011214
11215#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
11216 if (entry && (entry->_reg & (_cpuid_mask))) \
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011217 vmx->nested.msrs.cr4_fixed1 |= (_cr4_mask); \
David Matlack8322ebb2016-11-29 18:14:09 -080011218} while (0)
11219
11220 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
11221 cr4_fixed1_update(X86_CR4_VME, edx, bit(X86_FEATURE_VME));
11222 cr4_fixed1_update(X86_CR4_PVI, edx, bit(X86_FEATURE_VME));
11223 cr4_fixed1_update(X86_CR4_TSD, edx, bit(X86_FEATURE_TSC));
11224 cr4_fixed1_update(X86_CR4_DE, edx, bit(X86_FEATURE_DE));
11225 cr4_fixed1_update(X86_CR4_PSE, edx, bit(X86_FEATURE_PSE));
11226 cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE));
11227 cr4_fixed1_update(X86_CR4_MCE, edx, bit(X86_FEATURE_MCE));
11228 cr4_fixed1_update(X86_CR4_PGE, edx, bit(X86_FEATURE_PGE));
11229 cr4_fixed1_update(X86_CR4_OSFXSR, edx, bit(X86_FEATURE_FXSR));
11230 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, bit(X86_FEATURE_XMM));
11231 cr4_fixed1_update(X86_CR4_VMXE, ecx, bit(X86_FEATURE_VMX));
11232 cr4_fixed1_update(X86_CR4_SMXE, ecx, bit(X86_FEATURE_SMX));
11233 cr4_fixed1_update(X86_CR4_PCIDE, ecx, bit(X86_FEATURE_PCID));
11234 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, bit(X86_FEATURE_XSAVE));
11235
11236 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
11237 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, bit(X86_FEATURE_FSGSBASE));
11238 cr4_fixed1_update(X86_CR4_SMEP, ebx, bit(X86_FEATURE_SMEP));
11239 cr4_fixed1_update(X86_CR4_SMAP, ebx, bit(X86_FEATURE_SMAP));
11240 cr4_fixed1_update(X86_CR4_PKE, ecx, bit(X86_FEATURE_PKU));
Paolo Bonzinic4ad77e2017-11-13 14:23:59 +010011241 cr4_fixed1_update(X86_CR4_UMIP, ecx, bit(X86_FEATURE_UMIP));
David Matlack8322ebb2016-11-29 18:14:09 -080011242
11243#undef cr4_fixed1_update
11244}
11245
Sheng Yang0e851882009-12-18 16:48:46 +080011246static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
11247{
Sheng Yang4e47c7a2009-12-18 16:48:47 +080011248 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +080011249
Paolo Bonzini80154d72017-08-24 13:55:35 +020011250 if (cpu_has_secondary_exec_ctrls()) {
11251 vmx_compute_secondary_exec_control(vmx);
11252 vmcs_set_secondary_exec_control(vmx->secondary_exec_control);
Sheng Yang4e47c7a2009-12-18 16:48:47 +080011253 }
Mao, Junjiead756a12012-07-02 01:18:48 +000011254
Haozhong Zhang37e4c992016-06-22 14:59:55 +080011255 if (nested_vmx_allowed(vcpu))
11256 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
11257 FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
11258 else
11259 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
11260 ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
David Matlack8322ebb2016-11-29 18:14:09 -080011261
11262 if (nested_vmx_allowed(vcpu))
11263 nested_vmx_cr_fixed1_bits_update(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +080011264}
11265
Joerg Roedeld4330ef2010-04-22 12:33:11 +020011266static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
11267{
Nadav Har'El7b8050f2011-05-25 23:16:10 +030011268 if (func == 1 && nested)
11269 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +020011270}
11271
Yang Zhang25d92082013-08-06 12:00:32 +030011272static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
11273 struct x86_exception *fault)
11274{
Jan Kiszka533558b2014-01-04 18:47:20 +010011275 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Bandan Dasc5f983f2017-05-05 15:25:14 -040011276 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +010011277 u32 exit_reason;
Bandan Dasc5f983f2017-05-05 15:25:14 -040011278 unsigned long exit_qualification = vcpu->arch.exit_qualification;
Yang Zhang25d92082013-08-06 12:00:32 +030011279
Bandan Dasc5f983f2017-05-05 15:25:14 -040011280 if (vmx->nested.pml_full) {
11281 exit_reason = EXIT_REASON_PML_FULL;
11282 vmx->nested.pml_full = false;
11283 exit_qualification &= INTR_INFO_UNBLOCK_NMI;
11284 } else if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +010011285 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +030011286 else
Jan Kiszka533558b2014-01-04 18:47:20 +010011287 exit_reason = EXIT_REASON_EPT_VIOLATION;
Bandan Dasc5f983f2017-05-05 15:25:14 -040011288
11289 nested_vmx_vmexit(vcpu, exit_reason, 0, exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +030011290 vmcs12->guest_physical_address = fault->address;
11291}
11292
Peter Feiner995f00a2017-06-30 17:26:32 -070011293static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu)
11294{
David Hildenbrandbb97a012017-08-10 23:15:28 +020011295 return nested_ept_get_cr3(vcpu) & VMX_EPTP_AD_ENABLE_BIT;
Peter Feiner995f00a2017-06-30 17:26:32 -070011296}
11297
Nadav Har'El155a97a2013-08-05 11:07:16 +030011298/* Callbacks for nested_ept_init_mmu_context: */
11299
11300static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
11301{
11302 /* return the page table to be shadowed - in our case, EPT12 */
11303 return get_vmcs12(vcpu)->ept_pointer;
11304}
11305
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020011306static int nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +030011307{
Paolo Bonziniad896af2013-10-02 16:56:14 +020011308 WARN_ON(mmu_is_nested(vcpu));
David Hildenbranda057e0e2017-08-10 23:36:54 +020011309 if (!valid_ept_address(vcpu, nested_ept_get_cr3(vcpu)))
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020011310 return 1;
11311
Paolo Bonziniad896af2013-10-02 16:56:14 +020011312 kvm_init_shadow_ept_mmu(vcpu,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011313 to_vmx(vcpu)->nested.msrs.ept_caps &
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020011314 VMX_EPT_EXECUTE_ONLY_BIT,
Junaid Shahid50c28f22018-06-27 14:59:11 -070011315 nested_ept_ad_enabled(vcpu),
11316 nested_ept_get_cr3(vcpu));
Nadav Har'El155a97a2013-08-05 11:07:16 +030011317 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
11318 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
11319 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
11320
11321 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020011322 return 0;
Nadav Har'El155a97a2013-08-05 11:07:16 +030011323}
11324
11325static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
11326{
11327 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
11328}
11329
Eugene Korenevsky19d5f102014-12-16 22:35:53 +030011330static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
11331 u16 error_code)
11332{
11333 bool inequality, bit;
11334
11335 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
11336 inequality =
11337 (error_code & vmcs12->page_fault_error_code_mask) !=
11338 vmcs12->page_fault_error_code_match;
11339 return inequality ^ bit;
11340}
11341
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030011342static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
11343 struct x86_exception *fault)
11344{
11345 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
11346
11347 WARN_ON(!is_guest_mode(vcpu));
11348
Wanpeng Li305d0ab2017-09-28 18:16:44 -070011349 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code) &&
11350 !to_vmx(vcpu)->nested.nested_run_pending) {
Paolo Bonzinib96fb432017-07-27 12:29:32 +020011351 vmcs12->vm_exit_intr_error_code = fault->error_code;
11352 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
11353 PF_VECTOR | INTR_TYPE_HARD_EXCEPTION |
11354 INTR_INFO_DELIVER_CODE_MASK | INTR_INFO_VALID_MASK,
11355 fault->address);
Paolo Bonzini7313c692017-07-27 10:31:25 +020011356 } else {
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030011357 kvm_inject_page_fault(vcpu, fault);
Paolo Bonzini7313c692017-07-27 10:31:25 +020011358 }
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030011359}
11360
Paolo Bonzinic9923842017-12-13 14:16:30 +010011361static inline bool nested_vmx_prepare_msr_bitmap(struct kvm_vcpu *vcpu,
11362 struct vmcs12 *vmcs12);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011363
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020011364static void nested_get_vmcs12_pages(struct kvm_vcpu *vcpu)
Wanpeng Lia2bcba52014-08-21 19:46:49 +080011365{
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020011366 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +080011367 struct vcpu_vmx *vmx = to_vmx(vcpu);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011368 struct page *page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011369 u64 hpa;
Wanpeng Lia2bcba52014-08-21 19:46:49 +080011370
11371 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Wanpeng Lia2bcba52014-08-21 19:46:49 +080011372 /*
11373 * Translate L1 physical address to host physical
11374 * address for vmcs02. Keep the page pinned, so this
11375 * physical address remains valid. We keep a reference
11376 * to it so we can release it later.
11377 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011378 if (vmx->nested.apic_access_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +020011379 kvm_release_page_dirty(vmx->nested.apic_access_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011380 vmx->nested.apic_access_page = NULL;
11381 }
11382 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->apic_access_addr);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011383 /*
11384 * If translation failed, no matter: This feature asks
11385 * to exit when accessing the given address, and if it
11386 * can never be accessed, this feature won't do
11387 * anything anyway.
11388 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011389 if (!is_error_page(page)) {
11390 vmx->nested.apic_access_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011391 hpa = page_to_phys(vmx->nested.apic_access_page);
11392 vmcs_write64(APIC_ACCESS_ADDR, hpa);
11393 } else {
11394 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
11395 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
11396 }
Wanpeng Lia2bcba52014-08-21 19:46:49 +080011397 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011398
11399 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011400 if (vmx->nested.virtual_apic_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +020011401 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011402 vmx->nested.virtual_apic_page = NULL;
11403 }
11404 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->virtual_apic_page_addr);
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011405
11406 /*
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011407 * If translation failed, VM entry will fail because
11408 * prepare_vmcs02 set VIRTUAL_APIC_PAGE_ADDR to -1ull.
11409 * Failing the vm entry is _not_ what the processor
11410 * does but it's basically the only possibility we
11411 * have. We could still enter the guest if CR8 load
11412 * exits are enabled, CR8 store exits are enabled, and
11413 * virtualize APIC access is disabled; in this case
11414 * the processor would never use the TPR shadow and we
11415 * could simply clear the bit from the execution
11416 * control. But such a configuration is useless, so
11417 * let's keep the code simple.
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011418 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011419 if (!is_error_page(page)) {
11420 vmx->nested.virtual_apic_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011421 hpa = page_to_phys(vmx->nested.virtual_apic_page);
11422 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, hpa);
11423 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011424 }
11425
Wincy Van705699a2015-02-03 23:58:17 +080011426 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +080011427 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
11428 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011429 kvm_release_page_dirty(vmx->nested.pi_desc_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011430 vmx->nested.pi_desc_page = NULL;
Wincy Van705699a2015-02-03 23:58:17 +080011431 }
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011432 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->posted_intr_desc_addr);
11433 if (is_error_page(page))
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011434 return;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011435 vmx->nested.pi_desc_page = page;
11436 vmx->nested.pi_desc = kmap(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +080011437 vmx->nested.pi_desc =
11438 (struct pi_desc *)((void *)vmx->nested.pi_desc +
11439 (unsigned long)(vmcs12->posted_intr_desc_addr &
11440 (PAGE_SIZE - 1)));
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011441 vmcs_write64(POSTED_INTR_DESC_ADDR,
11442 page_to_phys(vmx->nested.pi_desc_page) +
11443 (unsigned long)(vmcs12->posted_intr_desc_addr &
11444 (PAGE_SIZE - 1)));
Wincy Van705699a2015-02-03 23:58:17 +080011445 }
Linus Torvaldsd4667ca2018-02-14 17:02:15 -080011446 if (nested_vmx_prepare_msr_bitmap(vcpu, vmcs12))
KarimAllah Ahmed3712caeb2018-02-10 23:39:26 +000011447 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
11448 CPU_BASED_USE_MSR_BITMAPS);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011449 else
11450 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
11451 CPU_BASED_USE_MSR_BITMAPS);
Wanpeng Lia2bcba52014-08-21 19:46:49 +080011452}
11453
Jan Kiszkaf41245002014-03-07 20:03:13 +010011454static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
11455{
11456 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
11457 struct vcpu_vmx *vmx = to_vmx(vcpu);
11458
Sean Christopherson4c008122018-08-27 15:21:10 -070011459 /*
11460 * A timer value of zero is architecturally guaranteed to cause
11461 * a VMExit prior to executing any instructions in the guest.
11462 */
11463 if (preemption_timeout == 0) {
Jan Kiszkaf41245002014-03-07 20:03:13 +010011464 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
11465 return;
11466 }
11467
Sean Christopherson4c008122018-08-27 15:21:10 -070011468 if (vcpu->arch.virtual_tsc_khz == 0)
11469 return;
11470
Jan Kiszkaf41245002014-03-07 20:03:13 +010011471 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
11472 preemption_timeout *= 1000000;
11473 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
11474 hrtimer_start(&vmx->nested.preemption_timer,
11475 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
11476}
11477
Jim Mattson56a20512017-07-06 16:33:06 -070011478static int nested_vmx_check_io_bitmap_controls(struct kvm_vcpu *vcpu,
11479 struct vmcs12 *vmcs12)
11480{
11481 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
11482 return 0;
11483
11484 if (!page_address_valid(vcpu, vmcs12->io_bitmap_a) ||
11485 !page_address_valid(vcpu, vmcs12->io_bitmap_b))
11486 return -EINVAL;
11487
11488 return 0;
11489}
11490
Wincy Van3af18d92015-02-03 23:49:31 +080011491static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
11492 struct vmcs12 *vmcs12)
11493{
Wincy Van3af18d92015-02-03 23:49:31 +080011494 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
11495 return 0;
11496
Jim Mattson5fa99cb2017-07-06 16:33:07 -070011497 if (!page_address_valid(vcpu, vmcs12->msr_bitmap))
Wincy Van3af18d92015-02-03 23:49:31 +080011498 return -EINVAL;
11499
11500 return 0;
11501}
11502
Jim Mattson712b12d2017-08-24 13:24:47 -070011503static int nested_vmx_check_tpr_shadow_controls(struct kvm_vcpu *vcpu,
11504 struct vmcs12 *vmcs12)
11505{
11506 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
11507 return 0;
11508
11509 if (!page_address_valid(vcpu, vmcs12->virtual_apic_page_addr))
11510 return -EINVAL;
11511
11512 return 0;
11513}
11514
Wincy Van3af18d92015-02-03 23:49:31 +080011515/*
11516 * Merge L0's and L1's MSR bitmap, return false to indicate that
11517 * we do not use the hardware.
11518 */
Paolo Bonzinic9923842017-12-13 14:16:30 +010011519static inline bool nested_vmx_prepare_msr_bitmap(struct kvm_vcpu *vcpu,
11520 struct vmcs12 *vmcs12)
Wincy Van3af18d92015-02-03 23:49:31 +080011521{
Wincy Van82f0dd42015-02-03 23:57:18 +080011522 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +080011523 struct page *page;
Radim Krčmářd048c092016-08-08 20:16:22 +020011524 unsigned long *msr_bitmap_l1;
Paolo Bonzini904e14f2018-01-16 16:51:18 +010011525 unsigned long *msr_bitmap_l0 = to_vmx(vcpu)->nested.vmcs02.msr_bitmap;
Ashok Raj15d45072018-02-01 22:59:43 +010011526 /*
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010011527 * pred_cmd & spec_ctrl are trying to verify two things:
Ashok Raj15d45072018-02-01 22:59:43 +010011528 *
11529 * 1. L0 gave a permission to L1 to actually passthrough the MSR. This
11530 * ensures that we do not accidentally generate an L02 MSR bitmap
11531 * from the L12 MSR bitmap that is too permissive.
11532 * 2. That L1 or L2s have actually used the MSR. This avoids
11533 * unnecessarily merging of the bitmap if the MSR is unused. This
11534 * works properly because we only update the L01 MSR bitmap lazily.
11535 * So even if L0 should pass L1 these MSRs, the L01 bitmap is only
11536 * updated to reflect this when L1 (or its L2s) actually write to
11537 * the MSR.
11538 */
KarimAllah Ahmed206587a2018-02-10 23:39:25 +000011539 bool pred_cmd = !msr_write_intercepted_l01(vcpu, MSR_IA32_PRED_CMD);
11540 bool spec_ctrl = !msr_write_intercepted_l01(vcpu, MSR_IA32_SPEC_CTRL);
Wincy Vanf2b93282015-02-03 23:56:03 +080011541
Paolo Bonzinic9923842017-12-13 14:16:30 +010011542 /* Nothing to do if the MSR bitmap is not in use. */
11543 if (!cpu_has_vmx_msr_bitmap() ||
11544 !nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
11545 return false;
11546
Ashok Raj15d45072018-02-01 22:59:43 +010011547 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010011548 !pred_cmd && !spec_ctrl)
Wincy Vanf2b93282015-02-03 23:56:03 +080011549 return false;
11550
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011551 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->msr_bitmap);
11552 if (is_error_page(page))
Wincy Vanf2b93282015-02-03 23:56:03 +080011553 return false;
Paolo Bonzinic9923842017-12-13 14:16:30 +010011554
Radim Krčmářd048c092016-08-08 20:16:22 +020011555 msr_bitmap_l1 = (unsigned long *)kmap(page);
Paolo Bonzinic9923842017-12-13 14:16:30 +010011556 if (nested_cpu_has_apic_reg_virt(vmcs12)) {
11557 /*
11558 * L0 need not intercept reads for MSRs between 0x800 and 0x8ff, it
11559 * just lets the processor take the value from the virtual-APIC page;
11560 * take those 256 bits directly from the L1 bitmap.
11561 */
11562 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
11563 unsigned word = msr / BITS_PER_LONG;
11564 msr_bitmap_l0[word] = msr_bitmap_l1[word];
11565 msr_bitmap_l0[word + (0x800 / sizeof(long))] = ~0;
Wincy Van608406e2015-02-03 23:57:51 +080011566 }
Paolo Bonzinic9923842017-12-13 14:16:30 +010011567 } else {
11568 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
11569 unsigned word = msr / BITS_PER_LONG;
11570 msr_bitmap_l0[word] = ~0;
11571 msr_bitmap_l0[word + (0x800 / sizeof(long))] = ~0;
11572 }
11573 }
11574
11575 nested_vmx_disable_intercept_for_msr(
11576 msr_bitmap_l1, msr_bitmap_l0,
Paolo Bonzinid7231e72017-12-21 00:47:55 +010011577 X2APIC_MSR(APIC_TASKPRI),
Paolo Bonzinic9923842017-12-13 14:16:30 +010011578 MSR_TYPE_W);
11579
11580 if (nested_cpu_has_vid(vmcs12)) {
11581 nested_vmx_disable_intercept_for_msr(
11582 msr_bitmap_l1, msr_bitmap_l0,
Paolo Bonzinid7231e72017-12-21 00:47:55 +010011583 X2APIC_MSR(APIC_EOI),
Paolo Bonzinic9923842017-12-13 14:16:30 +010011584 MSR_TYPE_W);
11585 nested_vmx_disable_intercept_for_msr(
11586 msr_bitmap_l1, msr_bitmap_l0,
Paolo Bonzinid7231e72017-12-21 00:47:55 +010011587 X2APIC_MSR(APIC_SELF_IPI),
Paolo Bonzinic9923842017-12-13 14:16:30 +010011588 MSR_TYPE_W);
Wincy Van82f0dd42015-02-03 23:57:18 +080011589 }
Ashok Raj15d45072018-02-01 22:59:43 +010011590
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010011591 if (spec_ctrl)
11592 nested_vmx_disable_intercept_for_msr(
11593 msr_bitmap_l1, msr_bitmap_l0,
11594 MSR_IA32_SPEC_CTRL,
11595 MSR_TYPE_R | MSR_TYPE_W);
11596
Ashok Raj15d45072018-02-01 22:59:43 +010011597 if (pred_cmd)
11598 nested_vmx_disable_intercept_for_msr(
11599 msr_bitmap_l1, msr_bitmap_l0,
11600 MSR_IA32_PRED_CMD,
11601 MSR_TYPE_W);
11602
Wincy Vanf2b93282015-02-03 23:56:03 +080011603 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011604 kvm_release_page_clean(page);
Wincy Vanf2b93282015-02-03 23:56:03 +080011605
11606 return true;
11607}
11608
Liran Alon61ada742018-06-23 02:35:08 +030011609static void nested_cache_shadow_vmcs12(struct kvm_vcpu *vcpu,
11610 struct vmcs12 *vmcs12)
11611{
11612 struct vmcs12 *shadow;
11613 struct page *page;
11614
11615 if (!nested_cpu_has_shadow_vmcs(vmcs12) ||
11616 vmcs12->vmcs_link_pointer == -1ull)
11617 return;
11618
11619 shadow = get_shadow_vmcs12(vcpu);
11620 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->vmcs_link_pointer);
11621
11622 memcpy(shadow, kmap(page), VMCS12_SIZE);
11623
11624 kunmap(page);
11625 kvm_release_page_clean(page);
11626}
11627
11628static void nested_flush_cached_shadow_vmcs12(struct kvm_vcpu *vcpu,
11629 struct vmcs12 *vmcs12)
11630{
11631 struct vcpu_vmx *vmx = to_vmx(vcpu);
11632
11633 if (!nested_cpu_has_shadow_vmcs(vmcs12) ||
11634 vmcs12->vmcs_link_pointer == -1ull)
11635 return;
11636
11637 kvm_write_guest(vmx->vcpu.kvm, vmcs12->vmcs_link_pointer,
11638 get_shadow_vmcs12(vcpu), VMCS12_SIZE);
11639}
11640
Krish Sadhukhanf0f4cf52018-04-11 01:10:16 -040011641static int nested_vmx_check_apic_access_controls(struct kvm_vcpu *vcpu,
11642 struct vmcs12 *vmcs12)
11643{
11644 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) &&
11645 !page_address_valid(vcpu, vmcs12->apic_access_addr))
11646 return -EINVAL;
11647 else
11648 return 0;
11649}
11650
Wincy Vanf2b93282015-02-03 23:56:03 +080011651static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
11652 struct vmcs12 *vmcs12)
11653{
Wincy Van82f0dd42015-02-03 23:57:18 +080011654 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +080011655 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +080011656 !nested_cpu_has_vid(vmcs12) &&
11657 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +080011658 return 0;
11659
11660 /*
11661 * If virtualize x2apic mode is enabled,
11662 * virtualize apic access must be disabled.
11663 */
Wincy Van82f0dd42015-02-03 23:57:18 +080011664 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
11665 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +080011666 return -EINVAL;
11667
Wincy Van608406e2015-02-03 23:57:51 +080011668 /*
11669 * If virtual interrupt delivery is enabled,
11670 * we must exit on external interrupts.
11671 */
11672 if (nested_cpu_has_vid(vmcs12) &&
11673 !nested_exit_on_intr(vcpu))
11674 return -EINVAL;
11675
Wincy Van705699a2015-02-03 23:58:17 +080011676 /*
11677 * bits 15:8 should be zero in posted_intr_nv,
11678 * the descriptor address has been already checked
11679 * in nested_get_vmcs12_pages.
11680 */
11681 if (nested_cpu_has_posted_intr(vmcs12) &&
11682 (!nested_cpu_has_vid(vmcs12) ||
11683 !nested_exit_intr_ack_set(vcpu) ||
11684 vmcs12->posted_intr_nv & 0xff00))
11685 return -EINVAL;
11686
Wincy Vanf2b93282015-02-03 23:56:03 +080011687 /* tpr shadow is needed by all apicv features. */
11688 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
11689 return -EINVAL;
11690
11691 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +080011692}
11693
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011694static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
11695 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011696 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +030011697{
Liran Alone2536742018-06-23 02:35:02 +030011698 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011699 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011700 u64 count, addr;
11701
Liran Alone2536742018-06-23 02:35:02 +030011702 if (vmcs12_read_any(vmcs12, count_field, &count) ||
11703 vmcs12_read_any(vmcs12, addr_field, &addr)) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011704 WARN_ON(1);
11705 return -EINVAL;
11706 }
11707 if (count == 0)
11708 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011709 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011710 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
11711 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011712 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011713 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
11714 addr_field, maxphyaddr, count, addr);
11715 return -EINVAL;
11716 }
11717 return 0;
11718}
11719
11720static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
11721 struct vmcs12 *vmcs12)
11722{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011723 if (vmcs12->vm_exit_msr_load_count == 0 &&
11724 vmcs12->vm_exit_msr_store_count == 0 &&
11725 vmcs12->vm_entry_msr_load_count == 0)
11726 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011727 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011728 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011729 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011730 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011731 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011732 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +030011733 return -EINVAL;
11734 return 0;
11735}
11736
Bandan Dasc5f983f2017-05-05 15:25:14 -040011737static int nested_vmx_check_pml_controls(struct kvm_vcpu *vcpu,
11738 struct vmcs12 *vmcs12)
11739{
11740 u64 address = vmcs12->pml_address;
11741 int maxphyaddr = cpuid_maxphyaddr(vcpu);
11742
11743 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML)) {
11744 if (!nested_cpu_has_ept(vmcs12) ||
11745 !IS_ALIGNED(address, 4096) ||
11746 address >> maxphyaddr)
11747 return -EINVAL;
11748 }
11749
11750 return 0;
11751}
11752
Liran Alona8a7c022018-06-23 02:35:06 +030011753static int nested_vmx_check_shadow_vmcs_controls(struct kvm_vcpu *vcpu,
11754 struct vmcs12 *vmcs12)
11755{
11756 if (!nested_cpu_has_shadow_vmcs(vmcs12))
11757 return 0;
11758
11759 if (!page_address_valid(vcpu, vmcs12->vmread_bitmap) ||
11760 !page_address_valid(vcpu, vmcs12->vmwrite_bitmap))
11761 return -EINVAL;
11762
11763 return 0;
11764}
11765
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011766static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
11767 struct vmx_msr_entry *e)
11768{
11769 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +020011770 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011771 return -EINVAL;
11772 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
11773 e->index == MSR_IA32_UCODE_REV)
11774 return -EINVAL;
11775 if (e->reserved != 0)
11776 return -EINVAL;
11777 return 0;
11778}
11779
11780static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
11781 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +030011782{
11783 if (e->index == MSR_FS_BASE ||
11784 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011785 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
11786 nested_vmx_msr_check_common(vcpu, e))
11787 return -EINVAL;
11788 return 0;
11789}
11790
11791static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
11792 struct vmx_msr_entry *e)
11793{
11794 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
11795 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +030011796 return -EINVAL;
11797 return 0;
11798}
11799
11800/*
11801 * Load guest's/host's msr at nested entry/exit.
11802 * return 0 for success, entry index for failure.
11803 */
11804static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
11805{
11806 u32 i;
11807 struct vmx_msr_entry e;
11808 struct msr_data msr;
11809
11810 msr.host_initiated = false;
11811 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020011812 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
11813 &e, sizeof(e))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011814 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011815 "%s cannot read MSR entry (%u, 0x%08llx)\n",
11816 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030011817 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011818 }
11819 if (nested_vmx_load_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011820 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011821 "%s check failed (%u, 0x%x, 0x%x)\n",
11822 __func__, i, e.index, e.reserved);
11823 goto fail;
11824 }
Wincy Vanff651cb2014-12-11 08:52:58 +030011825 msr.index = e.index;
11826 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011827 if (kvm_set_msr(vcpu, &msr)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011828 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011829 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
11830 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +030011831 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011832 }
Wincy Vanff651cb2014-12-11 08:52:58 +030011833 }
11834 return 0;
11835fail:
11836 return i + 1;
11837}
11838
11839static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
11840{
11841 u32 i;
11842 struct vmx_msr_entry e;
11843
11844 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +020011845 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020011846 if (kvm_vcpu_read_guest(vcpu,
11847 gpa + i * sizeof(e),
11848 &e, 2 * sizeof(u32))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011849 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011850 "%s cannot read MSR entry (%u, 0x%08llx)\n",
11851 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030011852 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011853 }
11854 if (nested_vmx_store_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011855 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011856 "%s check failed (%u, 0x%x, 0x%x)\n",
11857 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +030011858 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011859 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +020011860 msr_info.host_initiated = false;
11861 msr_info.index = e.index;
11862 if (kvm_get_msr(vcpu, &msr_info)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011863 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011864 "%s cannot read MSR (%u, 0x%x)\n",
11865 __func__, i, e.index);
11866 return -EINVAL;
11867 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020011868 if (kvm_vcpu_write_guest(vcpu,
11869 gpa + i * sizeof(e) +
11870 offsetof(struct vmx_msr_entry, value),
11871 &msr_info.data, sizeof(msr_info.data))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011872 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011873 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +020011874 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011875 return -EINVAL;
11876 }
Wincy Vanff651cb2014-12-11 08:52:58 +030011877 }
11878 return 0;
11879}
11880
Ladi Prosek1dc35da2016-11-30 16:03:11 +010011881static bool nested_cr3_valid(struct kvm_vcpu *vcpu, unsigned long val)
11882{
11883 unsigned long invalid_mask;
11884
11885 invalid_mask = (~0ULL) << cpuid_maxphyaddr(vcpu);
11886 return (val & invalid_mask) == 0;
11887}
11888
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011889/*
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011890 * Load guest's/host's cr3 at nested entry/exit. nested_ept is true if we are
11891 * emulating VM entry into a guest with EPT enabled.
11892 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
11893 * is assigned to entry_failure_code on failure.
11894 */
11895static int nested_vmx_load_cr3(struct kvm_vcpu *vcpu, unsigned long cr3, bool nested_ept,
Jim Mattsonca0bde22016-11-30 12:03:46 -080011896 u32 *entry_failure_code)
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011897{
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011898 if (cr3 != kvm_read_cr3(vcpu) || (!nested_ept && pdptrs_changed(vcpu))) {
Ladi Prosek1dc35da2016-11-30 16:03:11 +010011899 if (!nested_cr3_valid(vcpu, cr3)) {
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011900 *entry_failure_code = ENTRY_FAIL_DEFAULT;
11901 return 1;
11902 }
11903
11904 /*
11905 * If PAE paging and EPT are both on, CR3 is not used by the CPU and
11906 * must not be dereferenced.
11907 */
11908 if (!is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu) &&
11909 !nested_ept) {
11910 if (!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) {
11911 *entry_failure_code = ENTRY_FAIL_PDPTE;
11912 return 1;
11913 }
11914 }
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011915 }
11916
Junaid Shahid50c28f22018-06-27 14:59:11 -070011917 if (!nested_ept)
Junaid Shahidade61e22018-06-27 14:59:15 -070011918 kvm_mmu_new_cr3(vcpu, cr3, false);
Junaid Shahid50c28f22018-06-27 14:59:11 -070011919
11920 vcpu->arch.cr3 = cr3;
11921 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
11922
11923 kvm_init_mmu(vcpu, false);
11924
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011925 return 0;
11926}
11927
Jim Mattson6514dc32018-04-26 16:09:12 -070011928static void prepare_vmcs02_full(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
Paolo Bonzini74a497f2017-12-20 13:55:39 +010011929{
Paolo Bonzini8665c3f2017-12-20 13:56:53 +010011930 struct vcpu_vmx *vmx = to_vmx(vcpu);
11931
11932 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
11933 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
11934 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
11935 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
11936 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
11937 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
11938 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
11939 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
11940 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
11941 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
11942 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
11943 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
11944 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
11945 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
11946 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
11947 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
11948 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
11949 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
11950 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
11951 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
11952 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
11953 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
11954 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
11955 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
11956 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
11957 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
11958 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
11959 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
11960 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
11961 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
11962 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
Paolo Bonzini25a2e4f2017-12-20 14:05:21 +010011963
11964 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
11965 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
11966 vmcs12->guest_pending_dbg_exceptions);
11967 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
11968 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
11969
11970 if (nested_cpu_has_xsaves(vmcs12))
11971 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
11972 vmcs_write64(VMCS_LINK_POINTER, -1ull);
11973
11974 if (cpu_has_vmx_posted_intr())
11975 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_NESTED_VECTOR);
11976
11977 /*
11978 * Whether page-faults are trapped is determined by a combination of
11979 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
11980 * If enable_ept, L0 doesn't care about page faults and we should
11981 * set all of these to L1's desires. However, if !enable_ept, L0 does
11982 * care about (at least some) page faults, and because it is not easy
11983 * (if at all possible?) to merge L0 and L1's desires, we simply ask
11984 * to exit on each and every L2 page fault. This is done by setting
11985 * MASK=MATCH=0 and (see below) EB.PF=1.
11986 * Note that below we don't need special code to set EB.PF beyond the
11987 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
11988 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
11989 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
11990 */
11991 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
11992 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
11993 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
11994 enable_ept ? vmcs12->page_fault_error_code_match : 0);
11995
11996 /* All VMFUNCs are currently emulated through L0 vmexits. */
11997 if (cpu_has_vmx_vmfunc())
11998 vmcs_write64(VM_FUNCTION_CONTROL, 0);
11999
12000 if (cpu_has_vmx_apicv()) {
12001 vmcs_write64(EOI_EXIT_BITMAP0, vmcs12->eoi_exit_bitmap0);
12002 vmcs_write64(EOI_EXIT_BITMAP1, vmcs12->eoi_exit_bitmap1);
12003 vmcs_write64(EOI_EXIT_BITMAP2, vmcs12->eoi_exit_bitmap2);
12004 vmcs_write64(EOI_EXIT_BITMAP3, vmcs12->eoi_exit_bitmap3);
12005 }
12006
12007 /*
12008 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
12009 * Some constant fields are set here by vmx_set_constant_host_state().
12010 * Other fields are different per CPU, and will be set later when
Sean Christopherson6d6095b2018-07-23 12:32:44 -070012011 * vmx_vcpu_load() is called, and when vmx_prepare_switch_to_guest()
12012 * is called.
Paolo Bonzini25a2e4f2017-12-20 14:05:21 +010012013 */
12014 vmx_set_constant_host_state(vmx);
12015
12016 /*
12017 * Set the MSR load/store lists to match L0's settings.
12018 */
12019 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -040012020 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.host.nr);
12021 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host.val));
12022 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.guest.nr);
12023 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest.val));
Paolo Bonzini25a2e4f2017-12-20 14:05:21 +010012024
12025 set_cr4_guest_host_mask(vmx);
12026
12027 if (vmx_mpx_supported())
12028 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
12029
12030 if (enable_vpid) {
12031 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02)
12032 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
12033 else
12034 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
12035 }
12036
12037 /*
12038 * L1 may access the L2's PDPTR, so save them to construct vmcs12
12039 */
12040 if (enable_ept) {
12041 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
12042 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
12043 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
12044 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
12045 }
Radim Krčmář80132f42018-02-02 18:26:58 +010012046
12047 if (cpu_has_vmx_msr_bitmap())
12048 vmcs_write64(MSR_BITMAP, __pa(vmx->nested.vmcs02.msr_bitmap));
Paolo Bonzini74a497f2017-12-20 13:55:39 +010012049}
12050
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012051/*
12052 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
12053 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +080012054 * 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 +030012055 * guest in a way that will both be appropriate to L1's requests, and our
12056 * needs. In addition to modifying the active vmcs (which is vmcs02), this
12057 * function also has additional necessary side-effects, like setting various
12058 * vcpu->arch fields.
Ladi Prosekee146c12016-11-30 16:03:09 +010012059 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
12060 * is assigned to entry_failure_code on failure.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012061 */
Ladi Prosekee146c12016-11-30 16:03:09 +010012062static int prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
Jim Mattson6514dc32018-04-26 16:09:12 -070012063 u32 *entry_failure_code)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012064{
12065 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das03efce62017-05-05 15:25:15 -040012066 u32 exec_control, vmcs12_exec_ctrl;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012067
Sean Christopherson9d1887e2018-03-05 09:33:27 -080012068 if (vmx->nested.dirty_vmcs12) {
Jim Mattson6514dc32018-04-26 16:09:12 -070012069 prepare_vmcs02_full(vcpu, vmcs12);
Sean Christopherson9d1887e2018-03-05 09:33:27 -080012070 vmx->nested.dirty_vmcs12 = false;
12071 }
12072
Paolo Bonzini8665c3f2017-12-20 13:56:53 +010012073 /*
12074 * First, the fields that are shadowed. This must be kept in sync
12075 * with vmx_shadow_fields.h.
12076 */
12077
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012078 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012079 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012080 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012081 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
12082 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
Paolo Bonzini8665c3f2017-12-20 13:56:53 +010012083
Jim Mattson6514dc32018-04-26 16:09:12 -070012084 if (vmx->nested.nested_run_pending &&
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012085 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) {
Jan Kiszka2996fca2014-06-16 13:59:43 +020012086 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
12087 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
12088 } else {
12089 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
12090 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
12091 }
Jim Mattson6514dc32018-04-26 16:09:12 -070012092 if (vmx->nested.nested_run_pending) {
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012093 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
12094 vmcs12->vm_entry_intr_info_field);
12095 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
12096 vmcs12->vm_entry_exception_error_code);
12097 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
12098 vmcs12->vm_entry_instruction_len);
12099 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
12100 vmcs12->guest_interruptibility_info);
Wanpeng Li2d6144e2017-07-25 03:40:46 -070012101 vmx->loaded_vmcs->nmi_known_unmasked =
12102 !(vmcs12->guest_interruptibility_info & GUEST_INTR_STATE_NMI);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012103 } else {
12104 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
12105 }
Gleb Natapov63fbf592013-07-28 18:31:06 +030012106 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012107
Jan Kiszkaf41245002014-03-07 20:03:13 +010012108 exec_control = vmcs12->pin_based_vm_exec_control;
Wincy Van705699a2015-02-03 23:58:17 +080012109
Sean Christophersonf459a702018-08-27 15:21:11 -070012110 /* Preemption timer setting is computed directly in vmx_vcpu_run. */
Paolo Bonzini9314006db2016-07-06 13:23:51 +020012111 exec_control |= vmcs_config.pin_based_exec_ctrl;
Sean Christophersonf459a702018-08-27 15:21:11 -070012112 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
12113 vmx->loaded_vmcs->hv_timer_armed = false;
Paolo Bonzini9314006db2016-07-06 13:23:51 +020012114
12115 /* Posted interrupts setting is only taken from vmcs12. */
Wincy Van705699a2015-02-03 23:58:17 +080012116 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +080012117 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
12118 vmx->nested.pi_pending = false;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080012119 } else {
Wincy Van705699a2015-02-03 23:58:17 +080012120 exec_control &= ~PIN_BASED_POSTED_INTR;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080012121 }
Wincy Van705699a2015-02-03 23:58:17 +080012122
Jan Kiszkaf41245002014-03-07 20:03:13 +010012123 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012124
Jan Kiszkaf41245002014-03-07 20:03:13 +010012125 vmx->nested.preemption_timer_expired = false;
12126 if (nested_cpu_has_preemption_timer(vmcs12))
12127 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +010012128
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012129 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +020012130 exec_control = vmx->secondary_exec_control;
Xiao Guangronge2821622015-09-09 14:05:52 +080012131
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012132 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +020012133 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini90a2db62017-07-27 13:22:13 +020012134 SECONDARY_EXEC_ENABLE_INVPCID |
Jan Kiszkab3a2a902015-03-23 19:27:19 +010012135 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini3db13482017-08-24 14:48:03 +020012136 SECONDARY_EXEC_XSAVES |
Paolo Bonzini696dfd92014-05-07 11:20:54 +020012137 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Bandan Das27c42a12017-08-03 15:54:42 -040012138 SECONDARY_EXEC_APIC_REGISTER_VIRT |
12139 SECONDARY_EXEC_ENABLE_VMFUNC);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012140 if (nested_cpu_has(vmcs12,
Bandan Das03efce62017-05-05 15:25:15 -040012141 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) {
12142 vmcs12_exec_ctrl = vmcs12->secondary_vm_exec_control &
12143 ~SECONDARY_EXEC_ENABLE_PML;
12144 exec_control |= vmcs12_exec_ctrl;
12145 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012146
Liran Alon32c7acf2018-06-23 02:35:11 +030012147 /* VMCS shadowing for L2 is emulated for now */
12148 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
12149
Paolo Bonzini25a2e4f2017-12-20 14:05:21 +010012150 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
Wincy Van608406e2015-02-03 23:57:51 +080012151 vmcs_write16(GUEST_INTR_STATUS,
12152 vmcs12->guest_intr_status);
Wincy Van608406e2015-02-03 23:57:51 +080012153
Jim Mattson6beb7bd2016-11-30 12:03:45 -080012154 /*
12155 * Write an illegal value to APIC_ACCESS_ADDR. Later,
12156 * nested_get_vmcs12_pages will either fix it up or
12157 * remove the VM execution control.
12158 */
12159 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
12160 vmcs_write64(APIC_ACCESS_ADDR, -1ull);
12161
Sean Christopherson0b665d32018-08-14 09:33:34 -070012162 if (exec_control & SECONDARY_EXEC_ENCLS_EXITING)
12163 vmcs_write64(ENCLS_EXITING_BITMAP, -1ull);
12164
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012165 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
12166 }
12167
Jim Mattson83bafef2016-10-04 10:48:38 -070012168 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012169 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
12170 * entry, but only if the current (host) sp changed from the value
12171 * we wrote last (vmx->host_rsp). This cache is no longer relevant
12172 * if we switch vmcs, and rather than hold a separate cache per vmcs,
12173 * here we just force the write to happen on entry.
12174 */
12175 vmx->host_rsp = 0;
12176
12177 exec_control = vmx_exec_control(vmx); /* L0's desires */
12178 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
12179 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
12180 exec_control &= ~CPU_BASED_TPR_SHADOW;
12181 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080012182
Jim Mattson6beb7bd2016-11-30 12:03:45 -080012183 /*
12184 * Write an illegal value to VIRTUAL_APIC_PAGE_ADDR. Later, if
12185 * nested_get_vmcs12_pages can't fix it up, the illegal value
12186 * will result in a VM entry failure.
12187 */
Wanpeng Lia7c0b072014-08-21 19:46:50 +080012188 if (exec_control & CPU_BASED_TPR_SHADOW) {
Jim Mattson6beb7bd2016-11-30 12:03:45 -080012189 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, -1ull);
Wanpeng Lia7c0b072014-08-21 19:46:50 +080012190 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
Jim Mattson51aa68e2017-09-12 13:02:54 -070012191 } else {
12192#ifdef CONFIG_X86_64
12193 exec_control |= CPU_BASED_CR8_LOAD_EXITING |
12194 CPU_BASED_CR8_STORE_EXITING;
12195#endif
Wanpeng Lia7c0b072014-08-21 19:46:50 +080012196 }
12197
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012198 /*
Quan Xu8eb73e2d2017-12-12 16:44:21 +080012199 * A vmexit (to either L1 hypervisor or L0 userspace) is always needed
12200 * for I/O port accesses.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012201 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012202 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
12203 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
12204
12205 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
12206
12207 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
12208 * bitwise-or of what L1 wants to trap for L2, and what we want to
12209 * trap. Note that CR0.TS also needs updating - we do this later.
12210 */
12211 update_exception_bitmap(vcpu);
12212 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
12213 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
12214
Nadav Har'El8049d652013-08-05 11:07:06 +030012215 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
12216 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
12217 * bits are further modified by vmx_set_efer() below.
12218 */
Jan Kiszkaf41245002014-03-07 20:03:13 +010012219 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +030012220
12221 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
12222 * emulated by vmx_set_efer(), below.
12223 */
Gleb Natapov2961e8762013-11-25 15:37:13 +020012224 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +030012225 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
12226 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012227 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
12228
Jim Mattson6514dc32018-04-26 16:09:12 -070012229 if (vmx->nested.nested_run_pending &&
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012230 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012231 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020012232 vcpu->arch.pat = vmcs12->guest_ia32_pat;
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012233 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012234 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012235 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012236
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020012237 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
12238
Peter Feinerc95ba922016-08-17 09:36:47 -070012239 if (kvm_has_tsc_control)
12240 decache_tsc_multiplier(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012241
12242 if (enable_vpid) {
12243 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -070012244 * There is no direct mapping between vpid02 and vpid12, the
12245 * vpid02 is per-vCPU for L0 and reused while the value of
12246 * vpid12 is changed w/ one invvpid during nested vmentry.
12247 * The vpid12 is allocated by L1 for L2, so it will not
12248 * influence global bitmap(for vpid01 and vpid02 allocation)
12249 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012250 */
Wanpeng Li5c614b32015-10-13 09:18:36 -070012251 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
Wanpeng Li5c614b32015-10-13 09:18:36 -070012252 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
12253 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
Liran Alon6bce30c2018-05-22 17:16:12 +030012254 __vmx_flush_tlb(vcpu, vmx->nested.vpid02, true);
Wanpeng Li5c614b32015-10-13 09:18:36 -070012255 }
12256 } else {
Wanpeng Lic2ba05c2017-12-12 17:33:03 -080012257 vmx_flush_tlb(vcpu, true);
Wanpeng Li5c614b32015-10-13 09:18:36 -070012258 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012259 }
12260
Ladi Prosek1fb883b2017-04-04 14:18:53 +020012261 if (enable_pml) {
12262 /*
12263 * Conceptually we want to copy the PML address and index from
12264 * vmcs01 here, and then back to vmcs01 on nested vmexit. But,
12265 * since we always flush the log on each vmexit, this happens
12266 * to be equivalent to simply resetting the fields in vmcs02.
12267 */
12268 ASSERT(vmx->pml_pg);
12269 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
12270 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
12271 }
12272
Nadav Har'El155a97a2013-08-05 11:07:16 +030012273 if (nested_cpu_has_ept(vmcs12)) {
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020012274 if (nested_ept_init_mmu_context(vcpu)) {
12275 *entry_failure_code = ENTRY_FAIL_DEFAULT;
12276 return 1;
12277 }
Jim Mattsonfb6c8192017-03-16 13:53:59 -070012278 } else if (nested_cpu_has2(vmcs12,
12279 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Junaid Shahida468f2d2018-04-26 13:09:50 -070012280 vmx_flush_tlb(vcpu, true);
Nadav Har'El155a97a2013-08-05 11:07:16 +030012281 }
12282
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012283 /*
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080012284 * This sets GUEST_CR0 to vmcs12->guest_cr0, possibly modifying those
12285 * bits which we consider mandatory enabled.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012286 * The CR0_READ_SHADOW is what L2 should have expected to read given
12287 * the specifications by L1; It's not enough to take
12288 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
12289 * have more bits than L1 expected.
12290 */
12291 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
12292 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
12293
12294 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
12295 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
12296
Jim Mattson6514dc32018-04-26 16:09:12 -070012297 if (vmx->nested.nested_run_pending &&
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012298 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER))
David Matlack5a6a9742016-11-29 18:14:10 -080012299 vcpu->arch.efer = vmcs12->guest_ia32_efer;
12300 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
12301 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
12302 else
12303 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
12304 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
12305 vmx_set_efer(vcpu, vcpu->arch.efer);
12306
Sean Christopherson2bb8caf2018-03-12 10:56:13 -070012307 /*
12308 * Guest state is invalid and unrestricted guest is disabled,
12309 * which means L1 attempted VMEntry to L2 with invalid state.
12310 * Fail the VMEntry.
12311 */
Paolo Bonzini3184a992018-03-21 14:20:18 +010012312 if (vmx->emulation_required) {
12313 *entry_failure_code = ENTRY_FAIL_DEFAULT;
Sean Christopherson2bb8caf2018-03-12 10:56:13 -070012314 return 1;
Paolo Bonzini3184a992018-03-21 14:20:18 +010012315 }
Sean Christopherson2bb8caf2018-03-12 10:56:13 -070012316
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010012317 /* Shadow page tables on either EPT or shadow page tables. */
Ladi Prosek7ad658b2017-03-23 07:18:08 +010012318 if (nested_vmx_load_cr3(vcpu, vmcs12->guest_cr3, nested_cpu_has_ept(vmcs12),
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010012319 entry_failure_code))
12320 return 1;
Ladi Prosek7ca29de2016-11-30 16:03:08 +010012321
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030012322 if (!enable_ept)
12323 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
12324
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012325 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
12326 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
Ladi Prosekee146c12016-11-30 16:03:09 +010012327 return 0;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012328}
12329
Krish Sadhukhan0c7f6502018-02-20 21:24:39 -050012330static int nested_vmx_check_nmi_controls(struct vmcs12 *vmcs12)
12331{
12332 if (!nested_cpu_has_nmi_exiting(vmcs12) &&
12333 nested_cpu_has_virtual_nmis(vmcs12))
12334 return -EINVAL;
12335
12336 if (!nested_cpu_has_virtual_nmis(vmcs12) &&
12337 nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING))
12338 return -EINVAL;
12339
12340 return 0;
12341}
12342
Jim Mattsonca0bde22016-11-30 12:03:46 -080012343static int check_vmentry_prereqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
12344{
12345 struct vcpu_vmx *vmx = to_vmx(vcpu);
12346
12347 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
12348 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT)
12349 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12350
Jim Mattson56a20512017-07-06 16:33:06 -070012351 if (nested_vmx_check_io_bitmap_controls(vcpu, vmcs12))
12352 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12353
Jim Mattsonca0bde22016-11-30 12:03:46 -080012354 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12))
12355 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12356
Krish Sadhukhanf0f4cf52018-04-11 01:10:16 -040012357 if (nested_vmx_check_apic_access_controls(vcpu, vmcs12))
12358 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12359
Jim Mattson712b12d2017-08-24 13:24:47 -070012360 if (nested_vmx_check_tpr_shadow_controls(vcpu, vmcs12))
12361 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12362
Jim Mattsonca0bde22016-11-30 12:03:46 -080012363 if (nested_vmx_check_apicv_controls(vcpu, vmcs12))
12364 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12365
12366 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12))
12367 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12368
Bandan Dasc5f983f2017-05-05 15:25:14 -040012369 if (nested_vmx_check_pml_controls(vcpu, vmcs12))
12370 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12371
Liran Alona8a7c022018-06-23 02:35:06 +030012372 if (nested_vmx_check_shadow_vmcs_controls(vcpu, vmcs12))
12373 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12374
Jim Mattsonca0bde22016-11-30 12:03:46 -080012375 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010012376 vmx->nested.msrs.procbased_ctls_low,
12377 vmx->nested.msrs.procbased_ctls_high) ||
Jim Mattson2e5b0bd2017-05-04 11:51:58 -070012378 (nested_cpu_has(vmcs12, CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
12379 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010012380 vmx->nested.msrs.secondary_ctls_low,
12381 vmx->nested.msrs.secondary_ctls_high)) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080012382 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010012383 vmx->nested.msrs.pinbased_ctls_low,
12384 vmx->nested.msrs.pinbased_ctls_high) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080012385 !vmx_control_verify(vmcs12->vm_exit_controls,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010012386 vmx->nested.msrs.exit_ctls_low,
12387 vmx->nested.msrs.exit_ctls_high) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080012388 !vmx_control_verify(vmcs12->vm_entry_controls,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010012389 vmx->nested.msrs.entry_ctls_low,
12390 vmx->nested.msrs.entry_ctls_high))
Jim Mattsonca0bde22016-11-30 12:03:46 -080012391 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12392
Krish Sadhukhan0c7f6502018-02-20 21:24:39 -050012393 if (nested_vmx_check_nmi_controls(vmcs12))
Jim Mattsonca0bde22016-11-30 12:03:46 -080012394 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12395
Bandan Das41ab9372017-08-03 15:54:43 -040012396 if (nested_cpu_has_vmfunc(vmcs12)) {
12397 if (vmcs12->vm_function_control &
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010012398 ~vmx->nested.msrs.vmfunc_controls)
Bandan Das41ab9372017-08-03 15:54:43 -040012399 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12400
12401 if (nested_cpu_has_eptp_switching(vmcs12)) {
12402 if (!nested_cpu_has_ept(vmcs12) ||
12403 !page_address_valid(vcpu, vmcs12->eptp_list_address))
12404 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12405 }
12406 }
Bandan Das27c42a12017-08-03 15:54:42 -040012407
Jim Mattsonc7c2c7092017-05-05 11:28:09 -070012408 if (vmcs12->cr3_target_count > nested_cpu_vmx_misc_cr3_count(vcpu))
12409 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12410
Jim Mattsonca0bde22016-11-30 12:03:46 -080012411 if (!nested_host_cr0_valid(vcpu, vmcs12->host_cr0) ||
12412 !nested_host_cr4_valid(vcpu, vmcs12->host_cr4) ||
12413 !nested_cr3_valid(vcpu, vmcs12->host_cr3))
12414 return VMXERR_ENTRY_INVALID_HOST_STATE_FIELD;
12415
Marc Orr04473782018-06-20 17:21:29 -070012416 /*
12417 * From the Intel SDM, volume 3:
12418 * Fields relevant to VM-entry event injection must be set properly.
12419 * These fields are the VM-entry interruption-information field, the
12420 * VM-entry exception error code, and the VM-entry instruction length.
12421 */
12422 if (vmcs12->vm_entry_intr_info_field & INTR_INFO_VALID_MASK) {
12423 u32 intr_info = vmcs12->vm_entry_intr_info_field;
12424 u8 vector = intr_info & INTR_INFO_VECTOR_MASK;
12425 u32 intr_type = intr_info & INTR_INFO_INTR_TYPE_MASK;
12426 bool has_error_code = intr_info & INTR_INFO_DELIVER_CODE_MASK;
12427 bool should_have_error_code;
12428 bool urg = nested_cpu_has2(vmcs12,
12429 SECONDARY_EXEC_UNRESTRICTED_GUEST);
12430 bool prot_mode = !urg || vmcs12->guest_cr0 & X86_CR0_PE;
12431
12432 /* VM-entry interruption-info field: interruption type */
12433 if (intr_type == INTR_TYPE_RESERVED ||
12434 (intr_type == INTR_TYPE_OTHER_EVENT &&
12435 !nested_cpu_supports_monitor_trap_flag(vcpu)))
12436 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12437
12438 /* VM-entry interruption-info field: vector */
12439 if ((intr_type == INTR_TYPE_NMI_INTR && vector != NMI_VECTOR) ||
12440 (intr_type == INTR_TYPE_HARD_EXCEPTION && vector > 31) ||
12441 (intr_type == INTR_TYPE_OTHER_EVENT && vector != 0))
12442 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12443
12444 /* VM-entry interruption-info field: deliver error code */
12445 should_have_error_code =
12446 intr_type == INTR_TYPE_HARD_EXCEPTION && prot_mode &&
12447 x86_exception_has_error_code(vector);
12448 if (has_error_code != should_have_error_code)
12449 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12450
12451 /* VM-entry exception error code */
12452 if (has_error_code &&
12453 vmcs12->vm_entry_exception_error_code & GENMASK(31, 15))
12454 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12455
12456 /* VM-entry interruption-info field: reserved bits */
12457 if (intr_info & INTR_INFO_RESVD_BITS_MASK)
12458 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12459
12460 /* VM-entry instruction length */
12461 switch (intr_type) {
12462 case INTR_TYPE_SOFT_EXCEPTION:
12463 case INTR_TYPE_SOFT_INTR:
12464 case INTR_TYPE_PRIV_SW_EXCEPTION:
12465 if ((vmcs12->vm_entry_instruction_len > 15) ||
12466 (vmcs12->vm_entry_instruction_len == 0 &&
12467 !nested_cpu_has_zero_length_injection(vcpu)))
12468 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12469 }
12470 }
12471
Jim Mattsonca0bde22016-11-30 12:03:46 -080012472 return 0;
12473}
12474
Liran Alonf145d902018-06-23 02:35:07 +030012475static int nested_vmx_check_vmcs_link_ptr(struct kvm_vcpu *vcpu,
12476 struct vmcs12 *vmcs12)
12477{
12478 int r;
12479 struct page *page;
12480 struct vmcs12 *shadow;
12481
12482 if (vmcs12->vmcs_link_pointer == -1ull)
12483 return 0;
12484
12485 if (!page_address_valid(vcpu, vmcs12->vmcs_link_pointer))
12486 return -EINVAL;
12487
12488 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->vmcs_link_pointer);
12489 if (is_error_page(page))
12490 return -EINVAL;
12491
12492 r = 0;
12493 shadow = kmap(page);
12494 if (shadow->hdr.revision_id != VMCS12_REVISION ||
12495 shadow->hdr.shadow_vmcs != nested_cpu_has_shadow_vmcs(vmcs12))
12496 r = -EINVAL;
12497 kunmap(page);
12498 kvm_release_page_clean(page);
12499 return r;
12500}
12501
Jim Mattsonca0bde22016-11-30 12:03:46 -080012502static int check_vmentry_postreqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
12503 u32 *exit_qual)
12504{
12505 bool ia32e;
12506
12507 *exit_qual = ENTRY_FAIL_DEFAULT;
12508
12509 if (!nested_guest_cr0_valid(vcpu, vmcs12->guest_cr0) ||
12510 !nested_guest_cr4_valid(vcpu, vmcs12->guest_cr4))
12511 return 1;
12512
Liran Alonf145d902018-06-23 02:35:07 +030012513 if (nested_vmx_check_vmcs_link_ptr(vcpu, vmcs12)) {
Jim Mattsonca0bde22016-11-30 12:03:46 -080012514 *exit_qual = ENTRY_FAIL_VMCS_LINK_PTR;
12515 return 1;
12516 }
12517
12518 /*
12519 * If the load IA32_EFER VM-entry control is 1, the following checks
12520 * are performed on the field for the IA32_EFER MSR:
12521 * - Bits reserved in the IA32_EFER MSR must be 0.
12522 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
12523 * the IA-32e mode guest VM-exit control. It must also be identical
12524 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
12525 * CR0.PG) is 1.
12526 */
12527 if (to_vmx(vcpu)->nested.nested_run_pending &&
12528 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) {
12529 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
12530 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
12531 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
12532 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
12533 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME)))
12534 return 1;
12535 }
12536
12537 /*
12538 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
12539 * IA32_EFER MSR must be 0 in the field for that register. In addition,
12540 * the values of the LMA and LME bits in the field must each be that of
12541 * the host address-space size VM-exit control.
12542 */
12543 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
12544 ia32e = (vmcs12->vm_exit_controls &
12545 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
12546 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
12547 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
12548 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME))
12549 return 1;
12550 }
12551
Wanpeng Lif1b026a2017-11-05 16:54:48 -080012552 if ((vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS) &&
12553 (is_noncanonical_address(vmcs12->guest_bndcfgs & PAGE_MASK, vcpu) ||
12554 (vmcs12->guest_bndcfgs & MSR_IA32_BNDCFGS_RSVD)))
12555 return 1;
12556
Jim Mattsonca0bde22016-11-30 12:03:46 -080012557 return 0;
12558}
12559
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012560/*
Jim Mattson8fcc4b52018-07-10 11:27:20 +020012561 * If exit_qual is NULL, this is being called from state restore (either RSM
12562 * or KVM_SET_NESTED_STATE). Otherwise it's called from vmlaunch/vmresume.
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012563 */
12564static int enter_vmx_non_root_mode(struct kvm_vcpu *vcpu, u32 *exit_qual)
Jim Mattson858e25c2016-11-30 12:03:47 -080012565{
12566 struct vcpu_vmx *vmx = to_vmx(vcpu);
12567 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012568 bool from_vmentry = !!exit_qual;
12569 u32 dummy_exit_qual;
Liran Alonb5861e52018-09-03 15:20:22 +030012570 u32 vmcs01_cpu_exec_ctrl;
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012571 int r = 0;
Jim Mattson858e25c2016-11-30 12:03:47 -080012572
Liran Alonb5861e52018-09-03 15:20:22 +030012573 vmcs01_cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
12574
Jim Mattson858e25c2016-11-30 12:03:47 -080012575 enter_guest_mode(vcpu);
12576
12577 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
12578 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
12579
Jim Mattsonde3a0022017-11-27 17:22:25 -060012580 vmx_switch_vmcs(vcpu, &vmx->nested.vmcs02);
Jim Mattson858e25c2016-11-30 12:03:47 -080012581 vmx_segment_cache_clear(vmx);
12582
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020012583 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
12584 vcpu->arch.tsc_offset += vmcs12->tsc_offset;
12585
12586 r = EXIT_REASON_INVALID_STATE;
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012587 if (prepare_vmcs02(vcpu, vmcs12, from_vmentry ? exit_qual : &dummy_exit_qual))
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020012588 goto fail;
Jim Mattson858e25c2016-11-30 12:03:47 -080012589
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012590 if (from_vmentry) {
12591 nested_get_vmcs12_pages(vcpu);
Jim Mattson858e25c2016-11-30 12:03:47 -080012592
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012593 r = EXIT_REASON_MSR_LOAD_FAIL;
12594 *exit_qual = nested_vmx_load_msr(vcpu,
12595 vmcs12->vm_entry_msr_load_addr,
12596 vmcs12->vm_entry_msr_load_count);
12597 if (*exit_qual)
12598 goto fail;
12599 } else {
12600 /*
12601 * The MMU is not initialized to point at the right entities yet and
12602 * "get pages" would need to read data from the guest (i.e. we will
12603 * need to perform gpa to hpa translation). Request a call
12604 * to nested_get_vmcs12_pages before the next VM-entry. The MSRs
12605 * have already been set at vmentry time and should not be reset.
12606 */
12607 kvm_make_request(KVM_REQ_GET_VMCS12_PAGES, vcpu);
12608 }
Jim Mattson858e25c2016-11-30 12:03:47 -080012609
Jim Mattson858e25c2016-11-30 12:03:47 -080012610 /*
Liran Alonb5861e52018-09-03 15:20:22 +030012611 * If L1 had a pending IRQ/NMI until it executed
12612 * VMLAUNCH/VMRESUME which wasn't delivered because it was
12613 * disallowed (e.g. interrupts disabled), L0 needs to
12614 * evaluate if this pending event should cause an exit from L2
12615 * to L1 or delivered directly to L2 (e.g. In case L1 don't
12616 * intercept EXTERNAL_INTERRUPT).
12617 *
12618 * Usually this would be handled by L0 requesting a
12619 * IRQ/NMI window by setting VMCS accordingly. However,
12620 * this setting was done on VMCS01 and now VMCS02 is active
12621 * instead. Thus, we force L0 to perform pending event
12622 * evaluation by requesting a KVM_REQ_EVENT.
12623 */
12624 if (vmcs01_cpu_exec_ctrl &
12625 (CPU_BASED_VIRTUAL_INTR_PENDING | CPU_BASED_VIRTUAL_NMI_PENDING)) {
12626 kvm_make_request(KVM_REQ_EVENT, vcpu);
12627 }
12628
12629 /*
Jim Mattson858e25c2016-11-30 12:03:47 -080012630 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
12631 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
12632 * returned as far as L1 is concerned. It will only return (and set
12633 * the success flag) when L2 exits (see nested_vmx_vmexit()).
12634 */
12635 return 0;
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020012636
12637fail:
12638 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
12639 vcpu->arch.tsc_offset -= vmcs12->tsc_offset;
12640 leave_guest_mode(vcpu);
12641 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012642 return r;
Jim Mattson858e25c2016-11-30 12:03:47 -080012643}
12644
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030012645/*
12646 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
12647 * for running an L2 nested guest.
12648 */
12649static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
12650{
12651 struct vmcs12 *vmcs12;
12652 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070012653 u32 interrupt_shadow = vmx_get_interrupt_shadow(vcpu);
Jim Mattsonca0bde22016-11-30 12:03:46 -080012654 u32 exit_qual;
12655 int ret;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030012656
Kyle Hueyeb277562016-11-29 12:40:39 -080012657 if (!nested_vmx_check_permission(vcpu))
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030012658 return 1;
12659
Kyle Hueyeb277562016-11-29 12:40:39 -080012660 if (!nested_vmx_check_vmcs12(vcpu))
12661 goto out;
12662
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030012663 vmcs12 = get_vmcs12(vcpu);
12664
Liran Alona6192d42018-06-23 02:35:04 +030012665 /*
12666 * Can't VMLAUNCH or VMRESUME a shadow VMCS. Despite the fact
12667 * that there *is* a valid VMCS pointer, RFLAGS.CF is set
12668 * rather than RFLAGS.ZF, and no error number is stored to the
12669 * VM-instruction error field.
12670 */
12671 if (vmcs12->hdr.shadow_vmcs) {
12672 nested_vmx_failInvalid(vcpu);
12673 goto out;
12674 }
12675
Abel Gordon012f83c2013-04-18 14:39:25 +030012676 if (enable_shadow_vmcs)
12677 copy_shadow_to_vmcs12(vmx);
12678
Nadav Har'El7c177932011-05-25 23:12:04 +030012679 /*
12680 * The nested entry process starts with enforcing various prerequisites
12681 * on vmcs12 as required by the Intel SDM, and act appropriately when
12682 * they fail: As the SDM explains, some conditions should cause the
12683 * instruction to fail, while others will cause the instruction to seem
12684 * to succeed, but return an EXIT_REASON_INVALID_STATE.
12685 * To speed up the normal (success) code path, we should avoid checking
12686 * for misconfigurations which will anyway be caught by the processor
12687 * when using the merged vmcs02.
12688 */
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070012689 if (interrupt_shadow & KVM_X86_SHADOW_INT_MOV_SS) {
12690 nested_vmx_failValid(vcpu,
12691 VMXERR_ENTRY_EVENTS_BLOCKED_BY_MOV_SS);
12692 goto out;
12693 }
12694
Nadav Har'El7c177932011-05-25 23:12:04 +030012695 if (vmcs12->launch_state == launch) {
12696 nested_vmx_failValid(vcpu,
12697 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
12698 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
Kyle Hueyeb277562016-11-29 12:40:39 -080012699 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030012700 }
12701
Jim Mattsonca0bde22016-11-30 12:03:46 -080012702 ret = check_vmentry_prereqs(vcpu, vmcs12);
12703 if (ret) {
12704 nested_vmx_failValid(vcpu, ret);
Kyle Hueyeb277562016-11-29 12:40:39 -080012705 goto out;
Paolo Bonzini26539bd2013-04-15 15:00:27 +020012706 }
12707
Nadav Har'El7c177932011-05-25 23:12:04 +030012708 /*
Jim Mattsonca0bde22016-11-30 12:03:46 -080012709 * After this point, the trap flag no longer triggers a singlestep trap
12710 * on the vm entry instructions; don't call kvm_skip_emulated_instruction.
12711 * This is not 100% correct; for performance reasons, we delegate most
12712 * of the checks on host state to the processor. If those fail,
12713 * the singlestep trap is missed.
Jan Kiszka384bb782013-04-20 10:52:36 +020012714 */
Jim Mattsonca0bde22016-11-30 12:03:46 -080012715 skip_emulated_instruction(vcpu);
Jan Kiszka384bb782013-04-20 10:52:36 +020012716
Jim Mattsonca0bde22016-11-30 12:03:46 -080012717 ret = check_vmentry_postreqs(vcpu, vmcs12, &exit_qual);
12718 if (ret) {
12719 nested_vmx_entry_failure(vcpu, vmcs12,
12720 EXIT_REASON_INVALID_STATE, exit_qual);
12721 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +020012722 }
12723
12724 /*
Nadav Har'El7c177932011-05-25 23:12:04 +030012725 * We're finally done with prerequisite checking, and can start with
12726 * the nested entry.
12727 */
12728
Jim Mattson6514dc32018-04-26 16:09:12 -070012729 vmx->nested.nested_run_pending = 1;
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012730 ret = enter_vmx_non_root_mode(vcpu, &exit_qual);
Jim Mattson6514dc32018-04-26 16:09:12 -070012731 if (ret) {
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012732 nested_vmx_entry_failure(vcpu, vmcs12, ret, exit_qual);
Jim Mattson6514dc32018-04-26 16:09:12 -070012733 vmx->nested.nested_run_pending = 0;
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012734 return 1;
Jim Mattson6514dc32018-04-26 16:09:12 -070012735 }
Wincy Vanff651cb2014-12-11 08:52:58 +030012736
Paolo Bonzinic595cee2018-07-02 13:07:14 +020012737 /* Hide L1D cache contents from the nested guest. */
12738 vmx->vcpu.arch.l1tf_flush_l1d = true;
12739
Chao Gao135a06c2018-02-11 10:06:30 +080012740 /*
Liran Alon61ada742018-06-23 02:35:08 +030012741 * Must happen outside of enter_vmx_non_root_mode() as it will
12742 * also be used as part of restoring nVMX state for
12743 * snapshot restore (migration).
12744 *
12745 * In this flow, it is assumed that vmcs12 cache was
12746 * trasferred as part of captured nVMX state and should
12747 * therefore not be read from guest memory (which may not
12748 * exist on destination host yet).
12749 */
12750 nested_cache_shadow_vmcs12(vcpu, vmcs12);
12751
12752 /*
Chao Gao135a06c2018-02-11 10:06:30 +080012753 * If we're entering a halted L2 vcpu and the L2 vcpu won't be woken
12754 * by event injection, halt vcpu.
12755 */
12756 if ((vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT) &&
Jim Mattson6514dc32018-04-26 16:09:12 -070012757 !(vmcs12->vm_entry_intr_info_field & INTR_INFO_VALID_MASK)) {
12758 vmx->nested.nested_run_pending = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -060012759 return kvm_vcpu_halt(vcpu);
Jim Mattson6514dc32018-04-26 16:09:12 -070012760 }
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030012761 return 1;
Kyle Hueyeb277562016-11-29 12:40:39 -080012762
12763out:
Kyle Huey6affcbe2016-11-29 12:40:40 -080012764 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030012765}
12766
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012767/*
12768 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
12769 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
12770 * This function returns the new value we should put in vmcs12.guest_cr0.
12771 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
12772 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
12773 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
12774 * didn't trap the bit, because if L1 did, so would L0).
12775 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
12776 * been modified by L2, and L1 knows it. So just leave the old value of
12777 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
12778 * isn't relevant, because if L0 traps this bit it can set it to anything.
12779 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
12780 * changed these bits, and therefore they need to be updated, but L0
12781 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
12782 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
12783 */
12784static inline unsigned long
12785vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
12786{
12787 return
12788 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
12789 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
12790 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
12791 vcpu->arch.cr0_guest_owned_bits));
12792}
12793
12794static inline unsigned long
12795vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
12796{
12797 return
12798 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
12799 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
12800 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
12801 vcpu->arch.cr4_guest_owned_bits));
12802}
12803
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012804static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
12805 struct vmcs12 *vmcs12)
12806{
12807 u32 idt_vectoring;
12808 unsigned int nr;
12809
Wanpeng Li664f8e22017-08-24 03:35:09 -070012810 if (vcpu->arch.exception.injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012811 nr = vcpu->arch.exception.nr;
12812 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
12813
12814 if (kvm_exception_is_soft(nr)) {
12815 vmcs12->vm_exit_instruction_len =
12816 vcpu->arch.event_exit_inst_len;
12817 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
12818 } else
12819 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
12820
12821 if (vcpu->arch.exception.has_error_code) {
12822 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
12823 vmcs12->idt_vectoring_error_code =
12824 vcpu->arch.exception.error_code;
12825 }
12826
12827 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010012828 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012829 vmcs12->idt_vectoring_info_field =
12830 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
Liran Alon04140b42018-03-23 03:01:31 +030012831 } else if (vcpu->arch.interrupt.injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012832 nr = vcpu->arch.interrupt.nr;
12833 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
12834
12835 if (vcpu->arch.interrupt.soft) {
12836 idt_vectoring |= INTR_TYPE_SOFT_INTR;
12837 vmcs12->vm_entry_instruction_len =
12838 vcpu->arch.event_exit_inst_len;
12839 } else
12840 idt_vectoring |= INTR_TYPE_EXT_INTR;
12841
12842 vmcs12->idt_vectoring_info_field = idt_vectoring;
12843 }
12844}
12845
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012846static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
12847{
12848 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Libfcf83b2017-08-24 03:35:11 -070012849 unsigned long exit_qual;
Liran Alon917dc602017-11-05 16:07:43 +020012850 bool block_nested_events =
12851 vmx->nested.nested_run_pending || kvm_event_needs_reinjection(vcpu);
Wanpeng Liacc9ab62017-02-27 04:24:39 -080012852
Wanpeng Libfcf83b2017-08-24 03:35:11 -070012853 if (vcpu->arch.exception.pending &&
12854 nested_vmx_check_exception(vcpu, &exit_qual)) {
Liran Alon917dc602017-11-05 16:07:43 +020012855 if (block_nested_events)
Wanpeng Libfcf83b2017-08-24 03:35:11 -070012856 return -EBUSY;
12857 nested_vmx_inject_exception_vmexit(vcpu, exit_qual);
Wanpeng Libfcf83b2017-08-24 03:35:11 -070012858 return 0;
12859 }
12860
Jan Kiszkaf41245002014-03-07 20:03:13 +010012861 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
12862 vmx->nested.preemption_timer_expired) {
Liran Alon917dc602017-11-05 16:07:43 +020012863 if (block_nested_events)
Jan Kiszkaf41245002014-03-07 20:03:13 +010012864 return -EBUSY;
12865 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
12866 return 0;
12867 }
12868
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012869 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Liran Alon917dc602017-11-05 16:07:43 +020012870 if (block_nested_events)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012871 return -EBUSY;
12872 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
12873 NMI_VECTOR | INTR_TYPE_NMI_INTR |
12874 INTR_INFO_VALID_MASK, 0);
12875 /*
12876 * The NMI-triggered VM exit counts as injection:
12877 * clear this one and block further NMIs.
12878 */
12879 vcpu->arch.nmi_pending = 0;
12880 vmx_set_nmi_mask(vcpu, true);
12881 return 0;
12882 }
12883
12884 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
12885 nested_exit_on_intr(vcpu)) {
Liran Alon917dc602017-11-05 16:07:43 +020012886 if (block_nested_events)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012887 return -EBUSY;
12888 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080012889 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012890 }
12891
David Hildenbrand6342c502017-01-25 11:58:58 +010012892 vmx_complete_nested_posted_interrupt(vcpu);
12893 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012894}
12895
Sean Christophersond264ee02018-08-27 15:21:12 -070012896static void vmx_request_immediate_exit(struct kvm_vcpu *vcpu)
12897{
12898 to_vmx(vcpu)->req_immediate_exit = true;
12899}
12900
Jan Kiszkaf41245002014-03-07 20:03:13 +010012901static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
12902{
12903 ktime_t remaining =
12904 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
12905 u64 value;
12906
12907 if (ktime_to_ns(remaining) <= 0)
12908 return 0;
12909
12910 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
12911 do_div(value, 1000000);
12912 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
12913}
12914
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012915/*
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012916 * Update the guest state fields of vmcs12 to reflect changes that
12917 * occurred while L2 was running. (The "IA-32e mode guest" bit of the
12918 * VM-entry controls is also updated, since this is really a guest
12919 * state bit.)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012920 */
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012921static void sync_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012922{
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012923 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
12924 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
12925
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012926 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
12927 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
12928 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
12929
12930 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
12931 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
12932 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
12933 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
12934 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
12935 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
12936 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
12937 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
12938 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
12939 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
12940 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
12941 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
12942 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
12943 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
12944 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
12945 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
12946 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
12947 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
12948 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
12949 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
12950 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
12951 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
12952 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
12953 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
12954 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
12955 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
12956 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
12957 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
12958 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
12959 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
12960 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
12961 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
12962 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
12963 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
12964 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
12965 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
12966
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012967 vmcs12->guest_interruptibility_info =
12968 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
12969 vmcs12->guest_pending_dbg_exceptions =
12970 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010012971 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
12972 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
12973 else
12974 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012975
Jan Kiszkaf41245002014-03-07 20:03:13 +010012976 if (nested_cpu_has_preemption_timer(vmcs12)) {
12977 if (vmcs12->vm_exit_controls &
12978 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
12979 vmcs12->vmx_preemption_timer_value =
12980 vmx_get_preemption_timer_value(vcpu);
12981 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
12982 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080012983
Nadav Har'El3633cfc2013-08-05 11:07:07 +030012984 /*
12985 * In some cases (usually, nested EPT), L2 is allowed to change its
12986 * own CR3 without exiting. If it has changed it, we must keep it.
12987 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
12988 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
12989 *
12990 * Additionally, restore L2's PDPTR to vmcs12.
12991 */
12992 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010012993 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030012994 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
12995 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
12996 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
12997 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
12998 }
12999
Jim Mattsond281e132017-06-01 12:44:46 -070013000 vmcs12->guest_linear_address = vmcs_readl(GUEST_LINEAR_ADDRESS);
Jan Dakinevich119a9c02016-09-04 21:22:47 +030013001
Wincy Van608406e2015-02-03 23:57:51 +080013002 if (nested_cpu_has_vid(vmcs12))
13003 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
13004
Jan Kiszkac18911a2013-03-13 16:06:41 +010013005 vmcs12->vm_entry_controls =
13006 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020013007 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010013008
Jan Kiszka2996fca2014-06-16 13:59:43 +020013009 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
13010 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
13011 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
13012 }
13013
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013014 /* TODO: These cannot have changed unless we have MSR bitmaps and
13015 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020013016 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013017 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020013018 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
13019 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013020 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
13021 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
13022 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzinia87036a2016-03-08 09:52:13 +010013023 if (kvm_mpx_supported())
Paolo Bonzini36be0b92014-02-24 12:30:04 +010013024 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080013025}
13026
13027/*
13028 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
13029 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
13030 * and this function updates it to reflect the changes to the guest state while
13031 * L2 was running (and perhaps made some exits which were handled directly by L0
13032 * without going back to L1), and to reflect the exit reason.
13033 * Note that we do not have to copy here all VMCS fields, just those that
13034 * could have changed by the L2 guest or the exit - i.e., the guest-state and
13035 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
13036 * which already writes to vmcs12 directly.
13037 */
13038static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
13039 u32 exit_reason, u32 exit_intr_info,
13040 unsigned long exit_qualification)
13041{
13042 /* update guest state fields: */
13043 sync_vmcs12(vcpu, vmcs12);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013044
13045 /* update exit information fields: */
13046
Jan Kiszka533558b2014-01-04 18:47:20 +010013047 vmcs12->vm_exit_reason = exit_reason;
13048 vmcs12->exit_qualification = exit_qualification;
Jan Kiszka533558b2014-01-04 18:47:20 +010013049 vmcs12->vm_exit_intr_info = exit_intr_info;
Paolo Bonzini7313c692017-07-27 10:31:25 +020013050
Jan Kiszka5f3d5792013-04-14 12:12:46 +020013051 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013052 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
13053 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
13054
Jan Kiszka5f3d5792013-04-14 12:12:46 +020013055 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
Jim Mattson7cdc2d62017-07-06 16:33:05 -070013056 vmcs12->launch_state = 1;
13057
Jan Kiszka5f3d5792013-04-14 12:12:46 +020013058 /* vm_entry_intr_info_field is cleared on exit. Emulate this
13059 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013060 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020013061
13062 /*
13063 * Transfer the event that L0 or L1 may wanted to inject into
13064 * L2 to IDT_VECTORING_INFO_FIELD.
13065 */
13066 vmcs12_save_pending_event(vcpu, vmcs12);
13067 }
13068
13069 /*
13070 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
13071 * preserved above and would only end up incorrectly in L1.
13072 */
13073 vcpu->arch.nmi_injected = false;
13074 kvm_clear_exception_queue(vcpu);
13075 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013076}
13077
Wanpeng Li5af41572017-11-05 16:54:49 -080013078static void load_vmcs12_mmu_host_state(struct kvm_vcpu *vcpu,
13079 struct vmcs12 *vmcs12)
13080{
13081 u32 entry_failure_code;
13082
13083 nested_ept_uninit_mmu_context(vcpu);
13084
13085 /*
13086 * Only PDPTE load can fail as the value of cr3 was checked on entry and
13087 * couldn't have changed.
13088 */
13089 if (nested_vmx_load_cr3(vcpu, vmcs12->host_cr3, false, &entry_failure_code))
13090 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_PDPTE_FAIL);
13091
13092 if (!enable_ept)
13093 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
13094}
13095
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013096/*
13097 * A part of what we need to when the nested L2 guest exits and we want to
13098 * run its L1 parent, is to reset L1's guest state to the host state specified
13099 * in vmcs12.
13100 * This function is to be called not only on normal nested exit, but also on
13101 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
13102 * Failures During or After Loading Guest State").
13103 * This function should be called when the active VMCS is L1's (vmcs01).
13104 */
Jan Kiszka733568f2013-02-23 15:07:47 +010013105static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
13106 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013107{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080013108 struct kvm_segment seg;
13109
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013110 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
13111 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020013112 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013113 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
13114 else
13115 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
13116 vmx_set_efer(vcpu, vcpu->arch.efer);
13117
13118 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
13119 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070013120 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013121 /*
13122 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080013123 * actually changed, because vmx_set_cr0 refers to efer set above.
13124 *
13125 * CR0_GUEST_HOST_MASK is already set in the original vmcs01
13126 * (KVM doesn't change it);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013127 */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080013128 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Jan Kiszka9e3e4dbf2013-09-03 21:11:45 +020013129 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013130
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080013131 /* Same as above - no reason to call set_cr4_guest_host_mask(). */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013132 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
Haozhong Zhang8eb3f872017-10-10 15:01:22 +080013133 vmx_set_cr4(vcpu, vmcs12->host_cr4);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013134
Wanpeng Li5af41572017-11-05 16:54:49 -080013135 load_vmcs12_mmu_host_state(vcpu, vmcs12);
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030013136
Liran Alon6f1e03b2018-05-22 17:16:14 +030013137 /*
13138 * If vmcs01 don't use VPID, CPU flushes TLB on every
13139 * VMEntry/VMExit. Thus, no need to flush TLB.
13140 *
13141 * If vmcs12 uses VPID, TLB entries populated by L2 are
13142 * tagged with vmx->nested.vpid02 while L1 entries are tagged
13143 * with vmx->vpid. Thus, no need to flush TLB.
13144 *
13145 * Therefore, flush TLB only in case vmcs01 uses VPID and
13146 * vmcs12 don't use VPID as in this case L1 & L2 TLB entries
13147 * are both tagged with vmx->vpid.
13148 */
13149 if (enable_vpid &&
13150 !(nested_cpu_has_vpid(vmcs12) && to_vmx(vcpu)->nested.vpid02)) {
Wanpeng Lic2ba05c2017-12-12 17:33:03 -080013151 vmx_flush_tlb(vcpu, true);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013152 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013153
13154 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
13155 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
13156 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
13157 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
13158 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Ladi Prosek21f2d552017-10-11 16:54:42 +020013159 vmcs_write32(GUEST_IDTR_LIMIT, 0xFFFF);
13160 vmcs_write32(GUEST_GDTR_LIMIT, 0xFFFF);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013161
Paolo Bonzini36be0b92014-02-24 12:30:04 +010013162 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
13163 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
13164 vmcs_write64(GUEST_BNDCFGS, 0);
13165
Jan Kiszka44811c02013-08-04 17:17:27 +020013166 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013167 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020013168 vcpu->arch.pat = vmcs12->host_ia32_pat;
13169 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013170 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
13171 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
13172 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010013173
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080013174 /* Set L1 segment info according to Intel SDM
13175 27.5.2 Loading Host Segment and Descriptor-Table Registers */
13176 seg = (struct kvm_segment) {
13177 .base = 0,
13178 .limit = 0xFFFFFFFF,
13179 .selector = vmcs12->host_cs_selector,
13180 .type = 11,
13181 .present = 1,
13182 .s = 1,
13183 .g = 1
13184 };
13185 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
13186 seg.l = 1;
13187 else
13188 seg.db = 1;
13189 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
13190 seg = (struct kvm_segment) {
13191 .base = 0,
13192 .limit = 0xFFFFFFFF,
13193 .type = 3,
13194 .present = 1,
13195 .s = 1,
13196 .db = 1,
13197 .g = 1
13198 };
13199 seg.selector = vmcs12->host_ds_selector;
13200 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
13201 seg.selector = vmcs12->host_es_selector;
13202 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
13203 seg.selector = vmcs12->host_ss_selector;
13204 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
13205 seg.selector = vmcs12->host_fs_selector;
13206 seg.base = vmcs12->host_fs_base;
13207 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
13208 seg.selector = vmcs12->host_gs_selector;
13209 seg.base = vmcs12->host_gs_base;
13210 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
13211 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030013212 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080013213 .limit = 0x67,
13214 .selector = vmcs12->host_tr_selector,
13215 .type = 11,
13216 .present = 1
13217 };
13218 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
13219
Jan Kiszka503cd0c2013-03-03 13:05:44 +010013220 kvm_set_dr(vcpu, 7, 0x400);
13221 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030013222
Wincy Van3af18d92015-02-03 23:49:31 +080013223 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +010013224 vmx_update_msr_bitmap(vcpu);
Wincy Van3af18d92015-02-03 23:49:31 +080013225
Wincy Vanff651cb2014-12-11 08:52:58 +030013226 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
13227 vmcs12->vm_exit_msr_load_count))
13228 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013229}
13230
13231/*
13232 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
13233 * and modify vmcs12 to make it see what it would expect to see there if
13234 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
13235 */
Jan Kiszka533558b2014-01-04 18:47:20 +010013236static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
13237 u32 exit_intr_info,
13238 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013239{
13240 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013241 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
13242
Jan Kiszka5f3d5792013-04-14 12:12:46 +020013243 /* trying to cancel vmlaunch/vmresume is a bug */
13244 WARN_ON_ONCE(vmx->nested.nested_run_pending);
13245
Wanpeng Li6550c4d2017-07-31 19:25:27 -070013246 /*
Jim Mattson4f350c62017-09-14 16:31:44 -070013247 * The only expected VM-instruction error is "VM entry with
13248 * invalid control field(s)." Anything else indicates a
13249 * problem with L0.
Wanpeng Li6550c4d2017-07-31 19:25:27 -070013250 */
Jim Mattson4f350c62017-09-14 16:31:44 -070013251 WARN_ON_ONCE(vmx->fail && (vmcs_read32(VM_INSTRUCTION_ERROR) !=
13252 VMXERR_ENTRY_INVALID_CONTROL_FIELD));
13253
13254 leave_guest_mode(vcpu);
13255
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020013256 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
13257 vcpu->arch.tsc_offset -= vmcs12->tsc_offset;
13258
Jim Mattson4f350c62017-09-14 16:31:44 -070013259 if (likely(!vmx->fail)) {
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013260 if (exit_reason == -1)
13261 sync_vmcs12(vcpu, vmcs12);
13262 else
13263 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
13264 exit_qualification);
Jim Mattson4f350c62017-09-14 16:31:44 -070013265
Liran Alon61ada742018-06-23 02:35:08 +030013266 /*
13267 * Must happen outside of sync_vmcs12() as it will
13268 * also be used to capture vmcs12 cache as part of
13269 * capturing nVMX state for snapshot (migration).
13270 *
13271 * Otherwise, this flush will dirty guest memory at a
13272 * point it is already assumed by user-space to be
13273 * immutable.
13274 */
13275 nested_flush_cached_shadow_vmcs12(vcpu, vmcs12);
13276
Jim Mattson4f350c62017-09-14 16:31:44 -070013277 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
13278 vmcs12->vm_exit_msr_store_count))
13279 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
Bandan Das77b0f5d2014-04-19 18:17:45 -040013280 }
13281
Jim Mattson4f350c62017-09-14 16:31:44 -070013282 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Paolo Bonzini8391ce42016-07-07 14:58:33 +020013283 vm_entry_controls_reset_shadow(vmx);
13284 vm_exit_controls_reset_shadow(vmx);
Jan Kiszka36c3cc42013-02-23 22:35:37 +010013285 vmx_segment_cache_clear(vmx);
13286
Paolo Bonzini9314006db2016-07-06 13:23:51 +020013287 /* Update any VMCS fields that might have changed while L2 ran */
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -040013288 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.host.nr);
13289 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.guest.nr);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010013290 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Sean Christophersonf459a702018-08-27 15:21:11 -070013291
Peter Feinerc95ba922016-08-17 09:36:47 -070013292 if (kvm_has_tsc_control)
13293 decache_tsc_multiplier(vmx);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013294
Jim Mattson8d860bb2018-05-09 16:56:05 -040013295 if (vmx->nested.change_vmcs01_virtual_apic_mode) {
13296 vmx->nested.change_vmcs01_virtual_apic_mode = false;
13297 vmx_set_virtual_apic_mode(vcpu);
Jim Mattsonfb6c8192017-03-16 13:53:59 -070013298 } else if (!nested_cpu_has_ept(vmcs12) &&
13299 nested_cpu_has2(vmcs12,
13300 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Junaid Shahida468f2d2018-04-26 13:09:50 -070013301 vmx_flush_tlb(vcpu, true);
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020013302 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013303
13304 /* This is needed for same reason as it was needed in prepare_vmcs02 */
13305 vmx->host_rsp = 0;
13306
13307 /* Unpin physical memory we referred to in vmcs02 */
13308 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020013309 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020013310 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013311 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080013312 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020013313 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020013314 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080013315 }
Wincy Van705699a2015-02-03 23:58:17 +080013316 if (vmx->nested.pi_desc_page) {
13317 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020013318 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +080013319 vmx->nested.pi_desc_page = NULL;
13320 vmx->nested.pi_desc = NULL;
13321 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013322
13323 /*
Tang Chen38b99172014-09-24 15:57:54 +080013324 * We are now running in L2, mmu_notifier will force to reload the
13325 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
13326 */
Wanpeng Lic83b6d12016-09-06 17:20:33 +080013327 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Tang Chen38b99172014-09-24 15:57:54 +080013328
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013329 if (enable_shadow_vmcs && exit_reason != -1)
Abel Gordon012f83c2013-04-18 14:39:25 +030013330 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010013331
13332 /* in case we halted in L2 */
13333 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Jim Mattson4f350c62017-09-14 16:31:44 -070013334
13335 if (likely(!vmx->fail)) {
13336 /*
13337 * TODO: SDM says that with acknowledge interrupt on
13338 * exit, bit 31 of the VM-exit interrupt information
13339 * (valid interrupt) is always set to 1 on
13340 * EXIT_REASON_EXTERNAL_INTERRUPT, so we shouldn't
13341 * need kvm_cpu_has_interrupt(). See the commit
13342 * message for details.
13343 */
13344 if (nested_exit_intr_ack_set(vcpu) &&
13345 exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT &&
13346 kvm_cpu_has_interrupt(vcpu)) {
13347 int irq = kvm_cpu_get_interrupt(vcpu);
13348 WARN_ON(irq < 0);
13349 vmcs12->vm_exit_intr_info = irq |
13350 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
13351 }
13352
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013353 if (exit_reason != -1)
13354 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
13355 vmcs12->exit_qualification,
13356 vmcs12->idt_vectoring_info_field,
13357 vmcs12->vm_exit_intr_info,
13358 vmcs12->vm_exit_intr_error_code,
13359 KVM_ISA_VMX);
Jim Mattson4f350c62017-09-14 16:31:44 -070013360
13361 load_vmcs12_host_state(vcpu, vmcs12);
13362
13363 return;
13364 }
13365
13366 /*
13367 * After an early L2 VM-entry failure, we're now back
13368 * in L1 which thinks it just finished a VMLAUNCH or
13369 * VMRESUME instruction, so we need to set the failure
13370 * flag and the VM-instruction error field of the VMCS
13371 * accordingly.
13372 */
13373 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
Wanpeng Li5af41572017-11-05 16:54:49 -080013374
13375 load_vmcs12_mmu_host_state(vcpu, vmcs12);
13376
Jim Mattson4f350c62017-09-14 16:31:44 -070013377 /*
13378 * The emulated instruction was already skipped in
13379 * nested_vmx_run, but the updated RIP was never
13380 * written back to the vmcs01.
13381 */
13382 skip_emulated_instruction(vcpu);
13383 vmx->fail = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013384}
13385
Nadav Har'El7c177932011-05-25 23:12:04 +030013386/*
Jan Kiszka42124922014-01-04 18:47:19 +010013387 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
13388 */
13389static void vmx_leave_nested(struct kvm_vcpu *vcpu)
13390{
Wanpeng Li2f707d92017-03-06 04:03:28 -080013391 if (is_guest_mode(vcpu)) {
13392 to_vmx(vcpu)->nested.nested_run_pending = 0;
Jan Kiszka533558b2014-01-04 18:47:20 +010013393 nested_vmx_vmexit(vcpu, -1, 0, 0);
Wanpeng Li2f707d92017-03-06 04:03:28 -080013394 }
Jan Kiszka42124922014-01-04 18:47:19 +010013395 free_nested(to_vmx(vcpu));
13396}
13397
13398/*
Nadav Har'El7c177932011-05-25 23:12:04 +030013399 * L1's failure to enter L2 is a subset of a normal exit, as explained in
13400 * 23.7 "VM-entry failures during or after loading guest state" (this also
13401 * lists the acceptable exit-reason and exit-qualification parameters).
13402 * It should only be called before L2 actually succeeded to run, and when
13403 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
13404 */
13405static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
13406 struct vmcs12 *vmcs12,
13407 u32 reason, unsigned long qualification)
13408{
13409 load_vmcs12_host_state(vcpu, vmcs12);
13410 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
13411 vmcs12->exit_qualification = qualification;
13412 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030013413 if (enable_shadow_vmcs)
13414 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030013415}
13416
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020013417static int vmx_check_intercept(struct kvm_vcpu *vcpu,
13418 struct x86_instruction_info *info,
13419 enum x86_intercept_stage stage)
13420{
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +020013421 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
13422 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
13423
13424 /*
13425 * RDPID causes #UD if disabled through secondary execution controls.
13426 * Because it is marked as EmulateOnUD, we need to intercept it here.
13427 */
13428 if (info->intercept == x86_intercept_rdtscp &&
13429 !nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDTSCP)) {
13430 ctxt->exception.vector = UD_VECTOR;
13431 ctxt->exception.error_code_valid = false;
13432 return X86EMUL_PROPAGATE_FAULT;
13433 }
13434
13435 /* TODO: check more intercepts... */
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020013436 return X86EMUL_CONTINUE;
13437}
13438
Yunhong Jiang64672c92016-06-13 14:19:59 -070013439#ifdef CONFIG_X86_64
13440/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
13441static inline int u64_shl_div_u64(u64 a, unsigned int shift,
13442 u64 divisor, u64 *result)
13443{
13444 u64 low = a << shift, high = a >> (64 - shift);
13445
13446 /* To avoid the overflow on divq */
13447 if (high >= divisor)
13448 return 1;
13449
13450 /* Low hold the result, high hold rem which is discarded */
13451 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
13452 "rm" (divisor), "0" (low), "1" (high));
13453 *result = low;
13454
13455 return 0;
13456}
13457
13458static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc)
13459{
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +020013460 struct vcpu_vmx *vmx;
Wanpeng Lic5ce8232018-05-29 14:53:17 +080013461 u64 tscl, guest_tscl, delta_tsc, lapic_timer_advance_cycles;
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +020013462
13463 if (kvm_mwait_in_guest(vcpu->kvm))
13464 return -EOPNOTSUPP;
13465
13466 vmx = to_vmx(vcpu);
13467 tscl = rdtsc();
13468 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
13469 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Wanpeng Lic5ce8232018-05-29 14:53:17 +080013470 lapic_timer_advance_cycles = nsec_to_cycles(vcpu, lapic_timer_advance_ns);
13471
13472 if (delta_tsc > lapic_timer_advance_cycles)
13473 delta_tsc -= lapic_timer_advance_cycles;
13474 else
13475 delta_tsc = 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -070013476
13477 /* Convert to host delta tsc if tsc scaling is enabled */
13478 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
13479 u64_shl_div_u64(delta_tsc,
13480 kvm_tsc_scaling_ratio_frac_bits,
13481 vcpu->arch.tsc_scaling_ratio,
13482 &delta_tsc))
13483 return -ERANGE;
13484
13485 /*
13486 * If the delta tsc can't fit in the 32 bit after the multi shift,
13487 * we can't use the preemption timer.
13488 * It's possible that it fits on later vmentries, but checking
13489 * on every vmentry is costly so we just use an hrtimer.
13490 */
13491 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
13492 return -ERANGE;
13493
13494 vmx->hv_deadline_tsc = tscl + delta_tsc;
Wanpeng Lic8533542017-06-29 06:28:09 -070013495 return delta_tsc == 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -070013496}
13497
13498static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
13499{
Sean Christophersonf459a702018-08-27 15:21:11 -070013500 to_vmx(vcpu)->hv_deadline_tsc = -1;
Yunhong Jiang64672c92016-06-13 14:19:59 -070013501}
13502#endif
13503
Paolo Bonzini48d89b92014-08-26 13:27:46 +020013504static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020013505{
Wanpeng Lib31c1142018-03-12 04:53:04 -070013506 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +020013507 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020013508}
13509
Kai Huang843e4332015-01-28 10:54:28 +080013510static void vmx_slot_enable_log_dirty(struct kvm *kvm,
13511 struct kvm_memory_slot *slot)
13512{
13513 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
13514 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
13515}
13516
13517static void vmx_slot_disable_log_dirty(struct kvm *kvm,
13518 struct kvm_memory_slot *slot)
13519{
13520 kvm_mmu_slot_set_dirty(kvm, slot);
13521}
13522
13523static void vmx_flush_log_dirty(struct kvm *kvm)
13524{
13525 kvm_flush_pml_buffers(kvm);
13526}
13527
Bandan Dasc5f983f2017-05-05 15:25:14 -040013528static int vmx_write_pml_buffer(struct kvm_vcpu *vcpu)
13529{
13530 struct vmcs12 *vmcs12;
13531 struct vcpu_vmx *vmx = to_vmx(vcpu);
13532 gpa_t gpa;
13533 struct page *page = NULL;
13534 u64 *pml_address;
13535
13536 if (is_guest_mode(vcpu)) {
13537 WARN_ON_ONCE(vmx->nested.pml_full);
13538
13539 /*
13540 * Check if PML is enabled for the nested guest.
13541 * Whether eptp bit 6 is set is already checked
13542 * as part of A/D emulation.
13543 */
13544 vmcs12 = get_vmcs12(vcpu);
13545 if (!nested_cpu_has_pml(vmcs12))
13546 return 0;
13547
Dan Carpenter47698862017-05-10 22:43:17 +030013548 if (vmcs12->guest_pml_index >= PML_ENTITY_NUM) {
Bandan Dasc5f983f2017-05-05 15:25:14 -040013549 vmx->nested.pml_full = true;
13550 return 1;
13551 }
13552
13553 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS) & ~0xFFFull;
13554
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020013555 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->pml_address);
13556 if (is_error_page(page))
Bandan Dasc5f983f2017-05-05 15:25:14 -040013557 return 0;
13558
13559 pml_address = kmap(page);
13560 pml_address[vmcs12->guest_pml_index--] = gpa;
13561 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020013562 kvm_release_page_clean(page);
Bandan Dasc5f983f2017-05-05 15:25:14 -040013563 }
13564
13565 return 0;
13566}
13567
Kai Huang843e4332015-01-28 10:54:28 +080013568static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
13569 struct kvm_memory_slot *memslot,
13570 gfn_t offset, unsigned long mask)
13571{
13572 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
13573}
13574
Paolo Bonzinicd39e112017-06-06 12:57:04 +020013575static void __pi_post_block(struct kvm_vcpu *vcpu)
13576{
13577 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
13578 struct pi_desc old, new;
13579 unsigned int dest;
Paolo Bonzinicd39e112017-06-06 12:57:04 +020013580
13581 do {
13582 old.control = new.control = pi_desc->control;
Paolo Bonzini8b306e22017-06-06 12:57:05 +020013583 WARN(old.nv != POSTED_INTR_WAKEUP_VECTOR,
13584 "Wakeup handler not enabled while the VCPU is blocked\n");
Paolo Bonzinicd39e112017-06-06 12:57:04 +020013585
13586 dest = cpu_physical_id(vcpu->cpu);
13587
13588 if (x2apic_enabled())
13589 new.ndst = dest;
13590 else
13591 new.ndst = (dest << 8) & 0xFF00;
13592
Paolo Bonzinicd39e112017-06-06 12:57:04 +020013593 /* set 'NV' to 'notification vector' */
13594 new.nv = POSTED_INTR_VECTOR;
Paolo Bonzinic0a16662017-09-28 17:58:41 +020013595 } while (cmpxchg64(&pi_desc->control, old.control,
13596 new.control) != old.control);
Paolo Bonzinicd39e112017-06-06 12:57:04 +020013597
Paolo Bonzini8b306e22017-06-06 12:57:05 +020013598 if (!WARN_ON_ONCE(vcpu->pre_pcpu == -1)) {
13599 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
Paolo Bonzinicd39e112017-06-06 12:57:04 +020013600 list_del(&vcpu->blocked_vcpu_list);
Paolo Bonzini8b306e22017-06-06 12:57:05 +020013601 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
Paolo Bonzinicd39e112017-06-06 12:57:04 +020013602 vcpu->pre_pcpu = -1;
13603 }
13604}
13605
Feng Wuefc64402015-09-18 22:29:51 +080013606/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080013607 * This routine does the following things for vCPU which is going
13608 * to be blocked if VT-d PI is enabled.
13609 * - Store the vCPU to the wakeup list, so when interrupts happen
13610 * we can find the right vCPU to wake up.
13611 * - Change the Posted-interrupt descriptor as below:
13612 * 'NDST' <-- vcpu->pre_pcpu
13613 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
13614 * - If 'ON' is set during this process, which means at least one
13615 * interrupt is posted for this vCPU, we cannot block it, in
13616 * this case, return 1, otherwise, return 0.
13617 *
13618 */
Yunhong Jiangbc225122016-06-13 14:19:58 -070013619static int pi_pre_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080013620{
Feng Wubf9f6ac2015-09-18 22:29:55 +080013621 unsigned int dest;
13622 struct pi_desc old, new;
13623 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
13624
13625 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080013626 !irq_remapping_cap(IRQ_POSTING_CAP) ||
13627 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080013628 return 0;
13629
Paolo Bonzini8b306e22017-06-06 12:57:05 +020013630 WARN_ON(irqs_disabled());
13631 local_irq_disable();
13632 if (!WARN_ON_ONCE(vcpu->pre_pcpu != -1)) {
13633 vcpu->pre_pcpu = vcpu->cpu;
13634 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
13635 list_add_tail(&vcpu->blocked_vcpu_list,
13636 &per_cpu(blocked_vcpu_on_cpu,
13637 vcpu->pre_pcpu));
13638 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
13639 }
Feng Wubf9f6ac2015-09-18 22:29:55 +080013640
13641 do {
13642 old.control = new.control = pi_desc->control;
13643
Feng Wubf9f6ac2015-09-18 22:29:55 +080013644 WARN((pi_desc->sn == 1),
13645 "Warning: SN field of posted-interrupts "
13646 "is set before blocking\n");
13647
13648 /*
13649 * Since vCPU can be preempted during this process,
13650 * vcpu->cpu could be different with pre_pcpu, we
13651 * need to set pre_pcpu as the destination of wakeup
13652 * notification event, then we can find the right vCPU
13653 * to wakeup in wakeup handler if interrupts happen
13654 * when the vCPU is in blocked state.
13655 */
13656 dest = cpu_physical_id(vcpu->pre_pcpu);
13657
13658 if (x2apic_enabled())
13659 new.ndst = dest;
13660 else
13661 new.ndst = (dest << 8) & 0xFF00;
13662
13663 /* set 'NV' to 'wakeup vector' */
13664 new.nv = POSTED_INTR_WAKEUP_VECTOR;
Paolo Bonzinic0a16662017-09-28 17:58:41 +020013665 } while (cmpxchg64(&pi_desc->control, old.control,
13666 new.control) != old.control);
Feng Wubf9f6ac2015-09-18 22:29:55 +080013667
Paolo Bonzini8b306e22017-06-06 12:57:05 +020013668 /* We should not block the vCPU if an interrupt is posted for it. */
13669 if (pi_test_on(pi_desc) == 1)
13670 __pi_post_block(vcpu);
13671
13672 local_irq_enable();
13673 return (vcpu->pre_pcpu == -1);
Feng Wubf9f6ac2015-09-18 22:29:55 +080013674}
13675
Yunhong Jiangbc225122016-06-13 14:19:58 -070013676static int vmx_pre_block(struct kvm_vcpu *vcpu)
13677{
13678 if (pi_pre_block(vcpu))
13679 return 1;
13680
Yunhong Jiang64672c92016-06-13 14:19:59 -070013681 if (kvm_lapic_hv_timer_in_use(vcpu))
13682 kvm_lapic_switch_to_sw_timer(vcpu);
13683
Yunhong Jiangbc225122016-06-13 14:19:58 -070013684 return 0;
13685}
13686
13687static void pi_post_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080013688{
Paolo Bonzini8b306e22017-06-06 12:57:05 +020013689 if (vcpu->pre_pcpu == -1)
Feng Wubf9f6ac2015-09-18 22:29:55 +080013690 return;
13691
Paolo Bonzini8b306e22017-06-06 12:57:05 +020013692 WARN_ON(irqs_disabled());
13693 local_irq_disable();
Paolo Bonzinicd39e112017-06-06 12:57:04 +020013694 __pi_post_block(vcpu);
Paolo Bonzini8b306e22017-06-06 12:57:05 +020013695 local_irq_enable();
Feng Wubf9f6ac2015-09-18 22:29:55 +080013696}
13697
Yunhong Jiangbc225122016-06-13 14:19:58 -070013698static void vmx_post_block(struct kvm_vcpu *vcpu)
13699{
Yunhong Jiang64672c92016-06-13 14:19:59 -070013700 if (kvm_x86_ops->set_hv_timer)
13701 kvm_lapic_switch_to_hv_timer(vcpu);
13702
Yunhong Jiangbc225122016-06-13 14:19:58 -070013703 pi_post_block(vcpu);
13704}
13705
Feng Wubf9f6ac2015-09-18 22:29:55 +080013706/*
Feng Wuefc64402015-09-18 22:29:51 +080013707 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
13708 *
13709 * @kvm: kvm
13710 * @host_irq: host irq of the interrupt
13711 * @guest_irq: gsi of the interrupt
13712 * @set: set or unset PI
13713 * returns 0 on success, < 0 on failure
13714 */
13715static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
13716 uint32_t guest_irq, bool set)
13717{
13718 struct kvm_kernel_irq_routing_entry *e;
13719 struct kvm_irq_routing_table *irq_rt;
13720 struct kvm_lapic_irq irq;
13721 struct kvm_vcpu *vcpu;
13722 struct vcpu_data vcpu_info;
Jan H. Schönherr3a8b0672017-09-07 19:02:30 +010013723 int idx, ret = 0;
Feng Wuefc64402015-09-18 22:29:51 +080013724
13725 if (!kvm_arch_has_assigned_device(kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080013726 !irq_remapping_cap(IRQ_POSTING_CAP) ||
13727 !kvm_vcpu_apicv_active(kvm->vcpus[0]))
Feng Wuefc64402015-09-18 22:29:51 +080013728 return 0;
13729
13730 idx = srcu_read_lock(&kvm->irq_srcu);
13731 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
Jan H. Schönherr3a8b0672017-09-07 19:02:30 +010013732 if (guest_irq >= irq_rt->nr_rt_entries ||
13733 hlist_empty(&irq_rt->map[guest_irq])) {
13734 pr_warn_once("no route for guest_irq %u/%u (broken user space?)\n",
13735 guest_irq, irq_rt->nr_rt_entries);
13736 goto out;
13737 }
Feng Wuefc64402015-09-18 22:29:51 +080013738
13739 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
13740 if (e->type != KVM_IRQ_ROUTING_MSI)
13741 continue;
13742 /*
13743 * VT-d PI cannot support posting multicast/broadcast
13744 * interrupts to a vCPU, we still use interrupt remapping
13745 * for these kind of interrupts.
13746 *
13747 * For lowest-priority interrupts, we only support
13748 * those with single CPU as the destination, e.g. user
13749 * configures the interrupts via /proc/irq or uses
13750 * irqbalance to make the interrupts single-CPU.
13751 *
13752 * We will support full lowest-priority interrupt later.
13753 */
13754
Radim Krčmář371313132016-07-12 22:09:27 +020013755 kvm_set_msi_irq(kvm, e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080013756 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
13757 /*
13758 * Make sure the IRTE is in remapped mode if
13759 * we don't handle it in posted mode.
13760 */
13761 ret = irq_set_vcpu_affinity(host_irq, NULL);
13762 if (ret < 0) {
13763 printk(KERN_INFO
13764 "failed to back to remapped mode, irq: %u\n",
13765 host_irq);
13766 goto out;
13767 }
13768
Feng Wuefc64402015-09-18 22:29:51 +080013769 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080013770 }
Feng Wuefc64402015-09-18 22:29:51 +080013771
13772 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
13773 vcpu_info.vector = irq.vector;
13774
hu huajun2698d822018-04-11 15:16:40 +080013775 trace_kvm_pi_irte_update(host_irq, vcpu->vcpu_id, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080013776 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
13777
13778 if (set)
13779 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
Haozhong Zhangdc91f2e2017-09-18 09:56:49 +080013780 else
Feng Wuefc64402015-09-18 22:29:51 +080013781 ret = irq_set_vcpu_affinity(host_irq, NULL);
Feng Wuefc64402015-09-18 22:29:51 +080013782
13783 if (ret < 0) {
13784 printk(KERN_INFO "%s: failed to update PI IRTE\n",
13785 __func__);
13786 goto out;
13787 }
13788 }
13789
13790 ret = 0;
13791out:
13792 srcu_read_unlock(&kvm->irq_srcu, idx);
13793 return ret;
13794}
13795
Ashok Rajc45dcc72016-06-22 14:59:56 +080013796static void vmx_setup_mce(struct kvm_vcpu *vcpu)
13797{
13798 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
13799 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
13800 FEATURE_CONTROL_LMCE;
13801 else
13802 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
13803 ~FEATURE_CONTROL_LMCE;
13804}
13805
Ladi Prosek72d7b372017-10-11 16:54:41 +020013806static int vmx_smi_allowed(struct kvm_vcpu *vcpu)
13807{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013808 /* we need a nested vmexit to enter SMM, postpone if run is pending */
13809 if (to_vmx(vcpu)->nested.nested_run_pending)
13810 return 0;
Ladi Prosek72d7b372017-10-11 16:54:41 +020013811 return 1;
13812}
13813
Ladi Prosek0234bf82017-10-11 16:54:40 +020013814static int vmx_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
13815{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013816 struct vcpu_vmx *vmx = to_vmx(vcpu);
13817
13818 vmx->nested.smm.guest_mode = is_guest_mode(vcpu);
13819 if (vmx->nested.smm.guest_mode)
13820 nested_vmx_vmexit(vcpu, -1, 0, 0);
13821
13822 vmx->nested.smm.vmxon = vmx->nested.vmxon;
13823 vmx->nested.vmxon = false;
Wanpeng Licaa057a2018-03-12 04:53:03 -070013824 vmx_clear_hlt(vcpu);
Ladi Prosek0234bf82017-10-11 16:54:40 +020013825 return 0;
13826}
13827
13828static int vmx_pre_leave_smm(struct kvm_vcpu *vcpu, u64 smbase)
13829{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013830 struct vcpu_vmx *vmx = to_vmx(vcpu);
13831 int ret;
13832
13833 if (vmx->nested.smm.vmxon) {
13834 vmx->nested.vmxon = true;
13835 vmx->nested.smm.vmxon = false;
13836 }
13837
13838 if (vmx->nested.smm.guest_mode) {
13839 vcpu->arch.hflags &= ~HF_SMM_MASK;
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020013840 ret = enter_vmx_non_root_mode(vcpu, NULL);
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013841 vcpu->arch.hflags |= HF_SMM_MASK;
13842 if (ret)
13843 return ret;
13844
13845 vmx->nested.smm.guest_mode = false;
13846 }
Ladi Prosek0234bf82017-10-11 16:54:40 +020013847 return 0;
13848}
13849
Ladi Prosekcc3d9672017-10-17 16:02:39 +020013850static int enable_smi_window(struct kvm_vcpu *vcpu)
13851{
13852 return 0;
13853}
13854
Jim Mattson8fcc4b52018-07-10 11:27:20 +020013855static int vmx_get_nested_state(struct kvm_vcpu *vcpu,
13856 struct kvm_nested_state __user *user_kvm_nested_state,
13857 u32 user_data_size)
13858{
13859 struct vcpu_vmx *vmx;
13860 struct vmcs12 *vmcs12;
13861 struct kvm_nested_state kvm_state = {
13862 .flags = 0,
13863 .format = 0,
13864 .size = sizeof(kvm_state),
13865 .vmx.vmxon_pa = -1ull,
13866 .vmx.vmcs_pa = -1ull,
13867 };
13868
13869 if (!vcpu)
13870 return kvm_state.size + 2 * VMCS12_SIZE;
13871
13872 vmx = to_vmx(vcpu);
13873 vmcs12 = get_vmcs12(vcpu);
13874 if (nested_vmx_allowed(vcpu) &&
13875 (vmx->nested.vmxon || vmx->nested.smm.vmxon)) {
13876 kvm_state.vmx.vmxon_pa = vmx->nested.vmxon_ptr;
13877 kvm_state.vmx.vmcs_pa = vmx->nested.current_vmptr;
13878
Paolo Bonzinifa58a9f2018-07-18 19:45:51 +020013879 if (vmx->nested.current_vmptr != -1ull) {
Jim Mattson8fcc4b52018-07-10 11:27:20 +020013880 kvm_state.size += VMCS12_SIZE;
13881
Paolo Bonzinifa58a9f2018-07-18 19:45:51 +020013882 if (is_guest_mode(vcpu) &&
13883 nested_cpu_has_shadow_vmcs(vmcs12) &&
13884 vmcs12->vmcs_link_pointer != -1ull)
13885 kvm_state.size += VMCS12_SIZE;
13886 }
13887
Jim Mattson8fcc4b52018-07-10 11:27:20 +020013888 if (vmx->nested.smm.vmxon)
13889 kvm_state.vmx.smm.flags |= KVM_STATE_NESTED_SMM_VMXON;
13890
13891 if (vmx->nested.smm.guest_mode)
13892 kvm_state.vmx.smm.flags |= KVM_STATE_NESTED_SMM_GUEST_MODE;
13893
13894 if (is_guest_mode(vcpu)) {
13895 kvm_state.flags |= KVM_STATE_NESTED_GUEST_MODE;
13896
13897 if (vmx->nested.nested_run_pending)
13898 kvm_state.flags |= KVM_STATE_NESTED_RUN_PENDING;
13899 }
13900 }
13901
13902 if (user_data_size < kvm_state.size)
13903 goto out;
13904
13905 if (copy_to_user(user_kvm_nested_state, &kvm_state, sizeof(kvm_state)))
13906 return -EFAULT;
13907
13908 if (vmx->nested.current_vmptr == -1ull)
13909 goto out;
13910
13911 /*
13912 * When running L2, the authoritative vmcs12 state is in the
13913 * vmcs02. When running L1, the authoritative vmcs12 state is
13914 * in the shadow vmcs linked to vmcs01, unless
13915 * sync_shadow_vmcs is set, in which case, the authoritative
13916 * vmcs12 state is in the vmcs12 already.
13917 */
13918 if (is_guest_mode(vcpu))
13919 sync_vmcs12(vcpu, vmcs12);
13920 else if (enable_shadow_vmcs && !vmx->nested.sync_shadow_vmcs)
13921 copy_shadow_to_vmcs12(vmx);
13922
13923 if (copy_to_user(user_kvm_nested_state->data, vmcs12, sizeof(*vmcs12)))
13924 return -EFAULT;
13925
Paolo Bonzinifa58a9f2018-07-18 19:45:51 +020013926 if (nested_cpu_has_shadow_vmcs(vmcs12) &&
13927 vmcs12->vmcs_link_pointer != -1ull) {
13928 if (copy_to_user(user_kvm_nested_state->data + VMCS12_SIZE,
13929 get_shadow_vmcs12(vcpu), sizeof(*vmcs12)))
13930 return -EFAULT;
13931 }
13932
Jim Mattson8fcc4b52018-07-10 11:27:20 +020013933out:
13934 return kvm_state.size;
13935}
13936
13937static int vmx_set_nested_state(struct kvm_vcpu *vcpu,
13938 struct kvm_nested_state __user *user_kvm_nested_state,
13939 struct kvm_nested_state *kvm_state)
13940{
13941 struct vcpu_vmx *vmx = to_vmx(vcpu);
13942 struct vmcs12 *vmcs12;
13943 u32 exit_qual;
13944 int ret;
13945
13946 if (kvm_state->format != 0)
13947 return -EINVAL;
13948
13949 if (!nested_vmx_allowed(vcpu))
13950 return kvm_state->vmx.vmxon_pa == -1ull ? 0 : -EINVAL;
13951
13952 if (kvm_state->vmx.vmxon_pa == -1ull) {
13953 if (kvm_state->vmx.smm.flags)
13954 return -EINVAL;
13955
13956 if (kvm_state->vmx.vmcs_pa != -1ull)
13957 return -EINVAL;
13958
13959 vmx_leave_nested(vcpu);
13960 return 0;
13961 }
13962
13963 if (!page_address_valid(vcpu, kvm_state->vmx.vmxon_pa))
13964 return -EINVAL;
13965
13966 if (kvm_state->size < sizeof(kvm_state) + sizeof(*vmcs12))
13967 return -EINVAL;
13968
13969 if (kvm_state->vmx.vmcs_pa == kvm_state->vmx.vmxon_pa ||
13970 !page_address_valid(vcpu, kvm_state->vmx.vmcs_pa))
13971 return -EINVAL;
13972
13973 if ((kvm_state->vmx.smm.flags & KVM_STATE_NESTED_SMM_GUEST_MODE) &&
13974 (kvm_state->flags & KVM_STATE_NESTED_GUEST_MODE))
13975 return -EINVAL;
13976
13977 if (kvm_state->vmx.smm.flags &
13978 ~(KVM_STATE_NESTED_SMM_GUEST_MODE | KVM_STATE_NESTED_SMM_VMXON))
13979 return -EINVAL;
13980
Paolo Bonzini5bea5122018-09-18 15:19:17 +020013981 /*
13982 * SMM temporarily disables VMX, so we cannot be in guest mode,
13983 * nor can VMLAUNCH/VMRESUME be pending. Outside SMM, SMM flags
13984 * must be zero.
13985 */
13986 if (is_smm(vcpu) ? kvm_state->flags : kvm_state->vmx.smm.flags)
13987 return -EINVAL;
13988
Jim Mattson8fcc4b52018-07-10 11:27:20 +020013989 if ((kvm_state->vmx.smm.flags & KVM_STATE_NESTED_SMM_GUEST_MODE) &&
13990 !(kvm_state->vmx.smm.flags & KVM_STATE_NESTED_SMM_VMXON))
13991 return -EINVAL;
13992
13993 vmx_leave_nested(vcpu);
13994 if (kvm_state->vmx.vmxon_pa == -1ull)
13995 return 0;
13996
13997 vmx->nested.vmxon_ptr = kvm_state->vmx.vmxon_pa;
13998 ret = enter_vmx_operation(vcpu);
13999 if (ret)
14000 return ret;
14001
14002 set_current_vmptr(vmx, kvm_state->vmx.vmcs_pa);
14003
14004 if (kvm_state->vmx.smm.flags & KVM_STATE_NESTED_SMM_VMXON) {
14005 vmx->nested.smm.vmxon = true;
14006 vmx->nested.vmxon = false;
14007
14008 if (kvm_state->vmx.smm.flags & KVM_STATE_NESTED_SMM_GUEST_MODE)
14009 vmx->nested.smm.guest_mode = true;
14010 }
14011
14012 vmcs12 = get_vmcs12(vcpu);
14013 if (copy_from_user(vmcs12, user_kvm_nested_state->data, sizeof(*vmcs12)))
14014 return -EFAULT;
14015
Liran Alon392b2f22018-06-23 02:35:01 +030014016 if (vmcs12->hdr.revision_id != VMCS12_REVISION)
Jim Mattson8fcc4b52018-07-10 11:27:20 +020014017 return -EINVAL;
14018
14019 if (!(kvm_state->flags & KVM_STATE_NESTED_GUEST_MODE))
14020 return 0;
14021
14022 vmx->nested.nested_run_pending =
14023 !!(kvm_state->flags & KVM_STATE_NESTED_RUN_PENDING);
14024
Paolo Bonzinifa58a9f2018-07-18 19:45:51 +020014025 if (nested_cpu_has_shadow_vmcs(vmcs12) &&
14026 vmcs12->vmcs_link_pointer != -1ull) {
14027 struct vmcs12 *shadow_vmcs12 = get_shadow_vmcs12(vcpu);
14028 if (kvm_state->size < sizeof(kvm_state) + 2 * sizeof(*vmcs12))
14029 return -EINVAL;
14030
14031 if (copy_from_user(shadow_vmcs12,
14032 user_kvm_nested_state->data + VMCS12_SIZE,
14033 sizeof(*vmcs12)))
14034 return -EFAULT;
14035
14036 if (shadow_vmcs12->hdr.revision_id != VMCS12_REVISION ||
14037 !shadow_vmcs12->hdr.shadow_vmcs)
14038 return -EINVAL;
14039 }
14040
Jim Mattson8fcc4b52018-07-10 11:27:20 +020014041 if (check_vmentry_prereqs(vcpu, vmcs12) ||
14042 check_vmentry_postreqs(vcpu, vmcs12, &exit_qual))
14043 return -EINVAL;
14044
Jim Mattson8fcc4b52018-07-10 11:27:20 +020014045 vmx->nested.dirty_vmcs12 = true;
14046 ret = enter_vmx_non_root_mode(vcpu, NULL);
14047 if (ret)
14048 return -EINVAL;
14049
14050 return 0;
14051}
14052
Kees Cook404f6aa2016-08-08 16:29:06 -070014053static struct kvm_x86_ops vmx_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080014054 .cpu_has_kvm_support = cpu_has_kvm_support,
14055 .disabled_by_bios = vmx_disabled_by_bios,
14056 .hardware_setup = hardware_setup,
14057 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030014058 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014059 .hardware_enable = hardware_enable,
14060 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080014061 .cpu_has_accelerated_tpr = report_flexpriority,
Tom Lendackybc226f02018-05-10 22:06:39 +020014062 .has_emulated_msr = vmx_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014063
Wanpeng Lib31c1142018-03-12 04:53:04 -070014064 .vm_init = vmx_vm_init,
Sean Christopherson434a1e92018-03-20 12:17:18 -070014065 .vm_alloc = vmx_vm_alloc,
14066 .vm_free = vmx_vm_free,
Wanpeng Lib31c1142018-03-12 04:53:04 -070014067
Avi Kivity6aa8b732006-12-10 02:21:36 -080014068 .vcpu_create = vmx_create_vcpu,
14069 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030014070 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014071
Sean Christopherson6d6095b2018-07-23 12:32:44 -070014072 .prepare_guest_switch = vmx_prepare_switch_to_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014073 .vcpu_load = vmx_vcpu_load,
14074 .vcpu_put = vmx_vcpu_put,
14075
Paolo Bonzinia96036b2015-11-10 11:55:36 +010014076 .update_bp_intercept = update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -060014077 .get_msr_feature = vmx_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014078 .get_msr = vmx_get_msr,
14079 .set_msr = vmx_set_msr,
14080 .get_segment_base = vmx_get_segment_base,
14081 .get_segment = vmx_get_segment,
14082 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020014083 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014084 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020014085 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020014086 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030014087 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014088 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014089 .set_cr3 = vmx_set_cr3,
14090 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014091 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014092 .get_idt = vmx_get_idt,
14093 .set_idt = vmx_set_idt,
14094 .get_gdt = vmx_get_gdt,
14095 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010014096 .get_dr6 = vmx_get_dr6,
14097 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030014098 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010014099 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030014100 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014101 .get_rflags = vmx_get_rflags,
14102 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +080014103
Avi Kivity6aa8b732006-12-10 02:21:36 -080014104 .tlb_flush = vmx_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -070014105 .tlb_flush_gva = vmx_flush_tlb_gva,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014106
Avi Kivity6aa8b732006-12-10 02:21:36 -080014107 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020014108 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014109 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040014110 .set_interrupt_shadow = vmx_set_interrupt_shadow,
14111 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020014112 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030014113 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030014114 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020014115 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030014116 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020014117 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030014118 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010014119 .get_nmi_mask = vmx_get_nmi_mask,
14120 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030014121 .enable_nmi_window = enable_nmi_window,
14122 .enable_irq_window = enable_irq_window,
14123 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -040014124 .set_virtual_apic_mode = vmx_set_virtual_apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080014125 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030014126 .get_enable_apicv = vmx_get_enable_apicv,
14127 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080014128 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +010014129 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Yang Zhangc7c9c562013-01-25 10:18:51 +080014130 .hwapic_irr_update = vmx_hwapic_irr_update,
14131 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080014132 .sync_pir_to_irr = vmx_sync_pir_to_irr,
14133 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030014134
Izik Eiduscbc94022007-10-25 00:29:55 +020014135 .set_tss_addr = vmx_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -070014136 .set_identity_map_addr = vmx_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080014137 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080014138 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030014139
Avi Kivity586f9602010-11-18 13:09:54 +020014140 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020014141
Sheng Yang17cc3932010-01-05 19:02:27 +080014142 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080014143
14144 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080014145
14146 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000014147 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020014148
14149 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080014150
14151 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100014152
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020014153 .read_l1_tsc_offset = vmx_read_l1_tsc_offset,
Zachary Amsden99e3e302010-08-19 22:07:17 -100014154 .write_tsc_offset = vmx_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020014155
14156 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020014157
14158 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080014159 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000014160 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080014161 .xsaves_supported = vmx_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +020014162 .umip_emulated = vmx_umip_emulated,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010014163
14164 .check_nested_events = vmx_check_nested_events,
Sean Christophersond264ee02018-08-27 15:21:12 -070014165 .request_immediate_exit = vmx_request_immediate_exit,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020014166
14167 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080014168
14169 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
14170 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
14171 .flush_log_dirty = vmx_flush_log_dirty,
14172 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Bandan Dasc5f983f2017-05-05 15:25:14 -040014173 .write_log_dirty = vmx_write_pml_buffer,
Wei Huang25462f72015-06-19 15:45:05 +020014174
Feng Wubf9f6ac2015-09-18 22:29:55 +080014175 .pre_block = vmx_pre_block,
14176 .post_block = vmx_post_block,
14177
Wei Huang25462f72015-06-19 15:45:05 +020014178 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080014179
14180 .update_pi_irte = vmx_update_pi_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -070014181
14182#ifdef CONFIG_X86_64
14183 .set_hv_timer = vmx_set_hv_timer,
14184 .cancel_hv_timer = vmx_cancel_hv_timer,
14185#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +080014186
14187 .setup_mce = vmx_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +020014188
Jim Mattson8fcc4b52018-07-10 11:27:20 +020014189 .get_nested_state = vmx_get_nested_state,
14190 .set_nested_state = vmx_set_nested_state,
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020014191 .get_vmcs12_pages = nested_get_vmcs12_pages,
14192
Ladi Prosek72d7b372017-10-11 16:54:41 +020014193 .smi_allowed = vmx_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +020014194 .pre_enter_smm = vmx_pre_enter_smm,
14195 .pre_leave_smm = vmx_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +020014196 .enable_smi_window = enable_smi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014197};
14198
Thomas Gleixner72c6d2d2018-07-13 16:23:16 +020014199static void vmx_cleanup_l1d_flush(void)
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020014200{
14201 if (vmx_l1d_flush_pages) {
14202 free_pages((unsigned long)vmx_l1d_flush_pages, L1D_CACHE_ORDER);
14203 vmx_l1d_flush_pages = NULL;
14204 }
Thomas Gleixner72c6d2d2018-07-13 16:23:16 +020014205 /* Restore state so sysfs ignores VMX */
14206 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +020014207}
14208
Thomas Gleixnera7b90202018-07-13 16:23:18 +020014209static void vmx_exit(void)
14210{
14211#ifdef CONFIG_KEXEC_CORE
14212 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
14213 synchronize_rcu();
14214#endif
14215
14216 kvm_exit();
14217
14218#if IS_ENABLED(CONFIG_HYPERV)
14219 if (static_branch_unlikely(&enable_evmcs)) {
14220 int cpu;
14221 struct hv_vp_assist_page *vp_ap;
14222 /*
14223 * Reset everything to support using non-enlightened VMCS
14224 * access later (e.g. when we reload the module with
14225 * enlightened_vmcs=0)
14226 */
14227 for_each_online_cpu(cpu) {
14228 vp_ap = hv_get_vp_assist_page(cpu);
14229
14230 if (!vp_ap)
14231 continue;
14232
14233 vp_ap->current_nested_vmcs = 0;
14234 vp_ap->enlighten_vmentry = 0;
14235 }
14236
14237 static_branch_disable(&enable_evmcs);
14238 }
14239#endif
14240 vmx_cleanup_l1d_flush();
14241}
14242module_exit(vmx_exit);
14243
Avi Kivity6aa8b732006-12-10 02:21:36 -080014244static int __init vmx_init(void)
14245{
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010014246 int r;
14247
14248#if IS_ENABLED(CONFIG_HYPERV)
14249 /*
14250 * Enlightened VMCS usage should be recommended and the host needs
14251 * to support eVMCS v1 or above. We can also disable eVMCS support
14252 * with module parameter.
14253 */
14254 if (enlightened_vmcs &&
14255 ms_hyperv.hints & HV_X64_ENLIGHTENED_VMCS_RECOMMENDED &&
14256 (ms_hyperv.nested_features & HV_X64_ENLIGHTENED_VMCS_VERSION) >=
14257 KVM_EVMCS_VERSION) {
14258 int cpu;
14259
14260 /* Check that we have assist pages on all online CPUs */
14261 for_each_online_cpu(cpu) {
14262 if (!hv_get_vp_assist_page(cpu)) {
14263 enlightened_vmcs = false;
14264 break;
14265 }
14266 }
14267
14268 if (enlightened_vmcs) {
14269 pr_info("KVM: vmx: using Hyper-V Enlightened VMCS\n");
14270 static_branch_enable(&enable_evmcs);
14271 }
14272 } else {
14273 enlightened_vmcs = false;
14274 }
14275#endif
14276
14277 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
Thomas Gleixnera7b90202018-07-13 16:23:18 +020014278 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030014279 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080014280 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080014281
Thomas Gleixnera7b90202018-07-13 16:23:18 +020014282 /*
Thomas Gleixner7db92e12018-07-13 16:23:19 +020014283 * Must be called after kvm_init() so enable_ept is properly set
14284 * up. Hand the parameter mitigation value in which was stored in
14285 * the pre module init parser. If no parameter was given, it will
14286 * contain 'auto' which will be turned into the default 'cond'
14287 * mitigation mode.
Thomas Gleixnera7b90202018-07-13 16:23:18 +020014288 */
Thomas Gleixner7db92e12018-07-13 16:23:19 +020014289 if (boot_cpu_has(X86_BUG_L1TF)) {
14290 r = vmx_setup_l1d_flush(vmentry_l1d_flush_param);
14291 if (r) {
14292 vmx_exit();
14293 return r;
14294 }
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020014295 }
14296
Dave Young2965faa2015-09-09 15:38:55 -070014297#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080014298 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
14299 crash_vmclear_local_loaded_vmcss);
14300#endif
Jim Mattson21ebf532018-05-01 15:40:28 -070014301 vmx_check_vmcs12_offsets();
Zhang Yanfei8f536b72012-12-06 23:43:34 +080014302
He, Qingfdef3ad2007-04-30 09:45:24 +030014303 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080014304}
Thomas Gleixnera7b90202018-07-13 16:23:18 +020014305module_init(vmx_init);