blob: d8f101b58ab8fb84b2e78578b6a24b56d2711bab [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
Sean Christopherson199b1182018-12-03 13:52:53 -080019#include <linux/frame.h>
20#include <linux/highmem.h>
21#include <linux/hrtimer.h>
22#include <linux/kernel.h>
Avi Kivityedf88412007-12-16 11:02:48 +020023#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080024#include <linux/module.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020025#include <linux/moduleparam.h>
Josh Triplette9bda3b2012-03-20 23:33:51 -070026#include <linux/mod_devicetable.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080027#include <linux/mm.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080028#include <linux/sched.h>
Josh Poimboeufb2849092019-01-30 07:13:58 -060029#include <linux/sched/smt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040031#include <linux/tboot.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080032#include <linux/trace_events.h>
Avi Kivitye4956062007-06-28 14:15:57 -040033
Sean Christopherson199b1182018-12-03 13:52:53 -080034#include <asm/apic.h>
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +020035#include <asm/asm.h>
Feng Wu28b835d2015-09-18 22:29:54 +080036#include <asm/cpu.h>
Paolo Bonzini81908bf2014-02-21 10:32:27 +010037#include <asm/debugreg.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080038#include <asm/desc.h>
39#include <asm/fpu/internal.h>
40#include <asm/io.h>
Feng Wuefc64402015-09-18 22:29:51 +080041#include <asm/irq_remapping.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080042#include <asm/kexec.h>
43#include <asm/perf_event.h>
44#include <asm/mce.h>
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070045#include <asm/mmu_context.h>
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010046#include <asm/mshyperv.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080047#include <asm/spec-ctrl.h>
48#include <asm/virtext.h>
49#include <asm/vmx.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080050
Sean Christopherson3077c192018-12-03 13:53:02 -080051#include "capabilities.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080052#include "cpuid.h"
Sean Christopherson4cebd742018-12-03 13:52:58 -080053#include "evmcs.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080054#include "irq.h"
55#include "kvm_cache_regs.h"
56#include "lapic.h"
57#include "mmu.h"
Sean Christopherson55d23752018-12-03 13:53:18 -080058#include "nested.h"
Sean Christopherson89b0c9f2018-12-03 13:53:07 -080059#include "ops.h"
Wei Huang25462f72015-06-19 15:45:05 +020060#include "pmu.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080061#include "trace.h"
Sean Christophersoncb1d4742018-12-03 13:53:04 -080062#include "vmcs.h"
Sean Christopherson609363c2018-12-03 13:53:05 -080063#include "vmcs12.h"
Sean Christopherson89b0c9f2018-12-03 13:53:07 -080064#include "vmx.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080065#include "x86.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030066
Avi Kivity6aa8b732006-12-10 02:21:36 -080067MODULE_AUTHOR("Qumranet");
68MODULE_LICENSE("GPL");
69
Josh Triplette9bda3b2012-03-20 23:33:51 -070070static const struct x86_cpu_id vmx_cpu_id[] = {
71 X86_FEATURE_MATCH(X86_FEATURE_VMX),
72 {}
73};
74MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
75
Sean Christopherson2c4fd912018-12-03 13:53:03 -080076bool __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020077module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080078
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010079static bool __read_mostly enable_vnmi = 1;
80module_param_named(vnmi, enable_vnmi, bool, S_IRUGO);
81
Sean Christopherson2c4fd912018-12-03 13:53:03 -080082bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020083module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020084
Sean Christopherson2c4fd912018-12-03 13:53:03 -080085bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020086module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080087
Sean Christopherson2c4fd912018-12-03 13:53:03 -080088bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070089module_param_named(unrestricted_guest,
90 enable_unrestricted_guest, bool, S_IRUGO);
91
Sean Christopherson2c4fd912018-12-03 13:53:03 -080092bool __read_mostly enable_ept_ad_bits = 1;
Xudong Hao83c3a332012-05-28 19:33:35 +080093module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
94
Avi Kivitya27685c2012-06-12 20:30:18 +030095static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020096module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030097
Rusty Russell476bc002012-01-13 09:32:18 +103098static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +030099module_param(fasteoi, bool, S_IRUGO);
100
Yang Zhang5a717852013-04-11 19:25:16 +0800101static bool __read_mostly enable_apicv = 1;
Yang Zhang01e439b2013-04-11 19:25:12 +0800102module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +0800103
Nadav Har'El801d3422011-05-25 23:02:23 +0300104/*
105 * If nested=1, nested virtualization is supported, i.e., guests may use
106 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
107 * use VMX instructions.
108 */
Paolo Bonzini1e58e5e2018-10-17 00:55:22 +0200109static bool __read_mostly nested = 1;
Nadav Har'El801d3422011-05-25 23:02:23 +0300110module_param(nested, bool, S_IRUGO);
111
Wanpeng Li20300092014-12-02 19:14:59 +0800112static u64 __read_mostly host_xss;
113
Sean Christopherson2c4fd912018-12-03 13:53:03 -0800114bool __read_mostly enable_pml = 1;
Kai Huang843e4332015-01-28 10:54:28 +0800115module_param_named(pml, enable_pml, bool, S_IRUGO);
116
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100117#define MSR_BITMAP_MODE_X2APIC 1
118#define MSR_BITMAP_MODE_X2APIC_APICV 2
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100119
Haozhong Zhang64903d62015-10-20 15:39:09 +0800120#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
121
Yunhong Jiang64672c92016-06-13 14:19:59 -0700122/* Guest_tsc -> host_tsc conversion requires 64-bit division. */
123static int __read_mostly cpu_preemption_timer_multi;
124static bool __read_mostly enable_preemption_timer = 1;
125#ifdef CONFIG_X86_64
126module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
127#endif
128
Sean Christopherson3de63472018-07-13 08:42:30 -0700129#define KVM_VM_CR0_ALWAYS_OFF (X86_CR0_NW | X86_CR0_CD)
Sean Christopherson1706bd02018-03-05 12:04:38 -0800130#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR0_NE
131#define KVM_VM_CR0_ALWAYS_ON \
132 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | \
133 X86_CR0_WP | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200134#define KVM_CR4_GUEST_OWNED_BITS \
135 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
Yu Zhangfd8cb432017-08-24 20:27:56 +0800136 | X86_CR4_OSXMMEXCPT | X86_CR4_LA57 | X86_CR4_TSD)
Avi Kivity4c386092009-12-07 12:26:18 +0200137
Sean Christopherson5dc1f042018-03-05 12:04:39 -0800138#define KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR4_VMXE
Avi Kivitycdc0e242009-12-06 17:21:14 +0200139#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
140#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
141
Avi Kivity78ac8b42010-04-08 18:19:35 +0300142#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
143
Chao Pengbf8c55d2018-10-24 16:05:14 +0800144#define MSR_IA32_RTIT_STATUS_MASK (~(RTIT_STATUS_FILTEREN | \
145 RTIT_STATUS_CONTEXTEN | RTIT_STATUS_TRIGGEREN | \
146 RTIT_STATUS_ERROR | RTIT_STATUS_STOPPED | \
147 RTIT_STATUS_BYTECNT))
148
149#define MSR_IA32_RTIT_OUTPUT_BASE_MASK \
150 (~((1UL << cpuid_query_maxphyaddr(vcpu)) - 1) | 0x7f)
151
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800152/*
153 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
154 * ple_gap: upper bound on the amount of time between two successive
155 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500156 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800157 * ple_window: upper bound on the amount of time a guest is allowed to execute
158 * in a PAUSE loop. Tests indicate that most spinlocks are held for
159 * less than 2^12 cycles
160 * Time is measured based on a counter that runs at the same rate as the TSC,
161 * refer SDM volume 3b section 21.6.13 & 22.1.3.
162 */
Babu Mogerc8e88712018-03-16 16:37:24 -0400163static unsigned int ple_gap = KVM_DEFAULT_PLE_GAP;
Luiz Capitulinoa87c99e2018-11-23 12:02:14 -0500164module_param(ple_gap, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200165
Babu Moger7fbc85a2018-03-16 16:37:22 -0400166static unsigned int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
167module_param(ple_window, uint, 0444);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800168
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200169/* Default doubles per-vcpu window every exit. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400170static unsigned int ple_window_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400171module_param(ple_window_grow, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200172
173/* Default resets per-vcpu window every exit to ple_window. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400174static unsigned int ple_window_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400175module_param(ple_window_shrink, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200176
177/* Default is to compute the maximum so we can never overflow. */
Babu Moger7fbc85a2018-03-16 16:37:22 -0400178static unsigned int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
179module_param(ple_window_max, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200180
Chao Pengf99e3da2018-10-24 16:05:10 +0800181/* Default is SYSTEM mode, 1 for host-guest mode */
182int __read_mostly pt_mode = PT_MODE_SYSTEM;
183module_param(pt_mode, int, S_IRUGO);
184
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200185static DEFINE_STATIC_KEY_FALSE(vmx_l1d_should_flush);
Nicolai Stange427362a2018-07-21 22:25:00 +0200186static DEFINE_STATIC_KEY_FALSE(vmx_l1d_flush_cond);
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200187static DEFINE_MUTEX(vmx_l1d_flush_mutex);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200188
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200189/* Storage for pre module init parameter parsing */
190static enum vmx_l1d_flush_state __read_mostly vmentry_l1d_flush_param = VMENTER_L1D_FLUSH_AUTO;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200191
192static const struct {
193 const char *option;
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200194 bool for_parse;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200195} vmentry_l1d_param[] = {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200196 [VMENTER_L1D_FLUSH_AUTO] = {"auto", true},
197 [VMENTER_L1D_FLUSH_NEVER] = {"never", true},
198 [VMENTER_L1D_FLUSH_COND] = {"cond", true},
199 [VMENTER_L1D_FLUSH_ALWAYS] = {"always", true},
200 [VMENTER_L1D_FLUSH_EPT_DISABLED] = {"EPT disabled", false},
201 [VMENTER_L1D_FLUSH_NOT_REQUIRED] = {"not required", false},
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200202};
203
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200204#define L1D_CACHE_ORDER 4
205static void *vmx_l1d_flush_pages;
206
207static int vmx_setup_l1d_flush(enum vmx_l1d_flush_state l1tf)
208{
209 struct page *page;
Nicolai Stange288d1522018-07-18 19:07:38 +0200210 unsigned int i;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200211
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200212 if (!enable_ept) {
213 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_EPT_DISABLED;
214 return 0;
215 }
216
Yi Wangd806afa2018-08-16 13:42:39 +0800217 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES)) {
218 u64 msr;
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200219
Yi Wangd806afa2018-08-16 13:42:39 +0800220 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, msr);
221 if (msr & ARCH_CAP_SKIP_VMENTRY_L1DFLUSH) {
222 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_NOT_REQUIRED;
223 return 0;
224 }
225 }
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200226
Jiri Kosinad90a7a02018-07-13 16:23:25 +0200227 /* If set to auto use the default l1tf mitigation method */
228 if (l1tf == VMENTER_L1D_FLUSH_AUTO) {
229 switch (l1tf_mitigation) {
230 case L1TF_MITIGATION_OFF:
231 l1tf = VMENTER_L1D_FLUSH_NEVER;
232 break;
233 case L1TF_MITIGATION_FLUSH_NOWARN:
234 case L1TF_MITIGATION_FLUSH:
235 case L1TF_MITIGATION_FLUSH_NOSMT:
236 l1tf = VMENTER_L1D_FLUSH_COND;
237 break;
238 case L1TF_MITIGATION_FULL:
239 case L1TF_MITIGATION_FULL_FORCE:
240 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
241 break;
242 }
243 } else if (l1tf_mitigation == L1TF_MITIGATION_FULL_FORCE) {
244 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
245 }
246
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200247 if (l1tf != VMENTER_L1D_FLUSH_NEVER && !vmx_l1d_flush_pages &&
248 !boot_cpu_has(X86_FEATURE_FLUSH_L1D)) {
Ben Gardon41836832019-02-11 11:02:52 -0800249 /*
250 * This allocation for vmx_l1d_flush_pages is not tied to a VM
251 * lifetime and so should not be charged to a memcg.
252 */
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200253 page = alloc_pages(GFP_KERNEL, L1D_CACHE_ORDER);
254 if (!page)
255 return -ENOMEM;
256 vmx_l1d_flush_pages = page_address(page);
Nicolai Stange288d1522018-07-18 19:07:38 +0200257
258 /*
259 * Initialize each page with a different pattern in
260 * order to protect against KSM in the nested
261 * virtualization case.
262 */
263 for (i = 0; i < 1u << L1D_CACHE_ORDER; ++i) {
264 memset(vmx_l1d_flush_pages + i * PAGE_SIZE, i + 1,
265 PAGE_SIZE);
266 }
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200267 }
268
269 l1tf_vmx_mitigation = l1tf;
270
Thomas Gleixner895ae472018-07-13 16:23:22 +0200271 if (l1tf != VMENTER_L1D_FLUSH_NEVER)
272 static_branch_enable(&vmx_l1d_should_flush);
273 else
274 static_branch_disable(&vmx_l1d_should_flush);
Thomas Gleixner4c6523e2018-07-13 16:23:20 +0200275
Nicolai Stange427362a2018-07-21 22:25:00 +0200276 if (l1tf == VMENTER_L1D_FLUSH_COND)
277 static_branch_enable(&vmx_l1d_flush_cond);
Thomas Gleixner895ae472018-07-13 16:23:22 +0200278 else
Nicolai Stange427362a2018-07-21 22:25:00 +0200279 static_branch_disable(&vmx_l1d_flush_cond);
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200280 return 0;
281}
282
283static int vmentry_l1d_flush_parse(const char *s)
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200284{
285 unsigned int i;
286
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200287 if (s) {
288 for (i = 0; i < ARRAY_SIZE(vmentry_l1d_param); i++) {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200289 if (vmentry_l1d_param[i].for_parse &&
290 sysfs_streq(s, vmentry_l1d_param[i].option))
291 return i;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200292 }
293 }
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200294 return -EINVAL;
295}
296
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200297static int vmentry_l1d_flush_set(const char *s, const struct kernel_param *kp)
298{
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200299 int l1tf, ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200300
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200301 l1tf = vmentry_l1d_flush_parse(s);
302 if (l1tf < 0)
303 return l1tf;
304
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200305 if (!boot_cpu_has(X86_BUG_L1TF))
306 return 0;
307
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200308 /*
309 * Has vmx_init() run already? If not then this is the pre init
310 * parameter parsing. In that case just store the value and let
311 * vmx_init() do the proper setup after enable_ept has been
312 * established.
313 */
314 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_AUTO) {
315 vmentry_l1d_flush_param = l1tf;
316 return 0;
317 }
318
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200319 mutex_lock(&vmx_l1d_flush_mutex);
320 ret = vmx_setup_l1d_flush(l1tf);
321 mutex_unlock(&vmx_l1d_flush_mutex);
322 return ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200323}
324
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200325static int vmentry_l1d_flush_get(char *s, const struct kernel_param *kp)
326{
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200327 if (WARN_ON_ONCE(l1tf_vmx_mitigation >= ARRAY_SIZE(vmentry_l1d_param)))
328 return sprintf(s, "???\n");
329
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200330 return sprintf(s, "%s\n", vmentry_l1d_param[l1tf_vmx_mitigation].option);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200331}
332
333static const struct kernel_param_ops vmentry_l1d_flush_ops = {
334 .set = vmentry_l1d_flush_set,
335 .get = vmentry_l1d_flush_get,
336};
Thomas Gleixner895ae472018-07-13 16:23:22 +0200337module_param_cb(vmentry_l1d_flush, &vmentry_l1d_flush_ops, NULL, 0644);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200338
Gleb Natapovd99e4152012-12-20 16:57:45 +0200339static bool guest_state_valid(struct kvm_vcpu *vcpu);
340static u32 vmx_segment_access_rights(struct kvm_segment *var);
Yi Wang1e4329ee2018-11-08 11:22:21 +0800341static __always_inline void vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
Ashok Raj15d45072018-02-01 22:59:43 +0100342 u32 msr, int type);
Avi Kivity75880a02007-06-20 11:20:04 +0300343
Sean Christopherson453eafb2018-12-20 12:25:17 -0800344void vmx_vmexit(void);
345
Avi Kivity6aa8b732006-12-10 02:21:36 -0800346static DEFINE_PER_CPU(struct vmcs *, vmxarea);
Sean Christopherson75edce82018-12-03 13:53:06 -0800347DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300348/*
349 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
350 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
351 */
352static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800353
Feng Wubf9f6ac2015-09-18 22:29:55 +0800354/*
355 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
356 * can find which vCPU should be waken up.
357 */
358static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
359static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
360
Sheng Yang2384d2b2008-01-17 15:14:33 +0800361static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
362static DEFINE_SPINLOCK(vmx_vpid_lock);
363
Sean Christopherson3077c192018-12-03 13:53:02 -0800364struct vmcs_config vmcs_config;
365struct vmx_capability vmx_capability;
Sheng Yangd56f5462008-04-25 10:13:16 +0800366
Avi Kivity6aa8b732006-12-10 02:21:36 -0800367#define VMX_SEGMENT_FIELD(seg) \
368 [VCPU_SREG_##seg] = { \
369 .selector = GUEST_##seg##_SELECTOR, \
370 .base = GUEST_##seg##_BASE, \
371 .limit = GUEST_##seg##_LIMIT, \
372 .ar_bytes = GUEST_##seg##_AR_BYTES, \
373 }
374
Mathias Krause772e0312012-08-30 01:30:19 +0200375static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800376 unsigned selector;
377 unsigned base;
378 unsigned limit;
379 unsigned ar_bytes;
380} kvm_vmx_segment_fields[] = {
381 VMX_SEGMENT_FIELD(CS),
382 VMX_SEGMENT_FIELD(DS),
383 VMX_SEGMENT_FIELD(ES),
384 VMX_SEGMENT_FIELD(FS),
385 VMX_SEGMENT_FIELD(GS),
386 VMX_SEGMENT_FIELD(SS),
387 VMX_SEGMENT_FIELD(TR),
388 VMX_SEGMENT_FIELD(LDTR),
389};
390
Sean Christophersoncf3646e2018-12-03 13:53:15 -0800391u64 host_efer;
Avi Kivity26bb0982009-09-07 11:14:12 +0300392
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300393/*
Jim Mattson898a8112018-12-05 15:28:59 -0800394 * Though SYSCALL is only supported in 64-bit mode on Intel CPUs, kvm
395 * will emulate SYSCALL in legacy mode if the vendor string in guest
396 * CPUID.0:{EBX,ECX,EDX} is "AuthenticAMD" or "AMDisbetter!" To
397 * support this emulation, IA32_STAR must always be included in
398 * vmx_msr_index[], even in i386 builds.
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300399 */
Sean Christophersoncf3646e2018-12-03 13:53:15 -0800400const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800401#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300402 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800403#endif
Brian Gerst8c065852010-07-17 09:03:26 -0400404 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800405};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800406
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +0100407#if IS_ENABLED(CONFIG_HYPERV)
408static bool __read_mostly enlightened_vmcs = true;
409module_param(enlightened_vmcs, bool, 0444);
410
Tianyu Lan877ad952018-07-19 08:40:23 +0000411/* check_ept_pointer() should be under protection of ept_pointer_lock. */
412static void check_ept_pointer_match(struct kvm *kvm)
413{
414 struct kvm_vcpu *vcpu;
415 u64 tmp_eptp = INVALID_PAGE;
416 int i;
417
418 kvm_for_each_vcpu(i, vcpu, kvm) {
419 if (!VALID_PAGE(tmp_eptp)) {
420 tmp_eptp = to_vmx(vcpu)->ept_pointer;
421 } else if (tmp_eptp != to_vmx(vcpu)->ept_pointer) {
422 to_kvm_vmx(kvm)->ept_pointers_match
423 = EPT_POINTERS_MISMATCH;
424 return;
425 }
426 }
427
428 to_kvm_vmx(kvm)->ept_pointers_match = EPT_POINTERS_MATCH;
429}
430
Yi Wang8997f652019-01-21 15:27:05 +0800431static int kvm_fill_hv_flush_list_func(struct hv_guest_mapping_flush_list *flush,
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800432 void *data)
433{
434 struct kvm_tlb_range *range = data;
435
436 return hyperv_fill_flush_guest_mapping_list(flush, range->start_gfn,
437 range->pages);
438}
439
440static inline int __hv_remote_flush_tlb_with_range(struct kvm *kvm,
441 struct kvm_vcpu *vcpu, struct kvm_tlb_range *range)
442{
443 u64 ept_pointer = to_vmx(vcpu)->ept_pointer;
444
445 /*
446 * FLUSH_GUEST_PHYSICAL_ADDRESS_SPACE hypercall needs address
447 * of the base of EPT PML4 table, strip off EPT configuration
448 * information.
449 */
450 if (range)
451 return hyperv_flush_guest_mapping_range(ept_pointer & PAGE_MASK,
452 kvm_fill_hv_flush_list_func, (void *)range);
453 else
454 return hyperv_flush_guest_mapping(ept_pointer & PAGE_MASK);
455}
456
457static int hv_remote_flush_tlb_with_range(struct kvm *kvm,
458 struct kvm_tlb_range *range)
Tianyu Lan877ad952018-07-19 08:40:23 +0000459{
Lan Tianyua5c214d2018-10-13 22:54:05 +0800460 struct kvm_vcpu *vcpu;
Lan Tianyub7c1c222019-01-04 15:20:44 +0800461 int ret = 0, i;
Tianyu Lan877ad952018-07-19 08:40:23 +0000462
463 spin_lock(&to_kvm_vmx(kvm)->ept_pointer_lock);
464
465 if (to_kvm_vmx(kvm)->ept_pointers_match == EPT_POINTERS_CHECK)
466 check_ept_pointer_match(kvm);
467
468 if (to_kvm_vmx(kvm)->ept_pointers_match != EPT_POINTERS_MATCH) {
Lan Tianyu53963a72018-12-06 15:34:36 +0800469 kvm_for_each_vcpu(i, vcpu, kvm) {
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800470 /* If ept_pointer is invalid pointer, bypass flush request. */
471 if (VALID_PAGE(to_vmx(vcpu)->ept_pointer))
472 ret |= __hv_remote_flush_tlb_with_range(
473 kvm, vcpu, range);
Lan Tianyu53963a72018-12-06 15:34:36 +0800474 }
Lan Tianyua5c214d2018-10-13 22:54:05 +0800475 } else {
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800476 ret = __hv_remote_flush_tlb_with_range(kvm,
477 kvm_get_vcpu(kvm, 0), range);
Tianyu Lan877ad952018-07-19 08:40:23 +0000478 }
Tianyu Lan877ad952018-07-19 08:40:23 +0000479
Tianyu Lan877ad952018-07-19 08:40:23 +0000480 spin_unlock(&to_kvm_vmx(kvm)->ept_pointer_lock);
481 return ret;
482}
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800483static int hv_remote_flush_tlb(struct kvm *kvm)
484{
485 return hv_remote_flush_tlb_with_range(kvm, NULL);
486}
487
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +0100488#endif /* IS_ENABLED(CONFIG_HYPERV) */
489
Yunhong Jiang64672c92016-06-13 14:19:59 -0700490/*
491 * Comment's format: document - errata name - stepping - processor name.
492 * Refer from
493 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
494 */
495static u32 vmx_preemption_cpu_tfms[] = {
496/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
4970x000206E6,
498/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
499/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
500/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
5010x00020652,
502/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
5030x00020655,
504/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
505/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
506/*
507 * 320767.pdf - AAP86 - B1 -
508 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
509 */
5100x000106E5,
511/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
5120x000106A0,
513/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
5140x000106A1,
515/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
5160x000106A4,
517 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
518 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
519 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
5200x000106A5,
Wei Huang3d82c562018-12-03 14:13:32 -0600521 /* Xeon E3-1220 V2 */
5220x000306A8,
Yunhong Jiang64672c92016-06-13 14:19:59 -0700523};
524
525static inline bool cpu_has_broken_vmx_preemption_timer(void)
526{
527 u32 eax = cpuid_eax(0x00000001), i;
528
529 /* Clear the reserved bits */
530 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +0000531 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -0700532 if (eax == vmx_preemption_cpu_tfms[i])
533 return true;
534
535 return false;
536}
537
Paolo Bonzini35754c92015-07-29 12:05:37 +0200538static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800539{
Paolo Bonzini35754c92015-07-29 12:05:37 +0200540 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800541}
542
Sheng Yang04547152009-04-01 15:52:31 +0800543static inline bool report_flexpriority(void)
544{
545 return flexpriority_enabled;
546}
547
Sean Christopherson97b7ead2018-12-03 13:53:16 -0800548static inline int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800549{
550 int i;
551
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400552 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +0300553 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300554 return i;
555 return -1;
556}
557
Sean Christopherson97b7ead2018-12-03 13:53:16 -0800558struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300559{
560 int i;
561
Rusty Russell8b9cf982007-07-30 16:31:43 +1000562 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300563 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400564 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000565 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800566}
567
Sean Christopherson7c97fcb2018-12-03 13:53:17 -0800568void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
569{
570 vmcs_clear(loaded_vmcs->vmcs);
571 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
572 vmcs_clear(loaded_vmcs->shadow_vmcs);
573 loaded_vmcs->cpu = -1;
574 loaded_vmcs->launched = 0;
575}
576
Dave Young2965faa2015-09-09 15:38:55 -0700577#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800578/*
579 * This bitmap is used to indicate whether the vmclear
580 * operation is enabled on all cpus. All disabled by
581 * default.
582 */
583static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
584
585static inline void crash_enable_local_vmclear(int cpu)
586{
587 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
588}
589
590static inline void crash_disable_local_vmclear(int cpu)
591{
592 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
593}
594
595static inline int crash_local_vmclear_enabled(int cpu)
596{
597 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
598}
599
600static void crash_vmclear_local_loaded_vmcss(void)
601{
602 int cpu = raw_smp_processor_id();
603 struct loaded_vmcs *v;
604
605 if (!crash_local_vmclear_enabled(cpu))
606 return;
607
608 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
609 loaded_vmcss_on_cpu_link)
610 vmcs_clear(v->vmcs);
611}
612#else
613static inline void crash_enable_local_vmclear(int cpu) { }
614static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -0700615#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800616
Nadav Har'Eld462b812011-05-24 15:26:10 +0300617static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800618{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300619 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800620 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800621
Nadav Har'Eld462b812011-05-24 15:26:10 +0300622 if (loaded_vmcs->cpu != cpu)
623 return; /* vcpu migration can race with cpu offline */
624 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800625 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800626 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300627 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +0800628
629 /*
630 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
631 * is before setting loaded_vmcs->vcpu to -1 which is done in
632 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
633 * then adds the vmcs into percpu list before it is deleted.
634 */
635 smp_wmb();
636
Nadav Har'Eld462b812011-05-24 15:26:10 +0300637 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800638 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800639}
640
Sean Christopherson89b0c9f2018-12-03 13:53:07 -0800641void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800642{
Xiao Guangronge6c7d322012-11-28 20:53:15 +0800643 int cpu = loaded_vmcs->cpu;
644
645 if (cpu != -1)
646 smp_call_function_single(cpu,
647 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800648}
649
Avi Kivity2fb92db2011-04-27 19:42:18 +0300650static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
651 unsigned field)
652{
653 bool ret;
654 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
655
656 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
657 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
658 vmx->segment_cache.bitmask = 0;
659 }
660 ret = vmx->segment_cache.bitmask & mask;
661 vmx->segment_cache.bitmask |= mask;
662 return ret;
663}
664
665static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
666{
667 u16 *p = &vmx->segment_cache.seg[seg].selector;
668
669 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
670 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
671 return *p;
672}
673
674static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
675{
676 ulong *p = &vmx->segment_cache.seg[seg].base;
677
678 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
679 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
680 return *p;
681}
682
683static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
684{
685 u32 *p = &vmx->segment_cache.seg[seg].limit;
686
687 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
688 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
689 return *p;
690}
691
692static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
693{
694 u32 *p = &vmx->segment_cache.seg[seg].ar;
695
696 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
697 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
698 return *p;
699}
700
Sean Christopherson97b7ead2018-12-03 13:53:16 -0800701void update_exception_bitmap(struct kvm_vcpu *vcpu)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300702{
703 u32 eb;
704
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100705 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -0800706 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Liran Alon9e869482018-03-12 13:12:51 +0200707 /*
708 * Guest access to VMware backdoor ports could legitimately
709 * trigger #GP because of TSS I/O permission bitmap.
710 * We intercept those #GP and allow access to them anyway
711 * as VMware does.
712 */
713 if (enable_vmware_backdoor)
714 eb |= (1u << GP_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100715 if ((vcpu->guest_debug &
716 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
717 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
718 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300719 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300720 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +0200721 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +0800722 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Nadav Har'El36cf24e2011-05-25 23:15:08 +0300723
724 /* When we are running a nested L2 guest and L1 specified for it a
725 * certain exception bitmap, we must trap the same exceptions and pass
726 * them to L1. When running L2, we will only handle the exceptions
727 * specified above if L1 did not want them.
728 */
729 if (is_guest_mode(vcpu))
730 eb |= get_vmcs12(vcpu)->exception_bitmap;
731
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300732 vmcs_write32(EXCEPTION_BITMAP, eb);
733}
734
Ashok Raj15d45072018-02-01 22:59:43 +0100735/*
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100736 * Check if MSR is intercepted for currently loaded MSR bitmap.
737 */
738static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr)
739{
740 unsigned long *msr_bitmap;
741 int f = sizeof(unsigned long);
742
743 if (!cpu_has_vmx_msr_bitmap())
744 return true;
745
746 msr_bitmap = to_vmx(vcpu)->loaded_vmcs->msr_bitmap;
747
748 if (msr <= 0x1fff) {
749 return !!test_bit(msr, msr_bitmap + 0x800 / f);
750 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
751 msr &= 0x1fff;
752 return !!test_bit(msr, msr_bitmap + 0xc00 / f);
753 }
754
755 return true;
756}
757
Gleb Natapov2961e8762013-11-25 15:37:13 +0200758static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
759 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200760{
Gleb Natapov2961e8762013-11-25 15:37:13 +0200761 vm_entry_controls_clearbit(vmx, entry);
762 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200763}
764
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400765static int find_msr(struct vmx_msrs *m, unsigned int msr)
766{
767 unsigned int i;
768
769 for (i = 0; i < m->nr; ++i) {
770 if (m->val[i].index == msr)
771 return i;
772 }
773 return -ENOENT;
774}
775
Avi Kivity61d2ef22010-04-28 16:40:38 +0300776static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
777{
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400778 int i;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300779 struct msr_autoload *m = &vmx->msr_autoload;
780
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200781 switch (msr) {
782 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800783 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200784 clear_atomic_switch_msr_special(vmx,
785 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200786 VM_EXIT_LOAD_IA32_EFER);
787 return;
788 }
789 break;
790 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800791 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200792 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200793 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
794 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
795 return;
796 }
797 break;
Avi Kivity110312c2010-12-21 12:54:20 +0200798 }
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400799 i = find_msr(&m->guest, msr);
800 if (i < 0)
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400801 goto skip_guest;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400802 --m->guest.nr;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400803 m->guest.val[i] = m->guest.val[m->guest.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400804 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Avi Kivity110312c2010-12-21 12:54:20 +0200805
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400806skip_guest:
807 i = find_msr(&m->host, msr);
808 if (i < 0)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300809 return;
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400810
811 --m->host.nr;
812 m->host.val[i] = m->host.val[m->host.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400813 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300814}
815
Gleb Natapov2961e8762013-11-25 15:37:13 +0200816static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
817 unsigned long entry, unsigned long exit,
818 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
819 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200820{
821 vmcs_write64(guest_val_vmcs, guest_val);
Sean Christopherson5a5e8a12018-09-26 09:23:56 -0700822 if (host_val_vmcs != HOST_IA32_EFER)
823 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +0200824 vm_entry_controls_setbit(vmx, entry);
825 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200826}
827
Avi Kivity61d2ef22010-04-28 16:40:38 +0300828static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400829 u64 guest_val, u64 host_val, bool entry_only)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300830{
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400831 int i, j = 0;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300832 struct msr_autoload *m = &vmx->msr_autoload;
833
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200834 switch (msr) {
835 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800836 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200837 add_atomic_switch_msr_special(vmx,
838 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200839 VM_EXIT_LOAD_IA32_EFER,
840 GUEST_IA32_EFER,
841 HOST_IA32_EFER,
842 guest_val, host_val);
843 return;
844 }
845 break;
846 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800847 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200848 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200849 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
850 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
851 GUEST_IA32_PERF_GLOBAL_CTRL,
852 HOST_IA32_PERF_GLOBAL_CTRL,
853 guest_val, host_val);
854 return;
855 }
856 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +0100857 case MSR_IA32_PEBS_ENABLE:
858 /* PEBS needs a quiescent period after being disabled (to write
859 * a record). Disabling PEBS through VMX MSR swapping doesn't
860 * provide that period, so a CPU could write host's record into
861 * guest's memory.
862 */
863 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +0200864 }
865
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400866 i = find_msr(&m->guest, msr);
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400867 if (!entry_only)
868 j = find_msr(&m->host, msr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300869
Xiaoyao Li98ae70c2019-02-14 12:08:58 +0800870 if ((i < 0 && m->guest.nr == NR_AUTOLOAD_MSRS) ||
871 (j < 0 && m->host.nr == NR_AUTOLOAD_MSRS)) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +0200872 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +0200873 "Can't add msr %x\n", msr);
874 return;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300875 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400876 if (i < 0) {
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400877 i = m->guest.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400878 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400879 }
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400880 m->guest.val[i].index = msr;
881 m->guest.val[i].value = guest_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300882
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400883 if (entry_only)
884 return;
885
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400886 if (j < 0) {
887 j = m->host.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400888 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300889 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400890 m->host.val[j].index = msr;
891 m->host.val[j].value = host_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300892}
893
Avi Kivity92c0d902009-10-29 11:00:16 +0200894static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +0300895{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100896 u64 guest_efer = vmx->vcpu.arch.efer;
897 u64 ignore_bits = 0;
Eddie Dong2cc51562007-05-21 07:28:09 +0300898
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100899 if (!enable_ept) {
900 /*
901 * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing
902 * host CPUID is more efficient than testing guest CPUID
903 * or CR4. Host SMEP is anyway a requirement for guest SMEP.
904 */
905 if (boot_cpu_has(X86_FEATURE_SMEP))
906 guest_efer |= EFER_NX;
907 else if (!(guest_efer & EFER_NX))
908 ignore_bits |= EFER_NX;
909 }
Roel Kluin3a34a882009-08-04 02:08:45 -0700910
Avi Kivity51c6cf62007-08-29 03:48:05 +0300911 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100912 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +0300913 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100914 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300915#ifdef CONFIG_X86_64
916 ignore_bits |= EFER_LMA | EFER_LME;
917 /* SCE is meaningful only in long mode on Intel */
918 if (guest_efer & EFER_LMA)
919 ignore_bits &= ~(u64)EFER_SCE;
920#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +0300921
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -0800922 /*
923 * On EPT, we can't emulate NX, so we must switch EFER atomically.
924 * On CPUs that support "load IA32_EFER", always switch EFER
925 * atomically, since it's faster than switching it manually.
926 */
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800927 if (cpu_has_load_ia32_efer() ||
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -0800928 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +0300929 if (!(guest_efer & EFER_LMA))
930 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -0800931 if (guest_efer != host_efer)
932 add_atomic_switch_msr(vmx, MSR_EFER,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400933 guest_efer, host_efer, false);
Sean Christopherson02343cf2018-09-26 09:23:43 -0700934 else
935 clear_atomic_switch_msr(vmx, MSR_EFER);
Avi Kivity84ad33e2010-04-28 16:42:29 +0300936 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100937 } else {
Sean Christopherson02343cf2018-09-26 09:23:43 -0700938 clear_atomic_switch_msr(vmx, MSR_EFER);
939
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100940 guest_efer &= ~ignore_bits;
941 guest_efer |= host_efer & ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +0300942
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100943 vmx->guest_msrs[efer_offset].data = guest_efer;
944 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
945
946 return true;
947 }
Avi Kivity51c6cf62007-08-29 03:48:05 +0300948}
949
Andy Lutomirskie28baea2017-02-20 08:56:11 -0800950#ifdef CONFIG_X86_32
951/*
952 * On 32-bit kernels, VM exits still load the FS and GS bases from the
953 * VMCS rather than the segment table. KVM uses this helper to figure
954 * out the current bases to poke them into the VMCS before entry.
955 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200956static unsigned long segment_base(u16 selector)
957{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800958 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200959 unsigned long v;
960
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800961 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200962 return 0;
963
Thomas Garnier45fc8752017-03-14 10:05:08 -0700964 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200965
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800966 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200967 u16 ldt_selector = kvm_read_ldt();
968
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800969 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200970 return 0;
971
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800972 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200973 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800974 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200975 return v;
976}
Andy Lutomirskie28baea2017-02-20 08:56:11 -0800977#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200978
Chao Peng2ef444f2018-10-24 16:05:12 +0800979static inline void pt_load_msr(struct pt_ctx *ctx, u32 addr_range)
980{
981 u32 i;
982
983 wrmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
984 wrmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
985 wrmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
986 wrmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
987 for (i = 0; i < addr_range; i++) {
988 wrmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
989 wrmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
990 }
991}
992
993static inline void pt_save_msr(struct pt_ctx *ctx, u32 addr_range)
994{
995 u32 i;
996
997 rdmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
998 rdmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
999 rdmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1000 rdmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1001 for (i = 0; i < addr_range; i++) {
1002 rdmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1003 rdmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1004 }
1005}
1006
1007static void pt_guest_enter(struct vcpu_vmx *vmx)
1008{
1009 if (pt_mode == PT_MODE_SYSTEM)
1010 return;
1011
Chao Peng2ef444f2018-10-24 16:05:12 +08001012 /*
Chao Pengb08c2892018-10-24 16:05:15 +08001013 * GUEST_IA32_RTIT_CTL is already set in the VMCS.
1014 * Save host state before VM entry.
Chao Peng2ef444f2018-10-24 16:05:12 +08001015 */
Chao Pengb08c2892018-10-24 16:05:15 +08001016 rdmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
Chao Peng2ef444f2018-10-24 16:05:12 +08001017 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
1018 wrmsrl(MSR_IA32_RTIT_CTL, 0);
1019 pt_save_msr(&vmx->pt_desc.host, vmx->pt_desc.addr_range);
1020 pt_load_msr(&vmx->pt_desc.guest, vmx->pt_desc.addr_range);
1021 }
1022}
1023
1024static void pt_guest_exit(struct vcpu_vmx *vmx)
1025{
1026 if (pt_mode == PT_MODE_SYSTEM)
1027 return;
1028
1029 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
1030 pt_save_msr(&vmx->pt_desc.guest, vmx->pt_desc.addr_range);
1031 pt_load_msr(&vmx->pt_desc.host, vmx->pt_desc.addr_range);
1032 }
1033
1034 /* Reload host state (IA32_RTIT_CTL will be cleared on VM exit). */
1035 wrmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
1036}
1037
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001038void vmx_prepare_switch_to_guest(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001039{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001040 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond7ee0392018-07-23 12:32:47 -07001041 struct vmcs_host_state *host_state;
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001042#ifdef CONFIG_X86_64
Vitaly Kuznetsov35060ed2018-03-13 18:48:05 +01001043 int cpu = raw_smp_processor_id();
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001044#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001045 unsigned long fs_base, gs_base;
1046 u16 fs_sel, gs_sel;
Avi Kivity26bb0982009-09-07 11:14:12 +03001047 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001048
Sean Christophersond264ee02018-08-27 15:21:12 -07001049 vmx->req_immediate_exit = false;
1050
Liran Alonf48b4712018-11-20 18:03:25 +02001051 /*
1052 * Note that guest MSRs to be saved/restored can also be changed
1053 * when guest state is loaded. This happens when guest transitions
1054 * to/from long-mode by setting MSR_EFER.LMA.
1055 */
1056 if (!vmx->loaded_cpu_state || vmx->guest_msrs_dirty) {
1057 vmx->guest_msrs_dirty = false;
1058 for (i = 0; i < vmx->save_nmsrs; ++i)
1059 kvm_set_shared_msr(vmx->guest_msrs[i].index,
1060 vmx->guest_msrs[i].data,
1061 vmx->guest_msrs[i].mask);
1062
1063 }
1064
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001065 if (vmx->loaded_cpu_state)
Avi Kivity33ed6322007-05-02 16:54:03 +03001066 return;
1067
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001068 vmx->loaded_cpu_state = vmx->loaded_vmcs;
Sean Christophersond7ee0392018-07-23 12:32:47 -07001069 host_state = &vmx->loaded_cpu_state->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001070
Avi Kivity33ed6322007-05-02 16:54:03 +03001071 /*
1072 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1073 * allow segment selectors with cpl > 0 or ti == 1.
1074 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07001075 host_state->ldt_sel = kvm_read_ldt();
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01001076
1077#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001078 savesegment(ds, host_state->ds_sel);
1079 savesegment(es, host_state->es_sel);
Sean Christophersone368b872018-07-23 12:32:41 -07001080
1081 gs_base = cpu_kernelmode_gs_base(cpu);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001082 if (likely(is_64bit_mm(current->mm))) {
1083 save_fsgs_for_kvm();
Sean Christophersone368b872018-07-23 12:32:41 -07001084 fs_sel = current->thread.fsindex;
1085 gs_sel = current->thread.gsindex;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001086 fs_base = current->thread.fsbase;
Sean Christophersone368b872018-07-23 12:32:41 -07001087 vmx->msr_host_kernel_gs_base = current->thread.gsbase;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001088 } else {
Sean Christophersone368b872018-07-23 12:32:41 -07001089 savesegment(fs, fs_sel);
1090 savesegment(gs, gs_sel);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001091 fs_base = read_msr(MSR_FS_BASE);
Sean Christophersone368b872018-07-23 12:32:41 -07001092 vmx->msr_host_kernel_gs_base = read_msr(MSR_KERNEL_GS_BASE);
Avi Kivity33ed6322007-05-02 16:54:03 +03001093 }
1094
Paolo Bonzini4679b612018-09-24 17:23:01 +02001095 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity33ed6322007-05-02 16:54:03 +03001096#else
Sean Christophersone368b872018-07-23 12:32:41 -07001097 savesegment(fs, fs_sel);
1098 savesegment(gs, gs_sel);
1099 fs_base = segment_base(fs_sel);
1100 gs_base = segment_base(gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001101#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001102
Sean Christopherson8f21a0b2018-07-23 12:32:49 -07001103 if (unlikely(fs_sel != host_state->fs_sel)) {
1104 if (!(fs_sel & 7))
1105 vmcs_write16(HOST_FS_SELECTOR, fs_sel);
1106 else
1107 vmcs_write16(HOST_FS_SELECTOR, 0);
1108 host_state->fs_sel = fs_sel;
1109 }
1110 if (unlikely(gs_sel != host_state->gs_sel)) {
1111 if (!(gs_sel & 7))
1112 vmcs_write16(HOST_GS_SELECTOR, gs_sel);
1113 else
1114 vmcs_write16(HOST_GS_SELECTOR, 0);
1115 host_state->gs_sel = gs_sel;
1116 }
Sean Christopherson5e079c72018-07-23 12:32:50 -07001117 if (unlikely(fs_base != host_state->fs_base)) {
1118 vmcs_writel(HOST_FS_BASE, fs_base);
1119 host_state->fs_base = fs_base;
1120 }
1121 if (unlikely(gs_base != host_state->gs_base)) {
1122 vmcs_writel(HOST_GS_BASE, gs_base);
1123 host_state->gs_base = gs_base;
1124 }
Avi Kivity33ed6322007-05-02 16:54:03 +03001125}
1126
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001127static void vmx_prepare_switch_to_host(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001128{
Sean Christophersond7ee0392018-07-23 12:32:47 -07001129 struct vmcs_host_state *host_state;
1130
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001131 if (!vmx->loaded_cpu_state)
Avi Kivity33ed6322007-05-02 16:54:03 +03001132 return;
1133
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001134 WARN_ON_ONCE(vmx->loaded_cpu_state != vmx->loaded_vmcs);
Sean Christophersond7ee0392018-07-23 12:32:47 -07001135 host_state = &vmx->loaded_cpu_state->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001136
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001137 ++vmx->vcpu.stat.host_state_reload;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001138 vmx->loaded_cpu_state = NULL;
1139
Avi Kivityc8770e72010-11-11 12:37:26 +02001140#ifdef CONFIG_X86_64
Paolo Bonzini4679b612018-09-24 17:23:01 +02001141 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivityc8770e72010-11-11 12:37:26 +02001142#endif
Sean Christophersond7ee0392018-07-23 12:32:47 -07001143 if (host_state->ldt_sel || (host_state->gs_sel & 7)) {
1144 kvm_load_ldt(host_state->ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001145#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001146 load_gs_index(host_state->gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02001147#else
Sean Christophersond7ee0392018-07-23 12:32:47 -07001148 loadsegment(gs, host_state->gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001149#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03001150 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07001151 if (host_state->fs_sel & 7)
1152 loadsegment(fs, host_state->fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001153#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001154 if (unlikely(host_state->ds_sel | host_state->es_sel)) {
1155 loadsegment(ds, host_state->ds_sel);
1156 loadsegment(es, host_state->es_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001157 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03001158#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08001159 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03001160#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001161 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001162#endif
Thomas Garnier45fc8752017-03-14 10:05:08 -07001163 load_fixmap_gdt(raw_smp_processor_id());
Avi Kivity33ed6322007-05-02 16:54:03 +03001164}
1165
Sean Christopherson678e3152018-07-23 12:32:43 -07001166#ifdef CONFIG_X86_64
1167static u64 vmx_read_guest_kernel_gs_base(struct vcpu_vmx *vmx)
Avi Kivitya9b21b62008-06-24 11:48:49 +03001168{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001169 preempt_disable();
1170 if (vmx->loaded_cpu_state)
1171 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1172 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001173 return vmx->msr_guest_kernel_gs_base;
Avi Kivitya9b21b62008-06-24 11:48:49 +03001174}
1175
Sean Christopherson678e3152018-07-23 12:32:43 -07001176static void vmx_write_guest_kernel_gs_base(struct vcpu_vmx *vmx, u64 data)
1177{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001178 preempt_disable();
1179 if (vmx->loaded_cpu_state)
1180 wrmsrl(MSR_KERNEL_GS_BASE, data);
1181 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001182 vmx->msr_guest_kernel_gs_base = data;
1183}
1184#endif
1185
Feng Wu28b835d2015-09-18 22:29:54 +08001186static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
1187{
1188 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
1189 struct pi_desc old, new;
1190 unsigned int dest;
1191
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02001192 /*
1193 * In case of hot-plug or hot-unplug, we may have to undo
1194 * vmx_vcpu_pi_put even if there is no assigned device. And we
1195 * always keep PI.NDST up to date for simplicity: it makes the
1196 * code easier, and CPU migration is not a fast path.
1197 */
1198 if (!pi_test_sn(pi_desc) && vcpu->cpu == cpu)
Feng Wu28b835d2015-09-18 22:29:54 +08001199 return;
1200
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02001201 /* The full case. */
Feng Wu28b835d2015-09-18 22:29:54 +08001202 do {
1203 old.control = new.control = pi_desc->control;
1204
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02001205 dest = cpu_physical_id(cpu);
Feng Wu28b835d2015-09-18 22:29:54 +08001206
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02001207 if (x2apic_enabled())
1208 new.ndst = dest;
1209 else
1210 new.ndst = (dest << 8) & 0xFF00;
Feng Wu28b835d2015-09-18 22:29:54 +08001211
Feng Wu28b835d2015-09-18 22:29:54 +08001212 new.sn = 0;
Paolo Bonzinic0a16662017-09-28 17:58:41 +02001213 } while (cmpxchg64(&pi_desc->control, old.control,
1214 new.control) != old.control);
Luwei Kangc112b5f2019-02-14 10:48:07 +08001215
1216 /*
1217 * Clear SN before reading the bitmap. The VT-d firmware
1218 * writes the bitmap and reads SN atomically (5.2.3 in the
1219 * spec), so it doesn't really have a memory barrier that
1220 * pairs with this, but we cannot do that and we need one.
1221 */
1222 smp_mb__after_atomic();
1223
1224 if (!bitmap_empty((unsigned long *)pi_desc->pir, NR_VECTORS))
1225 pi_set_on(pi_desc);
Feng Wu28b835d2015-09-18 22:29:54 +08001226}
Xiao Guangrong1be0e612016-03-22 16:51:18 +08001227
Avi Kivity6aa8b732006-12-10 02:21:36 -08001228/*
1229 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
1230 * vcpu mutex is already taken.
1231 */
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001232void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001233{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001234 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001235 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001236
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001237 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01001238 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001239 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001240 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001241
1242 /*
1243 * Read loaded_vmcs->cpu should be before fetching
1244 * loaded_vmcs->loaded_vmcss_on_cpu_link.
1245 * See the comments in __loaded_vmcs_clear().
1246 */
1247 smp_rmb();
1248
Nadav Har'Eld462b812011-05-24 15:26:10 +03001249 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
1250 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001251 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001252 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001253 }
1254
1255 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
1256 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
1257 vmcs_load(vmx->loaded_vmcs->vmcs);
Ashok Raj15d45072018-02-01 22:59:43 +01001258 indirect_branch_prediction_barrier();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001259 }
1260
1261 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001262 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001263 unsigned long sysenter_esp;
1264
1265 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001266
Avi Kivity6aa8b732006-12-10 02:21:36 -08001267 /*
1268 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001269 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001270 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001271 vmcs_writel(HOST_TR_BASE,
Andy Lutomirski72f5e082017-12-04 15:07:20 +01001272 (unsigned long)&get_cpu_entry_area(cpu)->tss.x86_tss);
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001273 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001274
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08001275 /*
1276 * VM exits change the host TR limit to 0x67 after a VM
1277 * exit. This is okay, since 0x67 covers everything except
1278 * the IO bitmap and have have code to handle the IO bitmap
1279 * being lost after a VM exit.
1280 */
1281 BUILD_BUG_ON(IO_BITMAP_OFFSET - 1 != 0x67);
1282
Avi Kivity6aa8b732006-12-10 02:21:36 -08001283 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
1284 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08001285
Nadav Har'Eld462b812011-05-24 15:26:10 +03001286 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001287 }
Feng Wu28b835d2015-09-18 22:29:54 +08001288
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001289 /* Setup TSC multiplier */
1290 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07001291 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
1292 decache_tsc_multiplier(vmx);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001293
Feng Wu28b835d2015-09-18 22:29:54 +08001294 vmx_vcpu_pi_load(vcpu, cpu);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08001295 vmx->host_pkru = read_pkru();
Wanpeng Li74c55932017-11-29 01:31:20 -08001296 vmx->host_debugctlmsr = get_debugctlmsr();
Feng Wu28b835d2015-09-18 22:29:54 +08001297}
1298
1299static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
1300{
1301 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
1302
1303 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08001304 !irq_remapping_cap(IRQ_POSTING_CAP) ||
1305 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08001306 return;
1307
1308 /* Set SN when the vCPU is preempted */
1309 if (vcpu->preempted)
1310 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001311}
1312
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001313void vmx_vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001314{
Feng Wu28b835d2015-09-18 22:29:54 +08001315 vmx_vcpu_pi_put(vcpu);
1316
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001317 vmx_prepare_switch_to_host(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001318}
1319
Wanpeng Lif244dee2017-07-20 01:11:54 -07001320static bool emulation_required(struct kvm_vcpu *vcpu)
1321{
1322 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
1323}
1324
Avi Kivityedcafe32009-12-30 18:07:40 +02001325static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
1326
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001327unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001328{
Avi Kivity78ac8b42010-04-08 18:19:35 +03001329 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03001330
Avi Kivity6de12732011-03-07 12:51:22 +02001331 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
1332 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
1333 rflags = vmcs_readl(GUEST_RFLAGS);
1334 if (to_vmx(vcpu)->rmode.vm86_active) {
1335 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
1336 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
1337 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
1338 }
1339 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001340 }
Avi Kivity6de12732011-03-07 12:51:22 +02001341 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001342}
1343
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001344void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001345{
Wanpeng Lif244dee2017-07-20 01:11:54 -07001346 unsigned long old_rflags = vmx_get_rflags(vcpu);
1347
Avi Kivity6de12732011-03-07 12:51:22 +02001348 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
1349 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001350 if (to_vmx(vcpu)->rmode.vm86_active) {
1351 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001352 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001353 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001354 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001355
1356 if ((old_rflags ^ to_vmx(vcpu)->rflags) & X86_EFLAGS_VM)
1357 to_vmx(vcpu)->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001358}
1359
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001360u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001361{
1362 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1363 int ret = 0;
1364
1365 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01001366 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001367 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01001368 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001369
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02001370 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001371}
1372
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001373void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001374{
1375 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1376 u32 interruptibility = interruptibility_old;
1377
1378 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
1379
Jan Kiszka48005f62010-02-19 19:38:07 +01001380 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001381 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01001382 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001383 interruptibility |= GUEST_INTR_STATE_STI;
1384
1385 if ((interruptibility != interruptibility_old))
1386 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
1387}
1388
Chao Pengbf8c55d2018-10-24 16:05:14 +08001389static int vmx_rtit_ctl_check(struct kvm_vcpu *vcpu, u64 data)
1390{
1391 struct vcpu_vmx *vmx = to_vmx(vcpu);
1392 unsigned long value;
1393
1394 /*
1395 * Any MSR write that attempts to change bits marked reserved will
1396 * case a #GP fault.
1397 */
1398 if (data & vmx->pt_desc.ctl_bitmask)
1399 return 1;
1400
1401 /*
1402 * Any attempt to modify IA32_RTIT_CTL while TraceEn is set will
1403 * result in a #GP unless the same write also clears TraceEn.
1404 */
1405 if ((vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) &&
1406 ((vmx->pt_desc.guest.ctl ^ data) & ~RTIT_CTL_TRACEEN))
1407 return 1;
1408
1409 /*
1410 * WRMSR to IA32_RTIT_CTL that sets TraceEn but clears this bit
1411 * and FabricEn would cause #GP, if
1412 * CPUID.(EAX=14H, ECX=0):ECX.SNGLRGNOUT[bit 2] = 0
1413 */
1414 if ((data & RTIT_CTL_TRACEEN) && !(data & RTIT_CTL_TOPA) &&
1415 !(data & RTIT_CTL_FABRIC_EN) &&
1416 !intel_pt_validate_cap(vmx->pt_desc.caps,
1417 PT_CAP_single_range_output))
1418 return 1;
1419
1420 /*
1421 * MTCFreq, CycThresh and PSBFreq encodings check, any MSR write that
1422 * utilize encodings marked reserved will casue a #GP fault.
1423 */
1424 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc_periods);
1425 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc) &&
1426 !test_bit((data & RTIT_CTL_MTC_RANGE) >>
1427 RTIT_CTL_MTC_RANGE_OFFSET, &value))
1428 return 1;
1429 value = intel_pt_validate_cap(vmx->pt_desc.caps,
1430 PT_CAP_cycle_thresholds);
1431 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1432 !test_bit((data & RTIT_CTL_CYC_THRESH) >>
1433 RTIT_CTL_CYC_THRESH_OFFSET, &value))
1434 return 1;
1435 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_periods);
1436 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1437 !test_bit((data & RTIT_CTL_PSB_FREQ) >>
1438 RTIT_CTL_PSB_FREQ_OFFSET, &value))
1439 return 1;
1440
1441 /*
1442 * If ADDRx_CFG is reserved or the encodings is >2 will
1443 * cause a #GP fault.
1444 */
1445 value = (data & RTIT_CTL_ADDR0) >> RTIT_CTL_ADDR0_OFFSET;
1446 if ((value && (vmx->pt_desc.addr_range < 1)) || (value > 2))
1447 return 1;
1448 value = (data & RTIT_CTL_ADDR1) >> RTIT_CTL_ADDR1_OFFSET;
1449 if ((value && (vmx->pt_desc.addr_range < 2)) || (value > 2))
1450 return 1;
1451 value = (data & RTIT_CTL_ADDR2) >> RTIT_CTL_ADDR2_OFFSET;
1452 if ((value && (vmx->pt_desc.addr_range < 3)) || (value > 2))
1453 return 1;
1454 value = (data & RTIT_CTL_ADDR3) >> RTIT_CTL_ADDR3_OFFSET;
1455 if ((value && (vmx->pt_desc.addr_range < 4)) || (value > 2))
1456 return 1;
1457
1458 return 0;
1459}
1460
1461
Avi Kivity6aa8b732006-12-10 02:21:36 -08001462static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
1463{
1464 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001465
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001466 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001467 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001468 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001469
Glauber Costa2809f5d2009-05-12 16:21:05 -04001470 /* skipping an emulated instruction also counts */
1471 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001472}
1473
Wanpeng Licaa057a2018-03-12 04:53:03 -07001474static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
1475{
1476 /*
1477 * Ensure that we clear the HLT state in the VMCS. We don't need to
1478 * explicitly skip the instruction because if the HLT state is set,
1479 * then the instruction is already executing and RIP has already been
1480 * advanced.
1481 */
1482 if (kvm_hlt_in_guest(vcpu->kvm) &&
1483 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
1484 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
1485}
1486
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001487static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02001488{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001489 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001490 unsigned nr = vcpu->arch.exception.nr;
1491 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001492 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001493 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001494
Jim Mattsonda998b42018-10-16 14:29:22 -07001495 kvm_deliver_exception_payload(vcpu);
1496
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001497 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001498 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001499 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
1500 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001501
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001502 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05001503 int inc_eip = 0;
1504 if (kvm_exception_is_soft(nr))
1505 inc_eip = vcpu->arch.event_exit_inst_len;
1506 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02001507 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001508 return;
1509 }
1510
Sean Christophersonadd5ff72018-03-23 09:34:00 -07001511 WARN_ON_ONCE(vmx->emulation_required);
1512
Gleb Natapov66fd3f72009-05-11 13:35:50 +03001513 if (kvm_exception_is_soft(nr)) {
1514 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
1515 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001516 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
1517 } else
1518 intr_info |= INTR_TYPE_HARD_EXCEPTION;
1519
1520 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Wanpeng Licaa057a2018-03-12 04:53:03 -07001521
1522 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02001523}
1524
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001525static bool vmx_rdtscp_supported(void)
1526{
1527 return cpu_has_vmx_rdtscp();
1528}
1529
Mao, Junjiead756a12012-07-02 01:18:48 +00001530static bool vmx_invpcid_supported(void)
1531{
Junaid Shahideb4b2482018-06-27 14:59:14 -07001532 return cpu_has_vmx_invpcid();
Mao, Junjiead756a12012-07-02 01:18:48 +00001533}
1534
Avi Kivity6aa8b732006-12-10 02:21:36 -08001535/*
Eddie Donga75beee2007-05-17 18:55:15 +03001536 * Swap MSR entry in host/guest MSR entry array.
1537 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001538static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03001539{
Avi Kivity26bb0982009-09-07 11:14:12 +03001540 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001541
1542 tmp = vmx->guest_msrs[to];
1543 vmx->guest_msrs[to] = vmx->guest_msrs[from];
1544 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03001545}
1546
1547/*
Avi Kivitye38aea32007-04-19 13:22:48 +03001548 * Set up the vmcs to automatically save and restore system
1549 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
1550 * mode, as fiddling with msrs is very expensive.
1551 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001552static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03001553{
Avi Kivity26bb0982009-09-07 11:14:12 +03001554 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03001555
Eddie Donga75beee2007-05-17 18:55:15 +03001556 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001557#ifdef CONFIG_X86_64
Jim Mattson84c8c5b2018-12-05 15:29:01 -08001558 /*
1559 * The SYSCALL MSRs are only needed on long mode guests, and only
1560 * when EFER.SCE is set.
1561 */
1562 if (is_long_mode(&vmx->vcpu) && (vmx->vcpu.arch.efer & EFER_SCE)) {
1563 index = __find_msr_index(vmx, MSR_STAR);
Eddie Donga75beee2007-05-17 18:55:15 +03001564 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001565 move_msr_up(vmx, index, save_nmsrs++);
1566 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03001567 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001568 move_msr_up(vmx, index, save_nmsrs++);
Jim Mattson84c8c5b2018-12-05 15:29:01 -08001569 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
1570 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001571 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001572 }
Eddie Donga75beee2007-05-17 18:55:15 +03001573#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02001574 index = __find_msr_index(vmx, MSR_EFER);
1575 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03001576 move_msr_up(vmx, index, save_nmsrs++);
Jim Mattson0023ef32018-12-05 15:28:58 -08001577 index = __find_msr_index(vmx, MSR_TSC_AUX);
1578 if (index >= 0 && guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP))
1579 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001580
Avi Kivity26bb0982009-09-07 11:14:12 +03001581 vmx->save_nmsrs = save_nmsrs;
Liran Alonf48b4712018-11-20 18:03:25 +02001582 vmx->guest_msrs_dirty = true;
Avi Kivity58972972009-02-24 22:26:47 +02001583
Yang Zhang8d146952013-01-25 10:18:50 +08001584 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01001585 vmx_update_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03001586}
1587
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001588static u64 vmx_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001589{
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001590 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001591
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02001592 if (is_guest_mode(vcpu) &&
1593 (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING))
1594 return vcpu->arch.tsc_offset - vmcs12->tsc_offset;
1595
1596 return vcpu->arch.tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001597}
1598
Leonid Shatz326e7422018-11-06 12:14:25 +02001599static u64 vmx_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001600{
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001601 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1602 u64 g_tsc_offset = 0;
Leonid Shatz326e7422018-11-06 12:14:25 +02001603
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001604 /*
1605 * We're here if L1 chose not to trap WRMSR to TSC. According
1606 * to the spec, this should set L1's TSC; The offset that L1
1607 * set for L2 remains unchanged, and still needs to be added
1608 * to the newly set TSC to get L2's TSC.
1609 */
1610 if (is_guest_mode(vcpu) &&
1611 (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING))
1612 g_tsc_offset = vmcs12->tsc_offset;
1613
1614 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1615 vcpu->arch.tsc_offset - g_tsc_offset,
1616 offset);
1617 vmcs_write64(TSC_OFFSET, offset + g_tsc_offset);
1618 return offset + g_tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001619}
1620
Nadav Har'El801d3422011-05-25 23:02:23 +03001621/*
1622 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
1623 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
1624 * all guests if the "nested" module option is off, and can also be disabled
1625 * for a single guest by disabling its VMX cpuid bit.
1626 */
Sean Christopherson7c97fcb2018-12-03 13:53:17 -08001627bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
Nadav Har'El801d3422011-05-25 23:02:23 +03001628{
Radim Krčmářd6321d42017-08-05 00:12:49 +02001629 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03001630}
1631
Haozhong Zhang37e4c992016-06-22 14:59:55 +08001632static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
1633 uint64_t val)
1634{
1635 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
1636
1637 return !(val & ~valid_bits);
1638}
1639
Tom Lendacky801e4592018-02-21 13:39:51 -06001640static int vmx_get_msr_feature(struct kvm_msr_entry *msr)
1641{
Paolo Bonzini13893092018-02-26 13:40:09 +01001642 switch (msr->index) {
1643 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1644 if (!nested)
1645 return 1;
1646 return vmx_get_vmx_msr(&vmcs_config.nested, msr->index, &msr->data);
1647 default:
1648 return 1;
1649 }
1650
1651 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06001652}
1653
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001654/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001655 * Reads an msr value (of 'msr_index') into 'pdata'.
1656 * Returns 0 on success, non-0 otherwise.
1657 * Assumes vcpu_load() was already called.
1658 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001659static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001660{
Borislav Petkova6cb0992017-12-20 12:50:28 +01001661 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001662 struct shared_msr_entry *msr;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001663 u32 index;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001664
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001665 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001666#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001667 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001668 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001669 break;
1670 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001671 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001672 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001673 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001674 msr_info->data = vmx_read_guest_kernel_gs_base(vmx);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001675 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03001676#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001677 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001678 return kvm_get_msr_common(vcpu, msr_info);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001679 case MSR_IA32_SPEC_CTRL:
1680 if (!msr_info->host_initiated &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001681 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
1682 return 1;
1683
1684 msr_info->data = to_vmx(vcpu)->spec_ctrl;
1685 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001686 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001687 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001688 break;
1689 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001690 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001691 break;
1692 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001693 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001694 break;
Liran Alon6c6a2ab2019-04-15 18:45:26 +03001695 case MSR_IA32_POWER_CTL:
1696 msr_info->data = vmx->msr_ia32_power_ctl;
1697 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001698 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08001699 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02001700 (!msr_info->host_initiated &&
1701 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01001702 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001703 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001704 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001705 case MSR_IA32_MCG_EXT_CTL:
1706 if (!msr_info->host_initiated &&
Borislav Petkova6cb0992017-12-20 12:50:28 +01001707 !(vmx->msr_ia32_feature_control &
Ashok Rajc45dcc72016-06-22 14:59:56 +08001708 FEATURE_CONTROL_LMCE))
Jan Kiszkacae50132014-01-04 18:47:22 +01001709 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001710 msr_info->data = vcpu->arch.mcg_ext_ctl;
1711 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01001712 case MSR_IA32_FEATURE_CONTROL:
Borislav Petkova6cb0992017-12-20 12:50:28 +01001713 msr_info->data = vmx->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01001714 break;
1715 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1716 if (!nested_vmx_allowed(vcpu))
1717 return 1;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01001718 return vmx_get_vmx_msr(&vmx->nested.msrs, msr_info->index,
1719 &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08001720 case MSR_IA32_XSS:
1721 if (!vmx_xsaves_supported())
1722 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001723 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08001724 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001725 case MSR_IA32_RTIT_CTL:
1726 if (pt_mode != PT_MODE_HOST_GUEST)
1727 return 1;
1728 msr_info->data = vmx->pt_desc.guest.ctl;
1729 break;
1730 case MSR_IA32_RTIT_STATUS:
1731 if (pt_mode != PT_MODE_HOST_GUEST)
1732 return 1;
1733 msr_info->data = vmx->pt_desc.guest.status;
1734 break;
1735 case MSR_IA32_RTIT_CR3_MATCH:
1736 if ((pt_mode != PT_MODE_HOST_GUEST) ||
1737 !intel_pt_validate_cap(vmx->pt_desc.caps,
1738 PT_CAP_cr3_filtering))
1739 return 1;
1740 msr_info->data = vmx->pt_desc.guest.cr3_match;
1741 break;
1742 case MSR_IA32_RTIT_OUTPUT_BASE:
1743 if ((pt_mode != PT_MODE_HOST_GUEST) ||
1744 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1745 PT_CAP_topa_output) &&
1746 !intel_pt_validate_cap(vmx->pt_desc.caps,
1747 PT_CAP_single_range_output)))
1748 return 1;
1749 msr_info->data = vmx->pt_desc.guest.output_base;
1750 break;
1751 case MSR_IA32_RTIT_OUTPUT_MASK:
1752 if ((pt_mode != PT_MODE_HOST_GUEST) ||
1753 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1754 PT_CAP_topa_output) &&
1755 !intel_pt_validate_cap(vmx->pt_desc.caps,
1756 PT_CAP_single_range_output)))
1757 return 1;
1758 msr_info->data = vmx->pt_desc.guest.output_mask;
1759 break;
1760 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
1761 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
1762 if ((pt_mode != PT_MODE_HOST_GUEST) ||
1763 (index >= 2 * intel_pt_validate_cap(vmx->pt_desc.caps,
1764 PT_CAP_num_address_ranges)))
1765 return 1;
1766 if (index % 2)
1767 msr_info->data = vmx->pt_desc.guest.addr_b[index / 2];
1768 else
1769 msr_info->data = vmx->pt_desc.guest.addr_a[index / 2];
1770 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001771 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02001772 if (!msr_info->host_initiated &&
1773 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001774 return 1;
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06001775 /* Else, falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001776 default:
Borislav Petkova6cb0992017-12-20 12:50:28 +01001777 msr = find_msr_entry(vmx, msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001778 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001779 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001780 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001781 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001782 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001783 }
1784
Avi Kivity6aa8b732006-12-10 02:21:36 -08001785 return 0;
1786}
1787
1788/*
1789 * Writes msr value into into the appropriate "register".
1790 * Returns 0 on success, non-0 otherwise.
1791 * Assumes vcpu_load() was already called.
1792 */
Will Auld8fe8ab42012-11-29 12:42:12 -08001793static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001794{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001795 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001796 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03001797 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08001798 u32 msr_index = msr_info->index;
1799 u64 data = msr_info->data;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001800 u32 index;
Eddie Dong2cc51562007-05-21 07:28:09 +03001801
Avi Kivity6aa8b732006-12-10 02:21:36 -08001802 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001803 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08001804 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03001805 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001806#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001807 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001808 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001809 vmcs_writel(GUEST_FS_BASE, data);
1810 break;
1811 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001812 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001813 vmcs_writel(GUEST_GS_BASE, data);
1814 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001815 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001816 vmx_write_guest_kernel_gs_base(vmx, data);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001817 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001818#endif
1819 case MSR_IA32_SYSENTER_CS:
1820 vmcs_write32(GUEST_SYSENTER_CS, data);
1821 break;
1822 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001823 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001824 break;
1825 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001826 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001827 break;
Liran Alon6c6a2ab2019-04-15 18:45:26 +03001828 case MSR_IA32_POWER_CTL:
1829 vmx->msr_ia32_power_ctl = data;
1830 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001831 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08001832 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02001833 (!msr_info->host_initiated &&
1834 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01001835 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08001836 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07001837 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001838 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08001839 vmcs_write64(GUEST_BNDCFGS, data);
1840 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001841 case MSR_IA32_SPEC_CTRL:
1842 if (!msr_info->host_initiated &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001843 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
1844 return 1;
1845
1846 /* The STIBP bit doesn't fault even if it's not advertised */
Konrad Rzeszutek Wilk9f65fb22018-05-09 21:41:38 +02001847 if (data & ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001848 return 1;
1849
1850 vmx->spec_ctrl = data;
1851
1852 if (!data)
1853 break;
1854
1855 /*
1856 * For non-nested:
1857 * When it's written (to non-zero) for the first time, pass
1858 * it through.
1859 *
1860 * For nested:
1861 * The handling of the MSR bitmap for L2 guests is done in
1862 * nested_vmx_merge_msr_bitmap. We should not touch the
1863 * vmcs02.msr_bitmap here since it gets completely overwritten
1864 * in the merging. We update the vmcs01 here for L1 as well
1865 * since it will end up touching the MSR anyway now.
1866 */
1867 vmx_disable_intercept_for_msr(vmx->vmcs01.msr_bitmap,
1868 MSR_IA32_SPEC_CTRL,
1869 MSR_TYPE_RW);
1870 break;
Ashok Raj15d45072018-02-01 22:59:43 +01001871 case MSR_IA32_PRED_CMD:
1872 if (!msr_info->host_initiated &&
Ashok Raj15d45072018-02-01 22:59:43 +01001873 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
1874 return 1;
1875
1876 if (data & ~PRED_CMD_IBPB)
1877 return 1;
1878
1879 if (!data)
1880 break;
1881
1882 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
1883
1884 /*
1885 * For non-nested:
1886 * When it's written (to non-zero) for the first time, pass
1887 * it through.
1888 *
1889 * For nested:
1890 * The handling of the MSR bitmap for L2 guests is done in
1891 * nested_vmx_merge_msr_bitmap. We should not touch the
1892 * vmcs02.msr_bitmap here since it gets completely overwritten
1893 * in the merging.
1894 */
1895 vmx_disable_intercept_for_msr(vmx->vmcs01.msr_bitmap, MSR_IA32_PRED_CMD,
1896 MSR_TYPE_W);
1897 break;
Sheng Yang468d4722008-10-09 16:01:55 +08001898 case MSR_IA32_CR_PAT:
1899 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Paolo Bonzini674ea352019-04-10 11:41:40 +02001900 if (!kvm_pat_valid(data))
Nadav Amit45666542014-09-18 22:39:44 +03001901 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08001902 vmcs_write64(GUEST_IA32_PAT, data);
1903 vcpu->arch.pat = data;
1904 break;
1905 }
Will Auld8fe8ab42012-11-29 12:42:12 -08001906 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001907 break;
Will Auldba904632012-11-29 12:42:50 -08001908 case MSR_IA32_TSC_ADJUST:
1909 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001910 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001911 case MSR_IA32_MCG_EXT_CTL:
1912 if ((!msr_info->host_initiated &&
1913 !(to_vmx(vcpu)->msr_ia32_feature_control &
1914 FEATURE_CONTROL_LMCE)) ||
1915 (data & ~MCG_EXT_CTL_LMCE_EN))
1916 return 1;
1917 vcpu->arch.mcg_ext_ctl = data;
1918 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01001919 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08001920 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08001921 (to_vmx(vcpu)->msr_ia32_feature_control &
Jan Kiszkacae50132014-01-04 18:47:22 +01001922 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
1923 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08001924 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01001925 if (msr_info->host_initiated && data == 0)
1926 vmx_leave_nested(vcpu);
1927 break;
1928 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08001929 if (!msr_info->host_initiated)
1930 return 1; /* they are read-only */
1931 if (!nested_vmx_allowed(vcpu))
1932 return 1;
1933 return vmx_set_vmx_msr(vcpu, msr_index, data);
Wanpeng Li20300092014-12-02 19:14:59 +08001934 case MSR_IA32_XSS:
1935 if (!vmx_xsaves_supported())
1936 return 1;
1937 /*
1938 * The only supported bit as of Skylake is bit 8, but
1939 * it is not supported on KVM.
1940 */
1941 if (data != 0)
1942 return 1;
1943 vcpu->arch.ia32_xss = data;
1944 if (vcpu->arch.ia32_xss != host_xss)
1945 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04001946 vcpu->arch.ia32_xss, host_xss, false);
Wanpeng Li20300092014-12-02 19:14:59 +08001947 else
1948 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
1949 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001950 case MSR_IA32_RTIT_CTL:
1951 if ((pt_mode != PT_MODE_HOST_GUEST) ||
Luwei Kangee85dec2018-10-24 16:05:16 +08001952 vmx_rtit_ctl_check(vcpu, data) ||
1953 vmx->nested.vmxon)
Chao Pengbf8c55d2018-10-24 16:05:14 +08001954 return 1;
1955 vmcs_write64(GUEST_IA32_RTIT_CTL, data);
1956 vmx->pt_desc.guest.ctl = data;
Chao Pengb08c2892018-10-24 16:05:15 +08001957 pt_update_intercept_for_msr(vmx);
Chao Pengbf8c55d2018-10-24 16:05:14 +08001958 break;
1959 case MSR_IA32_RTIT_STATUS:
1960 if ((pt_mode != PT_MODE_HOST_GUEST) ||
1961 (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) ||
1962 (data & MSR_IA32_RTIT_STATUS_MASK))
1963 return 1;
1964 vmx->pt_desc.guest.status = data;
1965 break;
1966 case MSR_IA32_RTIT_CR3_MATCH:
1967 if ((pt_mode != PT_MODE_HOST_GUEST) ||
1968 (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) ||
1969 !intel_pt_validate_cap(vmx->pt_desc.caps,
1970 PT_CAP_cr3_filtering))
1971 return 1;
1972 vmx->pt_desc.guest.cr3_match = data;
1973 break;
1974 case MSR_IA32_RTIT_OUTPUT_BASE:
1975 if ((pt_mode != PT_MODE_HOST_GUEST) ||
1976 (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) ||
1977 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1978 PT_CAP_topa_output) &&
1979 !intel_pt_validate_cap(vmx->pt_desc.caps,
1980 PT_CAP_single_range_output)) ||
1981 (data & MSR_IA32_RTIT_OUTPUT_BASE_MASK))
1982 return 1;
1983 vmx->pt_desc.guest.output_base = data;
1984 break;
1985 case MSR_IA32_RTIT_OUTPUT_MASK:
1986 if ((pt_mode != PT_MODE_HOST_GUEST) ||
1987 (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) ||
1988 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1989 PT_CAP_topa_output) &&
1990 !intel_pt_validate_cap(vmx->pt_desc.caps,
1991 PT_CAP_single_range_output)))
1992 return 1;
1993 vmx->pt_desc.guest.output_mask = data;
1994 break;
1995 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
1996 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
1997 if ((pt_mode != PT_MODE_HOST_GUEST) ||
1998 (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) ||
1999 (index >= 2 * intel_pt_validate_cap(vmx->pt_desc.caps,
2000 PT_CAP_num_address_ranges)))
2001 return 1;
2002 if (index % 2)
2003 vmx->pt_desc.guest.addr_b[index / 2] = data;
2004 else
2005 vmx->pt_desc.guest.addr_a[index / 2] = data;
2006 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002007 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02002008 if (!msr_info->host_initiated &&
2009 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002010 return 1;
2011 /* Check reserved bit, higher 32 bits should be zero */
2012 if ((data >> 32) != 0)
2013 return 1;
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06002014 /* Else, falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002015 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10002016 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002017 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07002018 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08002019 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03002020 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
2021 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07002022 ret = kvm_set_shared_msr(msr->index, msr->data,
2023 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03002024 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07002025 if (ret)
2026 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03002027 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08002028 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002029 }
Will Auld8fe8ab42012-11-29 12:42:12 -08002030 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002031 }
2032
Eddie Dong2cc51562007-05-21 07:28:09 +03002033 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002034}
2035
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002036static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002037{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002038 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
2039 switch (reg) {
2040 case VCPU_REGS_RSP:
2041 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
2042 break;
2043 case VCPU_REGS_RIP:
2044 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
2045 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002046 case VCPU_EXREG_PDPTR:
2047 if (enable_ept)
2048 ept_save_pdptrs(vcpu);
2049 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002050 default:
2051 break;
2052 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002053}
2054
Avi Kivity6aa8b732006-12-10 02:21:36 -08002055static __init int cpu_has_kvm_support(void)
2056{
Eduardo Habkost6210e372008-11-17 19:03:16 -02002057 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002058}
2059
2060static __init int vmx_disabled_by_bios(void)
2061{
2062 u64 msr;
2063
2064 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04002065 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08002066 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04002067 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
2068 && tboot_enabled())
2069 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08002070 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04002071 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08002072 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08002073 && !tboot_enabled()) {
2074 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08002075 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04002076 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08002077 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08002078 /* launched w/o TXT and VMX disabled */
2079 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
2080 && !tboot_enabled())
2081 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04002082 }
2083
2084 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002085}
2086
Dongxiao Xu7725b892010-05-11 18:29:38 +08002087static void kvm_cpu_vmxon(u64 addr)
2088{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002089 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03002090 intel_pt_handle_vmx(1);
2091
Uros Bizjak4b1e5472018-10-11 19:40:44 +02002092 asm volatile ("vmxon %0" : : "m"(addr));
Dongxiao Xu7725b892010-05-11 18:29:38 +08002093}
2094
Radim Krčmář13a34e02014-08-28 15:13:03 +02002095static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002096{
2097 int cpu = raw_smp_processor_id();
2098 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04002099 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002100
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002101 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02002102 return -EBUSY;
2103
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002104 /*
2105 * This can happen if we hot-added a CPU but failed to allocate
2106 * VP assist page for it.
2107 */
2108 if (static_branch_unlikely(&enable_evmcs) &&
2109 !hv_get_vp_assist_page(cpu))
2110 return -EFAULT;
2111
Nadav Har'Eld462b812011-05-24 15:26:10 +03002112 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08002113 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
2114 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002115
2116 /*
2117 * Now we can enable the vmclear operation in kdump
2118 * since the loaded_vmcss_on_cpu list on this cpu
2119 * has been initialized.
2120 *
2121 * Though the cpu is not in VMX operation now, there
2122 * is no problem to enable the vmclear operation
2123 * for the loaded_vmcss_on_cpu list is empty!
2124 */
2125 crash_enable_local_vmclear(cpu);
2126
Avi Kivity6aa8b732006-12-10 02:21:36 -08002127 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04002128
2129 test_bits = FEATURE_CONTROL_LOCKED;
2130 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
2131 if (tboot_enabled())
2132 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
2133
2134 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002135 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04002136 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
2137 }
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002138 kvm_cpu_vmxon(phys_addr);
David Hildenbrandfdf288b2017-08-24 20:51:29 +02002139 if (enable_ept)
2140 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02002141
2142 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002143}
2144
Nadav Har'Eld462b812011-05-24 15:26:10 +03002145static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03002146{
2147 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03002148 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03002149
Nadav Har'Eld462b812011-05-24 15:26:10 +03002150 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
2151 loaded_vmcss_on_cpu_link)
2152 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03002153}
2154
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002155
2156/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
2157 * tricks.
2158 */
2159static void kvm_cpu_vmxoff(void)
2160{
Uros Bizjak4b1e5472018-10-11 19:40:44 +02002161 asm volatile (__ex("vmxoff"));
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03002162
2163 intel_pt_handle_vmx(0);
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002164 cr4_clear_bits(X86_CR4_VMXE);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002165}
2166
Radim Krčmář13a34e02014-08-28 15:13:03 +02002167static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002168{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002169 vmclear_local_loaded_vmcss();
2170 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002171}
2172
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002173static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04002174 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002175{
2176 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002177 u32 ctl = ctl_min | ctl_opt;
2178
2179 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2180
2181 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
2182 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
2183
2184 /* Ensure minimum (required) set of control bits are supported. */
2185 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002186 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002187
2188 *result = ctl;
2189 return 0;
2190}
2191
Sean Christopherson7caaa712018-12-03 13:53:01 -08002192static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf,
2193 struct vmx_capability *vmx_cap)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002194{
2195 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08002196 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002197 u32 _pin_based_exec_control = 0;
2198 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002199 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002200 u32 _vmexit_control = 0;
2201 u32 _vmentry_control = 0;
2202
Paolo Bonzini13893092018-02-26 13:40:09 +01002203 memset(vmcs_conf, 0, sizeof(*vmcs_conf));
Raghavendra K T10166742012-02-07 23:19:20 +05302204 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002205#ifdef CONFIG_X86_64
2206 CPU_BASED_CR8_LOAD_EXITING |
2207 CPU_BASED_CR8_STORE_EXITING |
2208#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002209 CPU_BASED_CR3_LOAD_EXITING |
2210 CPU_BASED_CR3_STORE_EXITING |
Quan Xu8eb73e22017-12-12 16:44:21 +08002211 CPU_BASED_UNCOND_IO_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002212 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03002213 CPU_BASED_USE_TSC_OFFSETING |
Wanpeng Li4d5422c2018-03-12 04:53:02 -07002214 CPU_BASED_MWAIT_EXITING |
2215 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02002216 CPU_BASED_INVLPG_EXITING |
2217 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06002218
Sheng Yangf78e0e22007-10-29 09:40:42 +08002219 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08002220 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08002221 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002222 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
2223 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002224 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002225#ifdef CONFIG_X86_64
2226 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2227 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
2228 ~CPU_BASED_CR8_STORE_EXITING;
2229#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08002230 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002231 min2 = 0;
2232 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08002233 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08002234 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08002235 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002236 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002237 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002238 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Paolo Bonzini0367f202016-07-12 10:44:55 +02002239 SECONDARY_EXEC_DESC |
Mao, Junjiead756a12012-07-02 01:18:48 +00002240 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08002241 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002242 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03002243 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08002244 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08002245 SECONDARY_EXEC_XSAVES |
David Hildenbrand736fdf72017-08-24 20:51:37 +02002246 SECONDARY_EXEC_RDSEED_EXITING |
2247 SECONDARY_EXEC_RDRAND_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08002248 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04002249 SECONDARY_EXEC_TSC_SCALING |
Chao Pengf99e3da2018-10-24 16:05:10 +08002250 SECONDARY_EXEC_PT_USE_GPA |
2251 SECONDARY_EXEC_PT_CONCEAL_VMX |
Sean Christopherson0b665d32018-08-14 09:33:34 -07002252 SECONDARY_EXEC_ENABLE_VMFUNC |
2253 SECONDARY_EXEC_ENCLS_EXITING;
Sheng Yangd56f5462008-04-25 10:13:16 +08002254 if (adjust_vmx_controls(min2, opt2,
2255 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002256 &_cpu_based_2nd_exec_control) < 0)
2257 return -EIO;
2258 }
2259#ifndef CONFIG_X86_64
2260 if (!(_cpu_based_2nd_exec_control &
2261 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
2262 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
2263#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08002264
2265 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2266 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08002267 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002268 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
2269 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08002270
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002271 rdmsr_safe(MSR_IA32_VMX_EPT_VPID_CAP,
Sean Christopherson7caaa712018-12-03 13:53:01 -08002272 &vmx_cap->ept, &vmx_cap->vpid);
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002273
Sheng Yangd56f5462008-04-25 10:13:16 +08002274 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03002275 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
2276 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03002277 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
2278 CPU_BASED_CR3_STORE_EXITING |
2279 CPU_BASED_INVLPG_EXITING);
Sean Christopherson7caaa712018-12-03 13:53:01 -08002280 } else if (vmx_cap->ept) {
2281 vmx_cap->ept = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002282 pr_warn_once("EPT CAP should not exist if not support "
2283 "1-setting enable EPT VM-execution control\n");
2284 }
2285 if (!(_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_VPID) &&
Sean Christopherson7caaa712018-12-03 13:53:01 -08002286 vmx_cap->vpid) {
2287 vmx_cap->vpid = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002288 pr_warn_once("VPID CAP should not exist if not support "
2289 "1-setting enable VPID VM-execution control\n");
Sheng Yangd56f5462008-04-25 10:13:16 +08002290 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002291
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002292 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002293#ifdef CONFIG_X86_64
2294 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
2295#endif
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002296 opt = VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL |
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002297 VM_EXIT_LOAD_IA32_PAT |
2298 VM_EXIT_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002299 VM_EXIT_CLEAR_BNDCFGS |
2300 VM_EXIT_PT_CONCEAL_PIP |
2301 VM_EXIT_CLEAR_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002302 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
2303 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002304 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002305
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01002306 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
2307 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
2308 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002309 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
2310 &_pin_based_exec_control) < 0)
2311 return -EIO;
2312
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02002313 if (cpu_has_broken_vmx_preemption_timer())
2314 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002315 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002316 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08002317 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
2318
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01002319 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002320 opt = VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL |
2321 VM_ENTRY_LOAD_IA32_PAT |
2322 VM_ENTRY_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002323 VM_ENTRY_LOAD_BNDCFGS |
2324 VM_ENTRY_PT_CONCEAL_PIP |
2325 VM_ENTRY_LOAD_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002326 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
2327 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002328 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002329
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002330 /*
2331 * Some cpus support VM_{ENTRY,EXIT}_IA32_PERF_GLOBAL_CTRL but they
2332 * can't be used due to an errata where VM Exit may incorrectly clear
2333 * IA32_PERF_GLOBAL_CTRL[34:32]. Workaround the errata by using the
2334 * MSR load mechanism to switch IA32_PERF_GLOBAL_CTRL.
2335 */
2336 if (boot_cpu_data.x86 == 0x6) {
2337 switch (boot_cpu_data.x86_model) {
2338 case 26: /* AAK155 */
2339 case 30: /* AAP115 */
2340 case 37: /* AAT100 */
2341 case 44: /* BC86,AAY89,BD102 */
2342 case 46: /* BA97 */
Sean Christopherson85ba2b12019-01-14 12:12:02 -08002343 _vmentry_control &= ~VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002344 _vmexit_control &= ~VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL;
2345 pr_warn_once("kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
2346 "does not work properly. Using workaround\n");
2347 break;
2348 default:
2349 break;
2350 }
2351 }
2352
2353
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002354 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002355
2356 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
2357 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002358 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002359
2360#ifdef CONFIG_X86_64
2361 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
2362 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03002363 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002364#endif
2365
2366 /* Require Write-Back (WB) memory type for VMCS accesses. */
2367 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002368 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002369
Yang, Sheng002c7f72007-07-31 14:23:01 +03002370 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02002371 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03002372 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002373
Liran Alon2307af12018-06-29 22:59:04 +03002374 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002375
Yang, Sheng002c7f72007-07-31 14:23:01 +03002376 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
2377 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002378 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002379 vmcs_conf->vmexit_ctrl = _vmexit_control;
2380 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002381
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002382 if (static_branch_unlikely(&enable_evmcs))
2383 evmcs_sanitize_exec_ctrls(vmcs_conf);
2384
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002385 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002386}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002387
Ben Gardon41836832019-02-11 11:02:52 -08002388struct vmcs *alloc_vmcs_cpu(bool shadow, int cpu, gfp_t flags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002389{
2390 int node = cpu_to_node(cpu);
2391 struct page *pages;
2392 struct vmcs *vmcs;
2393
Ben Gardon41836832019-02-11 11:02:52 -08002394 pages = __alloc_pages_node(node, flags, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002395 if (!pages)
2396 return NULL;
2397 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002398 memset(vmcs, 0, vmcs_config.size);
Liran Alon2307af12018-06-29 22:59:04 +03002399
2400 /* KVM supports Enlightened VMCS v1 only */
2401 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002402 vmcs->hdr.revision_id = KVM_EVMCS_VERSION;
Liran Alon2307af12018-06-29 22:59:04 +03002403 else
Liran Alon392b2f22018-06-23 02:35:01 +03002404 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002405
Liran Alon491a6032018-06-23 02:35:12 +03002406 if (shadow)
2407 vmcs->hdr.shadow_vmcs = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002408 return vmcs;
2409}
2410
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002411void free_vmcs(struct vmcs *vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002412{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002413 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002414}
2415
Nadav Har'Eld462b812011-05-24 15:26:10 +03002416/*
2417 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
2418 */
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002419void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Nadav Har'Eld462b812011-05-24 15:26:10 +03002420{
2421 if (!loaded_vmcs->vmcs)
2422 return;
2423 loaded_vmcs_clear(loaded_vmcs);
2424 free_vmcs(loaded_vmcs->vmcs);
2425 loaded_vmcs->vmcs = NULL;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002426 if (loaded_vmcs->msr_bitmap)
2427 free_page((unsigned long)loaded_vmcs->msr_bitmap);
Jim Mattson355f4fb2016-10-28 08:29:39 -07002428 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002429}
2430
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002431int alloc_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002432{
Liran Alon491a6032018-06-23 02:35:12 +03002433 loaded_vmcs->vmcs = alloc_vmcs(false);
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002434 if (!loaded_vmcs->vmcs)
2435 return -ENOMEM;
2436
2437 loaded_vmcs->shadow_vmcs = NULL;
2438 loaded_vmcs_init(loaded_vmcs);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002439
2440 if (cpu_has_vmx_msr_bitmap()) {
Ben Gardon41836832019-02-11 11:02:52 -08002441 loaded_vmcs->msr_bitmap = (unsigned long *)
2442 __get_free_page(GFP_KERNEL_ACCOUNT);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002443 if (!loaded_vmcs->msr_bitmap)
2444 goto out_vmcs;
2445 memset(loaded_vmcs->msr_bitmap, 0xff, PAGE_SIZE);
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02002446
Arnd Bergmann1f008e12018-05-25 17:36:17 +02002447 if (IS_ENABLED(CONFIG_HYPERV) &&
2448 static_branch_unlikely(&enable_evmcs) &&
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02002449 (ms_hyperv.nested_features & HV_X64_NESTED_MSR_BITMAP)) {
2450 struct hv_enlightened_vmcs *evmcs =
2451 (struct hv_enlightened_vmcs *)loaded_vmcs->vmcs;
2452
2453 evmcs->hv_enlightenments_control.msr_bitmap = 1;
2454 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002455 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07002456
2457 memset(&loaded_vmcs->host_state, 0, sizeof(struct vmcs_host_state));
2458
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002459 return 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002460
2461out_vmcs:
2462 free_loaded_vmcs(loaded_vmcs);
2463 return -ENOMEM;
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002464}
2465
Sam Ravnborg39959582007-06-01 00:47:13 -07002466static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002467{
2468 int cpu;
2469
Zachary Amsden3230bb42009-09-29 11:38:37 -10002470 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002471 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10002472 per_cpu(vmxarea, cpu) = NULL;
2473 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002474}
2475
Avi Kivity6aa8b732006-12-10 02:21:36 -08002476static __init int alloc_kvm_area(void)
2477{
2478 int cpu;
2479
Zachary Amsden3230bb42009-09-29 11:38:37 -10002480 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002481 struct vmcs *vmcs;
2482
Ben Gardon41836832019-02-11 11:02:52 -08002483 vmcs = alloc_vmcs_cpu(false, cpu, GFP_KERNEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002484 if (!vmcs) {
2485 free_kvm_area();
2486 return -ENOMEM;
2487 }
2488
Liran Alon2307af12018-06-29 22:59:04 +03002489 /*
2490 * When eVMCS is enabled, alloc_vmcs_cpu() sets
2491 * vmcs->revision_id to KVM_EVMCS_VERSION instead of
2492 * revision_id reported by MSR_IA32_VMX_BASIC.
2493 *
Linus Torvalds312a4662018-12-26 17:03:51 -08002494 * However, even though not explicitly documented by
Liran Alon2307af12018-06-29 22:59:04 +03002495 * TLFS, VMXArea passed as VMXON argument should
2496 * still be marked with revision_id reported by
2497 * physical CPU.
2498 */
2499 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002500 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002501
Avi Kivity6aa8b732006-12-10 02:21:36 -08002502 per_cpu(vmxarea, cpu) = vmcs;
2503 }
2504 return 0;
2505}
2506
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002507static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02002508 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002509{
Gleb Natapovd99e4152012-12-20 16:57:45 +02002510 if (!emulate_invalid_guest_state) {
2511 /*
2512 * CS and SS RPL should be equal during guest entry according
2513 * to VMX spec, but in reality it is not always so. Since vcpu
2514 * is in the middle of the transition from real mode to
2515 * protected mode it is safe to assume that RPL 0 is a good
2516 * default value.
2517 */
2518 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03002519 save->selector &= ~SEGMENT_RPL_MASK;
2520 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02002521 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002522 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02002523 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002524}
2525
2526static void enter_pmode(struct kvm_vcpu *vcpu)
2527{
2528 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002529 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002530
Gleb Natapovd99e4152012-12-20 16:57:45 +02002531 /*
2532 * Update real mode segment cache. It may be not up-to-date if sement
2533 * register was written while vcpu was in a guest mode.
2534 */
2535 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2536 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2537 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2538 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
2539 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2540 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
2541
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002542 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002543
Avi Kivity2fb92db2011-04-27 19:42:18 +03002544 vmx_segment_cache_clear(vmx);
2545
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002546 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002547
2548 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002549 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2550 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002551 vmcs_writel(GUEST_RFLAGS, flags);
2552
Rusty Russell66aee912007-07-17 23:34:16 +10002553 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
2554 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002555
2556 update_exception_bitmap(vcpu);
2557
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002558 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2559 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2560 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2561 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2562 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
2563 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002564}
2565
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002566static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002567{
Mathias Krause772e0312012-08-30 01:30:19 +02002568 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02002569 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002570
Gleb Natapovd99e4152012-12-20 16:57:45 +02002571 var.dpl = 0x3;
2572 if (seg == VCPU_SREG_CS)
2573 var.type = 0x3;
2574
2575 if (!emulate_invalid_guest_state) {
2576 var.selector = var.base >> 4;
2577 var.base = var.base & 0xffff0;
2578 var.limit = 0xffff;
2579 var.g = 0;
2580 var.db = 0;
2581 var.present = 1;
2582 var.s = 1;
2583 var.l = 0;
2584 var.unusable = 0;
2585 var.type = 0x3;
2586 var.avl = 0;
2587 if (save->base & 0xf)
2588 printk_once(KERN_WARNING "kvm: segment base is not "
2589 "paragraph aligned when entering "
2590 "protected mode (seg=%d)", seg);
2591 }
2592
2593 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05002594 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02002595 vmcs_write32(sf->limit, var.limit);
2596 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002597}
2598
2599static void enter_rmode(struct kvm_vcpu *vcpu)
2600{
2601 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002602 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002603 struct kvm_vmx *kvm_vmx = to_kvm_vmx(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002604
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002605 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
2606 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2607 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2608 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2609 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02002610 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2611 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002612
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002613 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002614
Gleb Natapov776e58e2011-03-13 12:34:27 +02002615 /*
2616 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01002617 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02002618 */
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002619 if (!kvm_vmx->tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02002620 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
2621 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02002622
Avi Kivity2fb92db2011-04-27 19:42:18 +03002623 vmx_segment_cache_clear(vmx);
2624
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002625 vmcs_writel(GUEST_TR_BASE, kvm_vmx->tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002626 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002627 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2628
2629 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002630 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002631
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002632 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002633
2634 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10002635 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002636 update_exception_bitmap(vcpu);
2637
Gleb Natapovd99e4152012-12-20 16:57:45 +02002638 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2639 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2640 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2641 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2642 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
2643 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002644
Eddie Dong8668a3c2007-10-10 14:26:45 +08002645 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002646}
2647
Sean Christopherson97b7ead2018-12-03 13:53:16 -08002648void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
Amit Shah401d10d2009-02-20 22:53:37 +05302649{
2650 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002651 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
2652
2653 if (!msr)
2654 return;
Amit Shah401d10d2009-02-20 22:53:37 +05302655
Avi Kivityf6801df2010-01-21 15:31:50 +02002656 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05302657 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002658 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302659 msr->data = efer;
2660 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002661 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302662
2663 msr->data = efer & ~EFER_LME;
2664 }
2665 setup_msrs(vmx);
2666}
2667
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002668#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002669
2670static void enter_lmode(struct kvm_vcpu *vcpu)
2671{
2672 u32 guest_tr_ar;
2673
Avi Kivity2fb92db2011-04-27 19:42:18 +03002674 vmx_segment_cache_clear(to_vmx(vcpu));
2675
Avi Kivity6aa8b732006-12-10 02:21:36 -08002676 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002677 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02002678 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
2679 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002680 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002681 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
2682 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002683 }
Avi Kivityda38f432010-07-06 11:30:49 +03002684 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002685}
2686
2687static void exit_lmode(struct kvm_vcpu *vcpu)
2688{
Gleb Natapov2961e8762013-11-25 15:37:13 +02002689 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03002690 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002691}
2692
2693#endif
2694
Junaid Shahidfaff8752018-06-29 13:10:05 -07002695static void vmx_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t addr)
2696{
2697 int vpid = to_vmx(vcpu)->vpid;
2698
2699 if (!vpid_sync_vcpu_addr(vpid, addr))
2700 vpid_sync_context(vpid);
2701
2702 /*
2703 * If VPIDs are not supported or enabled, then the above is a no-op.
2704 * But we don't really need a TLB flush in that case anyway, because
2705 * each VM entry/exit includes an implicit flush when VPID is 0.
2706 */
2707}
2708
Avi Kivitye8467fd2009-12-29 18:43:06 +02002709static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2710{
2711 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
2712
2713 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
2714 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
2715}
2716
Avi Kivityaff48ba2010-12-05 18:56:11 +02002717static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
2718{
Sean Christophersonb4d18512018-03-05 12:04:40 -08002719 if (enable_unrestricted_guest || (enable_ept && is_paging(vcpu)))
Avi Kivityaff48ba2010-12-05 18:56:11 +02002720 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2721 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
2722}
2723
Anthony Liguori25c4c272007-04-27 09:29:21 +03002724static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002725{
Avi Kivityfc78f512009-12-07 12:16:48 +02002726 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
2727
2728 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
2729 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08002730}
2731
Sheng Yang14394422008-04-28 12:24:45 +08002732static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
2733{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002734 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
2735
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002736 if (!test_bit(VCPU_EXREG_PDPTR,
2737 (unsigned long *)&vcpu->arch.regs_dirty))
2738 return;
2739
Sheng Yang14394422008-04-28 12:24:45 +08002740 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002741 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
2742 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
2743 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
2744 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08002745 }
2746}
2747
Sean Christopherson97b7ead2018-12-03 13:53:16 -08002748void ept_save_pdptrs(struct kvm_vcpu *vcpu)
Avi Kivity8f5d5492009-05-31 18:41:29 +03002749{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002750 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
2751
Avi Kivity8f5d5492009-05-31 18:41:29 +03002752 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002753 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
2754 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
2755 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
2756 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002757 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002758
2759 __set_bit(VCPU_EXREG_PDPTR,
2760 (unsigned long *)&vcpu->arch.regs_avail);
2761 __set_bit(VCPU_EXREG_PDPTR,
2762 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002763}
2764
Sheng Yang14394422008-04-28 12:24:45 +08002765static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
2766 unsigned long cr0,
2767 struct kvm_vcpu *vcpu)
2768{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03002769 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
2770 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08002771 if (!(cr0 & X86_CR0_PG)) {
2772 /* From paging/starting to nonpaging */
2773 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08002774 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08002775 (CPU_BASED_CR3_LOAD_EXITING |
2776 CPU_BASED_CR3_STORE_EXITING));
2777 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002778 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002779 } else if (!is_paging(vcpu)) {
2780 /* From nonpaging to paging */
2781 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08002782 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08002783 ~(CPU_BASED_CR3_LOAD_EXITING |
2784 CPU_BASED_CR3_STORE_EXITING));
2785 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002786 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002787 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08002788
2789 if (!(cr0 & X86_CR0_WP))
2790 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08002791}
2792
Sean Christopherson97b7ead2018-12-03 13:53:16 -08002793void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002794{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002795 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002796 unsigned long hw_cr0;
2797
Sean Christopherson3de63472018-07-13 08:42:30 -07002798 hw_cr0 = (cr0 & ~KVM_VM_CR0_ALWAYS_OFF);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002799 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02002800 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02002801 else {
Gleb Natapov50378782013-02-04 16:00:28 +02002802 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08002803
Gleb Natapov218e7632013-01-21 15:36:45 +02002804 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
2805 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002806
Gleb Natapov218e7632013-01-21 15:36:45 +02002807 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
2808 enter_rmode(vcpu);
2809 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002810
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002811#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002812 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002813 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002814 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10002815 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002816 exit_lmode(vcpu);
2817 }
2818#endif
2819
Sean Christophersonb4d18512018-03-05 12:04:40 -08002820 if (enable_ept && !enable_unrestricted_guest)
Sheng Yang14394422008-04-28 12:24:45 +08002821 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
2822
Avi Kivity6aa8b732006-12-10 02:21:36 -08002823 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08002824 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002825 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02002826
2827 /* depends on vcpu->arch.cr0 to be set to a new value */
2828 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002829}
2830
Yu Zhang855feb62017-08-24 20:27:55 +08002831static int get_ept_level(struct kvm_vcpu *vcpu)
2832{
2833 if (cpu_has_vmx_ept_5levels() && (cpuid_maxphyaddr(vcpu) > 48))
2834 return 5;
2835 return 4;
2836}
2837
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002838u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa)
Sheng Yang14394422008-04-28 12:24:45 +08002839{
Yu Zhang855feb62017-08-24 20:27:55 +08002840 u64 eptp = VMX_EPTP_MT_WB;
Sheng Yang14394422008-04-28 12:24:45 +08002841
Yu Zhang855feb62017-08-24 20:27:55 +08002842 eptp |= (get_ept_level(vcpu) == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08002843
Peter Feiner995f00a2017-06-30 17:26:32 -07002844 if (enable_ept_ad_bits &&
2845 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02002846 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08002847 eptp |= (root_hpa & PAGE_MASK);
2848
2849 return eptp;
2850}
2851
Sean Christopherson97b7ead2018-12-03 13:53:16 -08002852void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002853{
Tianyu Lan877ad952018-07-19 08:40:23 +00002854 struct kvm *kvm = vcpu->kvm;
Sheng Yang14394422008-04-28 12:24:45 +08002855 unsigned long guest_cr3;
2856 u64 eptp;
2857
2858 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02002859 if (enable_ept) {
Peter Feiner995f00a2017-06-30 17:26:32 -07002860 eptp = construct_eptp(vcpu, cr3);
Sheng Yang14394422008-04-28 12:24:45 +08002861 vmcs_write64(EPT_POINTER, eptp);
Tianyu Lan877ad952018-07-19 08:40:23 +00002862
2863 if (kvm_x86_ops->tlb_remote_flush) {
2864 spin_lock(&to_kvm_vmx(kvm)->ept_pointer_lock);
2865 to_vmx(vcpu)->ept_pointer = eptp;
2866 to_kvm_vmx(kvm)->ept_pointers_match
2867 = EPT_POINTERS_CHECK;
2868 spin_unlock(&to_kvm_vmx(kvm)->ept_pointer_lock);
2869 }
2870
Sean Christophersone90008d2018-03-05 12:04:37 -08002871 if (enable_unrestricted_guest || is_paging(vcpu) ||
2872 is_guest_mode(vcpu))
Jan Kiszka59ab5a82013-08-08 16:26:29 +02002873 guest_cr3 = kvm_read_cr3(vcpu);
2874 else
Tianyu Lan877ad952018-07-19 08:40:23 +00002875 guest_cr3 = to_kvm_vmx(kvm)->ept_identity_map_addr;
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02002876 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08002877 }
2878
Sheng Yang14394422008-04-28 12:24:45 +08002879 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002880}
2881
Sean Christopherson97b7ead2018-12-03 13:53:16 -08002882int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002883{
Ben Serebrin085e68e2015-04-16 11:58:05 -07002884 /*
2885 * Pass through host's Machine Check Enable value to hw_cr4, which
2886 * is in force while we are in guest mode. Do not let guests control
2887 * this bit, even if host CR4.MCE == 0.
2888 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08002889 unsigned long hw_cr4;
2890
2891 hw_cr4 = (cr4_read_shadow() & X86_CR4_MCE) | (cr4 & ~X86_CR4_MCE);
2892 if (enable_unrestricted_guest)
2893 hw_cr4 |= KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST;
2894 else if (to_vmx(vcpu)->rmode.vm86_active)
2895 hw_cr4 |= KVM_RMODE_VM_CR4_ALWAYS_ON;
2896 else
2897 hw_cr4 |= KVM_PMODE_VM_CR4_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08002898
Sean Christopherson64f7a112018-04-30 10:01:06 -07002899 if (!boot_cpu_has(X86_FEATURE_UMIP) && vmx_umip_emulated()) {
2900 if (cr4 & X86_CR4_UMIP) {
2901 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
Paolo Bonzini0367f202016-07-12 10:44:55 +02002902 SECONDARY_EXEC_DESC);
Sean Christopherson64f7a112018-04-30 10:01:06 -07002903 hw_cr4 &= ~X86_CR4_UMIP;
2904 } else if (!is_guest_mode(vcpu) ||
2905 !nested_cpu_has2(get_vmcs12(vcpu), SECONDARY_EXEC_DESC))
2906 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
2907 SECONDARY_EXEC_DESC);
2908 }
Paolo Bonzini0367f202016-07-12 10:44:55 +02002909
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002910 if (cr4 & X86_CR4_VMXE) {
2911 /*
2912 * To use VMXON (and later other VMX instructions), a guest
2913 * must first be able to turn on cr4.VMXE (see handle_vmon()).
2914 * So basically the check on whether to allow nested VMX
Paolo Bonzini5bea5122018-09-18 15:19:17 +02002915 * is here. We operate under the default treatment of SMM,
2916 * so VMX cannot be enabled under SMM.
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002917 */
Paolo Bonzini5bea5122018-09-18 15:19:17 +02002918 if (!nested_vmx_allowed(vcpu) || is_smm(vcpu))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002919 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01002920 }
David Matlack38991522016-11-29 18:14:08 -08002921
2922 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002923 return 1;
2924
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002925 vcpu->arch.cr4 = cr4;
Sheng Yang14394422008-04-28 12:24:45 +08002926
Sean Christopherson5dc1f042018-03-05 12:04:39 -08002927 if (!enable_unrestricted_guest) {
2928 if (enable_ept) {
2929 if (!is_paging(vcpu)) {
2930 hw_cr4 &= ~X86_CR4_PAE;
2931 hw_cr4 |= X86_CR4_PSE;
2932 } else if (!(cr4 & X86_CR4_PAE)) {
2933 hw_cr4 &= ~X86_CR4_PAE;
2934 }
2935 }
2936
Radim Krčmář656ec4a2015-11-02 22:20:00 +01002937 /*
Huaitong Handdba2622016-03-22 16:51:15 +08002938 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
2939 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
2940 * to be manually disabled when guest switches to non-paging
2941 * mode.
2942 *
2943 * If !enable_unrestricted_guest, the CPU is always running
2944 * with CR0.PG=1 and CR4 needs to be modified.
2945 * If enable_unrestricted_guest, the CPU automatically
2946 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01002947 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08002948 if (!is_paging(vcpu))
2949 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
2950 }
Radim Krčmář656ec4a2015-11-02 22:20:00 +01002951
Sheng Yang14394422008-04-28 12:24:45 +08002952 vmcs_writel(CR4_READ_SHADOW, cr4);
2953 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002954 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002955}
2956
Sean Christopherson97b7ead2018-12-03 13:53:16 -08002957void vmx_get_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002958{
Avi Kivitya9179492011-01-03 14:28:52 +02002959 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002960 u32 ar;
2961
Gleb Natapovc6ad11532012-12-12 19:10:51 +02002962 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002963 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02002964 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03002965 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002966 return;
Avi Kivity1390a282012-08-21 17:07:08 +03002967 var->base = vmx_read_guest_seg_base(vmx, seg);
2968 var->selector = vmx_read_guest_seg_selector(vmx, seg);
2969 return;
Avi Kivitya9179492011-01-03 14:28:52 +02002970 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03002971 var->base = vmx_read_guest_seg_base(vmx, seg);
2972 var->limit = vmx_read_guest_seg_limit(vmx, seg);
2973 var->selector = vmx_read_guest_seg_selector(vmx, seg);
2974 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03002975 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002976 var->type = ar & 15;
2977 var->s = (ar >> 4) & 1;
2978 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03002979 /*
2980 * Some userspaces do not preserve unusable property. Since usable
2981 * segment has to be present according to VMX spec we can use present
2982 * property to amend userspace bug by making unusable segment always
2983 * nonpresent. vmx_segment_access_rights() already marks nonpresent
2984 * segment as unusable.
2985 */
2986 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002987 var->avl = (ar >> 12) & 1;
2988 var->l = (ar >> 13) & 1;
2989 var->db = (ar >> 14) & 1;
2990 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002991}
2992
Avi Kivitya9179492011-01-03 14:28:52 +02002993static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2994{
Avi Kivitya9179492011-01-03 14:28:52 +02002995 struct kvm_segment s;
2996
2997 if (to_vmx(vcpu)->rmode.vm86_active) {
2998 vmx_get_segment(vcpu, &s, seg);
2999 return s.base;
3000 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003001 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003002}
3003
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003004int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02003005{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003006 struct vcpu_vmx *vmx = to_vmx(vcpu);
3007
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003008 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02003009 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003010 else {
3011 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003012 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003013 }
Avi Kivity69c73022011-03-07 15:26:44 +02003014}
3015
Avi Kivity653e3102007-05-07 10:55:37 +03003016static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003017{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003018 u32 ar;
3019
Avi Kivityf0495f92012-06-07 17:06:10 +03003020 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003021 ar = 1 << 16;
3022 else {
3023 ar = var->type & 15;
3024 ar |= (var->s & 1) << 4;
3025 ar |= (var->dpl & 3) << 5;
3026 ar |= (var->present & 1) << 7;
3027 ar |= (var->avl & 1) << 12;
3028 ar |= (var->l & 1) << 13;
3029 ar |= (var->db & 1) << 14;
3030 ar |= (var->g & 1) << 15;
3031 }
Avi Kivity653e3102007-05-07 10:55:37 +03003032
3033 return ar;
3034}
3035
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003036void vmx_set_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity653e3102007-05-07 10:55:37 +03003037{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003038 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02003039 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03003040
Avi Kivity2fb92db2011-04-27 19:42:18 +03003041 vmx_segment_cache_clear(vmx);
3042
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003043 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
3044 vmx->rmode.segs[seg] = *var;
3045 if (seg == VCPU_SREG_TR)
3046 vmcs_write16(sf->selector, var->selector);
3047 else if (var->s)
3048 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02003049 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03003050 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003051
Avi Kivity653e3102007-05-07 10:55:37 +03003052 vmcs_writel(sf->base, var->base);
3053 vmcs_write32(sf->limit, var->limit);
3054 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003055
3056 /*
3057 * Fix the "Accessed" bit in AR field of segment registers for older
3058 * qemu binaries.
3059 * IA32 arch specifies that at the time of processor reset the
3060 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08003061 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003062 * state vmexit when "unrestricted guest" mode is turned on.
3063 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3064 * tree. Newer qemu binaries with that qemu fix would not need this
3065 * kvm hack.
3066 */
3067 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02003068 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003069
Gleb Natapovf924d662012-12-12 19:10:55 +02003070 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02003071
3072out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01003073 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003074}
3075
Avi Kivity6aa8b732006-12-10 02:21:36 -08003076static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
3077{
Avi Kivity2fb92db2011-04-27 19:42:18 +03003078 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003079
3080 *db = (ar >> 14) & 1;
3081 *l = (ar >> 13) & 1;
3082}
3083
Gleb Natapov89a27f42010-02-16 10:51:48 +02003084static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003085{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003086 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
3087 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003088}
3089
Gleb Natapov89a27f42010-02-16 10:51:48 +02003090static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003091{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003092 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
3093 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003094}
3095
Gleb Natapov89a27f42010-02-16 10:51:48 +02003096static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003097{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003098 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
3099 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003100}
3101
Gleb Natapov89a27f42010-02-16 10:51:48 +02003102static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003103{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003104 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
3105 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003106}
3107
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003108static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
3109{
3110 struct kvm_segment var;
3111 u32 ar;
3112
3113 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02003114 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02003115 if (seg == VCPU_SREG_CS)
3116 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003117 ar = vmx_segment_access_rights(&var);
3118
3119 if (var.base != (var.selector << 4))
3120 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02003121 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003122 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02003123 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003124 return false;
3125
3126 return true;
3127}
3128
3129static bool code_segment_valid(struct kvm_vcpu *vcpu)
3130{
3131 struct kvm_segment cs;
3132 unsigned int cs_rpl;
3133
3134 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003135 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003136
Avi Kivity1872a3f2009-01-04 23:26:52 +02003137 if (cs.unusable)
3138 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003139 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003140 return false;
3141 if (!cs.s)
3142 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003143 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003144 if (cs.dpl > cs_rpl)
3145 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003146 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003147 if (cs.dpl != cs_rpl)
3148 return false;
3149 }
3150 if (!cs.present)
3151 return false;
3152
3153 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
3154 return true;
3155}
3156
3157static bool stack_segment_valid(struct kvm_vcpu *vcpu)
3158{
3159 struct kvm_segment ss;
3160 unsigned int ss_rpl;
3161
3162 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003163 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003164
Avi Kivity1872a3f2009-01-04 23:26:52 +02003165 if (ss.unusable)
3166 return true;
3167 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003168 return false;
3169 if (!ss.s)
3170 return false;
3171 if (ss.dpl != ss_rpl) /* DPL != RPL */
3172 return false;
3173 if (!ss.present)
3174 return false;
3175
3176 return true;
3177}
3178
3179static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
3180{
3181 struct kvm_segment var;
3182 unsigned int rpl;
3183
3184 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03003185 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003186
Avi Kivity1872a3f2009-01-04 23:26:52 +02003187 if (var.unusable)
3188 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003189 if (!var.s)
3190 return false;
3191 if (!var.present)
3192 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003193 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003194 if (var.dpl < rpl) /* DPL < RPL */
3195 return false;
3196 }
3197
3198 /* TODO: Add other members to kvm_segment_field to allow checking for other access
3199 * rights flags
3200 */
3201 return true;
3202}
3203
3204static bool tr_valid(struct kvm_vcpu *vcpu)
3205{
3206 struct kvm_segment tr;
3207
3208 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
3209
Avi Kivity1872a3f2009-01-04 23:26:52 +02003210 if (tr.unusable)
3211 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03003212 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003213 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003214 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003215 return false;
3216 if (!tr.present)
3217 return false;
3218
3219 return true;
3220}
3221
3222static bool ldtr_valid(struct kvm_vcpu *vcpu)
3223{
3224 struct kvm_segment ldtr;
3225
3226 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
3227
Avi Kivity1872a3f2009-01-04 23:26:52 +02003228 if (ldtr.unusable)
3229 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03003230 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003231 return false;
3232 if (ldtr.type != 2)
3233 return false;
3234 if (!ldtr.present)
3235 return false;
3236
3237 return true;
3238}
3239
3240static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
3241{
3242 struct kvm_segment cs, ss;
3243
3244 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3245 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3246
Nadav Amitb32a9912015-03-29 16:33:04 +03003247 return ((cs.selector & SEGMENT_RPL_MASK) ==
3248 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003249}
3250
3251/*
3252 * Check if guest state is valid. Returns true if valid, false if
3253 * not.
3254 * We assume that registers are always usable
3255 */
3256static bool guest_state_valid(struct kvm_vcpu *vcpu)
3257{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02003258 if (enable_unrestricted_guest)
3259 return true;
3260
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003261 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03003262 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003263 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
3264 return false;
3265 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
3266 return false;
3267 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
3268 return false;
3269 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
3270 return false;
3271 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
3272 return false;
3273 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
3274 return false;
3275 } else {
3276 /* protected mode guest state checks */
3277 if (!cs_ss_rpl_check(vcpu))
3278 return false;
3279 if (!code_segment_valid(vcpu))
3280 return false;
3281 if (!stack_segment_valid(vcpu))
3282 return false;
3283 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
3284 return false;
3285 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
3286 return false;
3287 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
3288 return false;
3289 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
3290 return false;
3291 if (!tr_valid(vcpu))
3292 return false;
3293 if (!ldtr_valid(vcpu))
3294 return false;
3295 }
3296 /* TODO:
3297 * - Add checks on RIP
3298 * - Add checks on RFLAGS
3299 */
3300
3301 return true;
3302}
3303
Mike Dayd77c26f2007-10-08 09:02:08 -04003304static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003305{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003306 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02003307 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02003308 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003309
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003310 idx = srcu_read_lock(&kvm->srcu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003311 fn = to_kvm_vmx(kvm)->tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02003312 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3313 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003314 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003315 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08003316 r = kvm_write_guest_page(kvm, fn++, &data,
3317 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02003318 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003319 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003320 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
3321 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003322 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003323 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3324 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003325 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003326 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003327 r = kvm_write_guest_page(kvm, fn, &data,
3328 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
3329 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003330out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003331 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02003332 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003333}
3334
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003335static int init_rmode_identity_map(struct kvm *kvm)
3336{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003337 struct kvm_vmx *kvm_vmx = to_kvm_vmx(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08003338 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08003339 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003340 u32 tmp;
3341
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003342 /* Protect kvm_vmx->ept_identity_pagetable_done. */
Tang Chena255d472014-09-16 18:41:58 +08003343 mutex_lock(&kvm->slots_lock);
3344
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003345 if (likely(kvm_vmx->ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08003346 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08003347
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003348 if (!kvm_vmx->ept_identity_map_addr)
3349 kvm_vmx->ept_identity_map_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
3350 identity_map_pfn = kvm_vmx->ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08003351
David Hildenbrandd8a6e362017-08-24 20:51:34 +02003352 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003353 kvm_vmx->ept_identity_map_addr, PAGE_SIZE);
Tang Chenf51770e2014-09-16 18:41:59 +08003354 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08003355 goto out2;
3356
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003357 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003358 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
3359 if (r < 0)
3360 goto out;
3361 /* Set up identity-mapping pagetable for EPT in real mode */
3362 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
3363 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
3364 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
3365 r = kvm_write_guest_page(kvm, identity_map_pfn,
3366 &tmp, i * sizeof(tmp), sizeof(tmp));
3367 if (r < 0)
3368 goto out;
3369 }
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003370 kvm_vmx->ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08003371
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003372out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003373 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08003374
3375out2:
3376 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08003377 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003378}
3379
Avi Kivity6aa8b732006-12-10 02:21:36 -08003380static void seg_setup(int seg)
3381{
Mathias Krause772e0312012-08-30 01:30:19 +02003382 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003383 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003384
3385 vmcs_write16(sf->selector, 0);
3386 vmcs_writel(sf->base, 0);
3387 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02003388 ar = 0x93;
3389 if (seg == VCPU_SREG_CS)
3390 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003391
3392 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003393}
3394
Sheng Yangf78e0e22007-10-29 09:40:42 +08003395static int alloc_apic_access_page(struct kvm *kvm)
3396{
Xiao Guangrong44841412012-09-07 14:14:20 +08003397 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003398 int r = 0;
3399
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003400 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08003401 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003402 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02003403 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
3404 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003405 if (r)
3406 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02003407
Tang Chen73a6d942014-09-11 13:38:00 +08003408 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08003409 if (is_error_page(page)) {
3410 r = -EFAULT;
3411 goto out;
3412 }
3413
Tang Chenc24ae0d2014-09-24 15:57:58 +08003414 /*
3415 * Do not pin the page in memory, so that memory hot-unplug
3416 * is able to migrate it.
3417 */
3418 put_page(page);
3419 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003420out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003421 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003422 return r;
3423}
3424
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003425int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003426{
3427 int vpid;
3428
Avi Kivity919818a2009-03-23 18:01:29 +02003429 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08003430 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003431 spin_lock(&vmx_vpid_lock);
3432 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003433 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003434 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003435 else
3436 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003437 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003438 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003439}
3440
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003441void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003442{
Wanpeng Li991e7a02015-09-16 17:30:05 +08003443 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003444 return;
3445 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003446 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003447 spin_unlock(&vmx_vpid_lock);
3448}
3449
Yi Wang1e4329ee2018-11-08 11:22:21 +08003450static __always_inline void vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003451 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08003452{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003453 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08003454
3455 if (!cpu_has_vmx_msr_bitmap())
3456 return;
3457
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003458 if (static_branch_unlikely(&enable_evmcs))
3459 evmcs_touch_msr_bitmap();
3460
Sheng Yang25c5f222008-03-28 13:18:56 +08003461 /*
3462 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
3463 * have the write-low and read-high bitmap offsets the wrong way round.
3464 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
3465 */
Sheng Yang25c5f222008-03-28 13:18:56 +08003466 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08003467 if (type & MSR_TYPE_R)
3468 /* read-low */
3469 __clear_bit(msr, msr_bitmap + 0x000 / f);
3470
3471 if (type & MSR_TYPE_W)
3472 /* write-low */
3473 __clear_bit(msr, msr_bitmap + 0x800 / f);
3474
Sheng Yang25c5f222008-03-28 13:18:56 +08003475 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
3476 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08003477 if (type & MSR_TYPE_R)
3478 /* read-high */
3479 __clear_bit(msr, msr_bitmap + 0x400 / f);
3480
3481 if (type & MSR_TYPE_W)
3482 /* write-high */
3483 __clear_bit(msr, msr_bitmap + 0xc00 / f);
3484
3485 }
3486}
3487
Yi Wang1e4329ee2018-11-08 11:22:21 +08003488static __always_inline void vmx_enable_intercept_for_msr(unsigned long *msr_bitmap,
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003489 u32 msr, int type)
3490{
3491 int f = sizeof(unsigned long);
3492
3493 if (!cpu_has_vmx_msr_bitmap())
3494 return;
3495
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003496 if (static_branch_unlikely(&enable_evmcs))
3497 evmcs_touch_msr_bitmap();
3498
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003499 /*
3500 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
3501 * have the write-low and read-high bitmap offsets the wrong way round.
3502 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
3503 */
3504 if (msr <= 0x1fff) {
3505 if (type & MSR_TYPE_R)
3506 /* read-low */
3507 __set_bit(msr, msr_bitmap + 0x000 / f);
3508
3509 if (type & MSR_TYPE_W)
3510 /* write-low */
3511 __set_bit(msr, msr_bitmap + 0x800 / f);
3512
3513 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
3514 msr &= 0x1fff;
3515 if (type & MSR_TYPE_R)
3516 /* read-high */
3517 __set_bit(msr, msr_bitmap + 0x400 / f);
3518
3519 if (type & MSR_TYPE_W)
3520 /* write-high */
3521 __set_bit(msr, msr_bitmap + 0xc00 / f);
3522
3523 }
3524}
3525
Yi Wang1e4329ee2018-11-08 11:22:21 +08003526static __always_inline void vmx_set_intercept_for_msr(unsigned long *msr_bitmap,
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003527 u32 msr, int type, bool value)
3528{
3529 if (value)
3530 vmx_enable_intercept_for_msr(msr_bitmap, msr, type);
3531 else
3532 vmx_disable_intercept_for_msr(msr_bitmap, msr, type);
3533}
3534
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003535static u8 vmx_msr_bitmap_mode(struct kvm_vcpu *vcpu)
Avi Kivity58972972009-02-24 22:26:47 +02003536{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003537 u8 mode = 0;
3538
3539 if (cpu_has_secondary_exec_ctrls() &&
3540 (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) &
3541 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
3542 mode |= MSR_BITMAP_MODE_X2APIC;
3543 if (enable_apicv && kvm_vcpu_apicv_active(vcpu))
3544 mode |= MSR_BITMAP_MODE_X2APIC_APICV;
3545 }
3546
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003547 return mode;
Yang Zhang8d146952013-01-25 10:18:50 +08003548}
3549
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003550static void vmx_update_msr_bitmap_x2apic(unsigned long *msr_bitmap,
3551 u8 mode)
Yang Zhang8d146952013-01-25 10:18:50 +08003552{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003553 int msr;
3554
3555 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
3556 unsigned word = msr / BITS_PER_LONG;
3557 msr_bitmap[word] = (mode & MSR_BITMAP_MODE_X2APIC_APICV) ? 0 : ~0;
3558 msr_bitmap[word + (0x800 / sizeof(long))] = ~0;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08003559 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003560
3561 if (mode & MSR_BITMAP_MODE_X2APIC) {
3562 /*
3563 * TPR reads and writes can be virtualized even if virtual interrupt
3564 * delivery is not in use.
3565 */
3566 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_TASKPRI), MSR_TYPE_RW);
3567 if (mode & MSR_BITMAP_MODE_X2APIC_APICV) {
3568 vmx_enable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_TMCCT), MSR_TYPE_R);
3569 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_EOI), MSR_TYPE_W);
3570 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_SELF_IPI), MSR_TYPE_W);
3571 }
3572 }
3573}
3574
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003575void vmx_update_msr_bitmap(struct kvm_vcpu *vcpu)
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003576{
3577 struct vcpu_vmx *vmx = to_vmx(vcpu);
3578 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
3579 u8 mode = vmx_msr_bitmap_mode(vcpu);
3580 u8 changed = mode ^ vmx->msr_bitmap_mode;
3581
3582 if (!changed)
3583 return;
3584
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003585 if (changed & (MSR_BITMAP_MODE_X2APIC | MSR_BITMAP_MODE_X2APIC_APICV))
3586 vmx_update_msr_bitmap_x2apic(msr_bitmap, mode);
3587
3588 vmx->msr_bitmap_mode = mode;
Avi Kivity58972972009-02-24 22:26:47 +02003589}
3590
Chao Pengb08c2892018-10-24 16:05:15 +08003591void pt_update_intercept_for_msr(struct vcpu_vmx *vmx)
3592{
3593 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
3594 bool flag = !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
3595 u32 i;
3596
3597 vmx_set_intercept_for_msr(msr_bitmap, MSR_IA32_RTIT_STATUS,
3598 MSR_TYPE_RW, flag);
3599 vmx_set_intercept_for_msr(msr_bitmap, MSR_IA32_RTIT_OUTPUT_BASE,
3600 MSR_TYPE_RW, flag);
3601 vmx_set_intercept_for_msr(msr_bitmap, MSR_IA32_RTIT_OUTPUT_MASK,
3602 MSR_TYPE_RW, flag);
3603 vmx_set_intercept_for_msr(msr_bitmap, MSR_IA32_RTIT_CR3_MATCH,
3604 MSR_TYPE_RW, flag);
3605 for (i = 0; i < vmx->pt_desc.addr_range; i++) {
3606 vmx_set_intercept_for_msr(msr_bitmap,
3607 MSR_IA32_RTIT_ADDR0_A + i * 2, MSR_TYPE_RW, flag);
3608 vmx_set_intercept_for_msr(msr_bitmap,
3609 MSR_IA32_RTIT_ADDR0_B + i * 2, MSR_TYPE_RW, flag);
3610 }
3611}
3612
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05003613static bool vmx_get_enable_apicv(struct kvm_vcpu *vcpu)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02003614{
Andrey Smetanind62caab2015-11-10 15:36:33 +03003615 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02003616}
3617
Liran Alone6c67d82018-09-04 10:56:52 +03003618static bool vmx_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
3619{
3620 struct vcpu_vmx *vmx = to_vmx(vcpu);
3621 void *vapic_page;
3622 u32 vppr;
3623 int rvi;
3624
3625 if (WARN_ON_ONCE(!is_guest_mode(vcpu)) ||
3626 !nested_cpu_has_vid(get_vmcs12(vcpu)) ||
3627 WARN_ON_ONCE(!vmx->nested.virtual_apic_page))
3628 return false;
3629
Paolo Bonzini7e712682018-10-03 13:44:26 +02003630 rvi = vmx_get_rvi();
Liran Alone6c67d82018-09-04 10:56:52 +03003631
3632 vapic_page = kmap(vmx->nested.virtual_apic_page);
3633 vppr = *((u32 *)(vapic_page + APIC_PROCPRI));
3634 kunmap(vmx->nested.virtual_apic_page);
3635
3636 return ((rvi & 0xf0) > (vppr & 0xf0));
3637}
3638
Wincy Van06a55242017-04-28 13:13:59 +08003639static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
3640 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003641{
3642#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08003643 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
3644
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003645 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08003646 /*
Haozhong Zhang5753743f2017-09-18 09:56:50 +08003647 * The vector of interrupt to be delivered to vcpu had
3648 * been set in PIR before this function.
Feng Wu28b835d2015-09-18 22:29:54 +08003649 *
Haozhong Zhang5753743f2017-09-18 09:56:50 +08003650 * Following cases will be reached in this block, and
3651 * we always send a notification event in all cases as
3652 * explained below.
3653 *
3654 * Case 1: vcpu keeps in non-root mode. Sending a
3655 * notification event posts the interrupt to vcpu.
3656 *
3657 * Case 2: vcpu exits to root mode and is still
3658 * runnable. PIR will be synced to vIRR before the
3659 * next vcpu entry. Sending a notification event in
3660 * this case has no effect, as vcpu is not in root
3661 * mode.
3662 *
3663 * Case 3: vcpu exits to root mode and is blocked.
3664 * vcpu_block() has already synced PIR to vIRR and
3665 * never blocks vcpu if vIRR is not cleared. Therefore,
3666 * a blocked vcpu here does not wait for any requested
3667 * interrupts in PIR, and sending a notification event
3668 * which has no effect is safe here.
Feng Wu28b835d2015-09-18 22:29:54 +08003669 */
Feng Wu28b835d2015-09-18 22:29:54 +08003670
Wincy Van06a55242017-04-28 13:13:59 +08003671 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003672 return true;
3673 }
3674#endif
3675 return false;
3676}
3677
Wincy Van705699a2015-02-03 23:58:17 +08003678static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
3679 int vector)
3680{
3681 struct vcpu_vmx *vmx = to_vmx(vcpu);
3682
3683 if (is_guest_mode(vcpu) &&
3684 vector == vmx->nested.posted_intr_nv) {
Wincy Van705699a2015-02-03 23:58:17 +08003685 /*
3686 * If a posted intr is not recognized by hardware,
3687 * we will accomplish it in the next vmentry.
3688 */
3689 vmx->nested.pi_pending = true;
3690 kvm_make_request(KVM_REQ_EVENT, vcpu);
Liran Alon6b697712017-11-09 20:27:20 +02003691 /* the PIR and ON have been set by L1. */
3692 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, true))
3693 kvm_vcpu_kick(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08003694 return 0;
3695 }
3696 return -1;
3697}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003698/*
Yang Zhanga20ed542013-04-11 19:25:15 +08003699 * Send interrupt to vcpu via posted interrupt way.
3700 * 1. If target vcpu is running(non-root mode), send posted interrupt
3701 * notification to vcpu and hardware will sync PIR to vIRR atomically.
3702 * 2. If target vcpu isn't running(root mode), kick it to pick up the
3703 * interrupt from PIR in next vmentry.
3704 */
3705static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
3706{
3707 struct vcpu_vmx *vmx = to_vmx(vcpu);
3708 int r;
3709
Wincy Van705699a2015-02-03 23:58:17 +08003710 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
3711 if (!r)
3712 return;
3713
Yang Zhanga20ed542013-04-11 19:25:15 +08003714 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
3715 return;
3716
Paolo Bonzinib95234c2016-12-19 13:57:33 +01003717 /* If a previous notification has sent the IPI, nothing to do. */
3718 if (pi_test_and_set_on(&vmx->pi_desc))
3719 return;
3720
Wincy Van06a55242017-04-28 13:13:59 +08003721 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08003722 kvm_vcpu_kick(vcpu);
3723}
3724
Avi Kivity6aa8b732006-12-10 02:21:36 -08003725/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003726 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
3727 * will not change in the lifetime of the guest.
3728 * Note that host-state that does change is set elsewhere. E.g., host-state
3729 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
3730 */
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003731void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003732{
3733 u32 low32, high32;
3734 unsigned long tmpl;
3735 struct desc_ptr dt;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07003736 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003737
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07003738 cr0 = read_cr0();
3739 WARN_ON(cr0 & X86_CR0_TS);
3740 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07003741
3742 /*
3743 * Save the most likely value for this task's CR3 in the VMCS.
3744 * We can't use __get_current_cr3_fast() because we're not atomic.
3745 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07003746 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07003747 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
Sean Christophersond7ee0392018-07-23 12:32:47 -07003748 vmx->loaded_vmcs->host_state.cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003749
Andy Lutomirskid974baa2014-10-08 09:02:13 -07003750 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003751 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07003752 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07003753 vmx->loaded_vmcs->host_state.cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07003754
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003755 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03003756#ifdef CONFIG_X86_64
3757 /*
3758 * Load null selectors, so we can avoid reloading them in
Sean Christopherson6d6095b2018-07-23 12:32:44 -07003759 * vmx_prepare_switch_to_host(), in case userspace uses
3760 * the null selectors too (the expected case).
Avi Kivityb2da15a2012-05-13 19:53:24 +03003761 */
3762 vmcs_write16(HOST_DS_SELECTOR, 0);
3763 vmcs_write16(HOST_ES_SELECTOR, 0);
3764#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003765 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
3766 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03003767#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003768 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
3769 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
3770
Juergen Gross87930012017-09-04 12:25:27 +02003771 store_idt(&dt);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003772 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08003773 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003774
Sean Christopherson453eafb2018-12-20 12:25:17 -08003775 vmcs_writel(HOST_RIP, (unsigned long)vmx_vmexit); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003776
3777 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
3778 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
3779 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
3780 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
3781
3782 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
3783 rdmsr(MSR_IA32_CR_PAT, low32, high32);
3784 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
3785 }
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07003786
Sean Christophersonc73da3f2018-12-03 13:53:00 -08003787 if (cpu_has_load_ia32_efer())
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07003788 vmcs_write64(HOST_IA32_EFER, host_efer);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003789}
3790
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003791void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003792{
3793 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
3794 if (enable_ept)
3795 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03003796 if (is_guest_mode(&vmx->vcpu))
3797 vmx->vcpu.arch.cr4_guest_owned_bits &=
3798 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003799 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
3800}
3801
Yang Zhang01e439b2013-04-11 19:25:12 +08003802static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
3803{
3804 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
3805
Andrey Smetanind62caab2015-11-10 15:36:33 +03003806 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08003807 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01003808
3809 if (!enable_vnmi)
3810 pin_based_exec_ctrl &= ~PIN_BASED_VIRTUAL_NMIS;
3811
Yunhong Jiang64672c92016-06-13 14:19:59 -07003812 /* Enable the preemption timer dynamically */
3813 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003814 return pin_based_exec_ctrl;
3815}
3816
Andrey Smetanind62caab2015-11-10 15:36:33 +03003817static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
3818{
3819 struct vcpu_vmx *vmx = to_vmx(vcpu);
3820
3821 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03003822 if (cpu_has_secondary_exec_ctrls()) {
3823 if (kvm_vcpu_apicv_active(vcpu))
3824 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
3825 SECONDARY_EXEC_APIC_REGISTER_VIRT |
3826 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
3827 else
3828 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
3829 SECONDARY_EXEC_APIC_REGISTER_VIRT |
3830 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
3831 }
3832
3833 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003834 vmx_update_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03003835}
3836
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08003837u32 vmx_exec_control(struct vcpu_vmx *vmx)
3838{
3839 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
3840
3841 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
3842 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
3843
3844 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
3845 exec_control &= ~CPU_BASED_TPR_SHADOW;
3846#ifdef CONFIG_X86_64
3847 exec_control |= CPU_BASED_CR8_STORE_EXITING |
3848 CPU_BASED_CR8_LOAD_EXITING;
3849#endif
3850 }
3851 if (!enable_ept)
3852 exec_control |= CPU_BASED_CR3_STORE_EXITING |
3853 CPU_BASED_CR3_LOAD_EXITING |
3854 CPU_BASED_INVLPG_EXITING;
3855 if (kvm_mwait_in_guest(vmx->vcpu.kvm))
3856 exec_control &= ~(CPU_BASED_MWAIT_EXITING |
3857 CPU_BASED_MONITOR_EXITING);
3858 if (kvm_hlt_in_guest(vmx->vcpu.kvm))
3859 exec_control &= ~CPU_BASED_HLT_EXITING;
3860 return exec_control;
3861}
3862
3863
Paolo Bonzini80154d72017-08-24 13:55:35 +02003864static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003865{
Paolo Bonzini80154d72017-08-24 13:55:35 +02003866 struct kvm_vcpu *vcpu = &vmx->vcpu;
3867
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003868 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini0367f202016-07-12 10:44:55 +02003869
Chao Pengf99e3da2018-10-24 16:05:10 +08003870 if (pt_mode == PT_MODE_SYSTEM)
3871 exec_control &= ~(SECONDARY_EXEC_PT_USE_GPA | SECONDARY_EXEC_PT_CONCEAL_VMX);
Paolo Bonzini80154d72017-08-24 13:55:35 +02003872 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003873 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
3874 if (vmx->vpid == 0)
3875 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
3876 if (!enable_ept) {
3877 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
3878 enable_unrestricted_guest = 0;
3879 }
3880 if (!enable_unrestricted_guest)
3881 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Wanpeng Lib31c1142018-03-12 04:53:04 -07003882 if (kvm_pause_in_guest(vmx->vcpu.kvm))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003883 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02003884 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08003885 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
3886 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08003887 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Paolo Bonzini0367f202016-07-12 10:44:55 +02003888
3889 /* SECONDARY_EXEC_DESC is enabled/disabled on writes to CR4.UMIP,
3890 * in vmx_set_cr4. */
3891 exec_control &= ~SECONDARY_EXEC_DESC;
3892
Abel Gordonabc4fc52013-04-18 14:35:25 +03003893 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
3894 (handle_vmptrld).
3895 We can NOT enable shadow_vmcs here because we don't have yet
3896 a current VMCS12
3897 */
3898 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08003899
3900 if (!enable_pml)
3901 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08003902
Paolo Bonzini3db13482017-08-24 14:48:03 +02003903 if (vmx_xsaves_supported()) {
3904 /* Exposing XSAVES only when XSAVE is exposed */
3905 bool xsaves_enabled =
3906 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
3907 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
3908
3909 if (!xsaves_enabled)
3910 exec_control &= ~SECONDARY_EXEC_XSAVES;
3911
3912 if (nested) {
3913 if (xsaves_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003914 vmx->nested.msrs.secondary_ctls_high |=
Paolo Bonzini3db13482017-08-24 14:48:03 +02003915 SECONDARY_EXEC_XSAVES;
3916 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003917 vmx->nested.msrs.secondary_ctls_high &=
Paolo Bonzini3db13482017-08-24 14:48:03 +02003918 ~SECONDARY_EXEC_XSAVES;
3919 }
3920 }
3921
Paolo Bonzini80154d72017-08-24 13:55:35 +02003922 if (vmx_rdtscp_supported()) {
3923 bool rdtscp_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP);
3924 if (!rdtscp_enabled)
3925 exec_control &= ~SECONDARY_EXEC_RDTSCP;
3926
3927 if (nested) {
3928 if (rdtscp_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003929 vmx->nested.msrs.secondary_ctls_high |=
Paolo Bonzini80154d72017-08-24 13:55:35 +02003930 SECONDARY_EXEC_RDTSCP;
3931 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003932 vmx->nested.msrs.secondary_ctls_high &=
Paolo Bonzini80154d72017-08-24 13:55:35 +02003933 ~SECONDARY_EXEC_RDTSCP;
3934 }
3935 }
3936
3937 if (vmx_invpcid_supported()) {
3938 /* Exposing INVPCID only when PCID is exposed */
3939 bool invpcid_enabled =
3940 guest_cpuid_has(vcpu, X86_FEATURE_INVPCID) &&
3941 guest_cpuid_has(vcpu, X86_FEATURE_PCID);
3942
3943 if (!invpcid_enabled) {
3944 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
3945 guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID);
3946 }
3947
3948 if (nested) {
3949 if (invpcid_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003950 vmx->nested.msrs.secondary_ctls_high |=
Paolo Bonzini80154d72017-08-24 13:55:35 +02003951 SECONDARY_EXEC_ENABLE_INVPCID;
3952 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003953 vmx->nested.msrs.secondary_ctls_high &=
Paolo Bonzini80154d72017-08-24 13:55:35 +02003954 ~SECONDARY_EXEC_ENABLE_INVPCID;
3955 }
3956 }
3957
Jim Mattson45ec3682017-08-23 16:32:04 -07003958 if (vmx_rdrand_supported()) {
3959 bool rdrand_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDRAND);
3960 if (rdrand_enabled)
David Hildenbrand736fdf72017-08-24 20:51:37 +02003961 exec_control &= ~SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07003962
3963 if (nested) {
3964 if (rdrand_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003965 vmx->nested.msrs.secondary_ctls_high |=
David Hildenbrand736fdf72017-08-24 20:51:37 +02003966 SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07003967 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003968 vmx->nested.msrs.secondary_ctls_high &=
David Hildenbrand736fdf72017-08-24 20:51:37 +02003969 ~SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07003970 }
3971 }
3972
Jim Mattson75f4fc82017-08-23 16:32:03 -07003973 if (vmx_rdseed_supported()) {
3974 bool rdseed_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDSEED);
3975 if (rdseed_enabled)
David Hildenbrand736fdf72017-08-24 20:51:37 +02003976 exec_control &= ~SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07003977
3978 if (nested) {
3979 if (rdseed_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003980 vmx->nested.msrs.secondary_ctls_high |=
David Hildenbrand736fdf72017-08-24 20:51:37 +02003981 SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07003982 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003983 vmx->nested.msrs.secondary_ctls_high &=
David Hildenbrand736fdf72017-08-24 20:51:37 +02003984 ~SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07003985 }
3986 }
3987
Paolo Bonzini80154d72017-08-24 13:55:35 +02003988 vmx->secondary_exec_control = exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003989}
3990
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003991static void ept_set_mmio_spte_mask(void)
3992{
3993 /*
3994 * EPT Misconfigurations can be generated if the value of bits 2:0
3995 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003996 */
Peter Feinerdcdca5f2017-06-30 17:26:30 -07003997 kvm_mmu_set_mmio_spte_mask(VMX_EPT_RWX_MASK,
3998 VMX_EPT_MISCONFIG_WX_VALUE);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003999}
4000
Wanpeng Lif53cd632014-12-02 19:14:58 +08004001#define VMX_XSS_EXIT_BITMAP 0
Avi Kivity6aa8b732006-12-10 02:21:36 -08004002
Sean Christopherson944c3462018-12-03 13:53:09 -08004003/*
4004 * Sets up the vmcs for emulated real mode.
4005 */
4006static void vmx_vcpu_setup(struct vcpu_vmx *vmx)
4007{
4008 int i;
4009
4010 if (nested)
4011 nested_vmx_vcpu_setup();
4012
Sheng Yang25c5f222008-03-28 13:18:56 +08004013 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004014 vmcs_write64(MSR_BITMAP, __pa(vmx->vmcs01.msr_bitmap));
Sheng Yang25c5f222008-03-28 13:18:56 +08004015
Avi Kivity6aa8b732006-12-10 02:21:36 -08004016 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
4017
Avi Kivity6aa8b732006-12-10 02:21:36 -08004018 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08004019 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yunhong Jiang64672c92016-06-13 14:19:59 -07004020 vmx->hv_deadline_tsc = -1;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004021
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004022 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004023
Dan Williamsdfa169b2016-06-02 11:17:24 -07004024 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +02004025 vmx_compute_secondary_exec_control(vmx);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004026 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
Paolo Bonzini80154d72017-08-24 13:55:35 +02004027 vmx->secondary_exec_control);
Dan Williamsdfa169b2016-06-02 11:17:24 -07004028 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08004029
Andrey Smetanind62caab2015-11-10 15:36:33 +03004030 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08004031 vmcs_write64(EOI_EXIT_BITMAP0, 0);
4032 vmcs_write64(EOI_EXIT_BITMAP1, 0);
4033 vmcs_write64(EOI_EXIT_BITMAP2, 0);
4034 vmcs_write64(EOI_EXIT_BITMAP3, 0);
4035
4036 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08004037
Li RongQing0bcf2612015-12-03 13:29:34 +08004038 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08004039 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08004040 }
4041
Wanpeng Lib31c1142018-03-12 04:53:04 -07004042 if (!kvm_pause_in_guest(vmx->vcpu.kvm)) {
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004043 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02004044 vmx->ple_window = ple_window;
4045 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004046 }
4047
Xiao Guangrongc3707952011-07-12 03:28:04 +08004048 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
4049 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004050 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
4051
Avi Kivity9581d442010-10-19 16:46:55 +02004052 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
4053 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004054 vmx_set_constant_host_state(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004055 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
4056 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004057
Bandan Das2a499e42017-08-03 15:54:41 -04004058 if (cpu_has_vmx_vmfunc())
4059 vmcs_write64(VM_FUNCTION_CONTROL, 0);
4060
Eddie Dong2cc51562007-05-21 07:28:09 +03004061 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
4062 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004063 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host.val));
Eddie Dong2cc51562007-05-21 07:28:09 +03004064 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004065 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest.val));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004066
Radim Krčmář74545702015-04-27 15:11:25 +02004067 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
4068 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08004069
Paolo Bonzini03916db2014-07-24 14:21:57 +02004070 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004071 u32 index = vmx_msr_index[i];
4072 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004073 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004074
4075 if (rdmsr_safe(index, &data_low, &data_high) < 0)
4076 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08004077 if (wrmsr_safe(index, data_low, data_high) < 0)
4078 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03004079 vmx->guest_msrs[j].index = i;
4080 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02004081 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004082 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004083 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004084
Sean Christophersonc73da3f2018-12-03 13:53:00 -08004085 vm_exit_controls_init(vmx, vmx_vmexit_ctrl());
Avi Kivity6aa8b732006-12-10 02:21:36 -08004086
4087 /* 22.2.1, 20.8.1 */
Sean Christophersonc73da3f2018-12-03 13:53:00 -08004088 vm_entry_controls_init(vmx, vmx_vmentry_ctrl());
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004089
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004090 vmx->vcpu.arch.cr0_guest_owned_bits = X86_CR0_TS;
4091 vmcs_writel(CR0_GUEST_HOST_MASK, ~X86_CR0_TS);
4092
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004093 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004094
Wanpeng Lif53cd632014-12-02 19:14:58 +08004095 if (vmx_xsaves_supported())
4096 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
4097
Peter Feiner4e595162016-07-07 14:49:58 -07004098 if (enable_pml) {
Peter Feiner4e595162016-07-07 14:49:58 -07004099 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
4100 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
4101 }
Sean Christopherson0b665d32018-08-14 09:33:34 -07004102
4103 if (cpu_has_vmx_encls_vmexit())
4104 vmcs_write64(ENCLS_EXITING_BITMAP, -1ull);
Chao Peng2ef444f2018-10-24 16:05:12 +08004105
4106 if (pt_mode == PT_MODE_HOST_GUEST) {
4107 memset(&vmx->pt_desc, 0, sizeof(vmx->pt_desc));
4108 /* Bit[6~0] are forced to 1, writes are ignored. */
4109 vmx->pt_desc.guest.output_mask = 0x7F;
4110 vmcs_write64(GUEST_IA32_RTIT_CTL, 0);
4111 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004112}
4113
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004114static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004115{
4116 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01004117 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004118 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004119
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004120 vmx->rmode.vm86_active = 0;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004121 vmx->spec_ctrl = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004122
Wanpeng Li518e7b92018-02-28 14:03:31 +08004123 vcpu->arch.microcode_version = 0x100000000ULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004124 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004125 kvm_set_cr8(vcpu, 0);
4126
4127 if (!init_event) {
4128 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
4129 MSR_IA32_APICBASE_ENABLE;
4130 if (kvm_vcpu_is_reset_bsp(vcpu))
4131 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
4132 apic_base_msr.host_initiated = true;
4133 kvm_set_apic_base(vcpu, &apic_base_msr);
4134 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004135
Avi Kivity2fb92db2011-04-27 19:42:18 +03004136 vmx_segment_cache_clear(vmx);
4137
Avi Kivity5706be02008-08-20 15:07:31 +03004138 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01004139 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004140 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004141
4142 seg_setup(VCPU_SREG_DS);
4143 seg_setup(VCPU_SREG_ES);
4144 seg_setup(VCPU_SREG_FS);
4145 seg_setup(VCPU_SREG_GS);
4146 seg_setup(VCPU_SREG_SS);
4147
4148 vmcs_write16(GUEST_TR_SELECTOR, 0);
4149 vmcs_writel(GUEST_TR_BASE, 0);
4150 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
4151 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4152
4153 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
4154 vmcs_writel(GUEST_LDTR_BASE, 0);
4155 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
4156 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
4157
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004158 if (!init_event) {
4159 vmcs_write32(GUEST_SYSENTER_CS, 0);
4160 vmcs_writel(GUEST_SYSENTER_ESP, 0);
4161 vmcs_writel(GUEST_SYSENTER_EIP, 0);
4162 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
4163 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004164
Wanpeng Lic37c2872017-11-20 14:52:21 -08004165 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
Jan Kiszka66450a22013-03-13 12:42:34 +01004166 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004167
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004168 vmcs_writel(GUEST_GDTR_BASE, 0);
4169 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
4170
4171 vmcs_writel(GUEST_IDTR_BASE, 0);
4172 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
4173
Anthony Liguori443381a2010-12-06 10:53:38 -06004174 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004175 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004176 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Wanpeng Lia554d202017-10-11 05:10:19 -07004177 if (kvm_mpx_supported())
4178 vmcs_write64(GUEST_BNDCFGS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004179
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004180 setup_msrs(vmx);
4181
Avi Kivity6aa8b732006-12-10 02:21:36 -08004182 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
4183
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004184 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08004185 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004186 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08004187 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004188 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004189 vmcs_write32(TPR_THRESHOLD, 0);
4190 }
4191
Paolo Bonzinia73896c2014-11-02 07:54:30 +01004192 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004193
Sheng Yang2384d2b2008-01-17 15:14:33 +08004194 if (vmx->vpid != 0)
4195 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
4196
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004197 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004198 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06004199 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004200 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02004201 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004202
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004203 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004204
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004205 vpid_sync_context(vmx->vpid);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004206 if (init_event)
4207 vmx_clear_hlt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004208}
4209
Jan Kiszkac9a79532014-03-07 20:03:15 +01004210static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004211{
Paolo Bonzini47c01522016-12-19 11:44:07 +01004212 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
4213 CPU_BASED_VIRTUAL_INTR_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004214}
4215
Jan Kiszkac9a79532014-03-07 20:03:15 +01004216static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004217{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004218 if (!enable_vnmi ||
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004219 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jan Kiszkac9a79532014-03-07 20:03:15 +01004220 enable_irq_window(vcpu);
4221 return;
4222 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02004223
Paolo Bonzini47c01522016-12-19 11:44:07 +01004224 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
4225 CPU_BASED_VIRTUAL_NMI_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004226}
4227
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004228static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03004229{
Avi Kivity9c8cba32007-11-22 11:42:59 +02004230 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004231 uint32_t intr;
4232 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02004233
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004234 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004235
Avi Kivityfa89a812008-09-01 15:57:51 +03004236 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004237 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05004238 int inc_eip = 0;
4239 if (vcpu->arch.interrupt.soft)
4240 inc_eip = vcpu->arch.event_exit_inst_len;
4241 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02004242 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03004243 return;
4244 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004245 intr = irq | INTR_INFO_VALID_MASK;
4246 if (vcpu->arch.interrupt.soft) {
4247 intr |= INTR_TYPE_SOFT_INTR;
4248 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
4249 vmx->vcpu.arch.event_exit_inst_len);
4250 } else
4251 intr |= INTR_TYPE_EXT_INTR;
4252 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004253
4254 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03004255}
4256
Sheng Yangf08864b2008-05-15 18:23:25 +08004257static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
4258{
Jan Kiszka66a5a342008-09-26 09:30:51 +02004259 struct vcpu_vmx *vmx = to_vmx(vcpu);
4260
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004261 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004262 /*
4263 * Tracking the NMI-blocked state in software is built upon
4264 * finding the next open IRQ window. This, in turn, depends on
4265 * well-behaving guests: They have to keep IRQs disabled at
4266 * least as long as the NMI handler runs. Otherwise we may
4267 * cause NMI nesting, maybe breaking the guest. But as this is
4268 * highly unlikely, we can live with the residual risk.
4269 */
4270 vmx->loaded_vmcs->soft_vnmi_blocked = 1;
4271 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4272 }
4273
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004274 ++vcpu->stat.nmi_injections;
4275 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004276
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004277 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05004278 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02004279 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02004280 return;
4281 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08004282
Sheng Yangf08864b2008-05-15 18:23:25 +08004283 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
4284 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004285
4286 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08004287}
4288
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004289bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004290{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004291 struct vcpu_vmx *vmx = to_vmx(vcpu);
4292 bool masked;
4293
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004294 if (!enable_vnmi)
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004295 return vmx->loaded_vmcs->soft_vnmi_blocked;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004296 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02004297 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004298 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
4299 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4300 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004301}
4302
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004303void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004304{
4305 struct vcpu_vmx *vmx = to_vmx(vcpu);
4306
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004307 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004308 if (vmx->loaded_vmcs->soft_vnmi_blocked != masked) {
4309 vmx->loaded_vmcs->soft_vnmi_blocked = masked;
4310 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4311 }
4312 } else {
4313 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4314 if (masked)
4315 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
4316 GUEST_INTR_STATE_NMI);
4317 else
4318 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
4319 GUEST_INTR_STATE_NMI);
4320 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004321}
4322
Jan Kiszka2505dc92013-04-14 12:12:47 +02004323static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
4324{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01004325 if (to_vmx(vcpu)->nested.nested_run_pending)
4326 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02004327
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004328 if (!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004329 to_vmx(vcpu)->loaded_vmcs->soft_vnmi_blocked)
4330 return 0;
4331
Jan Kiszka2505dc92013-04-14 12:12:47 +02004332 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4333 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
4334 | GUEST_INTR_STATE_NMI));
4335}
4336
Gleb Natapov78646122009-03-23 12:12:11 +02004337static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
4338{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01004339 return (!to_vmx(vcpu)->nested.nested_run_pending &&
4340 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03004341 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4342 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02004343}
4344
Izik Eiduscbc94022007-10-25 00:29:55 +02004345static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
4346{
4347 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02004348
Sean Christophersonf7eaeb02018-03-05 12:04:36 -08004349 if (enable_unrestricted_guest)
4350 return 0;
4351
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004352 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
4353 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02004354 if (ret)
4355 return ret;
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004356 to_kvm_vmx(kvm)->tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004357 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02004358}
4359
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004360static int vmx_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
4361{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004362 to_kvm_vmx(kvm)->ept_identity_map_addr = ident_addr;
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004363 return 0;
4364}
4365
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004366static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004367{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004368 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004369 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01004370 /*
4371 * Update instruction length as we may reinject the exception
4372 * from user space while in guest debugging mode.
4373 */
4374 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
4375 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004376 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004377 return false;
4378 /* fall through */
4379 case DB_VECTOR:
4380 if (vcpu->guest_debug &
4381 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
4382 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004383 /* fall through */
4384 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004385 case OF_VECTOR:
4386 case BR_VECTOR:
4387 case UD_VECTOR:
4388 case DF_VECTOR:
4389 case SS_VECTOR:
4390 case GP_VECTOR:
4391 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004392 return true;
4393 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004394 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004395 return false;
4396}
4397
4398static int handle_rmode_exception(struct kvm_vcpu *vcpu,
4399 int vec, u32 err_code)
4400{
4401 /*
4402 * Instruction with address size override prefix opcode 0x67
4403 * Cause the #SS fault with 0 error code in VM86 mode.
4404 */
4405 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
Sean Christopherson0ce97a22018-08-23 13:56:52 -07004406 if (kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE) {
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004407 if (vcpu->arch.halt_request) {
4408 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06004409 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004410 }
4411 return 1;
4412 }
4413 return 0;
4414 }
4415
4416 /*
4417 * Forward all other exceptions that are valid in real mode.
4418 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
4419 * the required debugging infrastructure rework.
4420 */
4421 kvm_queue_exception(vcpu, vec);
4422 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004423}
4424
Andi Kleena0861c02009-06-08 17:37:09 +08004425/*
4426 * Trigger machine check on the host. We assume all the MSRs are already set up
4427 * by the CPU and that we still run on the same CPU as the MCE occurred on.
4428 * We pass a fake environment to the machine check handler because we want
4429 * the guest to be always treated like user space, no matter what context
4430 * it used internally.
4431 */
4432static void kvm_machine_check(void)
4433{
4434#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
4435 struct pt_regs regs = {
4436 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
4437 .flags = X86_EFLAGS_IF,
4438 };
4439
4440 do_machine_check(&regs, 0);
4441#endif
4442}
4443
Avi Kivity851ba692009-08-24 11:10:17 +03004444static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08004445{
4446 /* already handled by vcpu_run */
4447 return 1;
4448}
4449
Avi Kivity851ba692009-08-24 11:10:17 +03004450static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004451{
Avi Kivity1155f762007-11-22 11:30:47 +02004452 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004453 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004454 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004455 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004456 u32 vect_info;
4457 enum emulation_result er;
4458
Avi Kivity1155f762007-11-22 11:30:47 +02004459 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02004460 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004461
Andi Kleena0861c02009-06-08 17:37:09 +08004462 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03004463 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08004464
Jim Mattsonef85b672016-12-12 11:01:37 -08004465 if (is_nmi(intr_info))
Avi Kivity1b6269d2007-10-09 12:12:19 +02004466 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03004467
Wanpeng Li082d06e2018-04-03 16:28:48 -07004468 if (is_invalid_opcode(intr_info))
4469 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004470
Avi Kivity6aa8b732006-12-10 02:21:36 -08004471 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06004472 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004473 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004474
Liran Alon9e869482018-03-12 13:12:51 +02004475 if (!vmx->rmode.vm86_active && is_gp_fault(intr_info)) {
4476 WARN_ON_ONCE(!enable_vmware_backdoor);
Sean Christopherson0ce97a22018-08-23 13:56:52 -07004477 er = kvm_emulate_instruction(vcpu,
Liran Alon9e869482018-03-12 13:12:51 +02004478 EMULTYPE_VMWARE | EMULTYPE_NO_UD_ON_FAIL);
4479 if (er == EMULATE_USER_EXIT)
4480 return 0;
4481 else if (er != EMULATE_DONE)
4482 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
4483 return 1;
4484 }
4485
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004486 /*
4487 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
4488 * MMIO, it is better to report an internal error.
4489 * See the comments in vmx_handle_exit.
4490 */
4491 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
4492 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
4493 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4494 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02004495 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004496 vcpu->run->internal.data[0] = vect_info;
4497 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02004498 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004499 return 0;
4500 }
4501
Avi Kivity6aa8b732006-12-10 02:21:36 -08004502 if (is_page_fault(intr_info)) {
4503 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07004504 /* EPT won't cause page fault directly */
4505 WARN_ON_ONCE(!vcpu->arch.apf.host_apf_reason && enable_ept);
Paolo Bonzinid0006532017-08-11 18:36:43 +02004506 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004507 }
4508
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004509 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004510
4511 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
4512 return handle_rmode_exception(vcpu, ex_no, error_code);
4513
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004514 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01004515 case AC_VECTOR:
4516 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
4517 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004518 case DB_VECTOR:
4519 dr6 = vmcs_readl(EXIT_QUALIFICATION);
4520 if (!(vcpu->guest_debug &
4521 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01004522 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03004523 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Linus Torvalds32d43cd2018-03-20 12:16:59 -07004524 if (is_icebp(intr_info))
Huw Daviesfd2a4452014-04-16 10:02:51 +01004525 skip_emulated_instruction(vcpu);
4526
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004527 kvm_queue_exception(vcpu, DB_VECTOR);
4528 return 1;
4529 }
4530 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
4531 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
4532 /* fall through */
4533 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01004534 /*
4535 * Update instruction length as we may reinject #BP from
4536 * user space while in guest debugging mode. Reading it for
4537 * #DB as well causes no harm, it is not used in that case.
4538 */
4539 vmx->vcpu.arch.event_exit_inst_len =
4540 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004541 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03004542 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004543 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
4544 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004545 break;
4546 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004547 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
4548 kvm_run->ex.exception = ex_no;
4549 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004550 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004551 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004552 return 0;
4553}
4554
Avi Kivity851ba692009-08-24 11:10:17 +03004555static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004556{
Avi Kivity1165f5f2007-04-19 17:27:43 +03004557 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004558 return 1;
4559}
4560
Avi Kivity851ba692009-08-24 11:10:17 +03004561static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08004562{
Avi Kivity851ba692009-08-24 11:10:17 +03004563 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07004564 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08004565 return 0;
4566}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004567
Avi Kivity851ba692009-08-24 11:10:17 +03004568static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004569{
He, Qingbfdaab02007-09-12 14:18:28 +08004570 unsigned long exit_qualification;
Sean Christophersondca7f122018-03-08 08:57:27 -08004571 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02004572 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004573
He, Qingbfdaab02007-09-12 14:18:28 +08004574 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02004575 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004576
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004577 ++vcpu->stat.io_exits;
4578
Sean Christopherson432baf62018-03-08 08:57:26 -08004579 if (string)
Sean Christopherson0ce97a22018-08-23 13:56:52 -07004580 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004581
4582 port = exit_qualification >> 16;
4583 size = (exit_qualification & 7) + 1;
Sean Christopherson432baf62018-03-08 08:57:26 -08004584 in = (exit_qualification & 8) != 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004585
Sean Christophersondca7f122018-03-08 08:57:27 -08004586 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004587}
4588
Ingo Molnar102d8322007-02-19 14:37:47 +02004589static void
4590vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
4591{
4592 /*
4593 * Patch in the VMCALL instruction:
4594 */
4595 hypercall[0] = 0x0f;
4596 hypercall[1] = 0x01;
4597 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02004598}
4599
Guo Chao0fa06072012-06-28 15:16:19 +08004600/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004601static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
4602{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004603 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004604 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4605 unsigned long orig_val = val;
4606
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004607 /*
4608 * We get here when L2 changed cr0 in a way that did not change
4609 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004610 * but did change L0 shadowed bits. So we first calculate the
4611 * effective cr0 value that L1 would like to write into the
4612 * hardware. It consists of the L2-owned bits from the new
4613 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004614 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004615 val = (val & ~vmcs12->cr0_guest_host_mask) |
4616 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
4617
David Matlack38991522016-11-29 18:14:08 -08004618 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004619 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004620
4621 if (kvm_set_cr0(vcpu, val))
4622 return 1;
4623 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004624 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004625 } else {
4626 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08004627 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004628 return 1;
David Matlack38991522016-11-29 18:14:08 -08004629
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004630 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004631 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004632}
4633
4634static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
4635{
4636 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004637 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4638 unsigned long orig_val = val;
4639
4640 /* analogously to handle_set_cr0 */
4641 val = (val & ~vmcs12->cr4_guest_host_mask) |
4642 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
4643 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004644 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004645 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004646 return 0;
4647 } else
4648 return kvm_set_cr4(vcpu, val);
4649}
4650
Paolo Bonzini0367f202016-07-12 10:44:55 +02004651static int handle_desc(struct kvm_vcpu *vcpu)
4652{
4653 WARN_ON(!(vcpu->arch.cr4 & X86_CR4_UMIP));
Sean Christopherson0ce97a22018-08-23 13:56:52 -07004654 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004655}
4656
Avi Kivity851ba692009-08-24 11:10:17 +03004657static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004658{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004659 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004660 int cr;
4661 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03004662 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08004663 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004664
He, Qingbfdaab02007-09-12 14:18:28 +08004665 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004666 cr = exit_qualification & 15;
4667 reg = (exit_qualification >> 8) & 15;
4668 switch ((exit_qualification >> 4) & 3) {
4669 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03004670 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004671 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004672 switch (cr) {
4673 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004674 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004675 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004676 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08004677 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity23902182010-06-10 17:02:16 +03004678 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004679 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004680 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004681 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004682 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004683 case 8: {
4684 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03004685 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004686 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004687 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004688 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08004689 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004690 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08004691 return ret;
4692 /*
4693 * TODO: we might be squashing a
4694 * KVM_GUESTDBG_SINGLESTEP-triggered
4695 * KVM_EXIT_DEBUG here.
4696 */
Avi Kivity851ba692009-08-24 11:10:17 +03004697 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004698 return 0;
4699 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02004700 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004701 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03004702 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004703 WARN_ONCE(1, "Guest should always own CR0.TS");
4704 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02004705 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08004706 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004707 case 1: /*mov from cr*/
4708 switch (cr) {
4709 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08004710 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity9f8fe502010-12-05 17:30:00 +02004711 val = kvm_read_cr3(vcpu);
4712 kvm_register_write(vcpu, reg, val);
4713 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004714 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004715 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004716 val = kvm_get_cr8(vcpu);
4717 kvm_register_write(vcpu, reg, val);
4718 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004719 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004720 }
4721 break;
4722 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02004723 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02004724 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02004725 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004726
Kyle Huey6affcbe2016-11-29 12:40:40 -08004727 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004728 default:
4729 break;
4730 }
Avi Kivity851ba692009-08-24 11:10:17 +03004731 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03004732 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08004733 (int)(exit_qualification >> 4) & 3, cr);
4734 return 0;
4735}
4736
Avi Kivity851ba692009-08-24 11:10:17 +03004737static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004738{
He, Qingbfdaab02007-09-12 14:18:28 +08004739 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004740 int dr, dr7, reg;
4741
4742 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
4743 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
4744
4745 /* First, if DR does not exist, trigger UD */
4746 if (!kvm_require_dr(vcpu, dr))
4747 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004748
Jan Kiszkaf2483412010-01-20 18:20:20 +01004749 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03004750 if (!kvm_require_cpl(vcpu, 0))
4751 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004752 dr7 = vmcs_readl(GUEST_DR7);
4753 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004754 /*
4755 * As the vm-exit takes precedence over the debug trap, we
4756 * need to emulate the latter, either for the host or the
4757 * guest debugging itself.
4758 */
4759 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03004760 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004761 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02004762 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004763 vcpu->run->debug.arch.exception = DB_VECTOR;
4764 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004765 return 0;
4766 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02004767 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03004768 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004769 kvm_queue_exception(vcpu, DB_VECTOR);
4770 return 1;
4771 }
4772 }
4773
Paolo Bonzini81908bf2014-02-21 10:32:27 +01004774 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01004775 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
4776 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01004777
4778 /*
4779 * No more DR vmexits; force a reload of the debug registers
4780 * and reenter on this instruction. The next vmexit will
4781 * retrieve the full state of the debug registers.
4782 */
4783 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
4784 return 1;
4785 }
4786
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004787 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
4788 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03004789 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01004790
4791 if (kvm_get_dr(vcpu, dr, &val))
4792 return 1;
4793 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03004794 } else
Nadav Amit57773922014-06-18 17:19:23 +03004795 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01004796 return 1;
4797
Kyle Huey6affcbe2016-11-29 12:40:40 -08004798 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004799}
4800
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004801static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
4802{
4803 return vcpu->arch.dr6;
4804}
4805
4806static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
4807{
4808}
4809
Paolo Bonzini81908bf2014-02-21 10:32:27 +01004810static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
4811{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01004812 get_debugreg(vcpu->arch.db[0], 0);
4813 get_debugreg(vcpu->arch.db[1], 1);
4814 get_debugreg(vcpu->arch.db[2], 2);
4815 get_debugreg(vcpu->arch.db[3], 3);
4816 get_debugreg(vcpu->arch.dr6, 6);
4817 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
4818
4819 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01004820 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01004821}
4822
Gleb Natapov020df072010-04-13 10:05:23 +03004823static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
4824{
4825 vmcs_writel(GUEST_DR7, val);
4826}
4827
Avi Kivity851ba692009-08-24 11:10:17 +03004828static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004829{
Kyle Huey6a908b62016-11-29 12:40:37 -08004830 return kvm_emulate_cpuid(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004831}
4832
Avi Kivity851ba692009-08-24 11:10:17 +03004833static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004834{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004835 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004836 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004837
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004838 msr_info.index = ecx;
4839 msr_info.host_initiated = false;
4840 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02004841 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004842 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004843 return 1;
4844 }
4845
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004846 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004847
Avi Kivity6aa8b732006-12-10 02:21:36 -08004848 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004849 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
4850 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Kyle Huey6affcbe2016-11-29 12:40:40 -08004851 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004852}
4853
Avi Kivity851ba692009-08-24 11:10:17 +03004854static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004855{
Will Auld8fe8ab42012-11-29 12:42:12 -08004856 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004857 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
4858 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
4859 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004860
Will Auld8fe8ab42012-11-29 12:42:12 -08004861 msr.data = data;
4862 msr.index = ecx;
4863 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03004864 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02004865 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004866 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004867 return 1;
4868 }
4869
Avi Kivity59200272010-01-25 19:47:02 +02004870 trace_kvm_msr_write(ecx, data);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004871 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004872}
4873
Avi Kivity851ba692009-08-24 11:10:17 +03004874static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004875{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01004876 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004877 return 1;
4878}
4879
Avi Kivity851ba692009-08-24 11:10:17 +03004880static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004881{
Paolo Bonzini47c01522016-12-19 11:44:07 +01004882 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
4883 CPU_BASED_VIRTUAL_INTR_PENDING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004884
Avi Kivity3842d132010-07-27 12:30:24 +03004885 kvm_make_request(KVM_REQ_EVENT, vcpu);
4886
Jan Kiszkaa26bf122008-09-26 09:30:45 +02004887 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004888 return 1;
4889}
4890
Avi Kivity851ba692009-08-24 11:10:17 +03004891static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004892{
Avi Kivityd3bef152007-06-05 15:53:05 +03004893 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004894}
4895
Avi Kivity851ba692009-08-24 11:10:17 +03004896static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02004897{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03004898 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02004899}
4900
Gleb Natapovec25d5e2010-11-01 15:35:01 +02004901static int handle_invd(struct kvm_vcpu *vcpu)
4902{
Sean Christopherson0ce97a22018-08-23 13:56:52 -07004903 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02004904}
4905
Avi Kivity851ba692009-08-24 11:10:17 +03004906static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03004907{
Sheng Yangf9c617f2009-03-25 10:08:52 +08004908 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03004909
4910 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004911 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03004912}
4913
Avi Kivityfee84b02011-11-10 14:57:25 +02004914static int handle_rdpmc(struct kvm_vcpu *vcpu)
4915{
4916 int err;
4917
4918 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004919 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02004920}
4921
Avi Kivity851ba692009-08-24 11:10:17 +03004922static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02004923{
Kyle Huey6affcbe2016-11-29 12:40:40 -08004924 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02004925}
4926
Dexuan Cui2acf9232010-06-10 11:27:12 +08004927static int handle_xsetbv(struct kvm_vcpu *vcpu)
4928{
4929 u64 new_bv = kvm_read_edx_eax(vcpu);
4930 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
4931
4932 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08004933 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08004934 return 1;
4935}
4936
Wanpeng Lif53cd632014-12-02 19:14:58 +08004937static int handle_xsaves(struct kvm_vcpu *vcpu)
4938{
Kyle Huey6affcbe2016-11-29 12:40:40 -08004939 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08004940 WARN(1, "this should never happen\n");
4941 return 1;
4942}
4943
4944static int handle_xrstors(struct kvm_vcpu *vcpu)
4945{
Kyle Huey6affcbe2016-11-29 12:40:40 -08004946 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08004947 WARN(1, "this should never happen\n");
4948 return 1;
4949}
4950
Avi Kivity851ba692009-08-24 11:10:17 +03004951static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004952{
Kevin Tian58fbbf22011-08-30 13:56:17 +03004953 if (likely(fasteoi)) {
4954 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
4955 int access_type, offset;
4956
4957 access_type = exit_qualification & APIC_ACCESS_TYPE;
4958 offset = exit_qualification & APIC_ACCESS_OFFSET;
4959 /*
4960 * Sane guest uses MOV to write EOI, with written value
4961 * not cared. So make a short-circuit here by avoiding
4962 * heavy instruction emulation.
4963 */
4964 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
4965 (offset == APIC_EOI)) {
4966 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004967 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03004968 }
4969 }
Sean Christopherson0ce97a22018-08-23 13:56:52 -07004970 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004971}
4972
Yang Zhangc7c9c562013-01-25 10:18:51 +08004973static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
4974{
4975 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
4976 int vector = exit_qualification & 0xff;
4977
4978 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
4979 kvm_apic_set_eoi_accelerated(vcpu, vector);
4980 return 1;
4981}
4982
Yang Zhang83d4c282013-01-25 10:18:49 +08004983static int handle_apic_write(struct kvm_vcpu *vcpu)
4984{
4985 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
4986 u32 offset = exit_qualification & 0xfff;
4987
4988 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
4989 kvm_apic_write_nodecode(vcpu, offset);
4990 return 1;
4991}
4992
Avi Kivity851ba692009-08-24 11:10:17 +03004993static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02004994{
Jan Kiszka60637aa2008-09-26 09:30:47 +02004995 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02004996 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02004997 bool has_error_code = false;
4998 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02004999 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005000 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005001
5002 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005003 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005004 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02005005
5006 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5007
5008 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005009 if (reason == TASK_SWITCH_GATE && idt_v) {
5010 switch (type) {
5011 case INTR_TYPE_NMI_INTR:
5012 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02005013 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005014 break;
5015 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005016 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005017 kvm_clear_interrupt_queue(vcpu);
5018 break;
5019 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02005020 if (vmx->idt_vectoring_info &
5021 VECTORING_INFO_DELIVER_CODE_MASK) {
5022 has_error_code = true;
5023 error_code =
5024 vmcs_read32(IDT_VECTORING_ERROR_CODE);
5025 }
5026 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005027 case INTR_TYPE_SOFT_EXCEPTION:
5028 kvm_clear_exception_queue(vcpu);
5029 break;
5030 default:
5031 break;
5032 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02005033 }
Izik Eidus37817f22008-03-24 23:14:53 +02005034 tss_selector = exit_qualification;
5035
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005036 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
5037 type != INTR_TYPE_EXT_INTR &&
5038 type != INTR_TYPE_NMI_INTR))
5039 skip_emulated_instruction(vcpu);
5040
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005041 if (kvm_task_switch(vcpu, tss_selector,
5042 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
5043 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03005044 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5045 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
5046 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005047 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03005048 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005049
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005050 /*
5051 * TODO: What about debug traps on tss switch?
5052 * Are we supposed to inject them and update dr6?
5053 */
5054
5055 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02005056}
5057
Avi Kivity851ba692009-08-24 11:10:17 +03005058static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08005059{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005060 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08005061 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01005062 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08005063
Sheng Yangf9c617f2009-03-25 10:08:52 +08005064 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08005065
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005066 /*
5067 * EPT violation happened while executing iret from NMI,
5068 * "blocked by NMI" bit has to be set before next VM entry.
5069 * There are errata that may cause this bit to not be set:
5070 * AAK134, BY25.
5071 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005072 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005073 enable_vnmi &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005074 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005075 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
5076
Sheng Yang14394422008-04-28 12:24:45 +08005077 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005078 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005079
Junaid Shahid27959a42016-12-06 16:46:10 -08005080 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005081 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08005082 ? PFERR_USER_MASK : 0;
5083 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005084 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08005085 ? PFERR_WRITE_MASK : 0;
5086 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005087 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08005088 ? PFERR_FETCH_MASK : 0;
5089 /* ept page table entry is present? */
5090 error_code |= (exit_qualification &
5091 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
5092 EPT_VIOLATION_EXECUTABLE))
5093 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005094
Paolo Bonzinieebed242016-11-28 14:39:58 +01005095 error_code |= (exit_qualification & 0x100) != 0 ?
5096 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03005097
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005098 vcpu->arch.exit_qualification = exit_qualification;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005099 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08005100}
5101
Avi Kivity851ba692009-08-24 11:10:17 +03005102static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005103{
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005104 gpa_t gpa;
5105
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005106 /*
5107 * A nested guest cannot optimize MMIO vmexits, because we have an
5108 * nGPA here instead of the required GPA.
5109 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005110 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005111 if (!is_guest_mode(vcpu) &&
5112 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08005113 trace_kvm_fast_mmio(gpa);
Vitaly Kuznetsovd391f122018-01-25 16:37:07 +01005114 /*
5115 * Doing kvm_skip_emulated_instruction() depends on undefined
5116 * behavior: Intel's manual doesn't mandate
5117 * VM_EXIT_INSTRUCTION_LEN to be set in VMCS when EPT MISCONFIG
5118 * occurs and while on real hardware it was observed to be set,
5119 * other hypervisors (namely Hyper-V) don't set it, we end up
5120 * advancing IP with some random value. Disable fast mmio when
5121 * running nested and keep it for real hardware in hope that
5122 * VM_EXIT_INSTRUCTION_LEN will always be set correctly.
5123 */
5124 if (!static_cpu_has(X86_FEATURE_HYPERVISOR))
5125 return kvm_skip_emulated_instruction(vcpu);
5126 else
Sean Christopherson0ce97a22018-08-23 13:56:52 -07005127 return kvm_emulate_instruction(vcpu, EMULTYPE_SKIP) ==
Sean Christophersonc4409902018-08-23 13:56:46 -07005128 EMULATE_DONE;
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03005129 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005130
Sean Christophersonc75d0edc2018-03-29 14:48:31 -07005131 return kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005132}
5133
Avi Kivity851ba692009-08-24 11:10:17 +03005134static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08005135{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005136 WARN_ON_ONCE(!enable_vnmi);
Paolo Bonzini47c01522016-12-19 11:44:07 +01005137 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
5138 CPU_BASED_VIRTUAL_NMI_PENDING);
Sheng Yangf08864b2008-05-15 18:23:25 +08005139 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03005140 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08005141
5142 return 1;
5143}
5144
Mohammed Gamal80ced182009-09-01 12:48:18 +02005145static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005146{
Avi Kivity8b3079a2009-01-05 12:10:54 +02005147 struct vcpu_vmx *vmx = to_vmx(vcpu);
5148 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02005149 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02005150 u32 cpu_exec_ctrl;
5151 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03005152 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02005153
Sean Christopherson2bb8caf2018-03-12 10:56:13 -07005154 /*
5155 * We should never reach the point where we are emulating L2
5156 * due to invalid guest state as that means we incorrectly
5157 * allowed a nested VMEntry with an invalid vmcs12.
5158 */
5159 WARN_ON_ONCE(vmx->emulation_required && vmx->nested.nested_run_pending);
5160
Avi Kivity49e9d552010-09-19 14:34:08 +02005161 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5162 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005163
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01005164 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03005165 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02005166 return handle_interrupt_window(&vmx->vcpu);
5167
Radim Krčmář72875d82017-04-26 22:32:19 +02005168 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03005169 return 1;
5170
Sean Christopherson0ce97a22018-08-23 13:56:52 -07005171 err = kvm_emulate_instruction(vcpu, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005172
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02005173 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02005174 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02005175 ret = 0;
5176 goto out;
5177 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005178
Sean Christophersonadd5ff72018-03-23 09:34:00 -07005179 if (err != EMULATE_DONE)
5180 goto emulation_error;
5181
5182 if (vmx->emulation_required && !vmx->rmode.vm86_active &&
5183 vcpu->arch.exception.pending)
5184 goto emulation_error;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005185
Gleb Natapov8d76c492013-05-08 18:38:44 +03005186 if (vcpu->arch.halt_request) {
5187 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06005188 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03005189 goto out;
5190 }
5191
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005192 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02005193 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005194 if (need_resched())
5195 schedule();
5196 }
5197
Mohammed Gamal80ced182009-09-01 12:48:18 +02005198out:
5199 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005200
Sean Christophersonadd5ff72018-03-23 09:34:00 -07005201emulation_error:
5202 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5203 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
5204 vcpu->run->internal.ndata = 0;
5205 return 0;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005206}
5207
5208static void grow_ple_window(struct kvm_vcpu *vcpu)
5209{
5210 struct vcpu_vmx *vmx = to_vmx(vcpu);
5211 int old = vmx->ple_window;
5212
Babu Mogerc8e88712018-03-16 16:37:24 -04005213 vmx->ple_window = __grow_ple_window(old, ple_window,
5214 ple_window_grow,
5215 ple_window_max);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005216
5217 if (vmx->ple_window != old)
5218 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02005219
5220 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005221}
5222
5223static void shrink_ple_window(struct kvm_vcpu *vcpu)
5224{
5225 struct vcpu_vmx *vmx = to_vmx(vcpu);
5226 int old = vmx->ple_window;
5227
Babu Mogerc8e88712018-03-16 16:37:24 -04005228 vmx->ple_window = __shrink_ple_window(old, ple_window,
5229 ple_window_shrink,
5230 ple_window);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005231
5232 if (vmx->ple_window != old)
5233 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02005234
5235 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005236}
5237
5238/*
Feng Wubf9f6ac2015-09-18 22:29:55 +08005239 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
5240 */
5241static void wakeup_handler(void)
5242{
5243 struct kvm_vcpu *vcpu;
5244 int cpu = smp_processor_id();
5245
5246 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
5247 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
5248 blocked_vcpu_list) {
5249 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
5250
5251 if (pi_test_on(pi_desc) == 1)
5252 kvm_vcpu_kick(vcpu);
5253 }
5254 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
5255}
5256
Peng Haoe01bca22018-04-07 05:47:32 +08005257static void vmx_enable_tdp(void)
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005258{
5259 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
5260 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
5261 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
5262 0ull, VMX_EPT_EXECUTABLE_MASK,
5263 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005264 VMX_EPT_RWX_MASK, 0ull);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005265
5266 ept_set_mmio_spte_mask();
5267 kvm_enable_tdp();
5268}
5269
Avi Kivity6aa8b732006-12-10 02:21:36 -08005270/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005271 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
5272 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
5273 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03005274static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005275{
Wanpeng Lib31c1142018-03-12 04:53:04 -07005276 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005277 grow_ple_window(vcpu);
5278
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08005279 /*
5280 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
5281 * VM-execution control is ignored if CPL > 0. OTOH, KVM
5282 * never set PAUSE_EXITING and just set PLE if supported,
5283 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
5284 */
5285 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005286 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005287}
5288
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005289static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08005290{
Kyle Huey6affcbe2016-11-29 12:40:40 -08005291 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08005292}
5293
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005294static int handle_mwait(struct kvm_vcpu *vcpu)
5295{
5296 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
5297 return handle_nop(vcpu);
5298}
5299
Jim Mattson45ec3682017-08-23 16:32:04 -07005300static int handle_invalid_op(struct kvm_vcpu *vcpu)
5301{
5302 kvm_queue_exception(vcpu, UD_VECTOR);
5303 return 1;
5304}
5305
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005306static int handle_monitor_trap(struct kvm_vcpu *vcpu)
5307{
5308 return 1;
5309}
5310
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005311static int handle_monitor(struct kvm_vcpu *vcpu)
5312{
5313 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
5314 return handle_nop(vcpu);
5315}
5316
Junaid Shahideb4b2482018-06-27 14:59:14 -07005317static int handle_invpcid(struct kvm_vcpu *vcpu)
5318{
5319 u32 vmx_instruction_info;
5320 unsigned long type;
5321 bool pcid_enabled;
5322 gva_t gva;
5323 struct x86_exception e;
Junaid Shahidb94742c2018-06-27 14:59:20 -07005324 unsigned i;
5325 unsigned long roots_to_free = 0;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005326 struct {
5327 u64 pcid;
5328 u64 gla;
5329 } operand;
5330
5331 if (!guest_cpuid_has(vcpu, X86_FEATURE_INVPCID)) {
5332 kvm_queue_exception(vcpu, UD_VECTOR);
5333 return 1;
5334 }
5335
5336 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5337 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
5338
5339 if (type > 3) {
5340 kvm_inject_gp(vcpu, 0);
5341 return 1;
5342 }
5343
5344 /* According to the Intel instruction reference, the memory operand
5345 * is read even if it isn't needed (e.g., for type==all)
5346 */
5347 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
5348 vmx_instruction_info, false, &gva))
5349 return 1;
5350
5351 if (kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e)) {
5352 kvm_inject_page_fault(vcpu, &e);
5353 return 1;
5354 }
5355
5356 if (operand.pcid >> 12 != 0) {
5357 kvm_inject_gp(vcpu, 0);
5358 return 1;
5359 }
5360
5361 pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
5362
5363 switch (type) {
5364 case INVPCID_TYPE_INDIV_ADDR:
5365 if ((!pcid_enabled && (operand.pcid != 0)) ||
5366 is_noncanonical_address(operand.gla, vcpu)) {
5367 kvm_inject_gp(vcpu, 0);
5368 return 1;
5369 }
5370 kvm_mmu_invpcid_gva(vcpu, operand.gla, operand.pcid);
5371 return kvm_skip_emulated_instruction(vcpu);
5372
5373 case INVPCID_TYPE_SINGLE_CTXT:
5374 if (!pcid_enabled && (operand.pcid != 0)) {
5375 kvm_inject_gp(vcpu, 0);
5376 return 1;
5377 }
5378
5379 if (kvm_get_active_pcid(vcpu) == operand.pcid) {
5380 kvm_mmu_sync_roots(vcpu);
5381 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
5382 }
5383
Junaid Shahidb94742c2018-06-27 14:59:20 -07005384 for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++)
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02005385 if (kvm_get_pcid(vcpu, vcpu->arch.mmu->prev_roots[i].cr3)
Junaid Shahidb94742c2018-06-27 14:59:20 -07005386 == operand.pcid)
5387 roots_to_free |= KVM_MMU_ROOT_PREVIOUS(i);
Junaid Shahidade61e22018-06-27 14:59:15 -07005388
Vitaly Kuznetsov6a82cd12018-10-08 21:28:07 +02005389 kvm_mmu_free_roots(vcpu, vcpu->arch.mmu, roots_to_free);
Junaid Shahideb4b2482018-06-27 14:59:14 -07005390 /*
Junaid Shahidb94742c2018-06-27 14:59:20 -07005391 * If neither the current cr3 nor any of the prev_roots use the
Junaid Shahidade61e22018-06-27 14:59:15 -07005392 * given PCID, then nothing needs to be done here because a
5393 * resync will happen anyway before switching to any other CR3.
Junaid Shahideb4b2482018-06-27 14:59:14 -07005394 */
5395
5396 return kvm_skip_emulated_instruction(vcpu);
5397
5398 case INVPCID_TYPE_ALL_NON_GLOBAL:
5399 /*
5400 * Currently, KVM doesn't mark global entries in the shadow
5401 * page tables, so a non-global flush just degenerates to a
5402 * global flush. If needed, we could optimize this later by
5403 * keeping track of global entries in shadow page tables.
5404 */
5405
5406 /* fall-through */
5407 case INVPCID_TYPE_ALL_INCL_GLOBAL:
5408 kvm_mmu_unload(vcpu);
5409 return kvm_skip_emulated_instruction(vcpu);
5410
5411 default:
5412 BUG(); /* We have already checked above that type <= 3 */
5413 }
5414}
5415
Kai Huang843e4332015-01-28 10:54:28 +08005416static int handle_pml_full(struct kvm_vcpu *vcpu)
5417{
5418 unsigned long exit_qualification;
5419
5420 trace_kvm_pml_full(vcpu->vcpu_id);
5421
5422 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5423
5424 /*
5425 * PML buffer FULL happened while executing iret from NMI,
5426 * "blocked by NMI" bit has to be set before next VM entry.
5427 */
5428 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005429 enable_vnmi &&
Kai Huang843e4332015-01-28 10:54:28 +08005430 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
5431 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5432 GUEST_INTR_STATE_NMI);
5433
5434 /*
5435 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
5436 * here.., and there's no userspace involvement needed for PML.
5437 */
5438 return 1;
5439}
5440
Yunhong Jiang64672c92016-06-13 14:19:59 -07005441static int handle_preemption_timer(struct kvm_vcpu *vcpu)
5442{
Sean Christophersond264ee02018-08-27 15:21:12 -07005443 if (!to_vmx(vcpu)->req_immediate_exit)
5444 kvm_lapic_expired_hv_timer(vcpu);
Yunhong Jiang64672c92016-06-13 14:19:59 -07005445 return 1;
5446}
5447
Sean Christophersone4027cf2018-12-03 13:53:12 -08005448/*
5449 * When nested=0, all VMX instruction VM Exits filter here. The handlers
5450 * are overwritten by nested_vmx_setup() when nested=1.
5451 */
5452static int handle_vmx_instruction(struct kvm_vcpu *vcpu)
5453{
5454 kvm_queue_exception(vcpu, UD_VECTOR);
5455 return 1;
5456}
5457
Sean Christopherson0b665d32018-08-14 09:33:34 -07005458static int handle_encls(struct kvm_vcpu *vcpu)
5459{
5460 /*
5461 * SGX virtualization is not yet supported. There is no software
5462 * enable bit for SGX, so we have to trap ENCLS and inject a #UD
5463 * to prevent the guest from executing ENCLS.
5464 */
5465 kvm_queue_exception(vcpu, UD_VECTOR);
5466 return 1;
5467}
5468
Nadav Har'El0140cae2011-05-25 23:06:28 +03005469/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005470 * The exit handlers return 1 if the exit was handled fully and guest execution
5471 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
5472 * to be done to userspace and return 0.
5473 */
Sean Christophersone4027cf2018-12-03 13:53:12 -08005474static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005475 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
5476 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08005477 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08005478 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005479 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005480 [EXIT_REASON_CR_ACCESS] = handle_cr,
5481 [EXIT_REASON_DR_ACCESS] = handle_dr,
5482 [EXIT_REASON_CPUID] = handle_cpuid,
5483 [EXIT_REASON_MSR_READ] = handle_rdmsr,
5484 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
5485 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
5486 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005487 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03005488 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02005489 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02005490 [EXIT_REASON_VMCALL] = handle_vmcall,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005491 [EXIT_REASON_VMCLEAR] = handle_vmx_instruction,
5492 [EXIT_REASON_VMLAUNCH] = handle_vmx_instruction,
5493 [EXIT_REASON_VMPTRLD] = handle_vmx_instruction,
5494 [EXIT_REASON_VMPTRST] = handle_vmx_instruction,
5495 [EXIT_REASON_VMREAD] = handle_vmx_instruction,
5496 [EXIT_REASON_VMRESUME] = handle_vmx_instruction,
5497 [EXIT_REASON_VMWRITE] = handle_vmx_instruction,
5498 [EXIT_REASON_VMOFF] = handle_vmx_instruction,
5499 [EXIT_REASON_VMON] = handle_vmx_instruction,
Sheng Yangf78e0e22007-10-29 09:40:42 +08005500 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
5501 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08005502 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08005503 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02005504 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08005505 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02005506 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08005507 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Paolo Bonzini0367f202016-07-12 10:44:55 +02005508 [EXIT_REASON_GDTR_IDTR] = handle_desc,
5509 [EXIT_REASON_LDTR_TR] = handle_desc,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005510 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
5511 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005512 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005513 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005514 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005515 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005516 [EXIT_REASON_INVEPT] = handle_vmx_instruction,
5517 [EXIT_REASON_INVVPID] = handle_vmx_instruction,
Jim Mattson45ec3682017-08-23 16:32:04 -07005518 [EXIT_REASON_RDRAND] = handle_invalid_op,
Jim Mattson75f4fc82017-08-23 16:32:03 -07005519 [EXIT_REASON_RDSEED] = handle_invalid_op,
Wanpeng Lif53cd632014-12-02 19:14:58 +08005520 [EXIT_REASON_XSAVES] = handle_xsaves,
5521 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08005522 [EXIT_REASON_PML_FULL] = handle_pml_full,
Junaid Shahideb4b2482018-06-27 14:59:14 -07005523 [EXIT_REASON_INVPCID] = handle_invpcid,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005524 [EXIT_REASON_VMFUNC] = handle_vmx_instruction,
Yunhong Jiang64672c92016-06-13 14:19:59 -07005525 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Sean Christopherson0b665d32018-08-14 09:33:34 -07005526 [EXIT_REASON_ENCLS] = handle_encls,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005527};
5528
5529static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04005530 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005531
Avi Kivity586f9602010-11-18 13:09:54 +02005532static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
5533{
5534 *info1 = vmcs_readl(EXIT_QUALIFICATION);
5535 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
5536}
5537
Kai Huanga3eaa862015-11-04 13:46:05 +08005538static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08005539{
Kai Huanga3eaa862015-11-04 13:46:05 +08005540 if (vmx->pml_pg) {
5541 __free_page(vmx->pml_pg);
5542 vmx->pml_pg = NULL;
5543 }
Kai Huang843e4332015-01-28 10:54:28 +08005544}
5545
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005546static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08005547{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005548 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005549 u64 *pml_buf;
5550 u16 pml_idx;
5551
5552 pml_idx = vmcs_read16(GUEST_PML_INDEX);
5553
5554 /* Do nothing if PML buffer is empty */
5555 if (pml_idx == (PML_ENTITY_NUM - 1))
5556 return;
5557
5558 /* PML index always points to next available PML buffer entity */
5559 if (pml_idx >= PML_ENTITY_NUM)
5560 pml_idx = 0;
5561 else
5562 pml_idx++;
5563
5564 pml_buf = page_address(vmx->pml_pg);
5565 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
5566 u64 gpa;
5567
5568 gpa = pml_buf[pml_idx];
5569 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005570 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08005571 }
5572
5573 /* reset PML index */
5574 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5575}
5576
5577/*
5578 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
5579 * Called before reporting dirty_bitmap to userspace.
5580 */
5581static void kvm_flush_pml_buffers(struct kvm *kvm)
5582{
5583 int i;
5584 struct kvm_vcpu *vcpu;
5585 /*
5586 * We only need to kick vcpu out of guest mode here, as PML buffer
5587 * is flushed at beginning of all VMEXITs, and it's obvious that only
5588 * vcpus running in guest are possible to have unflushed GPAs in PML
5589 * buffer.
5590 */
5591 kvm_for_each_vcpu(i, vcpu, kvm)
5592 kvm_vcpu_kick(vcpu);
5593}
5594
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005595static void vmx_dump_sel(char *name, uint32_t sel)
5596{
5597 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05005598 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005599 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
5600 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
5601 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
5602}
5603
5604static void vmx_dump_dtsel(char *name, uint32_t limit)
5605{
5606 pr_err("%s limit=0x%08x, base=0x%016lx\n",
5607 name, vmcs_read32(limit),
5608 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
5609}
5610
Paolo Bonzini69090812019-04-15 15:16:17 +02005611void dump_vmcs(void)
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005612{
5613 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
5614 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
5615 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5616 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
5617 u32 secondary_exec_control = 0;
5618 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005619 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005620 int i, n;
5621
5622 if (cpu_has_secondary_exec_ctrls())
5623 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
5624
5625 pr_err("*** Guest State ***\n");
5626 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5627 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
5628 vmcs_readl(CR0_GUEST_HOST_MASK));
5629 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5630 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
5631 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
5632 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
5633 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
5634 {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005635 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
5636 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
5637 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
5638 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005639 }
5640 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
5641 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
5642 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
5643 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
5644 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5645 vmcs_readl(GUEST_SYSENTER_ESP),
5646 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
5647 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
5648 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
5649 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
5650 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
5651 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
5652 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
5653 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
5654 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
5655 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
5656 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
5657 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
5658 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005659 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
5660 efer, vmcs_read64(GUEST_IA32_PAT));
5661 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
5662 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005663 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005664 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005665 vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005666 pr_err("PerfGlobCtl = 0x%016llx\n",
5667 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005668 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005669 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005670 pr_err("Interruptibility = %08x ActivityState = %08x\n",
5671 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
5672 vmcs_read32(GUEST_ACTIVITY_STATE));
5673 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
5674 pr_err("InterruptStatus = %04x\n",
5675 vmcs_read16(GUEST_INTR_STATUS));
5676
5677 pr_err("*** Host State ***\n");
5678 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
5679 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
5680 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
5681 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
5682 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
5683 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
5684 vmcs_read16(HOST_TR_SELECTOR));
5685 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
5686 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
5687 vmcs_readl(HOST_TR_BASE));
5688 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
5689 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
5690 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
5691 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
5692 vmcs_readl(HOST_CR4));
5693 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5694 vmcs_readl(HOST_IA32_SYSENTER_ESP),
5695 vmcs_read32(HOST_IA32_SYSENTER_CS),
5696 vmcs_readl(HOST_IA32_SYSENTER_EIP));
5697 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005698 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
5699 vmcs_read64(HOST_IA32_EFER),
5700 vmcs_read64(HOST_IA32_PAT));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005701 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005702 vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005703 pr_err("PerfGlobCtl = 0x%016llx\n",
5704 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005705
5706 pr_err("*** Control State ***\n");
5707 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
5708 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
5709 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
5710 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
5711 vmcs_read32(EXCEPTION_BITMAP),
5712 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
5713 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
5714 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
5715 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
5716 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
5717 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
5718 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
5719 vmcs_read32(VM_EXIT_INTR_INFO),
5720 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
5721 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
5722 pr_err(" reason=%08x qualification=%016lx\n",
5723 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
5724 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
5725 vmcs_read32(IDT_VECTORING_INFO_FIELD),
5726 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005727 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08005728 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005729 pr_err("TSC Multiplier = 0x%016llx\n",
5730 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005731 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW) {
5732 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
5733 u16 status = vmcs_read16(GUEST_INTR_STATUS);
5734 pr_err("SVI|RVI = %02x|%02x ", status >> 8, status & 0xff);
5735 }
5736 pr_err(KERN_CONT "TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
5737 if (secondary_exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
5738 pr_err("APIC-access addr = 0x%016llx ", vmcs_read64(APIC_ACCESS_ADDR));
5739 pr_err(KERN_CONT "virt-APIC addr = 0x%016llx\n", vmcs_read64(VIRTUAL_APIC_PAGE_ADDR));
5740 }
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005741 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
5742 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
5743 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005744 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005745 n = vmcs_read32(CR3_TARGET_COUNT);
5746 for (i = 0; i + 1 < n; i += 4)
5747 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
5748 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
5749 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
5750 if (i < n)
5751 pr_err("CR3 target%u=%016lx\n",
5752 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
5753 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
5754 pr_err("PLE Gap=%08x Window=%08x\n",
5755 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
5756 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
5757 pr_err("Virtual processor ID = 0x%04x\n",
5758 vmcs_read16(VIRTUAL_PROCESSOR_ID));
5759}
5760
Avi Kivity6aa8b732006-12-10 02:21:36 -08005761/*
5762 * The guest has exited. See if we can fix it or if we need userspace
5763 * assistance.
5764 */
Avi Kivity851ba692009-08-24 11:10:17 +03005765static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005766{
Avi Kivity29bd8a72007-09-10 17:27:03 +03005767 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005768 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02005769 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005770
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01005771 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
5772
Kai Huang843e4332015-01-28 10:54:28 +08005773 /*
5774 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
5775 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
5776 * querying dirty_bitmap, we only need to kick all vcpus out of guest
5777 * mode as if vcpus is in root mode, the PML buffer must has been
5778 * flushed already.
5779 */
5780 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005781 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005782
Mohammed Gamal80ced182009-09-01 12:48:18 +02005783 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02005784 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02005785 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005786
Paolo Bonzini7313c692017-07-27 10:31:25 +02005787 if (is_guest_mode(vcpu) && nested_vmx_exit_reflected(vcpu, exit_reason))
5788 return nested_vmx_reflect_vmexit(vcpu, exit_reason);
Nadav Har'El644d7112011-05-25 23:12:35 +03005789
Mohammed Gamal51207022010-05-31 22:40:54 +03005790 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005791 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03005792 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5793 vcpu->run->fail_entry.hardware_entry_failure_reason
5794 = exit_reason;
5795 return 0;
5796 }
5797
Avi Kivity29bd8a72007-09-10 17:27:03 +03005798 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03005799 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5800 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03005801 = vmcs_read32(VM_INSTRUCTION_ERROR);
5802 return 0;
5803 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005804
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005805 /*
5806 * Note:
5807 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
5808 * delivery event since it indicates guest is accessing MMIO.
5809 * The vm-exit can be triggered again after return to guest that
5810 * will cause infinite loop.
5811 */
Mike Dayd77c26f2007-10-08 09:02:08 -04005812 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08005813 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02005814 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +00005815 exit_reason != EXIT_REASON_PML_FULL &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005816 exit_reason != EXIT_REASON_TASK_SWITCH)) {
5817 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5818 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02005819 vcpu->run->internal.ndata = 3;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005820 vcpu->run->internal.data[0] = vectoring_info;
5821 vcpu->run->internal.data[1] = exit_reason;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02005822 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
5823 if (exit_reason == EXIT_REASON_EPT_MISCONFIG) {
5824 vcpu->run->internal.ndata++;
5825 vcpu->run->internal.data[3] =
5826 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
5827 }
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005828 return 0;
5829 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005830
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005831 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01005832 vmx->loaded_vmcs->soft_vnmi_blocked)) {
5833 if (vmx_interrupt_allowed(vcpu)) {
5834 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
5835 } else if (vmx->loaded_vmcs->vnmi_blocked_time > 1000000000LL &&
5836 vcpu->arch.nmi_pending) {
5837 /*
5838 * This CPU don't support us in finding the end of an
5839 * NMI-blocked window if the guest runs with IRQs
5840 * disabled. So we pull the trigger after 1 s of
5841 * futile waiting, but inform the user about this.
5842 */
5843 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
5844 "state on VCPU %d after 1 s timeout\n",
5845 __func__, vcpu->vcpu_id);
5846 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
5847 }
5848 }
5849
Avi Kivity6aa8b732006-12-10 02:21:36 -08005850 if (exit_reason < kvm_vmx_max_exit_handlers
5851 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03005852 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005853 else {
Radim Krčmář6c6c5e02017-01-13 18:59:04 +01005854 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
5855 exit_reason);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03005856 kvm_queue_exception(vcpu, UD_VECTOR);
5857 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005858 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005859}
5860
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02005861/*
5862 * Software based L1D cache flush which is used when microcode providing
5863 * the cache control MSR is not loaded.
5864 *
5865 * The L1D cache is 32 KiB on Nehalem and later microarchitectures, but to
5866 * flush it is required to read in 64 KiB because the replacement algorithm
5867 * is not exactly LRU. This could be sized at runtime via topology
5868 * information but as all relevant affected CPUs have 32KiB L1D cache size
5869 * there is no point in doing so.
5870 */
Paolo Bonzinic595cee2018-07-02 13:07:14 +02005871static void vmx_l1d_flush(struct kvm_vcpu *vcpu)
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02005872{
5873 int size = PAGE_SIZE << L1D_CACHE_ORDER;
Paolo Bonzinic595cee2018-07-02 13:07:14 +02005874
5875 /*
Thomas Gleixner2f055942018-07-13 16:23:17 +02005876 * This code is only executed when the the flush mode is 'cond' or
5877 * 'always'
Paolo Bonzinic595cee2018-07-02 13:07:14 +02005878 */
Nicolai Stange427362a2018-07-21 22:25:00 +02005879 if (static_branch_likely(&vmx_l1d_flush_cond)) {
Nicolai Stange45b575c2018-07-27 13:22:16 +02005880 bool flush_l1d;
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02005881
Nicolai Stange379fd0c2018-07-21 22:16:56 +02005882 /*
Nicolai Stange45b575c2018-07-27 13:22:16 +02005883 * Clear the per-vcpu flush bit, it gets set again
5884 * either from vcpu_run() or from one of the unsafe
5885 * VMEXIT handlers.
Nicolai Stange379fd0c2018-07-21 22:16:56 +02005886 */
Nicolai Stange45b575c2018-07-27 13:22:16 +02005887 flush_l1d = vcpu->arch.l1tf_flush_l1d;
Thomas Gleixner4c6523e2018-07-13 16:23:20 +02005888 vcpu->arch.l1tf_flush_l1d = false;
Nicolai Stange45b575c2018-07-27 13:22:16 +02005889
5890 /*
5891 * Clear the per-cpu flush bit, it gets set again from
5892 * the interrupt handlers.
5893 */
5894 flush_l1d |= kvm_get_cpu_l1tf_flush_l1d();
5895 kvm_clear_cpu_l1tf_flush_l1d();
5896
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02005897 if (!flush_l1d)
5898 return;
Nicolai Stange379fd0c2018-07-21 22:16:56 +02005899 }
Paolo Bonzinic595cee2018-07-02 13:07:14 +02005900
5901 vcpu->stat.l1d_flush++;
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02005902
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02005903 if (static_cpu_has(X86_FEATURE_FLUSH_L1D)) {
5904 wrmsrl(MSR_IA32_FLUSH_CMD, L1D_FLUSH);
5905 return;
5906 }
5907
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02005908 asm volatile(
5909 /* First ensure the pages are in the TLB */
5910 "xorl %%eax, %%eax\n"
5911 ".Lpopulate_tlb:\n\t"
Nicolai Stange288d1522018-07-18 19:07:38 +02005912 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02005913 "addl $4096, %%eax\n\t"
5914 "cmpl %%eax, %[size]\n\t"
5915 "jne .Lpopulate_tlb\n\t"
5916 "xorl %%eax, %%eax\n\t"
5917 "cpuid\n\t"
5918 /* Now fill the cache */
5919 "xorl %%eax, %%eax\n"
5920 ".Lfill_cache:\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02005921 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02005922 "addl $64, %%eax\n\t"
5923 "cmpl %%eax, %[size]\n\t"
5924 "jne .Lfill_cache\n\t"
5925 "lfence\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02005926 :: [flush_pages] "r" (vmx_l1d_flush_pages),
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02005927 [size] "r" (size)
5928 : "eax", "ebx", "ecx", "edx");
5929}
5930
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005931static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005932{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08005933 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5934
5935 if (is_guest_mode(vcpu) &&
5936 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
5937 return;
5938
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005939 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005940 vmcs_write32(TPR_THRESHOLD, 0);
5941 return;
5942 }
5943
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005944 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005945}
5946
Sean Christopherson97b7ead2018-12-03 13:53:16 -08005947void vmx_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08005948{
5949 u32 sec_exec_control;
5950
Jim Mattson8d860bb2018-05-09 16:56:05 -04005951 if (!lapic_in_kernel(vcpu))
5952 return;
5953
Sean Christophersonfd6b6d92018-10-01 14:25:34 -07005954 if (!flexpriority_enabled &&
5955 !cpu_has_vmx_virtualize_x2apic_mode())
5956 return;
5957
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02005958 /* Postpone execution until vmcs01 is the current VMCS. */
5959 if (is_guest_mode(vcpu)) {
Jim Mattson8d860bb2018-05-09 16:56:05 -04005960 to_vmx(vcpu)->nested.change_vmcs01_virtual_apic_mode = true;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02005961 return;
5962 }
5963
Yang Zhang8d146952013-01-25 10:18:50 +08005964 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
Jim Mattson8d860bb2018-05-09 16:56:05 -04005965 sec_exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
5966 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
Yang Zhang8d146952013-01-25 10:18:50 +08005967
Jim Mattson8d860bb2018-05-09 16:56:05 -04005968 switch (kvm_get_apic_mode(vcpu)) {
5969 case LAPIC_MODE_INVALID:
5970 WARN_ONCE(true, "Invalid local APIC state");
5971 case LAPIC_MODE_DISABLED:
5972 break;
5973 case LAPIC_MODE_XAPIC:
5974 if (flexpriority_enabled) {
5975 sec_exec_control |=
5976 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
5977 vmx_flush_tlb(vcpu, true);
5978 }
5979 break;
5980 case LAPIC_MODE_X2APIC:
5981 if (cpu_has_vmx_virtualize_x2apic_mode())
5982 sec_exec_control |=
5983 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
5984 break;
Yang Zhang8d146952013-01-25 10:18:50 +08005985 }
5986 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
5987
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005988 vmx_update_msr_bitmap(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08005989}
5990
Tang Chen38b99172014-09-24 15:57:54 +08005991static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
5992{
Jim Mattsonab5df312018-05-09 17:02:03 -04005993 if (!is_guest_mode(vcpu)) {
Tang Chen38b99172014-09-24 15:57:54 +08005994 vmcs_write64(APIC_ACCESS_ADDR, hpa);
Junaid Shahida468f2d2018-04-26 13:09:50 -07005995 vmx_flush_tlb(vcpu, true);
Jim Mattsonfb6c8192017-03-16 13:53:59 -07005996 }
Tang Chen38b99172014-09-24 15:57:54 +08005997}
5998
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02005999static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006000{
6001 u16 status;
6002 u8 old;
6003
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006004 if (max_isr == -1)
6005 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006006
6007 status = vmcs_read16(GUEST_INTR_STATUS);
6008 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006009 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08006010 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006011 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006012 vmcs_write16(GUEST_INTR_STATUS, status);
6013 }
6014}
6015
6016static void vmx_set_rvi(int vector)
6017{
6018 u16 status;
6019 u8 old;
6020
Wei Wang4114c272014-11-05 10:53:43 +08006021 if (vector == -1)
6022 vector = 0;
6023
Yang Zhangc7c9c562013-01-25 10:18:51 +08006024 status = vmcs_read16(GUEST_INTR_STATUS);
6025 old = (u8)status & 0xff;
6026 if ((u8)vector != old) {
6027 status &= ~0xff;
6028 status |= (u8)vector;
6029 vmcs_write16(GUEST_INTR_STATUS, status);
6030 }
6031}
6032
6033static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
6034{
Liran Alon851c1a182017-12-24 18:12:56 +02006035 /*
6036 * When running L2, updating RVI is only relevant when
6037 * vmcs12 virtual-interrupt-delivery enabled.
6038 * However, it can be enabled only when L1 also
6039 * intercepts external-interrupts and in that case
6040 * we should not update vmcs02 RVI but instead intercept
6041 * interrupt. Therefore, do nothing when running L2.
6042 */
6043 if (!is_guest_mode(vcpu))
Wanpeng Li963fee12014-07-17 19:03:00 +08006044 vmx_set_rvi(max_irr);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006045}
6046
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006047static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006048{
6049 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006050 int max_irr;
Liran Alonf27a85c2017-12-24 18:12:55 +02006051 bool max_irr_updated;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006052
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006053 WARN_ON(!vcpu->arch.apicv_active);
6054 if (pi_test_on(&vmx->pi_desc)) {
6055 pi_clear_on(&vmx->pi_desc);
6056 /*
6057 * IOMMU can write to PIR.ON, so the barrier matters even on UP.
6058 * But on x86 this is just a compiler barrier anyway.
6059 */
6060 smp_mb__after_atomic();
Liran Alonf27a85c2017-12-24 18:12:55 +02006061 max_irr_updated =
6062 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir, &max_irr);
6063
6064 /*
6065 * If we are running L2 and L1 has a new pending interrupt
6066 * which can be injected, we should re-evaluate
6067 * what should be done with this new L1 interrupt.
Liran Alon851c1a182017-12-24 18:12:56 +02006068 * If L1 intercepts external-interrupts, we should
6069 * exit from L2 to L1. Otherwise, interrupt should be
6070 * delivered directly to L2.
Liran Alonf27a85c2017-12-24 18:12:55 +02006071 */
Liran Alon851c1a182017-12-24 18:12:56 +02006072 if (is_guest_mode(vcpu) && max_irr_updated) {
6073 if (nested_exit_on_intr(vcpu))
6074 kvm_vcpu_exiting_guest_mode(vcpu);
6075 else
6076 kvm_make_request(KVM_REQ_EVENT, vcpu);
6077 }
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006078 } else {
6079 max_irr = kvm_lapic_find_highest_irr(vcpu);
6080 }
6081 vmx_hwapic_irr_update(vcpu, max_irr);
6082 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006083}
6084
Andrey Smetanin63086302015-11-10 15:36:32 +03006085static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006086{
Andrey Smetanind62caab2015-11-10 15:36:33 +03006087 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08006088 return;
6089
Yang Zhangc7c9c562013-01-25 10:18:51 +08006090 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
6091 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
6092 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
6093 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
6094}
6095
Paolo Bonzini967235d2016-12-19 14:03:45 +01006096static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
6097{
6098 struct vcpu_vmx *vmx = to_vmx(vcpu);
6099
6100 pi_clear_on(&vmx->pi_desc);
6101 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
6102}
6103
Avi Kivity51aa01d2010-07-20 14:31:20 +03006104static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03006105{
Jim Mattson48ae0fb2017-05-22 09:48:33 -07006106 u32 exit_intr_info = 0;
6107 u16 basic_exit_reason = (u16)vmx->exit_reason;
Avi Kivity00eba012011-03-07 17:24:54 +02006108
Jim Mattson48ae0fb2017-05-22 09:48:33 -07006109 if (!(basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
6110 || basic_exit_reason == EXIT_REASON_EXCEPTION_NMI))
Avi Kivity00eba012011-03-07 17:24:54 +02006111 return;
6112
Jim Mattson48ae0fb2017-05-22 09:48:33 -07006113 if (!(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
6114 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
6115 vmx->exit_intr_info = exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08006116
Wanpeng Li1261bfa2017-07-13 18:30:40 -07006117 /* if exit due to PF check for async PF */
6118 if (is_page_fault(exit_intr_info))
6119 vmx->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
6120
Andi Kleena0861c02009-06-08 17:37:09 +08006121 /* Handle machine checks before interrupts are enabled */
Jim Mattson48ae0fb2017-05-22 09:48:33 -07006122 if (basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY ||
6123 is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08006124 kvm_machine_check();
6125
Gleb Natapov20f65982009-05-11 13:35:55 +03006126 /* We need to handle NMIs before interrupts are enabled */
Jim Mattsonef85b672016-12-12 11:01:37 -08006127 if (is_nmi(exit_intr_info)) {
Andi Kleendd60d212017-07-25 17:20:32 -07006128 kvm_before_interrupt(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03006129 asm("int $2");
Andi Kleendd60d212017-07-25 17:20:32 -07006130 kvm_after_interrupt(&vmx->vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08006131 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03006132}
Gleb Natapov20f65982009-05-11 13:35:55 +03006133
Yang Zhanga547c6d2013-04-11 19:25:10 +08006134static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
6135{
6136 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
6137
Yang Zhanga547c6d2013-04-11 19:25:10 +08006138 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
6139 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
6140 unsigned int vector;
6141 unsigned long entry;
6142 gate_desc *desc;
6143 struct vcpu_vmx *vmx = to_vmx(vcpu);
6144#ifdef CONFIG_X86_64
6145 unsigned long tmp;
6146#endif
6147
6148 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
6149 desc = (gate_desc *)vmx->host_idt_base + vector;
Thomas Gleixner64b163f2017-08-28 08:47:37 +02006150 entry = gate_offset(desc);
Yang Zhanga547c6d2013-04-11 19:25:10 +08006151 asm volatile(
6152#ifdef CONFIG_X86_64
6153 "mov %%" _ASM_SP ", %[sp]\n\t"
6154 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
6155 "push $%c[ss]\n\t"
6156 "push %[sp]\n\t"
6157#endif
6158 "pushf\n\t"
Yang Zhanga547c6d2013-04-11 19:25:10 +08006159 __ASM_SIZE(push) " $%c[cs]\n\t"
Peter Zijlstrac940a3f2018-01-25 10:58:14 +01006160 CALL_NOSPEC
Yang Zhanga547c6d2013-04-11 19:25:10 +08006161 :
6162#ifdef CONFIG_X86_64
Chris J Arges3f62de52016-01-22 15:44:38 -06006163 [sp]"=&r"(tmp),
Yang Zhanga547c6d2013-04-11 19:25:10 +08006164#endif
Josh Poimboeuff5caf622017-09-20 16:24:33 -05006165 ASM_CALL_CONSTRAINT
Yang Zhanga547c6d2013-04-11 19:25:10 +08006166 :
Peter Zijlstrac940a3f2018-01-25 10:58:14 +01006167 THUNK_TARGET(entry),
Yang Zhanga547c6d2013-04-11 19:25:10 +08006168 [ss]"i"(__KERNEL_DS),
6169 [cs]"i"(__KERNEL_CS)
6170 );
Paolo Bonzinif2485b32016-06-15 15:23:11 +02006171 }
Yang Zhanga547c6d2013-04-11 19:25:10 +08006172}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05006173STACK_FRAME_NON_STANDARD(vmx_handle_external_intr);
Yang Zhanga547c6d2013-04-11 19:25:10 +08006174
Tom Lendackybc226f02018-05-10 22:06:39 +02006175static bool vmx_has_emulated_msr(int index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006176{
Tom Lendackybc226f02018-05-10 22:06:39 +02006177 switch (index) {
6178 case MSR_IA32_SMBASE:
6179 /*
6180 * We cannot do SMM unless we can run the guest in big
6181 * real mode.
6182 */
6183 return enable_unrestricted_guest || emulate_invalid_guest_state;
6184 case MSR_AMD64_VIRT_SPEC_CTRL:
6185 /* This is AMD only. */
6186 return false;
6187 default:
6188 return true;
6189 }
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006190}
6191
Chao Peng86f52012018-10-24 16:05:11 +08006192static bool vmx_pt_supported(void)
6193{
6194 return pt_mode == PT_MODE_HOST_GUEST;
6195}
6196
Avi Kivity51aa01d2010-07-20 14:31:20 +03006197static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
6198{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02006199 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03006200 bool unblock_nmi;
6201 u8 vector;
6202 bool idtv_info_valid;
6203
6204 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03006205
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006206 if (enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006207 if (vmx->loaded_vmcs->nmi_known_unmasked)
6208 return;
6209 /*
6210 * Can't use vmx->exit_intr_info since we're not sure what
6211 * the exit reason is.
6212 */
6213 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
6214 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
6215 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
6216 /*
6217 * SDM 3: 27.7.1.2 (September 2008)
6218 * Re-set bit "block by NMI" before VM entry if vmexit caused by
6219 * a guest IRET fault.
6220 * SDM 3: 23.2.2 (September 2008)
6221 * Bit 12 is undefined in any of the following cases:
6222 * If the VM exit sets the valid bit in the IDT-vectoring
6223 * information field.
6224 * If the VM exit is due to a double fault.
6225 */
6226 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
6227 vector != DF_VECTOR && !idtv_info_valid)
6228 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
6229 GUEST_INTR_STATE_NMI);
6230 else
6231 vmx->loaded_vmcs->nmi_known_unmasked =
6232 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
6233 & GUEST_INTR_STATE_NMI);
6234 } else if (unlikely(vmx->loaded_vmcs->soft_vnmi_blocked))
6235 vmx->loaded_vmcs->vnmi_blocked_time +=
6236 ktime_to_ns(ktime_sub(ktime_get(),
6237 vmx->loaded_vmcs->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03006238}
6239
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006240static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03006241 u32 idt_vectoring_info,
6242 int instr_len_field,
6243 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03006244{
Avi Kivity51aa01d2010-07-20 14:31:20 +03006245 u8 vector;
6246 int type;
6247 bool idtv_info_valid;
6248
6249 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03006250
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006251 vcpu->arch.nmi_injected = false;
6252 kvm_clear_exception_queue(vcpu);
6253 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006254
6255 if (!idtv_info_valid)
6256 return;
6257
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006258 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03006259
Avi Kivity668f6122008-07-02 09:28:55 +03006260 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
6261 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006262
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006263 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03006264 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006265 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03006266 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03006267 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03006268 * Clear bit "block by NMI" before VM entry if a NMI
6269 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03006270 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006271 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006272 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006273 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006274 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006275 /* fall through */
6276 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03006277 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03006278 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03006279 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03006280 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03006281 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006282 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006283 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006284 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006285 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03006286 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006287 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006288 break;
6289 default:
6290 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03006291 }
Avi Kivitycf393f72008-07-01 16:20:21 +03006292}
6293
Avi Kivity83422e12010-07-20 14:43:23 +03006294static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
6295{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006296 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03006297 VM_EXIT_INSTRUCTION_LEN,
6298 IDT_VECTORING_ERROR_CODE);
6299}
6300
Avi Kivityb463a6f2010-07-20 15:06:17 +03006301static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
6302{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006303 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03006304 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
6305 VM_ENTRY_INSTRUCTION_LEN,
6306 VM_ENTRY_EXCEPTION_ERROR_CODE);
6307
6308 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
6309}
6310
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006311static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
6312{
6313 int i, nr_msrs;
6314 struct perf_guest_switch_msr *msrs;
6315
6316 msrs = perf_guest_get_msrs(&nr_msrs);
6317
6318 if (!msrs)
6319 return;
6320
6321 for (i = 0; i < nr_msrs; i++)
6322 if (msrs[i].host == msrs[i].guest)
6323 clear_atomic_switch_msr(vmx, msrs[i].msr);
6324 else
6325 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04006326 msrs[i].host, false);
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006327}
6328
Sean Christophersonf459a702018-08-27 15:21:11 -07006329static void vmx_arm_hv_timer(struct vcpu_vmx *vmx, u32 val)
6330{
6331 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, val);
6332 if (!vmx->loaded_vmcs->hv_timer_armed)
6333 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
6334 PIN_BASED_VMX_PREEMPTION_TIMER);
6335 vmx->loaded_vmcs->hv_timer_armed = true;
6336}
6337
6338static void vmx_update_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07006339{
6340 struct vcpu_vmx *vmx = to_vmx(vcpu);
6341 u64 tscl;
6342 u32 delta_tsc;
6343
Sean Christophersond264ee02018-08-27 15:21:12 -07006344 if (vmx->req_immediate_exit) {
6345 vmx_arm_hv_timer(vmx, 0);
6346 return;
6347 }
6348
Sean Christophersonf459a702018-08-27 15:21:11 -07006349 if (vmx->hv_deadline_tsc != -1) {
6350 tscl = rdtsc();
6351 if (vmx->hv_deadline_tsc > tscl)
6352 /* set_hv_timer ensures the delta fits in 32-bits */
6353 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
6354 cpu_preemption_timer_multi);
6355 else
6356 delta_tsc = 0;
6357
6358 vmx_arm_hv_timer(vmx, delta_tsc);
Yunhong Jiang64672c92016-06-13 14:19:59 -07006359 return;
Sean Christophersonf459a702018-08-27 15:21:11 -07006360 }
Yunhong Jiang64672c92016-06-13 14:19:59 -07006361
Sean Christophersonf459a702018-08-27 15:21:11 -07006362 if (vmx->loaded_vmcs->hv_timer_armed)
6363 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
6364 PIN_BASED_VMX_PREEMPTION_TIMER);
6365 vmx->loaded_vmcs->hv_timer_armed = false;
Yunhong Jiang64672c92016-06-13 14:19:59 -07006366}
6367
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006368void vmx_update_host_rsp(struct vcpu_vmx *vmx, unsigned long host_rsp)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006369{
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006370 if (unlikely(host_rsp != vmx->loaded_vmcs->host_state.rsp)) {
6371 vmx->loaded_vmcs->host_state.rsp = host_rsp;
6372 vmcs_writel(HOST_RSP, host_rsp);
6373 }
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006374}
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006375
Sean Christophersonfc2ba5a2019-01-25 07:41:19 -08006376bool __vmx_vcpu_run(struct vcpu_vmx *vmx, unsigned long *regs, bool launched);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006377
6378static void vmx_vcpu_run(struct kvm_vcpu *vcpu)
6379{
6380 struct vcpu_vmx *vmx = to_vmx(vcpu);
6381 unsigned long cr3, cr4;
6382
6383 /* Record the guest's net vcpu time for enforced NMI injections. */
6384 if (unlikely(!enable_vnmi &&
6385 vmx->loaded_vmcs->soft_vnmi_blocked))
6386 vmx->loaded_vmcs->entry_time = ktime_get();
6387
6388 /* Don't enter VMX if guest state is invalid, let the exit handler
6389 start emulation until we arrive back to a valid state */
6390 if (vmx->emulation_required)
6391 return;
6392
6393 if (vmx->ple_window_dirty) {
6394 vmx->ple_window_dirty = false;
6395 vmcs_write32(PLE_WINDOW, vmx->ple_window);
6396 }
6397
6398 if (vmx->nested.need_vmcs12_sync)
6399 nested_sync_from_vmcs12(vcpu);
6400
6401 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
6402 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
6403 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
6404 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
6405
6406 cr3 = __get_current_cr3_fast();
6407 if (unlikely(cr3 != vmx->loaded_vmcs->host_state.cr3)) {
6408 vmcs_writel(HOST_CR3, cr3);
6409 vmx->loaded_vmcs->host_state.cr3 = cr3;
6410 }
6411
6412 cr4 = cr4_read_shadow();
6413 if (unlikely(cr4 != vmx->loaded_vmcs->host_state.cr4)) {
6414 vmcs_writel(HOST_CR4, cr4);
6415 vmx->loaded_vmcs->host_state.cr4 = cr4;
6416 }
6417
6418 /* When single-stepping over STI and MOV SS, we must clear the
6419 * corresponding interruptibility bits in the guest state. Otherwise
6420 * vmentry fails as it then expects bit 14 (BS) in pending debug
6421 * exceptions being set, but that's not correct for the guest debugging
6422 * case. */
6423 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
6424 vmx_set_interrupt_shadow(vcpu, 0);
6425
WANG Chao1811d972019-04-12 15:55:39 +08006426 kvm_load_guest_xcr0(vcpu);
6427
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006428 if (static_cpu_has(X86_FEATURE_PKU) &&
6429 kvm_read_cr4_bits(vcpu, X86_CR4_PKE) &&
6430 vcpu->arch.pkru != vmx->host_pkru)
6431 __write_pkru(vcpu->arch.pkru);
6432
6433 pt_guest_enter(vmx);
6434
6435 atomic_switch_perf_msrs(vmx);
6436
6437 vmx_update_hv_timer(vcpu);
6438
6439 /*
6440 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
6441 * it's non-zero. Since vmentry is serialising on affected CPUs, there
6442 * is no need to worry about the conditional branch over the wrmsr
6443 * being speculatively taken.
6444 */
6445 x86_spec_ctrl_set_guest(vmx->spec_ctrl, 0);
6446
Sean Christophersonc823dd52019-01-25 07:41:13 -08006447 if (static_branch_unlikely(&vmx_l1d_should_flush))
6448 vmx_l1d_flush(vcpu);
6449
6450 if (vcpu->arch.cr2 != read_cr2())
6451 write_cr2(vcpu->arch.cr2);
6452
Sean Christophersonfc2ba5a2019-01-25 07:41:19 -08006453 vmx->fail = __vmx_vcpu_run(vmx, (unsigned long *)&vcpu->arch.regs,
6454 vmx->loaded_vmcs->launched);
Sean Christophersonc823dd52019-01-25 07:41:13 -08006455
6456 vcpu->arch.cr2 = read_cr2();
Avi Kivity6aa8b732006-12-10 02:21:36 -08006457
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006458 /*
6459 * We do not use IBRS in the kernel. If this vCPU has used the
6460 * SPEC_CTRL MSR it may have left it on; save the value and
6461 * turn it off. This is much more efficient than blindly adding
6462 * it to the atomic save/restore list. Especially as the former
6463 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
6464 *
6465 * For non-nested case:
6466 * If the L01 MSR bitmap does not intercept the MSR, then we need to
6467 * save it.
6468 *
6469 * For nested case:
6470 * If the L02 MSR bitmap does not intercept the MSR, then we need to
6471 * save it.
6472 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01006473 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01006474 vmx->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006475
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02006476 x86_spec_ctrl_restore_host(vmx->spec_ctrl, 0);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006477
David Woodhouse117cc7a2018-01-12 11:11:27 +00006478 /* Eliminate branch target predictions from guest mode */
6479 vmexit_fill_RSB();
6480
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01006481 /* All fields are clean at this point */
6482 if (static_branch_unlikely(&enable_evmcs))
6483 current_evmcs->hv_clean_fields |=
6484 HV_VMX_ENLIGHTENED_CLEAN_FIELD_ALL;
6485
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006486 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
Wanpeng Li74c55932017-11-29 01:31:20 -08006487 if (vmx->host_debugctlmsr)
6488 update_debugctlmsr(vmx->host_debugctlmsr);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006489
Avi Kivityaa67f602012-08-01 16:48:03 +03006490#ifndef CONFIG_X86_64
6491 /*
6492 * The sysexit path does not restore ds/es, so we must set them to
6493 * a reasonable value ourselves.
6494 *
Sean Christopherson6d6095b2018-07-23 12:32:44 -07006495 * We can't defer this to vmx_prepare_switch_to_host() since that
6496 * function may be executed in interrupt context, which saves and
6497 * restore segments around it, nullifying its effect.
Avi Kivityaa67f602012-08-01 16:48:03 +03006498 */
6499 loadsegment(ds, __USER_DS);
6500 loadsegment(es, __USER_DS);
6501#endif
6502
Avi Kivity6de4f3a2009-05-31 22:58:47 +03006503 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02006504 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02006505 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03006506 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02006507 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006508 vcpu->arch.regs_dirty = 0;
6509
Chao Peng2ef444f2018-10-24 16:05:12 +08006510 pt_guest_exit(vmx);
6511
Gleb Natapove0b890d2013-09-25 12:51:33 +03006512 /*
Xiao Guangrong1be0e612016-03-22 16:51:18 +08006513 * eager fpu is enabled if PKEY is supported and CR4 is switched
6514 * back on host, so it is safe to read guest PKRU from current
6515 * XSAVE.
6516 */
Paolo Bonzinib9dd21e2017-08-23 23:14:38 +02006517 if (static_cpu_has(X86_FEATURE_PKU) &&
6518 kvm_read_cr4_bits(vcpu, X86_CR4_PKE)) {
6519 vcpu->arch.pkru = __read_pkru();
6520 if (vcpu->arch.pkru != vmx->host_pkru)
Xiao Guangrong1be0e612016-03-22 16:51:18 +08006521 __write_pkru(vmx->host_pkru);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08006522 }
6523
WANG Chao1811d972019-04-12 15:55:39 +08006524 kvm_put_guest_xcr0(vcpu);
6525
Gleb Natapove0b890d2013-09-25 12:51:33 +03006526 vmx->nested.nested_run_pending = 0;
Jim Mattsonb060ca32017-09-14 16:31:42 -07006527 vmx->idt_vectoring_info = 0;
6528
6529 vmx->exit_reason = vmx->fail ? 0xdead : vmcs_read32(VM_EXIT_REASON);
6530 if (vmx->fail || (vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
6531 return;
6532
6533 vmx->loaded_vmcs->launched = 1;
6534 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Gleb Natapove0b890d2013-09-25 12:51:33 +03006535
Avi Kivity51aa01d2010-07-20 14:31:20 +03006536 vmx_complete_atomic_exit(vmx);
6537 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03006538 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006539}
6540
Sean Christopherson434a1e92018-03-20 12:17:18 -07006541static struct kvm *vmx_vm_alloc(void)
6542{
Ben Gardon41836832019-02-11 11:02:52 -08006543 struct kvm_vmx *kvm_vmx = __vmalloc(sizeof(struct kvm_vmx),
6544 GFP_KERNEL_ACCOUNT | __GFP_ZERO,
6545 PAGE_KERNEL);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07006546 return &kvm_vmx->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -07006547}
6548
6549static void vmx_vm_free(struct kvm *kvm)
6550{
Marc Orrd1e5b0e2018-05-15 04:37:37 -07006551 vfree(to_kvm_vmx(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -07006552}
6553
Avi Kivity6aa8b732006-12-10 02:21:36 -08006554static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
6555{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006556 struct vcpu_vmx *vmx = to_vmx(vcpu);
6557
Kai Huang843e4332015-01-28 10:54:28 +08006558 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08006559 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08006560 free_vpid(vmx->vpid);
Sean Christopherson55d23752018-12-03 13:53:18 -08006561 nested_vmx_free_vcpu(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006562 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006563 kfree(vmx->guest_msrs);
6564 kvm_vcpu_uninit(vcpu);
Marc Orrb666a4b2018-11-06 14:53:56 -08006565 kmem_cache_free(x86_fpu_cache, vmx->vcpu.arch.guest_fpu);
Rusty Russella4770342007-08-01 14:46:11 +10006566 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006567}
6568
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006569static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006570{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006571 int err;
Ben Gardon41836832019-02-11 11:02:52 -08006572 struct vcpu_vmx *vmx;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006573 unsigned long *msr_bitmap;
Avi Kivity15ad7142007-07-11 18:17:21 +03006574 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006575
Ben Gardon41836832019-02-11 11:02:52 -08006576 vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL_ACCOUNT);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006577 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006578 return ERR_PTR(-ENOMEM);
6579
Ben Gardon41836832019-02-11 11:02:52 -08006580 vmx->vcpu.arch.guest_fpu = kmem_cache_zalloc(x86_fpu_cache,
6581 GFP_KERNEL_ACCOUNT);
Marc Orrb666a4b2018-11-06 14:53:56 -08006582 if (!vmx->vcpu.arch.guest_fpu) {
6583 printk(KERN_ERR "kvm: failed to allocate vcpu's fpu\n");
6584 err = -ENOMEM;
6585 goto free_partial_vcpu;
6586 }
6587
Wanpeng Li991e7a02015-09-16 17:30:05 +08006588 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +08006589
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006590 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
6591 if (err)
6592 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08006593
Peter Feiner4e595162016-07-07 14:49:58 -07006594 err = -ENOMEM;
6595
6596 /*
6597 * If PML is turned on, failure on enabling PML just results in failure
6598 * of creating the vcpu, therefore we can simplify PML logic (by
6599 * avoiding dealing with cases, such as enabling PML partially on vcpus
6600 * for the guest, etc.
6601 */
6602 if (enable_pml) {
Ben Gardon41836832019-02-11 11:02:52 -08006603 vmx->pml_pg = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Peter Feiner4e595162016-07-07 14:49:58 -07006604 if (!vmx->pml_pg)
6605 goto uninit_vcpu;
6606 }
6607
Ben Gardon41836832019-02-11 11:02:52 -08006608 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL_ACCOUNT);
Paolo Bonzini03916db2014-07-24 14:21:57 +02006609 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
6610 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +03006611
Peter Feiner4e595162016-07-07 14:49:58 -07006612 if (!vmx->guest_msrs)
6613 goto free_pml;
Ingo Molnar965b58a2007-01-05 16:36:23 -08006614
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006615 err = alloc_loaded_vmcs(&vmx->vmcs01);
6616 if (err < 0)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006617 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006618
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006619 msr_bitmap = vmx->vmcs01.msr_bitmap;
Jim Mattson788fc1e2018-11-09 09:35:11 -08006620 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_TSC, MSR_TYPE_R);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006621 vmx_disable_intercept_for_msr(msr_bitmap, MSR_FS_BASE, MSR_TYPE_RW);
6622 vmx_disable_intercept_for_msr(msr_bitmap, MSR_GS_BASE, MSR_TYPE_RW);
6623 vmx_disable_intercept_for_msr(msr_bitmap, MSR_KERNEL_GS_BASE, MSR_TYPE_RW);
6624 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_CS, MSR_TYPE_RW);
6625 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_ESP, MSR_TYPE_RW);
6626 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_EIP, MSR_TYPE_RW);
6627 vmx->msr_bitmap_mode = 0;
6628
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006629 vmx->loaded_vmcs = &vmx->vmcs01;
Avi Kivity15ad7142007-07-11 18:17:21 +03006630 cpu = get_cpu();
6631 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10006632 vmx->vcpu.cpu = cpu;
David Hildenbrand12d79912017-08-24 20:51:26 +02006633 vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006634 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03006635 put_cpu();
Paolo Bonzini35754c92015-07-29 12:05:37 +02006636 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02006637 err = alloc_apic_access_page(kvm);
6638 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02006639 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02006640 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08006641
Sean Christophersone90008d2018-03-05 12:04:37 -08006642 if (enable_ept && !enable_unrestricted_guest) {
Tang Chenf51770e2014-09-16 18:41:59 +08006643 err = init_rmode_identity_map(kvm);
6644 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02006645 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006646 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08006647
Roman Kagan63aff652018-07-19 21:59:07 +03006648 if (nested)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006649 nested_vmx_setup_ctls_msrs(&vmx->nested.msrs,
Sean Christopherson7caaa712018-12-03 13:53:01 -08006650 vmx_capability.ept,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006651 kvm_vcpu_apicv_active(&vmx->vcpu));
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08006652 else
6653 memset(&vmx->nested.msrs, 0, sizeof(vmx->nested.msrs));
Wincy Vanb9c237b2015-02-03 23:56:30 +08006654
Wincy Van705699a2015-02-03 23:58:17 +08006655 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03006656 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03006657
Haozhong Zhang37e4c992016-06-22 14:59:55 +08006658 vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED;
6659
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02006660 /*
6661 * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR
6662 * or POSTED_INTR_WAKEUP_VECTOR.
6663 */
6664 vmx->pi_desc.nv = POSTED_INTR_VECTOR;
6665 vmx->pi_desc.sn = 1;
6666
Lan Tianyu53963a72018-12-06 15:34:36 +08006667 vmx->ept_pointer = INVALID_PAGE;
6668
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006669 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08006670
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006671free_vmcs:
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08006672 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006673free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006674 kfree(vmx->guest_msrs);
Peter Feiner4e595162016-07-07 14:49:58 -07006675free_pml:
6676 vmx_destroy_pml_buffer(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006677uninit_vcpu:
6678 kvm_vcpu_uninit(&vmx->vcpu);
6679free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +08006680 free_vpid(vmx->vpid);
Marc Orrb666a4b2018-11-06 14:53:56 -08006681 kmem_cache_free(x86_fpu_cache, vmx->vcpu.arch.guest_fpu);
6682free_partial_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10006683 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006684 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006685}
6686
Jiri Kosinad90a7a02018-07-13 16:23:25 +02006687#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"
6688#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 -04006689
Wanpeng Lib31c1142018-03-12 04:53:04 -07006690static int vmx_vm_init(struct kvm *kvm)
6691{
Tianyu Lan877ad952018-07-19 08:40:23 +00006692 spin_lock_init(&to_kvm_vmx(kvm)->ept_pointer_lock);
6693
Wanpeng Lib31c1142018-03-12 04:53:04 -07006694 if (!ple_gap)
6695 kvm->arch.pause_in_guest = true;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006696
Jiri Kosinad90a7a02018-07-13 16:23:25 +02006697 if (boot_cpu_has(X86_BUG_L1TF) && enable_ept) {
6698 switch (l1tf_mitigation) {
6699 case L1TF_MITIGATION_OFF:
6700 case L1TF_MITIGATION_FLUSH_NOWARN:
6701 /* 'I explicitly don't care' is set */
6702 break;
6703 case L1TF_MITIGATION_FLUSH:
6704 case L1TF_MITIGATION_FLUSH_NOSMT:
6705 case L1TF_MITIGATION_FULL:
6706 /*
6707 * Warn upon starting the first VM in a potentially
6708 * insecure environment.
6709 */
Josh Poimboeufb2849092019-01-30 07:13:58 -06006710 if (sched_smt_active())
Jiri Kosinad90a7a02018-07-13 16:23:25 +02006711 pr_warn_once(L1TF_MSG_SMT);
6712 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_NEVER)
6713 pr_warn_once(L1TF_MSG_L1D);
6714 break;
6715 case L1TF_MITIGATION_FULL_FORCE:
6716 /* Flush is enforced */
6717 break;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006718 }
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006719 }
Wanpeng Lib31c1142018-03-12 04:53:04 -07006720 return 0;
6721}
6722
Yang, Sheng002c7f72007-07-31 14:23:01 +03006723static void __init vmx_check_processor_compat(void *rtn)
6724{
6725 struct vmcs_config vmcs_conf;
Sean Christopherson7caaa712018-12-03 13:53:01 -08006726 struct vmx_capability vmx_cap;
Yang, Sheng002c7f72007-07-31 14:23:01 +03006727
6728 *(int *)rtn = 0;
Sean Christopherson7caaa712018-12-03 13:53:01 -08006729 if (setup_vmcs_config(&vmcs_conf, &vmx_cap) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03006730 *(int *)rtn = -EIO;
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08006731 if (nested)
6732 nested_vmx_setup_ctls_msrs(&vmcs_conf.nested, vmx_cap.ept,
6733 enable_apicv);
Yang, Sheng002c7f72007-07-31 14:23:01 +03006734 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
6735 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
6736 smp_processor_id());
6737 *(int *)rtn = -EIO;
6738 }
6739}
6740
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006741static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08006742{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08006743 u8 cache;
6744 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006745
Sheng Yang522c68c2009-04-27 20:35:43 +08006746 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +02006747 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +08006748 * 2. EPT with VT-d:
6749 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +02006750 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +08006751 * b. VT-d with snooping control feature: snooping control feature of
6752 * VT-d engine can guarantee the cache correctness. Just set it
6753 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08006754 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08006755 * consistent with host MTRR
6756 */
Paolo Bonzini606decd2015-10-01 13:12:47 +02006757 if (is_mmio) {
6758 cache = MTRR_TYPE_UNCACHABLE;
6759 goto exit;
6760 }
6761
6762 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08006763 ipat = VMX_EPT_IPAT_BIT;
6764 cache = MTRR_TYPE_WRBACK;
6765 goto exit;
6766 }
6767
6768 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
6769 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02006770 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08006771 cache = MTRR_TYPE_WRBACK;
6772 else
6773 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08006774 goto exit;
6775 }
6776
Xiao Guangrongff536042015-06-15 16:55:22 +08006777 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08006778
6779exit:
6780 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08006781}
6782
Sheng Yang17cc3932010-01-05 19:02:27 +08006783static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02006784{
Sheng Yang878403b2010-01-05 19:02:29 +08006785 if (enable_ept && !cpu_has_vmx_ept_1g_page())
6786 return PT_DIRECTORY_LEVEL;
6787 else
6788 /* For shadow and EPT supported 1GB page */
6789 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02006790}
6791
Xiao Guangrongfeda8052015-09-09 14:05:55 +08006792static void vmcs_set_secondary_exec_control(u32 new_ctl)
6793{
6794 /*
6795 * These bits in the secondary execution controls field
6796 * are dynamic, the others are mostly based on the hypervisor
6797 * architecture and the guest's CPUID. Do not touch the
6798 * dynamic bits.
6799 */
6800 u32 mask =
6801 SECONDARY_EXEC_SHADOW_VMCS |
6802 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Paolo Bonzini0367f202016-07-12 10:44:55 +02006803 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
6804 SECONDARY_EXEC_DESC;
Xiao Guangrongfeda8052015-09-09 14:05:55 +08006805
6806 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
6807
6808 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
6809 (new_ctl & ~mask) | (cur_ctl & mask));
6810}
6811
David Matlack8322ebb2016-11-29 18:14:09 -08006812/*
6813 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
6814 * (indicating "allowed-1") if they are supported in the guest's CPUID.
6815 */
6816static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
6817{
6818 struct vcpu_vmx *vmx = to_vmx(vcpu);
6819 struct kvm_cpuid_entry2 *entry;
6820
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006821 vmx->nested.msrs.cr0_fixed1 = 0xffffffff;
6822 vmx->nested.msrs.cr4_fixed1 = X86_CR4_PCE;
David Matlack8322ebb2016-11-29 18:14:09 -08006823
6824#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
6825 if (entry && (entry->_reg & (_cpuid_mask))) \
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006826 vmx->nested.msrs.cr4_fixed1 |= (_cr4_mask); \
David Matlack8322ebb2016-11-29 18:14:09 -08006827} while (0)
6828
6829 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
6830 cr4_fixed1_update(X86_CR4_VME, edx, bit(X86_FEATURE_VME));
6831 cr4_fixed1_update(X86_CR4_PVI, edx, bit(X86_FEATURE_VME));
6832 cr4_fixed1_update(X86_CR4_TSD, edx, bit(X86_FEATURE_TSC));
6833 cr4_fixed1_update(X86_CR4_DE, edx, bit(X86_FEATURE_DE));
6834 cr4_fixed1_update(X86_CR4_PSE, edx, bit(X86_FEATURE_PSE));
6835 cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE));
6836 cr4_fixed1_update(X86_CR4_MCE, edx, bit(X86_FEATURE_MCE));
6837 cr4_fixed1_update(X86_CR4_PGE, edx, bit(X86_FEATURE_PGE));
6838 cr4_fixed1_update(X86_CR4_OSFXSR, edx, bit(X86_FEATURE_FXSR));
6839 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, bit(X86_FEATURE_XMM));
6840 cr4_fixed1_update(X86_CR4_VMXE, ecx, bit(X86_FEATURE_VMX));
6841 cr4_fixed1_update(X86_CR4_SMXE, ecx, bit(X86_FEATURE_SMX));
6842 cr4_fixed1_update(X86_CR4_PCIDE, ecx, bit(X86_FEATURE_PCID));
6843 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, bit(X86_FEATURE_XSAVE));
6844
6845 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
6846 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, bit(X86_FEATURE_FSGSBASE));
6847 cr4_fixed1_update(X86_CR4_SMEP, ebx, bit(X86_FEATURE_SMEP));
6848 cr4_fixed1_update(X86_CR4_SMAP, ebx, bit(X86_FEATURE_SMAP));
6849 cr4_fixed1_update(X86_CR4_PKE, ecx, bit(X86_FEATURE_PKU));
Paolo Bonzinic4ad77e2017-11-13 14:23:59 +01006850 cr4_fixed1_update(X86_CR4_UMIP, ecx, bit(X86_FEATURE_UMIP));
David Matlack8322ebb2016-11-29 18:14:09 -08006851
6852#undef cr4_fixed1_update
6853}
6854
Liran Alon5f76f6f2018-09-14 03:25:52 +03006855static void nested_vmx_entry_exit_ctls_update(struct kvm_vcpu *vcpu)
6856{
6857 struct vcpu_vmx *vmx = to_vmx(vcpu);
6858
6859 if (kvm_mpx_supported()) {
6860 bool mpx_enabled = guest_cpuid_has(vcpu, X86_FEATURE_MPX);
6861
6862 if (mpx_enabled) {
6863 vmx->nested.msrs.entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
6864 vmx->nested.msrs.exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
6865 } else {
6866 vmx->nested.msrs.entry_ctls_high &= ~VM_ENTRY_LOAD_BNDCFGS;
6867 vmx->nested.msrs.exit_ctls_high &= ~VM_EXIT_CLEAR_BNDCFGS;
6868 }
6869 }
6870}
6871
Liran Alone51bfdb2019-03-25 21:09:17 +02006872static bool guest_cpuid_has_pmu(struct kvm_vcpu *vcpu)
6873{
6874 struct kvm_cpuid_entry2 *entry;
6875 union cpuid10_eax eax;
6876
6877 entry = kvm_find_cpuid_entry(vcpu, 0xa, 0);
6878 if (!entry)
6879 return false;
6880
6881 eax.full = entry->eax;
6882 return (eax.split.version_id > 0);
6883}
6884
6885static void nested_vmx_procbased_ctls_update(struct kvm_vcpu *vcpu)
6886{
6887 struct vcpu_vmx *vmx = to_vmx(vcpu);
6888 bool pmu_enabled = guest_cpuid_has_pmu(vcpu);
6889
6890 if (pmu_enabled)
6891 vmx->nested.msrs.procbased_ctls_high |= CPU_BASED_RDPMC_EXITING;
6892 else
6893 vmx->nested.msrs.procbased_ctls_high &= ~CPU_BASED_RDPMC_EXITING;
6894}
6895
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08006896static void update_intel_pt_cfg(struct kvm_vcpu *vcpu)
6897{
6898 struct vcpu_vmx *vmx = to_vmx(vcpu);
6899 struct kvm_cpuid_entry2 *best = NULL;
6900 int i;
6901
6902 for (i = 0; i < PT_CPUID_LEAVES; i++) {
6903 best = kvm_find_cpuid_entry(vcpu, 0x14, i);
6904 if (!best)
6905 return;
6906 vmx->pt_desc.caps[CPUID_EAX + i*PT_CPUID_REGS_NUM] = best->eax;
6907 vmx->pt_desc.caps[CPUID_EBX + i*PT_CPUID_REGS_NUM] = best->ebx;
6908 vmx->pt_desc.caps[CPUID_ECX + i*PT_CPUID_REGS_NUM] = best->ecx;
6909 vmx->pt_desc.caps[CPUID_EDX + i*PT_CPUID_REGS_NUM] = best->edx;
6910 }
6911
6912 /* Get the number of configurable Address Ranges for filtering */
6913 vmx->pt_desc.addr_range = intel_pt_validate_cap(vmx->pt_desc.caps,
6914 PT_CAP_num_address_ranges);
6915
6916 /* Initialize and clear the no dependency bits */
6917 vmx->pt_desc.ctl_bitmask = ~(RTIT_CTL_TRACEEN | RTIT_CTL_OS |
6918 RTIT_CTL_USR | RTIT_CTL_TSC_EN | RTIT_CTL_DISRETC);
6919
6920 /*
6921 * If CPUID.(EAX=14H,ECX=0):EBX[0]=1 CR3Filter can be set otherwise
6922 * will inject an #GP
6923 */
6924 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_cr3_filtering))
6925 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_CR3EN;
6926
6927 /*
6928 * If CPUID.(EAX=14H,ECX=0):EBX[1]=1 CYCEn, CycThresh and
6929 * PSBFreq can be set
6930 */
6931 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc))
6932 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_CYCLEACC |
6933 RTIT_CTL_CYC_THRESH | RTIT_CTL_PSB_FREQ);
6934
6935 /*
6936 * If CPUID.(EAX=14H,ECX=0):EBX[3]=1 MTCEn BranchEn and
6937 * MTCFreq can be set
6938 */
6939 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc))
6940 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_MTC_EN |
6941 RTIT_CTL_BRANCH_EN | RTIT_CTL_MTC_RANGE);
6942
6943 /* If CPUID.(EAX=14H,ECX=0):EBX[4]=1 FUPonPTW and PTWEn can be set */
6944 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_ptwrite))
6945 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_FUP_ON_PTW |
6946 RTIT_CTL_PTW_EN);
6947
6948 /* If CPUID.(EAX=14H,ECX=0):EBX[5]=1 PwrEvEn can be set */
6949 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_power_event_trace))
6950 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_PWR_EVT_EN;
6951
6952 /* If CPUID.(EAX=14H,ECX=0):ECX[0]=1 ToPA can be set */
6953 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_topa_output))
6954 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_TOPA;
6955
6956 /* If CPUID.(EAX=14H,ECX=0):ECX[3]=1 FabircEn can be set */
6957 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_output_subsys))
6958 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_FABRIC_EN;
6959
6960 /* unmask address range configure area */
6961 for (i = 0; i < vmx->pt_desc.addr_range; i++)
Gustavo A. R. Silvad14eff12018-12-26 14:40:59 -06006962 vmx->pt_desc.ctl_bitmask &= ~(0xfULL << (32 + i * 4));
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08006963}
6964
Sheng Yang0e851882009-12-18 16:48:46 +08006965static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
6966{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08006967 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08006968
Paolo Bonzini80154d72017-08-24 13:55:35 +02006969 if (cpu_has_secondary_exec_ctrls()) {
6970 vmx_compute_secondary_exec_control(vmx);
6971 vmcs_set_secondary_exec_control(vmx->secondary_exec_control);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08006972 }
Mao, Junjiead756a12012-07-02 01:18:48 +00006973
Haozhong Zhang37e4c992016-06-22 14:59:55 +08006974 if (nested_vmx_allowed(vcpu))
6975 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
6976 FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
6977 else
6978 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
6979 ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
David Matlack8322ebb2016-11-29 18:14:09 -08006980
Liran Alon5f76f6f2018-09-14 03:25:52 +03006981 if (nested_vmx_allowed(vcpu)) {
David Matlack8322ebb2016-11-29 18:14:09 -08006982 nested_vmx_cr_fixed1_bits_update(vcpu);
Liran Alon5f76f6f2018-09-14 03:25:52 +03006983 nested_vmx_entry_exit_ctls_update(vcpu);
Liran Alone51bfdb2019-03-25 21:09:17 +02006984 nested_vmx_procbased_ctls_update(vcpu);
Liran Alon5f76f6f2018-09-14 03:25:52 +03006985 }
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08006986
6987 if (boot_cpu_has(X86_FEATURE_INTEL_PT) &&
6988 guest_cpuid_has(vcpu, X86_FEATURE_INTEL_PT))
6989 update_intel_pt_cfg(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08006990}
6991
Joerg Roedeld4330ef2010-04-22 12:33:11 +02006992static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
6993{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03006994 if (func == 1 && nested)
6995 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02006996}
6997
Sean Christophersond264ee02018-08-27 15:21:12 -07006998static void vmx_request_immediate_exit(struct kvm_vcpu *vcpu)
6999{
7000 to_vmx(vcpu)->req_immediate_exit = true;
7001}
7002
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007003static int vmx_check_intercept(struct kvm_vcpu *vcpu,
7004 struct x86_instruction_info *info,
7005 enum x86_intercept_stage stage)
7006{
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007007 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7008 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
7009
7010 /*
7011 * RDPID causes #UD if disabled through secondary execution controls.
7012 * Because it is marked as EmulateOnUD, we need to intercept it here.
7013 */
7014 if (info->intercept == x86_intercept_rdtscp &&
7015 !nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDTSCP)) {
7016 ctxt->exception.vector = UD_VECTOR;
7017 ctxt->exception.error_code_valid = false;
7018 return X86EMUL_PROPAGATE_FAULT;
7019 }
7020
7021 /* TODO: check more intercepts... */
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007022 return X86EMUL_CONTINUE;
7023}
7024
Yunhong Jiang64672c92016-06-13 14:19:59 -07007025#ifdef CONFIG_X86_64
7026/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
7027static inline int u64_shl_div_u64(u64 a, unsigned int shift,
7028 u64 divisor, u64 *result)
7029{
7030 u64 low = a << shift, high = a >> (64 - shift);
7031
7032 /* To avoid the overflow on divq */
7033 if (high >= divisor)
7034 return 1;
7035
7036 /* Low hold the result, high hold rem which is discarded */
7037 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
7038 "rm" (divisor), "0" (low), "1" (high));
7039 *result = low;
7040
7041 return 0;
7042}
7043
Sean Christophersonf9927982019-04-16 13:32:46 -07007044static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc,
7045 bool *expired)
Yunhong Jiang64672c92016-06-13 14:19:59 -07007046{
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007047 struct vcpu_vmx *vmx;
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007048 u64 tscl, guest_tscl, delta_tsc, lapic_timer_advance_cycles;
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007049
7050 if (kvm_mwait_in_guest(vcpu->kvm))
7051 return -EOPNOTSUPP;
7052
7053 vmx = to_vmx(vcpu);
7054 tscl = rdtsc();
7055 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
7056 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007057 lapic_timer_advance_cycles = nsec_to_cycles(vcpu, lapic_timer_advance_ns);
7058
7059 if (delta_tsc > lapic_timer_advance_cycles)
7060 delta_tsc -= lapic_timer_advance_cycles;
7061 else
7062 delta_tsc = 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007063
7064 /* Convert to host delta tsc if tsc scaling is enabled */
7065 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
Sean Christopherson0967fa12019-04-16 13:32:48 -07007066 delta_tsc && u64_shl_div_u64(delta_tsc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007067 kvm_tsc_scaling_ratio_frac_bits,
Sean Christopherson0967fa12019-04-16 13:32:48 -07007068 vcpu->arch.tsc_scaling_ratio, &delta_tsc))
Yunhong Jiang64672c92016-06-13 14:19:59 -07007069 return -ERANGE;
7070
7071 /*
7072 * If the delta tsc can't fit in the 32 bit after the multi shift,
7073 * we can't use the preemption timer.
7074 * It's possible that it fits on later vmentries, but checking
7075 * on every vmentry is costly so we just use an hrtimer.
7076 */
7077 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
7078 return -ERANGE;
7079
7080 vmx->hv_deadline_tsc = tscl + delta_tsc;
Sean Christophersonf9927982019-04-16 13:32:46 -07007081 *expired = !delta_tsc;
7082 return 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007083}
7084
7085static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
7086{
Sean Christophersonf459a702018-08-27 15:21:11 -07007087 to_vmx(vcpu)->hv_deadline_tsc = -1;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007088}
7089#endif
7090
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007091static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007092{
Wanpeng Lib31c1142018-03-12 04:53:04 -07007093 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007094 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007095}
7096
Kai Huang843e4332015-01-28 10:54:28 +08007097static void vmx_slot_enable_log_dirty(struct kvm *kvm,
7098 struct kvm_memory_slot *slot)
7099{
7100 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
7101 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
7102}
7103
7104static void vmx_slot_disable_log_dirty(struct kvm *kvm,
7105 struct kvm_memory_slot *slot)
7106{
7107 kvm_mmu_slot_set_dirty(kvm, slot);
7108}
7109
7110static void vmx_flush_log_dirty(struct kvm *kvm)
7111{
7112 kvm_flush_pml_buffers(kvm);
7113}
7114
Bandan Dasc5f983f2017-05-05 15:25:14 -04007115static int vmx_write_pml_buffer(struct kvm_vcpu *vcpu)
7116{
7117 struct vmcs12 *vmcs12;
7118 struct vcpu_vmx *vmx = to_vmx(vcpu);
7119 gpa_t gpa;
7120 struct page *page = NULL;
7121 u64 *pml_address;
7122
7123 if (is_guest_mode(vcpu)) {
7124 WARN_ON_ONCE(vmx->nested.pml_full);
7125
7126 /*
7127 * Check if PML is enabled for the nested guest.
7128 * Whether eptp bit 6 is set is already checked
7129 * as part of A/D emulation.
7130 */
7131 vmcs12 = get_vmcs12(vcpu);
7132 if (!nested_cpu_has_pml(vmcs12))
7133 return 0;
7134
Dan Carpenter47698862017-05-10 22:43:17 +03007135 if (vmcs12->guest_pml_index >= PML_ENTITY_NUM) {
Bandan Dasc5f983f2017-05-05 15:25:14 -04007136 vmx->nested.pml_full = true;
7137 return 1;
7138 }
7139
7140 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS) & ~0xFFFull;
7141
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02007142 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->pml_address);
7143 if (is_error_page(page))
Bandan Dasc5f983f2017-05-05 15:25:14 -04007144 return 0;
7145
7146 pml_address = kmap(page);
7147 pml_address[vmcs12->guest_pml_index--] = gpa;
7148 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007149 kvm_release_page_clean(page);
Bandan Dasc5f983f2017-05-05 15:25:14 -04007150 }
7151
7152 return 0;
7153}
7154
Kai Huang843e4332015-01-28 10:54:28 +08007155static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
7156 struct kvm_memory_slot *memslot,
7157 gfn_t offset, unsigned long mask)
7158{
7159 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
7160}
7161
Paolo Bonzinicd39e112017-06-06 12:57:04 +02007162static void __pi_post_block(struct kvm_vcpu *vcpu)
7163{
7164 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
7165 struct pi_desc old, new;
7166 unsigned int dest;
Paolo Bonzinicd39e112017-06-06 12:57:04 +02007167
7168 do {
7169 old.control = new.control = pi_desc->control;
Paolo Bonzini8b306e22017-06-06 12:57:05 +02007170 WARN(old.nv != POSTED_INTR_WAKEUP_VECTOR,
7171 "Wakeup handler not enabled while the VCPU is blocked\n");
Paolo Bonzinicd39e112017-06-06 12:57:04 +02007172
7173 dest = cpu_physical_id(vcpu->cpu);
7174
7175 if (x2apic_enabled())
7176 new.ndst = dest;
7177 else
7178 new.ndst = (dest << 8) & 0xFF00;
7179
Paolo Bonzinicd39e112017-06-06 12:57:04 +02007180 /* set 'NV' to 'notification vector' */
7181 new.nv = POSTED_INTR_VECTOR;
Paolo Bonzinic0a16662017-09-28 17:58:41 +02007182 } while (cmpxchg64(&pi_desc->control, old.control,
7183 new.control) != old.control);
Paolo Bonzinicd39e112017-06-06 12:57:04 +02007184
Paolo Bonzini8b306e22017-06-06 12:57:05 +02007185 if (!WARN_ON_ONCE(vcpu->pre_pcpu == -1)) {
7186 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
Paolo Bonzinicd39e112017-06-06 12:57:04 +02007187 list_del(&vcpu->blocked_vcpu_list);
Paolo Bonzini8b306e22017-06-06 12:57:05 +02007188 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
Paolo Bonzinicd39e112017-06-06 12:57:04 +02007189 vcpu->pre_pcpu = -1;
7190 }
7191}
7192
Feng Wuefc64402015-09-18 22:29:51 +08007193/*
Feng Wubf9f6ac2015-09-18 22:29:55 +08007194 * This routine does the following things for vCPU which is going
7195 * to be blocked if VT-d PI is enabled.
7196 * - Store the vCPU to the wakeup list, so when interrupts happen
7197 * we can find the right vCPU to wake up.
7198 * - Change the Posted-interrupt descriptor as below:
7199 * 'NDST' <-- vcpu->pre_pcpu
7200 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
7201 * - If 'ON' is set during this process, which means at least one
7202 * interrupt is posted for this vCPU, we cannot block it, in
7203 * this case, return 1, otherwise, return 0.
7204 *
7205 */
Yunhong Jiangbc225122016-06-13 14:19:58 -07007206static int pi_pre_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +08007207{
Feng Wubf9f6ac2015-09-18 22:29:55 +08007208 unsigned int dest;
7209 struct pi_desc old, new;
7210 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
7211
7212 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08007213 !irq_remapping_cap(IRQ_POSTING_CAP) ||
7214 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +08007215 return 0;
7216
Paolo Bonzini8b306e22017-06-06 12:57:05 +02007217 WARN_ON(irqs_disabled());
7218 local_irq_disable();
7219 if (!WARN_ON_ONCE(vcpu->pre_pcpu != -1)) {
7220 vcpu->pre_pcpu = vcpu->cpu;
7221 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
7222 list_add_tail(&vcpu->blocked_vcpu_list,
7223 &per_cpu(blocked_vcpu_on_cpu,
7224 vcpu->pre_pcpu));
7225 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
7226 }
Feng Wubf9f6ac2015-09-18 22:29:55 +08007227
7228 do {
7229 old.control = new.control = pi_desc->control;
7230
Feng Wubf9f6ac2015-09-18 22:29:55 +08007231 WARN((pi_desc->sn == 1),
7232 "Warning: SN field of posted-interrupts "
7233 "is set before blocking\n");
7234
7235 /*
7236 * Since vCPU can be preempted during this process,
7237 * vcpu->cpu could be different with pre_pcpu, we
7238 * need to set pre_pcpu as the destination of wakeup
7239 * notification event, then we can find the right vCPU
7240 * to wakeup in wakeup handler if interrupts happen
7241 * when the vCPU is in blocked state.
7242 */
7243 dest = cpu_physical_id(vcpu->pre_pcpu);
7244
7245 if (x2apic_enabled())
7246 new.ndst = dest;
7247 else
7248 new.ndst = (dest << 8) & 0xFF00;
7249
7250 /* set 'NV' to 'wakeup vector' */
7251 new.nv = POSTED_INTR_WAKEUP_VECTOR;
Paolo Bonzinic0a16662017-09-28 17:58:41 +02007252 } while (cmpxchg64(&pi_desc->control, old.control,
7253 new.control) != old.control);
Feng Wubf9f6ac2015-09-18 22:29:55 +08007254
Paolo Bonzini8b306e22017-06-06 12:57:05 +02007255 /* We should not block the vCPU if an interrupt is posted for it. */
7256 if (pi_test_on(pi_desc) == 1)
7257 __pi_post_block(vcpu);
7258
7259 local_irq_enable();
7260 return (vcpu->pre_pcpu == -1);
Feng Wubf9f6ac2015-09-18 22:29:55 +08007261}
7262
Yunhong Jiangbc225122016-06-13 14:19:58 -07007263static int vmx_pre_block(struct kvm_vcpu *vcpu)
7264{
7265 if (pi_pre_block(vcpu))
7266 return 1;
7267
Yunhong Jiang64672c92016-06-13 14:19:59 -07007268 if (kvm_lapic_hv_timer_in_use(vcpu))
7269 kvm_lapic_switch_to_sw_timer(vcpu);
7270
Yunhong Jiangbc225122016-06-13 14:19:58 -07007271 return 0;
7272}
7273
7274static void pi_post_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +08007275{
Paolo Bonzini8b306e22017-06-06 12:57:05 +02007276 if (vcpu->pre_pcpu == -1)
Feng Wubf9f6ac2015-09-18 22:29:55 +08007277 return;
7278
Paolo Bonzini8b306e22017-06-06 12:57:05 +02007279 WARN_ON(irqs_disabled());
7280 local_irq_disable();
Paolo Bonzinicd39e112017-06-06 12:57:04 +02007281 __pi_post_block(vcpu);
Paolo Bonzini8b306e22017-06-06 12:57:05 +02007282 local_irq_enable();
Feng Wubf9f6ac2015-09-18 22:29:55 +08007283}
7284
Yunhong Jiangbc225122016-06-13 14:19:58 -07007285static void vmx_post_block(struct kvm_vcpu *vcpu)
7286{
Yunhong Jiang64672c92016-06-13 14:19:59 -07007287 if (kvm_x86_ops->set_hv_timer)
7288 kvm_lapic_switch_to_hv_timer(vcpu);
7289
Yunhong Jiangbc225122016-06-13 14:19:58 -07007290 pi_post_block(vcpu);
7291}
7292
Feng Wubf9f6ac2015-09-18 22:29:55 +08007293/*
Feng Wuefc64402015-09-18 22:29:51 +08007294 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
7295 *
7296 * @kvm: kvm
7297 * @host_irq: host irq of the interrupt
7298 * @guest_irq: gsi of the interrupt
7299 * @set: set or unset PI
7300 * returns 0 on success, < 0 on failure
7301 */
7302static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
7303 uint32_t guest_irq, bool set)
7304{
7305 struct kvm_kernel_irq_routing_entry *e;
7306 struct kvm_irq_routing_table *irq_rt;
7307 struct kvm_lapic_irq irq;
7308 struct kvm_vcpu *vcpu;
7309 struct vcpu_data vcpu_info;
Jan H. Schönherr3a8b0672017-09-07 19:02:30 +01007310 int idx, ret = 0;
Feng Wuefc64402015-09-18 22:29:51 +08007311
7312 if (!kvm_arch_has_assigned_device(kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08007313 !irq_remapping_cap(IRQ_POSTING_CAP) ||
7314 !kvm_vcpu_apicv_active(kvm->vcpus[0]))
Feng Wuefc64402015-09-18 22:29:51 +08007315 return 0;
7316
7317 idx = srcu_read_lock(&kvm->irq_srcu);
7318 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
Jan H. Schönherr3a8b0672017-09-07 19:02:30 +01007319 if (guest_irq >= irq_rt->nr_rt_entries ||
7320 hlist_empty(&irq_rt->map[guest_irq])) {
7321 pr_warn_once("no route for guest_irq %u/%u (broken user space?)\n",
7322 guest_irq, irq_rt->nr_rt_entries);
7323 goto out;
7324 }
Feng Wuefc64402015-09-18 22:29:51 +08007325
7326 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
7327 if (e->type != KVM_IRQ_ROUTING_MSI)
7328 continue;
7329 /*
7330 * VT-d PI cannot support posting multicast/broadcast
7331 * interrupts to a vCPU, we still use interrupt remapping
7332 * for these kind of interrupts.
7333 *
7334 * For lowest-priority interrupts, we only support
7335 * those with single CPU as the destination, e.g. user
7336 * configures the interrupts via /proc/irq or uses
7337 * irqbalance to make the interrupts single-CPU.
7338 *
7339 * We will support full lowest-priority interrupt later.
7340 */
7341
Radim Krčmář371313132016-07-12 22:09:27 +02007342 kvm_set_msi_irq(kvm, e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +08007343 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
7344 /*
7345 * Make sure the IRTE is in remapped mode if
7346 * we don't handle it in posted mode.
7347 */
7348 ret = irq_set_vcpu_affinity(host_irq, NULL);
7349 if (ret < 0) {
7350 printk(KERN_INFO
7351 "failed to back to remapped mode, irq: %u\n",
7352 host_irq);
7353 goto out;
7354 }
7355
Feng Wuefc64402015-09-18 22:29:51 +08007356 continue;
Feng Wu23a1c252016-01-25 16:53:32 +08007357 }
Feng Wuefc64402015-09-18 22:29:51 +08007358
7359 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
7360 vcpu_info.vector = irq.vector;
7361
hu huajun2698d822018-04-11 15:16:40 +08007362 trace_kvm_pi_irte_update(host_irq, vcpu->vcpu_id, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +08007363 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
7364
7365 if (set)
7366 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
Haozhong Zhangdc91f2eb2017-09-18 09:56:49 +08007367 else
Feng Wuefc64402015-09-18 22:29:51 +08007368 ret = irq_set_vcpu_affinity(host_irq, NULL);
Feng Wuefc64402015-09-18 22:29:51 +08007369
7370 if (ret < 0) {
7371 printk(KERN_INFO "%s: failed to update PI IRTE\n",
7372 __func__);
7373 goto out;
7374 }
7375 }
7376
7377 ret = 0;
7378out:
7379 srcu_read_unlock(&kvm->irq_srcu, idx);
7380 return ret;
7381}
7382
Ashok Rajc45dcc72016-06-22 14:59:56 +08007383static void vmx_setup_mce(struct kvm_vcpu *vcpu)
7384{
7385 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
7386 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
7387 FEATURE_CONTROL_LMCE;
7388 else
7389 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
7390 ~FEATURE_CONTROL_LMCE;
7391}
7392
Ladi Prosek72d7b372017-10-11 16:54:41 +02007393static int vmx_smi_allowed(struct kvm_vcpu *vcpu)
7394{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007395 /* we need a nested vmexit to enter SMM, postpone if run is pending */
7396 if (to_vmx(vcpu)->nested.nested_run_pending)
7397 return 0;
Ladi Prosek72d7b372017-10-11 16:54:41 +02007398 return 1;
7399}
7400
Ladi Prosek0234bf82017-10-11 16:54:40 +02007401static int vmx_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
7402{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007403 struct vcpu_vmx *vmx = to_vmx(vcpu);
7404
7405 vmx->nested.smm.guest_mode = is_guest_mode(vcpu);
7406 if (vmx->nested.smm.guest_mode)
7407 nested_vmx_vmexit(vcpu, -1, 0, 0);
7408
7409 vmx->nested.smm.vmxon = vmx->nested.vmxon;
7410 vmx->nested.vmxon = false;
Wanpeng Licaa057a2018-03-12 04:53:03 -07007411 vmx_clear_hlt(vcpu);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007412 return 0;
7413}
7414
Sean Christophersoned193212019-04-02 08:03:09 -07007415static int vmx_pre_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007416{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007417 struct vcpu_vmx *vmx = to_vmx(vcpu);
7418 int ret;
7419
7420 if (vmx->nested.smm.vmxon) {
7421 vmx->nested.vmxon = true;
7422 vmx->nested.smm.vmxon = false;
7423 }
7424
7425 if (vmx->nested.smm.guest_mode) {
Sean Christophersona633e412018-09-26 09:23:47 -07007426 ret = nested_vmx_enter_non_root_mode(vcpu, false);
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007427 if (ret)
7428 return ret;
7429
7430 vmx->nested.smm.guest_mode = false;
7431 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02007432 return 0;
7433}
7434
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007435static int enable_smi_window(struct kvm_vcpu *vcpu)
7436{
7437 return 0;
7438}
7439
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007440static bool vmx_need_emulation_on_page_fault(struct kvm_vcpu *vcpu)
7441{
7442 return 0;
7443}
7444
Sean Christophersona3203382018-12-03 13:53:11 -08007445static __init int hardware_setup(void)
7446{
7447 unsigned long host_bndcfgs;
7448 int r, i;
7449
7450 rdmsrl_safe(MSR_EFER, &host_efer);
7451
7452 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
7453 kvm_define_shared_msr(i, vmx_msr_index[i]);
7454
7455 if (setup_vmcs_config(&vmcs_config, &vmx_capability) < 0)
7456 return -EIO;
7457
7458 if (boot_cpu_has(X86_FEATURE_NX))
7459 kvm_enable_efer_bits(EFER_NX);
7460
7461 if (boot_cpu_has(X86_FEATURE_MPX)) {
7462 rdmsrl(MSR_IA32_BNDCFGS, host_bndcfgs);
7463 WARN_ONCE(host_bndcfgs, "KVM: BNDCFGS in host will be lost");
7464 }
7465
7466 if (boot_cpu_has(X86_FEATURE_XSAVES))
7467 rdmsrl(MSR_IA32_XSS, host_xss);
7468
7469 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
7470 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
7471 enable_vpid = 0;
7472
7473 if (!cpu_has_vmx_ept() ||
7474 !cpu_has_vmx_ept_4levels() ||
7475 !cpu_has_vmx_ept_mt_wb() ||
7476 !cpu_has_vmx_invept_global())
7477 enable_ept = 0;
7478
7479 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
7480 enable_ept_ad_bits = 0;
7481
7482 if (!cpu_has_vmx_unrestricted_guest() || !enable_ept)
7483 enable_unrestricted_guest = 0;
7484
7485 if (!cpu_has_vmx_flexpriority())
7486 flexpriority_enabled = 0;
7487
7488 if (!cpu_has_virtual_nmis())
7489 enable_vnmi = 0;
7490
7491 /*
7492 * set_apic_access_page_addr() is used to reload apic access
7493 * page upon invalidation. No need to do anything if not
7494 * using the APIC_ACCESS_ADDR VMCS field.
7495 */
7496 if (!flexpriority_enabled)
7497 kvm_x86_ops->set_apic_access_page_addr = NULL;
7498
7499 if (!cpu_has_vmx_tpr_shadow())
7500 kvm_x86_ops->update_cr8_intercept = NULL;
7501
7502 if (enable_ept && !cpu_has_vmx_ept_2m_page())
7503 kvm_disable_largepages();
7504
7505#if IS_ENABLED(CONFIG_HYPERV)
7506 if (ms_hyperv.nested_features & HV_X64_NESTED_GUEST_MAPPING_FLUSH
Lan Tianyu1f3a3e42018-12-06 21:21:07 +08007507 && enable_ept) {
7508 kvm_x86_ops->tlb_remote_flush = hv_remote_flush_tlb;
7509 kvm_x86_ops->tlb_remote_flush_with_range =
7510 hv_remote_flush_tlb_with_range;
7511 }
Sean Christophersona3203382018-12-03 13:53:11 -08007512#endif
7513
7514 if (!cpu_has_vmx_ple()) {
7515 ple_gap = 0;
7516 ple_window = 0;
7517 ple_window_grow = 0;
7518 ple_window_max = 0;
7519 ple_window_shrink = 0;
7520 }
7521
7522 if (!cpu_has_vmx_apicv()) {
7523 enable_apicv = 0;
7524 kvm_x86_ops->sync_pir_to_irr = NULL;
7525 }
7526
7527 if (cpu_has_vmx_tsc_scaling()) {
7528 kvm_has_tsc_control = true;
7529 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
7530 kvm_tsc_scaling_ratio_frac_bits = 48;
7531 }
7532
7533 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
7534
7535 if (enable_ept)
7536 vmx_enable_tdp();
7537 else
7538 kvm_disable_tdp();
7539
Sean Christophersona3203382018-12-03 13:53:11 -08007540 /*
7541 * Only enable PML when hardware supports PML feature, and both EPT
7542 * and EPT A/D bit features are enabled -- PML depends on them to work.
7543 */
7544 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
7545 enable_pml = 0;
7546
7547 if (!enable_pml) {
7548 kvm_x86_ops->slot_enable_log_dirty = NULL;
7549 kvm_x86_ops->slot_disable_log_dirty = NULL;
7550 kvm_x86_ops->flush_log_dirty = NULL;
7551 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
7552 }
7553
7554 if (!cpu_has_vmx_preemption_timer())
7555 kvm_x86_ops->request_immediate_exit = __kvm_request_immediate_exit;
7556
7557 if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) {
7558 u64 vmx_msr;
7559
7560 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
7561 cpu_preemption_timer_multi =
7562 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
7563 } else {
7564 kvm_x86_ops->set_hv_timer = NULL;
7565 kvm_x86_ops->cancel_hv_timer = NULL;
7566 }
7567
Sean Christophersona3203382018-12-03 13:53:11 -08007568 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
Sean Christophersona3203382018-12-03 13:53:11 -08007569
7570 kvm_mce_cap_supported |= MCG_LMCE_P;
7571
Chao Pengf99e3da2018-10-24 16:05:10 +08007572 if (pt_mode != PT_MODE_SYSTEM && pt_mode != PT_MODE_HOST_GUEST)
7573 return -EINVAL;
7574 if (!enable_ept || !cpu_has_vmx_intel_pt())
7575 pt_mode = PT_MODE_SYSTEM;
7576
Sean Christophersona3203382018-12-03 13:53:11 -08007577 if (nested) {
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08007578 nested_vmx_setup_ctls_msrs(&vmcs_config.nested,
7579 vmx_capability.ept, enable_apicv);
7580
Sean Christophersone4027cf2018-12-03 13:53:12 -08007581 r = nested_vmx_hardware_setup(kvm_vmx_exit_handlers);
Sean Christophersona3203382018-12-03 13:53:11 -08007582 if (r)
7583 return r;
7584 }
7585
7586 r = alloc_kvm_area();
7587 if (r)
7588 nested_vmx_hardware_unsetup();
7589 return r;
7590}
7591
7592static __exit void hardware_unsetup(void)
7593{
7594 if (nested)
7595 nested_vmx_hardware_unsetup();
7596
7597 free_kvm_area();
7598}
7599
Kees Cook404f6aa2016-08-08 16:29:06 -07007600static struct kvm_x86_ops vmx_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007601 .cpu_has_kvm_support = cpu_has_kvm_support,
7602 .disabled_by_bios = vmx_disabled_by_bios,
7603 .hardware_setup = hardware_setup,
7604 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03007605 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007606 .hardware_enable = hardware_enable,
7607 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08007608 .cpu_has_accelerated_tpr = report_flexpriority,
Tom Lendackybc226f02018-05-10 22:06:39 +02007609 .has_emulated_msr = vmx_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007610
Wanpeng Lib31c1142018-03-12 04:53:04 -07007611 .vm_init = vmx_vm_init,
Sean Christopherson434a1e92018-03-20 12:17:18 -07007612 .vm_alloc = vmx_vm_alloc,
7613 .vm_free = vmx_vm_free,
Wanpeng Lib31c1142018-03-12 04:53:04 -07007614
Avi Kivity6aa8b732006-12-10 02:21:36 -08007615 .vcpu_create = vmx_create_vcpu,
7616 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007617 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007618
Sean Christopherson6d6095b2018-07-23 12:32:44 -07007619 .prepare_guest_switch = vmx_prepare_switch_to_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007620 .vcpu_load = vmx_vcpu_load,
7621 .vcpu_put = vmx_vcpu_put,
7622
Paolo Bonzinia96036b2015-11-10 11:55:36 +01007623 .update_bp_intercept = update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -06007624 .get_msr_feature = vmx_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007625 .get_msr = vmx_get_msr,
7626 .set_msr = vmx_set_msr,
7627 .get_segment_base = vmx_get_segment_base,
7628 .get_segment = vmx_get_segment,
7629 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007630 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007631 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02007632 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02007633 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03007634 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007635 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007636 .set_cr3 = vmx_set_cr3,
7637 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007638 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007639 .get_idt = vmx_get_idt,
7640 .set_idt = vmx_set_idt,
7641 .get_gdt = vmx_get_gdt,
7642 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007643 .get_dr6 = vmx_get_dr6,
7644 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +03007645 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007646 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007647 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007648 .get_rflags = vmx_get_rflags,
7649 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007650
Avi Kivity6aa8b732006-12-10 02:21:36 -08007651 .tlb_flush = vmx_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007652 .tlb_flush_gva = vmx_flush_tlb_gva,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007653
Avi Kivity6aa8b732006-12-10 02:21:36 -08007654 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02007655 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007656 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007657 .set_interrupt_shadow = vmx_set_interrupt_shadow,
7658 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007659 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007660 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007661 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007662 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007663 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007664 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007665 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007666 .get_nmi_mask = vmx_get_nmi_mask,
7667 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007668 .enable_nmi_window = enable_nmi_window,
7669 .enable_irq_window = enable_irq_window,
7670 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007671 .set_virtual_apic_mode = vmx_set_virtual_apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +08007672 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007673 .get_enable_apicv = vmx_get_enable_apicv,
7674 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007675 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +01007676 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007677 .hwapic_irr_update = vmx_hwapic_irr_update,
7678 .hwapic_isr_update = vmx_hwapic_isr_update,
Liran Alone6c67d82018-09-04 10:56:52 +03007679 .guest_apic_has_interrupt = vmx_guest_apic_has_interrupt,
Yang Zhanga20ed542013-04-11 19:25:15 +08007680 .sync_pir_to_irr = vmx_sync_pir_to_irr,
7681 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007682
Izik Eiduscbc94022007-10-25 00:29:55 +02007683 .set_tss_addr = vmx_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007684 .set_identity_map_addr = vmx_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08007685 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007686 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007687
Avi Kivity586f9602010-11-18 13:09:54 +02007688 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007689
Sheng Yang17cc3932010-01-05 19:02:27 +08007690 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08007691
7692 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007693
7694 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +00007695 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007696
7697 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007698
7699 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007700
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02007701 .read_l1_tsc_offset = vmx_read_l1_tsc_offset,
Leonid Shatz326e7422018-11-06 12:14:25 +02007702 .write_l1_tsc_offset = vmx_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007703
7704 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007705
7706 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +08007707 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +00007708 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +08007709 .xsaves_supported = vmx_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +02007710 .umip_emulated = vmx_umip_emulated,
Chao Peng86f52012018-10-24 16:05:11 +08007711 .pt_supported = vmx_pt_supported,
Jan Kiszkab6b8a142014-03-07 20:03:12 +01007712
Sean Christophersond264ee02018-08-27 15:21:12 -07007713 .request_immediate_exit = vmx_request_immediate_exit,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007714
7715 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +08007716
7717 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
7718 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
7719 .flush_log_dirty = vmx_flush_log_dirty,
7720 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Bandan Dasc5f983f2017-05-05 15:25:14 -04007721 .write_log_dirty = vmx_write_pml_buffer,
Wei Huang25462f72015-06-19 15:45:05 +02007722
Feng Wubf9f6ac2015-09-18 22:29:55 +08007723 .pre_block = vmx_pre_block,
7724 .post_block = vmx_post_block,
7725
Wei Huang25462f72015-06-19 15:45:05 +02007726 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +08007727
7728 .update_pi_irte = vmx_update_pi_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007729
7730#ifdef CONFIG_X86_64
7731 .set_hv_timer = vmx_set_hv_timer,
7732 .cancel_hv_timer = vmx_cancel_hv_timer,
7733#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +08007734
7735 .setup_mce = vmx_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007736
Ladi Prosek72d7b372017-10-11 16:54:41 +02007737 .smi_allowed = vmx_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007738 .pre_enter_smm = vmx_pre_enter_smm,
7739 .pre_leave_smm = vmx_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007740 .enable_smi_window = enable_smi_window,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007741
Sean Christophersone4027cf2018-12-03 13:53:12 -08007742 .check_nested_events = NULL,
7743 .get_nested_state = NULL,
7744 .set_nested_state = NULL,
7745 .get_vmcs12_pages = NULL,
7746 .nested_enable_evmcs = NULL,
Singh, Brijesh05d5a482019-02-15 17:24:12 +00007747 .need_emulation_on_page_fault = vmx_need_emulation_on_page_fault,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007748};
7749
Thomas Gleixner72c6d2d2018-07-13 16:23:16 +02007750static void vmx_cleanup_l1d_flush(void)
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02007751{
7752 if (vmx_l1d_flush_pages) {
7753 free_pages((unsigned long)vmx_l1d_flush_pages, L1D_CACHE_ORDER);
7754 vmx_l1d_flush_pages = NULL;
7755 }
Thomas Gleixner72c6d2d2018-07-13 16:23:16 +02007756 /* Restore state so sysfs ignores VMX */
7757 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +02007758}
7759
Thomas Gleixnera7b90202018-07-13 16:23:18 +02007760static void vmx_exit(void)
7761{
7762#ifdef CONFIG_KEXEC_CORE
7763 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
7764 synchronize_rcu();
7765#endif
7766
7767 kvm_exit();
7768
7769#if IS_ENABLED(CONFIG_HYPERV)
7770 if (static_branch_unlikely(&enable_evmcs)) {
7771 int cpu;
7772 struct hv_vp_assist_page *vp_ap;
7773 /*
7774 * Reset everything to support using non-enlightened VMCS
7775 * access later (e.g. when we reload the module with
7776 * enlightened_vmcs=0)
7777 */
7778 for_each_online_cpu(cpu) {
7779 vp_ap = hv_get_vp_assist_page(cpu);
7780
7781 if (!vp_ap)
7782 continue;
7783
7784 vp_ap->current_nested_vmcs = 0;
7785 vp_ap->enlighten_vmentry = 0;
7786 }
7787
7788 static_branch_disable(&enable_evmcs);
7789 }
7790#endif
7791 vmx_cleanup_l1d_flush();
7792}
7793module_exit(vmx_exit);
7794
Avi Kivity6aa8b732006-12-10 02:21:36 -08007795static int __init vmx_init(void)
7796{
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01007797 int r;
7798
7799#if IS_ENABLED(CONFIG_HYPERV)
7800 /*
7801 * Enlightened VMCS usage should be recommended and the host needs
7802 * to support eVMCS v1 or above. We can also disable eVMCS support
7803 * with module parameter.
7804 */
7805 if (enlightened_vmcs &&
7806 ms_hyperv.hints & HV_X64_ENLIGHTENED_VMCS_RECOMMENDED &&
7807 (ms_hyperv.nested_features & HV_X64_ENLIGHTENED_VMCS_VERSION) >=
7808 KVM_EVMCS_VERSION) {
7809 int cpu;
7810
7811 /* Check that we have assist pages on all online CPUs */
7812 for_each_online_cpu(cpu) {
7813 if (!hv_get_vp_assist_page(cpu)) {
7814 enlightened_vmcs = false;
7815 break;
7816 }
7817 }
7818
7819 if (enlightened_vmcs) {
7820 pr_info("KVM: vmx: using Hyper-V Enlightened VMCS\n");
7821 static_branch_enable(&enable_evmcs);
7822 }
7823 } else {
7824 enlightened_vmcs = false;
7825 }
7826#endif
7827
7828 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
Thomas Gleixnera7b90202018-07-13 16:23:18 +02007829 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03007830 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007831 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +08007832
Thomas Gleixnera7b90202018-07-13 16:23:18 +02007833 /*
Thomas Gleixner7db92e12018-07-13 16:23:19 +02007834 * Must be called after kvm_init() so enable_ept is properly set
7835 * up. Hand the parameter mitigation value in which was stored in
7836 * the pre module init parser. If no parameter was given, it will
7837 * contain 'auto' which will be turned into the default 'cond'
7838 * mitigation mode.
Thomas Gleixnera7b90202018-07-13 16:23:18 +02007839 */
Thomas Gleixner7db92e12018-07-13 16:23:19 +02007840 if (boot_cpu_has(X86_BUG_L1TF)) {
7841 r = vmx_setup_l1d_flush(vmentry_l1d_flush_param);
7842 if (r) {
7843 vmx_exit();
7844 return r;
7845 }
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02007846 }
7847
Dave Young2965faa2015-09-09 15:38:55 -07007848#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08007849 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
7850 crash_vmclear_local_loaded_vmcss);
7851#endif
Jim Mattson21ebf532018-05-01 15:40:28 -07007852 vmx_check_vmcs12_offsets();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08007853
He, Qingfdef3ad2007-04-30 09:45:24 +03007854 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007855}
Thomas Gleixnera7b90202018-07-13 16:23:18 +02007856module_init(vmx_init);