blob: 3b8ada67e852ef9516b2d36a70d3e9ed69250661 [file] [log] [blame]
Thomas Gleixner20c8ccb2019-06-04 10:11:32 +02001// SPDX-License-Identifier: GPL-2.0-only
Avi Kivity6aa8b732006-12-10 02:21:36 -08002/*
3 * Kernel-based Virtual Machine driver for Linux
4 *
5 * This module enables machines with Intel VT-x extensions to run virtual
6 * machines without emulation or binary translation.
7 *
8 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02009 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -080010 *
11 * Authors:
12 * Avi Kivity <avi@qumranet.com>
13 * Yaniv Kamay <yaniv@qumranet.com>
Avi Kivity6aa8b732006-12-10 02:21:36 -080014 */
15
Sean Christopherson199b1182018-12-03 13:52:53 -080016#include <linux/highmem.h>
17#include <linux/hrtimer.h>
18#include <linux/kernel.h>
Avi Kivityedf88412007-12-16 11:02:48 +020019#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080020#include <linux/module.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020021#include <linux/moduleparam.h>
Josh Triplette9bda3b2012-03-20 23:33:51 -070022#include <linux/mod_devicetable.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080023#include <linux/mm.h>
Julien Thierry00089c02020-09-04 16:30:25 +010024#include <linux/objtool.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080025#include <linux/sched.h>
Josh Poimboeufb2849092019-01-30 07:13:58 -060026#include <linux/sched/smt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040028#include <linux/tboot.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080029#include <linux/trace_events.h>
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +020030#include <linux/entry-kvm.h>
Avi Kivitye4956062007-06-28 14:15:57 -040031
Sean Christopherson199b1182018-12-03 13:52:53 -080032#include <asm/apic.h>
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +020033#include <asm/asm.h>
Feng Wu28b835d2015-09-18 22:29:54 +080034#include <asm/cpu.h>
Thomas Gleixnerba5bade2020-03-20 14:13:46 +010035#include <asm/cpu_device_id.h>
Paolo Bonzini81908bf2014-02-21 10:32:27 +010036#include <asm/debugreg.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080037#include <asm/desc.h>
38#include <asm/fpu/internal.h>
39#include <asm/io.h>
Feng Wuefc64402015-09-18 22:29:51 +080040#include <asm/irq_remapping.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080041#include <asm/kexec.h>
42#include <asm/perf_event.h>
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070043#include <asm/mmu_context.h>
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010044#include <asm/mshyperv.h>
Benjamin Thielb10c3072020-01-23 18:29:45 +010045#include <asm/mwait.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080046#include <asm/spec-ctrl.h>
47#include <asm/virtext.h>
48#include <asm/vmx.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080049
Sean Christopherson3077c192018-12-03 13:53:02 -080050#include "capabilities.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080051#include "cpuid.h"
Sean Christopherson4cebd742018-12-03 13:52:58 -080052#include "evmcs.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080053#include "irq.h"
54#include "kvm_cache_regs.h"
55#include "lapic.h"
56#include "mmu.h"
Sean Christopherson55d23752018-12-03 13:53:18 -080057#include "nested.h"
Wei Huang25462f72015-06-19 15:45:05 +020058#include "pmu.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080059#include "trace.h"
Sean Christophersoncb1d4742018-12-03 13:53:04 -080060#include "vmcs.h"
Sean Christopherson609363c2018-12-03 13:53:05 -080061#include "vmcs12.h"
Sean Christopherson89b0c9f2018-12-03 13:53:07 -080062#include "vmx.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080063#include "x86.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030064
Avi Kivity6aa8b732006-12-10 02:21:36 -080065MODULE_AUTHOR("Qumranet");
66MODULE_LICENSE("GPL");
67
Valdis Klētnieks575b2552020-02-27 21:49:52 -050068#ifdef MODULE
Josh Triplette9bda3b2012-03-20 23:33:51 -070069static const struct x86_cpu_id vmx_cpu_id[] = {
Thomas Gleixner320debe2020-03-20 14:13:50 +010070 X86_MATCH_FEATURE(X86_FEATURE_VMX, NULL),
Josh Triplette9bda3b2012-03-20 23:33:51 -070071 {}
72};
73MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
Valdis Klētnieks575b2552020-02-27 21:49:52 -050074#endif
Josh Triplette9bda3b2012-03-20 23:33:51 -070075
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
Vitaly Kuznetsova4443262020-02-20 18:22:04 +0100101bool __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
Sean Christopherson2c4fd912018-12-03 13:53:03 -0800112bool __read_mostly enable_pml = 1;
Kai Huang843e4332015-01-28 10:54:28 +0800113module_param_named(pml, enable_pml, bool, S_IRUGO);
114
Paolo Bonzini6f2f8452019-05-20 15:34:35 +0200115static bool __read_mostly dump_invalid_vmcs = 0;
116module_param(dump_invalid_vmcs, bool, 0644);
117
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100118#define MSR_BITMAP_MODE_X2APIC 1
119#define MSR_BITMAP_MODE_X2APIC_APICV 2
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100120
Haozhong Zhang64903d62015-10-20 15:39:09 +0800121#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
122
Yunhong Jiang64672c92016-06-13 14:19:59 -0700123/* Guest_tsc -> host_tsc conversion requires 64-bit division. */
124static int __read_mostly cpu_preemption_timer_multi;
125static bool __read_mostly enable_preemption_timer = 1;
126#ifdef CONFIG_X86_64
127module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
128#endif
129
Mohammed Gamalb96e6502020-09-03 16:11:22 +0200130extern bool __read_mostly allow_smaller_maxphyaddr;
131module_param(allow_smaller_maxphyaddr, bool, S_IRUGO);
132
Sean Christopherson3de63472018-07-13 08:42:30 -0700133#define KVM_VM_CR0_ALWAYS_OFF (X86_CR0_NW | X86_CR0_CD)
Sean Christopherson1706bd02018-03-05 12:04:38 -0800134#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR0_NE
135#define KVM_VM_CR0_ALWAYS_ON \
136 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | \
137 X86_CR0_WP | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200138
Sean Christopherson5dc1f042018-03-05 12:04:39 -0800139#define KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR4_VMXE
Avi Kivitycdc0e242009-12-06 17:21:14 +0200140#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
141#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
142
Avi Kivity78ac8b42010-04-08 18:19:35 +0300143#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
144
Chao Pengbf8c55d2018-10-24 16:05:14 +0800145#define MSR_IA32_RTIT_STATUS_MASK (~(RTIT_STATUS_FILTEREN | \
146 RTIT_STATUS_CONTEXTEN | RTIT_STATUS_TRIGGEREN | \
147 RTIT_STATUS_ERROR | RTIT_STATUS_STOPPED | \
148 RTIT_STATUS_BYTECNT))
149
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800150/*
Alexander Graf3eb90012020-09-25 16:34:20 +0200151 * List of MSRs that can be directly passed to the guest.
152 * In addition to these x2apic and PT MSRs are handled specially.
153 */
154static u32 vmx_possible_passthrough_msrs[MAX_POSSIBLE_PASSTHROUGH_MSRS] = {
155 MSR_IA32_SPEC_CTRL,
156 MSR_IA32_PRED_CMD,
157 MSR_IA32_TSC,
158 MSR_FS_BASE,
159 MSR_GS_BASE,
160 MSR_KERNEL_GS_BASE,
161 MSR_IA32_SYSENTER_CS,
162 MSR_IA32_SYSENTER_ESP,
163 MSR_IA32_SYSENTER_EIP,
164 MSR_CORE_C1_RES,
165 MSR_CORE_C3_RESIDENCY,
166 MSR_CORE_C6_RESIDENCY,
167 MSR_CORE_C7_RESIDENCY,
168};
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800169
170/*
171 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
172 * ple_gap: upper bound on the amount of time between two successive
173 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500174 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800175 * ple_window: upper bound on the amount of time a guest is allowed to execute
176 * in a PAUSE loop. Tests indicate that most spinlocks are held for
177 * less than 2^12 cycles
178 * Time is measured based on a counter that runs at the same rate as the TSC,
179 * refer SDM volume 3b section 21.6.13 & 22.1.3.
180 */
Babu Mogerc8e88712018-03-16 16:37:24 -0400181static unsigned int ple_gap = KVM_DEFAULT_PLE_GAP;
Luiz Capitulinoa87c99e2018-11-23 12:02:14 -0500182module_param(ple_gap, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200183
Babu Moger7fbc85a2018-03-16 16:37:22 -0400184static unsigned int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
185module_param(ple_window, uint, 0444);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800186
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200187/* Default doubles per-vcpu window every exit. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400188static unsigned int ple_window_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400189module_param(ple_window_grow, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200190
191/* Default resets per-vcpu window every exit to ple_window. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400192static unsigned int ple_window_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400193module_param(ple_window_shrink, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200194
195/* Default is to compute the maximum so we can never overflow. */
Babu Moger7fbc85a2018-03-16 16:37:22 -0400196static unsigned int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
197module_param(ple_window_max, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200198
Chao Pengf99e3da2018-10-24 16:05:10 +0800199/* Default is SYSTEM mode, 1 for host-guest mode */
200int __read_mostly pt_mode = PT_MODE_SYSTEM;
201module_param(pt_mode, int, S_IRUGO);
202
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200203static DEFINE_STATIC_KEY_FALSE(vmx_l1d_should_flush);
Nicolai Stange427362a2018-07-21 22:25:00 +0200204static DEFINE_STATIC_KEY_FALSE(vmx_l1d_flush_cond);
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200205static DEFINE_MUTEX(vmx_l1d_flush_mutex);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200206
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200207/* Storage for pre module init parameter parsing */
208static enum vmx_l1d_flush_state __read_mostly vmentry_l1d_flush_param = VMENTER_L1D_FLUSH_AUTO;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200209
210static const struct {
211 const char *option;
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200212 bool for_parse;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200213} vmentry_l1d_param[] = {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200214 [VMENTER_L1D_FLUSH_AUTO] = {"auto", true},
215 [VMENTER_L1D_FLUSH_NEVER] = {"never", true},
216 [VMENTER_L1D_FLUSH_COND] = {"cond", true},
217 [VMENTER_L1D_FLUSH_ALWAYS] = {"always", true},
218 [VMENTER_L1D_FLUSH_EPT_DISABLED] = {"EPT disabled", false},
219 [VMENTER_L1D_FLUSH_NOT_REQUIRED] = {"not required", false},
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200220};
221
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200222#define L1D_CACHE_ORDER 4
223static void *vmx_l1d_flush_pages;
224
225static int vmx_setup_l1d_flush(enum vmx_l1d_flush_state l1tf)
226{
227 struct page *page;
Nicolai Stange288d1522018-07-18 19:07:38 +0200228 unsigned int i;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200229
Waiman Long19a36d32019-08-26 15:30:23 -0400230 if (!boot_cpu_has_bug(X86_BUG_L1TF)) {
231 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_NOT_REQUIRED;
232 return 0;
233 }
234
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200235 if (!enable_ept) {
236 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_EPT_DISABLED;
237 return 0;
238 }
239
Yi Wangd806afa2018-08-16 13:42:39 +0800240 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES)) {
241 u64 msr;
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200242
Yi Wangd806afa2018-08-16 13:42:39 +0800243 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, msr);
244 if (msr & ARCH_CAP_SKIP_VMENTRY_L1DFLUSH) {
245 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_NOT_REQUIRED;
246 return 0;
247 }
248 }
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200249
Jiri Kosinad90a7a02018-07-13 16:23:25 +0200250 /* If set to auto use the default l1tf mitigation method */
251 if (l1tf == VMENTER_L1D_FLUSH_AUTO) {
252 switch (l1tf_mitigation) {
253 case L1TF_MITIGATION_OFF:
254 l1tf = VMENTER_L1D_FLUSH_NEVER;
255 break;
256 case L1TF_MITIGATION_FLUSH_NOWARN:
257 case L1TF_MITIGATION_FLUSH:
258 case L1TF_MITIGATION_FLUSH_NOSMT:
259 l1tf = VMENTER_L1D_FLUSH_COND;
260 break;
261 case L1TF_MITIGATION_FULL:
262 case L1TF_MITIGATION_FULL_FORCE:
263 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
264 break;
265 }
266 } else if (l1tf_mitigation == L1TF_MITIGATION_FULL_FORCE) {
267 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
268 }
269
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200270 if (l1tf != VMENTER_L1D_FLUSH_NEVER && !vmx_l1d_flush_pages &&
271 !boot_cpu_has(X86_FEATURE_FLUSH_L1D)) {
Ben Gardon41836832019-02-11 11:02:52 -0800272 /*
273 * This allocation for vmx_l1d_flush_pages is not tied to a VM
274 * lifetime and so should not be charged to a memcg.
275 */
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200276 page = alloc_pages(GFP_KERNEL, L1D_CACHE_ORDER);
277 if (!page)
278 return -ENOMEM;
279 vmx_l1d_flush_pages = page_address(page);
Nicolai Stange288d1522018-07-18 19:07:38 +0200280
281 /*
282 * Initialize each page with a different pattern in
283 * order to protect against KSM in the nested
284 * virtualization case.
285 */
286 for (i = 0; i < 1u << L1D_CACHE_ORDER; ++i) {
287 memset(vmx_l1d_flush_pages + i * PAGE_SIZE, i + 1,
288 PAGE_SIZE);
289 }
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200290 }
291
292 l1tf_vmx_mitigation = l1tf;
293
Thomas Gleixner895ae472018-07-13 16:23:22 +0200294 if (l1tf != VMENTER_L1D_FLUSH_NEVER)
295 static_branch_enable(&vmx_l1d_should_flush);
296 else
297 static_branch_disable(&vmx_l1d_should_flush);
Thomas Gleixner4c6523e2018-07-13 16:23:20 +0200298
Nicolai Stange427362a2018-07-21 22:25:00 +0200299 if (l1tf == VMENTER_L1D_FLUSH_COND)
300 static_branch_enable(&vmx_l1d_flush_cond);
Thomas Gleixner895ae472018-07-13 16:23:22 +0200301 else
Nicolai Stange427362a2018-07-21 22:25:00 +0200302 static_branch_disable(&vmx_l1d_flush_cond);
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200303 return 0;
304}
305
306static int vmentry_l1d_flush_parse(const char *s)
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200307{
308 unsigned int i;
309
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200310 if (s) {
311 for (i = 0; i < ARRAY_SIZE(vmentry_l1d_param); i++) {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200312 if (vmentry_l1d_param[i].for_parse &&
313 sysfs_streq(s, vmentry_l1d_param[i].option))
314 return i;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200315 }
316 }
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200317 return -EINVAL;
318}
319
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200320static int vmentry_l1d_flush_set(const char *s, const struct kernel_param *kp)
321{
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200322 int l1tf, ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200323
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200324 l1tf = vmentry_l1d_flush_parse(s);
325 if (l1tf < 0)
326 return l1tf;
327
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200328 if (!boot_cpu_has(X86_BUG_L1TF))
329 return 0;
330
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200331 /*
332 * Has vmx_init() run already? If not then this is the pre init
333 * parameter parsing. In that case just store the value and let
334 * vmx_init() do the proper setup after enable_ept has been
335 * established.
336 */
337 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_AUTO) {
338 vmentry_l1d_flush_param = l1tf;
339 return 0;
340 }
341
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200342 mutex_lock(&vmx_l1d_flush_mutex);
343 ret = vmx_setup_l1d_flush(l1tf);
344 mutex_unlock(&vmx_l1d_flush_mutex);
345 return ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200346}
347
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200348static int vmentry_l1d_flush_get(char *s, const struct kernel_param *kp)
349{
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200350 if (WARN_ON_ONCE(l1tf_vmx_mitigation >= ARRAY_SIZE(vmentry_l1d_param)))
351 return sprintf(s, "???\n");
352
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200353 return sprintf(s, "%s\n", vmentry_l1d_param[l1tf_vmx_mitigation].option);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200354}
355
356static const struct kernel_param_ops vmentry_l1d_flush_ops = {
357 .set = vmentry_l1d_flush_set,
358 .get = vmentry_l1d_flush_get,
359};
Thomas Gleixner895ae472018-07-13 16:23:22 +0200360module_param_cb(vmentry_l1d_flush, &vmentry_l1d_flush_ops, NULL, 0644);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200361
Gleb Natapovd99e4152012-12-20 16:57:45 +0200362static u32 vmx_segment_access_rights(struct kvm_segment *var);
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200363static __always_inline void vmx_disable_intercept_for_msr(struct kvm_vcpu *vcpu,
Ashok Raj15d45072018-02-01 22:59:43 +0100364 u32 msr, int type);
Avi Kivity75880a02007-06-20 11:20:04 +0300365
Sean Christopherson453eafb2018-12-20 12:25:17 -0800366void vmx_vmexit(void);
367
Sean Christopherson52a9fcb2019-07-19 13:41:07 -0700368#define vmx_insn_failed(fmt...) \
369do { \
370 WARN_ONCE(1, fmt); \
371 pr_warn_ratelimited(fmt); \
372} while (0)
373
Sean Christopherson6e202092019-07-19 13:41:08 -0700374asmlinkage void vmread_error(unsigned long field, bool fault)
375{
376 if (fault)
377 kvm_spurious_fault();
378 else
379 vmx_insn_failed("kvm: vmread failed: field=%lx\n", field);
380}
381
Sean Christopherson52a9fcb2019-07-19 13:41:07 -0700382noinline void vmwrite_error(unsigned long field, unsigned long value)
383{
384 vmx_insn_failed("kvm: vmwrite failed: field=%lx val=%lx err=%d\n",
385 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
386}
387
388noinline void vmclear_error(struct vmcs *vmcs, u64 phys_addr)
389{
390 vmx_insn_failed("kvm: vmclear failed: %p/%llx\n", vmcs, phys_addr);
391}
392
393noinline void vmptrld_error(struct vmcs *vmcs, u64 phys_addr)
394{
395 vmx_insn_failed("kvm: vmptrld failed: %p/%llx\n", vmcs, phys_addr);
396}
397
398noinline void invvpid_error(unsigned long ext, u16 vpid, gva_t gva)
399{
400 vmx_insn_failed("kvm: invvpid failed: ext=0x%lx vpid=%u gva=0x%lx\n",
401 ext, vpid, gva);
402}
403
404noinline void invept_error(unsigned long ext, u64 eptp, gpa_t gpa)
405{
406 vmx_insn_failed("kvm: invept failed: ext=0x%lx eptp=%llx gpa=0x%llx\n",
407 ext, eptp, gpa);
408}
409
Avi Kivity6aa8b732006-12-10 02:21:36 -0800410static DEFINE_PER_CPU(struct vmcs *, vmxarea);
Sean Christopherson75edce82018-12-03 13:53:06 -0800411DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300412/*
413 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
414 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
415 */
416static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800417
Sheng Yang2384d2b2008-01-17 15:14:33 +0800418static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
419static DEFINE_SPINLOCK(vmx_vpid_lock);
420
Sean Christopherson3077c192018-12-03 13:53:02 -0800421struct vmcs_config vmcs_config;
422struct vmx_capability vmx_capability;
Sheng Yangd56f5462008-04-25 10:13:16 +0800423
Avi Kivity6aa8b732006-12-10 02:21:36 -0800424#define VMX_SEGMENT_FIELD(seg) \
425 [VCPU_SREG_##seg] = { \
426 .selector = GUEST_##seg##_SELECTOR, \
427 .base = GUEST_##seg##_BASE, \
428 .limit = GUEST_##seg##_LIMIT, \
429 .ar_bytes = GUEST_##seg##_AR_BYTES, \
430 }
431
Mathias Krause772e0312012-08-30 01:30:19 +0200432static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800433 unsigned selector;
434 unsigned base;
435 unsigned limit;
436 unsigned ar_bytes;
437} kvm_vmx_segment_fields[] = {
438 VMX_SEGMENT_FIELD(CS),
439 VMX_SEGMENT_FIELD(DS),
440 VMX_SEGMENT_FIELD(ES),
441 VMX_SEGMENT_FIELD(FS),
442 VMX_SEGMENT_FIELD(GS),
443 VMX_SEGMENT_FIELD(SS),
444 VMX_SEGMENT_FIELD(TR),
445 VMX_SEGMENT_FIELD(LDTR),
446};
447
Sean Christophersonec0241f2020-04-15 13:34:52 -0700448static inline void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
449{
450 vmx->segment_cache.bitmask = 0;
451}
452
Sean Christopherson23420802019-04-19 22:50:57 -0700453static unsigned long host_idt_base;
Avi Kivity26bb0982009-09-07 11:14:12 +0300454
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300455/*
Jim Mattson898a8112018-12-05 15:28:59 -0800456 * Though SYSCALL is only supported in 64-bit mode on Intel CPUs, kvm
457 * will emulate SYSCALL in legacy mode if the vendor string in guest
458 * CPUID.0:{EBX,ECX,EDX} is "AuthenticAMD" or "AMDisbetter!" To
459 * support this emulation, IA32_STAR must always be included in
Sean Christopherson14a61b62020-09-23 11:04:08 -0700460 * vmx_uret_msrs_list[], even in i386 builds.
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300461 */
kernel test robot6a2e0922020-09-28 23:37:14 +0800462static const u32 vmx_uret_msrs_list[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800463#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300464 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800465#endif
Brian Gerst8c065852010-07-17 09:03:26 -0400466 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Paolo Bonzinic11f83e2019-11-18 12:23:00 -0500467 MSR_IA32_TSX_CTRL,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800468};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800469
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +0100470#if IS_ENABLED(CONFIG_HYPERV)
471static bool __read_mostly enlightened_vmcs = true;
472module_param(enlightened_vmcs, bool, 0444);
473
Tianyu Lan877ad952018-07-19 08:40:23 +0000474/* check_ept_pointer() should be under protection of ept_pointer_lock. */
475static void check_ept_pointer_match(struct kvm *kvm)
476{
477 struct kvm_vcpu *vcpu;
478 u64 tmp_eptp = INVALID_PAGE;
479 int i;
480
481 kvm_for_each_vcpu(i, vcpu, kvm) {
482 if (!VALID_PAGE(tmp_eptp)) {
483 tmp_eptp = to_vmx(vcpu)->ept_pointer;
484 } else if (tmp_eptp != to_vmx(vcpu)->ept_pointer) {
485 to_kvm_vmx(kvm)->ept_pointers_match
486 = EPT_POINTERS_MISMATCH;
487 return;
488 }
489 }
490
491 to_kvm_vmx(kvm)->ept_pointers_match = EPT_POINTERS_MATCH;
492}
493
Yi Wang8997f652019-01-21 15:27:05 +0800494static int kvm_fill_hv_flush_list_func(struct hv_guest_mapping_flush_list *flush,
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800495 void *data)
496{
497 struct kvm_tlb_range *range = data;
498
499 return hyperv_fill_flush_guest_mapping_list(flush, range->start_gfn,
500 range->pages);
501}
502
503static inline int __hv_remote_flush_tlb_with_range(struct kvm *kvm,
504 struct kvm_vcpu *vcpu, struct kvm_tlb_range *range)
505{
506 u64 ept_pointer = to_vmx(vcpu)->ept_pointer;
507
508 /*
509 * FLUSH_GUEST_PHYSICAL_ADDRESS_SPACE hypercall needs address
510 * of the base of EPT PML4 table, strip off EPT configuration
511 * information.
512 */
513 if (range)
514 return hyperv_flush_guest_mapping_range(ept_pointer & PAGE_MASK,
515 kvm_fill_hv_flush_list_func, (void *)range);
516 else
517 return hyperv_flush_guest_mapping(ept_pointer & PAGE_MASK);
518}
519
520static int hv_remote_flush_tlb_with_range(struct kvm *kvm,
521 struct kvm_tlb_range *range)
Tianyu Lan877ad952018-07-19 08:40:23 +0000522{
Lan Tianyua5c214d2018-10-13 22:54:05 +0800523 struct kvm_vcpu *vcpu;
Lan Tianyub7c1c222019-01-04 15:20:44 +0800524 int ret = 0, i;
Tianyu Lan877ad952018-07-19 08:40:23 +0000525
526 spin_lock(&to_kvm_vmx(kvm)->ept_pointer_lock);
527
528 if (to_kvm_vmx(kvm)->ept_pointers_match == EPT_POINTERS_CHECK)
529 check_ept_pointer_match(kvm);
530
531 if (to_kvm_vmx(kvm)->ept_pointers_match != EPT_POINTERS_MATCH) {
Lan Tianyu53963a72018-12-06 15:34:36 +0800532 kvm_for_each_vcpu(i, vcpu, kvm) {
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800533 /* If ept_pointer is invalid pointer, bypass flush request. */
534 if (VALID_PAGE(to_vmx(vcpu)->ept_pointer))
535 ret |= __hv_remote_flush_tlb_with_range(
536 kvm, vcpu, range);
Lan Tianyu53963a72018-12-06 15:34:36 +0800537 }
Lan Tianyua5c214d2018-10-13 22:54:05 +0800538 } else {
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800539 ret = __hv_remote_flush_tlb_with_range(kvm,
540 kvm_get_vcpu(kvm, 0), range);
Tianyu Lan877ad952018-07-19 08:40:23 +0000541 }
Tianyu Lan877ad952018-07-19 08:40:23 +0000542
Tianyu Lan877ad952018-07-19 08:40:23 +0000543 spin_unlock(&to_kvm_vmx(kvm)->ept_pointer_lock);
544 return ret;
545}
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800546static int hv_remote_flush_tlb(struct kvm *kvm)
547{
548 return hv_remote_flush_tlb_with_range(kvm, NULL);
549}
550
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800551static int hv_enable_direct_tlbflush(struct kvm_vcpu *vcpu)
552{
553 struct hv_enlightened_vmcs *evmcs;
554 struct hv_partition_assist_pg **p_hv_pa_pg =
555 &vcpu->kvm->arch.hyperv.hv_pa_pg;
556 /*
557 * Synthetic VM-Exit is not enabled in current code and so All
558 * evmcs in singe VM shares same assist page.
559 */
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200560 if (!*p_hv_pa_pg)
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800561 *p_hv_pa_pg = kzalloc(PAGE_SIZE, GFP_KERNEL);
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200562
563 if (!*p_hv_pa_pg)
564 return -ENOMEM;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800565
566 evmcs = (struct hv_enlightened_vmcs *)to_vmx(vcpu)->loaded_vmcs->vmcs;
567
568 evmcs->partition_assist_page =
569 __pa(*p_hv_pa_pg);
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200570 evmcs->hv_vm_id = (unsigned long)vcpu->kvm;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800571 evmcs->hv_enlightenments_control.nested_flush_hypercall = 1;
572
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800573 return 0;
574}
575
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +0100576#endif /* IS_ENABLED(CONFIG_HYPERV) */
577
Yunhong Jiang64672c92016-06-13 14:19:59 -0700578/*
579 * Comment's format: document - errata name - stepping - processor name.
580 * Refer from
581 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
582 */
583static u32 vmx_preemption_cpu_tfms[] = {
584/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
5850x000206E6,
586/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
587/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
588/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
5890x00020652,
590/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
5910x00020655,
592/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
593/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
594/*
595 * 320767.pdf - AAP86 - B1 -
596 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
597 */
5980x000106E5,
599/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
6000x000106A0,
601/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
6020x000106A1,
603/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
6040x000106A4,
605 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
606 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
607 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
6080x000106A5,
Wei Huang3d82c562018-12-03 14:13:32 -0600609 /* Xeon E3-1220 V2 */
6100x000306A8,
Yunhong Jiang64672c92016-06-13 14:19:59 -0700611};
612
613static inline bool cpu_has_broken_vmx_preemption_timer(void)
614{
615 u32 eax = cpuid_eax(0x00000001), i;
616
617 /* Clear the reserved bits */
618 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +0000619 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -0700620 if (eax == vmx_preemption_cpu_tfms[i])
621 return true;
622
623 return false;
624}
625
Paolo Bonzini35754c92015-07-29 12:05:37 +0200626static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800627{
Paolo Bonzini35754c92015-07-29 12:05:37 +0200628 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800629}
630
Sheng Yang04547152009-04-01 15:52:31 +0800631static inline bool report_flexpriority(void)
632{
633 return flexpriority_enabled;
634}
635
Alexander Graf3eb90012020-09-25 16:34:20 +0200636static int possible_passthrough_msr_slot(u32 msr)
637{
638 u32 i;
639
640 for (i = 0; i < ARRAY_SIZE(vmx_possible_passthrough_msrs); i++)
641 if (vmx_possible_passthrough_msrs[i] == msr)
642 return i;
643
644 return -ENOENT;
645}
646
647static bool is_valid_passthrough_msr(u32 msr)
648{
649 bool r;
650
651 switch (msr) {
652 case 0x800 ... 0x8ff:
653 /* x2APIC MSRs. These are handled in vmx_update_msr_bitmap_x2apic() */
654 return true;
655 case MSR_IA32_RTIT_STATUS:
656 case MSR_IA32_RTIT_OUTPUT_BASE:
657 case MSR_IA32_RTIT_OUTPUT_MASK:
658 case MSR_IA32_RTIT_CR3_MATCH:
659 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
660 /* PT MSRs. These are handled in pt_update_intercept_for_msr() */
Like Xu1b5ac3222021-02-01 13:10:34 +0800661 case MSR_LBR_SELECT:
662 case MSR_LBR_TOS:
663 case MSR_LBR_INFO_0 ... MSR_LBR_INFO_0 + 31:
664 case MSR_LBR_NHM_FROM ... MSR_LBR_NHM_FROM + 31:
665 case MSR_LBR_NHM_TO ... MSR_LBR_NHM_TO + 31:
666 case MSR_LBR_CORE_FROM ... MSR_LBR_CORE_FROM + 8:
667 case MSR_LBR_CORE_TO ... MSR_LBR_CORE_TO + 8:
668 /* LBR MSRs. These are handled in vmx_update_intercept_for_lbr_msrs() */
Alexander Graf3eb90012020-09-25 16:34:20 +0200669 return true;
670 }
671
672 r = possible_passthrough_msr_slot(msr) != -ENOENT;
673
674 WARN(!r, "Invalid MSR %x, please adapt vmx_possible_passthrough_msrs[]", msr);
675
676 return r;
677}
678
Sean Christopherson1e7a4832020-09-23 11:04:02 -0700679static inline int __vmx_find_uret_msr(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800680{
681 int i;
682
Sean Christophersonfbc18002020-09-23 11:03:59 -0700683 for (i = 0; i < vmx->nr_uret_msrs; ++i)
Sean Christopherson802145c2020-09-23 11:04:09 -0700684 if (vmx_uret_msrs_list[vmx->guest_uret_msrs[i].slot] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300685 return i;
686 return -1;
687}
688
Sean Christophersond85a8032020-09-23 11:04:06 -0700689struct vmx_uret_msr *vmx_find_uret_msr(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300690{
691 int i;
692
Sean Christopherson1e7a4832020-09-23 11:04:02 -0700693 i = __vmx_find_uret_msr(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300694 if (i >= 0)
Sean Christophersoneb3db1b2020-09-23 11:03:58 -0700695 return &vmx->guest_uret_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000696 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800697}
698
Sean Christopherson7bf662b2020-09-23 11:04:07 -0700699static int vmx_set_guest_uret_msr(struct vcpu_vmx *vmx,
700 struct vmx_uret_msr *msr, u64 data)
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500701{
702 int ret = 0;
703
704 u64 old_msr_data = msr->data;
705 msr->data = data;
Sean Christophersone9bb1ae2020-09-23 11:04:00 -0700706 if (msr - vmx->guest_uret_msrs < vmx->nr_active_uret_msrs) {
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500707 preempt_disable();
Sean Christopherson802145c2020-09-23 11:04:09 -0700708 ret = kvm_set_user_return_msr(msr->slot, msr->data, msr->mask);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500709 preempt_enable();
710 if (ret)
711 msr->data = old_msr_data;
712 }
713 return ret;
714}
715
Dave Young2965faa2015-09-09 15:38:55 -0700716#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800717static void crash_vmclear_local_loaded_vmcss(void)
718{
719 int cpu = raw_smp_processor_id();
720 struct loaded_vmcs *v;
721
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800722 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
723 loaded_vmcss_on_cpu_link)
724 vmcs_clear(v->vmcs);
725}
Dave Young2965faa2015-09-09 15:38:55 -0700726#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800727
Nadav Har'Eld462b812011-05-24 15:26:10 +0300728static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800729{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300730 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800731 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800732
Nadav Har'Eld462b812011-05-24 15:26:10 +0300733 if (loaded_vmcs->cpu != cpu)
734 return; /* vcpu migration can race with cpu offline */
735 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800736 per_cpu(current_vmcs, cpu) = NULL;
Sean Christopherson31603d42020-03-21 12:37:49 -0700737
738 vmcs_clear(loaded_vmcs->vmcs);
739 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
740 vmcs_clear(loaded_vmcs->shadow_vmcs);
741
Nadav Har'Eld462b812011-05-24 15:26:10 +0300742 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +0800743
744 /*
Sean Christopherson31603d42020-03-21 12:37:49 -0700745 * Ensure all writes to loaded_vmcs, including deleting it from its
746 * current percpu list, complete before setting loaded_vmcs->vcpu to
747 * -1, otherwise a different cpu can see vcpu == -1 first and add
748 * loaded_vmcs to its percpu list before it's deleted from this cpu's
749 * list. Pairs with the smp_rmb() in vmx_vcpu_load_vmcs().
Xiao Guangrong5a560f82012-11-28 20:54:14 +0800750 */
751 smp_wmb();
752
Sean Christopherson31603d42020-03-21 12:37:49 -0700753 loaded_vmcs->cpu = -1;
754 loaded_vmcs->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800755}
756
Sean Christopherson89b0c9f2018-12-03 13:53:07 -0800757void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800758{
Xiao Guangronge6c7d322012-11-28 20:53:15 +0800759 int cpu = loaded_vmcs->cpu;
760
761 if (cpu != -1)
762 smp_call_function_single(cpu,
763 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800764}
765
Avi Kivity2fb92db2011-04-27 19:42:18 +0300766static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
767 unsigned field)
768{
769 bool ret;
770 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
771
Sean Christophersoncb3c1e22019-09-27 14:45:22 -0700772 if (!kvm_register_is_available(&vmx->vcpu, VCPU_EXREG_SEGMENTS)) {
773 kvm_register_mark_available(&vmx->vcpu, VCPU_EXREG_SEGMENTS);
Avi Kivity2fb92db2011-04-27 19:42:18 +0300774 vmx->segment_cache.bitmask = 0;
775 }
776 ret = vmx->segment_cache.bitmask & mask;
777 vmx->segment_cache.bitmask |= mask;
778 return ret;
779}
780
781static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
782{
783 u16 *p = &vmx->segment_cache.seg[seg].selector;
784
785 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
786 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
787 return *p;
788}
789
790static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
791{
792 ulong *p = &vmx->segment_cache.seg[seg].base;
793
794 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
795 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
796 return *p;
797}
798
799static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
800{
801 u32 *p = &vmx->segment_cache.seg[seg].limit;
802
803 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
804 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
805 return *p;
806}
807
808static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
809{
810 u32 *p = &vmx->segment_cache.seg[seg].ar;
811
812 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
813 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
814 return *p;
815}
816
Jason Baronb6a7cc32021-01-14 22:27:54 -0500817void vmx_update_exception_bitmap(struct kvm_vcpu *vcpu)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300818{
819 u32 eb;
820
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100821 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -0800822 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Liran Alon9e869482018-03-12 13:12:51 +0200823 /*
824 * Guest access to VMware backdoor ports could legitimately
825 * trigger #GP because of TSS I/O permission bitmap.
826 * We intercept those #GP and allow access to them anyway
827 * as VMware does.
828 */
829 if (enable_vmware_backdoor)
830 eb |= (1u << GP_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100831 if ((vcpu->guest_debug &
832 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
833 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
834 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300835 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300836 eb = ~0;
Paolo Bonzinia0c13432020-07-10 17:48:08 +0200837 if (!vmx_need_pf_intercept(vcpu))
Miaohe Lin49f933d2020-02-27 11:20:54 +0800838 eb &= ~(1u << PF_VECTOR);
Nadav Har'El36cf24e2011-05-25 23:15:08 +0300839
840 /* When we are running a nested L2 guest and L1 specified for it a
841 * certain exception bitmap, we must trap the same exceptions and pass
842 * them to L1. When running L2, we will only handle the exceptions
843 * specified above if L1 did not want them.
844 */
845 if (is_guest_mode(vcpu))
846 eb |= get_vmcs12(vcpu)->exception_bitmap;
Paolo Bonzinib502e6e2020-09-29 08:31:32 -0400847 else {
848 /*
849 * If EPT is enabled, #PF is only trapped if MAXPHYADDR is mismatched
850 * between guest and host. In that case we only care about present
851 * faults. For vmcs02, however, PFEC_MASK and PFEC_MATCH are set in
852 * prepare_vmcs02_rare.
853 */
854 bool selective_pf_trap = enable_ept && (eb & (1u << PF_VECTOR));
855 int mask = selective_pf_trap ? PFERR_PRESENT_MASK : 0;
856 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, mask);
857 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, mask);
858 }
Nadav Har'El36cf24e2011-05-25 23:15:08 +0300859
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300860 vmcs_write32(EXCEPTION_BITMAP, eb);
861}
862
Ashok Raj15d45072018-02-01 22:59:43 +0100863/*
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100864 * Check if MSR is intercepted for currently loaded MSR bitmap.
865 */
866static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr)
867{
868 unsigned long *msr_bitmap;
869 int f = sizeof(unsigned long);
870
871 if (!cpu_has_vmx_msr_bitmap())
872 return true;
873
874 msr_bitmap = to_vmx(vcpu)->loaded_vmcs->msr_bitmap;
875
876 if (msr <= 0x1fff) {
877 return !!test_bit(msr, msr_bitmap + 0x800 / f);
878 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
879 msr &= 0x1fff;
880 return !!test_bit(msr, msr_bitmap + 0xc00 / f);
881 }
882
883 return true;
884}
885
Gleb Natapov2961e8762013-11-25 15:37:13 +0200886static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
887 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200888{
Gleb Natapov2961e8762013-11-25 15:37:13 +0200889 vm_entry_controls_clearbit(vmx, entry);
890 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200891}
892
Sean Christophersona128a932020-09-23 11:03:57 -0700893int vmx_find_loadstore_msr_slot(struct vmx_msrs *m, u32 msr)
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400894{
895 unsigned int i;
896
897 for (i = 0; i < m->nr; ++i) {
898 if (m->val[i].index == msr)
899 return i;
900 }
901 return -ENOENT;
902}
903
Avi Kivity61d2ef22010-04-28 16:40:38 +0300904static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
905{
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400906 int i;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300907 struct msr_autoload *m = &vmx->msr_autoload;
908
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200909 switch (msr) {
910 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800911 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200912 clear_atomic_switch_msr_special(vmx,
913 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200914 VM_EXIT_LOAD_IA32_EFER);
915 return;
916 }
917 break;
918 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800919 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200920 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200921 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
922 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
923 return;
924 }
925 break;
Avi Kivity110312c2010-12-21 12:54:20 +0200926 }
Sean Christophersona128a932020-09-23 11:03:57 -0700927 i = vmx_find_loadstore_msr_slot(&m->guest, msr);
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400928 if (i < 0)
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400929 goto skip_guest;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400930 --m->guest.nr;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400931 m->guest.val[i] = m->guest.val[m->guest.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400932 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Avi Kivity110312c2010-12-21 12:54:20 +0200933
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400934skip_guest:
Sean Christophersona128a932020-09-23 11:03:57 -0700935 i = vmx_find_loadstore_msr_slot(&m->host, msr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400936 if (i < 0)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300937 return;
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400938
939 --m->host.nr;
940 m->host.val[i] = m->host.val[m->host.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400941 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300942}
943
Gleb Natapov2961e8762013-11-25 15:37:13 +0200944static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
945 unsigned long entry, unsigned long exit,
946 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
947 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200948{
949 vmcs_write64(guest_val_vmcs, guest_val);
Sean Christopherson5a5e8a12018-09-26 09:23:56 -0700950 if (host_val_vmcs != HOST_IA32_EFER)
951 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +0200952 vm_entry_controls_setbit(vmx, entry);
953 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200954}
955
Avi Kivity61d2ef22010-04-28 16:40:38 +0300956static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400957 u64 guest_val, u64 host_val, bool entry_only)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300958{
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400959 int i, j = 0;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300960 struct msr_autoload *m = &vmx->msr_autoload;
961
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200962 switch (msr) {
963 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800964 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200965 add_atomic_switch_msr_special(vmx,
966 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200967 VM_EXIT_LOAD_IA32_EFER,
968 GUEST_IA32_EFER,
969 HOST_IA32_EFER,
970 guest_val, host_val);
971 return;
972 }
973 break;
974 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800975 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200976 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200977 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
978 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
979 GUEST_IA32_PERF_GLOBAL_CTRL,
980 HOST_IA32_PERF_GLOBAL_CTRL,
981 guest_val, host_val);
982 return;
983 }
984 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +0100985 case MSR_IA32_PEBS_ENABLE:
986 /* PEBS needs a quiescent period after being disabled (to write
987 * a record). Disabling PEBS through VMX MSR swapping doesn't
988 * provide that period, so a CPU could write host's record into
989 * guest's memory.
990 */
991 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +0200992 }
993
Sean Christophersona128a932020-09-23 11:03:57 -0700994 i = vmx_find_loadstore_msr_slot(&m->guest, msr);
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400995 if (!entry_only)
Sean Christophersona128a932020-09-23 11:03:57 -0700996 j = vmx_find_loadstore_msr_slot(&m->host, msr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300997
Sean Christophersonce833b22020-09-23 11:03:56 -0700998 if ((i < 0 && m->guest.nr == MAX_NR_LOADSTORE_MSRS) ||
999 (j < 0 && m->host.nr == MAX_NR_LOADSTORE_MSRS)) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02001000 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001001 "Can't add msr %x\n", msr);
1002 return;
Avi Kivity61d2ef22010-04-28 16:40:38 +03001003 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04001004 if (i < 0) {
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04001005 i = m->guest.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04001006 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04001007 }
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04001008 m->guest.val[i].index = msr;
1009 m->guest.val[i].value = guest_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +03001010
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04001011 if (entry_only)
1012 return;
1013
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04001014 if (j < 0) {
1015 j = m->host.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04001016 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +03001017 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04001018 m->host.val[j].index = msr;
1019 m->host.val[j].value = host_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +03001020}
1021
Sean Christopherson86e3e492020-09-23 11:04:04 -07001022static bool update_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +03001023{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001024 u64 guest_efer = vmx->vcpu.arch.efer;
1025 u64 ignore_bits = 0;
Sean Christopherson86e3e492020-09-23 11:04:04 -07001026 int i;
Eddie Dong2cc51562007-05-21 07:28:09 +03001027
Paolo Bonzini9167ab72019-10-27 16:23:23 +01001028 /* Shadow paging assumes NX to be available. */
1029 if (!enable_ept)
1030 guest_efer |= EFER_NX;
Roel Kluin3a34a882009-08-04 02:08:45 -07001031
Avi Kivity51c6cf62007-08-29 03:48:05 +03001032 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001033 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03001034 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001035 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001036#ifdef CONFIG_X86_64
1037 ignore_bits |= EFER_LMA | EFER_LME;
1038 /* SCE is meaningful only in long mode on Intel */
1039 if (guest_efer & EFER_LMA)
1040 ignore_bits &= ~(u64)EFER_SCE;
1041#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03001042
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08001043 /*
1044 * On EPT, we can't emulate NX, so we must switch EFER atomically.
1045 * On CPUs that support "load IA32_EFER", always switch EFER
1046 * atomically, since it's faster than switching it manually.
1047 */
Sean Christophersonc73da3f2018-12-03 13:53:00 -08001048 if (cpu_has_load_ia32_efer() ||
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08001049 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03001050 if (!(guest_efer & EFER_LMA))
1051 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08001052 if (guest_efer != host_efer)
1053 add_atomic_switch_msr(vmx, MSR_EFER,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04001054 guest_efer, host_efer, false);
Sean Christopherson02343cf2018-09-26 09:23:43 -07001055 else
1056 clear_atomic_switch_msr(vmx, MSR_EFER);
Avi Kivity84ad33e2010-04-28 16:42:29 +03001057 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001058 }
Sean Christopherson86e3e492020-09-23 11:04:04 -07001059
1060 i = __vmx_find_uret_msr(vmx, MSR_EFER);
1061 if (i < 0)
1062 return false;
1063
1064 clear_atomic_switch_msr(vmx, MSR_EFER);
1065
1066 guest_efer &= ~ignore_bits;
1067 guest_efer |= host_efer & ignore_bits;
1068
1069 vmx->guest_uret_msrs[i].data = guest_efer;
1070 vmx->guest_uret_msrs[i].mask = ~ignore_bits;
1071
1072 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001073}
1074
Andy Lutomirskie28baea2017-02-20 08:56:11 -08001075#ifdef CONFIG_X86_32
1076/*
1077 * On 32-bit kernels, VM exits still load the FS and GS bases from the
1078 * VMCS rather than the segment table. KVM uses this helper to figure
1079 * out the current bases to poke them into the VMCS before entry.
1080 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001081static unsigned long segment_base(u16 selector)
1082{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001083 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001084 unsigned long v;
1085
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001086 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001087 return 0;
1088
Thomas Garnier45fc8752017-03-14 10:05:08 -07001089 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001090
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001091 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001092 u16 ldt_selector = kvm_read_ldt();
1093
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001094 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001095 return 0;
1096
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001097 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001098 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001099 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001100 return v;
1101}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08001102#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001103
Sean Christophersone348ac72019-12-10 15:24:33 -08001104static inline bool pt_can_write_msr(struct vcpu_vmx *vmx)
1105{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001106 return vmx_pt_mode_is_host_guest() &&
Sean Christophersone348ac72019-12-10 15:24:33 -08001107 !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
1108}
1109
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07001110static inline bool pt_output_base_valid(struct kvm_vcpu *vcpu, u64 base)
1111{
1112 /* The base must be 128-byte aligned and a legal physical address. */
Sean Christopherson7096cbf2020-09-24 12:42:50 -07001113 return !kvm_vcpu_is_illegal_gpa(vcpu, base) && !(base & 0x7f);
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07001114}
1115
Chao Peng2ef444f2018-10-24 16:05:12 +08001116static inline void pt_load_msr(struct pt_ctx *ctx, u32 addr_range)
1117{
1118 u32 i;
1119
1120 wrmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
1121 wrmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
1122 wrmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1123 wrmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1124 for (i = 0; i < addr_range; i++) {
1125 wrmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1126 wrmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1127 }
1128}
1129
1130static inline void pt_save_msr(struct pt_ctx *ctx, u32 addr_range)
1131{
1132 u32 i;
1133
1134 rdmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
1135 rdmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
1136 rdmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1137 rdmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1138 for (i = 0; i < addr_range; i++) {
1139 rdmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1140 rdmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1141 }
1142}
1143
1144static void pt_guest_enter(struct vcpu_vmx *vmx)
1145{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001146 if (vmx_pt_mode_is_system())
Chao Peng2ef444f2018-10-24 16:05:12 +08001147 return;
1148
Chao Peng2ef444f2018-10-24 16:05:12 +08001149 /*
Chao Pengb08c2892018-10-24 16:05:15 +08001150 * GUEST_IA32_RTIT_CTL is already set in the VMCS.
1151 * Save host state before VM entry.
Chao Peng2ef444f2018-10-24 16:05:12 +08001152 */
Chao Pengb08c2892018-10-24 16:05:15 +08001153 rdmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
Chao Peng2ef444f2018-10-24 16:05:12 +08001154 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
1155 wrmsrl(MSR_IA32_RTIT_CTL, 0);
1156 pt_save_msr(&vmx->pt_desc.host, vmx->pt_desc.addr_range);
1157 pt_load_msr(&vmx->pt_desc.guest, vmx->pt_desc.addr_range);
1158 }
1159}
1160
1161static void pt_guest_exit(struct vcpu_vmx *vmx)
1162{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001163 if (vmx_pt_mode_is_system())
Chao Peng2ef444f2018-10-24 16:05:12 +08001164 return;
1165
1166 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
1167 pt_save_msr(&vmx->pt_desc.guest, vmx->pt_desc.addr_range);
1168 pt_load_msr(&vmx->pt_desc.host, vmx->pt_desc.addr_range);
1169 }
1170
1171 /* Reload host state (IA32_RTIT_CTL will be cleared on VM exit). */
1172 wrmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
1173}
1174
Sean Christopherson13b964a2019-05-07 09:06:31 -07001175void vmx_set_host_fs_gs(struct vmcs_host_state *host, u16 fs_sel, u16 gs_sel,
1176 unsigned long fs_base, unsigned long gs_base)
1177{
1178 if (unlikely(fs_sel != host->fs_sel)) {
1179 if (!(fs_sel & 7))
1180 vmcs_write16(HOST_FS_SELECTOR, fs_sel);
1181 else
1182 vmcs_write16(HOST_FS_SELECTOR, 0);
1183 host->fs_sel = fs_sel;
1184 }
1185 if (unlikely(gs_sel != host->gs_sel)) {
1186 if (!(gs_sel & 7))
1187 vmcs_write16(HOST_GS_SELECTOR, gs_sel);
1188 else
1189 vmcs_write16(HOST_GS_SELECTOR, 0);
1190 host->gs_sel = gs_sel;
1191 }
1192 if (unlikely(fs_base != host->fs_base)) {
1193 vmcs_writel(HOST_FS_BASE, fs_base);
1194 host->fs_base = fs_base;
1195 }
1196 if (unlikely(gs_base != host->gs_base)) {
1197 vmcs_writel(HOST_GS_BASE, gs_base);
1198 host->gs_base = gs_base;
1199 }
1200}
1201
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001202void vmx_prepare_switch_to_guest(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001203{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001204 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond7ee0392018-07-23 12:32:47 -07001205 struct vmcs_host_state *host_state;
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001206#ifdef CONFIG_X86_64
Vitaly Kuznetsov35060ed2018-03-13 18:48:05 +01001207 int cpu = raw_smp_processor_id();
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001208#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001209 unsigned long fs_base, gs_base;
1210 u16 fs_sel, gs_sel;
Avi Kivity26bb0982009-09-07 11:14:12 +03001211 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001212
Sean Christophersond264ee02018-08-27 15:21:12 -07001213 vmx->req_immediate_exit = false;
1214
Liran Alonf48b4712018-11-20 18:03:25 +02001215 /*
1216 * Note that guest MSRs to be saved/restored can also be changed
1217 * when guest state is loaded. This happens when guest transitions
1218 * to/from long-mode by setting MSR_EFER.LMA.
1219 */
Sean Christopherson658ece82020-09-23 11:04:01 -07001220 if (!vmx->guest_uret_msrs_loaded) {
1221 vmx->guest_uret_msrs_loaded = true;
Sean Christophersone9bb1ae2020-09-23 11:04:00 -07001222 for (i = 0; i < vmx->nr_active_uret_msrs; ++i)
Sean Christopherson802145c2020-09-23 11:04:09 -07001223 kvm_set_user_return_msr(vmx->guest_uret_msrs[i].slot,
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001224 vmx->guest_uret_msrs[i].data,
1225 vmx->guest_uret_msrs[i].mask);
Liran Alonf48b4712018-11-20 18:03:25 +02001226
1227 }
wanpeng lic9dfd3f2020-02-17 18:37:43 +08001228
1229 if (vmx->nested.need_vmcs12_to_shadow_sync)
1230 nested_sync_vmcs12_to_shadow(vcpu);
1231
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001232 if (vmx->guest_state_loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001233 return;
1234
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001235 host_state = &vmx->loaded_vmcs->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001236
Avi Kivity33ed6322007-05-02 16:54:03 +03001237 /*
1238 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1239 * allow segment selectors with cpl > 0 or ti == 1.
1240 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07001241 host_state->ldt_sel = kvm_read_ldt();
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01001242
1243#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001244 savesegment(ds, host_state->ds_sel);
1245 savesegment(es, host_state->es_sel);
Sean Christophersone368b872018-07-23 12:32:41 -07001246
1247 gs_base = cpu_kernelmode_gs_base(cpu);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001248 if (likely(is_64bit_mm(current->mm))) {
Thomas Gleixner67580342020-05-28 16:13:52 -04001249 current_save_fsgs();
Sean Christophersone368b872018-07-23 12:32:41 -07001250 fs_sel = current->thread.fsindex;
1251 gs_sel = current->thread.gsindex;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001252 fs_base = current->thread.fsbase;
Sean Christophersone368b872018-07-23 12:32:41 -07001253 vmx->msr_host_kernel_gs_base = current->thread.gsbase;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001254 } else {
Sean Christophersone368b872018-07-23 12:32:41 -07001255 savesegment(fs, fs_sel);
1256 savesegment(gs, gs_sel);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001257 fs_base = read_msr(MSR_FS_BASE);
Sean Christophersone368b872018-07-23 12:32:41 -07001258 vmx->msr_host_kernel_gs_base = read_msr(MSR_KERNEL_GS_BASE);
Avi Kivity33ed6322007-05-02 16:54:03 +03001259 }
1260
Paolo Bonzini4679b612018-09-24 17:23:01 +02001261 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity33ed6322007-05-02 16:54:03 +03001262#else
Sean Christophersone368b872018-07-23 12:32:41 -07001263 savesegment(fs, fs_sel);
1264 savesegment(gs, gs_sel);
1265 fs_base = segment_base(fs_sel);
1266 gs_base = segment_base(gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001267#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001268
Sean Christopherson13b964a2019-05-07 09:06:31 -07001269 vmx_set_host_fs_gs(host_state, fs_sel, gs_sel, fs_base, gs_base);
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001270 vmx->guest_state_loaded = true;
Avi Kivity33ed6322007-05-02 16:54:03 +03001271}
1272
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001273static void vmx_prepare_switch_to_host(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001274{
Sean Christophersond7ee0392018-07-23 12:32:47 -07001275 struct vmcs_host_state *host_state;
1276
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001277 if (!vmx->guest_state_loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001278 return;
1279
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001280 host_state = &vmx->loaded_vmcs->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001281
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001282 ++vmx->vcpu.stat.host_state_reload;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001283
Avi Kivityc8770e72010-11-11 12:37:26 +02001284#ifdef CONFIG_X86_64
Paolo Bonzini4679b612018-09-24 17:23:01 +02001285 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivityc8770e72010-11-11 12:37:26 +02001286#endif
Sean Christophersond7ee0392018-07-23 12:32:47 -07001287 if (host_state->ldt_sel || (host_state->gs_sel & 7)) {
1288 kvm_load_ldt(host_state->ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001289#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001290 load_gs_index(host_state->gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02001291#else
Sean Christophersond7ee0392018-07-23 12:32:47 -07001292 loadsegment(gs, host_state->gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001293#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03001294 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07001295 if (host_state->fs_sel & 7)
1296 loadsegment(fs, host_state->fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001297#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001298 if (unlikely(host_state->ds_sel | host_state->es_sel)) {
1299 loadsegment(ds, host_state->ds_sel);
1300 loadsegment(es, host_state->es_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001301 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03001302#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08001303 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03001304#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001305 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001306#endif
Thomas Garnier45fc8752017-03-14 10:05:08 -07001307 load_fixmap_gdt(raw_smp_processor_id());
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001308 vmx->guest_state_loaded = false;
Sean Christopherson658ece82020-09-23 11:04:01 -07001309 vmx->guest_uret_msrs_loaded = false;
Avi Kivity33ed6322007-05-02 16:54:03 +03001310}
1311
Sean Christopherson678e3152018-07-23 12:32:43 -07001312#ifdef CONFIG_X86_64
1313static u64 vmx_read_guest_kernel_gs_base(struct vcpu_vmx *vmx)
Avi Kivitya9b21b62008-06-24 11:48:49 +03001314{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001315 preempt_disable();
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001316 if (vmx->guest_state_loaded)
Paolo Bonzini4679b612018-09-24 17:23:01 +02001317 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1318 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001319 return vmx->msr_guest_kernel_gs_base;
Avi Kivitya9b21b62008-06-24 11:48:49 +03001320}
1321
Sean Christopherson678e3152018-07-23 12:32:43 -07001322static void vmx_write_guest_kernel_gs_base(struct vcpu_vmx *vmx, u64 data)
1323{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001324 preempt_disable();
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001325 if (vmx->guest_state_loaded)
Paolo Bonzini4679b612018-09-24 17:23:01 +02001326 wrmsrl(MSR_KERNEL_GS_BASE, data);
1327 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001328 vmx->msr_guest_kernel_gs_base = data;
1329}
1330#endif
1331
Sean Christopherson5c911be2020-05-01 09:31:17 -07001332void vmx_vcpu_load_vmcs(struct kvm_vcpu *vcpu, int cpu,
1333 struct loaded_vmcs *buddy)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001334{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001335 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001336 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Sean Christopherson5c911be2020-05-01 09:31:17 -07001337 struct vmcs *prev;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001338
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001339 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01001340 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001341 local_irq_disable();
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001342
1343 /*
Sean Christopherson31603d42020-03-21 12:37:49 -07001344 * Ensure loaded_vmcs->cpu is read before adding loaded_vmcs to
1345 * this cpu's percpu list, otherwise it may not yet be deleted
1346 * from its previous cpu's percpu list. Pairs with the
1347 * smb_wmb() in __loaded_vmcs_clear().
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001348 */
1349 smp_rmb();
1350
Nadav Har'Eld462b812011-05-24 15:26:10 +03001351 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
1352 &per_cpu(loaded_vmcss_on_cpu, cpu));
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001353 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001354 }
1355
Sean Christopherson5c911be2020-05-01 09:31:17 -07001356 prev = per_cpu(current_vmcs, cpu);
1357 if (prev != vmx->loaded_vmcs->vmcs) {
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001358 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
1359 vmcs_load(vmx->loaded_vmcs->vmcs);
Sean Christopherson5c911be2020-05-01 09:31:17 -07001360
1361 /*
1362 * No indirect branch prediction barrier needed when switching
1363 * the active VMCS within a guest, e.g. on nested VM-Enter.
1364 * The L1 VMM can protect itself with retpolines, IBPB or IBRS.
1365 */
1366 if (!buddy || WARN_ON_ONCE(buddy->vmcs != prev))
1367 indirect_branch_prediction_barrier();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001368 }
1369
1370 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001371 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001372 unsigned long sysenter_esp;
1373
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07001374 /*
1375 * Flush all EPTP/VPID contexts, the new pCPU may have stale
1376 * TLB entries from its previous association with the vCPU.
1377 */
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001378 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001379
Avi Kivity6aa8b732006-12-10 02:21:36 -08001380 /*
1381 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001382 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001383 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001384 vmcs_writel(HOST_TR_BASE,
Andy Lutomirski72f5e082017-12-04 15:07:20 +01001385 (unsigned long)&get_cpu_entry_area(cpu)->tss.x86_tss);
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001386 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001387
1388 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
1389 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08001390
Nadav Har'Eld462b812011-05-24 15:26:10 +03001391 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001392 }
Feng Wu28b835d2015-09-18 22:29:54 +08001393
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001394 /* Setup TSC multiplier */
1395 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07001396 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
1397 decache_tsc_multiplier(vmx);
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001398}
1399
1400/*
1401 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
1402 * vcpu mutex is already taken.
1403 */
Sean Christopherson1af1bb02020-05-06 16:58:50 -07001404static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001405{
1406 struct vcpu_vmx *vmx = to_vmx(vcpu);
1407
Sean Christopherson5c911be2020-05-01 09:31:17 -07001408 vmx_vcpu_load_vmcs(vcpu, cpu, NULL);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001409
Feng Wu28b835d2015-09-18 22:29:54 +08001410 vmx_vcpu_pi_load(vcpu, cpu);
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001411
Wanpeng Li74c55932017-11-29 01:31:20 -08001412 vmx->host_debugctlmsr = get_debugctlmsr();
Feng Wu28b835d2015-09-18 22:29:54 +08001413}
1414
Sean Christopherson13b964a2019-05-07 09:06:31 -07001415static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001416{
Feng Wu28b835d2015-09-18 22:29:54 +08001417 vmx_vcpu_pi_put(vcpu);
1418
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001419 vmx_prepare_switch_to_host(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001420}
1421
Wanpeng Lif244dee2017-07-20 01:11:54 -07001422static bool emulation_required(struct kvm_vcpu *vcpu)
1423{
Sean Christopherson2ba44932020-09-23 11:44:48 -07001424 return emulate_invalid_guest_state && !vmx_guest_state_valid(vcpu);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001425}
1426
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001427unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001428{
Sean Christophersone7bddc52019-09-27 14:45:18 -07001429 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity78ac8b42010-04-08 18:19:35 +03001430 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03001431
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001432 if (!kvm_register_is_available(vcpu, VCPU_EXREG_RFLAGS)) {
1433 kvm_register_mark_available(vcpu, VCPU_EXREG_RFLAGS);
Avi Kivity6de12732011-03-07 12:51:22 +02001434 rflags = vmcs_readl(GUEST_RFLAGS);
Sean Christophersone7bddc52019-09-27 14:45:18 -07001435 if (vmx->rmode.vm86_active) {
Avi Kivity6de12732011-03-07 12:51:22 +02001436 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
Sean Christophersone7bddc52019-09-27 14:45:18 -07001437 save_rflags = vmx->rmode.save_rflags;
Avi Kivity6de12732011-03-07 12:51:22 +02001438 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
1439 }
Sean Christophersone7bddc52019-09-27 14:45:18 -07001440 vmx->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001441 }
Sean Christophersone7bddc52019-09-27 14:45:18 -07001442 return vmx->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001443}
1444
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001445void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001446{
Sean Christophersone7bddc52019-09-27 14:45:18 -07001447 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson491c1ad2019-09-27 14:45:19 -07001448 unsigned long old_rflags;
Wanpeng Lif244dee2017-07-20 01:11:54 -07001449
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00001450 if (is_unrestricted_guest(vcpu)) {
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001451 kvm_register_mark_available(vcpu, VCPU_EXREG_RFLAGS);
Sean Christopherson491c1ad2019-09-27 14:45:19 -07001452 vmx->rflags = rflags;
1453 vmcs_writel(GUEST_RFLAGS, rflags);
1454 return;
1455 }
1456
1457 old_rflags = vmx_get_rflags(vcpu);
Sean Christophersone7bddc52019-09-27 14:45:18 -07001458 vmx->rflags = rflags;
1459 if (vmx->rmode.vm86_active) {
1460 vmx->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001461 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001462 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001463 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001464
Sean Christophersone7bddc52019-09-27 14:45:18 -07001465 if ((old_rflags ^ vmx->rflags) & X86_EFLAGS_VM)
1466 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001467}
1468
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001469u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001470{
1471 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1472 int ret = 0;
1473
1474 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01001475 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001476 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01001477 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001478
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02001479 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001480}
1481
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001482void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001483{
1484 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1485 u32 interruptibility = interruptibility_old;
1486
1487 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
1488
Jan Kiszka48005f62010-02-19 19:38:07 +01001489 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001490 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01001491 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001492 interruptibility |= GUEST_INTR_STATE_STI;
1493
1494 if ((interruptibility != interruptibility_old))
1495 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
1496}
1497
Chao Pengbf8c55d2018-10-24 16:05:14 +08001498static int vmx_rtit_ctl_check(struct kvm_vcpu *vcpu, u64 data)
1499{
1500 struct vcpu_vmx *vmx = to_vmx(vcpu);
1501 unsigned long value;
1502
1503 /*
1504 * Any MSR write that attempts to change bits marked reserved will
1505 * case a #GP fault.
1506 */
1507 if (data & vmx->pt_desc.ctl_bitmask)
1508 return 1;
1509
1510 /*
1511 * Any attempt to modify IA32_RTIT_CTL while TraceEn is set will
1512 * result in a #GP unless the same write also clears TraceEn.
1513 */
1514 if ((vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) &&
1515 ((vmx->pt_desc.guest.ctl ^ data) & ~RTIT_CTL_TRACEEN))
1516 return 1;
1517
1518 /*
1519 * WRMSR to IA32_RTIT_CTL that sets TraceEn but clears this bit
1520 * and FabricEn would cause #GP, if
1521 * CPUID.(EAX=14H, ECX=0):ECX.SNGLRGNOUT[bit 2] = 0
1522 */
1523 if ((data & RTIT_CTL_TRACEEN) && !(data & RTIT_CTL_TOPA) &&
1524 !(data & RTIT_CTL_FABRIC_EN) &&
1525 !intel_pt_validate_cap(vmx->pt_desc.caps,
1526 PT_CAP_single_range_output))
1527 return 1;
1528
1529 /*
1530 * MTCFreq, CycThresh and PSBFreq encodings check, any MSR write that
1531 * utilize encodings marked reserved will casue a #GP fault.
1532 */
1533 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc_periods);
1534 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc) &&
1535 !test_bit((data & RTIT_CTL_MTC_RANGE) >>
1536 RTIT_CTL_MTC_RANGE_OFFSET, &value))
1537 return 1;
1538 value = intel_pt_validate_cap(vmx->pt_desc.caps,
1539 PT_CAP_cycle_thresholds);
1540 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1541 !test_bit((data & RTIT_CTL_CYC_THRESH) >>
1542 RTIT_CTL_CYC_THRESH_OFFSET, &value))
1543 return 1;
1544 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_periods);
1545 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1546 !test_bit((data & RTIT_CTL_PSB_FREQ) >>
1547 RTIT_CTL_PSB_FREQ_OFFSET, &value))
1548 return 1;
1549
1550 /*
1551 * If ADDRx_CFG is reserved or the encodings is >2 will
1552 * cause a #GP fault.
1553 */
1554 value = (data & RTIT_CTL_ADDR0) >> RTIT_CTL_ADDR0_OFFSET;
1555 if ((value && (vmx->pt_desc.addr_range < 1)) || (value > 2))
1556 return 1;
1557 value = (data & RTIT_CTL_ADDR1) >> RTIT_CTL_ADDR1_OFFSET;
1558 if ((value && (vmx->pt_desc.addr_range < 2)) || (value > 2))
1559 return 1;
1560 value = (data & RTIT_CTL_ADDR2) >> RTIT_CTL_ADDR2_OFFSET;
1561 if ((value && (vmx->pt_desc.addr_range < 3)) || (value > 2))
1562 return 1;
1563 value = (data & RTIT_CTL_ADDR3) >> RTIT_CTL_ADDR3_OFFSET;
1564 if ((value && (vmx->pt_desc.addr_range < 4)) || (value > 2))
1565 return 1;
1566
1567 return 0;
1568}
1569
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07001570static bool vmx_can_emulate_instruction(struct kvm_vcpu *vcpu, void *insn, int insn_len)
1571{
1572 return true;
1573}
1574
Sean Christopherson1957aa62019-08-27 14:40:39 -07001575static int skip_emulated_instruction(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001576{
Paolo Bonzinifede8072020-04-27 11:55:59 -04001577 unsigned long rip, orig_rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001578
Sean Christopherson1957aa62019-08-27 14:40:39 -07001579 /*
1580 * Using VMCS.VM_EXIT_INSTRUCTION_LEN on EPT misconfig depends on
1581 * undefined behavior: Intel's SDM doesn't mandate the VMCS field be
1582 * set when EPT misconfig occurs. In practice, real hardware updates
1583 * VM_EXIT_INSTRUCTION_LEN on EPT misconfig, but other hypervisors
1584 * (namely Hyper-V) don't set it due to it being undefined behavior,
1585 * i.e. we end up advancing IP with some random value.
1586 */
1587 if (!static_cpu_has(X86_FEATURE_HYPERVISOR) ||
Sean Christopherson8e533242020-11-06 17:03:12 +08001588 to_vmx(vcpu)->exit_reason.basic != EXIT_REASON_EPT_MISCONFIG) {
Paolo Bonzinifede8072020-04-27 11:55:59 -04001589 orig_rip = kvm_rip_read(vcpu);
1590 rip = orig_rip + vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
1591#ifdef CONFIG_X86_64
1592 /*
1593 * We need to mask out the high 32 bits of RIP if not in 64-bit
1594 * mode, but just finding out that we are in 64-bit mode is
1595 * quite expensive. Only do it if there was a carry.
1596 */
1597 if (unlikely(((rip ^ orig_rip) >> 31) == 3) && !is_64_bit_mode(vcpu))
1598 rip = (u32)rip;
1599#endif
Sean Christopherson1957aa62019-08-27 14:40:39 -07001600 kvm_rip_write(vcpu, rip);
1601 } else {
1602 if (!kvm_emulate_instruction(vcpu, EMULTYPE_SKIP))
1603 return 0;
1604 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001605
Glauber Costa2809f5d2009-05-12 16:21:05 -04001606 /* skipping an emulated instruction also counts */
1607 vmx_set_interrupt_shadow(vcpu, 0);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02001608
Sean Christopherson60fc3d02019-08-27 14:40:38 -07001609 return 1;
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02001610}
1611
Vitaly Kuznetsov7a35e512020-06-05 13:59:05 +02001612/*
Oliver Upton5ef8acb2020-02-07 02:36:07 -08001613 * Recognizes a pending MTF VM-exit and records the nested state for later
1614 * delivery.
1615 */
1616static void vmx_update_emulated_instruction(struct kvm_vcpu *vcpu)
1617{
1618 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1619 struct vcpu_vmx *vmx = to_vmx(vcpu);
1620
1621 if (!is_guest_mode(vcpu))
1622 return;
1623
1624 /*
1625 * Per the SDM, MTF takes priority over debug-trap exceptions besides
1626 * T-bit traps. As instruction emulation is completed (i.e. at the
1627 * instruction boundary), any #DB exception pending delivery must be a
1628 * debug-trap. Record the pending MTF state to be delivered in
1629 * vmx_check_nested_events().
1630 */
1631 if (nested_cpu_has_mtf(vmcs12) &&
1632 (!vcpu->arch.exception.pending ||
1633 vcpu->arch.exception.nr == DB_VECTOR))
1634 vmx->nested.mtf_pending = true;
1635 else
1636 vmx->nested.mtf_pending = false;
1637}
1638
1639static int vmx_skip_emulated_instruction(struct kvm_vcpu *vcpu)
1640{
1641 vmx_update_emulated_instruction(vcpu);
1642 return skip_emulated_instruction(vcpu);
1643}
1644
Wanpeng Licaa057a2018-03-12 04:53:03 -07001645static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
1646{
1647 /*
1648 * Ensure that we clear the HLT state in the VMCS. We don't need to
1649 * explicitly skip the instruction because if the HLT state is set,
1650 * then the instruction is already executing and RIP has already been
1651 * advanced.
1652 */
1653 if (kvm_hlt_in_guest(vcpu->kvm) &&
1654 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
1655 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
1656}
1657
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001658static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02001659{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001660 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001661 unsigned nr = vcpu->arch.exception.nr;
1662 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001663 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001664 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001665
Jim Mattsonda998b42018-10-16 14:29:22 -07001666 kvm_deliver_exception_payload(vcpu);
1667
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001668 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001669 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001670 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
1671 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001672
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001673 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05001674 int inc_eip = 0;
1675 if (kvm_exception_is_soft(nr))
1676 inc_eip = vcpu->arch.event_exit_inst_len;
Sean Christopherson9497e1f2019-08-27 14:40:36 -07001677 kvm_inject_realmode_interrupt(vcpu, nr, inc_eip);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001678 return;
1679 }
1680
Sean Christophersonadd5ff72018-03-23 09:34:00 -07001681 WARN_ON_ONCE(vmx->emulation_required);
1682
Gleb Natapov66fd3f72009-05-11 13:35:50 +03001683 if (kvm_exception_is_soft(nr)) {
1684 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
1685 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001686 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
1687 } else
1688 intr_info |= INTR_TYPE_HARD_EXCEPTION;
1689
1690 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Wanpeng Licaa057a2018-03-12 04:53:03 -07001691
1692 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02001693}
1694
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001695static void vmx_setup_uret_msr(struct vcpu_vmx *vmx, unsigned int msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001696{
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001697 struct vmx_uret_msr tmp;
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001698 int from, to;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001699
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001700 from = __vmx_find_uret_msr(vmx, msr);
1701 if (from < 0)
1702 return;
1703 to = vmx->nr_active_uret_msrs++;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001704
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001705 tmp = vmx->guest_uret_msrs[to];
1706 vmx->guest_uret_msrs[to] = vmx->guest_uret_msrs[from];
1707 vmx->guest_uret_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03001708}
1709
1710/*
Avi Kivitye38aea32007-04-19 13:22:48 +03001711 * Set up the vmcs to automatically save and restore system
1712 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
1713 * mode, as fiddling with msrs is very expensive.
1714 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001715static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03001716{
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001717 vmx->guest_uret_msrs_loaded = false;
1718 vmx->nr_active_uret_msrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001719#ifdef CONFIG_X86_64
Jim Mattson84c8c5b2018-12-05 15:29:01 -08001720 /*
1721 * The SYSCALL MSRs are only needed on long mode guests, and only
1722 * when EFER.SCE is set.
1723 */
1724 if (is_long_mode(&vmx->vcpu) && (vmx->vcpu.arch.efer & EFER_SCE)) {
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001725 vmx_setup_uret_msr(vmx, MSR_STAR);
1726 vmx_setup_uret_msr(vmx, MSR_LSTAR);
1727 vmx_setup_uret_msr(vmx, MSR_SYSCALL_MASK);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001728 }
Eddie Donga75beee2007-05-17 18:55:15 +03001729#endif
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001730 if (update_transition_efer(vmx))
1731 vmx_setup_uret_msr(vmx, MSR_EFER);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001732
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001733 if (guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP))
1734 vmx_setup_uret_msr(vmx, MSR_TSC_AUX);
1735
1736 vmx_setup_uret_msr(vmx, MSR_IA32_TSX_CTRL);
Avi Kivity58972972009-02-24 22:26:47 +02001737
Yang Zhang8d146952013-01-25 10:18:50 +08001738 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01001739 vmx_update_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03001740}
1741
Leonid Shatz326e7422018-11-06 12:14:25 +02001742static u64 vmx_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001743{
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001744 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1745 u64 g_tsc_offset = 0;
Leonid Shatz326e7422018-11-06 12:14:25 +02001746
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001747 /*
1748 * We're here if L1 chose not to trap WRMSR to TSC. According
1749 * to the spec, this should set L1's TSC; The offset that L1
1750 * set for L2 remains unchanged, and still needs to be added
1751 * to the newly set TSC to get L2's TSC.
1752 */
1753 if (is_guest_mode(vcpu) &&
Xiaoyao Li5e3d3942019-12-06 16:45:26 +08001754 (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETTING))
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001755 g_tsc_offset = vmcs12->tsc_offset;
1756
1757 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1758 vcpu->arch.tsc_offset - g_tsc_offset,
1759 offset);
1760 vmcs_write64(TSC_OFFSET, offset + g_tsc_offset);
1761 return offset + g_tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001762}
1763
Nadav Har'El801d3422011-05-25 23:02:23 +03001764/*
1765 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
1766 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
1767 * all guests if the "nested" module option is off, and can also be disabled
1768 * for a single guest by disabling its VMX cpuid bit.
1769 */
Sean Christopherson7c97fcb2018-12-03 13:53:17 -08001770bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
Nadav Har'El801d3422011-05-25 23:02:23 +03001771{
Radim Krčmářd6321d42017-08-05 00:12:49 +02001772 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03001773}
1774
Haozhong Zhang37e4c992016-06-22 14:59:55 +08001775static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
1776 uint64_t val)
1777{
1778 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
1779
1780 return !(val & ~valid_bits);
1781}
1782
Tom Lendacky801e4592018-02-21 13:39:51 -06001783static int vmx_get_msr_feature(struct kvm_msr_entry *msr)
1784{
Paolo Bonzini13893092018-02-26 13:40:09 +01001785 switch (msr->index) {
1786 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1787 if (!nested)
1788 return 1;
1789 return vmx_get_vmx_msr(&vmcs_config.nested, msr->index, &msr->data);
Like Xu27461da32020-05-29 15:43:45 +08001790 case MSR_IA32_PERF_CAPABILITIES:
1791 msr->data = vmx_get_perf_capabilities();
1792 return 0;
Paolo Bonzini13893092018-02-26 13:40:09 +01001793 default:
Peter Xu12bc2132020-06-22 18:04:42 -04001794 return KVM_MSR_RET_INVALID;
Paolo Bonzini13893092018-02-26 13:40:09 +01001795 }
Tom Lendacky801e4592018-02-21 13:39:51 -06001796}
1797
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001798/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001799 * Reads an msr value (of 'msr_index') into 'pdata'.
1800 * Returns 0 on success, non-0 otherwise.
1801 * Assumes vcpu_load() was already called.
1802 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001803static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001804{
Borislav Petkova6cb0992017-12-20 12:50:28 +01001805 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001806 struct vmx_uret_msr *msr;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001807 u32 index;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001808
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001809 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001810#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001811 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001812 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001813 break;
1814 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001815 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001816 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001817 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001818 msr_info->data = vmx_read_guest_kernel_gs_base(vmx);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001819 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03001820#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001821 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001822 return kvm_get_msr_common(vcpu, msr_info);
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05001823 case MSR_IA32_TSX_CTRL:
1824 if (!msr_info->host_initiated &&
1825 !(vcpu->arch.arch_capabilities & ARCH_CAP_TSX_CTRL_MSR))
1826 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001827 goto find_uret_msr;
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001828 case MSR_IA32_UMWAIT_CONTROL:
1829 if (!msr_info->host_initiated && !vmx_has_waitpkg(vmx))
1830 return 1;
1831
1832 msr_info->data = vmx->msr_ia32_umwait_control;
1833 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001834 case MSR_IA32_SPEC_CTRL:
1835 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05001836 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001837 return 1;
1838
1839 msr_info->data = to_vmx(vcpu)->spec_ctrl;
1840 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001841 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001842 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001843 break;
1844 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001845 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001846 break;
1847 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001848 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001849 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001850 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08001851 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02001852 (!msr_info->host_initiated &&
1853 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01001854 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001855 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001856 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001857 case MSR_IA32_MCG_EXT_CTL:
1858 if (!msr_info->host_initiated &&
Borislav Petkova6cb0992017-12-20 12:50:28 +01001859 !(vmx->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001860 FEAT_CTL_LMCE_ENABLED))
Jan Kiszkacae50132014-01-04 18:47:22 +01001861 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001862 msr_info->data = vcpu->arch.mcg_ext_ctl;
1863 break;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001864 case MSR_IA32_FEAT_CTL:
Borislav Petkova6cb0992017-12-20 12:50:28 +01001865 msr_info->data = vmx->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01001866 break;
1867 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1868 if (!nested_vmx_allowed(vcpu))
1869 return 1;
Vitaly Kuznetsov31de3d22020-02-05 13:30:33 +01001870 if (vmx_get_vmx_msr(&vmx->nested.msrs, msr_info->index,
1871 &msr_info->data))
1872 return 1;
1873 /*
1874 * Enlightened VMCS v1 doesn't have certain fields, but buggy
1875 * Hyper-V versions are still trying to use corresponding
1876 * features when they are exposed. Filter out the essential
1877 * minimum.
1878 */
1879 if (!msr_info->host_initiated &&
1880 vmx->nested.enlightened_vmcs_enabled)
1881 nested_evmcs_filter_control_msr(msr_info->index,
1882 &msr_info->data);
1883 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001884 case MSR_IA32_RTIT_CTL:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001885 if (!vmx_pt_mode_is_host_guest())
Chao Pengbf8c55d2018-10-24 16:05:14 +08001886 return 1;
1887 msr_info->data = vmx->pt_desc.guest.ctl;
1888 break;
1889 case MSR_IA32_RTIT_STATUS:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001890 if (!vmx_pt_mode_is_host_guest())
Chao Pengbf8c55d2018-10-24 16:05:14 +08001891 return 1;
1892 msr_info->data = vmx->pt_desc.guest.status;
1893 break;
1894 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001895 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001896 !intel_pt_validate_cap(vmx->pt_desc.caps,
1897 PT_CAP_cr3_filtering))
1898 return 1;
1899 msr_info->data = vmx->pt_desc.guest.cr3_match;
1900 break;
1901 case MSR_IA32_RTIT_OUTPUT_BASE:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001902 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001903 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1904 PT_CAP_topa_output) &&
1905 !intel_pt_validate_cap(vmx->pt_desc.caps,
1906 PT_CAP_single_range_output)))
1907 return 1;
1908 msr_info->data = vmx->pt_desc.guest.output_base;
1909 break;
1910 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001911 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001912 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1913 PT_CAP_topa_output) &&
1914 !intel_pt_validate_cap(vmx->pt_desc.caps,
1915 PT_CAP_single_range_output)))
1916 return 1;
1917 msr_info->data = vmx->pt_desc.guest.output_mask;
1918 break;
1919 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
1920 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
Sean Christopherson2ef76192020-03-02 15:56:22 -08001921 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001922 (index >= 2 * intel_pt_validate_cap(vmx->pt_desc.caps,
1923 PT_CAP_num_address_ranges)))
1924 return 1;
1925 if (index % 2)
1926 msr_info->data = vmx->pt_desc.guest.addr_b[index / 2];
1927 else
1928 msr_info->data = vmx->pt_desc.guest.addr_a[index / 2];
1929 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001930 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02001931 if (!msr_info->host_initiated &&
1932 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001933 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001934 goto find_uret_msr;
Like Xud8550662021-01-08 09:36:55 +08001935 case MSR_IA32_DEBUGCTLMSR:
1936 msr_info->data = vmcs_read64(GUEST_IA32_DEBUGCTL);
1937 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001938 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001939 find_uret_msr:
Sean Christophersond85a8032020-09-23 11:04:06 -07001940 msr = vmx_find_uret_msr(vmx, msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001941 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001942 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001943 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001944 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001945 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001946 }
1947
Avi Kivity6aa8b732006-12-10 02:21:36 -08001948 return 0;
1949}
1950
Sean Christopherson24085002020-04-28 16:10:24 -07001951static u64 nested_vmx_truncate_sysenter_addr(struct kvm_vcpu *vcpu,
1952 u64 data)
1953{
1954#ifdef CONFIG_X86_64
1955 if (!guest_cpuid_has(vcpu, X86_FEATURE_LM))
1956 return (u32)data;
1957#endif
1958 return (unsigned long)data;
1959}
1960
Like Xuc6462362021-02-01 13:10:31 +08001961static u64 vcpu_supported_debugctl(struct kvm_vcpu *vcpu)
1962{
1963 u64 debugctl = vmx_supported_debugctl();
1964
1965 if (!intel_pmu_lbr_is_enabled(vcpu))
Like Xue6209a32021-02-01 13:10:36 +08001966 debugctl &= ~DEBUGCTLMSR_LBR_MASK;
Like Xuc6462362021-02-01 13:10:31 +08001967
1968 return debugctl;
1969}
1970
Avi Kivity6aa8b732006-12-10 02:21:36 -08001971/*
Miaohe Lin311497e2019-12-11 14:26:25 +08001972 * Writes msr value into the appropriate "register".
Avi Kivity6aa8b732006-12-10 02:21:36 -08001973 * Returns 0 on success, non-0 otherwise.
1974 * Assumes vcpu_load() was already called.
1975 */
Will Auld8fe8ab42012-11-29 12:42:12 -08001976static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001977{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001978 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001979 struct vmx_uret_msr *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03001980 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08001981 u32 msr_index = msr_info->index;
1982 u64 data = msr_info->data;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001983 u32 index;
Eddie Dong2cc51562007-05-21 07:28:09 +03001984
Avi Kivity6aa8b732006-12-10 02:21:36 -08001985 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001986 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08001987 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03001988 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001989#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001990 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001991 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001992 vmcs_writel(GUEST_FS_BASE, data);
1993 break;
1994 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001995 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001996 vmcs_writel(GUEST_GS_BASE, data);
1997 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001998 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001999 vmx_write_guest_kernel_gs_base(vmx, data);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002000 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002001#endif
2002 case MSR_IA32_SYSENTER_CS:
Sean Christophersonde70d272019-05-07 09:06:36 -07002003 if (is_guest_mode(vcpu))
2004 get_vmcs12(vcpu)->guest_sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002005 vmcs_write32(GUEST_SYSENTER_CS, data);
2006 break;
2007 case MSR_IA32_SYSENTER_EIP:
Sean Christopherson24085002020-04-28 16:10:24 -07002008 if (is_guest_mode(vcpu)) {
2009 data = nested_vmx_truncate_sysenter_addr(vcpu, data);
Sean Christophersonde70d272019-05-07 09:06:36 -07002010 get_vmcs12(vcpu)->guest_sysenter_eip = data;
Sean Christopherson24085002020-04-28 16:10:24 -07002011 }
Avi Kivityf5b42c32007-03-06 12:05:53 +02002012 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002013 break;
2014 case MSR_IA32_SYSENTER_ESP:
Sean Christopherson24085002020-04-28 16:10:24 -07002015 if (is_guest_mode(vcpu)) {
2016 data = nested_vmx_truncate_sysenter_addr(vcpu, data);
Sean Christophersonde70d272019-05-07 09:06:36 -07002017 get_vmcs12(vcpu)->guest_sysenter_esp = data;
Sean Christopherson24085002020-04-28 16:10:24 -07002018 }
Avi Kivityf5b42c32007-03-06 12:05:53 +02002019 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002020 break;
Like Xud8550662021-01-08 09:36:55 +08002021 case MSR_IA32_DEBUGCTLMSR: {
Like Xuc6462362021-02-01 13:10:31 +08002022 u64 invalid = data & ~vcpu_supported_debugctl(vcpu);
Like Xud8550662021-01-08 09:36:55 +08002023 if (invalid & (DEBUGCTLMSR_BTF|DEBUGCTLMSR_LBR)) {
2024 if (report_ignored_msrs)
2025 vcpu_unimpl(vcpu, "%s: BTF|LBR in IA32_DEBUGCTLMSR 0x%llx, nop\n",
2026 __func__, data);
2027 data &= ~(DEBUGCTLMSR_BTF|DEBUGCTLMSR_LBR);
2028 invalid &= ~(DEBUGCTLMSR_BTF|DEBUGCTLMSR_LBR);
2029 }
2030
2031 if (invalid)
2032 return 1;
2033
Sean Christopherson699a1ac2019-05-07 09:06:37 -07002034 if (is_guest_mode(vcpu) && get_vmcs12(vcpu)->vm_exit_controls &
2035 VM_EXIT_SAVE_DEBUG_CONTROLS)
2036 get_vmcs12(vcpu)->guest_ia32_debugctl = data;
2037
Like Xud8550662021-01-08 09:36:55 +08002038 vmcs_write64(GUEST_IA32_DEBUGCTL, data);
Like Xu8e129112021-02-01 13:10:33 +08002039 if (intel_pmu_lbr_is_enabled(vcpu) && !to_vmx(vcpu)->lbr_desc.event &&
2040 (data & DEBUGCTLMSR_LBR))
2041 intel_pmu_create_guest_lbr_event(vcpu);
Like Xud8550662021-01-08 09:36:55 +08002042 return 0;
2043 }
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002044 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08002045 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02002046 (!msr_info->host_initiated &&
2047 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002048 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08002049 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07002050 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002051 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08002052 vmcs_write64(GUEST_BNDCFGS, data);
2053 break;
Tao Xu6e3ba4a2019-07-16 14:55:50 +08002054 case MSR_IA32_UMWAIT_CONTROL:
2055 if (!msr_info->host_initiated && !vmx_has_waitpkg(vmx))
2056 return 1;
2057
2058 /* The reserved bit 1 and non-32 bit [63:32] should be zero */
2059 if (data & (BIT_ULL(1) | GENMASK_ULL(63, 32)))
2060 return 1;
2061
2062 vmx->msr_ia32_umwait_control = data;
2063 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002064 case MSR_IA32_SPEC_CTRL:
2065 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002066 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002067 return 1;
2068
Maxim Levitsky841c2be2020-07-08 14:57:31 +03002069 if (kvm_spec_ctrl_test_value(data))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002070 return 1;
2071
2072 vmx->spec_ctrl = data;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002073 if (!data)
2074 break;
2075
2076 /*
2077 * For non-nested:
2078 * When it's written (to non-zero) for the first time, pass
2079 * it through.
2080 *
2081 * For nested:
2082 * The handling of the MSR bitmap for L2 guests is done in
Miaohe Lin4d516fe2019-12-11 14:26:21 +08002083 * nested_vmx_prepare_msr_bitmap. We should not touch the
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002084 * vmcs02.msr_bitmap here since it gets completely overwritten
2085 * in the merging. We update the vmcs01 here for L1 as well
2086 * since it will end up touching the MSR anyway now.
2087 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002088 vmx_disable_intercept_for_msr(vcpu,
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002089 MSR_IA32_SPEC_CTRL,
2090 MSR_TYPE_RW);
2091 break;
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05002092 case MSR_IA32_TSX_CTRL:
2093 if (!msr_info->host_initiated &&
2094 !(vcpu->arch.arch_capabilities & ARCH_CAP_TSX_CTRL_MSR))
2095 return 1;
2096 if (data & ~(TSX_CTRL_RTM_DISABLE | TSX_CTRL_CPUID_CLEAR))
2097 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002098 goto find_uret_msr;
Ashok Raj15d45072018-02-01 22:59:43 +01002099 case MSR_IA32_PRED_CMD:
2100 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002101 !guest_has_pred_cmd_msr(vcpu))
Ashok Raj15d45072018-02-01 22:59:43 +01002102 return 1;
2103
2104 if (data & ~PRED_CMD_IBPB)
2105 return 1;
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002106 if (!boot_cpu_has(X86_FEATURE_IBPB))
Paolo Bonzini6441fa62020-01-20 16:33:06 +01002107 return 1;
Ashok Raj15d45072018-02-01 22:59:43 +01002108 if (!data)
2109 break;
2110
2111 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
2112
2113 /*
2114 * For non-nested:
2115 * When it's written (to non-zero) for the first time, pass
2116 * it through.
2117 *
2118 * For nested:
2119 * The handling of the MSR bitmap for L2 guests is done in
Miaohe Lin4d516fe2019-12-11 14:26:21 +08002120 * nested_vmx_prepare_msr_bitmap. We should not touch the
Ashok Raj15d45072018-02-01 22:59:43 +01002121 * vmcs02.msr_bitmap here since it gets completely overwritten
2122 * in the merging.
2123 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002124 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_PRED_CMD, MSR_TYPE_W);
Ashok Raj15d45072018-02-01 22:59:43 +01002125 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002126 case MSR_IA32_CR_PAT:
Sean Christophersond28f4292019-05-07 09:06:27 -07002127 if (!kvm_pat_valid(data))
2128 return 1;
2129
Sean Christopherson142e4be2019-05-07 09:06:35 -07002130 if (is_guest_mode(vcpu) &&
2131 get_vmcs12(vcpu)->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
2132 get_vmcs12(vcpu)->guest_ia32_pat = data;
2133
Sheng Yang468d4722008-10-09 16:01:55 +08002134 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2135 vmcs_write64(GUEST_IA32_PAT, data);
2136 vcpu->arch.pat = data;
2137 break;
2138 }
Will Auld8fe8ab42012-11-29 12:42:12 -08002139 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002140 break;
Will Auldba904632012-11-29 12:42:50 -08002141 case MSR_IA32_TSC_ADJUST:
2142 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002143 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002144 case MSR_IA32_MCG_EXT_CTL:
2145 if ((!msr_info->host_initiated &&
2146 !(to_vmx(vcpu)->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002147 FEAT_CTL_LMCE_ENABLED)) ||
Ashok Rajc45dcc72016-06-22 14:59:56 +08002148 (data & ~MCG_EXT_CTL_LMCE_EN))
2149 return 1;
2150 vcpu->arch.mcg_ext_ctl = data;
2151 break;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002152 case MSR_IA32_FEAT_CTL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08002153 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08002154 (to_vmx(vcpu)->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002155 FEAT_CTL_LOCKED && !msr_info->host_initiated))
Jan Kiszkacae50132014-01-04 18:47:22 +01002156 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08002157 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01002158 if (msr_info->host_initiated && data == 0)
2159 vmx_leave_nested(vcpu);
2160 break;
2161 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08002162 if (!msr_info->host_initiated)
2163 return 1; /* they are read-only */
2164 if (!nested_vmx_allowed(vcpu))
2165 return 1;
2166 return vmx_set_vmx_msr(vcpu, msr_index, data);
Chao Pengbf8c55d2018-10-24 16:05:14 +08002167 case MSR_IA32_RTIT_CTL:
Sean Christopherson2ef76192020-03-02 15:56:22 -08002168 if (!vmx_pt_mode_is_host_guest() ||
Luwei Kangee85dec2018-10-24 16:05:16 +08002169 vmx_rtit_ctl_check(vcpu, data) ||
2170 vmx->nested.vmxon)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002171 return 1;
2172 vmcs_write64(GUEST_IA32_RTIT_CTL, data);
2173 vmx->pt_desc.guest.ctl = data;
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002174 pt_update_intercept_for_msr(vcpu);
Chao Pengbf8c55d2018-10-24 16:05:14 +08002175 break;
2176 case MSR_IA32_RTIT_STATUS:
Sean Christophersone348ac72019-12-10 15:24:33 -08002177 if (!pt_can_write_msr(vmx))
2178 return 1;
2179 if (data & MSR_IA32_RTIT_STATUS_MASK)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002180 return 1;
2181 vmx->pt_desc.guest.status = data;
2182 break;
2183 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christophersone348ac72019-12-10 15:24:33 -08002184 if (!pt_can_write_msr(vmx))
2185 return 1;
2186 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2187 PT_CAP_cr3_filtering))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002188 return 1;
2189 vmx->pt_desc.guest.cr3_match = data;
2190 break;
2191 case MSR_IA32_RTIT_OUTPUT_BASE:
Sean Christophersone348ac72019-12-10 15:24:33 -08002192 if (!pt_can_write_msr(vmx))
2193 return 1;
2194 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2195 PT_CAP_topa_output) &&
2196 !intel_pt_validate_cap(vmx->pt_desc.caps,
2197 PT_CAP_single_range_output))
2198 return 1;
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07002199 if (!pt_output_base_valid(vcpu, data))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002200 return 1;
2201 vmx->pt_desc.guest.output_base = data;
2202 break;
2203 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christophersone348ac72019-12-10 15:24:33 -08002204 if (!pt_can_write_msr(vmx))
2205 return 1;
2206 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2207 PT_CAP_topa_output) &&
2208 !intel_pt_validate_cap(vmx->pt_desc.caps,
2209 PT_CAP_single_range_output))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002210 return 1;
2211 vmx->pt_desc.guest.output_mask = data;
2212 break;
2213 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christophersone348ac72019-12-10 15:24:33 -08002214 if (!pt_can_write_msr(vmx))
2215 return 1;
Chao Pengbf8c55d2018-10-24 16:05:14 +08002216 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
Sean Christophersone348ac72019-12-10 15:24:33 -08002217 if (index >= 2 * intel_pt_validate_cap(vmx->pt_desc.caps,
2218 PT_CAP_num_address_ranges))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002219 return 1;
Sean Christophersonfe6ed362019-12-10 15:24:32 -08002220 if (is_noncanonical_address(data, vcpu))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002221 return 1;
2222 if (index % 2)
2223 vmx->pt_desc.guest.addr_b[index / 2] = data;
2224 else
2225 vmx->pt_desc.guest.addr_a[index / 2] = data;
2226 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002227 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02002228 if (!msr_info->host_initiated &&
2229 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002230 return 1;
2231 /* Check reserved bit, higher 32 bits should be zero */
2232 if ((data >> 32) != 0)
2233 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002234 goto find_uret_msr;
Paolo Bonzini9c9520c2021-02-02 09:36:08 -05002235 case MSR_IA32_PERF_CAPABILITIES:
2236 if (data && !vcpu_to_pmu(vcpu)->version)
2237 return 1;
2238 if (data & PMU_CAP_LBR_FMT) {
2239 if ((data & PMU_CAP_LBR_FMT) !=
2240 (vmx_get_perf_capabilities() & PMU_CAP_LBR_FMT))
2241 return 1;
2242 if (!intel_pmu_lbr_is_compatible(vcpu))
2243 return 1;
2244 }
2245 ret = kvm_set_msr_common(vcpu, msr_info);
2246 break;
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05002247
Avi Kivity6aa8b732006-12-10 02:21:36 -08002248 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002249 find_uret_msr:
Sean Christophersond85a8032020-09-23 11:04:06 -07002250 msr = vmx_find_uret_msr(vmx, msr_index);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05002251 if (msr)
Sean Christopherson7bf662b2020-09-23 11:04:07 -07002252 ret = vmx_set_guest_uret_msr(vmx, msr, data);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05002253 else
2254 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002255 }
2256
Eddie Dong2cc51562007-05-21 07:28:09 +03002257 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002258}
2259
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002260static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002261{
Sean Christophersonf98c1e72020-05-01 21:32:30 -07002262 unsigned long guest_owned_bits;
2263
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002264 kvm_register_mark_available(vcpu, reg);
2265
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002266 switch (reg) {
2267 case VCPU_REGS_RSP:
2268 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
2269 break;
2270 case VCPU_REGS_RIP:
2271 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
2272 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002273 case VCPU_EXREG_PDPTR:
2274 if (enable_ept)
2275 ept_save_pdptrs(vcpu);
2276 break;
Sean Christophersonbd31fe42020-05-01 21:32:31 -07002277 case VCPU_EXREG_CR0:
2278 guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
2279
2280 vcpu->arch.cr0 &= ~guest_owned_bits;
2281 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & guest_owned_bits;
2282 break;
Sean Christopherson34059c22019-09-27 14:45:23 -07002283 case VCPU_EXREG_CR3:
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00002284 if (is_unrestricted_guest(vcpu) ||
2285 (enable_ept && is_paging(vcpu)))
Sean Christopherson34059c22019-09-27 14:45:23 -07002286 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2287 break;
Sean Christophersonf98c1e72020-05-01 21:32:30 -07002288 case VCPU_EXREG_CR4:
2289 guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
2290
2291 vcpu->arch.cr4 &= ~guest_owned_bits;
2292 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & guest_owned_bits;
2293 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002294 default:
Sean Christopherson34059c22019-09-27 14:45:23 -07002295 WARN_ON_ONCE(1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002296 break;
2297 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002298}
2299
Avi Kivity6aa8b732006-12-10 02:21:36 -08002300static __init int cpu_has_kvm_support(void)
2301{
Eduardo Habkost6210e372008-11-17 19:03:16 -02002302 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002303}
2304
2305static __init int vmx_disabled_by_bios(void)
2306{
Sean Christophersona4d0b2f2019-12-20 20:45:09 -08002307 return !boot_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
2308 !boot_cpu_has(X86_FEATURE_VMX);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002309}
2310
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002311static int kvm_cpu_vmxon(u64 vmxon_pointer)
Dongxiao Xu7725b892010-05-11 18:29:38 +08002312{
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002313 u64 msr;
2314
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002315 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03002316 intel_pt_handle_vmx(1);
2317
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002318 asm_volatile_goto("1: vmxon %[vmxon_pointer]\n\t"
2319 _ASM_EXTABLE(1b, %l[fault])
2320 : : [vmxon_pointer] "m"(vmxon_pointer)
2321 : : fault);
2322 return 0;
2323
2324fault:
2325 WARN_ONCE(1, "VMXON faulted, MSR_IA32_FEAT_CTL (0x3a) = 0x%llx\n",
2326 rdmsrl_safe(MSR_IA32_FEAT_CTL, &msr) ? 0xdeadbeef : msr);
2327 intel_pt_handle_vmx(0);
2328 cr4_clear_bits(X86_CR4_VMXE);
2329
2330 return -EFAULT;
Dongxiao Xu7725b892010-05-11 18:29:38 +08002331}
2332
Radim Krčmář13a34e02014-08-28 15:13:03 +02002333static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002334{
2335 int cpu = raw_smp_processor_id();
2336 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002337 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002338
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002339 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02002340 return -EBUSY;
2341
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002342 /*
2343 * This can happen if we hot-added a CPU but failed to allocate
2344 * VP assist page for it.
2345 */
2346 if (static_branch_unlikely(&enable_evmcs) &&
2347 !hv_get_vp_assist_page(cpu))
2348 return -EFAULT;
2349
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002350 r = kvm_cpu_vmxon(phys_addr);
2351 if (r)
2352 return r;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002353
David Hildenbrandfdf288b2017-08-24 20:51:29 +02002354 if (enable_ept)
2355 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02002356
2357 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002358}
2359
Nadav Har'Eld462b812011-05-24 15:26:10 +03002360static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03002361{
2362 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03002363 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03002364
Nadav Har'Eld462b812011-05-24 15:26:10 +03002365 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
2366 loaded_vmcss_on_cpu_link)
2367 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03002368}
2369
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002370
2371/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
2372 * tricks.
2373 */
2374static void kvm_cpu_vmxoff(void)
2375{
Uros Bizjak4b1e5472018-10-11 19:40:44 +02002376 asm volatile (__ex("vmxoff"));
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03002377
2378 intel_pt_handle_vmx(0);
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002379 cr4_clear_bits(X86_CR4_VMXE);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002380}
2381
Radim Krčmář13a34e02014-08-28 15:13:03 +02002382static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002383{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002384 vmclear_local_loaded_vmcss();
2385 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002386}
2387
Sean Christopherson7a57c092020-03-12 11:04:16 -07002388/*
2389 * There is no X86_FEATURE for SGX yet, but anyway we need to query CPUID
2390 * directly instead of going through cpu_has(), to ensure KVM is trapping
2391 * ENCLS whenever it's supported in hardware. It does not matter whether
2392 * the host OS supports or has enabled SGX.
2393 */
2394static bool cpu_has_sgx(void)
2395{
2396 return cpuid_eax(0) >= 0x12 && (cpuid_eax(0x12) & BIT(0));
2397}
2398
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002399static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04002400 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002401{
2402 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002403 u32 ctl = ctl_min | ctl_opt;
2404
2405 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2406
2407 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
2408 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
2409
2410 /* Ensure minimum (required) set of control bits are supported. */
2411 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002412 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002413
2414 *result = ctl;
2415 return 0;
2416}
2417
Sean Christopherson7caaa712018-12-03 13:53:01 -08002418static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf,
2419 struct vmx_capability *vmx_cap)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002420{
2421 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08002422 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002423 u32 _pin_based_exec_control = 0;
2424 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002425 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002426 u32 _vmexit_control = 0;
2427 u32 _vmentry_control = 0;
2428
Paolo Bonzini13893092018-02-26 13:40:09 +01002429 memset(vmcs_conf, 0, sizeof(*vmcs_conf));
Raghavendra K T10166742012-02-07 23:19:20 +05302430 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002431#ifdef CONFIG_X86_64
2432 CPU_BASED_CR8_LOAD_EXITING |
2433 CPU_BASED_CR8_STORE_EXITING |
2434#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002435 CPU_BASED_CR3_LOAD_EXITING |
2436 CPU_BASED_CR3_STORE_EXITING |
Quan Xu8eb73e2d2017-12-12 16:44:21 +08002437 CPU_BASED_UNCOND_IO_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002438 CPU_BASED_MOV_DR_EXITING |
Xiaoyao Li5e3d3942019-12-06 16:45:26 +08002439 CPU_BASED_USE_TSC_OFFSETTING |
Wanpeng Li4d5422c2018-03-12 04:53:02 -07002440 CPU_BASED_MWAIT_EXITING |
2441 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02002442 CPU_BASED_INVLPG_EXITING |
2443 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06002444
Sheng Yangf78e0e22007-10-29 09:40:42 +08002445 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08002446 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08002447 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002448 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
2449 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002450 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002451#ifdef CONFIG_X86_64
2452 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2453 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
2454 ~CPU_BASED_CR8_STORE_EXITING;
2455#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08002456 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002457 min2 = 0;
2458 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08002459 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08002460 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08002461 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002462 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002463 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002464 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Paolo Bonzini0367f202016-07-12 10:44:55 +02002465 SECONDARY_EXEC_DESC |
Sean Christopherson7f3603b2020-09-23 09:50:47 -07002466 SECONDARY_EXEC_ENABLE_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08002467 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002468 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03002469 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08002470 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08002471 SECONDARY_EXEC_XSAVES |
David Hildenbrand736fdf72017-08-24 20:51:37 +02002472 SECONDARY_EXEC_RDSEED_EXITING |
2473 SECONDARY_EXEC_RDRAND_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08002474 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04002475 SECONDARY_EXEC_TSC_SCALING |
Tao Xue69e72fa2019-07-16 14:55:49 +08002476 SECONDARY_EXEC_ENABLE_USR_WAIT_PAUSE |
Chao Pengf99e3da2018-10-24 16:05:10 +08002477 SECONDARY_EXEC_PT_USE_GPA |
2478 SECONDARY_EXEC_PT_CONCEAL_VMX |
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08002479 SECONDARY_EXEC_ENABLE_VMFUNC |
2480 SECONDARY_EXEC_BUS_LOCK_DETECTION;
Sean Christopherson7a57c092020-03-12 11:04:16 -07002481 if (cpu_has_sgx())
2482 opt2 |= SECONDARY_EXEC_ENCLS_EXITING;
Sheng Yangd56f5462008-04-25 10:13:16 +08002483 if (adjust_vmx_controls(min2, opt2,
2484 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002485 &_cpu_based_2nd_exec_control) < 0)
2486 return -EIO;
2487 }
2488#ifndef CONFIG_X86_64
2489 if (!(_cpu_based_2nd_exec_control &
2490 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
2491 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
2492#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08002493
2494 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2495 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08002496 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002497 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
2498 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08002499
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002500 rdmsr_safe(MSR_IA32_VMX_EPT_VPID_CAP,
Sean Christopherson7caaa712018-12-03 13:53:01 -08002501 &vmx_cap->ept, &vmx_cap->vpid);
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002502
Sheng Yangd56f5462008-04-25 10:13:16 +08002503 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03002504 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
2505 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03002506 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
2507 CPU_BASED_CR3_STORE_EXITING |
2508 CPU_BASED_INVLPG_EXITING);
Sean Christopherson7caaa712018-12-03 13:53:01 -08002509 } else if (vmx_cap->ept) {
2510 vmx_cap->ept = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002511 pr_warn_once("EPT CAP should not exist if not support "
2512 "1-setting enable EPT VM-execution control\n");
2513 }
2514 if (!(_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_VPID) &&
Sean Christopherson7caaa712018-12-03 13:53:01 -08002515 vmx_cap->vpid) {
2516 vmx_cap->vpid = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002517 pr_warn_once("VPID CAP should not exist if not support "
2518 "1-setting enable VPID VM-execution control\n");
Sheng Yangd56f5462008-04-25 10:13:16 +08002519 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002520
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002521 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002522#ifdef CONFIG_X86_64
2523 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
2524#endif
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002525 opt = VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL |
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002526 VM_EXIT_LOAD_IA32_PAT |
2527 VM_EXIT_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002528 VM_EXIT_CLEAR_BNDCFGS |
2529 VM_EXIT_PT_CONCEAL_PIP |
2530 VM_EXIT_CLEAR_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002531 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
2532 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002533 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002534
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01002535 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
2536 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
2537 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002538 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
2539 &_pin_based_exec_control) < 0)
2540 return -EIO;
2541
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02002542 if (cpu_has_broken_vmx_preemption_timer())
2543 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002544 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002545 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08002546 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
2547
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01002548 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002549 opt = VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL |
2550 VM_ENTRY_LOAD_IA32_PAT |
2551 VM_ENTRY_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002552 VM_ENTRY_LOAD_BNDCFGS |
2553 VM_ENTRY_PT_CONCEAL_PIP |
2554 VM_ENTRY_LOAD_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002555 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
2556 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002557 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002558
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002559 /*
2560 * Some cpus support VM_{ENTRY,EXIT}_IA32_PERF_GLOBAL_CTRL but they
2561 * can't be used due to an errata where VM Exit may incorrectly clear
2562 * IA32_PERF_GLOBAL_CTRL[34:32]. Workaround the errata by using the
2563 * MSR load mechanism to switch IA32_PERF_GLOBAL_CTRL.
2564 */
2565 if (boot_cpu_data.x86 == 0x6) {
2566 switch (boot_cpu_data.x86_model) {
2567 case 26: /* AAK155 */
2568 case 30: /* AAP115 */
2569 case 37: /* AAT100 */
2570 case 44: /* BC86,AAY89,BD102 */
2571 case 46: /* BA97 */
Sean Christopherson85ba2b12019-01-14 12:12:02 -08002572 _vmentry_control &= ~VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002573 _vmexit_control &= ~VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL;
2574 pr_warn_once("kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
2575 "does not work properly. Using workaround\n");
2576 break;
2577 default:
2578 break;
2579 }
2580 }
2581
2582
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002583 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002584
2585 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
2586 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002587 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002588
2589#ifdef CONFIG_X86_64
2590 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
2591 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03002592 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002593#endif
2594
2595 /* Require Write-Back (WB) memory type for VMCS accesses. */
2596 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002597 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002598
Yang, Sheng002c7f72007-07-31 14:23:01 +03002599 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02002600 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03002601 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002602
Liran Alon2307af12018-06-29 22:59:04 +03002603 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002604
Yang, Sheng002c7f72007-07-31 14:23:01 +03002605 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
2606 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002607 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002608 vmcs_conf->vmexit_ctrl = _vmexit_control;
2609 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002610
Vitaly Kuznetsov064eedf2020-10-14 16:33:46 +02002611#if IS_ENABLED(CONFIG_HYPERV)
2612 if (enlightened_vmcs)
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002613 evmcs_sanitize_exec_ctrls(vmcs_conf);
Vitaly Kuznetsov064eedf2020-10-14 16:33:46 +02002614#endif
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002615
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002616 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002617}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002618
Ben Gardon41836832019-02-11 11:02:52 -08002619struct vmcs *alloc_vmcs_cpu(bool shadow, int cpu, gfp_t flags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002620{
2621 int node = cpu_to_node(cpu);
2622 struct page *pages;
2623 struct vmcs *vmcs;
2624
Ben Gardon41836832019-02-11 11:02:52 -08002625 pages = __alloc_pages_node(node, flags, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002626 if (!pages)
2627 return NULL;
2628 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002629 memset(vmcs, 0, vmcs_config.size);
Liran Alon2307af12018-06-29 22:59:04 +03002630
2631 /* KVM supports Enlightened VMCS v1 only */
2632 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002633 vmcs->hdr.revision_id = KVM_EVMCS_VERSION;
Liran Alon2307af12018-06-29 22:59:04 +03002634 else
Liran Alon392b2f22018-06-23 02:35:01 +03002635 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002636
Liran Alon491a6032018-06-23 02:35:12 +03002637 if (shadow)
2638 vmcs->hdr.shadow_vmcs = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002639 return vmcs;
2640}
2641
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002642void free_vmcs(struct vmcs *vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002643{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002644 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002645}
2646
Nadav Har'Eld462b812011-05-24 15:26:10 +03002647/*
2648 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
2649 */
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002650void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Nadav Har'Eld462b812011-05-24 15:26:10 +03002651{
2652 if (!loaded_vmcs->vmcs)
2653 return;
2654 loaded_vmcs_clear(loaded_vmcs);
2655 free_vmcs(loaded_vmcs->vmcs);
2656 loaded_vmcs->vmcs = NULL;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002657 if (loaded_vmcs->msr_bitmap)
2658 free_page((unsigned long)loaded_vmcs->msr_bitmap);
Jim Mattson355f4fb2016-10-28 08:29:39 -07002659 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002660}
2661
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002662int alloc_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002663{
Liran Alon491a6032018-06-23 02:35:12 +03002664 loaded_vmcs->vmcs = alloc_vmcs(false);
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002665 if (!loaded_vmcs->vmcs)
2666 return -ENOMEM;
2667
Sean Christophersond260f9e2020-03-21 12:37:50 -07002668 vmcs_clear(loaded_vmcs->vmcs);
2669
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002670 loaded_vmcs->shadow_vmcs = NULL;
Sean Christopherson804939e2019-05-07 12:18:05 -07002671 loaded_vmcs->hv_timer_soft_disabled = false;
Sean Christophersond260f9e2020-03-21 12:37:50 -07002672 loaded_vmcs->cpu = -1;
2673 loaded_vmcs->launched = 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002674
2675 if (cpu_has_vmx_msr_bitmap()) {
Ben Gardon41836832019-02-11 11:02:52 -08002676 loaded_vmcs->msr_bitmap = (unsigned long *)
2677 __get_free_page(GFP_KERNEL_ACCOUNT);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002678 if (!loaded_vmcs->msr_bitmap)
2679 goto out_vmcs;
2680 memset(loaded_vmcs->msr_bitmap, 0xff, PAGE_SIZE);
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02002681
Arnd Bergmann1f008e12018-05-25 17:36:17 +02002682 if (IS_ENABLED(CONFIG_HYPERV) &&
2683 static_branch_unlikely(&enable_evmcs) &&
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02002684 (ms_hyperv.nested_features & HV_X64_NESTED_MSR_BITMAP)) {
2685 struct hv_enlightened_vmcs *evmcs =
2686 (struct hv_enlightened_vmcs *)loaded_vmcs->vmcs;
2687
2688 evmcs->hv_enlightenments_control.msr_bitmap = 1;
2689 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002690 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07002691
2692 memset(&loaded_vmcs->host_state, 0, sizeof(struct vmcs_host_state));
Sean Christopherson3af80fe2019-05-07 12:18:00 -07002693 memset(&loaded_vmcs->controls_shadow, 0,
2694 sizeof(struct vmcs_controls_shadow));
Sean Christophersond7ee0392018-07-23 12:32:47 -07002695
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002696 return 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002697
2698out_vmcs:
2699 free_loaded_vmcs(loaded_vmcs);
2700 return -ENOMEM;
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002701}
2702
Sam Ravnborg39959582007-06-01 00:47:13 -07002703static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002704{
2705 int cpu;
2706
Zachary Amsden3230bb42009-09-29 11:38:37 -10002707 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002708 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10002709 per_cpu(vmxarea, cpu) = NULL;
2710 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002711}
2712
Avi Kivity6aa8b732006-12-10 02:21:36 -08002713static __init int alloc_kvm_area(void)
2714{
2715 int cpu;
2716
Zachary Amsden3230bb42009-09-29 11:38:37 -10002717 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002718 struct vmcs *vmcs;
2719
Ben Gardon41836832019-02-11 11:02:52 -08002720 vmcs = alloc_vmcs_cpu(false, cpu, GFP_KERNEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002721 if (!vmcs) {
2722 free_kvm_area();
2723 return -ENOMEM;
2724 }
2725
Liran Alon2307af12018-06-29 22:59:04 +03002726 /*
2727 * When eVMCS is enabled, alloc_vmcs_cpu() sets
2728 * vmcs->revision_id to KVM_EVMCS_VERSION instead of
2729 * revision_id reported by MSR_IA32_VMX_BASIC.
2730 *
Linus Torvalds312a4662018-12-26 17:03:51 -08002731 * However, even though not explicitly documented by
Liran Alon2307af12018-06-29 22:59:04 +03002732 * TLFS, VMXArea passed as VMXON argument should
2733 * still be marked with revision_id reported by
2734 * physical CPU.
2735 */
2736 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002737 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002738
Avi Kivity6aa8b732006-12-10 02:21:36 -08002739 per_cpu(vmxarea, cpu) = vmcs;
2740 }
2741 return 0;
2742}
2743
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002744static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02002745 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002746{
Gleb Natapovd99e4152012-12-20 16:57:45 +02002747 if (!emulate_invalid_guest_state) {
2748 /*
2749 * CS and SS RPL should be equal during guest entry according
2750 * to VMX spec, but in reality it is not always so. Since vcpu
2751 * is in the middle of the transition from real mode to
2752 * protected mode it is safe to assume that RPL 0 is a good
2753 * default value.
2754 */
2755 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03002756 save->selector &= ~SEGMENT_RPL_MASK;
2757 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02002758 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002759 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02002760 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002761}
2762
2763static void enter_pmode(struct kvm_vcpu *vcpu)
2764{
2765 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002766 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002767
Gleb Natapovd99e4152012-12-20 16:57:45 +02002768 /*
2769 * Update real mode segment cache. It may be not up-to-date if sement
2770 * register was written while vcpu was in a guest mode.
2771 */
2772 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2773 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2774 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2775 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
2776 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2777 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
2778
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002779 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002780
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002781 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002782
2783 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002784 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2785 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002786 vmcs_writel(GUEST_RFLAGS, flags);
2787
Rusty Russell66aee912007-07-17 23:34:16 +10002788 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
2789 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002790
Jason Baronb6a7cc32021-01-14 22:27:54 -05002791 vmx_update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002792
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002793 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2794 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2795 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2796 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2797 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
2798 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002799}
2800
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002801static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002802{
Mathias Krause772e0312012-08-30 01:30:19 +02002803 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02002804 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002805
Gleb Natapovd99e4152012-12-20 16:57:45 +02002806 var.dpl = 0x3;
2807 if (seg == VCPU_SREG_CS)
2808 var.type = 0x3;
2809
2810 if (!emulate_invalid_guest_state) {
2811 var.selector = var.base >> 4;
2812 var.base = var.base & 0xffff0;
2813 var.limit = 0xffff;
2814 var.g = 0;
2815 var.db = 0;
2816 var.present = 1;
2817 var.s = 1;
2818 var.l = 0;
2819 var.unusable = 0;
2820 var.type = 0x3;
2821 var.avl = 0;
2822 if (save->base & 0xf)
2823 printk_once(KERN_WARNING "kvm: segment base is not "
2824 "paragraph aligned when entering "
2825 "protected mode (seg=%d)", seg);
2826 }
2827
2828 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05002829 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02002830 vmcs_write32(sf->limit, var.limit);
2831 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002832}
2833
2834static void enter_rmode(struct kvm_vcpu *vcpu)
2835{
2836 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002837 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002838 struct kvm_vmx *kvm_vmx = to_kvm_vmx(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002839
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002840 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
2841 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2842 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2843 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2844 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02002845 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2846 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002847
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002848 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002849
Gleb Natapov776e58e2011-03-13 12:34:27 +02002850 /*
2851 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01002852 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02002853 */
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002854 if (!kvm_vmx->tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02002855 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
2856 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02002857
Avi Kivity2fb92db2011-04-27 19:42:18 +03002858 vmx_segment_cache_clear(vmx);
2859
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002860 vmcs_writel(GUEST_TR_BASE, kvm_vmx->tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002861 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002862 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2863
2864 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002865 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002866
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002867 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002868
2869 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10002870 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Jason Baronb6a7cc32021-01-14 22:27:54 -05002871 vmx_update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002872
Gleb Natapovd99e4152012-12-20 16:57:45 +02002873 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2874 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2875 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2876 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2877 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
2878 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002879
Eddie Dong8668a3c2007-10-10 14:26:45 +08002880 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002881}
2882
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002883int vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
Amit Shah401d10d2009-02-20 22:53:37 +05302884{
2885 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond85a8032020-09-23 11:04:06 -07002886 struct vmx_uret_msr *msr = vmx_find_uret_msr(vmx, MSR_EFER);
Avi Kivity26bb0982009-09-07 11:14:12 +03002887
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002888 /* Nothing to do if hardware doesn't support EFER. */
Avi Kivity26bb0982009-09-07 11:14:12 +03002889 if (!msr)
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002890 return 0;
Amit Shah401d10d2009-02-20 22:53:37 +05302891
Avi Kivityf6801df2010-01-21 15:31:50 +02002892 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05302893 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002894 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302895 msr->data = efer;
2896 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002897 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302898
2899 msr->data = efer & ~EFER_LME;
2900 }
2901 setup_msrs(vmx);
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002902 return 0;
Amit Shah401d10d2009-02-20 22:53:37 +05302903}
2904
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002905#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002906
2907static void enter_lmode(struct kvm_vcpu *vcpu)
2908{
2909 u32 guest_tr_ar;
2910
Avi Kivity2fb92db2011-04-27 19:42:18 +03002911 vmx_segment_cache_clear(to_vmx(vcpu));
2912
Avi Kivity6aa8b732006-12-10 02:21:36 -08002913 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002914 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02002915 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
2916 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002917 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002918 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
2919 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002920 }
Avi Kivityda38f432010-07-06 11:30:49 +03002921 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002922}
2923
2924static void exit_lmode(struct kvm_vcpu *vcpu)
2925{
Gleb Natapov2961e8762013-11-25 15:37:13 +02002926 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03002927 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002928}
2929
2930#endif
2931
Sean Christopherson77809382020-03-20 14:28:18 -07002932static void vmx_flush_tlb_all(struct kvm_vcpu *vcpu)
Sean Christopherson5058b692020-03-20 14:28:14 -07002933{
2934 struct vcpu_vmx *vmx = to_vmx(vcpu);
2935
2936 /*
Sean Christopherson77809382020-03-20 14:28:18 -07002937 * INVEPT must be issued when EPT is enabled, irrespective of VPID, as
2938 * the CPU is not required to invalidate guest-physical mappings on
2939 * VM-Entry, even if VPID is disabled. Guest-physical mappings are
2940 * associated with the root EPT structure and not any particular VPID
2941 * (INVVPID also isn't required to invalidate guest-physical mappings).
Sean Christopherson5058b692020-03-20 14:28:14 -07002942 */
2943 if (enable_ept) {
2944 ept_sync_global();
2945 } else if (enable_vpid) {
2946 if (cpu_has_vmx_invvpid_global()) {
2947 vpid_sync_vcpu_global();
2948 } else {
2949 vpid_sync_vcpu_single(vmx->vpid);
2950 vpid_sync_vcpu_single(vmx->nested.vpid02);
2951 }
2952 }
2953}
2954
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002955static void vmx_flush_tlb_current(struct kvm_vcpu *vcpu)
2956{
Sean Christopherson2a40b902020-07-15 20:41:18 -07002957 struct kvm_mmu *mmu = vcpu->arch.mmu;
2958 u64 root_hpa = mmu->root_hpa;
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002959
2960 /* No flush required if the current context is invalid. */
2961 if (!VALID_PAGE(root_hpa))
2962 return;
2963
2964 if (enable_ept)
Sean Christopherson2a40b902020-07-15 20:41:18 -07002965 ept_sync_context(construct_eptp(vcpu, root_hpa,
2966 mmu->shadow_root_level));
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002967 else if (!is_guest_mode(vcpu))
2968 vpid_sync_context(to_vmx(vcpu)->vpid);
2969 else
2970 vpid_sync_context(nested_get_vpid02(vcpu));
2971}
2972
Junaid Shahidfaff8752018-06-29 13:10:05 -07002973static void vmx_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t addr)
2974{
Junaid Shahidfaff8752018-06-29 13:10:05 -07002975 /*
Sean Christophersonad104b52020-03-20 14:28:11 -07002976 * vpid_sync_vcpu_addr() is a nop if vmx->vpid==0, see the comment in
2977 * vmx_flush_tlb_guest() for an explanation of why this is ok.
Junaid Shahidfaff8752018-06-29 13:10:05 -07002978 */
Sean Christophersonad104b52020-03-20 14:28:11 -07002979 vpid_sync_vcpu_addr(to_vmx(vcpu)->vpid, addr);
Junaid Shahidfaff8752018-06-29 13:10:05 -07002980}
2981
Sean Christophersone64419d2020-03-20 14:28:10 -07002982static void vmx_flush_tlb_guest(struct kvm_vcpu *vcpu)
2983{
2984 /*
2985 * vpid_sync_context() is a nop if vmx->vpid==0, e.g. if enable_vpid==0
2986 * or a vpid couldn't be allocated for this vCPU. VM-Enter and VM-Exit
2987 * are required to flush GVA->{G,H}PA mappings from the TLB if vpid is
2988 * disabled (VM-Enter with vpid enabled and vpid==0 is disallowed),
2989 * i.e. no explicit INVVPID is necessary.
2990 */
2991 vpid_sync_context(to_vmx(vcpu)->vpid);
2992}
2993
Peter Shier43fea4e2020-08-20 16:05:45 -07002994void vmx_ept_load_pdptrs(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08002995{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002996 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
2997
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002998 if (!kvm_register_is_dirty(vcpu, VCPU_EXREG_PDPTR))
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002999 return;
3000
Paolo Bonzinibf03d4f2019-06-06 18:52:44 +02003001 if (is_pae_paging(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003002 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
3003 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
3004 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
3005 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08003006 }
3007}
3008
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003009void ept_save_pdptrs(struct kvm_vcpu *vcpu)
Avi Kivity8f5d5492009-05-31 18:41:29 +03003010{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003011 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3012
Sean Christopherson9932b492020-04-15 13:34:50 -07003013 if (WARN_ON_ONCE(!is_pae_paging(vcpu)))
3014 return;
3015
3016 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
3017 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
3018 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
3019 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003020
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07003021 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
Avi Kivity8f5d5492009-05-31 18:41:29 +03003022}
3023
Sheng Yang14394422008-04-28 12:24:45 +08003024static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
3025 unsigned long cr0,
3026 struct kvm_vcpu *vcpu)
3027{
Sean Christopherson2183f562019-05-07 12:17:56 -07003028 struct vcpu_vmx *vmx = to_vmx(vcpu);
3029
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07003030 if (!kvm_register_is_available(vcpu, VCPU_EXREG_CR3))
Sean Christopherson34059c22019-09-27 14:45:23 -07003031 vmx_cache_reg(vcpu, VCPU_EXREG_CR3);
Sheng Yang14394422008-04-28 12:24:45 +08003032 if (!(cr0 & X86_CR0_PG)) {
3033 /* From paging/starting to nonpaging */
Sean Christopherson2183f562019-05-07 12:17:56 -07003034 exec_controls_setbit(vmx, CPU_BASED_CR3_LOAD_EXITING |
3035 CPU_BASED_CR3_STORE_EXITING);
Sheng Yang14394422008-04-28 12:24:45 +08003036 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02003037 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08003038 } else if (!is_paging(vcpu)) {
3039 /* From nonpaging to paging */
Sean Christopherson2183f562019-05-07 12:17:56 -07003040 exec_controls_clearbit(vmx, CPU_BASED_CR3_LOAD_EXITING |
3041 CPU_BASED_CR3_STORE_EXITING);
Sheng Yang14394422008-04-28 12:24:45 +08003042 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02003043 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08003044 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08003045
3046 if (!(cr0 & X86_CR0_WP))
3047 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08003048}
3049
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003050void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003051{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003052 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003053 unsigned long hw_cr0;
3054
Sean Christopherson3de63472018-07-13 08:42:30 -07003055 hw_cr0 = (cr0 & ~KVM_VM_CR0_ALWAYS_OFF);
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003056 if (is_unrestricted_guest(vcpu))
Gleb Natapov50378782013-02-04 16:00:28 +02003057 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02003058 else {
Gleb Natapov50378782013-02-04 16:00:28 +02003059 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003060
Gleb Natapov218e7632013-01-21 15:36:45 +02003061 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
3062 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003063
Gleb Natapov218e7632013-01-21 15:36:45 +02003064 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
3065 enter_rmode(vcpu);
3066 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003067
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003068#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02003069 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10003070 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003071 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10003072 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003073 exit_lmode(vcpu);
3074 }
3075#endif
3076
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003077 if (enable_ept && !is_unrestricted_guest(vcpu))
Sheng Yang14394422008-04-28 12:24:45 +08003078 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
3079
Avi Kivity6aa8b732006-12-10 02:21:36 -08003080 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08003081 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003082 vcpu->arch.cr0 = cr0;
Sean Christophersonbd31fe42020-05-01 21:32:31 -07003083 kvm_register_mark_available(vcpu, VCPU_EXREG_CR0);
Gleb Natapov14168782013-01-21 15:36:49 +02003084
3085 /* depends on vcpu->arch.cr0 to be set to a new value */
3086 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003087}
3088
Sean Christophersond468d942020-07-15 20:41:20 -07003089static int vmx_get_max_tdp_level(void)
Sean Christopherson0047fca2020-05-01 21:32:33 -07003090{
Sean Christophersond468d942020-07-15 20:41:20 -07003091 if (cpu_has_vmx_ept_5levels())
Sean Christopherson0047fca2020-05-01 21:32:33 -07003092 return 5;
3093 return 4;
3094}
3095
Sean Christopherson2a40b902020-07-15 20:41:18 -07003096u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa,
3097 int root_level)
Sheng Yang14394422008-04-28 12:24:45 +08003098{
Yu Zhang855feb62017-08-24 20:27:55 +08003099 u64 eptp = VMX_EPTP_MT_WB;
Sheng Yang14394422008-04-28 12:24:45 +08003100
Sean Christopherson2a40b902020-07-15 20:41:18 -07003101 eptp |= (root_level == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08003102
Peter Feiner995f00a2017-06-30 17:26:32 -07003103 if (enable_ept_ad_bits &&
3104 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02003105 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08003106 eptp |= (root_hpa & PAGE_MASK);
3107
3108 return eptp;
3109}
3110
Sean Christopherson2a40b902020-07-15 20:41:18 -07003111static void vmx_load_mmu_pgd(struct kvm_vcpu *vcpu, unsigned long pgd,
3112 int pgd_level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003113{
Tianyu Lan877ad952018-07-19 08:40:23 +00003114 struct kvm *kvm = vcpu->kvm;
Sean Christopherson04f11ef2019-09-27 14:45:16 -07003115 bool update_guest_cr3 = true;
Sheng Yang14394422008-04-28 12:24:45 +08003116 unsigned long guest_cr3;
3117 u64 eptp;
3118
Avi Kivity089d0342009-03-23 18:26:32 +02003119 if (enable_ept) {
Sean Christopherson2a40b902020-07-15 20:41:18 -07003120 eptp = construct_eptp(vcpu, pgd, pgd_level);
Sheng Yang14394422008-04-28 12:24:45 +08003121 vmcs_write64(EPT_POINTER, eptp);
Tianyu Lan877ad952018-07-19 08:40:23 +00003122
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003123 if (kvm_x86_ops.tlb_remote_flush) {
Tianyu Lan877ad952018-07-19 08:40:23 +00003124 spin_lock(&to_kvm_vmx(kvm)->ept_pointer_lock);
3125 to_vmx(vcpu)->ept_pointer = eptp;
3126 to_kvm_vmx(kvm)->ept_pointers_match
3127 = EPT_POINTERS_CHECK;
3128 spin_unlock(&to_kvm_vmx(kvm)->ept_pointer_lock);
3129 }
3130
Paolo Bonzinidf7e0682020-05-20 08:37:37 -04003131 if (!enable_unrestricted_guest && !is_paging(vcpu))
Tianyu Lan877ad952018-07-19 08:40:23 +00003132 guest_cr3 = to_kvm_vmx(kvm)->ept_identity_map_addr;
Sean Christophersonb17b7432019-09-27 14:45:17 -07003133 else if (test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3134 guest_cr3 = vcpu->arch.cr3;
3135 else /* vmcs01.GUEST_CR3 is already up-to-date. */
3136 update_guest_cr3 = false;
Peter Shier43fea4e2020-08-20 16:05:45 -07003137 vmx_ept_load_pdptrs(vcpu);
Sean Christophersonbe100ef2020-03-20 14:28:33 -07003138 } else {
3139 guest_cr3 = pgd;
Sheng Yang14394422008-04-28 12:24:45 +08003140 }
3141
Sean Christopherson04f11ef2019-09-27 14:45:16 -07003142 if (update_guest_cr3)
3143 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003144}
3145
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07003146static bool vmx_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
3147{
3148 /*
3149 * We operate under the default treatment of SMM, so VMX cannot be
3150 * enabled under SMM. Note, whether or not VMXE is allowed at all is
Sean Christophersonee69c922020-10-06 18:44:16 -07003151 * handled by kvm_is_valid_cr4().
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07003152 */
3153 if ((cr4 & X86_CR4_VMXE) && is_smm(vcpu))
3154 return false;
3155
3156 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
3157 return false;
3158
3159 return true;
3160}
3161
3162void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003163{
Jim Mattson2259c172020-10-29 10:06:48 -07003164 unsigned long old_cr4 = vcpu->arch.cr4;
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003165 struct vcpu_vmx *vmx = to_vmx(vcpu);
Ben Serebrin085e68e2015-04-16 11:58:05 -07003166 /*
3167 * Pass through host's Machine Check Enable value to hw_cr4, which
3168 * is in force while we are in guest mode. Do not let guests control
3169 * this bit, even if host CR4.MCE == 0.
3170 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003171 unsigned long hw_cr4;
3172
3173 hw_cr4 = (cr4_read_shadow() & X86_CR4_MCE) | (cr4 & ~X86_CR4_MCE);
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003174 if (is_unrestricted_guest(vcpu))
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003175 hw_cr4 |= KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST;
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003176 else if (vmx->rmode.vm86_active)
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003177 hw_cr4 |= KVM_RMODE_VM_CR4_ALWAYS_ON;
3178 else
3179 hw_cr4 |= KVM_PMODE_VM_CR4_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003180
Sean Christopherson64f7a112018-04-30 10:01:06 -07003181 if (!boot_cpu_has(X86_FEATURE_UMIP) && vmx_umip_emulated()) {
3182 if (cr4 & X86_CR4_UMIP) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003183 secondary_exec_controls_setbit(vmx, SECONDARY_EXEC_DESC);
Sean Christopherson64f7a112018-04-30 10:01:06 -07003184 hw_cr4 &= ~X86_CR4_UMIP;
3185 } else if (!is_guest_mode(vcpu) ||
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003186 !nested_cpu_has2(get_vmcs12(vcpu), SECONDARY_EXEC_DESC)) {
3187 secondary_exec_controls_clearbit(vmx, SECONDARY_EXEC_DESC);
3188 }
Sean Christopherson64f7a112018-04-30 10:01:06 -07003189 }
Paolo Bonzini0367f202016-07-12 10:44:55 +02003190
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003191 vcpu->arch.cr4 = cr4;
Sean Christophersonf98c1e72020-05-01 21:32:30 -07003192 kvm_register_mark_available(vcpu, VCPU_EXREG_CR4);
Sheng Yang14394422008-04-28 12:24:45 +08003193
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003194 if (!is_unrestricted_guest(vcpu)) {
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003195 if (enable_ept) {
3196 if (!is_paging(vcpu)) {
3197 hw_cr4 &= ~X86_CR4_PAE;
3198 hw_cr4 |= X86_CR4_PSE;
3199 } else if (!(cr4 & X86_CR4_PAE)) {
3200 hw_cr4 &= ~X86_CR4_PAE;
3201 }
3202 }
3203
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003204 /*
Huaitong Handdba2622016-03-22 16:51:15 +08003205 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
3206 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
3207 * to be manually disabled when guest switches to non-paging
3208 * mode.
3209 *
3210 * If !enable_unrestricted_guest, the CPU is always running
3211 * with CR0.PG=1 and CR4 needs to be modified.
3212 * If enable_unrestricted_guest, the CPU automatically
3213 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003214 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003215 if (!is_paging(vcpu))
3216 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
3217 }
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003218
Sheng Yang14394422008-04-28 12:24:45 +08003219 vmcs_writel(CR4_READ_SHADOW, cr4);
3220 vmcs_writel(GUEST_CR4, hw_cr4);
Jim Mattson2259c172020-10-29 10:06:48 -07003221
3222 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
3223 kvm_update_cpuid_runtime(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003224}
3225
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003226void vmx_get_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003227{
Avi Kivitya9179492011-01-03 14:28:52 +02003228 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003229 u32 ar;
3230
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003231 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003232 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02003233 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03003234 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003235 return;
Avi Kivity1390a282012-08-21 17:07:08 +03003236 var->base = vmx_read_guest_seg_base(vmx, seg);
3237 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3238 return;
Avi Kivitya9179492011-01-03 14:28:52 +02003239 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003240 var->base = vmx_read_guest_seg_base(vmx, seg);
3241 var->limit = vmx_read_guest_seg_limit(vmx, seg);
3242 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3243 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03003244 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003245 var->type = ar & 15;
3246 var->s = (ar >> 4) & 1;
3247 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03003248 /*
3249 * Some userspaces do not preserve unusable property. Since usable
3250 * segment has to be present according to VMX spec we can use present
3251 * property to amend userspace bug by making unusable segment always
3252 * nonpresent. vmx_segment_access_rights() already marks nonpresent
3253 * segment as unusable.
3254 */
3255 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003256 var->avl = (ar >> 12) & 1;
3257 var->l = (ar >> 13) & 1;
3258 var->db = (ar >> 14) & 1;
3259 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003260}
3261
Avi Kivitya9179492011-01-03 14:28:52 +02003262static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
3263{
Avi Kivitya9179492011-01-03 14:28:52 +02003264 struct kvm_segment s;
3265
3266 if (to_vmx(vcpu)->rmode.vm86_active) {
3267 vmx_get_segment(vcpu, &s, seg);
3268 return s.base;
3269 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003270 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003271}
3272
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003273int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02003274{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003275 struct vcpu_vmx *vmx = to_vmx(vcpu);
3276
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003277 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02003278 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003279 else {
3280 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003281 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003282 }
Avi Kivity69c73022011-03-07 15:26:44 +02003283}
3284
Avi Kivity653e3102007-05-07 10:55:37 +03003285static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003286{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003287 u32 ar;
3288
Avi Kivityf0495f92012-06-07 17:06:10 +03003289 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003290 ar = 1 << 16;
3291 else {
3292 ar = var->type & 15;
3293 ar |= (var->s & 1) << 4;
3294 ar |= (var->dpl & 3) << 5;
3295 ar |= (var->present & 1) << 7;
3296 ar |= (var->avl & 1) << 12;
3297 ar |= (var->l & 1) << 13;
3298 ar |= (var->db & 1) << 14;
3299 ar |= (var->g & 1) << 15;
3300 }
Avi Kivity653e3102007-05-07 10:55:37 +03003301
3302 return ar;
3303}
3304
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003305void vmx_set_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity653e3102007-05-07 10:55:37 +03003306{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003307 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02003308 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03003309
Avi Kivity2fb92db2011-04-27 19:42:18 +03003310 vmx_segment_cache_clear(vmx);
3311
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003312 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
3313 vmx->rmode.segs[seg] = *var;
3314 if (seg == VCPU_SREG_TR)
3315 vmcs_write16(sf->selector, var->selector);
3316 else if (var->s)
3317 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02003318 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03003319 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003320
Avi Kivity653e3102007-05-07 10:55:37 +03003321 vmcs_writel(sf->base, var->base);
3322 vmcs_write32(sf->limit, var->limit);
3323 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003324
3325 /*
3326 * Fix the "Accessed" bit in AR field of segment registers for older
3327 * qemu binaries.
3328 * IA32 arch specifies that at the time of processor reset the
3329 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08003330 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003331 * state vmexit when "unrestricted guest" mode is turned on.
3332 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3333 * tree. Newer qemu binaries with that qemu fix would not need this
3334 * kvm hack.
3335 */
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003336 if (is_unrestricted_guest(vcpu) && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02003337 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003338
Gleb Natapovf924d662012-12-12 19:10:55 +02003339 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02003340
3341out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01003342 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003343}
3344
Avi Kivity6aa8b732006-12-10 02:21:36 -08003345static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
3346{
Avi Kivity2fb92db2011-04-27 19:42:18 +03003347 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003348
3349 *db = (ar >> 14) & 1;
3350 *l = (ar >> 13) & 1;
3351}
3352
Gleb Natapov89a27f42010-02-16 10:51:48 +02003353static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003354{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003355 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
3356 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003357}
3358
Gleb Natapov89a27f42010-02-16 10:51:48 +02003359static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003360{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003361 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
3362 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003363}
3364
Gleb Natapov89a27f42010-02-16 10:51:48 +02003365static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003366{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003367 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
3368 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003369}
3370
Gleb Natapov89a27f42010-02-16 10:51:48 +02003371static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003372{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003373 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
3374 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003375}
3376
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003377static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
3378{
3379 struct kvm_segment var;
3380 u32 ar;
3381
3382 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02003383 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02003384 if (seg == VCPU_SREG_CS)
3385 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003386 ar = vmx_segment_access_rights(&var);
3387
3388 if (var.base != (var.selector << 4))
3389 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02003390 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003391 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02003392 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003393 return false;
3394
3395 return true;
3396}
3397
3398static bool code_segment_valid(struct kvm_vcpu *vcpu)
3399{
3400 struct kvm_segment cs;
3401 unsigned int cs_rpl;
3402
3403 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003404 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003405
Avi Kivity1872a3f2009-01-04 23:26:52 +02003406 if (cs.unusable)
3407 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003408 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003409 return false;
3410 if (!cs.s)
3411 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003412 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003413 if (cs.dpl > cs_rpl)
3414 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003415 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003416 if (cs.dpl != cs_rpl)
3417 return false;
3418 }
3419 if (!cs.present)
3420 return false;
3421
3422 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
3423 return true;
3424}
3425
3426static bool stack_segment_valid(struct kvm_vcpu *vcpu)
3427{
3428 struct kvm_segment ss;
3429 unsigned int ss_rpl;
3430
3431 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003432 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003433
Avi Kivity1872a3f2009-01-04 23:26:52 +02003434 if (ss.unusable)
3435 return true;
3436 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003437 return false;
3438 if (!ss.s)
3439 return false;
3440 if (ss.dpl != ss_rpl) /* DPL != RPL */
3441 return false;
3442 if (!ss.present)
3443 return false;
3444
3445 return true;
3446}
3447
3448static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
3449{
3450 struct kvm_segment var;
3451 unsigned int rpl;
3452
3453 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03003454 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003455
Avi Kivity1872a3f2009-01-04 23:26:52 +02003456 if (var.unusable)
3457 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003458 if (!var.s)
3459 return false;
3460 if (!var.present)
3461 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003462 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003463 if (var.dpl < rpl) /* DPL < RPL */
3464 return false;
3465 }
3466
3467 /* TODO: Add other members to kvm_segment_field to allow checking for other access
3468 * rights flags
3469 */
3470 return true;
3471}
3472
3473static bool tr_valid(struct kvm_vcpu *vcpu)
3474{
3475 struct kvm_segment tr;
3476
3477 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
3478
Avi Kivity1872a3f2009-01-04 23:26:52 +02003479 if (tr.unusable)
3480 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03003481 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003482 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003483 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003484 return false;
3485 if (!tr.present)
3486 return false;
3487
3488 return true;
3489}
3490
3491static bool ldtr_valid(struct kvm_vcpu *vcpu)
3492{
3493 struct kvm_segment ldtr;
3494
3495 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
3496
Avi Kivity1872a3f2009-01-04 23:26:52 +02003497 if (ldtr.unusable)
3498 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03003499 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003500 return false;
3501 if (ldtr.type != 2)
3502 return false;
3503 if (!ldtr.present)
3504 return false;
3505
3506 return true;
3507}
3508
3509static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
3510{
3511 struct kvm_segment cs, ss;
3512
3513 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3514 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3515
Nadav Amitb32a9912015-03-29 16:33:04 +03003516 return ((cs.selector & SEGMENT_RPL_MASK) ==
3517 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003518}
3519
3520/*
3521 * Check if guest state is valid. Returns true if valid, false if
3522 * not.
3523 * We assume that registers are always usable
3524 */
Sean Christopherson2ba44932020-09-23 11:44:48 -07003525bool __vmx_guest_state_valid(struct kvm_vcpu *vcpu)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003526{
3527 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03003528 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003529 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
3530 return false;
3531 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
3532 return false;
3533 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
3534 return false;
3535 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
3536 return false;
3537 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
3538 return false;
3539 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
3540 return false;
3541 } else {
3542 /* protected mode guest state checks */
3543 if (!cs_ss_rpl_check(vcpu))
3544 return false;
3545 if (!code_segment_valid(vcpu))
3546 return false;
3547 if (!stack_segment_valid(vcpu))
3548 return false;
3549 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
3550 return false;
3551 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
3552 return false;
3553 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
3554 return false;
3555 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
3556 return false;
3557 if (!tr_valid(vcpu))
3558 return false;
3559 if (!ldtr_valid(vcpu))
3560 return false;
3561 }
3562 /* TODO:
3563 * - Add checks on RIP
3564 * - Add checks on RFLAGS
3565 */
3566
3567 return true;
3568}
3569
Peter Xuff5a9832020-09-30 21:20:33 -04003570static int init_rmode_tss(struct kvm *kvm, void __user *ua)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003571{
Peter Xuff5a9832020-09-30 21:20:33 -04003572 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
3573 u16 data;
3574 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003575
Peter Xuff5a9832020-09-30 21:20:33 -04003576 for (i = 0; i < 3; i++) {
3577 if (__copy_to_user(ua + PAGE_SIZE * i, zero_page, PAGE_SIZE))
3578 return -EFAULT;
3579 }
3580
Izik Eidus195aefd2007-10-01 22:14:18 +02003581 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Peter Xuff5a9832020-09-30 21:20:33 -04003582 if (__copy_to_user(ua + TSS_IOPB_BASE_OFFSET, &data, sizeof(u16)))
3583 return -EFAULT;
3584
Izik Eidus195aefd2007-10-01 22:14:18 +02003585 data = ~0;
Peter Xuff5a9832020-09-30 21:20:33 -04003586 if (__copy_to_user(ua + RMODE_TSS_SIZE - 1, &data, sizeof(u8)))
3587 return -EFAULT;
3588
3589 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003590}
3591
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003592static int init_rmode_identity_map(struct kvm *kvm)
3593{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003594 struct kvm_vmx *kvm_vmx = to_kvm_vmx(kvm);
Peter Xu2a5755b2020-01-09 09:57:14 -05003595 int i, r = 0;
Peter Xuff5a9832020-09-30 21:20:33 -04003596 void __user *uaddr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003597 u32 tmp;
3598
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003599 /* Protect kvm_vmx->ept_identity_pagetable_done. */
Tang Chena255d472014-09-16 18:41:58 +08003600 mutex_lock(&kvm->slots_lock);
3601
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003602 if (likely(kvm_vmx->ept_identity_pagetable_done))
Peter Xu2a5755b2020-01-09 09:57:14 -05003603 goto out;
Tang Chena255d472014-09-16 18:41:58 +08003604
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003605 if (!kvm_vmx->ept_identity_map_addr)
3606 kvm_vmx->ept_identity_map_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chena255d472014-09-16 18:41:58 +08003607
Peter Xuff5a9832020-09-30 21:20:33 -04003608 uaddr = __x86_set_memory_region(kvm,
3609 IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
3610 kvm_vmx->ept_identity_map_addr,
3611 PAGE_SIZE);
3612 if (IS_ERR(uaddr)) {
3613 r = PTR_ERR(uaddr);
Peter Xu2a5755b2020-01-09 09:57:14 -05003614 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003615 }
Tang Chena255d472014-09-16 18:41:58 +08003616
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003617 /* Set up identity-mapping pagetable for EPT in real mode */
3618 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
3619 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
3620 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
Peter Xuff5a9832020-09-30 21:20:33 -04003621 if (__copy_to_user(uaddr + i * sizeof(tmp), &tmp, sizeof(tmp))) {
3622 r = -EFAULT;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003623 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003624 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003625 }
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003626 kvm_vmx->ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08003627
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003628out:
Tang Chena255d472014-09-16 18:41:58 +08003629 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08003630 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003631}
3632
Avi Kivity6aa8b732006-12-10 02:21:36 -08003633static void seg_setup(int seg)
3634{
Mathias Krause772e0312012-08-30 01:30:19 +02003635 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003636 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003637
3638 vmcs_write16(sf->selector, 0);
3639 vmcs_writel(sf->base, 0);
3640 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02003641 ar = 0x93;
3642 if (seg == VCPU_SREG_CS)
3643 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003644
3645 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003646}
3647
Sheng Yangf78e0e22007-10-29 09:40:42 +08003648static int alloc_apic_access_page(struct kvm *kvm)
3649{
Xiao Guangrong44841412012-09-07 14:14:20 +08003650 struct page *page;
Peter Xuff5a9832020-09-30 21:20:33 -04003651 void __user *hva;
3652 int ret = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003653
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003654 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08003655 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003656 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003657 hva = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
3658 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
3659 if (IS_ERR(hva)) {
3660 ret = PTR_ERR(hva);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003661 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003662 }
Izik Eidus72dc67a2008-02-10 18:04:15 +02003663
Tang Chen73a6d942014-09-11 13:38:00 +08003664 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08003665 if (is_error_page(page)) {
Peter Xuff5a9832020-09-30 21:20:33 -04003666 ret = -EFAULT;
Xiao Guangrong44841412012-09-07 14:14:20 +08003667 goto out;
3668 }
3669
Tang Chenc24ae0d2014-09-24 15:57:58 +08003670 /*
3671 * Do not pin the page in memory, so that memory hot-unplug
3672 * is able to migrate it.
3673 */
3674 put_page(page);
3675 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003676out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003677 mutex_unlock(&kvm->slots_lock);
Peter Xuff5a9832020-09-30 21:20:33 -04003678 return ret;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003679}
3680
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003681int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003682{
3683 int vpid;
3684
Avi Kivity919818a2009-03-23 18:01:29 +02003685 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08003686 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003687 spin_lock(&vmx_vpid_lock);
3688 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003689 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003690 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003691 else
3692 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003693 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003694 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003695}
3696
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003697void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003698{
Wanpeng Li991e7a02015-09-16 17:30:05 +08003699 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003700 return;
3701 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003702 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003703 spin_unlock(&vmx_vpid_lock);
3704}
3705
Alexander Graf3eb90012020-09-25 16:34:20 +02003706static void vmx_clear_msr_bitmap_read(ulong *msr_bitmap, u32 msr)
3707{
3708 int f = sizeof(unsigned long);
3709
3710 if (msr <= 0x1fff)
3711 __clear_bit(msr, msr_bitmap + 0x000 / f);
3712 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3713 __clear_bit(msr & 0x1fff, msr_bitmap + 0x400 / f);
3714}
3715
3716static void vmx_clear_msr_bitmap_write(ulong *msr_bitmap, u32 msr)
3717{
3718 int f = sizeof(unsigned long);
3719
3720 if (msr <= 0x1fff)
3721 __clear_bit(msr, msr_bitmap + 0x800 / f);
3722 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3723 __clear_bit(msr & 0x1fff, msr_bitmap + 0xc00 / f);
3724}
3725
3726static void vmx_set_msr_bitmap_read(ulong *msr_bitmap, u32 msr)
3727{
3728 int f = sizeof(unsigned long);
3729
3730 if (msr <= 0x1fff)
3731 __set_bit(msr, msr_bitmap + 0x000 / f);
3732 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3733 __set_bit(msr & 0x1fff, msr_bitmap + 0x400 / f);
3734}
3735
3736static void vmx_set_msr_bitmap_write(ulong *msr_bitmap, u32 msr)
3737{
3738 int f = sizeof(unsigned long);
3739
3740 if (msr <= 0x1fff)
3741 __set_bit(msr, msr_bitmap + 0x800 / f);
3742 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3743 __set_bit(msr & 0x1fff, msr_bitmap + 0xc00 / f);
3744}
3745
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003746static __always_inline void vmx_disable_intercept_for_msr(struct kvm_vcpu *vcpu,
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003747 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08003748{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003749 struct vcpu_vmx *vmx = to_vmx(vcpu);
3750 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
Sheng Yang25c5f222008-03-28 13:18:56 +08003751
3752 if (!cpu_has_vmx_msr_bitmap())
3753 return;
3754
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003755 if (static_branch_unlikely(&enable_evmcs))
3756 evmcs_touch_msr_bitmap();
3757
Sheng Yang25c5f222008-03-28 13:18:56 +08003758 /*
Alexander Graf3eb90012020-09-25 16:34:20 +02003759 * Mark the desired intercept state in shadow bitmap, this is needed
3760 * for resync when the MSR filters change.
3761 */
3762 if (is_valid_passthrough_msr(msr)) {
3763 int idx = possible_passthrough_msr_slot(msr);
Yang Zhang8d146952013-01-25 10:18:50 +08003764
Alexander Graf3eb90012020-09-25 16:34:20 +02003765 if (idx != -ENOENT) {
3766 if (type & MSR_TYPE_R)
3767 clear_bit(idx, vmx->shadow_msr_intercept.read);
3768 if (type & MSR_TYPE_W)
3769 clear_bit(idx, vmx->shadow_msr_intercept.write);
3770 }
Yang Zhang8d146952013-01-25 10:18:50 +08003771 }
Alexander Graf3eb90012020-09-25 16:34:20 +02003772
3773 if ((type & MSR_TYPE_R) &&
3774 !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_READ)) {
3775 vmx_set_msr_bitmap_read(msr_bitmap, msr);
3776 type &= ~MSR_TYPE_R;
3777 }
3778
3779 if ((type & MSR_TYPE_W) &&
3780 !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_WRITE)) {
3781 vmx_set_msr_bitmap_write(msr_bitmap, msr);
3782 type &= ~MSR_TYPE_W;
3783 }
3784
3785 if (type & MSR_TYPE_R)
3786 vmx_clear_msr_bitmap_read(msr_bitmap, msr);
3787
3788 if (type & MSR_TYPE_W)
3789 vmx_clear_msr_bitmap_write(msr_bitmap, msr);
Yang Zhang8d146952013-01-25 10:18:50 +08003790}
3791
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003792static __always_inline void vmx_enable_intercept_for_msr(struct kvm_vcpu *vcpu,
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003793 u32 msr, int type)
3794{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003795 struct vcpu_vmx *vmx = to_vmx(vcpu);
3796 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003797
3798 if (!cpu_has_vmx_msr_bitmap())
3799 return;
3800
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003801 if (static_branch_unlikely(&enable_evmcs))
3802 evmcs_touch_msr_bitmap();
3803
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003804 /*
Alexander Graf3eb90012020-09-25 16:34:20 +02003805 * Mark the desired intercept state in shadow bitmap, this is needed
3806 * for resync when the MSR filter changes.
3807 */
3808 if (is_valid_passthrough_msr(msr)) {
3809 int idx = possible_passthrough_msr_slot(msr);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003810
Alexander Graf3eb90012020-09-25 16:34:20 +02003811 if (idx != -ENOENT) {
3812 if (type & MSR_TYPE_R)
3813 set_bit(idx, vmx->shadow_msr_intercept.read);
3814 if (type & MSR_TYPE_W)
3815 set_bit(idx, vmx->shadow_msr_intercept.write);
3816 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003817 }
Alexander Graf3eb90012020-09-25 16:34:20 +02003818
3819 if (type & MSR_TYPE_R)
3820 vmx_set_msr_bitmap_read(msr_bitmap, msr);
3821
3822 if (type & MSR_TYPE_W)
3823 vmx_set_msr_bitmap_write(msr_bitmap, msr);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003824}
3825
Like Xu252e3652021-02-01 13:10:29 +08003826void vmx_set_intercept_for_msr(struct kvm_vcpu *vcpu,
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003827 u32 msr, int type, bool value)
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003828{
3829 if (value)
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003830 vmx_enable_intercept_for_msr(vcpu, msr, type);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003831 else
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003832 vmx_disable_intercept_for_msr(vcpu, msr, type);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003833}
3834
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003835static u8 vmx_msr_bitmap_mode(struct kvm_vcpu *vcpu)
Avi Kivity58972972009-02-24 22:26:47 +02003836{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003837 u8 mode = 0;
3838
3839 if (cpu_has_secondary_exec_ctrls() &&
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003840 (secondary_exec_controls_get(to_vmx(vcpu)) &
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003841 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
3842 mode |= MSR_BITMAP_MODE_X2APIC;
3843 if (enable_apicv && kvm_vcpu_apicv_active(vcpu))
3844 mode |= MSR_BITMAP_MODE_X2APIC_APICV;
3845 }
3846
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003847 return mode;
Yang Zhang8d146952013-01-25 10:18:50 +08003848}
3849
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003850static void vmx_reset_x2apic_msrs(struct kvm_vcpu *vcpu, u8 mode)
Yang Zhang8d146952013-01-25 10:18:50 +08003851{
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003852 unsigned long *msr_bitmap = to_vmx(vcpu)->vmcs01.msr_bitmap;
3853 unsigned long read_intercept;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003854 int msr;
3855
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003856 read_intercept = (mode & MSR_BITMAP_MODE_X2APIC_APICV) ? 0 : ~0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003857
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003858 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
3859 unsigned int read_idx = msr / BITS_PER_LONG;
3860 unsigned int write_idx = read_idx + (0x800 / sizeof(long));
3861
3862 msr_bitmap[read_idx] = read_intercept;
3863 msr_bitmap[write_idx] = ~0ul;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08003864 }
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003865}
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003866
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003867static void vmx_update_msr_bitmap_x2apic(struct kvm_vcpu *vcpu, u8 mode)
3868{
3869 if (!cpu_has_vmx_msr_bitmap())
3870 return;
3871
3872 vmx_reset_x2apic_msrs(vcpu, mode);
3873
3874 /*
3875 * TPR reads and writes can be virtualized even if virtual interrupt
3876 * delivery is not in use.
3877 */
3878 vmx_set_intercept_for_msr(vcpu, X2APIC_MSR(APIC_TASKPRI), MSR_TYPE_RW,
3879 !(mode & MSR_BITMAP_MODE_X2APIC));
3880
3881 if (mode & MSR_BITMAP_MODE_X2APIC_APICV) {
3882 vmx_enable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_TMCCT), MSR_TYPE_RW);
3883 vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_EOI), MSR_TYPE_W);
3884 vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_SELF_IPI), MSR_TYPE_W);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003885 }
3886}
3887
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003888void vmx_update_msr_bitmap(struct kvm_vcpu *vcpu)
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003889{
3890 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003891 u8 mode = vmx_msr_bitmap_mode(vcpu);
3892 u8 changed = mode ^ vmx->msr_bitmap_mode;
3893
3894 if (!changed)
3895 return;
3896
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003897 if (changed & (MSR_BITMAP_MODE_X2APIC | MSR_BITMAP_MODE_X2APIC_APICV))
Alexander Graf3eb90012020-09-25 16:34:20 +02003898 vmx_update_msr_bitmap_x2apic(vcpu, mode);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003899
3900 vmx->msr_bitmap_mode = mode;
Avi Kivity58972972009-02-24 22:26:47 +02003901}
3902
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003903void pt_update_intercept_for_msr(struct kvm_vcpu *vcpu)
Chao Pengb08c2892018-10-24 16:05:15 +08003904{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003905 struct vcpu_vmx *vmx = to_vmx(vcpu);
Chao Pengb08c2892018-10-24 16:05:15 +08003906 bool flag = !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
3907 u32 i;
3908
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003909 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_STATUS, MSR_TYPE_RW, flag);
3910 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_OUTPUT_BASE, MSR_TYPE_RW, flag);
3911 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_OUTPUT_MASK, MSR_TYPE_RW, flag);
3912 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_CR3_MATCH, MSR_TYPE_RW, flag);
Chao Pengb08c2892018-10-24 16:05:15 +08003913 for (i = 0; i < vmx->pt_desc.addr_range; i++) {
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003914 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_ADDR0_A + i * 2, MSR_TYPE_RW, flag);
3915 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_ADDR0_B + i * 2, MSR_TYPE_RW, flag);
Chao Pengb08c2892018-10-24 16:05:15 +08003916 }
3917}
3918
Liran Alone6c67d82018-09-04 10:56:52 +03003919static bool vmx_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
3920{
3921 struct vcpu_vmx *vmx = to_vmx(vcpu);
3922 void *vapic_page;
3923 u32 vppr;
3924 int rvi;
3925
3926 if (WARN_ON_ONCE(!is_guest_mode(vcpu)) ||
3927 !nested_cpu_has_vid(get_vmcs12(vcpu)) ||
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003928 WARN_ON_ONCE(!vmx->nested.virtual_apic_map.gfn))
Liran Alone6c67d82018-09-04 10:56:52 +03003929 return false;
3930
Paolo Bonzini7e712682018-10-03 13:44:26 +02003931 rvi = vmx_get_rvi();
Liran Alone6c67d82018-09-04 10:56:52 +03003932
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003933 vapic_page = vmx->nested.virtual_apic_map.hva;
Liran Alone6c67d82018-09-04 10:56:52 +03003934 vppr = *((u32 *)(vapic_page + APIC_PROCPRI));
Liran Alone6c67d82018-09-04 10:56:52 +03003935
3936 return ((rvi & 0xf0) > (vppr & 0xf0));
3937}
3938
Alexander Graf3eb90012020-09-25 16:34:20 +02003939static void vmx_msr_filter_changed(struct kvm_vcpu *vcpu)
3940{
3941 struct vcpu_vmx *vmx = to_vmx(vcpu);
3942 u32 i;
3943
3944 /*
3945 * Set intercept permissions for all potentially passed through MSRs
3946 * again. They will automatically get filtered through the MSR filter,
3947 * so we are back in sync after this.
3948 */
3949 for (i = 0; i < ARRAY_SIZE(vmx_possible_passthrough_msrs); i++) {
3950 u32 msr = vmx_possible_passthrough_msrs[i];
3951 bool read = test_bit(i, vmx->shadow_msr_intercept.read);
3952 bool write = test_bit(i, vmx->shadow_msr_intercept.write);
3953
3954 vmx_set_intercept_for_msr(vcpu, msr, MSR_TYPE_R, read);
3955 vmx_set_intercept_for_msr(vcpu, msr, MSR_TYPE_W, write);
3956 }
3957
3958 pt_update_intercept_for_msr(vcpu);
3959 vmx_update_msr_bitmap_x2apic(vcpu, vmx_msr_bitmap_mode(vcpu));
3960}
3961
Wincy Van06a55242017-04-28 13:13:59 +08003962static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
3963 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003964{
3965#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08003966 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
3967
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003968 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08003969 /*
Haozhong Zhang5753743f2017-09-18 09:56:50 +08003970 * The vector of interrupt to be delivered to vcpu had
3971 * been set in PIR before this function.
Feng Wu28b835d2015-09-18 22:29:54 +08003972 *
Haozhong Zhang5753743f2017-09-18 09:56:50 +08003973 * Following cases will be reached in this block, and
3974 * we always send a notification event in all cases as
3975 * explained below.
3976 *
3977 * Case 1: vcpu keeps in non-root mode. Sending a
3978 * notification event posts the interrupt to vcpu.
3979 *
3980 * Case 2: vcpu exits to root mode and is still
3981 * runnable. PIR will be synced to vIRR before the
3982 * next vcpu entry. Sending a notification event in
3983 * this case has no effect, as vcpu is not in root
3984 * mode.
3985 *
3986 * Case 3: vcpu exits to root mode and is blocked.
3987 * vcpu_block() has already synced PIR to vIRR and
3988 * never blocks vcpu if vIRR is not cleared. Therefore,
3989 * a blocked vcpu here does not wait for any requested
3990 * interrupts in PIR, and sending a notification event
3991 * which has no effect is safe here.
Feng Wu28b835d2015-09-18 22:29:54 +08003992 */
Feng Wu28b835d2015-09-18 22:29:54 +08003993
Wincy Van06a55242017-04-28 13:13:59 +08003994 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003995 return true;
3996 }
3997#endif
3998 return false;
3999}
4000
Wincy Van705699a2015-02-03 23:58:17 +08004001static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
4002 int vector)
4003{
4004 struct vcpu_vmx *vmx = to_vmx(vcpu);
4005
4006 if (is_guest_mode(vcpu) &&
4007 vector == vmx->nested.posted_intr_nv) {
Wincy Van705699a2015-02-03 23:58:17 +08004008 /*
4009 * If a posted intr is not recognized by hardware,
4010 * we will accomplish it in the next vmentry.
4011 */
4012 vmx->nested.pi_pending = true;
4013 kvm_make_request(KVM_REQ_EVENT, vcpu);
Liran Alon6b697712017-11-09 20:27:20 +02004014 /* the PIR and ON have been set by L1. */
4015 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, true))
4016 kvm_vcpu_kick(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08004017 return 0;
4018 }
4019 return -1;
4020}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004021/*
Yang Zhanga20ed542013-04-11 19:25:15 +08004022 * Send interrupt to vcpu via posted interrupt way.
4023 * 1. If target vcpu is running(non-root mode), send posted interrupt
4024 * notification to vcpu and hardware will sync PIR to vIRR atomically.
4025 * 2. If target vcpu isn't running(root mode), kick it to pick up the
4026 * interrupt from PIR in next vmentry.
4027 */
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004028static int vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
Yang Zhanga20ed542013-04-11 19:25:15 +08004029{
4030 struct vcpu_vmx *vmx = to_vmx(vcpu);
4031 int r;
4032
Wincy Van705699a2015-02-03 23:58:17 +08004033 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
4034 if (!r)
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004035 return 0;
4036
4037 if (!vcpu->arch.apicv_active)
4038 return -1;
Wincy Van705699a2015-02-03 23:58:17 +08004039
Yang Zhanga20ed542013-04-11 19:25:15 +08004040 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004041 return 0;
Yang Zhanga20ed542013-04-11 19:25:15 +08004042
Paolo Bonzinib95234c2016-12-19 13:57:33 +01004043 /* If a previous notification has sent the IPI, nothing to do. */
4044 if (pi_test_and_set_on(&vmx->pi_desc))
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004045 return 0;
Paolo Bonzinib95234c2016-12-19 13:57:33 +01004046
Wanpeng Li379a3c82020-04-28 14:23:27 +08004047 if (vcpu != kvm_get_running_vcpu() &&
4048 !kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08004049 kvm_vcpu_kick(vcpu);
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004050
4051 return 0;
Yang Zhanga20ed542013-04-11 19:25:15 +08004052}
4053
Avi Kivity6aa8b732006-12-10 02:21:36 -08004054/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004055 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
4056 * will not change in the lifetime of the guest.
4057 * Note that host-state that does change is set elsewhere. E.g., host-state
4058 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
4059 */
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004060void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004061{
4062 u32 low32, high32;
4063 unsigned long tmpl;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07004064 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004065
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07004066 cr0 = read_cr0();
4067 WARN_ON(cr0 & X86_CR0_TS);
4068 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07004069
4070 /*
4071 * Save the most likely value for this task's CR3 in the VMCS.
4072 * We can't use __get_current_cr3_fast() because we're not atomic.
4073 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07004074 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07004075 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
Sean Christophersond7ee0392018-07-23 12:32:47 -07004076 vmx->loaded_vmcs->host_state.cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004077
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004078 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07004079 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004080 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07004081 vmx->loaded_vmcs->host_state.cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004082
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004083 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004084#ifdef CONFIG_X86_64
4085 /*
4086 * Load null selectors, so we can avoid reloading them in
Sean Christopherson6d6095b2018-07-23 12:32:44 -07004087 * vmx_prepare_switch_to_host(), in case userspace uses
4088 * the null selectors too (the expected case).
Avi Kivityb2da15a2012-05-13 19:53:24 +03004089 */
4090 vmcs_write16(HOST_DS_SELECTOR, 0);
4091 vmcs_write16(HOST_ES_SELECTOR, 0);
4092#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004093 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4094 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004095#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004096 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4097 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
4098
Sean Christopherson23420802019-04-19 22:50:57 -07004099 vmcs_writel(HOST_IDTR_BASE, host_idt_base); /* 22.2.4 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004100
Sean Christopherson453eafb2018-12-20 12:25:17 -08004101 vmcs_writel(HOST_RIP, (unsigned long)vmx_vmexit); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004102
4103 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
4104 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
4105 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
4106 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
4107
4108 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
4109 rdmsr(MSR_IA32_CR_PAT, low32, high32);
4110 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
4111 }
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07004112
Sean Christophersonc73da3f2018-12-03 13:53:00 -08004113 if (cpu_has_load_ia32_efer())
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07004114 vmcs_write64(HOST_IA32_EFER, host_efer);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004115}
4116
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004117void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004118{
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004119 struct kvm_vcpu *vcpu = &vmx->vcpu;
4120
4121 vcpu->arch.cr4_guest_owned_bits = KVM_POSSIBLE_CR4_GUEST_BITS &
4122 ~vcpu->arch.cr4_guest_rsvd_bits;
Sean Christophersonfa71e952020-07-02 21:04:22 -07004123 if (!enable_ept)
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004124 vcpu->arch.cr4_guest_owned_bits &= ~X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03004125 if (is_guest_mode(&vmx->vcpu))
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004126 vcpu->arch.cr4_guest_owned_bits &=
4127 ~get_vmcs12(vcpu)->cr4_guest_host_mask;
4128 vmcs_writel(CR4_GUEST_HOST_MASK, ~vcpu->arch.cr4_guest_owned_bits);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004129}
4130
Sean Christophersonc075c3e2019-05-07 12:17:53 -07004131u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
Yang Zhang01e439b2013-04-11 19:25:12 +08004132{
4133 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
4134
Andrey Smetanind62caab2015-11-10 15:36:33 +03004135 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08004136 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004137
4138 if (!enable_vnmi)
4139 pin_based_exec_ctrl &= ~PIN_BASED_VIRTUAL_NMIS;
4140
Sean Christopherson804939e2019-05-07 12:18:05 -07004141 if (!enable_preemption_timer)
4142 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
4143
Yang Zhang01e439b2013-04-11 19:25:12 +08004144 return pin_based_exec_ctrl;
4145}
4146
Andrey Smetanind62caab2015-11-10 15:36:33 +03004147static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
4148{
4149 struct vcpu_vmx *vmx = to_vmx(vcpu);
4150
Sean Christophersonc5f2c762019-05-07 12:17:55 -07004151 pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03004152 if (cpu_has_secondary_exec_ctrls()) {
4153 if (kvm_vcpu_apicv_active(vcpu))
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07004154 secondary_exec_controls_setbit(vmx,
Roman Kagan3ce424e2016-05-18 17:48:20 +03004155 SECONDARY_EXEC_APIC_REGISTER_VIRT |
4156 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
4157 else
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07004158 secondary_exec_controls_clearbit(vmx,
Roman Kagan3ce424e2016-05-18 17:48:20 +03004159 SECONDARY_EXEC_APIC_REGISTER_VIRT |
4160 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
4161 }
4162
4163 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004164 vmx_update_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004165}
4166
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08004167u32 vmx_exec_control(struct vcpu_vmx *vmx)
4168{
4169 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
4170
4171 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
4172 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
4173
4174 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
4175 exec_control &= ~CPU_BASED_TPR_SHADOW;
4176#ifdef CONFIG_X86_64
4177 exec_control |= CPU_BASED_CR8_STORE_EXITING |
4178 CPU_BASED_CR8_LOAD_EXITING;
4179#endif
4180 }
4181 if (!enable_ept)
4182 exec_control |= CPU_BASED_CR3_STORE_EXITING |
4183 CPU_BASED_CR3_LOAD_EXITING |
4184 CPU_BASED_INVLPG_EXITING;
4185 if (kvm_mwait_in_guest(vmx->vcpu.kvm))
4186 exec_control &= ~(CPU_BASED_MWAIT_EXITING |
4187 CPU_BASED_MONITOR_EXITING);
4188 if (kvm_hlt_in_guest(vmx->vcpu.kvm))
4189 exec_control &= ~CPU_BASED_HLT_EXITING;
4190 return exec_control;
4191}
4192
Sean Christopherson8b50b922020-09-24 17:30:11 -07004193/*
4194 * Adjust a single secondary execution control bit to intercept/allow an
4195 * instruction in the guest. This is usually done based on whether or not a
4196 * feature has been exposed to the guest in order to correctly emulate faults.
4197 */
4198static inline void
4199vmx_adjust_secondary_exec_control(struct vcpu_vmx *vmx, u32 *exec_control,
4200 u32 control, bool enabled, bool exiting)
4201{
4202 /*
4203 * If the control is for an opt-in feature, clear the control if the
4204 * feature is not exposed to the guest, i.e. not enabled. If the
4205 * control is opt-out, i.e. an exiting control, clear the control if
4206 * the feature _is_ exposed to the guest, i.e. exiting/interception is
4207 * disabled for the associated instruction. Note, the caller is
4208 * responsible presetting exec_control to set all supported bits.
4209 */
4210 if (enabled == exiting)
4211 *exec_control &= ~control;
4212
4213 /*
4214 * Update the nested MSR settings so that a nested VMM can/can't set
4215 * controls for features that are/aren't exposed to the guest.
4216 */
4217 if (nested) {
4218 if (enabled)
4219 vmx->nested.msrs.secondary_ctls_high |= control;
4220 else
4221 vmx->nested.msrs.secondary_ctls_high &= ~control;
4222 }
4223}
4224
4225/*
4226 * Wrapper macro for the common case of adjusting a secondary execution control
4227 * based on a single guest CPUID bit, with a dedicated feature bit. This also
4228 * verifies that the control is actually supported by KVM and hardware.
4229 */
4230#define vmx_adjust_sec_exec_control(vmx, exec_control, name, feat_name, ctrl_name, exiting) \
4231({ \
4232 bool __enabled; \
4233 \
4234 if (cpu_has_vmx_##name()) { \
4235 __enabled = guest_cpuid_has(&(vmx)->vcpu, \
4236 X86_FEATURE_##feat_name); \
4237 vmx_adjust_secondary_exec_control(vmx, exec_control, \
4238 SECONDARY_EXEC_##ctrl_name, __enabled, exiting); \
4239 } \
4240})
4241
4242/* More macro magic for ENABLE_/opt-in versus _EXITING/opt-out controls. */
4243#define vmx_adjust_sec_exec_feature(vmx, exec_control, lname, uname) \
4244 vmx_adjust_sec_exec_control(vmx, exec_control, lname, uname, ENABLE_##uname, false)
4245
4246#define vmx_adjust_sec_exec_exiting(vmx, exec_control, lname, uname) \
4247 vmx_adjust_sec_exec_control(vmx, exec_control, lname, uname, uname##_EXITING, true)
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08004248
Paolo Bonzini80154d72017-08-24 13:55:35 +02004249static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004250{
Paolo Bonzini80154d72017-08-24 13:55:35 +02004251 struct kvm_vcpu *vcpu = &vmx->vcpu;
4252
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004253 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004254
Sean Christopherson2ef76192020-03-02 15:56:22 -08004255 if (vmx_pt_mode_is_system())
Chao Pengf99e3da2018-10-24 16:05:10 +08004256 exec_control &= ~(SECONDARY_EXEC_PT_USE_GPA | SECONDARY_EXEC_PT_CONCEAL_VMX);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004257 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004258 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
4259 if (vmx->vpid == 0)
4260 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
4261 if (!enable_ept) {
4262 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
4263 enable_unrestricted_guest = 0;
4264 }
4265 if (!enable_unrestricted_guest)
4266 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Wanpeng Lib31c1142018-03-12 04:53:04 -07004267 if (kvm_pause_in_guest(vmx->vcpu.kvm))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004268 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02004269 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08004270 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
4271 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08004272 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004273
4274 /* SECONDARY_EXEC_DESC is enabled/disabled on writes to CR4.UMIP,
4275 * in vmx_set_cr4. */
4276 exec_control &= ~SECONDARY_EXEC_DESC;
4277
Abel Gordonabc4fc52013-04-18 14:35:25 +03004278 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
4279 (handle_vmptrld).
4280 We can NOT enable shadow_vmcs here because we don't have yet
4281 a current VMCS12
4282 */
4283 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08004284
4285 if (!enable_pml)
4286 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08004287
Sean Christophersonbecdad82020-09-23 09:50:45 -07004288 if (cpu_has_vmx_xsaves()) {
Paolo Bonzini3db13482017-08-24 14:48:03 +02004289 /* Exposing XSAVES only when XSAVE is exposed */
4290 bool xsaves_enabled =
Sean Christopherson96be4e02019-12-10 14:44:15 -08004291 boot_cpu_has(X86_FEATURE_XSAVE) &&
Paolo Bonzini3db13482017-08-24 14:48:03 +02004292 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
4293 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
4294
Aaron Lewis72041602019-10-21 16:30:20 -07004295 vcpu->arch.xsaves_enabled = xsaves_enabled;
4296
Sean Christopherson8b50b922020-09-24 17:30:11 -07004297 vmx_adjust_secondary_exec_control(vmx, &exec_control,
4298 SECONDARY_EXEC_XSAVES,
4299 xsaves_enabled, false);
Paolo Bonzini3db13482017-08-24 14:48:03 +02004300 }
4301
Sean Christopherson8b50b922020-09-24 17:30:11 -07004302 vmx_adjust_sec_exec_feature(vmx, &exec_control, rdtscp, RDTSCP);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004303
Sean Christophersonb936d3e2020-09-23 09:50:46 -07004304 /*
4305 * Expose INVPCID if and only if PCID is also exposed to the guest.
4306 * INVPCID takes a #UD when it's disabled in the VMCS, but a #GP or #PF
4307 * if CR4.PCIDE=0. Enumerating CPUID.INVPCID=1 would lead to incorrect
4308 * behavior from the guest perspective (it would expect #GP or #PF).
4309 */
4310 if (!guest_cpuid_has(vcpu, X86_FEATURE_PCID))
4311 guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID);
Sean Christopherson8b50b922020-09-24 17:30:11 -07004312 vmx_adjust_sec_exec_feature(vmx, &exec_control, invpcid, INVPCID);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004313
Paolo Bonzini80154d72017-08-24 13:55:35 +02004314
Sean Christopherson8b50b922020-09-24 17:30:11 -07004315 vmx_adjust_sec_exec_exiting(vmx, &exec_control, rdrand, RDRAND);
4316 vmx_adjust_sec_exec_exiting(vmx, &exec_control, rdseed, RDSEED);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004317
Sean Christopherson8b50b922020-09-24 17:30:11 -07004318 vmx_adjust_sec_exec_control(vmx, &exec_control, waitpkg, WAITPKG,
4319 ENABLE_USR_WAIT_PAUSE, false);
Tao Xue69e72fa2019-07-16 14:55:49 +08004320
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08004321 if (!vcpu->kvm->arch.bus_lock_detection_enabled)
4322 exec_control &= ~SECONDARY_EXEC_BUS_LOCK_DETECTION;
4323
Paolo Bonzini80154d72017-08-24 13:55:35 +02004324 vmx->secondary_exec_control = exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004325}
4326
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004327static void ept_set_mmio_spte_mask(void)
4328{
4329 /*
4330 * EPT Misconfigurations can be generated if the value of bits 2:0
4331 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004332 */
Paolo Bonzinie7581ca2020-05-19 05:04:49 -04004333 kvm_mmu_set_mmio_spte_mask(VMX_EPT_MISCONFIG_WX_VALUE, 0);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004334}
4335
Wanpeng Lif53cd632014-12-02 19:14:58 +08004336#define VMX_XSS_EXIT_BITMAP 0
Avi Kivity6aa8b732006-12-10 02:21:36 -08004337
Sean Christopherson944c3462018-12-03 13:53:09 -08004338/*
Xiaoyao Li1b842922019-10-20 17:11:01 +08004339 * Noting that the initialization of Guest-state Area of VMCS is in
4340 * vmx_vcpu_reset().
Sean Christopherson944c3462018-12-03 13:53:09 -08004341 */
Xiaoyao Li1b842922019-10-20 17:11:01 +08004342static void init_vmcs(struct vcpu_vmx *vmx)
Sean Christopherson944c3462018-12-03 13:53:09 -08004343{
Sean Christopherson944c3462018-12-03 13:53:09 -08004344 if (nested)
Xiaoyao Li1b842922019-10-20 17:11:01 +08004345 nested_vmx_set_vmcs_shadowing_bitmap();
Sean Christopherson944c3462018-12-03 13:53:09 -08004346
Sheng Yang25c5f222008-03-28 13:18:56 +08004347 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004348 vmcs_write64(MSR_BITMAP, __pa(vmx->vmcs01.msr_bitmap));
Sheng Yang25c5f222008-03-28 13:18:56 +08004349
Avi Kivity6aa8b732006-12-10 02:21:36 -08004350 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
4351
Avi Kivity6aa8b732006-12-10 02:21:36 -08004352 /* Control */
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004353 pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004354
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004355 exec_controls_set(vmx, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004356
Dan Williamsdfa169b2016-06-02 11:17:24 -07004357 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +02004358 vmx_compute_secondary_exec_control(vmx);
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004359 secondary_exec_controls_set(vmx, vmx->secondary_exec_control);
Dan Williamsdfa169b2016-06-02 11:17:24 -07004360 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08004361
Andrey Smetanind62caab2015-11-10 15:36:33 +03004362 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08004363 vmcs_write64(EOI_EXIT_BITMAP0, 0);
4364 vmcs_write64(EOI_EXIT_BITMAP1, 0);
4365 vmcs_write64(EOI_EXIT_BITMAP2, 0);
4366 vmcs_write64(EOI_EXIT_BITMAP3, 0);
4367
4368 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08004369
Li RongQing0bcf2612015-12-03 13:29:34 +08004370 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08004371 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08004372 }
4373
Wanpeng Lib31c1142018-03-12 04:53:04 -07004374 if (!kvm_pause_in_guest(vmx->vcpu.kvm)) {
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004375 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02004376 vmx->ple_window = ple_window;
4377 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004378 }
4379
Xiao Guangrongc3707952011-07-12 03:28:04 +08004380 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
4381 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004382 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
4383
Avi Kivity9581d442010-10-19 16:46:55 +02004384 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
4385 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004386 vmx_set_constant_host_state(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004387 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
4388 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004389
Bandan Das2a499e42017-08-03 15:54:41 -04004390 if (cpu_has_vmx_vmfunc())
4391 vmcs_write64(VM_FUNCTION_CONTROL, 0);
4392
Eddie Dong2cc51562007-05-21 07:28:09 +03004393 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
4394 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004395 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host.val));
Eddie Dong2cc51562007-05-21 07:28:09 +03004396 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004397 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest.val));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004398
Radim Krčmář74545702015-04-27 15:11:25 +02004399 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
4400 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08004401
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004402 vm_exit_controls_set(vmx, vmx_vmexit_ctrl());
Avi Kivity6aa8b732006-12-10 02:21:36 -08004403
4404 /* 22.2.1, 20.8.1 */
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004405 vm_entry_controls_set(vmx, vmx_vmentry_ctrl());
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004406
Sean Christophersonfa71e952020-07-02 21:04:22 -07004407 vmx->vcpu.arch.cr0_guest_owned_bits = KVM_POSSIBLE_CR0_GUEST_BITS;
4408 vmcs_writel(CR0_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr0_guest_owned_bits);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004409
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004410 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004411
Xiaoyao Li35fbe0d2019-10-20 17:10:58 +08004412 if (vmx->vpid != 0)
4413 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
4414
Sean Christophersonbecdad82020-09-23 09:50:45 -07004415 if (cpu_has_vmx_xsaves())
Wanpeng Lif53cd632014-12-02 19:14:58 +08004416 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
4417
Peter Feiner4e595162016-07-07 14:49:58 -07004418 if (enable_pml) {
Peter Feiner4e595162016-07-07 14:49:58 -07004419 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
4420 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
4421 }
Sean Christopherson0b665d32018-08-14 09:33:34 -07004422
4423 if (cpu_has_vmx_encls_vmexit())
4424 vmcs_write64(ENCLS_EXITING_BITMAP, -1ull);
Chao Peng2ef444f2018-10-24 16:05:12 +08004425
Sean Christopherson2ef76192020-03-02 15:56:22 -08004426 if (vmx_pt_mode_is_host_guest()) {
Chao Peng2ef444f2018-10-24 16:05:12 +08004427 memset(&vmx->pt_desc, 0, sizeof(vmx->pt_desc));
4428 /* Bit[6~0] are forced to 1, writes are ignored. */
4429 vmx->pt_desc.guest.output_mask = 0x7F;
4430 vmcs_write64(GUEST_IA32_RTIT_CTL, 0);
4431 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004432}
4433
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004434static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004435{
4436 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01004437 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004438 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004439
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004440 vmx->rmode.vm86_active = 0;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004441 vmx->spec_ctrl = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004442
Tao Xu6e3ba4a2019-07-16 14:55:50 +08004443 vmx->msr_ia32_umwait_control = 0;
4444
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004445 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Wanpeng Li95c06542019-09-05 14:26:28 +08004446 vmx->hv_deadline_tsc = -1;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004447 kvm_set_cr8(vcpu, 0);
4448
4449 if (!init_event) {
4450 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
4451 MSR_IA32_APICBASE_ENABLE;
4452 if (kvm_vcpu_is_reset_bsp(vcpu))
4453 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
4454 apic_base_msr.host_initiated = true;
4455 kvm_set_apic_base(vcpu, &apic_base_msr);
4456 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004457
Avi Kivity2fb92db2011-04-27 19:42:18 +03004458 vmx_segment_cache_clear(vmx);
4459
Avi Kivity5706be02008-08-20 15:07:31 +03004460 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01004461 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004462 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004463
4464 seg_setup(VCPU_SREG_DS);
4465 seg_setup(VCPU_SREG_ES);
4466 seg_setup(VCPU_SREG_FS);
4467 seg_setup(VCPU_SREG_GS);
4468 seg_setup(VCPU_SREG_SS);
4469
4470 vmcs_write16(GUEST_TR_SELECTOR, 0);
4471 vmcs_writel(GUEST_TR_BASE, 0);
4472 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
4473 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4474
4475 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
4476 vmcs_writel(GUEST_LDTR_BASE, 0);
4477 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
4478 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
4479
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004480 if (!init_event) {
4481 vmcs_write32(GUEST_SYSENTER_CS, 0);
4482 vmcs_writel(GUEST_SYSENTER_ESP, 0);
4483 vmcs_writel(GUEST_SYSENTER_EIP, 0);
4484 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
4485 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004486
Wanpeng Lic37c2872017-11-20 14:52:21 -08004487 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
Jan Kiszka66450a22013-03-13 12:42:34 +01004488 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004489
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004490 vmcs_writel(GUEST_GDTR_BASE, 0);
4491 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
4492
4493 vmcs_writel(GUEST_IDTR_BASE, 0);
4494 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
4495
Anthony Liguori443381a2010-12-06 10:53:38 -06004496 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004497 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004498 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Wanpeng Lia554d202017-10-11 05:10:19 -07004499 if (kvm_mpx_supported())
4500 vmcs_write64(GUEST_BNDCFGS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004501
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004502 setup_msrs(vmx);
4503
Avi Kivity6aa8b732006-12-10 02:21:36 -08004504 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
4505
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004506 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08004507 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004508 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08004509 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004510 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004511 vmcs_write32(TPR_THRESHOLD, 0);
4512 }
4513
Paolo Bonzinia73896c2014-11-02 07:54:30 +01004514 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004515
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004516 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004517 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06004518 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004519 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02004520 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004521
Jason Baronb6a7cc32021-01-14 22:27:54 -05004522 vmx_update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004523
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004524 vpid_sync_context(vmx->vpid);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004525 if (init_event)
4526 vmx_clear_hlt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004527}
4528
Jason Baronb6a7cc32021-01-14 22:27:54 -05004529static void vmx_enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004530{
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08004531 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_INTR_WINDOW_EXITING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004532}
4533
Jason Baronb6a7cc32021-01-14 22:27:54 -05004534static void vmx_enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004535{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004536 if (!enable_vnmi ||
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004537 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jason Baronb6a7cc32021-01-14 22:27:54 -05004538 vmx_enable_irq_window(vcpu);
Jan Kiszkac9a79532014-03-07 20:03:15 +01004539 return;
4540 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02004541
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08004542 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_NMI_WINDOW_EXITING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004543}
4544
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004545static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03004546{
Avi Kivity9c8cba32007-11-22 11:42:59 +02004547 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004548 uint32_t intr;
4549 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02004550
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004551 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004552
Avi Kivityfa89a812008-09-01 15:57:51 +03004553 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004554 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05004555 int inc_eip = 0;
4556 if (vcpu->arch.interrupt.soft)
4557 inc_eip = vcpu->arch.event_exit_inst_len;
Sean Christopherson9497e1f2019-08-27 14:40:36 -07004558 kvm_inject_realmode_interrupt(vcpu, irq, inc_eip);
Eddie Dong85f455f2007-07-06 12:20:49 +03004559 return;
4560 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004561 intr = irq | INTR_INFO_VALID_MASK;
4562 if (vcpu->arch.interrupt.soft) {
4563 intr |= INTR_TYPE_SOFT_INTR;
4564 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
4565 vmx->vcpu.arch.event_exit_inst_len);
4566 } else
4567 intr |= INTR_TYPE_EXT_INTR;
4568 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004569
4570 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03004571}
4572
Sheng Yangf08864b2008-05-15 18:23:25 +08004573static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
4574{
Jan Kiszka66a5a342008-09-26 09:30:51 +02004575 struct vcpu_vmx *vmx = to_vmx(vcpu);
4576
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004577 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004578 /*
4579 * Tracking the NMI-blocked state in software is built upon
4580 * finding the next open IRQ window. This, in turn, depends on
4581 * well-behaving guests: They have to keep IRQs disabled at
4582 * least as long as the NMI handler runs. Otherwise we may
4583 * cause NMI nesting, maybe breaking the guest. But as this is
4584 * highly unlikely, we can live with the residual risk.
4585 */
4586 vmx->loaded_vmcs->soft_vnmi_blocked = 1;
4587 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4588 }
4589
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004590 ++vcpu->stat.nmi_injections;
4591 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004592
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004593 if (vmx->rmode.vm86_active) {
Sean Christopherson9497e1f2019-08-27 14:40:36 -07004594 kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0);
Jan Kiszka66a5a342008-09-26 09:30:51 +02004595 return;
4596 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08004597
Sheng Yangf08864b2008-05-15 18:23:25 +08004598 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
4599 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004600
4601 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08004602}
4603
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004604bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004605{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004606 struct vcpu_vmx *vmx = to_vmx(vcpu);
4607 bool masked;
4608
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004609 if (!enable_vnmi)
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004610 return vmx->loaded_vmcs->soft_vnmi_blocked;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004611 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02004612 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004613 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
4614 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4615 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004616}
4617
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004618void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004619{
4620 struct vcpu_vmx *vmx = to_vmx(vcpu);
4621
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004622 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004623 if (vmx->loaded_vmcs->soft_vnmi_blocked != masked) {
4624 vmx->loaded_vmcs->soft_vnmi_blocked = masked;
4625 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4626 }
4627 } else {
4628 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4629 if (masked)
4630 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
4631 GUEST_INTR_STATE_NMI);
4632 else
4633 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
4634 GUEST_INTR_STATE_NMI);
4635 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004636}
4637
Sean Christopherson1b660b62020-04-22 19:25:44 -07004638bool vmx_nmi_blocked(struct kvm_vcpu *vcpu)
4639{
4640 if (is_guest_mode(vcpu) && nested_exit_on_nmi(vcpu))
4641 return false;
4642
4643 if (!enable_vnmi && to_vmx(vcpu)->loaded_vmcs->soft_vnmi_blocked)
4644 return true;
4645
4646 return (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4647 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI |
4648 GUEST_INTR_STATE_NMI));
4649}
4650
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004651static int vmx_nmi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Jan Kiszka2505dc92013-04-14 12:12:47 +02004652{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01004653 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004654 return -EBUSY;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02004655
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004656 /* An NMI must not be injected into L2 if it's supposed to VM-Exit. */
4657 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_nmi(vcpu))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004658 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004659
Sean Christopherson1b660b62020-04-22 19:25:44 -07004660 return !vmx_nmi_blocked(vcpu);
4661}
Sean Christopherson429ab572020-04-22 19:25:42 -07004662
Sean Christopherson1b660b62020-04-22 19:25:44 -07004663bool vmx_interrupt_blocked(struct kvm_vcpu *vcpu)
4664{
4665 if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
Sean Christopherson88c604b2020-04-22 19:25:41 -07004666 return false;
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004667
Sean Christopherson7ab0abd2020-04-22 19:25:50 -07004668 return !(vmx_get_rflags(vcpu) & X86_EFLAGS_IF) ||
Sean Christopherson1b660b62020-04-22 19:25:44 -07004669 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4670 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Jan Kiszka2505dc92013-04-14 12:12:47 +02004671}
4672
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004673static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Gleb Natapov78646122009-03-23 12:12:11 +02004674{
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004675 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004676 return -EBUSY;
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004677
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004678 /*
4679 * An IRQ must not be injected into L2 if it's supposed to VM-Exit,
4680 * e.g. if the IRQ arrived asynchronously after checking nested events.
4681 */
4682 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004683 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004684
Sean Christopherson1b660b62020-04-22 19:25:44 -07004685 return !vmx_interrupt_blocked(vcpu);
Gleb Natapov78646122009-03-23 12:12:11 +02004686}
4687
Izik Eiduscbc94022007-10-25 00:29:55 +02004688static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
4689{
Peter Xuff5a9832020-09-30 21:20:33 -04004690 void __user *ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02004691
Sean Christophersonf7eaeb02018-03-05 12:04:36 -08004692 if (enable_unrestricted_guest)
4693 return 0;
4694
Peter Xu6a3c6232020-01-09 09:57:16 -05004695 mutex_lock(&kvm->slots_lock);
4696 ret = __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
4697 PAGE_SIZE * 3);
4698 mutex_unlock(&kvm->slots_lock);
4699
Peter Xuff5a9832020-09-30 21:20:33 -04004700 if (IS_ERR(ret))
4701 return PTR_ERR(ret);
4702
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004703 to_kvm_vmx(kvm)->tss_addr = addr;
Peter Xuff5a9832020-09-30 21:20:33 -04004704
4705 return init_rmode_tss(kvm, ret);
Izik Eiduscbc94022007-10-25 00:29:55 +02004706}
4707
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004708static int vmx_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
4709{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004710 to_kvm_vmx(kvm)->ept_identity_map_addr = ident_addr;
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004711 return 0;
4712}
4713
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004714static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004715{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004716 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004717 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01004718 /*
4719 * Update instruction length as we may reinject the exception
4720 * from user space while in guest debugging mode.
4721 */
4722 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
4723 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004724 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004725 return false;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004726 fallthrough;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004727 case DB_VECTOR:
Miaohe Lina8cfbae2020-02-19 10:45:48 +08004728 return !(vcpu->guest_debug &
4729 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP));
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004730 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004731 case OF_VECTOR:
4732 case BR_VECTOR:
4733 case UD_VECTOR:
4734 case DF_VECTOR:
4735 case SS_VECTOR:
4736 case GP_VECTOR:
4737 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004738 return true;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004739 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004740 return false;
4741}
4742
4743static int handle_rmode_exception(struct kvm_vcpu *vcpu,
4744 int vec, u32 err_code)
4745{
4746 /*
4747 * Instruction with address size override prefix opcode 0x67
4748 * Cause the #SS fault with 0 error code in VM86 mode.
4749 */
4750 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004751 if (kvm_emulate_instruction(vcpu, 0)) {
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004752 if (vcpu->arch.halt_request) {
4753 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06004754 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004755 }
4756 return 1;
4757 }
4758 return 0;
4759 }
4760
4761 /*
4762 * Forward all other exceptions that are valid in real mode.
4763 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
4764 * the required debugging infrastructure rework.
4765 */
4766 kvm_queue_exception(vcpu, vec);
4767 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004768}
4769
Avi Kivity851ba692009-08-24 11:10:17 +03004770static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08004771{
Sean Christopherson95b5a482019-04-19 22:50:59 -07004772 /* handled by vmx_vcpu_run() */
Andi Kleena0861c02009-06-08 17:37:09 +08004773 return 1;
4774}
4775
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004776/*
4777 * If the host has split lock detection disabled, then #AC is
4778 * unconditionally injected into the guest, which is the pre split lock
4779 * detection behaviour.
4780 *
4781 * If the host has split lock detection enabled then #AC is
4782 * only injected into the guest when:
4783 * - Guest CPL == 3 (user mode)
4784 * - Guest has #AC detection enabled in CR0
4785 * - Guest EFLAGS has AC bit set
4786 */
4787static inline bool guest_inject_ac(struct kvm_vcpu *vcpu)
4788{
4789 if (!boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
4790 return true;
4791
4792 return vmx_get_cpl(vcpu) == 3 && kvm_read_cr0_bits(vcpu, X86_CR0_AM) &&
4793 (kvm_get_rflags(vcpu) & X86_EFLAGS_AC);
4794}
4795
Sean Christopherson95b5a482019-04-19 22:50:59 -07004796static int handle_exception_nmi(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004797{
Avi Kivity1155f762007-11-22 11:30:47 +02004798 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004799 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004800 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004801 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004802 u32 vect_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004803
Avi Kivity1155f762007-11-22 11:30:47 +02004804 vect_info = vmx->idt_vectoring_info;
Sean Christophersonf27ad732020-04-27 10:18:37 -07004805 intr_info = vmx_get_intr_info(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004806
Paolo Bonzini2ea72032019-06-06 14:57:25 +02004807 if (is_machine_check(intr_info) || is_nmi(intr_info))
Sean Christopherson95b5a482019-04-19 22:50:59 -07004808 return 1; /* handled by handle_exception_nmi_irqoff() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03004809
Wanpeng Li082d06e2018-04-03 16:28:48 -07004810 if (is_invalid_opcode(intr_info))
4811 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004812
Avi Kivity6aa8b732006-12-10 02:21:36 -08004813 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06004814 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004815 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004816
Liran Alon9e869482018-03-12 13:12:51 +02004817 if (!vmx->rmode.vm86_active && is_gp_fault(intr_info)) {
4818 WARN_ON_ONCE(!enable_vmware_backdoor);
Sean Christophersona6c6ed12019-08-27 14:40:30 -07004819
4820 /*
4821 * VMware backdoor emulation on #GP interception only handles
4822 * IN{S}, OUT{S}, and RDPMC, none of which generate a non-zero
4823 * error code on #GP.
4824 */
4825 if (error_code) {
4826 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
4827 return 1;
4828 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004829 return kvm_emulate_instruction(vcpu, EMULTYPE_VMWARE_GP);
Liran Alon9e869482018-03-12 13:12:51 +02004830 }
4831
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004832 /*
4833 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
4834 * MMIO, it is better to report an internal error.
4835 * See the comments in vmx_handle_exit.
4836 */
4837 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
4838 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
4839 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4840 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Jim Mattson1aa561b2020-06-03 16:56:21 -07004841 vcpu->run->internal.ndata = 4;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004842 vcpu->run->internal.data[0] = vect_info;
4843 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02004844 vcpu->run->internal.data[2] = error_code;
Jim Mattson8a14fe42020-06-03 16:56:22 -07004845 vcpu->run->internal.data[3] = vcpu->arch.last_vmentry_cpu;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004846 return 0;
4847 }
4848
Avi Kivity6aa8b732006-12-10 02:21:36 -08004849 if (is_page_fault(intr_info)) {
Sean Christopherson5addc232020-04-15 13:34:53 -07004850 cr2 = vmx_get_exit_qual(vcpu);
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02004851 if (enable_ept && !vcpu->arch.apf.host_apf_flags) {
4852 /*
4853 * EPT will cause page fault only if we need to
4854 * detect illegal GPAs.
4855 */
Mohammed Gamalb96e6502020-09-03 16:11:22 +02004856 WARN_ON_ONCE(!allow_smaller_maxphyaddr);
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02004857 kvm_fixup_and_inject_pf_error(vcpu, cr2, error_code);
4858 return 1;
4859 } else
4860 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004861 }
4862
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004863 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004864
4865 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
4866 return handle_rmode_exception(vcpu, ex_no, error_code);
4867
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004868 switch (ex_no) {
4869 case DB_VECTOR:
Sean Christopherson5addc232020-04-15 13:34:53 -07004870 dr6 = vmx_get_exit_qual(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004871 if (!(vcpu->guest_debug &
4872 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Linus Torvalds32d43cd2018-03-20 12:16:59 -07004873 if (is_icebp(intr_info))
Sean Christopherson1957aa62019-08-27 14:40:39 -07004874 WARN_ON(!skip_emulated_instruction(vcpu));
Huw Daviesfd2a4452014-04-16 10:02:51 +01004875
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04004876 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004877 return 1;
4878 }
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08004879 kvm_run->debug.arch.dr6 = dr6 | DR6_ACTIVE_LOW;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004880 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004881 fallthrough;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004882 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01004883 /*
4884 * Update instruction length as we may reinject #BP from
4885 * user space while in guest debugging mode. Reading it for
4886 * #DB as well causes no harm, it is not used in that case.
4887 */
4888 vmx->vcpu.arch.event_exit_inst_len =
4889 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004890 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03004891 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004892 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
4893 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004894 break;
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004895 case AC_VECTOR:
4896 if (guest_inject_ac(vcpu)) {
4897 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
4898 return 1;
4899 }
4900
4901 /*
4902 * Handle split lock. Depending on detection mode this will
4903 * either warn and disable split lock detection for this
4904 * task or force SIGBUS on it.
4905 */
4906 if (handle_guest_split_lock(kvm_rip_read(vcpu)))
4907 return 1;
4908 fallthrough;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004909 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004910 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
4911 kvm_run->ex.exception = ex_no;
4912 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004913 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004914 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004915 return 0;
4916}
4917
Andrea Arcangelif399e602019-11-04 17:59:58 -05004918static __always_inline int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004919{
Avi Kivity1165f5f2007-04-19 17:27:43 +03004920 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004921 return 1;
4922}
4923
Avi Kivity851ba692009-08-24 11:10:17 +03004924static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08004925{
Avi Kivity851ba692009-08-24 11:10:17 +03004926 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07004927 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08004928 return 0;
4929}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004930
Avi Kivity851ba692009-08-24 11:10:17 +03004931static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004932{
He, Qingbfdaab02007-09-12 14:18:28 +08004933 unsigned long exit_qualification;
Sean Christophersondca7f122018-03-08 08:57:27 -08004934 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02004935 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004936
Sean Christopherson5addc232020-04-15 13:34:53 -07004937 exit_qualification = vmx_get_exit_qual(vcpu);
Avi Kivity039576c2007-03-20 12:46:50 +02004938 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004939
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004940 ++vcpu->stat.io_exits;
4941
Sean Christopherson432baf62018-03-08 08:57:26 -08004942 if (string)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004943 return kvm_emulate_instruction(vcpu, 0);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004944
4945 port = exit_qualification >> 16;
4946 size = (exit_qualification & 7) + 1;
Sean Christopherson432baf62018-03-08 08:57:26 -08004947 in = (exit_qualification & 8) != 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004948
Sean Christophersondca7f122018-03-08 08:57:27 -08004949 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004950}
4951
Ingo Molnar102d8322007-02-19 14:37:47 +02004952static void
4953vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
4954{
4955 /*
4956 * Patch in the VMCALL instruction:
4957 */
4958 hypercall[0] = 0x0f;
4959 hypercall[1] = 0x01;
4960 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02004961}
4962
Guo Chao0fa06072012-06-28 15:16:19 +08004963/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004964static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
4965{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004966 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004967 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4968 unsigned long orig_val = val;
4969
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004970 /*
4971 * We get here when L2 changed cr0 in a way that did not change
4972 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004973 * but did change L0 shadowed bits. So we first calculate the
4974 * effective cr0 value that L1 would like to write into the
4975 * hardware. It consists of the L2-owned bits from the new
4976 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004977 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004978 val = (val & ~vmcs12->cr0_guest_host_mask) |
4979 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
4980
David Matlack38991522016-11-29 18:14:08 -08004981 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004982 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004983
4984 if (kvm_set_cr0(vcpu, val))
4985 return 1;
4986 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004987 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004988 } else {
4989 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08004990 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004991 return 1;
David Matlack38991522016-11-29 18:14:08 -08004992
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004993 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004994 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004995}
4996
4997static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
4998{
4999 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005000 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5001 unsigned long orig_val = val;
5002
5003 /* analogously to handle_set_cr0 */
5004 val = (val & ~vmcs12->cr4_guest_host_mask) |
5005 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
5006 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005007 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005008 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005009 return 0;
5010 } else
5011 return kvm_set_cr4(vcpu, val);
5012}
5013
Paolo Bonzini0367f202016-07-12 10:44:55 +02005014static int handle_desc(struct kvm_vcpu *vcpu)
5015{
5016 WARN_ON(!(vcpu->arch.cr4 & X86_CR4_UMIP));
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005017 return kvm_emulate_instruction(vcpu, 0);
Paolo Bonzini0367f202016-07-12 10:44:55 +02005018}
5019
Avi Kivity851ba692009-08-24 11:10:17 +03005020static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005021{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005022 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005023 int cr;
5024 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03005025 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08005026 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005027
Sean Christopherson5addc232020-04-15 13:34:53 -07005028 exit_qualification = vmx_get_exit_qual(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005029 cr = exit_qualification & 15;
5030 reg = (exit_qualification >> 8) & 15;
5031 switch ((exit_qualification >> 4) & 3) {
5032 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03005033 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005034 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005035 switch (cr) {
5036 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005037 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005038 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005039 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08005040 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity23902182010-06-10 17:02:16 +03005041 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005042 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005043 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005044 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005045 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005046 case 8: {
5047 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03005048 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01005049 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005050 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005051 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08005052 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005053 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08005054 return ret;
5055 /*
5056 * TODO: we might be squashing a
5057 * KVM_GUESTDBG_SINGLESTEP-triggered
5058 * KVM_EXIT_DEBUG here.
5059 */
Avi Kivity851ba692009-08-24 11:10:17 +03005060 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005061 return 0;
5062 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02005063 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005064 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03005065 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005066 WARN_ONCE(1, "Guest should always own CR0.TS");
5067 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02005068 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08005069 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005070 case 1: /*mov from cr*/
5071 switch (cr) {
5072 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08005073 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity9f8fe502010-12-05 17:30:00 +02005074 val = kvm_read_cr3(vcpu);
5075 kvm_register_write(vcpu, reg, val);
5076 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005077 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005078 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005079 val = kvm_get_cr8(vcpu);
5080 kvm_register_write(vcpu, reg, val);
5081 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005082 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005083 }
5084 break;
5085 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02005086 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02005087 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02005088 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005089
Kyle Huey6affcbe2016-11-29 12:40:40 -08005090 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005091 default:
5092 break;
5093 }
Avi Kivity851ba692009-08-24 11:10:17 +03005094 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03005095 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08005096 (int)(exit_qualification >> 4) & 3, cr);
5097 return 0;
5098}
5099
Avi Kivity851ba692009-08-24 11:10:17 +03005100static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005101{
He, Qingbfdaab02007-09-12 14:18:28 +08005102 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005103 int dr, dr7, reg;
5104
Sean Christopherson5addc232020-04-15 13:34:53 -07005105 exit_qualification = vmx_get_exit_qual(vcpu);
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005106 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
5107
5108 /* First, if DR does not exist, trigger UD */
5109 if (!kvm_require_dr(vcpu, dr))
5110 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005111
Jan Kiszkaf2483412010-01-20 18:20:20 +01005112 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03005113 if (!kvm_require_cpl(vcpu, 0))
5114 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005115 dr7 = vmcs_readl(GUEST_DR7);
5116 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005117 /*
5118 * As the vm-exit takes precedence over the debug trap, we
5119 * need to emulate the latter, either for the host or the
5120 * guest debugging itself.
5121 */
5122 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08005123 vcpu->run->debug.arch.dr6 = DR6_BD | DR6_ACTIVE_LOW;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005124 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02005125 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005126 vcpu->run->debug.arch.exception = DB_VECTOR;
5127 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005128 return 0;
5129 } else {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04005130 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BD);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005131 return 1;
5132 }
5133 }
5134
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005135 if (vcpu->guest_debug == 0) {
Sean Christopherson2183f562019-05-07 12:17:56 -07005136 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005137
5138 /*
5139 * No more DR vmexits; force a reload of the debug registers
5140 * and reenter on this instruction. The next vmexit will
5141 * retrieve the full state of the debug registers.
5142 */
5143 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
5144 return 1;
5145 }
5146
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005147 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
5148 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03005149 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005150
5151 if (kvm_get_dr(vcpu, dr, &val))
5152 return 1;
5153 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03005154 } else
Nadav Amit57773922014-06-18 17:19:23 +03005155 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005156 return 1;
5157
Kyle Huey6affcbe2016-11-29 12:40:40 -08005158 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005159}
5160
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005161static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
5162{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005163 get_debugreg(vcpu->arch.db[0], 0);
5164 get_debugreg(vcpu->arch.db[1], 1);
5165 get_debugreg(vcpu->arch.db[2], 2);
5166 get_debugreg(vcpu->arch.db[3], 3);
5167 get_debugreg(vcpu->arch.dr6, 6);
5168 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
5169
5170 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Sean Christopherson2183f562019-05-07 12:17:56 -07005171 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005172}
5173
Gleb Natapov020df072010-04-13 10:05:23 +03005174static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
5175{
5176 vmcs_writel(GUEST_DR7, val);
5177}
5178
Avi Kivity851ba692009-08-24 11:10:17 +03005179static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005180{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01005181 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005182 return 1;
5183}
5184
Avi Kivity851ba692009-08-24 11:10:17 +03005185static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005186{
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005187 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_INTR_WINDOW_EXITING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005188
Avi Kivity3842d132010-07-27 12:30:24 +03005189 kvm_make_request(KVM_REQ_EVENT, vcpu);
5190
Jan Kiszkaa26bf122008-09-26 09:30:45 +02005191 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005192 return 1;
5193}
5194
Avi Kivity851ba692009-08-24 11:10:17 +03005195static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02005196{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03005197 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02005198}
5199
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005200static int handle_invd(struct kvm_vcpu *vcpu)
5201{
Tom Lendacky28e2b2f2020-09-24 13:41:58 -05005202 /* Treat an INVD instruction as a NOP and just skip it. */
5203 return kvm_skip_emulated_instruction(vcpu);
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005204}
5205
Avi Kivity851ba692009-08-24 11:10:17 +03005206static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03005207{
Sean Christopherson5addc232020-04-15 13:34:53 -07005208 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005209
5210 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005211 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005212}
5213
Avi Kivityfee84b02011-11-10 14:57:25 +02005214static int handle_rdpmc(struct kvm_vcpu *vcpu)
5215{
5216 int err;
5217
5218 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005219 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02005220}
5221
Avi Kivity851ba692009-08-24 11:10:17 +03005222static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02005223{
Kyle Huey6affcbe2016-11-29 12:40:40 -08005224 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02005225}
5226
Dexuan Cui2acf9232010-06-10 11:27:12 +08005227static int handle_xsetbv(struct kvm_vcpu *vcpu)
5228{
5229 u64 new_bv = kvm_read_edx_eax(vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -07005230 u32 index = kvm_rcx_read(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08005231
5232 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08005233 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08005234 return 1;
5235}
5236
Avi Kivity851ba692009-08-24 11:10:17 +03005237static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005238{
Kevin Tian58fbbf22011-08-30 13:56:17 +03005239 if (likely(fasteoi)) {
Sean Christopherson5addc232020-04-15 13:34:53 -07005240 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03005241 int access_type, offset;
5242
5243 access_type = exit_qualification & APIC_ACCESS_TYPE;
5244 offset = exit_qualification & APIC_ACCESS_OFFSET;
5245 /*
5246 * Sane guest uses MOV to write EOI, with written value
5247 * not cared. So make a short-circuit here by avoiding
5248 * heavy instruction emulation.
5249 */
5250 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
5251 (offset == APIC_EOI)) {
5252 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005253 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03005254 }
5255 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005256 return kvm_emulate_instruction(vcpu, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08005257}
5258
Yang Zhangc7c9c562013-01-25 10:18:51 +08005259static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
5260{
Sean Christopherson5addc232020-04-15 13:34:53 -07005261 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005262 int vector = exit_qualification & 0xff;
5263
5264 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
5265 kvm_apic_set_eoi_accelerated(vcpu, vector);
5266 return 1;
5267}
5268
Yang Zhang83d4c282013-01-25 10:18:49 +08005269static int handle_apic_write(struct kvm_vcpu *vcpu)
5270{
Sean Christopherson5addc232020-04-15 13:34:53 -07005271 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Yang Zhang83d4c282013-01-25 10:18:49 +08005272 u32 offset = exit_qualification & 0xfff;
5273
5274 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
5275 kvm_apic_write_nodecode(vcpu, offset);
5276 return 1;
5277}
5278
Avi Kivity851ba692009-08-24 11:10:17 +03005279static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02005280{
Jan Kiszka60637aa2008-09-26 09:30:47 +02005281 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005282 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02005283 bool has_error_code = false;
5284 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02005285 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005286 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005287
5288 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005289 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005290 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02005291
Sean Christopherson5addc232020-04-15 13:34:53 -07005292 exit_qualification = vmx_get_exit_qual(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005293
5294 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005295 if (reason == TASK_SWITCH_GATE && idt_v) {
5296 switch (type) {
5297 case INTR_TYPE_NMI_INTR:
5298 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02005299 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005300 break;
5301 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005302 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005303 kvm_clear_interrupt_queue(vcpu);
5304 break;
5305 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02005306 if (vmx->idt_vectoring_info &
5307 VECTORING_INFO_DELIVER_CODE_MASK) {
5308 has_error_code = true;
5309 error_code =
5310 vmcs_read32(IDT_VECTORING_ERROR_CODE);
5311 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05005312 fallthrough;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005313 case INTR_TYPE_SOFT_EXCEPTION:
5314 kvm_clear_exception_queue(vcpu);
5315 break;
5316 default:
5317 break;
5318 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02005319 }
Izik Eidus37817f22008-03-24 23:14:53 +02005320 tss_selector = exit_qualification;
5321
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005322 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
5323 type != INTR_TYPE_EXT_INTR &&
5324 type != INTR_TYPE_NMI_INTR))
Sean Christopherson1957aa62019-08-27 14:40:39 -07005325 WARN_ON(!skip_emulated_instruction(vcpu));
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005326
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005327 /*
5328 * TODO: What about debug traps on tss switch?
5329 * Are we supposed to inject them and update dr6?
5330 */
Sean Christopherson10517782019-08-27 14:40:35 -07005331 return kvm_task_switch(vcpu, tss_selector,
5332 type == INTR_TYPE_SOFT_INTR ? idt_index : -1,
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005333 reason, has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02005334}
5335
Avi Kivity851ba692009-08-24 11:10:17 +03005336static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08005337{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005338 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08005339 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01005340 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08005341
Sean Christopherson5addc232020-04-15 13:34:53 -07005342 exit_qualification = vmx_get_exit_qual(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08005343
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005344 /*
5345 * EPT violation happened while executing iret from NMI,
5346 * "blocked by NMI" bit has to be set before next VM entry.
5347 * There are errata that may cause this bit to not be set:
5348 * AAK134, BY25.
5349 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005350 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005351 enable_vnmi &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005352 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005353 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
5354
Sheng Yang14394422008-04-28 12:24:45 +08005355 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005356 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005357
Junaid Shahid27959a42016-12-06 16:46:10 -08005358 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005359 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08005360 ? PFERR_USER_MASK : 0;
5361 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005362 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08005363 ? PFERR_WRITE_MASK : 0;
5364 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005365 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08005366 ? PFERR_FETCH_MASK : 0;
5367 /* ept page table entry is present? */
5368 error_code |= (exit_qualification &
5369 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
5370 EPT_VIOLATION_EXECUTABLE))
5371 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005372
Paolo Bonzinieebed242016-11-28 14:39:58 +01005373 error_code |= (exit_qualification & 0x100) != 0 ?
5374 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03005375
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005376 vcpu->arch.exit_qualification = exit_qualification;
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02005377
5378 /*
5379 * Check that the GPA doesn't exceed physical memory limits, as that is
5380 * a guest page fault. We have to emulate the instruction here, because
5381 * if the illegal address is that of a paging structure, then
5382 * EPT_VIOLATION_ACC_WRITE bit is set. Alternatively, if supported we
5383 * would also use advanced VM-exit information for EPT violations to
5384 * reconstruct the page fault error code.
5385 */
Paolo Bonzinic0623f52020-10-21 18:05:58 -04005386 if (unlikely(allow_smaller_maxphyaddr && kvm_vcpu_is_illegal_gpa(vcpu, gpa)))
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02005387 return kvm_emulate_instruction(vcpu, 0);
5388
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005389 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08005390}
5391
Avi Kivity851ba692009-08-24 11:10:17 +03005392static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005393{
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005394 gpa_t gpa;
5395
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005396 /*
5397 * A nested guest cannot optimize MMIO vmexits, because we have an
5398 * nGPA here instead of the required GPA.
5399 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005400 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005401 if (!is_guest_mode(vcpu) &&
5402 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08005403 trace_kvm_fast_mmio(gpa);
Sean Christopherson1957aa62019-08-27 14:40:39 -07005404 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03005405 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005406
Sean Christophersonc75d0edc2018-03-29 14:48:31 -07005407 return kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005408}
5409
Avi Kivity851ba692009-08-24 11:10:17 +03005410static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08005411{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005412 WARN_ON_ONCE(!enable_vnmi);
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08005413 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_NMI_WINDOW_EXITING);
Sheng Yangf08864b2008-05-15 18:23:25 +08005414 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03005415 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08005416
5417 return 1;
5418}
5419
Mohammed Gamal80ced182009-09-01 12:48:18 +02005420static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005421{
Avi Kivity8b3079a2009-01-05 12:10:54 +02005422 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity49e9d552010-09-19 14:34:08 +02005423 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03005424 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02005425
Sean Christopherson2183f562019-05-07 12:17:56 -07005426 intr_window_requested = exec_controls_get(vmx) &
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005427 CPU_BASED_INTR_WINDOW_EXITING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005428
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01005429 while (vmx->emulation_required && count-- != 0) {
Sean Christophersondb438592020-04-22 19:25:48 -07005430 if (intr_window_requested && !vmx_interrupt_blocked(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02005431 return handle_interrupt_window(&vmx->vcpu);
5432
Radim Krčmář72875d82017-04-26 22:32:19 +02005433 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03005434 return 1;
5435
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005436 if (!kvm_emulate_instruction(vcpu, 0))
Sean Christopherson8fff2712019-08-27 14:40:37 -07005437 return 0;
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005438
Sean Christophersonadd5ff72018-03-23 09:34:00 -07005439 if (vmx->emulation_required && !vmx->rmode.vm86_active &&
Sean Christopherson8fff2712019-08-27 14:40:37 -07005440 vcpu->arch.exception.pending) {
5441 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5442 vcpu->run->internal.suberror =
5443 KVM_INTERNAL_ERROR_EMULATION;
5444 vcpu->run->internal.ndata = 0;
5445 return 0;
5446 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005447
Gleb Natapov8d76c492013-05-08 18:38:44 +03005448 if (vcpu->arch.halt_request) {
5449 vcpu->arch.halt_request = 0;
Sean Christopherson8fff2712019-08-27 14:40:37 -07005450 return kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03005451 }
5452
Sean Christopherson8fff2712019-08-27 14:40:37 -07005453 /*
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02005454 * Note, return 1 and not 0, vcpu_run() will invoke
5455 * xfer_to_guest_mode() which will create a proper return
5456 * code.
Sean Christopherson8fff2712019-08-27 14:40:37 -07005457 */
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02005458 if (__xfer_to_guest_mode_work_pending())
Sean Christopherson8fff2712019-08-27 14:40:37 -07005459 return 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005460 }
5461
Sean Christopherson8fff2712019-08-27 14:40:37 -07005462 return 1;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005463}
5464
5465static void grow_ple_window(struct kvm_vcpu *vcpu)
5466{
5467 struct vcpu_vmx *vmx = to_vmx(vcpu);
Peter Xuc5c5d6f2019-09-06 10:17:21 +08005468 unsigned int old = vmx->ple_window;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005469
Babu Mogerc8e88712018-03-16 16:37:24 -04005470 vmx->ple_window = __grow_ple_window(old, ple_window,
5471 ple_window_grow,
5472 ple_window_max);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005473
Peter Xu4f75bcc2019-09-06 10:17:22 +08005474 if (vmx->ple_window != old) {
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005475 vmx->ple_window_dirty = true;
Peter Xu4f75bcc2019-09-06 10:17:22 +08005476 trace_kvm_ple_window_update(vcpu->vcpu_id,
5477 vmx->ple_window, old);
5478 }
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005479}
5480
5481static void shrink_ple_window(struct kvm_vcpu *vcpu)
5482{
5483 struct vcpu_vmx *vmx = to_vmx(vcpu);
Peter Xuc5c5d6f2019-09-06 10:17:21 +08005484 unsigned int old = vmx->ple_window;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005485
Babu Mogerc8e88712018-03-16 16:37:24 -04005486 vmx->ple_window = __shrink_ple_window(old, ple_window,
5487 ple_window_shrink,
5488 ple_window);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005489
Peter Xu4f75bcc2019-09-06 10:17:22 +08005490 if (vmx->ple_window != old) {
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005491 vmx->ple_window_dirty = true;
Peter Xu4f75bcc2019-09-06 10:17:22 +08005492 trace_kvm_ple_window_update(vcpu->vcpu_id,
5493 vmx->ple_window, old);
5494 }
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005495}
5496
Peng Haoe01bca22018-04-07 05:47:32 +08005497static void vmx_enable_tdp(void)
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005498{
5499 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
5500 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
5501 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
5502 0ull, VMX_EPT_EXECUTABLE_MASK,
5503 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005504 VMX_EPT_RWX_MASK, 0ull);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005505
5506 ept_set_mmio_spte_mask();
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005507}
5508
Avi Kivity6aa8b732006-12-10 02:21:36 -08005509/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005510 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
5511 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
5512 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03005513static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005514{
Wanpeng Lib31c1142018-03-12 04:53:04 -07005515 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005516 grow_ple_window(vcpu);
5517
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08005518 /*
5519 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
5520 * VM-execution control is ignored if CPL > 0. OTOH, KVM
5521 * never set PAUSE_EXITING and just set PLE if supported,
5522 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
5523 */
5524 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005525 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005526}
5527
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005528static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08005529{
Kyle Huey6affcbe2016-11-29 12:40:40 -08005530 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08005531}
5532
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005533static int handle_mwait(struct kvm_vcpu *vcpu)
5534{
5535 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
5536 return handle_nop(vcpu);
5537}
5538
Jim Mattson45ec3682017-08-23 16:32:04 -07005539static int handle_invalid_op(struct kvm_vcpu *vcpu)
5540{
5541 kvm_queue_exception(vcpu, UD_VECTOR);
5542 return 1;
5543}
5544
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005545static int handle_monitor_trap(struct kvm_vcpu *vcpu)
5546{
5547 return 1;
5548}
5549
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005550static int handle_monitor(struct kvm_vcpu *vcpu)
5551{
5552 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
5553 return handle_nop(vcpu);
5554}
5555
Junaid Shahideb4b2482018-06-27 14:59:14 -07005556static int handle_invpcid(struct kvm_vcpu *vcpu)
5557{
5558 u32 vmx_instruction_info;
5559 unsigned long type;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005560 gva_t gva;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005561 struct {
5562 u64 pcid;
5563 u64 gla;
5564 } operand;
5565
5566 if (!guest_cpuid_has(vcpu, X86_FEATURE_INVPCID)) {
5567 kvm_queue_exception(vcpu, UD_VECTOR);
5568 return 1;
5569 }
5570
5571 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5572 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
5573
5574 if (type > 3) {
5575 kvm_inject_gp(vcpu, 0);
5576 return 1;
5577 }
5578
5579 /* According to the Intel instruction reference, the memory operand
5580 * is read even if it isn't needed (e.g., for type==all)
5581 */
Sean Christopherson5addc232020-04-15 13:34:53 -07005582 if (get_vmx_mem_address(vcpu, vmx_get_exit_qual(vcpu),
Eugene Korenevskyfdb28612019-06-06 00:19:16 +03005583 vmx_instruction_info, false,
5584 sizeof(operand), &gva))
Junaid Shahideb4b2482018-06-27 14:59:14 -07005585 return 1;
5586
Babu Moger97150922020-09-11 14:29:12 -05005587 return kvm_handle_invpcid(vcpu, type, gva);
Junaid Shahideb4b2482018-06-27 14:59:14 -07005588}
5589
Kai Huang843e4332015-01-28 10:54:28 +08005590static int handle_pml_full(struct kvm_vcpu *vcpu)
5591{
5592 unsigned long exit_qualification;
5593
5594 trace_kvm_pml_full(vcpu->vcpu_id);
5595
Sean Christopherson5addc232020-04-15 13:34:53 -07005596 exit_qualification = vmx_get_exit_qual(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005597
5598 /*
5599 * PML buffer FULL happened while executing iret from NMI,
5600 * "blocked by NMI" bit has to be set before next VM entry.
5601 */
5602 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005603 enable_vnmi &&
Kai Huang843e4332015-01-28 10:54:28 +08005604 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
5605 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5606 GUEST_INTR_STATE_NMI);
5607
5608 /*
5609 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
5610 * here.., and there's no userspace involvement needed for PML.
5611 */
5612 return 1;
5613}
5614
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005615static fastpath_t handle_fastpath_preemption_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07005616{
Sean Christopherson804939e2019-05-07 12:18:05 -07005617 struct vcpu_vmx *vmx = to_vmx(vcpu);
5618
5619 if (!vmx->req_immediate_exit &&
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005620 !unlikely(vmx->loaded_vmcs->hv_timer_soft_disabled)) {
Sean Christophersond264ee02018-08-27 15:21:12 -07005621 kvm_lapic_expired_hv_timer(vcpu);
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005622 return EXIT_FASTPATH_REENTER_GUEST;
5623 }
Sean Christopherson804939e2019-05-07 12:18:05 -07005624
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005625 return EXIT_FASTPATH_NONE;
5626}
5627
5628static int handle_preemption_timer(struct kvm_vcpu *vcpu)
5629{
5630 handle_fastpath_preemption_timer(vcpu);
Yunhong Jiang64672c92016-06-13 14:19:59 -07005631 return 1;
5632}
5633
Sean Christophersone4027cf2018-12-03 13:53:12 -08005634/*
5635 * When nested=0, all VMX instruction VM Exits filter here. The handlers
5636 * are overwritten by nested_vmx_setup() when nested=1.
5637 */
5638static int handle_vmx_instruction(struct kvm_vcpu *vcpu)
5639{
5640 kvm_queue_exception(vcpu, UD_VECTOR);
5641 return 1;
5642}
5643
Sean Christopherson0b665d32018-08-14 09:33:34 -07005644static int handle_encls(struct kvm_vcpu *vcpu)
5645{
5646 /*
5647 * SGX virtualization is not yet supported. There is no software
5648 * enable bit for SGX, so we have to trap ENCLS and inject a #UD
5649 * to prevent the guest from executing ENCLS.
5650 */
5651 kvm_queue_exception(vcpu, UD_VECTOR);
5652 return 1;
5653}
5654
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005655static int handle_bus_lock_vmexit(struct kvm_vcpu *vcpu)
5656{
5657 vcpu->run->exit_reason = KVM_EXIT_X86_BUS_LOCK;
5658 vcpu->run->flags |= KVM_RUN_X86_BUS_LOCK;
5659 return 0;
5660}
5661
Nadav Har'El0140cae2011-05-25 23:06:28 +03005662/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005663 * The exit handlers return 1 if the exit was handled fully and guest execution
5664 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
5665 * to be done to userspace and return 0.
5666 */
Sean Christophersone4027cf2018-12-03 13:53:12 -08005667static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Sean Christopherson95b5a482019-04-19 22:50:59 -07005668 [EXIT_REASON_EXCEPTION_NMI] = handle_exception_nmi,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005669 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08005670 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08005671 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005672 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005673 [EXIT_REASON_CR_ACCESS] = handle_cr,
5674 [EXIT_REASON_DR_ACCESS] = handle_dr,
Andrea Arcangelif399e602019-11-04 17:59:58 -05005675 [EXIT_REASON_CPUID] = kvm_emulate_cpuid,
5676 [EXIT_REASON_MSR_READ] = kvm_emulate_rdmsr,
5677 [EXIT_REASON_MSR_WRITE] = kvm_emulate_wrmsr,
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005678 [EXIT_REASON_INTERRUPT_WINDOW] = handle_interrupt_window,
Andrea Arcangelif399e602019-11-04 17:59:58 -05005679 [EXIT_REASON_HLT] = kvm_emulate_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005680 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03005681 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02005682 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02005683 [EXIT_REASON_VMCALL] = handle_vmcall,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005684 [EXIT_REASON_VMCLEAR] = handle_vmx_instruction,
5685 [EXIT_REASON_VMLAUNCH] = handle_vmx_instruction,
5686 [EXIT_REASON_VMPTRLD] = handle_vmx_instruction,
5687 [EXIT_REASON_VMPTRST] = handle_vmx_instruction,
5688 [EXIT_REASON_VMREAD] = handle_vmx_instruction,
5689 [EXIT_REASON_VMRESUME] = handle_vmx_instruction,
5690 [EXIT_REASON_VMWRITE] = handle_vmx_instruction,
5691 [EXIT_REASON_VMOFF] = handle_vmx_instruction,
5692 [EXIT_REASON_VMON] = handle_vmx_instruction,
Sheng Yangf78e0e22007-10-29 09:40:42 +08005693 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
5694 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08005695 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08005696 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02005697 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08005698 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02005699 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08005700 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Paolo Bonzini0367f202016-07-12 10:44:55 +02005701 [EXIT_REASON_GDTR_IDTR] = handle_desc,
5702 [EXIT_REASON_LDTR_TR] = handle_desc,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005703 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
5704 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005705 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005706 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005707 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005708 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005709 [EXIT_REASON_INVEPT] = handle_vmx_instruction,
5710 [EXIT_REASON_INVVPID] = handle_vmx_instruction,
Jim Mattson45ec3682017-08-23 16:32:04 -07005711 [EXIT_REASON_RDRAND] = handle_invalid_op,
Jim Mattson75f4fc82017-08-23 16:32:03 -07005712 [EXIT_REASON_RDSEED] = handle_invalid_op,
Kai Huang843e4332015-01-28 10:54:28 +08005713 [EXIT_REASON_PML_FULL] = handle_pml_full,
Junaid Shahideb4b2482018-06-27 14:59:14 -07005714 [EXIT_REASON_INVPCID] = handle_invpcid,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005715 [EXIT_REASON_VMFUNC] = handle_vmx_instruction,
Yunhong Jiang64672c92016-06-13 14:19:59 -07005716 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Sean Christopherson0b665d32018-08-14 09:33:34 -07005717 [EXIT_REASON_ENCLS] = handle_encls,
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005718 [EXIT_REASON_BUS_LOCK] = handle_bus_lock_vmexit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005719};
5720
5721static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04005722 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005723
Sean Christopherson235ba742020-09-23 13:13:46 -07005724static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2,
5725 u32 *intr_info, u32 *error_code)
Avi Kivity586f9602010-11-18 13:09:54 +02005726{
Sean Christopherson235ba742020-09-23 13:13:46 -07005727 struct vcpu_vmx *vmx = to_vmx(vcpu);
5728
Sean Christopherson5addc232020-04-15 13:34:53 -07005729 *info1 = vmx_get_exit_qual(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08005730 if (!(vmx->exit_reason.failed_vmentry)) {
Sean Christopherson235ba742020-09-23 13:13:46 -07005731 *info2 = vmx->idt_vectoring_info;
5732 *intr_info = vmx_get_intr_info(vcpu);
5733 if (is_exception_with_error_code(*intr_info))
5734 *error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
5735 else
5736 *error_code = 0;
5737 } else {
5738 *info2 = 0;
5739 *intr_info = 0;
5740 *error_code = 0;
5741 }
Avi Kivity586f9602010-11-18 13:09:54 +02005742}
5743
Kai Huanga3eaa862015-11-04 13:46:05 +08005744static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08005745{
Kai Huanga3eaa862015-11-04 13:46:05 +08005746 if (vmx->pml_pg) {
5747 __free_page(vmx->pml_pg);
5748 vmx->pml_pg = NULL;
5749 }
Kai Huang843e4332015-01-28 10:54:28 +08005750}
5751
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005752static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08005753{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005754 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005755 u64 *pml_buf;
5756 u16 pml_idx;
5757
5758 pml_idx = vmcs_read16(GUEST_PML_INDEX);
5759
5760 /* Do nothing if PML buffer is empty */
5761 if (pml_idx == (PML_ENTITY_NUM - 1))
5762 return;
5763
5764 /* PML index always points to next available PML buffer entity */
5765 if (pml_idx >= PML_ENTITY_NUM)
5766 pml_idx = 0;
5767 else
5768 pml_idx++;
5769
5770 pml_buf = page_address(vmx->pml_pg);
5771 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
5772 u64 gpa;
5773
5774 gpa = pml_buf[pml_idx];
5775 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005776 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08005777 }
5778
5779 /* reset PML index */
5780 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5781}
5782
5783/*
5784 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
5785 * Called before reporting dirty_bitmap to userspace.
5786 */
5787static void kvm_flush_pml_buffers(struct kvm *kvm)
5788{
5789 int i;
5790 struct kvm_vcpu *vcpu;
5791 /*
5792 * We only need to kick vcpu out of guest mode here, as PML buffer
5793 * is flushed at beginning of all VMEXITs, and it's obvious that only
5794 * vcpus running in guest are possible to have unflushed GPAs in PML
5795 * buffer.
5796 */
5797 kvm_for_each_vcpu(i, vcpu, kvm)
5798 kvm_vcpu_kick(vcpu);
5799}
5800
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005801static void vmx_dump_sel(char *name, uint32_t sel)
5802{
5803 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05005804 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005805 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
5806 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
5807 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
5808}
5809
5810static void vmx_dump_dtsel(char *name, uint32_t limit)
5811{
5812 pr_err("%s limit=0x%08x, base=0x%016lx\n",
5813 name, vmcs_read32(limit),
5814 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
5815}
5816
Paolo Bonzini69090812019-04-15 15:16:17 +02005817void dump_vmcs(void)
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005818{
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005819 u32 vmentry_ctl, vmexit_ctl;
5820 u32 cpu_based_exec_ctrl, pin_based_exec_ctrl, secondary_exec_control;
5821 unsigned long cr4;
5822 u64 efer;
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005823
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005824 if (!dump_invalid_vmcs) {
5825 pr_warn_ratelimited("set kvm_intel.dump_invalid_vmcs=1 to dump internal KVM state.\n");
5826 return;
5827 }
5828
5829 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
5830 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
5831 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5832 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
5833 cr4 = vmcs_readl(GUEST_CR4);
5834 efer = vmcs_read64(GUEST_IA32_EFER);
5835 secondary_exec_control = 0;
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005836 if (cpu_has_secondary_exec_ctrls())
5837 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
5838
5839 pr_err("*** Guest State ***\n");
5840 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5841 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
5842 vmcs_readl(CR0_GUEST_HOST_MASK));
5843 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5844 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
5845 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
5846 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
5847 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
5848 {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005849 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
5850 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
5851 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
5852 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005853 }
5854 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
5855 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
5856 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
5857 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
5858 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5859 vmcs_readl(GUEST_SYSENTER_ESP),
5860 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
5861 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
5862 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
5863 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
5864 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
5865 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
5866 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
5867 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
5868 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
5869 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
5870 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
5871 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
5872 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005873 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
5874 efer, vmcs_read64(GUEST_IA32_PAT));
5875 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
5876 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005877 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005878 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005879 vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005880 pr_err("PerfGlobCtl = 0x%016llx\n",
5881 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005882 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005883 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005884 pr_err("Interruptibility = %08x ActivityState = %08x\n",
5885 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
5886 vmcs_read32(GUEST_ACTIVITY_STATE));
5887 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
5888 pr_err("InterruptStatus = %04x\n",
5889 vmcs_read16(GUEST_INTR_STATUS));
5890
5891 pr_err("*** Host State ***\n");
5892 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
5893 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
5894 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
5895 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
5896 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
5897 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
5898 vmcs_read16(HOST_TR_SELECTOR));
5899 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
5900 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
5901 vmcs_readl(HOST_TR_BASE));
5902 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
5903 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
5904 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
5905 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
5906 vmcs_readl(HOST_CR4));
5907 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5908 vmcs_readl(HOST_IA32_SYSENTER_ESP),
5909 vmcs_read32(HOST_IA32_SYSENTER_CS),
5910 vmcs_readl(HOST_IA32_SYSENTER_EIP));
5911 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005912 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
5913 vmcs_read64(HOST_IA32_EFER),
5914 vmcs_read64(HOST_IA32_PAT));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005915 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005916 vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005917 pr_err("PerfGlobCtl = 0x%016llx\n",
5918 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005919
5920 pr_err("*** Control State ***\n");
5921 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
5922 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
5923 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
5924 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
5925 vmcs_read32(EXCEPTION_BITMAP),
5926 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
5927 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
5928 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
5929 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
5930 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
5931 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
5932 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
5933 vmcs_read32(VM_EXIT_INTR_INFO),
5934 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
5935 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
5936 pr_err(" reason=%08x qualification=%016lx\n",
5937 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
5938 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
5939 vmcs_read32(IDT_VECTORING_INFO_FIELD),
5940 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005941 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08005942 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005943 pr_err("TSC Multiplier = 0x%016llx\n",
5944 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005945 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW) {
5946 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
5947 u16 status = vmcs_read16(GUEST_INTR_STATUS);
5948 pr_err("SVI|RVI = %02x|%02x ", status >> 8, status & 0xff);
5949 }
Dan Carpenterd6a85c32019-04-24 13:15:08 +03005950 pr_cont("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005951 if (secondary_exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
5952 pr_err("APIC-access addr = 0x%016llx ", vmcs_read64(APIC_ACCESS_ADDR));
Dan Carpenterd6a85c32019-04-24 13:15:08 +03005953 pr_cont("virt-APIC addr = 0x%016llx\n", vmcs_read64(VIRTUAL_APIC_PAGE_ADDR));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005954 }
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005955 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
5956 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
5957 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005958 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005959 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
5960 pr_err("PLE Gap=%08x Window=%08x\n",
5961 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
5962 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
5963 pr_err("Virtual processor ID = 0x%04x\n",
5964 vmcs_read16(VIRTUAL_PROCESSOR_ID));
5965}
5966
Avi Kivity6aa8b732006-12-10 02:21:36 -08005967/*
5968 * The guest has exited. See if we can fix it or if we need userspace
5969 * assistance.
5970 */
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005971static int __vmx_handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005972{
Avi Kivity29bd8a72007-09-10 17:27:03 +03005973 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08005974 union vmx_exit_reason exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02005975 u32 vectoring_info = vmx->idt_vectoring_info;
Sean Christopherson8e533242020-11-06 17:03:12 +08005976 u16 exit_handler_index;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005977
Kai Huang843e4332015-01-28 10:54:28 +08005978 /*
5979 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
5980 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
5981 * querying dirty_bitmap, we only need to kick all vcpus out of guest
5982 * mode as if vcpus is in root mode, the PML buffer must has been
5983 * flushed already.
5984 */
5985 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005986 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005987
Sean Christophersondb438592020-04-22 19:25:48 -07005988 /*
5989 * We should never reach this point with a pending nested VM-Enter, and
5990 * more specifically emulation of L2 due to invalid guest state (see
5991 * below) should never happen as that means we incorrectly allowed a
5992 * nested VM-Enter with an invalid vmcs12.
5993 */
5994 WARN_ON_ONCE(vmx->nested.nested_run_pending);
5995
Mohammed Gamal80ced182009-09-01 12:48:18 +02005996 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02005997 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02005998 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005999
Paolo Bonzini96b100c2020-03-17 18:32:50 +01006000 if (is_guest_mode(vcpu)) {
6001 /*
6002 * The host physical addresses of some pages of guest memory
6003 * are loaded into the vmcs02 (e.g. vmcs12's Virtual APIC
6004 * Page). The CPU may write to these pages via their host
6005 * physical address while L2 is running, bypassing any
6006 * address-translation-based dirty tracking (e.g. EPT write
6007 * protection).
6008 *
6009 * Mark them dirty on every exit from L2 to prevent them from
6010 * getting out of sync with dirty tracking.
6011 */
6012 nested_mark_vmcs12_pages_dirty(vcpu);
6013
Sean Christophersonf47baae2020-04-15 10:55:16 -07006014 if (nested_vmx_reflect_vmexit(vcpu))
Sean Christopherson789afc52020-04-15 10:55:10 -07006015 return 1;
Paolo Bonzini96b100c2020-03-17 18:32:50 +01006016 }
Nadav Har'El644d7112011-05-25 23:12:35 +03006017
Sean Christopherson8e533242020-11-06 17:03:12 +08006018 if (exit_reason.failed_vmentry) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02006019 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03006020 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
6021 vcpu->run->fail_entry.hardware_entry_failure_reason
Sean Christopherson8e533242020-11-06 17:03:12 +08006022 = exit_reason.full;
Jim Mattson8a14fe42020-06-03 16:56:22 -07006023 vcpu->run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Mohammed Gamal51207022010-05-31 22:40:54 +03006024 return 0;
6025 }
6026
Avi Kivity29bd8a72007-09-10 17:27:03 +03006027 if (unlikely(vmx->fail)) {
Paolo Bonzini3b20e032019-07-19 18:15:08 +02006028 dump_vmcs();
Avi Kivity851ba692009-08-24 11:10:17 +03006029 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
6030 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03006031 = vmcs_read32(VM_INSTRUCTION_ERROR);
Jim Mattson8a14fe42020-06-03 16:56:22 -07006032 vcpu->run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Avi Kivity29bd8a72007-09-10 17:27:03 +03006033 return 0;
6034 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006035
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08006036 /*
6037 * Note:
6038 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
6039 * delivery event since it indicates guest is accessing MMIO.
6040 * The vm-exit can be triggered again after return to guest that
6041 * will cause infinite loop.
6042 */
Mike Dayd77c26f2007-10-08 09:02:08 -04006043 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sean Christopherson8e533242020-11-06 17:03:12 +08006044 (exit_reason.basic != EXIT_REASON_EXCEPTION_NMI &&
6045 exit_reason.basic != EXIT_REASON_EPT_VIOLATION &&
6046 exit_reason.basic != EXIT_REASON_PML_FULL &&
6047 exit_reason.basic != EXIT_REASON_APIC_ACCESS &&
6048 exit_reason.basic != EXIT_REASON_TASK_SWITCH)) {
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08006049 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6050 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02006051 vcpu->run->internal.ndata = 3;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08006052 vcpu->run->internal.data[0] = vectoring_info;
Sean Christopherson8e533242020-11-06 17:03:12 +08006053 vcpu->run->internal.data[1] = exit_reason.full;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02006054 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
Sean Christopherson8e533242020-11-06 17:03:12 +08006055 if (exit_reason.basic == EXIT_REASON_EPT_MISCONFIG) {
Paolo Bonzini70bcd702017-07-05 12:38:06 +02006056 vcpu->run->internal.ndata++;
6057 vcpu->run->internal.data[3] =
6058 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
6059 }
Jim Mattson1aa561b2020-06-03 16:56:21 -07006060 vcpu->run->internal.data[vcpu->run->internal.ndata++] =
Jim Mattson8a14fe42020-06-03 16:56:22 -07006061 vcpu->arch.last_vmentry_cpu;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08006062 return 0;
6063 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006064
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006065 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006066 vmx->loaded_vmcs->soft_vnmi_blocked)) {
Sean Christophersondb438592020-04-22 19:25:48 -07006067 if (!vmx_interrupt_blocked(vcpu)) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006068 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
6069 } else if (vmx->loaded_vmcs->vnmi_blocked_time > 1000000000LL &&
6070 vcpu->arch.nmi_pending) {
6071 /*
6072 * This CPU don't support us in finding the end of an
6073 * NMI-blocked window if the guest runs with IRQs
6074 * disabled. So we pull the trigger after 1 s of
6075 * futile waiting, but inform the user about this.
6076 */
6077 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
6078 "state on VCPU %d after 1 s timeout\n",
6079 __func__, vcpu->vcpu_id);
6080 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
6081 }
6082 }
6083
Wanpeng Li404d5d72020-04-28 14:23:25 +08006084 if (exit_fastpath != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08006085 return 1;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006086
Sean Christopherson8e533242020-11-06 17:03:12 +08006087 if (exit_reason.basic >= kvm_vmx_max_exit_handlers)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006088 goto unexpected_vmexit;
6089#ifdef CONFIG_RETPOLINE
Sean Christopherson8e533242020-11-06 17:03:12 +08006090 if (exit_reason.basic == EXIT_REASON_MSR_WRITE)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006091 return kvm_emulate_wrmsr(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006092 else if (exit_reason.basic == EXIT_REASON_PREEMPTION_TIMER)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006093 return handle_preemption_timer(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006094 else if (exit_reason.basic == EXIT_REASON_INTERRUPT_WINDOW)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006095 return handle_interrupt_window(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006096 else if (exit_reason.basic == EXIT_REASON_EXTERNAL_INTERRUPT)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006097 return handle_external_interrupt(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006098 else if (exit_reason.basic == EXIT_REASON_HLT)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006099 return kvm_emulate_halt(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006100 else if (exit_reason.basic == EXIT_REASON_EPT_MISCONFIG)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006101 return handle_ept_misconfig(vcpu);
6102#endif
6103
Sean Christopherson8e533242020-11-06 17:03:12 +08006104 exit_handler_index = array_index_nospec((u16)exit_reason.basic,
6105 kvm_vmx_max_exit_handlers);
6106 if (!kvm_vmx_exit_handlers[exit_handler_index])
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006107 goto unexpected_vmexit;
6108
Sean Christopherson8e533242020-11-06 17:03:12 +08006109 return kvm_vmx_exit_handlers[exit_handler_index](vcpu);
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006110
6111unexpected_vmexit:
Sean Christopherson8e533242020-11-06 17:03:12 +08006112 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
6113 exit_reason.full);
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006114 dump_vmcs();
6115 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6116 vcpu->run->internal.suberror =
6117 KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
Jim Mattson1aa561b2020-06-03 16:56:21 -07006118 vcpu->run->internal.ndata = 2;
Sean Christopherson8e533242020-11-06 17:03:12 +08006119 vcpu->run->internal.data[0] = exit_reason.full;
Jim Mattson8a14fe42020-06-03 16:56:22 -07006120 vcpu->run->internal.data[1] = vcpu->arch.last_vmentry_cpu;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006121 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006122}
6123
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08006124static int vmx_handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
6125{
6126 int ret = __vmx_handle_exit(vcpu, exit_fastpath);
6127
6128 /*
6129 * Even when current exit reason is handled by KVM internally, we
6130 * still need to exit to user space when bus lock detected to inform
6131 * that there is a bus lock in guest.
6132 */
6133 if (to_vmx(vcpu)->exit_reason.bus_lock_detected) {
6134 if (ret > 0)
6135 vcpu->run->exit_reason = KVM_EXIT_X86_BUS_LOCK;
6136
6137 vcpu->run->flags |= KVM_RUN_X86_BUS_LOCK;
6138 return 0;
6139 }
6140 return ret;
6141}
6142
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006143/*
6144 * Software based L1D cache flush which is used when microcode providing
6145 * the cache control MSR is not loaded.
6146 *
6147 * The L1D cache is 32 KiB on Nehalem and later microarchitectures, but to
6148 * flush it is required to read in 64 KiB because the replacement algorithm
6149 * is not exactly LRU. This could be sized at runtime via topology
6150 * information but as all relevant affected CPUs have 32KiB L1D cache size
6151 * there is no point in doing so.
6152 */
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006153static noinstr void vmx_l1d_flush(struct kvm_vcpu *vcpu)
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006154{
6155 int size = PAGE_SIZE << L1D_CACHE_ORDER;
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006156
6157 /*
Thomas Gleixner2f055942018-07-13 16:23:17 +02006158 * This code is only executed when the the flush mode is 'cond' or
6159 * 'always'
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006160 */
Nicolai Stange427362a2018-07-21 22:25:00 +02006161 if (static_branch_likely(&vmx_l1d_flush_cond)) {
Nicolai Stange45b575c2018-07-27 13:22:16 +02006162 bool flush_l1d;
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02006163
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006164 /*
Nicolai Stange45b575c2018-07-27 13:22:16 +02006165 * Clear the per-vcpu flush bit, it gets set again
6166 * either from vcpu_run() or from one of the unsafe
6167 * VMEXIT handlers.
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006168 */
Nicolai Stange45b575c2018-07-27 13:22:16 +02006169 flush_l1d = vcpu->arch.l1tf_flush_l1d;
Thomas Gleixner4c6523e2018-07-13 16:23:20 +02006170 vcpu->arch.l1tf_flush_l1d = false;
Nicolai Stange45b575c2018-07-27 13:22:16 +02006171
6172 /*
6173 * Clear the per-cpu flush bit, it gets set again from
6174 * the interrupt handlers.
6175 */
6176 flush_l1d |= kvm_get_cpu_l1tf_flush_l1d();
6177 kvm_clear_cpu_l1tf_flush_l1d();
6178
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02006179 if (!flush_l1d)
6180 return;
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006181 }
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006182
6183 vcpu->stat.l1d_flush++;
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006184
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02006185 if (static_cpu_has(X86_FEATURE_FLUSH_L1D)) {
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006186 native_wrmsrl(MSR_IA32_FLUSH_CMD, L1D_FLUSH);
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02006187 return;
6188 }
6189
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006190 asm volatile(
6191 /* First ensure the pages are in the TLB */
6192 "xorl %%eax, %%eax\n"
6193 ".Lpopulate_tlb:\n\t"
Nicolai Stange288d1522018-07-18 19:07:38 +02006194 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006195 "addl $4096, %%eax\n\t"
6196 "cmpl %%eax, %[size]\n\t"
6197 "jne .Lpopulate_tlb\n\t"
6198 "xorl %%eax, %%eax\n\t"
6199 "cpuid\n\t"
6200 /* Now fill the cache */
6201 "xorl %%eax, %%eax\n"
6202 ".Lfill_cache:\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02006203 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006204 "addl $64, %%eax\n\t"
6205 "cmpl %%eax, %[size]\n\t"
6206 "jne .Lfill_cache\n\t"
6207 "lfence\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02006208 :: [flush_pages] "r" (vmx_l1d_flush_pages),
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006209 [size] "r" (size)
6210 : "eax", "ebx", "ecx", "edx");
6211}
6212
Jason Baronb6a7cc32021-01-14 22:27:54 -05006213static void vmx_update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006214{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006215 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Liran Alon132f4f72019-11-11 14:30:54 +02006216 int tpr_threshold;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006217
6218 if (is_guest_mode(vcpu) &&
6219 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
6220 return;
6221
Liran Alon132f4f72019-11-11 14:30:54 +02006222 tpr_threshold = (irr == -1 || tpr < irr) ? 0 : irr;
Liran Alon02d496cf2019-11-11 14:30:55 +02006223 if (is_guest_mode(vcpu))
6224 to_vmx(vcpu)->nested.l1_tpr_threshold = tpr_threshold;
6225 else
6226 vmcs_write32(TPR_THRESHOLD, tpr_threshold);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006227}
6228
Sean Christopherson97b7ead2018-12-03 13:53:16 -08006229void vmx_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08006230{
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006231 struct vcpu_vmx *vmx = to_vmx(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08006232 u32 sec_exec_control;
6233
Jim Mattson8d860bb2018-05-09 16:56:05 -04006234 if (!lapic_in_kernel(vcpu))
6235 return;
6236
Sean Christophersonfd6b6d92018-10-01 14:25:34 -07006237 if (!flexpriority_enabled &&
6238 !cpu_has_vmx_virtualize_x2apic_mode())
6239 return;
6240
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02006241 /* Postpone execution until vmcs01 is the current VMCS. */
6242 if (is_guest_mode(vcpu)) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006243 vmx->nested.change_vmcs01_virtual_apic_mode = true;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02006244 return;
6245 }
6246
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006247 sec_exec_control = secondary_exec_controls_get(vmx);
Jim Mattson8d860bb2018-05-09 16:56:05 -04006248 sec_exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
6249 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
Yang Zhang8d146952013-01-25 10:18:50 +08006250
Jim Mattson8d860bb2018-05-09 16:56:05 -04006251 switch (kvm_get_apic_mode(vcpu)) {
6252 case LAPIC_MODE_INVALID:
6253 WARN_ONCE(true, "Invalid local APIC state");
6254 case LAPIC_MODE_DISABLED:
6255 break;
6256 case LAPIC_MODE_XAPIC:
6257 if (flexpriority_enabled) {
6258 sec_exec_control |=
6259 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sean Christopherson4de1f9d2020-03-20 14:28:25 -07006260 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
6261
6262 /*
6263 * Flush the TLB, reloading the APIC access page will
6264 * only do so if its physical address has changed, but
6265 * the guest may have inserted a non-APIC mapping into
6266 * the TLB while the APIC access page was disabled.
6267 */
6268 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
Jim Mattson8d860bb2018-05-09 16:56:05 -04006269 }
6270 break;
6271 case LAPIC_MODE_X2APIC:
6272 if (cpu_has_vmx_virtualize_x2apic_mode())
6273 sec_exec_control |=
6274 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
6275 break;
Yang Zhang8d146952013-01-25 10:18:50 +08006276 }
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006277 secondary_exec_controls_set(vmx, sec_exec_control);
Yang Zhang8d146952013-01-25 10:18:50 +08006278
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006279 vmx_update_msr_bitmap(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08006280}
6281
Sean Christophersona4148b72020-03-20 14:28:24 -07006282static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu)
Tang Chen38b99172014-09-24 15:57:54 +08006283{
Sean Christophersona4148b72020-03-20 14:28:24 -07006284 struct page *page;
6285
Sean Christopherson1196cb92020-03-20 14:28:23 -07006286 /* Defer reload until vmcs01 is the current VMCS. */
6287 if (is_guest_mode(vcpu)) {
6288 to_vmx(vcpu)->nested.reload_vmcs01_apic_access_page = true;
6289 return;
Jim Mattsonfb6c8192017-03-16 13:53:59 -07006290 }
Sean Christopherson1196cb92020-03-20 14:28:23 -07006291
Sean Christopherson4de1f9d2020-03-20 14:28:25 -07006292 if (!(secondary_exec_controls_get(to_vmx(vcpu)) &
6293 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
6294 return;
6295
Sean Christophersona4148b72020-03-20 14:28:24 -07006296 page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
6297 if (is_error_page(page))
6298 return;
6299
6300 vmcs_write64(APIC_ACCESS_ADDR, page_to_phys(page));
Sean Christopherson1196cb92020-03-20 14:28:23 -07006301 vmx_flush_tlb_current(vcpu);
Sean Christophersona4148b72020-03-20 14:28:24 -07006302
6303 /*
6304 * Do not pin apic access page in memory, the MMU notifier
6305 * will call us again if it is migrated or swapped out.
6306 */
6307 put_page(page);
Tang Chen38b99172014-09-24 15:57:54 +08006308}
6309
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006310static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006311{
6312 u16 status;
6313 u8 old;
6314
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006315 if (max_isr == -1)
6316 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006317
6318 status = vmcs_read16(GUEST_INTR_STATUS);
6319 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006320 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08006321 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006322 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006323 vmcs_write16(GUEST_INTR_STATUS, status);
6324 }
6325}
6326
6327static void vmx_set_rvi(int vector)
6328{
6329 u16 status;
6330 u8 old;
6331
Wei Wang4114c272014-11-05 10:53:43 +08006332 if (vector == -1)
6333 vector = 0;
6334
Yang Zhangc7c9c562013-01-25 10:18:51 +08006335 status = vmcs_read16(GUEST_INTR_STATUS);
6336 old = (u8)status & 0xff;
6337 if ((u8)vector != old) {
6338 status &= ~0xff;
6339 status |= (u8)vector;
6340 vmcs_write16(GUEST_INTR_STATUS, status);
6341 }
6342}
6343
6344static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
6345{
Liran Alon851c1a182017-12-24 18:12:56 +02006346 /*
6347 * When running L2, updating RVI is only relevant when
6348 * vmcs12 virtual-interrupt-delivery enabled.
6349 * However, it can be enabled only when L1 also
6350 * intercepts external-interrupts and in that case
6351 * we should not update vmcs02 RVI but instead intercept
6352 * interrupt. Therefore, do nothing when running L2.
6353 */
6354 if (!is_guest_mode(vcpu))
Wanpeng Li963fee12014-07-17 19:03:00 +08006355 vmx_set_rvi(max_irr);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006356}
6357
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006358static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006359{
6360 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006361 int max_irr;
Liran Alonf27a85c2017-12-24 18:12:55 +02006362 bool max_irr_updated;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006363
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006364 WARN_ON(!vcpu->arch.apicv_active);
6365 if (pi_test_on(&vmx->pi_desc)) {
6366 pi_clear_on(&vmx->pi_desc);
6367 /*
Liran Alond9ff2742019-11-11 14:25:25 +02006368 * IOMMU can write to PID.ON, so the barrier matters even on UP.
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006369 * But on x86 this is just a compiler barrier anyway.
6370 */
6371 smp_mb__after_atomic();
Liran Alonf27a85c2017-12-24 18:12:55 +02006372 max_irr_updated =
6373 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir, &max_irr);
6374
6375 /*
6376 * If we are running L2 and L1 has a new pending interrupt
6377 * which can be injected, we should re-evaluate
6378 * what should be done with this new L1 interrupt.
Liran Alon851c1a182017-12-24 18:12:56 +02006379 * If L1 intercepts external-interrupts, we should
6380 * exit from L2 to L1. Otherwise, interrupt should be
6381 * delivered directly to L2.
Liran Alonf27a85c2017-12-24 18:12:55 +02006382 */
Liran Alon851c1a182017-12-24 18:12:56 +02006383 if (is_guest_mode(vcpu) && max_irr_updated) {
6384 if (nested_exit_on_intr(vcpu))
6385 kvm_vcpu_exiting_guest_mode(vcpu);
6386 else
6387 kvm_make_request(KVM_REQ_EVENT, vcpu);
6388 }
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006389 } else {
6390 max_irr = kvm_lapic_find_highest_irr(vcpu);
6391 }
6392 vmx_hwapic_irr_update(vcpu, max_irr);
6393 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006394}
6395
Andrey Smetanin63086302015-11-10 15:36:32 +03006396static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006397{
Andrey Smetanind62caab2015-11-10 15:36:33 +03006398 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08006399 return;
6400
Yang Zhangc7c9c562013-01-25 10:18:51 +08006401 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
6402 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
6403 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
6404 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
6405}
6406
Paolo Bonzini967235d2016-12-19 14:03:45 +01006407static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
6408{
6409 struct vcpu_vmx *vmx = to_vmx(vcpu);
6410
6411 pi_clear_on(&vmx->pi_desc);
6412 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
6413}
6414
Sean Christopherson535f7ef2020-09-15 12:15:04 -07006415void vmx_do_interrupt_nmi_irqoff(unsigned long entry);
6416
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006417static void handle_interrupt_nmi_irqoff(struct kvm_vcpu *vcpu, u32 intr_info)
6418{
6419 unsigned int vector = intr_info & INTR_INFO_VECTOR_MASK;
6420 gate_desc *desc = (gate_desc *)host_idt_base + vector;
6421
6422 kvm_before_interrupt(vcpu);
6423 vmx_do_interrupt_nmi_irqoff(gate_offset(desc));
6424 kvm_after_interrupt(vcpu);
6425}
6426
Sean Christopherson95b5a482019-04-19 22:50:59 -07006427static void handle_exception_nmi_irqoff(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03006428{
Sean Christopherson87915852020-04-15 13:34:54 -07006429 u32 intr_info = vmx_get_intr_info(&vmx->vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08006430
Wanpeng Li1261bfa2017-07-13 18:30:40 -07006431 /* if exit due to PF check for async PF */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006432 if (is_page_fault(intr_info))
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02006433 vmx->vcpu.arch.apf.host_apf_flags = kvm_read_and_reset_apf_flags();
Andi Kleena0861c02009-06-08 17:37:09 +08006434 /* Handle machine checks before interrupts are enabled */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006435 else if (is_machine_check(intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08006436 kvm_machine_check();
Gleb Natapov20f65982009-05-11 13:35:55 +03006437 /* We need to handle NMIs before interrupts are enabled */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006438 else if (is_nmi(intr_info))
6439 handle_interrupt_nmi_irqoff(&vmx->vcpu, intr_info);
Avi Kivity51aa01d2010-07-20 14:31:20 +03006440}
Gleb Natapov20f65982009-05-11 13:35:55 +03006441
Sean Christopherson95b5a482019-04-19 22:50:59 -07006442static void handle_external_interrupt_irqoff(struct kvm_vcpu *vcpu)
Yang Zhanga547c6d2013-04-11 19:25:10 +08006443{
Sean Christopherson87915852020-04-15 13:34:54 -07006444 u32 intr_info = vmx_get_intr_info(vcpu);
Yang Zhanga547c6d2013-04-11 19:25:10 +08006445
Sean Christopherson49def502019-04-19 22:50:56 -07006446 if (WARN_ONCE(!is_external_intr(intr_info),
6447 "KVM: unexpected VM-Exit interrupt info: 0x%x", intr_info))
6448 return;
6449
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006450 handle_interrupt_nmi_irqoff(vcpu, intr_info);
Yang Zhanga547c6d2013-04-11 19:25:10 +08006451}
Sean Christopherson95b5a482019-04-19 22:50:59 -07006452
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006453static void vmx_handle_exit_irqoff(struct kvm_vcpu *vcpu)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006454{
6455 struct vcpu_vmx *vmx = to_vmx(vcpu);
6456
Sean Christopherson8e533242020-11-06 17:03:12 +08006457 if (vmx->exit_reason.basic == EXIT_REASON_EXTERNAL_INTERRUPT)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006458 handle_external_interrupt_irqoff(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006459 else if (vmx->exit_reason.basic == EXIT_REASON_EXCEPTION_NMI)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006460 handle_exception_nmi_irqoff(vmx);
6461}
Yang Zhanga547c6d2013-04-11 19:25:10 +08006462
Tom Lendacky57194552020-12-10 11:10:00 -06006463/*
6464 * The kvm parameter can be NULL (module initialization, or invocation before
6465 * VM creation). Be sure to check the kvm parameter before using it.
6466 */
6467static bool vmx_has_emulated_msr(struct kvm *kvm, u32 index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006468{
Tom Lendackybc226f02018-05-10 22:06:39 +02006469 switch (index) {
6470 case MSR_IA32_SMBASE:
6471 /*
6472 * We cannot do SMM unless we can run the guest in big
6473 * real mode.
6474 */
6475 return enable_unrestricted_guest || emulate_invalid_guest_state;
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02006476 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
6477 return nested;
Tom Lendackybc226f02018-05-10 22:06:39 +02006478 case MSR_AMD64_VIRT_SPEC_CTRL:
6479 /* This is AMD only. */
6480 return false;
6481 default:
6482 return true;
6483 }
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006484}
6485
Avi Kivity51aa01d2010-07-20 14:31:20 +03006486static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
6487{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02006488 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03006489 bool unblock_nmi;
6490 u8 vector;
6491 bool idtv_info_valid;
6492
6493 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03006494
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006495 if (enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006496 if (vmx->loaded_vmcs->nmi_known_unmasked)
6497 return;
Sean Christopherson87915852020-04-15 13:34:54 -07006498
6499 exit_intr_info = vmx_get_intr_info(&vmx->vcpu);
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006500 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
6501 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
6502 /*
6503 * SDM 3: 27.7.1.2 (September 2008)
6504 * Re-set bit "block by NMI" before VM entry if vmexit caused by
6505 * a guest IRET fault.
6506 * SDM 3: 23.2.2 (September 2008)
6507 * Bit 12 is undefined in any of the following cases:
6508 * If the VM exit sets the valid bit in the IDT-vectoring
6509 * information field.
6510 * If the VM exit is due to a double fault.
6511 */
6512 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
6513 vector != DF_VECTOR && !idtv_info_valid)
6514 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
6515 GUEST_INTR_STATE_NMI);
6516 else
6517 vmx->loaded_vmcs->nmi_known_unmasked =
6518 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
6519 & GUEST_INTR_STATE_NMI);
6520 } else if (unlikely(vmx->loaded_vmcs->soft_vnmi_blocked))
6521 vmx->loaded_vmcs->vnmi_blocked_time +=
6522 ktime_to_ns(ktime_sub(ktime_get(),
6523 vmx->loaded_vmcs->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03006524}
6525
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006526static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03006527 u32 idt_vectoring_info,
6528 int instr_len_field,
6529 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03006530{
Avi Kivity51aa01d2010-07-20 14:31:20 +03006531 u8 vector;
6532 int type;
6533 bool idtv_info_valid;
6534
6535 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03006536
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006537 vcpu->arch.nmi_injected = false;
6538 kvm_clear_exception_queue(vcpu);
6539 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006540
6541 if (!idtv_info_valid)
6542 return;
6543
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006544 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03006545
Avi Kivity668f6122008-07-02 09:28:55 +03006546 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
6547 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006548
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006549 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03006550 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006551 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03006552 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03006553 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03006554 * Clear bit "block by NMI" before VM entry if a NMI
6555 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03006556 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006557 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006558 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006559 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006560 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05006561 fallthrough;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006562 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03006563 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03006564 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03006565 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03006566 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03006567 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006568 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006569 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006570 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05006571 fallthrough;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006572 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006573 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006574 break;
6575 default:
6576 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03006577 }
Avi Kivitycf393f72008-07-01 16:20:21 +03006578}
6579
Avi Kivity83422e12010-07-20 14:43:23 +03006580static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
6581{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006582 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03006583 VM_EXIT_INSTRUCTION_LEN,
6584 IDT_VECTORING_ERROR_CODE);
6585}
6586
Avi Kivityb463a6f2010-07-20 15:06:17 +03006587static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
6588{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006589 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03006590 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
6591 VM_ENTRY_INSTRUCTION_LEN,
6592 VM_ENTRY_EXCEPTION_ERROR_CODE);
6593
6594 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
6595}
6596
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006597static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
6598{
6599 int i, nr_msrs;
6600 struct perf_guest_switch_msr *msrs;
6601
6602 msrs = perf_guest_get_msrs(&nr_msrs);
6603
6604 if (!msrs)
6605 return;
6606
6607 for (i = 0; i < nr_msrs; i++)
6608 if (msrs[i].host == msrs[i].guest)
6609 clear_atomic_switch_msr(vmx, msrs[i].msr);
6610 else
6611 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04006612 msrs[i].host, false);
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006613}
6614
Sean Christophersonf459a702018-08-27 15:21:11 -07006615static void vmx_update_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07006616{
6617 struct vcpu_vmx *vmx = to_vmx(vcpu);
6618 u64 tscl;
6619 u32 delta_tsc;
6620
Sean Christophersond264ee02018-08-27 15:21:12 -07006621 if (vmx->req_immediate_exit) {
Sean Christopherson804939e2019-05-07 12:18:05 -07006622 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, 0);
6623 vmx->loaded_vmcs->hv_timer_soft_disabled = false;
6624 } else if (vmx->hv_deadline_tsc != -1) {
Sean Christophersonf459a702018-08-27 15:21:11 -07006625 tscl = rdtsc();
6626 if (vmx->hv_deadline_tsc > tscl)
6627 /* set_hv_timer ensures the delta fits in 32-bits */
6628 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
6629 cpu_preemption_timer_multi);
6630 else
6631 delta_tsc = 0;
6632
Sean Christopherson804939e2019-05-07 12:18:05 -07006633 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
6634 vmx->loaded_vmcs->hv_timer_soft_disabled = false;
6635 } else if (!vmx->loaded_vmcs->hv_timer_soft_disabled) {
6636 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, -1);
6637 vmx->loaded_vmcs->hv_timer_soft_disabled = true;
Sean Christophersonf459a702018-08-27 15:21:11 -07006638 }
Yunhong Jiang64672c92016-06-13 14:19:59 -07006639}
6640
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006641void noinstr vmx_update_host_rsp(struct vcpu_vmx *vmx, unsigned long host_rsp)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006642{
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006643 if (unlikely(host_rsp != vmx->loaded_vmcs->host_state.rsp)) {
6644 vmx->loaded_vmcs->host_state.rsp = host_rsp;
6645 vmcs_writel(HOST_RSP, host_rsp);
6646 }
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006647}
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006648
Wanpeng Li404d5d72020-04-28 14:23:25 +08006649static fastpath_t vmx_exit_handlers_fastpath(struct kvm_vcpu *vcpu)
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006650{
Sean Christopherson8e533242020-11-06 17:03:12 +08006651 switch (to_vmx(vcpu)->exit_reason.basic) {
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006652 case EXIT_REASON_MSR_WRITE:
6653 return handle_fastpath_set_msr_irqoff(vcpu);
Wanpeng Li26efe2f2020-05-06 11:44:01 -04006654 case EXIT_REASON_PREEMPTION_TIMER:
6655 return handle_fastpath_preemption_timer(vcpu);
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006656 default:
6657 return EXIT_FASTPATH_NONE;
6658 }
6659}
6660
Sean Christophersonfc2ba5a2019-01-25 07:41:19 -08006661bool __vmx_vcpu_run(struct vcpu_vmx *vmx, unsigned long *regs, bool launched);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006662
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006663static noinstr void vmx_vcpu_enter_exit(struct kvm_vcpu *vcpu,
6664 struct vcpu_vmx *vmx)
6665{
6666 /*
6667 * VMENTER enables interrupts (host state), but the kernel state is
6668 * interrupts disabled when this is invoked. Also tell RCU about
6669 * it. This is the same logic as for exit_to_user_mode().
6670 *
6671 * This ensures that e.g. latency analysis on the host observes
6672 * guest mode as interrupt enabled.
6673 *
6674 * guest_enter_irqoff() informs context tracking about the
6675 * transition to guest mode and if enabled adjusts RCU state
6676 * accordingly.
6677 */
6678 instrumentation_begin();
6679 trace_hardirqs_on_prepare();
6680 lockdep_hardirqs_on_prepare(CALLER_ADDR0);
6681 instrumentation_end();
6682
6683 guest_enter_irqoff();
6684 lockdep_hardirqs_on(CALLER_ADDR0);
6685
6686 /* L1D Flush includes CPU buffer clear to mitigate MDS */
6687 if (static_branch_unlikely(&vmx_l1d_should_flush))
6688 vmx_l1d_flush(vcpu);
6689 else if (static_branch_unlikely(&mds_user_clear))
6690 mds_clear_cpu_buffers();
6691
Thomas Gleixner2245d392020-07-08 21:52:00 +02006692 if (vcpu->arch.cr2 != native_read_cr2())
6693 native_write_cr2(vcpu->arch.cr2);
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006694
6695 vmx->fail = __vmx_vcpu_run(vmx, (unsigned long *)&vcpu->arch.regs,
6696 vmx->loaded_vmcs->launched);
6697
Thomas Gleixner2245d392020-07-08 21:52:00 +02006698 vcpu->arch.cr2 = native_read_cr2();
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006699
6700 /*
6701 * VMEXIT disables interrupts (host state), but tracing and lockdep
6702 * have them in state 'on' as recorded before entering guest mode.
6703 * Same as enter_from_user_mode().
6704 *
6705 * guest_exit_irqoff() restores host context and reinstates RCU if
6706 * enabled and required.
6707 *
6708 * This needs to be done before the below as native_read_msr()
6709 * contains a tracepoint and x86_spec_ctrl_restore_host() calls
6710 * into world and some more.
6711 */
6712 lockdep_hardirqs_off(CALLER_ADDR0);
6713 guest_exit_irqoff();
6714
6715 instrumentation_begin();
6716 trace_hardirqs_off_finish();
6717 instrumentation_end();
6718}
6719
Wanpeng Li404d5d72020-04-28 14:23:25 +08006720static fastpath_t vmx_vcpu_run(struct kvm_vcpu *vcpu)
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006721{
Wanpeng Li404d5d72020-04-28 14:23:25 +08006722 fastpath_t exit_fastpath;
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006723 struct vcpu_vmx *vmx = to_vmx(vcpu);
6724 unsigned long cr3, cr4;
6725
Wanpeng Li404d5d72020-04-28 14:23:25 +08006726reenter_guest:
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006727 /* Record the guest's net vcpu time for enforced NMI injections. */
6728 if (unlikely(!enable_vnmi &&
6729 vmx->loaded_vmcs->soft_vnmi_blocked))
6730 vmx->loaded_vmcs->entry_time = ktime_get();
6731
6732 /* Don't enter VMX if guest state is invalid, let the exit handler
6733 start emulation until we arrive back to a valid state */
6734 if (vmx->emulation_required)
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006735 return EXIT_FASTPATH_NONE;
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006736
Lorenzo Bresciad95df952020-12-23 14:45:07 +00006737 trace_kvm_entry(vcpu);
6738
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006739 if (vmx->ple_window_dirty) {
6740 vmx->ple_window_dirty = false;
6741 vmcs_write32(PLE_WINDOW, vmx->ple_window);
6742 }
6743
wanpeng lic9dfd3f2020-02-17 18:37:43 +08006744 /*
6745 * We did this in prepare_switch_to_guest, because it needs to
6746 * be within srcu_read_lock.
6747 */
6748 WARN_ON_ONCE(vmx->nested.need_vmcs12_to_shadow_sync);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006749
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07006750 if (kvm_register_is_dirty(vcpu, VCPU_REGS_RSP))
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006751 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07006752 if (kvm_register_is_dirty(vcpu, VCPU_REGS_RIP))
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006753 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
6754
6755 cr3 = __get_current_cr3_fast();
6756 if (unlikely(cr3 != vmx->loaded_vmcs->host_state.cr3)) {
6757 vmcs_writel(HOST_CR3, cr3);
6758 vmx->loaded_vmcs->host_state.cr3 = cr3;
6759 }
6760
6761 cr4 = cr4_read_shadow();
6762 if (unlikely(cr4 != vmx->loaded_vmcs->host_state.cr4)) {
6763 vmcs_writel(HOST_CR4, cr4);
6764 vmx->loaded_vmcs->host_state.cr4 = cr4;
6765 }
6766
6767 /* When single-stepping over STI and MOV SS, we must clear the
6768 * corresponding interruptibility bits in the guest state. Otherwise
6769 * vmentry fails as it then expects bit 14 (BS) in pending debug
6770 * exceptions being set, but that's not correct for the guest debugging
6771 * case. */
6772 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
6773 vmx_set_interrupt_shadow(vcpu, 0);
6774
Aaron Lewis139a12c2019-10-21 16:30:25 -07006775 kvm_load_guest_xsave_state(vcpu);
WANG Chao1811d972019-04-12 15:55:39 +08006776
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006777 pt_guest_enter(vmx);
6778
Vitaly Kuznetsov49097762020-06-19 11:40:46 +02006779 atomic_switch_perf_msrs(vmx);
Like Xu1b5ac3222021-02-01 13:10:34 +08006780 if (intel_pmu_lbr_is_enabled(vcpu))
6781 vmx_passthrough_lbr_msrs(vcpu);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006782
Sean Christopherson804939e2019-05-07 12:18:05 -07006783 if (enable_preemption_timer)
6784 vmx_update_hv_timer(vcpu);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006785
Wanpeng Li010fd372020-09-10 17:50:41 +08006786 kvm_wait_lapic_expire(vcpu);
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08006787
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006788 /*
6789 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
6790 * it's non-zero. Since vmentry is serialising on affected CPUs, there
6791 * is no need to worry about the conditional branch over the wrmsr
6792 * being speculatively taken.
6793 */
6794 x86_spec_ctrl_set_guest(vmx->spec_ctrl, 0);
6795
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006796 /* The actual VMENTER/EXIT is in the .noinstr.text section. */
6797 vmx_vcpu_enter_exit(vcpu, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006798
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006799 /*
6800 * We do not use IBRS in the kernel. If this vCPU has used the
6801 * SPEC_CTRL MSR it may have left it on; save the value and
6802 * turn it off. This is much more efficient than blindly adding
6803 * it to the atomic save/restore list. Especially as the former
6804 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
6805 *
6806 * For non-nested case:
6807 * If the L01 MSR bitmap does not intercept the MSR, then we need to
6808 * save it.
6809 *
6810 * For nested case:
6811 * If the L02 MSR bitmap does not intercept the MSR, then we need to
6812 * save it.
6813 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01006814 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01006815 vmx->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006816
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02006817 x86_spec_ctrl_restore_host(vmx->spec_ctrl, 0);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006818
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01006819 /* All fields are clean at this point */
6820 if (static_branch_unlikely(&enable_evmcs))
6821 current_evmcs->hv_clean_fields |=
6822 HV_VMX_ENLIGHTENED_CLEAN_FIELD_ALL;
6823
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08006824 if (static_branch_unlikely(&enable_evmcs))
6825 current_evmcs->hv_vp_id = vcpu->arch.hyperv.vp_index;
6826
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006827 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
Wanpeng Li74c55932017-11-29 01:31:20 -08006828 if (vmx->host_debugctlmsr)
6829 update_debugctlmsr(vmx->host_debugctlmsr);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006830
Avi Kivityaa67f602012-08-01 16:48:03 +03006831#ifndef CONFIG_X86_64
6832 /*
6833 * The sysexit path does not restore ds/es, so we must set them to
6834 * a reasonable value ourselves.
6835 *
Sean Christopherson6d6095b2018-07-23 12:32:44 -07006836 * We can't defer this to vmx_prepare_switch_to_host() since that
6837 * function may be executed in interrupt context, which saves and
6838 * restore segments around it, nullifying its effect.
Avi Kivityaa67f602012-08-01 16:48:03 +03006839 */
6840 loadsegment(ds, __USER_DS);
6841 loadsegment(es, __USER_DS);
6842#endif
6843
Sean Christophersone5d03de2020-04-15 13:34:51 -07006844 vmx_register_cache_reset(vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006845
Chao Peng2ef444f2018-10-24 16:05:12 +08006846 pt_guest_exit(vmx);
6847
Aaron Lewis139a12c2019-10-21 16:30:25 -07006848 kvm_load_host_xsave_state(vcpu);
WANG Chao1811d972019-04-12 15:55:39 +08006849
Gleb Natapove0b890d2013-09-25 12:51:33 +03006850 vmx->nested.nested_run_pending = 0;
Jim Mattsonb060ca32017-09-14 16:31:42 -07006851 vmx->idt_vectoring_info = 0;
6852
Sean Christopherson873e1da2020-04-10 10:47:02 -07006853 if (unlikely(vmx->fail)) {
Sean Christopherson8e533242020-11-06 17:03:12 +08006854 vmx->exit_reason.full = 0xdead;
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006855 return EXIT_FASTPATH_NONE;
Sean Christopherson873e1da2020-04-10 10:47:02 -07006856 }
6857
Sean Christopherson8e533242020-11-06 17:03:12 +08006858 vmx->exit_reason.full = vmcs_read32(VM_EXIT_REASON);
6859 if (unlikely((u16)vmx->exit_reason.basic == EXIT_REASON_MCE_DURING_VMENTRY))
Sean Christophersonbeb8d932019-04-19 22:50:55 -07006860 kvm_machine_check();
6861
Sean Christopherson8e533242020-11-06 17:03:12 +08006862 trace_kvm_exit(vmx->exit_reason.full, vcpu, KVM_ISA_VMX);
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006863
Sean Christopherson8e533242020-11-06 17:03:12 +08006864 if (unlikely(vmx->exit_reason.failed_vmentry))
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006865 return EXIT_FASTPATH_NONE;
6866
Jim Mattsonb060ca32017-09-14 16:31:42 -07006867 vmx->loaded_vmcs->launched = 1;
6868 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Gleb Natapove0b890d2013-09-25 12:51:33 +03006869
Avi Kivity51aa01d2010-07-20 14:31:20 +03006870 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03006871 vmx_complete_interrupts(vmx);
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006872
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006873 if (is_guest_mode(vcpu))
6874 return EXIT_FASTPATH_NONE;
6875
6876 exit_fastpath = vmx_exit_handlers_fastpath(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08006877 if (exit_fastpath == EXIT_FASTPATH_REENTER_GUEST) {
6878 if (!kvm_vcpu_exit_request(vcpu)) {
6879 /*
6880 * FIXME: this goto should be a loop in vcpu_enter_guest,
6881 * but it would incur the cost of a retpoline for now.
6882 * Revisit once static calls are available.
6883 */
Wanpeng Li379a3c82020-04-28 14:23:27 +08006884 if (vcpu->arch.apicv_active)
6885 vmx_sync_pir_to_irr(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08006886 goto reenter_guest;
6887 }
6888 exit_fastpath = EXIT_FASTPATH_EXIT_HANDLED;
6889 }
6890
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006891 return exit_fastpath;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006892}
6893
Avi Kivity6aa8b732006-12-10 02:21:36 -08006894static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
6895{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006896 struct vcpu_vmx *vmx = to_vmx(vcpu);
6897
Kai Huang843e4332015-01-28 10:54:28 +08006898 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08006899 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08006900 free_vpid(vmx->vpid);
Sean Christopherson55d23752018-12-03 13:53:18 -08006901 nested_vmx_free_vcpu(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006902 free_loaded_vmcs(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006903}
6904
Sean Christopherson987b2592019-12-18 13:54:55 -08006905static int vmx_create_vcpu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006906{
Ben Gardon41836832019-02-11 11:02:52 -08006907 struct vcpu_vmx *vmx;
Sean Christopherson34109c02019-12-18 13:54:50 -08006908 int i, cpu, err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006909
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006910 BUILD_BUG_ON(offsetof(struct vcpu_vmx, vcpu) != 0);
6911 vmx = to_vmx(vcpu);
Ingo Molnar965b58a2007-01-05 16:36:23 -08006912
Peter Feiner4e595162016-07-07 14:49:58 -07006913 err = -ENOMEM;
6914
Sean Christopherson034d8e22019-12-18 13:54:49 -08006915 vmx->vpid = allocate_vpid();
6916
Peter Feiner4e595162016-07-07 14:49:58 -07006917 /*
6918 * If PML is turned on, failure on enabling PML just results in failure
6919 * of creating the vcpu, therefore we can simplify PML logic (by
6920 * avoiding dealing with cases, such as enabling PML partially on vcpus
Miaohe Lin67b0ae42019-12-11 14:26:22 +08006921 * for the guest), etc.
Peter Feiner4e595162016-07-07 14:49:58 -07006922 */
6923 if (enable_pml) {
Ben Gardon41836832019-02-11 11:02:52 -08006924 vmx->pml_pg = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Peter Feiner4e595162016-07-07 14:49:58 -07006925 if (!vmx->pml_pg)
Sean Christopherson987b2592019-12-18 13:54:55 -08006926 goto free_vpid;
Peter Feiner4e595162016-07-07 14:49:58 -07006927 }
6928
Sean Christopherson14a61b62020-09-23 11:04:08 -07006929 BUILD_BUG_ON(ARRAY_SIZE(vmx_uret_msrs_list) != MAX_NR_USER_RETURN_MSRS);
Ingo Molnar965b58a2007-01-05 16:36:23 -08006930
Sean Christopherson14a61b62020-09-23 11:04:08 -07006931 for (i = 0; i < ARRAY_SIZE(vmx_uret_msrs_list); ++i) {
6932 u32 index = vmx_uret_msrs_list[i];
Xiaoyao Li4be53412019-10-20 17:11:00 +08006933 u32 data_low, data_high;
Sean Christophersonfbc18002020-09-23 11:03:59 -07006934 int j = vmx->nr_uret_msrs;
Xiaoyao Li4be53412019-10-20 17:11:00 +08006935
6936 if (rdmsr_safe(index, &data_low, &data_high) < 0)
6937 continue;
6938 if (wrmsr_safe(index, data_low, data_high) < 0)
6939 continue;
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006940
Sean Christopherson802145c2020-09-23 11:04:09 -07006941 vmx->guest_uret_msrs[j].slot = i;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07006942 vmx->guest_uret_msrs[j].data = 0;
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006943 switch (index) {
6944 case MSR_IA32_TSX_CTRL:
6945 /*
Paolo Bonzini71316362021-01-28 11:45:00 -05006946 * TSX_CTRL_CPUID_CLEAR is handled in the CPUID
6947 * interception. Keep the host value unchanged to avoid
6948 * changing CPUID bits under the host kernel's feet.
6949 *
6950 * hle=0, rtm=0, tsx_ctrl=1 can be found with some
6951 * combinations of new kernel and old userspace. If
6952 * those guests run on a tsx=off host, do allow guests
6953 * to use TSX_CTRL, but do not change the value on the
6954 * host so that TSX remains always disabled.
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006955 */
Paolo Bonzini71316362021-01-28 11:45:00 -05006956 if (boot_cpu_has(X86_FEATURE_RTM))
6957 vmx->guest_uret_msrs[j].mask = ~(u64)TSX_CTRL_CPUID_CLEAR;
6958 else
6959 vmx->guest_uret_msrs[j].mask = 0;
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006960 break;
6961 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07006962 vmx->guest_uret_msrs[j].mask = -1ull;
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006963 break;
6964 }
Sean Christophersonfbc18002020-09-23 11:03:59 -07006965 ++vmx->nr_uret_msrs;
Xiaoyao Li4be53412019-10-20 17:11:00 +08006966 }
6967
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006968 err = alloc_loaded_vmcs(&vmx->vmcs01);
6969 if (err < 0)
Jim Mattson7d737102019-12-03 16:24:42 -08006970 goto free_pml;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006971
Alexander Graf3eb90012020-09-25 16:34:20 +02006972 /* The MSR bitmap starts with all ones */
6973 bitmap_fill(vmx->shadow_msr_intercept.read, MAX_POSSIBLE_PASSTHROUGH_MSRS);
6974 bitmap_fill(vmx->shadow_msr_intercept.write, MAX_POSSIBLE_PASSTHROUGH_MSRS);
6975
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006976 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_TSC, MSR_TYPE_R);
6977 vmx_disable_intercept_for_msr(vcpu, MSR_FS_BASE, MSR_TYPE_RW);
6978 vmx_disable_intercept_for_msr(vcpu, MSR_GS_BASE, MSR_TYPE_RW);
6979 vmx_disable_intercept_for_msr(vcpu, MSR_KERNEL_GS_BASE, MSR_TYPE_RW);
6980 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_CS, MSR_TYPE_RW);
6981 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_ESP, MSR_TYPE_RW);
6982 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_EIP, MSR_TYPE_RW);
Sean Christopherson987b2592019-12-18 13:54:55 -08006983 if (kvm_cstate_in_guest(vcpu->kvm)) {
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006984 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C1_RES, MSR_TYPE_R);
6985 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C3_RESIDENCY, MSR_TYPE_R);
6986 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C6_RESIDENCY, MSR_TYPE_R);
6987 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C7_RESIDENCY, MSR_TYPE_R);
Wanpeng Lib5170062019-05-21 14:06:53 +08006988 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006989 vmx->msr_bitmap_mode = 0;
6990
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006991 vmx->loaded_vmcs = &vmx->vmcs01;
Avi Kivity15ad7142007-07-11 18:17:21 +03006992 cpu = get_cpu();
Sean Christopherson34109c02019-12-18 13:54:50 -08006993 vmx_vcpu_load(vcpu, cpu);
6994 vcpu->cpu = cpu;
Xiaoyao Li1b842922019-10-20 17:11:01 +08006995 init_vmcs(vmx);
Sean Christopherson34109c02019-12-18 13:54:50 -08006996 vmx_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03006997 put_cpu();
Sean Christopherson34109c02019-12-18 13:54:50 -08006998 if (cpu_need_virtualize_apic_accesses(vcpu)) {
Sean Christopherson987b2592019-12-18 13:54:55 -08006999 err = alloc_apic_access_page(vcpu->kvm);
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02007000 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02007001 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02007002 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08007003
Sean Christophersone90008d2018-03-05 12:04:37 -08007004 if (enable_ept && !enable_unrestricted_guest) {
Sean Christopherson987b2592019-12-18 13:54:55 -08007005 err = init_rmode_identity_map(vcpu->kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08007006 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02007007 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08007008 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08007009
Roman Kagan63aff652018-07-19 21:59:07 +03007010 if (nested)
Chenyi Qiangb9757a42020-08-28 16:56:22 +08007011 memcpy(&vmx->nested.msrs, &vmcs_config.nested, sizeof(vmx->nested.msrs));
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08007012 else
7013 memset(&vmx->nested.msrs, 0, sizeof(vmx->nested.msrs));
Wincy Vanb9c237b2015-02-03 23:56:30 +08007014
Wincy Van705699a2015-02-03 23:58:17 +08007015 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03007016 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03007017
Paolo Bonzinibab0c312020-02-11 18:40:58 +01007018 vcpu->arch.microcode_version = 0x100000000ULL;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007019 vmx->msr_ia32_feature_control_valid_bits = FEAT_CTL_LOCKED;
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007020
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02007021 /*
7022 * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR
7023 * or POSTED_INTR_WAKEUP_VECTOR.
7024 */
7025 vmx->pi_desc.nv = POSTED_INTR_VECTOR;
7026 vmx->pi_desc.sn = 1;
7027
Lan Tianyu53963a72018-12-06 15:34:36 +08007028 vmx->ept_pointer = INVALID_PAGE;
7029
Sean Christophersona9dd6f02019-12-18 13:54:52 -08007030 return 0;
Ingo Molnar965b58a2007-01-05 16:36:23 -08007031
Rusty Russellfb3f0f52007-07-27 17:16:56 +10007032free_vmcs:
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08007033 free_loaded_vmcs(vmx->loaded_vmcs);
Peter Feiner4e595162016-07-07 14:49:58 -07007034free_pml:
7035 vmx_destroy_pml_buffer(vmx);
Sean Christopherson987b2592019-12-18 13:54:55 -08007036free_vpid:
Wanpeng Li991e7a02015-09-16 17:30:05 +08007037 free_vpid(vmx->vpid);
Sean Christophersona9dd6f02019-12-18 13:54:52 -08007038 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007039}
7040
Thomas Gleixner65fd4cb2019-02-19 11:10:49 +01007041#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/hw-vuln/l1tf.html for details.\n"
7042#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/hw-vuln/l1tf.html for details.\n"
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04007043
Wanpeng Lib31c1142018-03-12 04:53:04 -07007044static int vmx_vm_init(struct kvm *kvm)
7045{
Tianyu Lan877ad952018-07-19 08:40:23 +00007046 spin_lock_init(&to_kvm_vmx(kvm)->ept_pointer_lock);
7047
Wanpeng Lib31c1142018-03-12 04:53:04 -07007048 if (!ple_gap)
7049 kvm->arch.pause_in_guest = true;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04007050
Jiri Kosinad90a7a02018-07-13 16:23:25 +02007051 if (boot_cpu_has(X86_BUG_L1TF) && enable_ept) {
7052 switch (l1tf_mitigation) {
7053 case L1TF_MITIGATION_OFF:
7054 case L1TF_MITIGATION_FLUSH_NOWARN:
7055 /* 'I explicitly don't care' is set */
7056 break;
7057 case L1TF_MITIGATION_FLUSH:
7058 case L1TF_MITIGATION_FLUSH_NOSMT:
7059 case L1TF_MITIGATION_FULL:
7060 /*
7061 * Warn upon starting the first VM in a potentially
7062 * insecure environment.
7063 */
Josh Poimboeufb2849092019-01-30 07:13:58 -06007064 if (sched_smt_active())
Jiri Kosinad90a7a02018-07-13 16:23:25 +02007065 pr_warn_once(L1TF_MSG_SMT);
7066 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_NEVER)
7067 pr_warn_once(L1TF_MSG_L1D);
7068 break;
7069 case L1TF_MITIGATION_FULL_FORCE:
7070 /* Flush is enforced */
7071 break;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04007072 }
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04007073 }
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06007074 kvm_apicv_init(kvm, enable_apicv);
Wanpeng Lib31c1142018-03-12 04:53:04 -07007075 return 0;
7076}
7077
Sean Christophersonf257d6d2019-04-19 22:18:17 -07007078static int __init vmx_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03007079{
7080 struct vmcs_config vmcs_conf;
Sean Christopherson7caaa712018-12-03 13:53:01 -08007081 struct vmx_capability vmx_cap;
Yang, Sheng002c7f72007-07-31 14:23:01 +03007082
Sean Christophersonff10e222019-12-20 20:45:10 -08007083 if (!this_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
7084 !this_cpu_has(X86_FEATURE_VMX)) {
7085 pr_err("kvm: VMX is disabled on CPU %d\n", smp_processor_id());
7086 return -EIO;
7087 }
7088
Sean Christopherson7caaa712018-12-03 13:53:01 -08007089 if (setup_vmcs_config(&vmcs_conf, &vmx_cap) < 0)
Sean Christophersonf257d6d2019-04-19 22:18:17 -07007090 return -EIO;
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08007091 if (nested)
Vitaly Kuznetsova4443262020-02-20 18:22:04 +01007092 nested_vmx_setup_ctls_msrs(&vmcs_conf.nested, vmx_cap.ept);
Yang, Sheng002c7f72007-07-31 14:23:01 +03007093 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
7094 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
7095 smp_processor_id());
Sean Christophersonf257d6d2019-04-19 22:18:17 -07007096 return -EIO;
Yang, Sheng002c7f72007-07-31 14:23:01 +03007097 }
Sean Christophersonf257d6d2019-04-19 22:18:17 -07007098 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03007099}
7100
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007101static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08007102{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007103 u8 cache;
7104 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007105
Chia-I Wu222f06e2020-02-13 13:30:34 -08007106 /* We wanted to honor guest CD/MTRR/PAT, but doing so could result in
7107 * memory aliases with conflicting memory types and sometimes MCEs.
7108 * We have to be careful as to what are honored and when.
7109 *
7110 * For MMIO, guest CD/MTRR are ignored. The EPT memory type is set to
7111 * UC. The effective memory type is UC or WC depending on guest PAT.
7112 * This was historically the source of MCEs and we want to be
7113 * conservative.
7114 *
7115 * When there is no need to deal with noncoherent DMA (e.g., no VT-d
7116 * or VT-d has snoop control), guest CD/MTRR/PAT are all ignored. The
7117 * EPT memory type is set to WB. The effective memory type is forced
7118 * WB.
7119 *
7120 * Otherwise, we trust guest. Guest CD/MTRR/PAT are all honored. The
7121 * EPT memory type is used to emulate guest CD/MTRR.
Sheng Yang522c68c2009-04-27 20:35:43 +08007122 */
Chia-I Wu222f06e2020-02-13 13:30:34 -08007123
Paolo Bonzini606decd2015-10-01 13:12:47 +02007124 if (is_mmio) {
7125 cache = MTRR_TYPE_UNCACHABLE;
7126 goto exit;
7127 }
7128
7129 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007130 ipat = VMX_EPT_IPAT_BIT;
7131 cache = MTRR_TYPE_WRBACK;
7132 goto exit;
7133 }
7134
7135 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
7136 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02007137 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08007138 cache = MTRR_TYPE_WRBACK;
7139 else
7140 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007141 goto exit;
7142 }
7143
Xiao Guangrongff536042015-06-15 16:55:22 +08007144 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007145
7146exit:
7147 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08007148}
7149
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007150static void vmcs_set_secondary_exec_control(struct vcpu_vmx *vmx)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007151{
7152 /*
7153 * These bits in the secondary execution controls field
7154 * are dynamic, the others are mostly based on the hypervisor
7155 * architecture and the guest's CPUID. Do not touch the
7156 * dynamic bits.
7157 */
7158 u32 mask =
7159 SECONDARY_EXEC_SHADOW_VMCS |
7160 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Paolo Bonzini0367f202016-07-12 10:44:55 +02007161 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
7162 SECONDARY_EXEC_DESC;
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007163
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007164 u32 new_ctl = vmx->secondary_exec_control;
7165 u32 cur_ctl = secondary_exec_controls_get(vmx);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007166
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007167 secondary_exec_controls_set(vmx, (new_ctl & ~mask) | (cur_ctl & mask));
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007168}
7169
David Matlack8322ebb2016-11-29 18:14:09 -08007170/*
7171 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
7172 * (indicating "allowed-1") if they are supported in the guest's CPUID.
7173 */
7174static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
7175{
7176 struct vcpu_vmx *vmx = to_vmx(vcpu);
7177 struct kvm_cpuid_entry2 *entry;
7178
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01007179 vmx->nested.msrs.cr0_fixed1 = 0xffffffff;
7180 vmx->nested.msrs.cr4_fixed1 = X86_CR4_PCE;
David Matlack8322ebb2016-11-29 18:14:09 -08007181
7182#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
7183 if (entry && (entry->_reg & (_cpuid_mask))) \
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01007184 vmx->nested.msrs.cr4_fixed1 |= (_cr4_mask); \
David Matlack8322ebb2016-11-29 18:14:09 -08007185} while (0)
7186
7187 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
Sean Christopherson87382002019-12-17 13:32:42 -08007188 cr4_fixed1_update(X86_CR4_VME, edx, feature_bit(VME));
7189 cr4_fixed1_update(X86_CR4_PVI, edx, feature_bit(VME));
7190 cr4_fixed1_update(X86_CR4_TSD, edx, feature_bit(TSC));
7191 cr4_fixed1_update(X86_CR4_DE, edx, feature_bit(DE));
7192 cr4_fixed1_update(X86_CR4_PSE, edx, feature_bit(PSE));
7193 cr4_fixed1_update(X86_CR4_PAE, edx, feature_bit(PAE));
7194 cr4_fixed1_update(X86_CR4_MCE, edx, feature_bit(MCE));
7195 cr4_fixed1_update(X86_CR4_PGE, edx, feature_bit(PGE));
7196 cr4_fixed1_update(X86_CR4_OSFXSR, edx, feature_bit(FXSR));
7197 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, feature_bit(XMM));
7198 cr4_fixed1_update(X86_CR4_VMXE, ecx, feature_bit(VMX));
7199 cr4_fixed1_update(X86_CR4_SMXE, ecx, feature_bit(SMX));
7200 cr4_fixed1_update(X86_CR4_PCIDE, ecx, feature_bit(PCID));
7201 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, feature_bit(XSAVE));
David Matlack8322ebb2016-11-29 18:14:09 -08007202
7203 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
Sean Christopherson87382002019-12-17 13:32:42 -08007204 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, feature_bit(FSGSBASE));
7205 cr4_fixed1_update(X86_CR4_SMEP, ebx, feature_bit(SMEP));
7206 cr4_fixed1_update(X86_CR4_SMAP, ebx, feature_bit(SMAP));
7207 cr4_fixed1_update(X86_CR4_PKE, ecx, feature_bit(PKU));
7208 cr4_fixed1_update(X86_CR4_UMIP, ecx, feature_bit(UMIP));
7209 cr4_fixed1_update(X86_CR4_LA57, ecx, feature_bit(LA57));
David Matlack8322ebb2016-11-29 18:14:09 -08007210
7211#undef cr4_fixed1_update
7212}
7213
Liran Alon5f76f6f2018-09-14 03:25:52 +03007214static void nested_vmx_entry_exit_ctls_update(struct kvm_vcpu *vcpu)
7215{
7216 struct vcpu_vmx *vmx = to_vmx(vcpu);
7217
7218 if (kvm_mpx_supported()) {
7219 bool mpx_enabled = guest_cpuid_has(vcpu, X86_FEATURE_MPX);
7220
7221 if (mpx_enabled) {
7222 vmx->nested.msrs.entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
7223 vmx->nested.msrs.exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
7224 } else {
7225 vmx->nested.msrs.entry_ctls_high &= ~VM_ENTRY_LOAD_BNDCFGS;
7226 vmx->nested.msrs.exit_ctls_high &= ~VM_EXIT_CLEAR_BNDCFGS;
7227 }
7228 }
7229}
7230
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007231static void update_intel_pt_cfg(struct kvm_vcpu *vcpu)
7232{
7233 struct vcpu_vmx *vmx = to_vmx(vcpu);
7234 struct kvm_cpuid_entry2 *best = NULL;
7235 int i;
7236
7237 for (i = 0; i < PT_CPUID_LEAVES; i++) {
7238 best = kvm_find_cpuid_entry(vcpu, 0x14, i);
7239 if (!best)
7240 return;
7241 vmx->pt_desc.caps[CPUID_EAX + i*PT_CPUID_REGS_NUM] = best->eax;
7242 vmx->pt_desc.caps[CPUID_EBX + i*PT_CPUID_REGS_NUM] = best->ebx;
7243 vmx->pt_desc.caps[CPUID_ECX + i*PT_CPUID_REGS_NUM] = best->ecx;
7244 vmx->pt_desc.caps[CPUID_EDX + i*PT_CPUID_REGS_NUM] = best->edx;
7245 }
7246
7247 /* Get the number of configurable Address Ranges for filtering */
7248 vmx->pt_desc.addr_range = intel_pt_validate_cap(vmx->pt_desc.caps,
7249 PT_CAP_num_address_ranges);
7250
7251 /* Initialize and clear the no dependency bits */
7252 vmx->pt_desc.ctl_bitmask = ~(RTIT_CTL_TRACEEN | RTIT_CTL_OS |
7253 RTIT_CTL_USR | RTIT_CTL_TSC_EN | RTIT_CTL_DISRETC);
7254
7255 /*
7256 * If CPUID.(EAX=14H,ECX=0):EBX[0]=1 CR3Filter can be set otherwise
7257 * will inject an #GP
7258 */
7259 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_cr3_filtering))
7260 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_CR3EN;
7261
7262 /*
7263 * If CPUID.(EAX=14H,ECX=0):EBX[1]=1 CYCEn, CycThresh and
7264 * PSBFreq can be set
7265 */
7266 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc))
7267 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_CYCLEACC |
7268 RTIT_CTL_CYC_THRESH | RTIT_CTL_PSB_FREQ);
7269
7270 /*
7271 * If CPUID.(EAX=14H,ECX=0):EBX[3]=1 MTCEn BranchEn and
7272 * MTCFreq can be set
7273 */
7274 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc))
7275 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_MTC_EN |
7276 RTIT_CTL_BRANCH_EN | RTIT_CTL_MTC_RANGE);
7277
7278 /* If CPUID.(EAX=14H,ECX=0):EBX[4]=1 FUPonPTW and PTWEn can be set */
7279 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_ptwrite))
7280 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_FUP_ON_PTW |
7281 RTIT_CTL_PTW_EN);
7282
7283 /* If CPUID.(EAX=14H,ECX=0):EBX[5]=1 PwrEvEn can be set */
7284 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_power_event_trace))
7285 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_PWR_EVT_EN;
7286
7287 /* If CPUID.(EAX=14H,ECX=0):ECX[0]=1 ToPA can be set */
7288 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_topa_output))
7289 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_TOPA;
7290
7291 /* If CPUID.(EAX=14H,ECX=0):ECX[3]=1 FabircEn can be set */
7292 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_output_subsys))
7293 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_FABRIC_EN;
7294
7295 /* unmask address range configure area */
7296 for (i = 0; i < vmx->pt_desc.addr_range; i++)
Gustavo A. R. Silvad14eff12018-12-26 14:40:59 -06007297 vmx->pt_desc.ctl_bitmask &= ~(0xfULL << (32 + i * 4));
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007298}
7299
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08007300static void vmx_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
Sheng Yang0e851882009-12-18 16:48:46 +08007301{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007302 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007303
Aaron Lewis72041602019-10-21 16:30:20 -07007304 /* xsaves_enabled is recomputed in vmx_compute_secondary_exec_control(). */
7305 vcpu->arch.xsaves_enabled = false;
7306
Paolo Bonzini80154d72017-08-24 13:55:35 +02007307 if (cpu_has_secondary_exec_ctrls()) {
7308 vmx_compute_secondary_exec_control(vmx);
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007309 vmcs_set_secondary_exec_control(vmx);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007310 }
Mao, Junjiead756a12012-07-02 01:18:48 +00007311
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007312 if (nested_vmx_allowed(vcpu))
7313 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007314 FEAT_CTL_VMX_ENABLED_INSIDE_SMX |
7315 FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX;
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007316 else
7317 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007318 ~(FEAT_CTL_VMX_ENABLED_INSIDE_SMX |
7319 FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX);
David Matlack8322ebb2016-11-29 18:14:09 -08007320
Liran Alon5f76f6f2018-09-14 03:25:52 +03007321 if (nested_vmx_allowed(vcpu)) {
David Matlack8322ebb2016-11-29 18:14:09 -08007322 nested_vmx_cr_fixed1_bits_update(vcpu);
Liran Alon5f76f6f2018-09-14 03:25:52 +03007323 nested_vmx_entry_exit_ctls_update(vcpu);
7324 }
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007325
7326 if (boot_cpu_has(X86_FEATURE_INTEL_PT) &&
7327 guest_cpuid_has(vcpu, X86_FEATURE_INTEL_PT))
7328 update_intel_pt_cfg(vcpu);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007329
7330 if (boot_cpu_has(X86_FEATURE_RTM)) {
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07007331 struct vmx_uret_msr *msr;
Sean Christophersond85a8032020-09-23 11:04:06 -07007332 msr = vmx_find_uret_msr(vmx, MSR_IA32_TSX_CTRL);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007333 if (msr) {
7334 bool enabled = guest_cpuid_has(vcpu, X86_FEATURE_RTM);
Sean Christopherson7bf662b2020-09-23 11:04:07 -07007335 vmx_set_guest_uret_msr(vmx, msr, enabled ? 0 : TSX_CTRL_RTM_DISABLE);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007336 }
7337 }
Sean Christophersona6337a32020-09-29 21:16:57 -07007338
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07007339 set_cr4_guest_host_mask(vmx);
7340
Sean Christophersona6337a32020-09-29 21:16:57 -07007341 /* Refresh #PF interception to account for MAXPHYADDR changes. */
Jason Baronb6a7cc32021-01-14 22:27:54 -05007342 vmx_update_exception_bitmap(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08007343}
7344
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007345static __init void vmx_set_cpu_caps(void)
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007346{
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007347 kvm_set_cpu_caps();
7348
7349 /* CPUID 0x1 */
7350 if (nested)
7351 kvm_cpu_cap_set(X86_FEATURE_VMX);
7352
7353 /* CPUID 0x7 */
Sean Christopherson8721f5b2020-03-02 15:56:45 -08007354 if (kvm_mpx_supported())
7355 kvm_cpu_cap_check_and_set(X86_FEATURE_MPX);
7356 if (cpu_has_vmx_invpcid())
7357 kvm_cpu_cap_check_and_set(X86_FEATURE_INVPCID);
7358 if (vmx_pt_mode_is_host_guest())
7359 kvm_cpu_cap_check_and_set(X86_FEATURE_INTEL_PT);
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007360
Sean Christopherson90d2f602020-03-02 15:56:47 -08007361 if (vmx_umip_emulated())
7362 kvm_cpu_cap_set(X86_FEATURE_UMIP);
7363
Sean Christophersonb3d895d52020-03-02 15:56:44 -08007364 /* CPUID 0xD.1 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01007365 supported_xss = 0;
Sean Christophersonbecdad82020-09-23 09:50:45 -07007366 if (!cpu_has_vmx_xsaves())
Sean Christophersonb3d895d52020-03-02 15:56:44 -08007367 kvm_cpu_cap_clear(X86_FEATURE_XSAVES);
7368
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007369 /* CPUID 0x80000001 */
7370 if (!cpu_has_vmx_rdtscp())
7371 kvm_cpu_cap_clear(X86_FEATURE_RDTSCP);
Maxim Levitsky0abcc8f2020-05-23 19:14:54 +03007372
Sean Christophersonbecdad82020-09-23 09:50:45 -07007373 if (cpu_has_vmx_waitpkg())
Maxim Levitsky0abcc8f2020-05-23 19:14:54 +03007374 kvm_cpu_cap_check_and_set(X86_FEATURE_WAITPKG);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007375}
7376
Sean Christophersond264ee02018-08-27 15:21:12 -07007377static void vmx_request_immediate_exit(struct kvm_vcpu *vcpu)
7378{
7379 to_vmx(vcpu)->req_immediate_exit = true;
7380}
7381
Oliver Upton35a57132020-02-04 15:26:31 -08007382static int vmx_check_intercept_io(struct kvm_vcpu *vcpu,
7383 struct x86_instruction_info *info)
7384{
7385 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7386 unsigned short port;
7387 bool intercept;
7388 int size;
7389
7390 if (info->intercept == x86_intercept_in ||
7391 info->intercept == x86_intercept_ins) {
7392 port = info->src_val;
7393 size = info->dst_bytes;
7394 } else {
7395 port = info->dst_val;
7396 size = info->src_bytes;
7397 }
7398
7399 /*
7400 * If the 'use IO bitmaps' VM-execution control is 0, IO instruction
7401 * VM-exits depend on the 'unconditional IO exiting' VM-execution
7402 * control.
7403 *
7404 * Otherwise, IO instruction VM-exits are controlled by the IO bitmaps.
7405 */
7406 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
7407 intercept = nested_cpu_has(vmcs12,
7408 CPU_BASED_UNCOND_IO_EXITING);
7409 else
7410 intercept = nested_vmx_check_io_bitmaps(vcpu, port, size);
7411
Oliver Upton86f7e902020-02-29 11:30:14 -08007412 /* FIXME: produce nested vmexit and return X86EMUL_INTERCEPTED. */
Oliver Upton35a57132020-02-04 15:26:31 -08007413 return intercept ? X86EMUL_UNHANDLEABLE : X86EMUL_CONTINUE;
7414}
7415
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007416static int vmx_check_intercept(struct kvm_vcpu *vcpu,
7417 struct x86_instruction_info *info,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007418 enum x86_intercept_stage stage,
7419 struct x86_exception *exception)
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007420{
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007421 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007422
Oliver Upton35a57132020-02-04 15:26:31 -08007423 switch (info->intercept) {
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007424 /*
7425 * RDPID causes #UD if disabled through secondary execution controls.
7426 * Because it is marked as EmulateOnUD, we need to intercept it here.
7427 */
Oliver Upton35a57132020-02-04 15:26:31 -08007428 case x86_intercept_rdtscp:
Sean Christopherson7f3603b2020-09-23 09:50:47 -07007429 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_RDTSCP)) {
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007430 exception->vector = UD_VECTOR;
7431 exception->error_code_valid = false;
Oliver Upton35a57132020-02-04 15:26:31 -08007432 return X86EMUL_PROPAGATE_FAULT;
7433 }
7434 break;
7435
7436 case x86_intercept_in:
7437 case x86_intercept_ins:
7438 case x86_intercept_out:
7439 case x86_intercept_outs:
7440 return vmx_check_intercept_io(vcpu, info);
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007441
Oliver Upton86f7e902020-02-29 11:30:14 -08007442 case x86_intercept_lgdt:
7443 case x86_intercept_lidt:
7444 case x86_intercept_lldt:
7445 case x86_intercept_ltr:
7446 case x86_intercept_sgdt:
7447 case x86_intercept_sidt:
7448 case x86_intercept_sldt:
7449 case x86_intercept_str:
7450 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC))
7451 return X86EMUL_CONTINUE;
7452
7453 /* FIXME: produce nested vmexit and return X86EMUL_INTERCEPTED. */
7454 break;
7455
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007456 /* TODO: check more intercepts... */
Oliver Upton35a57132020-02-04 15:26:31 -08007457 default:
7458 break;
7459 }
7460
Paolo Bonzini07721fe2020-02-04 15:26:29 -08007461 return X86EMUL_UNHANDLEABLE;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007462}
7463
Yunhong Jiang64672c92016-06-13 14:19:59 -07007464#ifdef CONFIG_X86_64
7465/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
7466static inline int u64_shl_div_u64(u64 a, unsigned int shift,
7467 u64 divisor, u64 *result)
7468{
7469 u64 low = a << shift, high = a >> (64 - shift);
7470
7471 /* To avoid the overflow on divq */
7472 if (high >= divisor)
7473 return 1;
7474
7475 /* Low hold the result, high hold rem which is discarded */
7476 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
7477 "rm" (divisor), "0" (low), "1" (high));
7478 *result = low;
7479
7480 return 0;
7481}
7482
Sean Christophersonf9927982019-04-16 13:32:46 -07007483static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc,
7484 bool *expired)
Yunhong Jiang64672c92016-06-13 14:19:59 -07007485{
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007486 struct vcpu_vmx *vmx;
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007487 u64 tscl, guest_tscl, delta_tsc, lapic_timer_advance_cycles;
Sean Christopherson39497d72019-04-17 10:15:32 -07007488 struct kvm_timer *ktimer = &vcpu->arch.apic->lapic_timer;
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007489
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007490 vmx = to_vmx(vcpu);
7491 tscl = rdtsc();
7492 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
7493 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Sean Christopherson39497d72019-04-17 10:15:32 -07007494 lapic_timer_advance_cycles = nsec_to_cycles(vcpu,
7495 ktimer->timer_advance_ns);
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007496
7497 if (delta_tsc > lapic_timer_advance_cycles)
7498 delta_tsc -= lapic_timer_advance_cycles;
7499 else
7500 delta_tsc = 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007501
7502 /* Convert to host delta tsc if tsc scaling is enabled */
7503 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
Sean Christopherson0967fa12019-04-16 13:32:48 -07007504 delta_tsc && u64_shl_div_u64(delta_tsc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007505 kvm_tsc_scaling_ratio_frac_bits,
Sean Christopherson0967fa12019-04-16 13:32:48 -07007506 vcpu->arch.tsc_scaling_ratio, &delta_tsc))
Yunhong Jiang64672c92016-06-13 14:19:59 -07007507 return -ERANGE;
7508
7509 /*
7510 * If the delta tsc can't fit in the 32 bit after the multi shift,
7511 * we can't use the preemption timer.
7512 * It's possible that it fits on later vmentries, but checking
7513 * on every vmentry is costly so we just use an hrtimer.
7514 */
7515 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
7516 return -ERANGE;
7517
7518 vmx->hv_deadline_tsc = tscl + delta_tsc;
Sean Christophersonf9927982019-04-16 13:32:46 -07007519 *expired = !delta_tsc;
7520 return 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007521}
7522
7523static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
7524{
Sean Christophersonf459a702018-08-27 15:21:11 -07007525 to_vmx(vcpu)->hv_deadline_tsc = -1;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007526}
7527#endif
7528
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007529static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007530{
Wanpeng Lib31c1142018-03-12 04:53:04 -07007531 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007532 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007533}
7534
Kai Huang843e4332015-01-28 10:54:28 +08007535static void vmx_slot_enable_log_dirty(struct kvm *kvm,
7536 struct kvm_memory_slot *slot)
7537{
Jay Zhou3c9bd402020-02-27 09:32:27 +08007538 if (!kvm_dirty_log_manual_protect_and_init_set(kvm))
7539 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
Kai Huang843e4332015-01-28 10:54:28 +08007540 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
7541}
7542
7543static void vmx_slot_disable_log_dirty(struct kvm *kvm,
7544 struct kvm_memory_slot *slot)
7545{
7546 kvm_mmu_slot_set_dirty(kvm, slot);
7547}
7548
7549static void vmx_flush_log_dirty(struct kvm *kvm)
7550{
7551 kvm_flush_pml_buffers(kvm);
7552}
7553
7554static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
7555 struct kvm_memory_slot *memslot,
7556 gfn_t offset, unsigned long mask)
7557{
7558 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
7559}
7560
Yunhong Jiangbc225122016-06-13 14:19:58 -07007561static int vmx_pre_block(struct kvm_vcpu *vcpu)
7562{
7563 if (pi_pre_block(vcpu))
7564 return 1;
7565
Yunhong Jiang64672c92016-06-13 14:19:59 -07007566 if (kvm_lapic_hv_timer_in_use(vcpu))
7567 kvm_lapic_switch_to_sw_timer(vcpu);
7568
Yunhong Jiangbc225122016-06-13 14:19:58 -07007569 return 0;
7570}
7571
Yunhong Jiangbc225122016-06-13 14:19:58 -07007572static void vmx_post_block(struct kvm_vcpu *vcpu)
7573{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007574 if (kvm_x86_ops.set_hv_timer)
Yunhong Jiang64672c92016-06-13 14:19:59 -07007575 kvm_lapic_switch_to_hv_timer(vcpu);
7576
Yunhong Jiangbc225122016-06-13 14:19:58 -07007577 pi_post_block(vcpu);
7578}
7579
Ashok Rajc45dcc72016-06-22 14:59:56 +08007580static void vmx_setup_mce(struct kvm_vcpu *vcpu)
7581{
7582 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
7583 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007584 FEAT_CTL_LMCE_ENABLED;
Ashok Rajc45dcc72016-06-22 14:59:56 +08007585 else
7586 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007587 ~FEAT_CTL_LMCE_ENABLED;
Ashok Rajc45dcc72016-06-22 14:59:56 +08007588}
7589
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007590static int vmx_smi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Ladi Prosek72d7b372017-10-11 16:54:41 +02007591{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007592 /* we need a nested vmexit to enter SMM, postpone if run is pending */
7593 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007594 return -EBUSY;
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -04007595 return !is_smm(vcpu);
Ladi Prosek72d7b372017-10-11 16:54:41 +02007596}
7597
Ladi Prosek0234bf82017-10-11 16:54:40 +02007598static int vmx_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
7599{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007600 struct vcpu_vmx *vmx = to_vmx(vcpu);
7601
7602 vmx->nested.smm.guest_mode = is_guest_mode(vcpu);
7603 if (vmx->nested.smm.guest_mode)
7604 nested_vmx_vmexit(vcpu, -1, 0, 0);
7605
7606 vmx->nested.smm.vmxon = vmx->nested.vmxon;
7607 vmx->nested.vmxon = false;
Wanpeng Licaa057a2018-03-12 04:53:03 -07007608 vmx_clear_hlt(vcpu);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007609 return 0;
7610}
7611
Sean Christophersoned193212019-04-02 08:03:09 -07007612static int vmx_pre_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007613{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007614 struct vcpu_vmx *vmx = to_vmx(vcpu);
7615 int ret;
7616
7617 if (vmx->nested.smm.vmxon) {
7618 vmx->nested.vmxon = true;
7619 vmx->nested.smm.vmxon = false;
7620 }
7621
7622 if (vmx->nested.smm.guest_mode) {
Sean Christophersona633e412018-09-26 09:23:47 -07007623 ret = nested_vmx_enter_non_root_mode(vcpu, false);
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007624 if (ret)
7625 return ret;
7626
7627 vmx->nested.smm.guest_mode = false;
7628 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02007629 return 0;
7630}
7631
Jason Baronb6a7cc32021-01-14 22:27:54 -05007632static void vmx_enable_smi_window(struct kvm_vcpu *vcpu)
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007633{
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007634 /* RSM will cause a vmexit anyway. */
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007635}
7636
Liran Alon4b9852f2019-08-26 13:24:49 +03007637static bool vmx_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
7638{
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05007639 return to_vmx(vcpu)->nested.vmxon && !is_guest_mode(vcpu);
Liran Alon4b9852f2019-08-26 13:24:49 +03007640}
7641
Jim Mattson93dff2f2020-05-08 13:36:43 -07007642static void vmx_migrate_timers(struct kvm_vcpu *vcpu)
7643{
7644 if (is_guest_mode(vcpu)) {
7645 struct hrtimer *timer = &to_vmx(vcpu)->nested.preemption_timer;
7646
7647 if (hrtimer_try_to_cancel(timer) == 1)
7648 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
7649 }
7650}
7651
Sean Christopherson6e4fd062020-03-21 13:26:01 -07007652static void hardware_unsetup(void)
Sean Christophersona3203382018-12-03 13:53:11 -08007653{
7654 if (nested)
7655 nested_vmx_hardware_unsetup();
7656
7657 free_kvm_area();
7658}
7659
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007660static bool vmx_check_apicv_inhibit_reasons(ulong bit)
7661{
Suravee Suthikulpanitf4fdc0a2019-11-14 14:15:13 -06007662 ulong supported = BIT(APICV_INHIBIT_REASON_DISABLE) |
7663 BIT(APICV_INHIBIT_REASON_HYPERV);
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007664
7665 return supported & BIT(bit);
7666}
7667
Peter Xufb04a1e2020-09-30 21:22:22 -04007668static int vmx_cpu_dirty_log_size(void)
7669{
7670 return enable_pml ? PML_ENTITY_NUM : 0;
7671}
7672
Sean Christophersone286ac02020-03-21 13:26:02 -07007673static struct kvm_x86_ops vmx_x86_ops __initdata = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007674 .hardware_unsetup = hardware_unsetup,
Sean Christopherson484014f2020-03-21 13:25:57 -07007675
Avi Kivity6aa8b732006-12-10 02:21:36 -08007676 .hardware_enable = hardware_enable,
7677 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08007678 .cpu_has_accelerated_tpr = report_flexpriority,
Tom Lendackybc226f02018-05-10 22:06:39 +02007679 .has_emulated_msr = vmx_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007680
Sean Christopherson484014f2020-03-21 13:25:57 -07007681 .vm_size = sizeof(struct kvm_vmx),
Wanpeng Lib31c1142018-03-12 04:53:04 -07007682 .vm_init = vmx_vm_init,
7683
Avi Kivity6aa8b732006-12-10 02:21:36 -08007684 .vcpu_create = vmx_create_vcpu,
7685 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007686 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007687
Sean Christopherson6d6095b2018-07-23 12:32:44 -07007688 .prepare_guest_switch = vmx_prepare_switch_to_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007689 .vcpu_load = vmx_vcpu_load,
7690 .vcpu_put = vmx_vcpu_put,
7691
Jason Baronb6a7cc32021-01-14 22:27:54 -05007692 .update_exception_bitmap = vmx_update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -06007693 .get_msr_feature = vmx_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007694 .get_msr = vmx_get_msr,
7695 .set_msr = vmx_set_msr,
7696 .get_segment_base = vmx_get_segment_base,
7697 .get_segment = vmx_get_segment,
7698 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007699 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007700 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
7701 .set_cr0 = vmx_set_cr0,
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07007702 .is_valid_cr4 = vmx_is_valid_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007703 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007704 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007705 .get_idt = vmx_get_idt,
7706 .set_idt = vmx_set_idt,
7707 .get_gdt = vmx_get_gdt,
7708 .set_gdt = vmx_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03007709 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007710 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007711 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007712 .get_rflags = vmx_get_rflags,
7713 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007714
Sean Christopherson77809382020-03-20 14:28:18 -07007715 .tlb_flush_all = vmx_flush_tlb_all,
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07007716 .tlb_flush_current = vmx_flush_tlb_current,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007717 .tlb_flush_gva = vmx_flush_tlb_gva,
Sean Christophersone64419d2020-03-20 14:28:10 -07007718 .tlb_flush_guest = vmx_flush_tlb_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007719
Avi Kivity6aa8b732006-12-10 02:21:36 -08007720 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02007721 .handle_exit = vmx_handle_exit,
Oliver Upton5ef8acb2020-02-07 02:36:07 -08007722 .skip_emulated_instruction = vmx_skip_emulated_instruction,
7723 .update_emulated_instruction = vmx_update_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007724 .set_interrupt_shadow = vmx_set_interrupt_shadow,
7725 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007726 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007727 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007728 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007729 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007730 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007731 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007732 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007733 .get_nmi_mask = vmx_get_nmi_mask,
7734 .set_nmi_mask = vmx_set_nmi_mask,
Jason Baronb6a7cc32021-01-14 22:27:54 -05007735 .enable_nmi_window = vmx_enable_nmi_window,
7736 .enable_irq_window = vmx_enable_irq_window,
7737 .update_cr8_intercept = vmx_update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007738 .set_virtual_apic_mode = vmx_set_virtual_apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +08007739 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007740 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007741 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +01007742 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007743 .check_apicv_inhibit_reasons = vmx_check_apicv_inhibit_reasons,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007744 .hwapic_irr_update = vmx_hwapic_irr_update,
7745 .hwapic_isr_update = vmx_hwapic_isr_update,
Liran Alone6c67d82018-09-04 10:56:52 +03007746 .guest_apic_has_interrupt = vmx_guest_apic_has_interrupt,
Yang Zhanga20ed542013-04-11 19:25:15 +08007747 .sync_pir_to_irr = vmx_sync_pir_to_irr,
7748 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007749 .dy_apicv_has_pending_interrupt = pi_has_pending_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007750
Izik Eiduscbc94022007-10-25 00:29:55 +02007751 .set_tss_addr = vmx_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007752 .set_identity_map_addr = vmx_set_identity_map_addr,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007753 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007754
Avi Kivity586f9602010-11-18 13:09:54 +02007755 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007756
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08007757 .vcpu_after_set_cpuid = vmx_vcpu_after_set_cpuid,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007758
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007759 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007760
Leonid Shatz326e7422018-11-06 12:14:25 +02007761 .write_l1_tsc_offset = vmx_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007762
Sean Christopherson484014f2020-03-21 13:25:57 -07007763 .load_mmu_pgd = vmx_load_mmu_pgd,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007764
7765 .check_intercept = vmx_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07007766 .handle_exit_irqoff = vmx_handle_exit_irqoff,
Jan Kiszkab6b8a142014-03-07 20:03:12 +01007767
Sean Christophersond264ee02018-08-27 15:21:12 -07007768 .request_immediate_exit = vmx_request_immediate_exit,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007769
7770 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +08007771
7772 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
7773 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
7774 .flush_log_dirty = vmx_flush_log_dirty,
7775 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Wei Huang25462f72015-06-19 15:45:05 +02007776
Feng Wubf9f6ac2015-09-18 22:29:55 +08007777 .pre_block = vmx_pre_block,
7778 .post_block = vmx_post_block,
7779
Wei Huang25462f72015-06-19 15:45:05 +02007780 .pmu_ops = &intel_pmu_ops,
Paolo Bonzini33b22172020-04-17 10:24:18 -04007781 .nested_ops = &vmx_nested_ops,
Feng Wuefc64402015-09-18 22:29:51 +08007782
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007783 .update_pi_irte = pi_update_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007784
7785#ifdef CONFIG_X86_64
7786 .set_hv_timer = vmx_set_hv_timer,
7787 .cancel_hv_timer = vmx_cancel_hv_timer,
7788#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +08007789
7790 .setup_mce = vmx_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007791
Ladi Prosek72d7b372017-10-11 16:54:41 +02007792 .smi_allowed = vmx_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007793 .pre_enter_smm = vmx_pre_enter_smm,
7794 .pre_leave_smm = vmx_pre_leave_smm,
Jason Baronb6a7cc32021-01-14 22:27:54 -05007795 .enable_smi_window = vmx_enable_smi_window,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007796
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007797 .can_emulate_instruction = vmx_can_emulate_instruction,
Liran Alon4b9852f2019-08-26 13:24:49 +03007798 .apic_init_signal_blocked = vmx_apic_init_signal_blocked,
Jim Mattson93dff2f2020-05-08 13:36:43 -07007799 .migrate_timers = vmx_migrate_timers,
Alexander Graf3eb90012020-09-25 16:34:20 +02007800
7801 .msr_filter_changed = vmx_msr_filter_changed,
Paolo Bonzinif9a4d622020-12-14 10:26:51 -05007802 .complete_emulated_msr = kvm_complete_insn_gp,
Peter Xufb04a1e2020-09-30 21:22:22 -04007803 .cpu_dirty_log_size = vmx_cpu_dirty_log_size,
Tom Lendacky647daca2021-01-04 14:20:01 -06007804
7805 .vcpu_deliver_sipi_vector = kvm_vcpu_deliver_sipi_vector,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007806};
7807
Avi Kivity6aa8b732006-12-10 02:21:36 -08007808static __init int hardware_setup(void)
7809{
7810 unsigned long host_bndcfgs;
7811 struct desc_ptr dt;
Sean Christopherson703c3352020-03-02 15:57:03 -08007812 int r, i, ept_lpage_level;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007813
Avi Kivity6aa8b732006-12-10 02:21:36 -08007814 store_idt(&dt);
7815 host_idt_base = dt.address;
7816
Sean Christopherson14a61b62020-09-23 11:04:08 -07007817 for (i = 0; i < ARRAY_SIZE(vmx_uret_msrs_list); ++i)
7818 kvm_define_user_return_msr(i, vmx_uret_msrs_list[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007819
7820 if (setup_vmcs_config(&vmcs_config, &vmx_capability) < 0)
7821 return -EIO;
7822
7823 if (boot_cpu_has(X86_FEATURE_NX))
7824 kvm_enable_efer_bits(EFER_NX);
7825
7826 if (boot_cpu_has(X86_FEATURE_MPX)) {
7827 rdmsrl(MSR_IA32_BNDCFGS, host_bndcfgs);
7828 WARN_ONCE(host_bndcfgs, "KVM: BNDCFGS in host will be lost");
7829 }
7830
Sean Christopherson7f5581f2020-03-02 15:56:24 -08007831 if (!cpu_has_vmx_mpx())
Sean Christophersoncfc48182020-03-02 15:56:23 -08007832 supported_xcr0 &= ~(XFEATURE_MASK_BNDREGS |
7833 XFEATURE_MASK_BNDCSR);
7834
Avi Kivity6aa8b732006-12-10 02:21:36 -08007835 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
7836 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
7837 enable_vpid = 0;
7838
7839 if (!cpu_has_vmx_ept() ||
7840 !cpu_has_vmx_ept_4levels() ||
7841 !cpu_has_vmx_ept_mt_wb() ||
7842 !cpu_has_vmx_invept_global())
7843 enable_ept = 0;
7844
7845 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
7846 enable_ept_ad_bits = 0;
7847
7848 if (!cpu_has_vmx_unrestricted_guest() || !enable_ept)
Avi Kivity873a7c42006-12-13 00:34:14 -08007849 enable_unrestricted_guest = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007850
7851 if (!cpu_has_vmx_flexpriority())
7852 flexpriority_enabled = 0;
7853
7854 if (!cpu_has_virtual_nmis())
7855 enable_vnmi = 0;
7856
7857 /*
7858 * set_apic_access_page_addr() is used to reload apic access
7859 * page upon invalidation. No need to do anything if not
7860 * using the APIC_ACCESS_ADDR VMCS field.
7861 */
7862 if (!flexpriority_enabled)
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007863 vmx_x86_ops.set_apic_access_page_addr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007864
7865 if (!cpu_has_vmx_tpr_shadow())
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007866 vmx_x86_ops.update_cr8_intercept = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007867
Avi Kivity6aa8b732006-12-10 02:21:36 -08007868#if IS_ENABLED(CONFIG_HYPERV)
7869 if (ms_hyperv.nested_features & HV_X64_NESTED_GUEST_MAPPING_FLUSH
7870 && enable_ept) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007871 vmx_x86_ops.tlb_remote_flush = hv_remote_flush_tlb;
7872 vmx_x86_ops.tlb_remote_flush_with_range =
Avi Kivity6aa8b732006-12-10 02:21:36 -08007873 hv_remote_flush_tlb_with_range;
7874 }
7875#endif
7876
7877 if (!cpu_has_vmx_ple()) {
7878 ple_gap = 0;
7879 ple_window = 0;
7880 ple_window_grow = 0;
7881 ple_window_max = 0;
7882 ple_window_shrink = 0;
7883 }
7884
7885 if (!cpu_has_vmx_apicv()) {
7886 enable_apicv = 0;
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007887 vmx_x86_ops.sync_pir_to_irr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007888 }
7889
7890 if (cpu_has_vmx_tsc_scaling()) {
7891 kvm_has_tsc_control = true;
7892 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
7893 kvm_tsc_scaling_ratio_frac_bits = 48;
7894 }
7895
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08007896 kvm_has_bus_lock_exit = cpu_has_vmx_bus_lock_detection();
7897
Avi Kivity6aa8b732006-12-10 02:21:36 -08007898 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
7899
7900 if (enable_ept)
7901 vmx_enable_tdp();
Sean Christopherson703c3352020-03-02 15:57:03 -08007902
7903 if (!enable_ept)
7904 ept_lpage_level = 0;
7905 else if (cpu_has_vmx_ept_1g_page())
Sean Christopherson3bae0452020-04-27 17:54:22 -07007906 ept_lpage_level = PG_LEVEL_1G;
Sean Christopherson703c3352020-03-02 15:57:03 -08007907 else if (cpu_has_vmx_ept_2m_page())
Sean Christopherson3bae0452020-04-27 17:54:22 -07007908 ept_lpage_level = PG_LEVEL_2M;
Sean Christopherson703c3352020-03-02 15:57:03 -08007909 else
Sean Christopherson3bae0452020-04-27 17:54:22 -07007910 ept_lpage_level = PG_LEVEL_4K;
Sean Christopherson83013052020-07-15 20:41:22 -07007911 kvm_configure_mmu(enable_ept, vmx_get_max_tdp_level(), ept_lpage_level);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007912
7913 /*
7914 * Only enable PML when hardware supports PML feature, and both EPT
7915 * and EPT A/D bit features are enabled -- PML depends on them to work.
7916 */
7917 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
7918 enable_pml = 0;
7919
7920 if (!enable_pml) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007921 vmx_x86_ops.slot_enable_log_dirty = NULL;
7922 vmx_x86_ops.slot_disable_log_dirty = NULL;
7923 vmx_x86_ops.flush_log_dirty = NULL;
7924 vmx_x86_ops.enable_log_dirty_pt_masked = NULL;
Peter Xufb04a1e2020-09-30 21:22:22 -04007925 vmx_x86_ops.cpu_dirty_log_size = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007926 }
7927
7928 if (!cpu_has_vmx_preemption_timer())
7929 enable_preemption_timer = false;
7930
7931 if (enable_preemption_timer) {
7932 u64 use_timer_freq = 5000ULL * 1000 * 1000;
7933 u64 vmx_msr;
7934
7935 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
7936 cpu_preemption_timer_multi =
7937 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
7938
7939 if (tsc_khz)
7940 use_timer_freq = (u64)tsc_khz * 1000;
7941 use_timer_freq >>= cpu_preemption_timer_multi;
7942
7943 /*
7944 * KVM "disables" the preemption timer by setting it to its max
7945 * value. Don't use the timer if it might cause spurious exits
7946 * at a rate faster than 0.1 Hz (of uninterrupted guest time).
7947 */
7948 if (use_timer_freq > 0xffffffffu / 10)
7949 enable_preemption_timer = false;
7950 }
7951
7952 if (!enable_preemption_timer) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007953 vmx_x86_ops.set_hv_timer = NULL;
7954 vmx_x86_ops.cancel_hv_timer = NULL;
7955 vmx_x86_ops.request_immediate_exit = __kvm_request_immediate_exit;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007956 }
7957
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007958 kvm_set_posted_intr_wakeup_handler(pi_wakeup_handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007959
7960 kvm_mce_cap_supported |= MCG_LMCE_P;
7961
7962 if (pt_mode != PT_MODE_SYSTEM && pt_mode != PT_MODE_HOST_GUEST)
7963 return -EINVAL;
7964 if (!enable_ept || !cpu_has_vmx_intel_pt())
7965 pt_mode = PT_MODE_SYSTEM;
7966
7967 if (nested) {
7968 nested_vmx_setup_ctls_msrs(&vmcs_config.nested,
7969 vmx_capability.ept);
7970
Sean Christopherson6c1c6e52020-05-06 13:46:53 -07007971 r = nested_vmx_hardware_setup(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007972 if (r)
7973 return r;
7974 }
7975
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007976 vmx_set_cpu_caps();
Sean Christopherson66a69502020-03-02 15:56:41 -08007977
Avi Kivity6aa8b732006-12-10 02:21:36 -08007978 r = alloc_kvm_area();
7979 if (r)
7980 nested_vmx_hardware_unsetup();
7981 return r;
7982}
7983
Sean Christophersond008dfd2020-03-21 13:25:56 -07007984static struct kvm_x86_init_ops vmx_init_ops __initdata = {
7985 .cpu_has_kvm_support = cpu_has_kvm_support,
7986 .disabled_by_bios = vmx_disabled_by_bios,
7987 .check_processor_compatibility = vmx_check_processor_compat,
7988 .hardware_setup = hardware_setup,
7989
7990 .runtime_ops = &vmx_x86_ops,
7991};
7992
Avi Kivity6aa8b732006-12-10 02:21:36 -08007993static void vmx_cleanup_l1d_flush(void)
7994{
7995 if (vmx_l1d_flush_pages) {
7996 free_pages((unsigned long)vmx_l1d_flush_pages, L1D_CACHE_ORDER);
7997 vmx_l1d_flush_pages = NULL;
7998 }
7999 /* Restore state so sysfs ignores VMX */
8000 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO;
8001}
8002
8003static void vmx_exit(void)
8004{
8005#ifdef CONFIG_KEXEC_CORE
8006 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
8007 synchronize_rcu();
8008#endif
8009
8010 kvm_exit();
8011
8012#if IS_ENABLED(CONFIG_HYPERV)
8013 if (static_branch_unlikely(&enable_evmcs)) {
8014 int cpu;
8015 struct hv_vp_assist_page *vp_ap;
8016 /*
8017 * Reset everything to support using non-enlightened VMCS
8018 * access later (e.g. when we reload the module with
8019 * enlightened_vmcs=0)
8020 */
8021 for_each_online_cpu(cpu) {
8022 vp_ap = hv_get_vp_assist_page(cpu);
8023
8024 if (!vp_ap)
8025 continue;
8026
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08008027 vp_ap->nested_control.features.directhypercall = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008028 vp_ap->current_nested_vmcs = 0;
8029 vp_ap->enlighten_vmentry = 0;
8030 }
8031
8032 static_branch_disable(&enable_evmcs);
8033 }
8034#endif
8035 vmx_cleanup_l1d_flush();
8036}
8037module_exit(vmx_exit);
8038
8039static int __init vmx_init(void)
8040{
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02008041 int r, cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008042
8043#if IS_ENABLED(CONFIG_HYPERV)
8044 /*
8045 * Enlightened VMCS usage should be recommended and the host needs
8046 * to support eVMCS v1 or above. We can also disable eVMCS support
8047 * with module parameter.
8048 */
8049 if (enlightened_vmcs &&
8050 ms_hyperv.hints & HV_X64_ENLIGHTENED_VMCS_RECOMMENDED &&
8051 (ms_hyperv.nested_features & HV_X64_ENLIGHTENED_VMCS_VERSION) >=
8052 KVM_EVMCS_VERSION) {
8053 int cpu;
8054
8055 /* Check that we have assist pages on all online CPUs */
8056 for_each_online_cpu(cpu) {
8057 if (!hv_get_vp_assist_page(cpu)) {
8058 enlightened_vmcs = false;
8059 break;
8060 }
8061 }
8062
8063 if (enlightened_vmcs) {
8064 pr_info("KVM: vmx: using Hyper-V Enlightened VMCS\n");
8065 static_branch_enable(&enable_evmcs);
8066 }
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08008067
8068 if (ms_hyperv.nested_features & HV_X64_NESTED_DIRECT_FLUSH)
8069 vmx_x86_ops.enable_direct_tlbflush
8070 = hv_enable_direct_tlbflush;
8071
Avi Kivity6aa8b732006-12-10 02:21:36 -08008072 } else {
8073 enlightened_vmcs = false;
8074 }
8075#endif
8076
Sean Christophersond008dfd2020-03-21 13:25:56 -07008077 r = kvm_init(&vmx_init_ops, sizeof(struct vcpu_vmx),
Avi Kivity6aa8b732006-12-10 02:21:36 -08008078 __alignof__(struct vcpu_vmx), THIS_MODULE);
8079 if (r)
8080 return r;
8081
8082 /*
8083 * Must be called after kvm_init() so enable_ept is properly set
8084 * up. Hand the parameter mitigation value in which was stored in
8085 * the pre module init parser. If no parameter was given, it will
8086 * contain 'auto' which will be turned into the default 'cond'
8087 * mitigation mode.
8088 */
Waiman Long19a36d32019-08-26 15:30:23 -04008089 r = vmx_setup_l1d_flush(vmentry_l1d_flush_param);
8090 if (r) {
8091 vmx_exit();
8092 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008093 }
8094
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02008095 for_each_possible_cpu(cpu) {
8096 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07008097
Paolo Bonzinia3ff25f2020-10-24 04:08:37 -04008098 pi_init_cpu(cpu);
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02008099 }
8100
Avi Kivity6aa8b732006-12-10 02:21:36 -08008101#ifdef CONFIG_KEXEC_CORE
8102 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
8103 crash_vmclear_local_loaded_vmcss);
8104#endif
8105 vmx_check_vmcs12_offsets();
8106
Mohammed Gamal3edd6832020-07-10 17:48:11 +02008107 /*
Mohammed Gamalb96e6502020-09-03 16:11:22 +02008108 * Shadow paging doesn't have a (further) performance penalty
8109 * from GUEST_MAXPHYADDR < HOST_MAXPHYADDR so enable it
8110 * by default
Mohammed Gamal3edd6832020-07-10 17:48:11 +02008111 */
Mohammed Gamalb96e6502020-09-03 16:11:22 +02008112 if (!enable_ept)
8113 allow_smaller_maxphyaddr = true;
Mohammed Gamal3edd6832020-07-10 17:48:11 +02008114
Avi Kivity6aa8b732006-12-10 02:21:36 -08008115 return 0;
8116}
8117module_init(vmx_init);