blob: 4ac676066d6079b5d918d2daf54af045fe14c796 [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>
Thomas Gleixnerb56d2792021-10-15 03:16:39 +020038#include <asm/fpu/api.h>
Jing Liuec5be882022-01-05 04:35:23 -080039#include <asm/fpu/xstate.h>
Lai Jiangshana217a652021-05-04 21:50:14 +020040#include <asm/idtentry.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080041#include <asm/io.h>
Feng Wuefc64402015-09-18 22:29:51 +080042#include <asm/irq_remapping.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080043#include <asm/kexec.h>
44#include <asm/perf_event.h>
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070045#include <asm/mmu_context.h>
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010046#include <asm/mshyperv.h>
Benjamin Thielb10c3072020-01-23 18:29:45 +010047#include <asm/mwait.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080048#include <asm/spec-ctrl.h>
49#include <asm/virtext.h>
50#include <asm/vmx.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080051
Sean Christopherson3077c192018-12-03 13:53:02 -080052#include "capabilities.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080053#include "cpuid.h"
Sean Christopherson4cebd742018-12-03 13:52:58 -080054#include "evmcs.h"
Vitaly Kuznetsov05f04ae2021-01-26 14:48:09 +010055#include "hyperv.h"
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000056#include "kvm_onhyperv.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080057#include "irq.h"
58#include "kvm_cache_regs.h"
59#include "lapic.h"
60#include "mmu.h"
Sean Christopherson55d23752018-12-03 13:53:18 -080061#include "nested.h"
Wei Huang25462f72015-06-19 15:45:05 +020062#include "pmu.h"
Sean Christopherson9798adb2021-04-12 16:21:38 +120063#include "sgx.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080064#include "trace.h"
Sean Christophersoncb1d4742018-12-03 13:53:04 -080065#include "vmcs.h"
Sean Christopherson609363c2018-12-03 13:53:05 -080066#include "vmcs12.h"
Sean Christopherson89b0c9f2018-12-03 13:53:07 -080067#include "vmx.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080068#include "x86.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030069
Avi Kivity6aa8b732006-12-10 02:21:36 -080070MODULE_AUTHOR("Qumranet");
71MODULE_LICENSE("GPL");
72
Valdis Klētnieks575b2552020-02-27 21:49:52 -050073#ifdef MODULE
Josh Triplette9bda3b2012-03-20 23:33:51 -070074static const struct x86_cpu_id vmx_cpu_id[] = {
Thomas Gleixner320debe2020-03-20 14:13:50 +010075 X86_MATCH_FEATURE(X86_FEATURE_VMX, NULL),
Josh Triplette9bda3b2012-03-20 23:33:51 -070076 {}
77};
78MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
Valdis Klētnieks575b2552020-02-27 21:49:52 -050079#endif
Josh Triplette9bda3b2012-03-20 23:33:51 -070080
Sean Christopherson2c4fd912018-12-03 13:53:03 -080081bool __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020082module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080083
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010084static bool __read_mostly enable_vnmi = 1;
85module_param_named(vnmi, enable_vnmi, bool, S_IRUGO);
86
Sean Christopherson2c4fd912018-12-03 13:53:03 -080087bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020088module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020089
Sean Christopherson2c4fd912018-12-03 13:53:03 -080090bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020091module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080092
Sean Christopherson2c4fd912018-12-03 13:53:03 -080093bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070094module_param_named(unrestricted_guest,
95 enable_unrestricted_guest, bool, S_IRUGO);
96
Sean Christopherson2c4fd912018-12-03 13:53:03 -080097bool __read_mostly enable_ept_ad_bits = 1;
Xudong Hao83c3a332012-05-28 19:33:35 +080098module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
99
Avi Kivitya27685c2012-06-12 20:30:18 +0300100static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +0200101module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300102
Rusty Russell476bc002012-01-13 09:32:18 +1030103static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +0300104module_param(fasteoi, bool, S_IRUGO);
105
Yang Zhang01e439b2013-04-11 19:25:12 +0800106module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +0800107
Nadav Har'El801d3422011-05-25 23:02:23 +0300108/*
109 * If nested=1, nested virtualization is supported, i.e., guests may use
110 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
111 * use VMX instructions.
112 */
Paolo Bonzini1e58e5e2018-10-17 00:55:22 +0200113static bool __read_mostly nested = 1;
Nadav Har'El801d3422011-05-25 23:02:23 +0300114module_param(nested, bool, S_IRUGO);
115
Sean Christopherson2c4fd912018-12-03 13:53:03 -0800116bool __read_mostly enable_pml = 1;
Kai Huang843e4332015-01-28 10:54:28 +0800117module_param_named(pml, enable_pml, bool, S_IRUGO);
118
Paolo Bonzini6f2f8452019-05-20 15:34:35 +0200119static bool __read_mostly dump_invalid_vmcs = 0;
120module_param(dump_invalid_vmcs, bool, 0644);
121
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100122#define MSR_BITMAP_MODE_X2APIC 1
123#define MSR_BITMAP_MODE_X2APIC_APICV 2
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100124
Haozhong Zhang64903d62015-10-20 15:39:09 +0800125#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
126
Yunhong Jiang64672c92016-06-13 14:19:59 -0700127/* Guest_tsc -> host_tsc conversion requires 64-bit division. */
128static int __read_mostly cpu_preemption_timer_multi;
129static bool __read_mostly enable_preemption_timer = 1;
130#ifdef CONFIG_X86_64
131module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
132#endif
133
Mohammed Gamalb96e6502020-09-03 16:11:22 +0200134extern bool __read_mostly allow_smaller_maxphyaddr;
135module_param(allow_smaller_maxphyaddr, bool, S_IRUGO);
136
Sean Christopherson3de63472018-07-13 08:42:30 -0700137#define KVM_VM_CR0_ALWAYS_OFF (X86_CR0_NW | X86_CR0_CD)
Sean Christopherson1706bd02018-03-05 12:04:38 -0800138#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR0_NE
139#define KVM_VM_CR0_ALWAYS_ON \
Sean Christophersonee5a5582021-07-13 09:32:59 -0700140 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200141
Sean Christopherson5dc1f042018-03-05 12:04:39 -0800142#define KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR4_VMXE
Avi Kivitycdc0e242009-12-06 17:21:14 +0200143#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
144#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
145
Avi Kivity78ac8b42010-04-08 18:19:35 +0300146#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
147
Chao Pengbf8c55d2018-10-24 16:05:14 +0800148#define MSR_IA32_RTIT_STATUS_MASK (~(RTIT_STATUS_FILTEREN | \
149 RTIT_STATUS_CONTEXTEN | RTIT_STATUS_TRIGGEREN | \
150 RTIT_STATUS_ERROR | RTIT_STATUS_STOPPED | \
151 RTIT_STATUS_BYTECNT))
152
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800153/*
Alexander Graf3eb90012020-09-25 16:34:20 +0200154 * List of MSRs that can be directly passed to the guest.
155 * In addition to these x2apic and PT MSRs are handled specially.
156 */
157static u32 vmx_possible_passthrough_msrs[MAX_POSSIBLE_PASSTHROUGH_MSRS] = {
158 MSR_IA32_SPEC_CTRL,
159 MSR_IA32_PRED_CMD,
160 MSR_IA32_TSC,
Sean Christophersondbdd0962021-04-21 19:38:31 -0700161#ifdef CONFIG_X86_64
Alexander Graf3eb90012020-09-25 16:34:20 +0200162 MSR_FS_BASE,
163 MSR_GS_BASE,
164 MSR_KERNEL_GS_BASE,
Kevin Tianb5274b12022-01-05 04:35:32 -0800165 MSR_IA32_XFD,
Jing Liu61f20812022-01-05 04:35:25 -0800166 MSR_IA32_XFD_ERR,
Sean Christophersondbdd0962021-04-21 19:38:31 -0700167#endif
Alexander Graf3eb90012020-09-25 16:34:20 +0200168 MSR_IA32_SYSENTER_CS,
169 MSR_IA32_SYSENTER_ESP,
170 MSR_IA32_SYSENTER_EIP,
171 MSR_CORE_C1_RES,
172 MSR_CORE_C3_RESIDENCY,
173 MSR_CORE_C6_RESIDENCY,
174 MSR_CORE_C7_RESIDENCY,
175};
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800176
177/*
178 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
179 * ple_gap: upper bound on the amount of time between two successive
180 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500181 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800182 * ple_window: upper bound on the amount of time a guest is allowed to execute
183 * in a PAUSE loop. Tests indicate that most spinlocks are held for
184 * less than 2^12 cycles
185 * Time is measured based on a counter that runs at the same rate as the TSC,
186 * refer SDM volume 3b section 21.6.13 & 22.1.3.
187 */
Babu Mogerc8e88712018-03-16 16:37:24 -0400188static unsigned int ple_gap = KVM_DEFAULT_PLE_GAP;
Luiz Capitulinoa87c99e2018-11-23 12:02:14 -0500189module_param(ple_gap, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200190
Babu Moger7fbc85a2018-03-16 16:37:22 -0400191static unsigned int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
192module_param(ple_window, uint, 0444);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800193
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200194/* Default doubles per-vcpu window every exit. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400195static unsigned int ple_window_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400196module_param(ple_window_grow, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200197
198/* Default resets per-vcpu window every exit to ple_window. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400199static unsigned int ple_window_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400200module_param(ple_window_shrink, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200201
202/* Default is to compute the maximum so we can never overflow. */
Babu Moger7fbc85a2018-03-16 16:37:22 -0400203static unsigned int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
204module_param(ple_window_max, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200205
Chao Pengf99e3da2018-10-24 16:05:10 +0800206/* Default is SYSTEM mode, 1 for host-guest mode */
207int __read_mostly pt_mode = PT_MODE_SYSTEM;
208module_param(pt_mode, int, S_IRUGO);
209
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200210static DEFINE_STATIC_KEY_FALSE(vmx_l1d_should_flush);
Nicolai Stange427362a2018-07-21 22:25:00 +0200211static DEFINE_STATIC_KEY_FALSE(vmx_l1d_flush_cond);
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200212static DEFINE_MUTEX(vmx_l1d_flush_mutex);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200213
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200214/* Storage for pre module init parameter parsing */
215static enum vmx_l1d_flush_state __read_mostly vmentry_l1d_flush_param = VMENTER_L1D_FLUSH_AUTO;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200216
217static const struct {
218 const char *option;
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200219 bool for_parse;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200220} vmentry_l1d_param[] = {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200221 [VMENTER_L1D_FLUSH_AUTO] = {"auto", true},
222 [VMENTER_L1D_FLUSH_NEVER] = {"never", true},
223 [VMENTER_L1D_FLUSH_COND] = {"cond", true},
224 [VMENTER_L1D_FLUSH_ALWAYS] = {"always", true},
225 [VMENTER_L1D_FLUSH_EPT_DISABLED] = {"EPT disabled", false},
226 [VMENTER_L1D_FLUSH_NOT_REQUIRED] = {"not required", false},
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200227};
228
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200229#define L1D_CACHE_ORDER 4
230static void *vmx_l1d_flush_pages;
231
232static int vmx_setup_l1d_flush(enum vmx_l1d_flush_state l1tf)
233{
234 struct page *page;
Nicolai Stange288d1522018-07-18 19:07:38 +0200235 unsigned int i;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200236
Waiman Long19a36d32019-08-26 15:30:23 -0400237 if (!boot_cpu_has_bug(X86_BUG_L1TF)) {
238 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_NOT_REQUIRED;
239 return 0;
240 }
241
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200242 if (!enable_ept) {
243 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_EPT_DISABLED;
244 return 0;
245 }
246
Yi Wangd806afa2018-08-16 13:42:39 +0800247 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES)) {
248 u64 msr;
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200249
Yi Wangd806afa2018-08-16 13:42:39 +0800250 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, msr);
251 if (msr & ARCH_CAP_SKIP_VMENTRY_L1DFLUSH) {
252 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_NOT_REQUIRED;
253 return 0;
254 }
255 }
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200256
Jiri Kosinad90a7a02018-07-13 16:23:25 +0200257 /* If set to auto use the default l1tf mitigation method */
258 if (l1tf == VMENTER_L1D_FLUSH_AUTO) {
259 switch (l1tf_mitigation) {
260 case L1TF_MITIGATION_OFF:
261 l1tf = VMENTER_L1D_FLUSH_NEVER;
262 break;
263 case L1TF_MITIGATION_FLUSH_NOWARN:
264 case L1TF_MITIGATION_FLUSH:
265 case L1TF_MITIGATION_FLUSH_NOSMT:
266 l1tf = VMENTER_L1D_FLUSH_COND;
267 break;
268 case L1TF_MITIGATION_FULL:
269 case L1TF_MITIGATION_FULL_FORCE:
270 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
271 break;
272 }
273 } else if (l1tf_mitigation == L1TF_MITIGATION_FULL_FORCE) {
274 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
275 }
276
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200277 if (l1tf != VMENTER_L1D_FLUSH_NEVER && !vmx_l1d_flush_pages &&
278 !boot_cpu_has(X86_FEATURE_FLUSH_L1D)) {
Ben Gardon41836832019-02-11 11:02:52 -0800279 /*
280 * This allocation for vmx_l1d_flush_pages is not tied to a VM
281 * lifetime and so should not be charged to a memcg.
282 */
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200283 page = alloc_pages(GFP_KERNEL, L1D_CACHE_ORDER);
284 if (!page)
285 return -ENOMEM;
286 vmx_l1d_flush_pages = page_address(page);
Nicolai Stange288d1522018-07-18 19:07:38 +0200287
288 /*
289 * Initialize each page with a different pattern in
290 * order to protect against KSM in the nested
291 * virtualization case.
292 */
293 for (i = 0; i < 1u << L1D_CACHE_ORDER; ++i) {
294 memset(vmx_l1d_flush_pages + i * PAGE_SIZE, i + 1,
295 PAGE_SIZE);
296 }
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200297 }
298
299 l1tf_vmx_mitigation = l1tf;
300
Thomas Gleixner895ae472018-07-13 16:23:22 +0200301 if (l1tf != VMENTER_L1D_FLUSH_NEVER)
302 static_branch_enable(&vmx_l1d_should_flush);
303 else
304 static_branch_disable(&vmx_l1d_should_flush);
Thomas Gleixner4c6523e2018-07-13 16:23:20 +0200305
Nicolai Stange427362a2018-07-21 22:25:00 +0200306 if (l1tf == VMENTER_L1D_FLUSH_COND)
307 static_branch_enable(&vmx_l1d_flush_cond);
Thomas Gleixner895ae472018-07-13 16:23:22 +0200308 else
Nicolai Stange427362a2018-07-21 22:25:00 +0200309 static_branch_disable(&vmx_l1d_flush_cond);
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200310 return 0;
311}
312
313static int vmentry_l1d_flush_parse(const char *s)
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200314{
315 unsigned int i;
316
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200317 if (s) {
318 for (i = 0; i < ARRAY_SIZE(vmentry_l1d_param); i++) {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200319 if (vmentry_l1d_param[i].for_parse &&
320 sysfs_streq(s, vmentry_l1d_param[i].option))
321 return i;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200322 }
323 }
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200324 return -EINVAL;
325}
326
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200327static int vmentry_l1d_flush_set(const char *s, const struct kernel_param *kp)
328{
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200329 int l1tf, ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200330
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200331 l1tf = vmentry_l1d_flush_parse(s);
332 if (l1tf < 0)
333 return l1tf;
334
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200335 if (!boot_cpu_has(X86_BUG_L1TF))
336 return 0;
337
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200338 /*
339 * Has vmx_init() run already? If not then this is the pre init
340 * parameter parsing. In that case just store the value and let
341 * vmx_init() do the proper setup after enable_ept has been
342 * established.
343 */
344 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_AUTO) {
345 vmentry_l1d_flush_param = l1tf;
346 return 0;
347 }
348
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200349 mutex_lock(&vmx_l1d_flush_mutex);
350 ret = vmx_setup_l1d_flush(l1tf);
351 mutex_unlock(&vmx_l1d_flush_mutex);
352 return ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200353}
354
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200355static int vmentry_l1d_flush_get(char *s, const struct kernel_param *kp)
356{
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200357 if (WARN_ON_ONCE(l1tf_vmx_mitigation >= ARRAY_SIZE(vmentry_l1d_param)))
358 return sprintf(s, "???\n");
359
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200360 return sprintf(s, "%s\n", vmentry_l1d_param[l1tf_vmx_mitigation].option);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200361}
362
363static const struct kernel_param_ops vmentry_l1d_flush_ops = {
364 .set = vmentry_l1d_flush_set,
365 .get = vmentry_l1d_flush_get,
366};
Thomas Gleixner895ae472018-07-13 16:23:22 +0200367module_param_cb(vmentry_l1d_flush, &vmentry_l1d_flush_ops, NULL, 0644);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200368
Gleb Natapovd99e4152012-12-20 16:57:45 +0200369static u32 vmx_segment_access_rights(struct kvm_segment *var);
Avi Kivity75880a02007-06-20 11:20:04 +0300370
Sean Christopherson453eafb2018-12-20 12:25:17 -0800371void vmx_vmexit(void);
372
Sean Christopherson52a9fcb2019-07-19 13:41:07 -0700373#define vmx_insn_failed(fmt...) \
374do { \
375 WARN_ONCE(1, fmt); \
376 pr_warn_ratelimited(fmt); \
377} while (0)
378
Sean Christopherson6e202092019-07-19 13:41:08 -0700379asmlinkage void vmread_error(unsigned long field, bool fault)
380{
381 if (fault)
382 kvm_spurious_fault();
383 else
384 vmx_insn_failed("kvm: vmread failed: field=%lx\n", field);
385}
386
Sean Christopherson52a9fcb2019-07-19 13:41:07 -0700387noinline void vmwrite_error(unsigned long field, unsigned long value)
388{
389 vmx_insn_failed("kvm: vmwrite failed: field=%lx val=%lx err=%d\n",
390 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
391}
392
393noinline void vmclear_error(struct vmcs *vmcs, u64 phys_addr)
394{
395 vmx_insn_failed("kvm: vmclear failed: %p/%llx\n", vmcs, phys_addr);
396}
397
398noinline void vmptrld_error(struct vmcs *vmcs, u64 phys_addr)
399{
400 vmx_insn_failed("kvm: vmptrld failed: %p/%llx\n", vmcs, phys_addr);
401}
402
403noinline void invvpid_error(unsigned long ext, u16 vpid, gva_t gva)
404{
405 vmx_insn_failed("kvm: invvpid failed: ext=0x%lx vpid=%u gva=0x%lx\n",
406 ext, vpid, gva);
407}
408
409noinline void invept_error(unsigned long ext, u64 eptp, gpa_t gpa)
410{
411 vmx_insn_failed("kvm: invept failed: ext=0x%lx eptp=%llx gpa=0x%llx\n",
412 ext, eptp, gpa);
413}
414
Avi Kivity6aa8b732006-12-10 02:21:36 -0800415static DEFINE_PER_CPU(struct vmcs *, vmxarea);
Sean Christopherson75edce82018-12-03 13:53:06 -0800416DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300417/*
418 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
419 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
420 */
421static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800422
Sheng Yang2384d2b2008-01-17 15:14:33 +0800423static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
424static DEFINE_SPINLOCK(vmx_vpid_lock);
425
Sean Christopherson3077c192018-12-03 13:53:02 -0800426struct vmcs_config vmcs_config;
427struct vmx_capability vmx_capability;
Sheng Yangd56f5462008-04-25 10:13:16 +0800428
Avi Kivity6aa8b732006-12-10 02:21:36 -0800429#define VMX_SEGMENT_FIELD(seg) \
430 [VCPU_SREG_##seg] = { \
431 .selector = GUEST_##seg##_SELECTOR, \
432 .base = GUEST_##seg##_BASE, \
433 .limit = GUEST_##seg##_LIMIT, \
434 .ar_bytes = GUEST_##seg##_AR_BYTES, \
435 }
436
Mathias Krause772e0312012-08-30 01:30:19 +0200437static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800438 unsigned selector;
439 unsigned base;
440 unsigned limit;
441 unsigned ar_bytes;
442} kvm_vmx_segment_fields[] = {
443 VMX_SEGMENT_FIELD(CS),
444 VMX_SEGMENT_FIELD(DS),
445 VMX_SEGMENT_FIELD(ES),
446 VMX_SEGMENT_FIELD(FS),
447 VMX_SEGMENT_FIELD(GS),
448 VMX_SEGMENT_FIELD(SS),
449 VMX_SEGMENT_FIELD(TR),
450 VMX_SEGMENT_FIELD(LDTR),
451};
452
Sean Christophersonec0241f2020-04-15 13:34:52 -0700453static inline void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
454{
455 vmx->segment_cache.bitmask = 0;
456}
457
Sean Christopherson23420802019-04-19 22:50:57 -0700458static unsigned long host_idt_base;
Avi Kivity26bb0982009-09-07 11:14:12 +0300459
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +0100460#if IS_ENABLED(CONFIG_HYPERV)
461static bool __read_mostly enlightened_vmcs = true;
462module_param(enlightened_vmcs, bool, 0444);
463
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800464static int hv_enable_direct_tlbflush(struct kvm_vcpu *vcpu)
465{
466 struct hv_enlightened_vmcs *evmcs;
467 struct hv_partition_assist_pg **p_hv_pa_pg =
Vitaly Kuznetsov05f04ae2021-01-26 14:48:09 +0100468 &to_kvm_hv(vcpu->kvm)->hv_pa_pg;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800469 /*
470 * Synthetic VM-Exit is not enabled in current code and so All
471 * evmcs in singe VM shares same assist page.
472 */
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200473 if (!*p_hv_pa_pg)
Sean Christophersoneba04b22021-03-30 19:30:25 -0700474 *p_hv_pa_pg = kzalloc(PAGE_SIZE, GFP_KERNEL_ACCOUNT);
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200475
476 if (!*p_hv_pa_pg)
477 return -ENOMEM;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800478
479 evmcs = (struct hv_enlightened_vmcs *)to_vmx(vcpu)->loaded_vmcs->vmcs;
480
481 evmcs->partition_assist_page =
482 __pa(*p_hv_pa_pg);
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200483 evmcs->hv_vm_id = (unsigned long)vcpu->kvm;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800484 evmcs->hv_enlightenments_control.nested_flush_hypercall = 1;
485
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800486 return 0;
487}
488
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +0100489#endif /* IS_ENABLED(CONFIG_HYPERV) */
490
Yunhong Jiang64672c92016-06-13 14:19:59 -0700491/*
492 * Comment's format: document - errata name - stepping - processor name.
493 * Refer from
494 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
495 */
496static u32 vmx_preemption_cpu_tfms[] = {
497/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
4980x000206E6,
499/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
500/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
501/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
5020x00020652,
503/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
5040x00020655,
505/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
506/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
507/*
508 * 320767.pdf - AAP86 - B1 -
509 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
510 */
5110x000106E5,
512/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
5130x000106A0,
514/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
5150x000106A1,
516/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
5170x000106A4,
518 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
519 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
520 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
5210x000106A5,
Wei Huang3d82c562018-12-03 14:13:32 -0600522 /* Xeon E3-1220 V2 */
5230x000306A8,
Yunhong Jiang64672c92016-06-13 14:19:59 -0700524};
525
526static inline bool cpu_has_broken_vmx_preemption_timer(void)
527{
528 u32 eax = cpuid_eax(0x00000001), i;
529
530 /* Clear the reserved bits */
531 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +0000532 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -0700533 if (eax == vmx_preemption_cpu_tfms[i])
534 return true;
535
536 return false;
537}
538
Paolo Bonzini35754c92015-07-29 12:05:37 +0200539static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800540{
Paolo Bonzini35754c92015-07-29 12:05:37 +0200541 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800542}
543
Sheng Yang04547152009-04-01 15:52:31 +0800544static inline bool report_flexpriority(void)
545{
546 return flexpriority_enabled;
547}
548
Alexander Graf3eb90012020-09-25 16:34:20 +0200549static int possible_passthrough_msr_slot(u32 msr)
550{
551 u32 i;
552
553 for (i = 0; i < ARRAY_SIZE(vmx_possible_passthrough_msrs); i++)
554 if (vmx_possible_passthrough_msrs[i] == msr)
555 return i;
556
557 return -ENOENT;
558}
559
560static bool is_valid_passthrough_msr(u32 msr)
561{
562 bool r;
563
564 switch (msr) {
565 case 0x800 ... 0x8ff:
566 /* x2APIC MSRs. These are handled in vmx_update_msr_bitmap_x2apic() */
567 return true;
568 case MSR_IA32_RTIT_STATUS:
569 case MSR_IA32_RTIT_OUTPUT_BASE:
570 case MSR_IA32_RTIT_OUTPUT_MASK:
571 case MSR_IA32_RTIT_CR3_MATCH:
572 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
573 /* PT MSRs. These are handled in pt_update_intercept_for_msr() */
Like Xu1b5ac3222021-02-01 13:10:34 +0800574 case MSR_LBR_SELECT:
575 case MSR_LBR_TOS:
576 case MSR_LBR_INFO_0 ... MSR_LBR_INFO_0 + 31:
577 case MSR_LBR_NHM_FROM ... MSR_LBR_NHM_FROM + 31:
578 case MSR_LBR_NHM_TO ... MSR_LBR_NHM_TO + 31:
579 case MSR_LBR_CORE_FROM ... MSR_LBR_CORE_FROM + 8:
580 case MSR_LBR_CORE_TO ... MSR_LBR_CORE_TO + 8:
581 /* LBR MSRs. These are handled in vmx_update_intercept_for_lbr_msrs() */
Alexander Graf3eb90012020-09-25 16:34:20 +0200582 return true;
583 }
584
585 r = possible_passthrough_msr_slot(msr) != -ENOENT;
586
587 WARN(!r, "Invalid MSR %x, please adapt vmx_possible_passthrough_msrs[]", msr);
588
589 return r;
590}
591
Sean Christophersond85a8032020-09-23 11:04:06 -0700592struct vmx_uret_msr *vmx_find_uret_msr(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300593{
594 int i;
595
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700596 i = kvm_find_user_return_msr(msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300597 if (i >= 0)
Sean Christophersoneb3db1b2020-09-23 11:03:58 -0700598 return &vmx->guest_uret_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000599 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800600}
601
Sean Christopherson7bf662b2020-09-23 11:04:07 -0700602static int vmx_set_guest_uret_msr(struct vcpu_vmx *vmx,
603 struct vmx_uret_msr *msr, u64 data)
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500604{
Sean Christophersonee9d22e2021-05-04 10:17:28 -0700605 unsigned int slot = msr - vmx->guest_uret_msrs;
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500606 int ret = 0;
607
Sean Christophersonee9d22e2021-05-04 10:17:28 -0700608 if (msr->load_into_hardware) {
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500609 preempt_disable();
Lai Jiangshan3ab4ac82021-11-18 19:08:02 +0800610 ret = kvm_set_user_return_msr(slot, data, msr->mask);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500611 preempt_enable();
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500612 }
Lai Jiangshan3ab4ac82021-11-18 19:08:02 +0800613 if (!ret)
614 msr->data = data;
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500615 return ret;
616}
617
Dave Young2965faa2015-09-09 15:38:55 -0700618#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800619static void crash_vmclear_local_loaded_vmcss(void)
620{
621 int cpu = raw_smp_processor_id();
622 struct loaded_vmcs *v;
623
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800624 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
625 loaded_vmcss_on_cpu_link)
626 vmcs_clear(v->vmcs);
627}
Dave Young2965faa2015-09-09 15:38:55 -0700628#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800629
Nadav Har'Eld462b812011-05-24 15:26:10 +0300630static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800631{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300632 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800633 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800634
Nadav Har'Eld462b812011-05-24 15:26:10 +0300635 if (loaded_vmcs->cpu != cpu)
636 return; /* vcpu migration can race with cpu offline */
637 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800638 per_cpu(current_vmcs, cpu) = NULL;
Sean Christopherson31603d42020-03-21 12:37:49 -0700639
640 vmcs_clear(loaded_vmcs->vmcs);
641 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
642 vmcs_clear(loaded_vmcs->shadow_vmcs);
643
Nadav Har'Eld462b812011-05-24 15:26:10 +0300644 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +0800645
646 /*
Sean Christopherson31603d42020-03-21 12:37:49 -0700647 * Ensure all writes to loaded_vmcs, including deleting it from its
648 * current percpu list, complete before setting loaded_vmcs->vcpu to
649 * -1, otherwise a different cpu can see vcpu == -1 first and add
650 * loaded_vmcs to its percpu list before it's deleted from this cpu's
651 * list. Pairs with the smp_rmb() in vmx_vcpu_load_vmcs().
Xiao Guangrong5a560f82012-11-28 20:54:14 +0800652 */
653 smp_wmb();
654
Sean Christopherson31603d42020-03-21 12:37:49 -0700655 loaded_vmcs->cpu = -1;
656 loaded_vmcs->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800657}
658
Sean Christopherson89b0c9f2018-12-03 13:53:07 -0800659void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800660{
Xiao Guangronge6c7d322012-11-28 20:53:15 +0800661 int cpu = loaded_vmcs->cpu;
662
663 if (cpu != -1)
664 smp_call_function_single(cpu,
665 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800666}
667
Avi Kivity2fb92db2011-04-27 19:42:18 +0300668static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
669 unsigned field)
670{
671 bool ret;
672 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
673
Sean Christophersoncb3c1e22019-09-27 14:45:22 -0700674 if (!kvm_register_is_available(&vmx->vcpu, VCPU_EXREG_SEGMENTS)) {
675 kvm_register_mark_available(&vmx->vcpu, VCPU_EXREG_SEGMENTS);
Avi Kivity2fb92db2011-04-27 19:42:18 +0300676 vmx->segment_cache.bitmask = 0;
677 }
678 ret = vmx->segment_cache.bitmask & mask;
679 vmx->segment_cache.bitmask |= mask;
680 return ret;
681}
682
683static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
684{
685 u16 *p = &vmx->segment_cache.seg[seg].selector;
686
687 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
688 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
689 return *p;
690}
691
692static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
693{
694 ulong *p = &vmx->segment_cache.seg[seg].base;
695
696 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
697 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
698 return *p;
699}
700
701static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
702{
703 u32 *p = &vmx->segment_cache.seg[seg].limit;
704
705 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
706 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
707 return *p;
708}
709
710static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
711{
712 u32 *p = &vmx->segment_cache.seg[seg].ar;
713
714 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
715 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
716 return *p;
717}
718
Jason Baronb6a7cc32021-01-14 22:27:54 -0500719void vmx_update_exception_bitmap(struct kvm_vcpu *vcpu)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300720{
721 u32 eb;
722
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100723 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -0800724 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Liran Alon9e869482018-03-12 13:12:51 +0200725 /*
726 * Guest access to VMware backdoor ports could legitimately
727 * trigger #GP because of TSS I/O permission bitmap.
728 * We intercept those #GP and allow access to them anyway
729 * as VMware does.
730 */
731 if (enable_vmware_backdoor)
732 eb |= (1u << GP_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100733 if ((vcpu->guest_debug &
734 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
735 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
736 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300737 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300738 eb = ~0;
Paolo Bonzinia0c13432020-07-10 17:48:08 +0200739 if (!vmx_need_pf_intercept(vcpu))
Miaohe Lin49f933d2020-02-27 11:20:54 +0800740 eb &= ~(1u << PF_VECTOR);
Nadav Har'El36cf24e2011-05-25 23:15:08 +0300741
742 /* When we are running a nested L2 guest and L1 specified for it a
743 * certain exception bitmap, we must trap the same exceptions and pass
744 * them to L1. When running L2, we will only handle the exceptions
745 * specified above if L1 did not want them.
746 */
747 if (is_guest_mode(vcpu))
748 eb |= get_vmcs12(vcpu)->exception_bitmap;
Paolo Bonzinib502e6e2020-09-29 08:31:32 -0400749 else {
Jim Mattson5140bc72021-06-18 16:59:41 -0700750 int mask = 0, match = 0;
751
752 if (enable_ept && (eb & (1u << PF_VECTOR))) {
753 /*
754 * If EPT is enabled, #PF is currently only intercepted
755 * if MAXPHYADDR is smaller on the guest than on the
756 * host. In that case we only care about present,
757 * non-reserved faults. For vmcs02, however, PFEC_MASK
758 * and PFEC_MATCH are set in prepare_vmcs02_rare.
759 */
760 mask = PFERR_PRESENT_MASK | PFERR_RSVD_MASK;
761 match = PFERR_PRESENT_MASK;
762 }
Paolo Bonzinib502e6e2020-09-29 08:31:32 -0400763 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, mask);
Jim Mattson5140bc72021-06-18 16:59:41 -0700764 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, match);
Paolo Bonzinib502e6e2020-09-29 08:31:32 -0400765 }
Nadav Har'El36cf24e2011-05-25 23:15:08 +0300766
Jing Liuec5be882022-01-05 04:35:23 -0800767 /*
Kevin Tianb5274b12022-01-05 04:35:32 -0800768 * Disabling xfd interception indicates that dynamic xfeatures
769 * might be used in the guest. Always trap #NM in this case
770 * to save guest xfd_err timely.
Jing Liuec5be882022-01-05 04:35:23 -0800771 */
Kevin Tianb5274b12022-01-05 04:35:32 -0800772 if (vcpu->arch.xfd_no_write_intercept)
Jing Liuec5be882022-01-05 04:35:23 -0800773 eb |= (1u << NM_VECTOR);
774
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300775 vmcs_write32(EXCEPTION_BITMAP, eb);
776}
777
Ashok Raj15d45072018-02-01 22:59:43 +0100778/*
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100779 * Check if MSR is intercepted for currently loaded MSR bitmap.
780 */
Sean Christopherson7dfbc622021-11-09 01:30:44 +0000781static bool msr_write_intercepted(struct vcpu_vmx *vmx, u32 msr)
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100782{
Sean Christopherson7dfbc622021-11-09 01:30:44 +0000783 if (!(exec_controls_get(vmx) & CPU_BASED_USE_MSR_BITMAPS))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100784 return true;
785
Sean Christopherson67f4b992021-11-09 01:30:45 +0000786 return vmx_test_msr_bitmap_write(vmx->loaded_vmcs->msr_bitmap,
787 MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100788}
789
Gleb Natapov2961e8762013-11-25 15:37:13 +0200790static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
791 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200792{
Gleb Natapov2961e8762013-11-25 15:37:13 +0200793 vm_entry_controls_clearbit(vmx, entry);
794 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200795}
796
Sean Christophersona128a932020-09-23 11:03:57 -0700797int vmx_find_loadstore_msr_slot(struct vmx_msrs *m, u32 msr)
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400798{
799 unsigned int i;
800
801 for (i = 0; i < m->nr; ++i) {
802 if (m->val[i].index == msr)
803 return i;
804 }
805 return -ENOENT;
806}
807
Avi Kivity61d2ef22010-04-28 16:40:38 +0300808static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
809{
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400810 int i;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300811 struct msr_autoload *m = &vmx->msr_autoload;
812
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200813 switch (msr) {
814 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800815 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200816 clear_atomic_switch_msr_special(vmx,
817 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200818 VM_EXIT_LOAD_IA32_EFER);
819 return;
820 }
821 break;
822 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800823 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200824 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200825 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
826 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
827 return;
828 }
829 break;
Avi Kivity110312c2010-12-21 12:54:20 +0200830 }
Sean Christophersona128a932020-09-23 11:03:57 -0700831 i = vmx_find_loadstore_msr_slot(&m->guest, msr);
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400832 if (i < 0)
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400833 goto skip_guest;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400834 --m->guest.nr;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400835 m->guest.val[i] = m->guest.val[m->guest.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400836 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Avi Kivity110312c2010-12-21 12:54:20 +0200837
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400838skip_guest:
Sean Christophersona128a932020-09-23 11:03:57 -0700839 i = vmx_find_loadstore_msr_slot(&m->host, msr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400840 if (i < 0)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300841 return;
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400842
843 --m->host.nr;
844 m->host.val[i] = m->host.val[m->host.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400845 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300846}
847
Gleb Natapov2961e8762013-11-25 15:37:13 +0200848static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
849 unsigned long entry, unsigned long exit,
850 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
851 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200852{
853 vmcs_write64(guest_val_vmcs, guest_val);
Sean Christopherson5a5e8a12018-09-26 09:23:56 -0700854 if (host_val_vmcs != HOST_IA32_EFER)
855 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +0200856 vm_entry_controls_setbit(vmx, entry);
857 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200858}
859
Avi Kivity61d2ef22010-04-28 16:40:38 +0300860static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400861 u64 guest_val, u64 host_val, bool entry_only)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300862{
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400863 int i, j = 0;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300864 struct msr_autoload *m = &vmx->msr_autoload;
865
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200866 switch (msr) {
867 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800868 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200869 add_atomic_switch_msr_special(vmx,
870 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200871 VM_EXIT_LOAD_IA32_EFER,
872 GUEST_IA32_EFER,
873 HOST_IA32_EFER,
874 guest_val, host_val);
875 return;
876 }
877 break;
878 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800879 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200880 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200881 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
882 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
883 GUEST_IA32_PERF_GLOBAL_CTRL,
884 HOST_IA32_PERF_GLOBAL_CTRL,
885 guest_val, host_val);
886 return;
887 }
888 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +0100889 case MSR_IA32_PEBS_ENABLE:
890 /* PEBS needs a quiescent period after being disabled (to write
891 * a record). Disabling PEBS through VMX MSR swapping doesn't
892 * provide that period, so a CPU could write host's record into
893 * guest's memory.
894 */
895 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +0200896 }
897
Sean Christophersona128a932020-09-23 11:03:57 -0700898 i = vmx_find_loadstore_msr_slot(&m->guest, msr);
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400899 if (!entry_only)
Sean Christophersona128a932020-09-23 11:03:57 -0700900 j = vmx_find_loadstore_msr_slot(&m->host, msr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300901
Sean Christophersonce833b22020-09-23 11:03:56 -0700902 if ((i < 0 && m->guest.nr == MAX_NR_LOADSTORE_MSRS) ||
903 (j < 0 && m->host.nr == MAX_NR_LOADSTORE_MSRS)) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +0200904 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +0200905 "Can't add msr %x\n", msr);
906 return;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300907 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400908 if (i < 0) {
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400909 i = m->guest.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400910 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400911 }
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400912 m->guest.val[i].index = msr;
913 m->guest.val[i].value = guest_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300914
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400915 if (entry_only)
916 return;
917
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400918 if (j < 0) {
919 j = m->host.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400920 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300921 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400922 m->host.val[j].index = msr;
923 m->host.val[j].value = host_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300924}
925
Sean Christopherson86e3e492020-09-23 11:04:04 -0700926static bool update_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +0300927{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100928 u64 guest_efer = vmx->vcpu.arch.efer;
929 u64 ignore_bits = 0;
Sean Christopherson86e3e492020-09-23 11:04:04 -0700930 int i;
Eddie Dong2cc51562007-05-21 07:28:09 +0300931
Paolo Bonzini9167ab72019-10-27 16:23:23 +0100932 /* Shadow paging assumes NX to be available. */
933 if (!enable_ept)
934 guest_efer |= EFER_NX;
Roel Kluin3a34a882009-08-04 02:08:45 -0700935
Avi Kivity51c6cf62007-08-29 03:48:05 +0300936 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100937 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +0300938 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100939 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300940#ifdef CONFIG_X86_64
941 ignore_bits |= EFER_LMA | EFER_LME;
942 /* SCE is meaningful only in long mode on Intel */
943 if (guest_efer & EFER_LMA)
944 ignore_bits &= ~(u64)EFER_SCE;
945#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +0300946
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -0800947 /*
948 * On EPT, we can't emulate NX, so we must switch EFER atomically.
949 * On CPUs that support "load IA32_EFER", always switch EFER
950 * atomically, since it's faster than switching it manually.
951 */
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800952 if (cpu_has_load_ia32_efer() ||
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -0800953 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +0300954 if (!(guest_efer & EFER_LMA))
955 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -0800956 if (guest_efer != host_efer)
957 add_atomic_switch_msr(vmx, MSR_EFER,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400958 guest_efer, host_efer, false);
Sean Christopherson02343cf2018-09-26 09:23:43 -0700959 else
960 clear_atomic_switch_msr(vmx, MSR_EFER);
Avi Kivity84ad33e2010-04-28 16:42:29 +0300961 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100962 }
Sean Christopherson86e3e492020-09-23 11:04:04 -0700963
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700964 i = kvm_find_user_return_msr(MSR_EFER);
Sean Christopherson86e3e492020-09-23 11:04:04 -0700965 if (i < 0)
966 return false;
967
968 clear_atomic_switch_msr(vmx, MSR_EFER);
969
970 guest_efer &= ~ignore_bits;
971 guest_efer |= host_efer & ignore_bits;
972
973 vmx->guest_uret_msrs[i].data = guest_efer;
974 vmx->guest_uret_msrs[i].mask = ~ignore_bits;
975
976 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300977}
978
Andy Lutomirskie28baea2017-02-20 08:56:11 -0800979#ifdef CONFIG_X86_32
980/*
981 * On 32-bit kernels, VM exits still load the FS and GS bases from the
982 * VMCS rather than the segment table. KVM uses this helper to figure
983 * out the current bases to poke them into the VMCS before entry.
984 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200985static unsigned long segment_base(u16 selector)
986{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800987 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200988 unsigned long v;
989
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800990 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200991 return 0;
992
Thomas Garnier45fc8752017-03-14 10:05:08 -0700993 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200994
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800995 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200996 u16 ldt_selector = kvm_read_ldt();
997
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800998 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200999 return 0;
1000
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001001 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001002 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001003 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001004 return v;
1005}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08001006#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001007
Sean Christophersone348ac72019-12-10 15:24:33 -08001008static inline bool pt_can_write_msr(struct vcpu_vmx *vmx)
1009{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001010 return vmx_pt_mode_is_host_guest() &&
Sean Christophersone348ac72019-12-10 15:24:33 -08001011 !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
1012}
1013
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07001014static inline bool pt_output_base_valid(struct kvm_vcpu *vcpu, u64 base)
1015{
1016 /* The base must be 128-byte aligned and a legal physical address. */
Sean Christopherson636e8b72021-02-03 16:01:10 -08001017 return kvm_vcpu_is_legal_aligned_gpa(vcpu, base, 128);
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07001018}
1019
Chao Peng2ef444f2018-10-24 16:05:12 +08001020static inline void pt_load_msr(struct pt_ctx *ctx, u32 addr_range)
1021{
1022 u32 i;
1023
1024 wrmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
1025 wrmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
1026 wrmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1027 wrmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1028 for (i = 0; i < addr_range; i++) {
1029 wrmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1030 wrmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1031 }
1032}
1033
1034static inline void pt_save_msr(struct pt_ctx *ctx, u32 addr_range)
1035{
1036 u32 i;
1037
1038 rdmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
1039 rdmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
1040 rdmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1041 rdmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1042 for (i = 0; i < addr_range; i++) {
1043 rdmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1044 rdmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1045 }
1046}
1047
1048static void pt_guest_enter(struct vcpu_vmx *vmx)
1049{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001050 if (vmx_pt_mode_is_system())
Chao Peng2ef444f2018-10-24 16:05:12 +08001051 return;
1052
Chao Peng2ef444f2018-10-24 16:05:12 +08001053 /*
Chao Pengb08c2892018-10-24 16:05:15 +08001054 * GUEST_IA32_RTIT_CTL is already set in the VMCS.
1055 * Save host state before VM entry.
Chao Peng2ef444f2018-10-24 16:05:12 +08001056 */
Chao Pengb08c2892018-10-24 16:05:15 +08001057 rdmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
Chao Peng2ef444f2018-10-24 16:05:12 +08001058 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
1059 wrmsrl(MSR_IA32_RTIT_CTL, 0);
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08001060 pt_save_msr(&vmx->pt_desc.host, vmx->pt_desc.num_address_ranges);
1061 pt_load_msr(&vmx->pt_desc.guest, vmx->pt_desc.num_address_ranges);
Chao Peng2ef444f2018-10-24 16:05:12 +08001062 }
1063}
1064
1065static void pt_guest_exit(struct vcpu_vmx *vmx)
1066{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001067 if (vmx_pt_mode_is_system())
Chao Peng2ef444f2018-10-24 16:05:12 +08001068 return;
1069
1070 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08001071 pt_save_msr(&vmx->pt_desc.guest, vmx->pt_desc.num_address_ranges);
1072 pt_load_msr(&vmx->pt_desc.host, vmx->pt_desc.num_address_ranges);
Chao Peng2ef444f2018-10-24 16:05:12 +08001073 }
1074
Xiaoyao Li2e6e0d62021-08-27 15:02:43 +08001075 /*
1076 * KVM requires VM_EXIT_CLEAR_IA32_RTIT_CTL to expose PT to the guest,
1077 * i.e. RTIT_CTL is always cleared on VM-Exit. Restore it if necessary.
1078 */
1079 if (vmx->pt_desc.host.ctl)
1080 wrmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
Chao Peng2ef444f2018-10-24 16:05:12 +08001081}
1082
Lai Jiangshana9f27052021-12-16 10:19:36 +08001083void vmx_set_vmcs_host_state(struct vmcs_host_state *host, unsigned long cr3,
1084 u16 fs_sel, u16 gs_sel,
1085 unsigned long fs_base, unsigned long gs_base)
Sean Christopherson13b964a2019-05-07 09:06:31 -07001086{
Lai Jiangshana9f27052021-12-16 10:19:36 +08001087 if (unlikely(cr3 != host->cr3)) {
1088 vmcs_writel(HOST_CR3, cr3);
1089 host->cr3 = cr3;
1090 }
Sean Christopherson13b964a2019-05-07 09:06:31 -07001091 if (unlikely(fs_sel != host->fs_sel)) {
1092 if (!(fs_sel & 7))
1093 vmcs_write16(HOST_FS_SELECTOR, fs_sel);
1094 else
1095 vmcs_write16(HOST_FS_SELECTOR, 0);
1096 host->fs_sel = fs_sel;
1097 }
1098 if (unlikely(gs_sel != host->gs_sel)) {
1099 if (!(gs_sel & 7))
1100 vmcs_write16(HOST_GS_SELECTOR, gs_sel);
1101 else
1102 vmcs_write16(HOST_GS_SELECTOR, 0);
1103 host->gs_sel = gs_sel;
1104 }
1105 if (unlikely(fs_base != host->fs_base)) {
1106 vmcs_writel(HOST_FS_BASE, fs_base);
1107 host->fs_base = fs_base;
1108 }
1109 if (unlikely(gs_base != host->gs_base)) {
1110 vmcs_writel(HOST_GS_BASE, gs_base);
1111 host->gs_base = gs_base;
1112 }
1113}
1114
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001115void vmx_prepare_switch_to_guest(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001116{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001117 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond7ee0392018-07-23 12:32:47 -07001118 struct vmcs_host_state *host_state;
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001119#ifdef CONFIG_X86_64
Vitaly Kuznetsov35060ed2018-03-13 18:48:05 +01001120 int cpu = raw_smp_processor_id();
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001121#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001122 unsigned long fs_base, gs_base;
1123 u16 fs_sel, gs_sel;
Avi Kivity26bb0982009-09-07 11:14:12 +03001124 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001125
Sean Christophersond264ee02018-08-27 15:21:12 -07001126 vmx->req_immediate_exit = false;
1127
Liran Alonf48b4712018-11-20 18:03:25 +02001128 /*
1129 * Note that guest MSRs to be saved/restored can also be changed
1130 * when guest state is loaded. This happens when guest transitions
1131 * to/from long-mode by setting MSR_EFER.LMA.
1132 */
Sean Christopherson658ece82020-09-23 11:04:01 -07001133 if (!vmx->guest_uret_msrs_loaded) {
1134 vmx->guest_uret_msrs_loaded = true;
Sean Christophersone5fda4b2021-05-04 10:17:32 -07001135 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001136 if (!vmx->guest_uret_msrs[i].load_into_hardware)
1137 continue;
1138
1139 kvm_set_user_return_msr(i,
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001140 vmx->guest_uret_msrs[i].data,
1141 vmx->guest_uret_msrs[i].mask);
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001142 }
Liran Alonf48b4712018-11-20 18:03:25 +02001143 }
wanpeng lic9dfd3f2020-02-17 18:37:43 +08001144
1145 if (vmx->nested.need_vmcs12_to_shadow_sync)
1146 nested_sync_vmcs12_to_shadow(vcpu);
1147
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001148 if (vmx->guest_state_loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001149 return;
1150
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001151 host_state = &vmx->loaded_vmcs->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001152
Avi Kivity33ed6322007-05-02 16:54:03 +03001153 /*
1154 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1155 * allow segment selectors with cpl > 0 or ti == 1.
1156 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07001157 host_state->ldt_sel = kvm_read_ldt();
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01001158
1159#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001160 savesegment(ds, host_state->ds_sel);
1161 savesegment(es, host_state->es_sel);
Sean Christophersone368b872018-07-23 12:32:41 -07001162
1163 gs_base = cpu_kernelmode_gs_base(cpu);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001164 if (likely(is_64bit_mm(current->mm))) {
Thomas Gleixner67580342020-05-28 16:13:52 -04001165 current_save_fsgs();
Sean Christophersone368b872018-07-23 12:32:41 -07001166 fs_sel = current->thread.fsindex;
1167 gs_sel = current->thread.gsindex;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001168 fs_base = current->thread.fsbase;
Sean Christophersone368b872018-07-23 12:32:41 -07001169 vmx->msr_host_kernel_gs_base = current->thread.gsbase;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001170 } else {
Sean Christophersone368b872018-07-23 12:32:41 -07001171 savesegment(fs, fs_sel);
1172 savesegment(gs, gs_sel);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001173 fs_base = read_msr(MSR_FS_BASE);
Sean Christophersone368b872018-07-23 12:32:41 -07001174 vmx->msr_host_kernel_gs_base = read_msr(MSR_KERNEL_GS_BASE);
Avi Kivity33ed6322007-05-02 16:54:03 +03001175 }
1176
Paolo Bonzini4679b612018-09-24 17:23:01 +02001177 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity33ed6322007-05-02 16:54:03 +03001178#else
Sean Christophersone368b872018-07-23 12:32:41 -07001179 savesegment(fs, fs_sel);
1180 savesegment(gs, gs_sel);
1181 fs_base = segment_base(fs_sel);
1182 gs_base = segment_base(gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001183#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001184
Lai Jiangshana9f27052021-12-16 10:19:36 +08001185 vmx_set_vmcs_host_state(host_state, __get_current_cr3_fast(),
1186 fs_sel, gs_sel, fs_base, gs_base);
Lai Jiangshan15ad9762021-11-18 19:08:03 +08001187
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001188 vmx->guest_state_loaded = true;
Avi Kivity33ed6322007-05-02 16:54:03 +03001189}
1190
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001191static void vmx_prepare_switch_to_host(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001192{
Sean Christophersond7ee0392018-07-23 12:32:47 -07001193 struct vmcs_host_state *host_state;
1194
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001195 if (!vmx->guest_state_loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001196 return;
1197
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001198 host_state = &vmx->loaded_vmcs->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001199
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001200 ++vmx->vcpu.stat.host_state_reload;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001201
Avi Kivityc8770e72010-11-11 12:37:26 +02001202#ifdef CONFIG_X86_64
Paolo Bonzini4679b612018-09-24 17:23:01 +02001203 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivityc8770e72010-11-11 12:37:26 +02001204#endif
Sean Christophersond7ee0392018-07-23 12:32:47 -07001205 if (host_state->ldt_sel || (host_state->gs_sel & 7)) {
1206 kvm_load_ldt(host_state->ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001207#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001208 load_gs_index(host_state->gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02001209#else
Sean Christophersond7ee0392018-07-23 12:32:47 -07001210 loadsegment(gs, host_state->gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001211#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03001212 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07001213 if (host_state->fs_sel & 7)
1214 loadsegment(fs, host_state->fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001215#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001216 if (unlikely(host_state->ds_sel | host_state->es_sel)) {
1217 loadsegment(ds, host_state->ds_sel);
1218 loadsegment(es, host_state->es_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001219 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03001220#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08001221 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03001222#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001223 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001224#endif
Thomas Garnier45fc8752017-03-14 10:05:08 -07001225 load_fixmap_gdt(raw_smp_processor_id());
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001226 vmx->guest_state_loaded = false;
Sean Christopherson658ece82020-09-23 11:04:01 -07001227 vmx->guest_uret_msrs_loaded = false;
Avi Kivity33ed6322007-05-02 16:54:03 +03001228}
1229
Sean Christopherson678e3152018-07-23 12:32:43 -07001230#ifdef CONFIG_X86_64
1231static u64 vmx_read_guest_kernel_gs_base(struct vcpu_vmx *vmx)
Avi Kivitya9b21b62008-06-24 11:48:49 +03001232{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001233 preempt_disable();
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001234 if (vmx->guest_state_loaded)
Paolo Bonzini4679b612018-09-24 17:23:01 +02001235 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1236 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001237 return vmx->msr_guest_kernel_gs_base;
Avi Kivitya9b21b62008-06-24 11:48:49 +03001238}
1239
Sean Christopherson678e3152018-07-23 12:32:43 -07001240static void vmx_write_guest_kernel_gs_base(struct vcpu_vmx *vmx, u64 data)
1241{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001242 preempt_disable();
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001243 if (vmx->guest_state_loaded)
Paolo Bonzini4679b612018-09-24 17:23:01 +02001244 wrmsrl(MSR_KERNEL_GS_BASE, data);
1245 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001246 vmx->msr_guest_kernel_gs_base = data;
1247}
1248#endif
1249
Sean Christopherson5c911be2020-05-01 09:31:17 -07001250void vmx_vcpu_load_vmcs(struct kvm_vcpu *vcpu, int cpu,
1251 struct loaded_vmcs *buddy)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001252{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001253 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001254 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Sean Christopherson5c911be2020-05-01 09:31:17 -07001255 struct vmcs *prev;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001256
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001257 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01001258 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001259 local_irq_disable();
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001260
1261 /*
Sean Christopherson31603d42020-03-21 12:37:49 -07001262 * Ensure loaded_vmcs->cpu is read before adding loaded_vmcs to
1263 * this cpu's percpu list, otherwise it may not yet be deleted
1264 * from its previous cpu's percpu list. Pairs with the
1265 * smb_wmb() in __loaded_vmcs_clear().
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001266 */
1267 smp_rmb();
1268
Nadav Har'Eld462b812011-05-24 15:26:10 +03001269 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
1270 &per_cpu(loaded_vmcss_on_cpu, cpu));
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001271 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001272 }
1273
Sean Christopherson5c911be2020-05-01 09:31:17 -07001274 prev = per_cpu(current_vmcs, cpu);
1275 if (prev != vmx->loaded_vmcs->vmcs) {
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001276 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
1277 vmcs_load(vmx->loaded_vmcs->vmcs);
Sean Christopherson5c911be2020-05-01 09:31:17 -07001278
1279 /*
1280 * No indirect branch prediction barrier needed when switching
1281 * the active VMCS within a guest, e.g. on nested VM-Enter.
1282 * The L1 VMM can protect itself with retpolines, IBPB or IBRS.
1283 */
1284 if (!buddy || WARN_ON_ONCE(buddy->vmcs != prev))
1285 indirect_branch_prediction_barrier();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001286 }
1287
1288 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001289 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001290
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07001291 /*
1292 * Flush all EPTP/VPID contexts, the new pCPU may have stale
1293 * TLB entries from its previous association with the vCPU.
1294 */
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001295 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001296
Avi Kivity6aa8b732006-12-10 02:21:36 -08001297 /*
1298 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001299 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001300 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001301 vmcs_writel(HOST_TR_BASE,
Andy Lutomirski72f5e082017-12-04 15:07:20 +01001302 (unsigned long)&get_cpu_entry_area(cpu)->tss.x86_tss);
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001303 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001304
Lai Jiangshan6ab8a402021-11-18 19:08:01 +08001305 if (IS_ENABLED(CONFIG_IA32_EMULATION) || IS_ENABLED(CONFIG_X86_32)) {
1306 /* 22.2.3 */
1307 vmcs_writel(HOST_IA32_SYSENTER_ESP,
1308 (unsigned long)(cpu_entry_stack(cpu) + 1));
1309 }
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08001310
Nadav Har'Eld462b812011-05-24 15:26:10 +03001311 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001312 }
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001313}
1314
1315/*
1316 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
1317 * vcpu mutex is already taken.
1318 */
Sean Christopherson1af1bb02020-05-06 16:58:50 -07001319static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001320{
1321 struct vcpu_vmx *vmx = to_vmx(vcpu);
1322
Sean Christopherson5c911be2020-05-01 09:31:17 -07001323 vmx_vcpu_load_vmcs(vcpu, cpu, NULL);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001324
Feng Wu28b835d2015-09-18 22:29:54 +08001325 vmx_vcpu_pi_load(vcpu, cpu);
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001326
Wanpeng Li74c55932017-11-29 01:31:20 -08001327 vmx->host_debugctlmsr = get_debugctlmsr();
Feng Wu28b835d2015-09-18 22:29:54 +08001328}
1329
Sean Christopherson13b964a2019-05-07 09:06:31 -07001330static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001331{
Feng Wu28b835d2015-09-18 22:29:54 +08001332 vmx_vcpu_pi_put(vcpu);
1333
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001334 vmx_prepare_switch_to_host(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001335}
1336
Maxim Levitskydbab6102021-09-13 17:09:54 +03001337bool vmx_emulation_required(struct kvm_vcpu *vcpu)
Wanpeng Lif244dee2017-07-20 01:11:54 -07001338{
Sean Christopherson2ba44932020-09-23 11:44:48 -07001339 return emulate_invalid_guest_state && !vmx_guest_state_valid(vcpu);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001340}
1341
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001342unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001343{
Sean Christophersone7bddc52019-09-27 14:45:18 -07001344 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity78ac8b42010-04-08 18:19:35 +03001345 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03001346
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001347 if (!kvm_register_is_available(vcpu, VCPU_EXREG_RFLAGS)) {
1348 kvm_register_mark_available(vcpu, VCPU_EXREG_RFLAGS);
Avi Kivity6de12732011-03-07 12:51:22 +02001349 rflags = vmcs_readl(GUEST_RFLAGS);
Sean Christophersone7bddc52019-09-27 14:45:18 -07001350 if (vmx->rmode.vm86_active) {
Avi Kivity6de12732011-03-07 12:51:22 +02001351 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
Sean Christophersone7bddc52019-09-27 14:45:18 -07001352 save_rflags = vmx->rmode.save_rflags;
Avi Kivity6de12732011-03-07 12:51:22 +02001353 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
1354 }
Sean Christophersone7bddc52019-09-27 14:45:18 -07001355 vmx->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001356 }
Sean Christophersone7bddc52019-09-27 14:45:18 -07001357 return vmx->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001358}
1359
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001360void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001361{
Sean Christophersone7bddc52019-09-27 14:45:18 -07001362 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson491c1ad2019-09-27 14:45:19 -07001363 unsigned long old_rflags;
Wanpeng Lif244dee2017-07-20 01:11:54 -07001364
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00001365 if (is_unrestricted_guest(vcpu)) {
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001366 kvm_register_mark_available(vcpu, VCPU_EXREG_RFLAGS);
Sean Christopherson491c1ad2019-09-27 14:45:19 -07001367 vmx->rflags = rflags;
1368 vmcs_writel(GUEST_RFLAGS, rflags);
1369 return;
1370 }
1371
1372 old_rflags = vmx_get_rflags(vcpu);
Sean Christophersone7bddc52019-09-27 14:45:18 -07001373 vmx->rflags = rflags;
1374 if (vmx->rmode.vm86_active) {
1375 vmx->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001376 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001377 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001378 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001379
Sean Christophersone7bddc52019-09-27 14:45:18 -07001380 if ((old_rflags ^ vmx->rflags) & X86_EFLAGS_VM)
Maxim Levitskydbab6102021-09-13 17:09:54 +03001381 vmx->emulation_required = vmx_emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001382}
1383
Marc Orrc5063552021-12-09 07:52:57 -08001384static bool vmx_get_if_flag(struct kvm_vcpu *vcpu)
1385{
1386 return vmx_get_rflags(vcpu) & X86_EFLAGS_IF;
1387}
1388
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001389u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001390{
1391 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1392 int ret = 0;
1393
1394 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01001395 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001396 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01001397 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001398
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02001399 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001400}
1401
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001402void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001403{
1404 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1405 u32 interruptibility = interruptibility_old;
1406
1407 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
1408
Jan Kiszka48005f62010-02-19 19:38:07 +01001409 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001410 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01001411 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001412 interruptibility |= GUEST_INTR_STATE_STI;
1413
1414 if ((interruptibility != interruptibility_old))
1415 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
1416}
1417
Chao Pengbf8c55d2018-10-24 16:05:14 +08001418static int vmx_rtit_ctl_check(struct kvm_vcpu *vcpu, u64 data)
1419{
1420 struct vcpu_vmx *vmx = to_vmx(vcpu);
1421 unsigned long value;
1422
1423 /*
1424 * Any MSR write that attempts to change bits marked reserved will
1425 * case a #GP fault.
1426 */
1427 if (data & vmx->pt_desc.ctl_bitmask)
1428 return 1;
1429
1430 /*
1431 * Any attempt to modify IA32_RTIT_CTL while TraceEn is set will
1432 * result in a #GP unless the same write also clears TraceEn.
1433 */
1434 if ((vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) &&
1435 ((vmx->pt_desc.guest.ctl ^ data) & ~RTIT_CTL_TRACEEN))
1436 return 1;
1437
1438 /*
1439 * WRMSR to IA32_RTIT_CTL that sets TraceEn but clears this bit
1440 * and FabricEn would cause #GP, if
1441 * CPUID.(EAX=14H, ECX=0):ECX.SNGLRGNOUT[bit 2] = 0
1442 */
1443 if ((data & RTIT_CTL_TRACEEN) && !(data & RTIT_CTL_TOPA) &&
1444 !(data & RTIT_CTL_FABRIC_EN) &&
1445 !intel_pt_validate_cap(vmx->pt_desc.caps,
1446 PT_CAP_single_range_output))
1447 return 1;
1448
1449 /*
1450 * MTCFreq, CycThresh and PSBFreq encodings check, any MSR write that
Ingo Molnard9f6e122021-03-18 15:28:01 +01001451 * utilize encodings marked reserved will cause a #GP fault.
Chao Pengbf8c55d2018-10-24 16:05:14 +08001452 */
1453 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc_periods);
1454 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc) &&
1455 !test_bit((data & RTIT_CTL_MTC_RANGE) >>
1456 RTIT_CTL_MTC_RANGE_OFFSET, &value))
1457 return 1;
1458 value = intel_pt_validate_cap(vmx->pt_desc.caps,
1459 PT_CAP_cycle_thresholds);
1460 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1461 !test_bit((data & RTIT_CTL_CYC_THRESH) >>
1462 RTIT_CTL_CYC_THRESH_OFFSET, &value))
1463 return 1;
1464 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_periods);
1465 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1466 !test_bit((data & RTIT_CTL_PSB_FREQ) >>
1467 RTIT_CTL_PSB_FREQ_OFFSET, &value))
1468 return 1;
1469
1470 /*
1471 * If ADDRx_CFG is reserved or the encodings is >2 will
1472 * cause a #GP fault.
1473 */
1474 value = (data & RTIT_CTL_ADDR0) >> RTIT_CTL_ADDR0_OFFSET;
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08001475 if ((value && (vmx->pt_desc.num_address_ranges < 1)) || (value > 2))
Chao Pengbf8c55d2018-10-24 16:05:14 +08001476 return 1;
1477 value = (data & RTIT_CTL_ADDR1) >> RTIT_CTL_ADDR1_OFFSET;
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08001478 if ((value && (vmx->pt_desc.num_address_ranges < 2)) || (value > 2))
Chao Pengbf8c55d2018-10-24 16:05:14 +08001479 return 1;
1480 value = (data & RTIT_CTL_ADDR2) >> RTIT_CTL_ADDR2_OFFSET;
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08001481 if ((value && (vmx->pt_desc.num_address_ranges < 3)) || (value > 2))
Chao Pengbf8c55d2018-10-24 16:05:14 +08001482 return 1;
1483 value = (data & RTIT_CTL_ADDR3) >> RTIT_CTL_ADDR3_OFFSET;
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08001484 if ((value && (vmx->pt_desc.num_address_ranges < 4)) || (value > 2))
Chao Pengbf8c55d2018-10-24 16:05:14 +08001485 return 1;
1486
1487 return 0;
1488}
1489
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07001490static bool vmx_can_emulate_instruction(struct kvm_vcpu *vcpu, void *insn, int insn_len)
1491{
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001492 /*
1493 * Emulation of instructions in SGX enclaves is impossible as RIP does
1494 * not point tthe failing instruction, and even if it did, the code
1495 * stream is inaccessible. Inject #UD instead of exiting to userspace
1496 * so that guest userspace can't DoS the guest simply by triggering
1497 * emulation (enclaves are CPL3 only).
1498 */
1499 if (to_vmx(vcpu)->exit_reason.enclave_mode) {
1500 kvm_queue_exception(vcpu, UD_VECTOR);
1501 return false;
1502 }
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07001503 return true;
1504}
1505
Sean Christopherson1957aa62019-08-27 14:40:39 -07001506static int skip_emulated_instruction(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001507{
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001508 union vmx_exit_reason exit_reason = to_vmx(vcpu)->exit_reason;
Paolo Bonzinifede8072020-04-27 11:55:59 -04001509 unsigned long rip, orig_rip;
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001510 u32 instr_len;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001511
Sean Christopherson1957aa62019-08-27 14:40:39 -07001512 /*
1513 * Using VMCS.VM_EXIT_INSTRUCTION_LEN on EPT misconfig depends on
1514 * undefined behavior: Intel's SDM doesn't mandate the VMCS field be
1515 * set when EPT misconfig occurs. In practice, real hardware updates
1516 * VM_EXIT_INSTRUCTION_LEN on EPT misconfig, but other hypervisors
1517 * (namely Hyper-V) don't set it due to it being undefined behavior,
1518 * i.e. we end up advancing IP with some random value.
1519 */
1520 if (!static_cpu_has(X86_FEATURE_HYPERVISOR) ||
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001521 exit_reason.basic != EXIT_REASON_EPT_MISCONFIG) {
1522 instr_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
1523
1524 /*
1525 * Emulating an enclave's instructions isn't supported as KVM
1526 * cannot access the enclave's memory or its true RIP, e.g. the
1527 * vmcs.GUEST_RIP points at the exit point of the enclave, not
1528 * the RIP that actually triggered the VM-Exit. But, because
1529 * most instructions that cause VM-Exit will #UD in an enclave,
1530 * most instruction-based VM-Exits simply do not occur.
1531 *
1532 * There are a few exceptions, notably the debug instructions
1533 * INT1ICEBRK and INT3, as they are allowed in debug enclaves
1534 * and generate #DB/#BP as expected, which KVM might intercept.
1535 * But again, the CPU does the dirty work and saves an instr
1536 * length of zero so VMMs don't shoot themselves in the foot.
1537 * WARN if KVM tries to skip a non-zero length instruction on
1538 * a VM-Exit from an enclave.
1539 */
1540 if (!instr_len)
1541 goto rip_updated;
1542
1543 WARN(exit_reason.enclave_mode,
1544 "KVM: skipping instruction after SGX enclave VM-Exit");
1545
Paolo Bonzinifede8072020-04-27 11:55:59 -04001546 orig_rip = kvm_rip_read(vcpu);
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001547 rip = orig_rip + instr_len;
Paolo Bonzinifede8072020-04-27 11:55:59 -04001548#ifdef CONFIG_X86_64
1549 /*
1550 * We need to mask out the high 32 bits of RIP if not in 64-bit
1551 * mode, but just finding out that we are in 64-bit mode is
1552 * quite expensive. Only do it if there was a carry.
1553 */
1554 if (unlikely(((rip ^ orig_rip) >> 31) == 3) && !is_64_bit_mode(vcpu))
1555 rip = (u32)rip;
1556#endif
Sean Christopherson1957aa62019-08-27 14:40:39 -07001557 kvm_rip_write(vcpu, rip);
1558 } else {
1559 if (!kvm_emulate_instruction(vcpu, EMULTYPE_SKIP))
1560 return 0;
1561 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001562
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001563rip_updated:
Glauber Costa2809f5d2009-05-12 16:21:05 -04001564 /* skipping an emulated instruction also counts */
1565 vmx_set_interrupt_shadow(vcpu, 0);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02001566
Sean Christopherson60fc3d02019-08-27 14:40:38 -07001567 return 1;
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02001568}
1569
Vitaly Kuznetsov7a35e512020-06-05 13:59:05 +02001570/*
Oliver Upton5ef8acb2020-02-07 02:36:07 -08001571 * Recognizes a pending MTF VM-exit and records the nested state for later
1572 * delivery.
1573 */
1574static void vmx_update_emulated_instruction(struct kvm_vcpu *vcpu)
1575{
1576 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1577 struct vcpu_vmx *vmx = to_vmx(vcpu);
1578
1579 if (!is_guest_mode(vcpu))
1580 return;
1581
1582 /*
1583 * Per the SDM, MTF takes priority over debug-trap exceptions besides
1584 * T-bit traps. As instruction emulation is completed (i.e. at the
1585 * instruction boundary), any #DB exception pending delivery must be a
1586 * debug-trap. Record the pending MTF state to be delivered in
1587 * vmx_check_nested_events().
1588 */
1589 if (nested_cpu_has_mtf(vmcs12) &&
1590 (!vcpu->arch.exception.pending ||
1591 vcpu->arch.exception.nr == DB_VECTOR))
1592 vmx->nested.mtf_pending = true;
1593 else
1594 vmx->nested.mtf_pending = false;
1595}
1596
1597static int vmx_skip_emulated_instruction(struct kvm_vcpu *vcpu)
1598{
1599 vmx_update_emulated_instruction(vcpu);
1600 return skip_emulated_instruction(vcpu);
1601}
1602
Wanpeng Licaa057a2018-03-12 04:53:03 -07001603static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
1604{
1605 /*
1606 * Ensure that we clear the HLT state in the VMCS. We don't need to
1607 * explicitly skip the instruction because if the HLT state is set,
1608 * then the instruction is already executing and RIP has already been
1609 * advanced.
1610 */
1611 if (kvm_hlt_in_guest(vcpu->kvm) &&
1612 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
1613 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
1614}
1615
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001616static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02001617{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001618 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001619 unsigned nr = vcpu->arch.exception.nr;
1620 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001621 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001622 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001623
Jim Mattsonda998b42018-10-16 14:29:22 -07001624 kvm_deliver_exception_payload(vcpu);
1625
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001626 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001627 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001628 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
1629 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001630
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001631 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05001632 int inc_eip = 0;
1633 if (kvm_exception_is_soft(nr))
1634 inc_eip = vcpu->arch.event_exit_inst_len;
Sean Christopherson9497e1f2019-08-27 14:40:36 -07001635 kvm_inject_realmode_interrupt(vcpu, nr, inc_eip);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001636 return;
1637 }
1638
Sean Christophersonadd5ff72018-03-23 09:34:00 -07001639 WARN_ON_ONCE(vmx->emulation_required);
1640
Gleb Natapov66fd3f72009-05-11 13:35:50 +03001641 if (kvm_exception_is_soft(nr)) {
1642 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
1643 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001644 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
1645 } else
1646 intr_info |= INTR_TYPE_HARD_EXCEPTION;
1647
1648 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Wanpeng Licaa057a2018-03-12 04:53:03 -07001649
1650 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02001651}
1652
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001653static void vmx_setup_uret_msr(struct vcpu_vmx *vmx, unsigned int msr,
1654 bool load_into_hardware)
Eddie Donga75beee2007-05-17 18:55:15 +03001655{
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001656 struct vmx_uret_msr *uret_msr;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001657
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001658 uret_msr = vmx_find_uret_msr(vmx, msr);
1659 if (!uret_msr)
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001660 return;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001661
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001662 uret_msr->load_into_hardware = load_into_hardware;
Eddie Donga75beee2007-05-17 18:55:15 +03001663}
1664
1665/*
Sean Christopherson400dd542021-07-13 09:33:11 -07001666 * Configuring user return MSRs to automatically save, load, and restore MSRs
1667 * that need to be shoved into hardware when running the guest. Note, omitting
1668 * an MSR here does _NOT_ mean it's not emulated, only that it will not be
1669 * loaded into hardware when running the guest.
Avi Kivitye38aea32007-04-19 13:22:48 +03001670 */
Sean Christopherson400dd542021-07-13 09:33:11 -07001671static void vmx_setup_uret_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03001672{
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001673#ifdef CONFIG_X86_64
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001674 bool load_syscall_msrs;
1675
Jim Mattson84c8c5b2018-12-05 15:29:01 -08001676 /*
1677 * The SYSCALL MSRs are only needed on long mode guests, and only
1678 * when EFER.SCE is set.
1679 */
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001680 load_syscall_msrs = is_long_mode(&vmx->vcpu) &&
1681 (vmx->vcpu.arch.efer & EFER_SCE);
1682
1683 vmx_setup_uret_msr(vmx, MSR_STAR, load_syscall_msrs);
1684 vmx_setup_uret_msr(vmx, MSR_LSTAR, load_syscall_msrs);
1685 vmx_setup_uret_msr(vmx, MSR_SYSCALL_MASK, load_syscall_msrs);
Eddie Donga75beee2007-05-17 18:55:15 +03001686#endif
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001687 vmx_setup_uret_msr(vmx, MSR_EFER, update_transition_efer(vmx));
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001688
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001689 vmx_setup_uret_msr(vmx, MSR_TSC_AUX,
1690 guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP) ||
1691 guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDPID));
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001692
Sean Christopherson5e17c622021-05-04 10:17:30 -07001693 /*
1694 * hle=0, rtm=0, tsx_ctrl=1 can be found with some combinations of new
1695 * kernel and old userspace. If those guests run on a tsx=off host, do
1696 * allow guests to use TSX_CTRL, but don't change the value in hardware
1697 * so that TSX remains always disabled.
1698 */
1699 vmx_setup_uret_msr(vmx, MSR_IA32_TSX_CTRL, boot_cpu_has(X86_FEATURE_RTM));
Avi Kivity58972972009-02-24 22:26:47 +02001700
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001701 /*
1702 * The set of MSRs to load may have changed, reload MSRs before the
1703 * next VM-Enter.
1704 */
1705 vmx->guest_uret_msrs_loaded = false;
Avi Kivitye38aea32007-04-19 13:22:48 +03001706}
1707
Ilias Stamatis307a94c2021-05-26 19:44:13 +01001708u64 vmx_get_l2_tsc_offset(struct kvm_vcpu *vcpu)
1709{
1710 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1711
1712 if (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETTING))
1713 return vmcs12->tsc_offset;
1714
1715 return 0;
1716}
1717
1718u64 vmx_get_l2_tsc_multiplier(struct kvm_vcpu *vcpu)
1719{
1720 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1721
1722 if (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETTING) &&
1723 nested_cpu_has2(vmcs12, SECONDARY_EXEC_TSC_SCALING))
1724 return vmcs12->tsc_multiplier;
1725
1726 return kvm_default_tsc_scaling_ratio;
1727}
1728
Ilias Stamatisedcfe542021-05-26 19:44:15 +01001729static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001730{
Ilias Stamatisedcfe542021-05-26 19:44:15 +01001731 vmcs_write64(TSC_OFFSET, offset);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001732}
1733
Ilias Stamatis1ab92872021-06-07 11:54:38 +01001734static void vmx_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 multiplier)
1735{
1736 vmcs_write64(TSC_MULTIPLIER, multiplier);
1737}
1738
Nadav Har'El801d3422011-05-25 23:02:23 +03001739/*
1740 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
1741 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
1742 * all guests if the "nested" module option is off, and can also be disabled
1743 * for a single guest by disabling its VMX cpuid bit.
1744 */
Sean Christopherson7c97fcb2018-12-03 13:53:17 -08001745bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
Nadav Har'El801d3422011-05-25 23:02:23 +03001746{
Radim Krčmářd6321d42017-08-05 00:12:49 +02001747 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03001748}
1749
Haozhong Zhang37e4c992016-06-22 14:59:55 +08001750static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
1751 uint64_t val)
1752{
1753 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
1754
1755 return !(val & ~valid_bits);
1756}
1757
Tom Lendacky801e4592018-02-21 13:39:51 -06001758static int vmx_get_msr_feature(struct kvm_msr_entry *msr)
1759{
Paolo Bonzini13893092018-02-26 13:40:09 +01001760 switch (msr->index) {
1761 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1762 if (!nested)
1763 return 1;
1764 return vmx_get_vmx_msr(&vmcs_config.nested, msr->index, &msr->data);
Like Xu27461da32020-05-29 15:43:45 +08001765 case MSR_IA32_PERF_CAPABILITIES:
1766 msr->data = vmx_get_perf_capabilities();
1767 return 0;
Paolo Bonzini13893092018-02-26 13:40:09 +01001768 default:
Peter Xu12bc2132020-06-22 18:04:42 -04001769 return KVM_MSR_RET_INVALID;
Paolo Bonzini13893092018-02-26 13:40:09 +01001770 }
Tom Lendacky801e4592018-02-21 13:39:51 -06001771}
1772
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001773/*
Lai Jiangshanfe26f912021-11-18 19:08:06 +08001774 * Reads an msr value (of 'msr_info->index') into 'msr_info->data'.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001775 * Returns 0 on success, non-0 otherwise.
1776 * Assumes vcpu_load() was already called.
1777 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001778static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001779{
Borislav Petkova6cb0992017-12-20 12:50:28 +01001780 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001781 struct vmx_uret_msr *msr;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001782 u32 index;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001783
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001784 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001785#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001786 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001787 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001788 break;
1789 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001790 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001791 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001792 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001793 msr_info->data = vmx_read_guest_kernel_gs_base(vmx);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001794 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03001795#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001796 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001797 return kvm_get_msr_common(vcpu, msr_info);
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05001798 case MSR_IA32_TSX_CTRL:
1799 if (!msr_info->host_initiated &&
1800 !(vcpu->arch.arch_capabilities & ARCH_CAP_TSX_CTRL_MSR))
1801 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001802 goto find_uret_msr;
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001803 case MSR_IA32_UMWAIT_CONTROL:
1804 if (!msr_info->host_initiated && !vmx_has_waitpkg(vmx))
1805 return 1;
1806
1807 msr_info->data = vmx->msr_ia32_umwait_control;
1808 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001809 case MSR_IA32_SPEC_CTRL:
1810 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05001811 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001812 return 1;
1813
1814 msr_info->data = to_vmx(vcpu)->spec_ctrl;
1815 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001816 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001817 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001818 break;
1819 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001820 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001821 break;
1822 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001823 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001824 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001825 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08001826 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02001827 (!msr_info->host_initiated &&
1828 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01001829 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001830 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001831 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001832 case MSR_IA32_MCG_EXT_CTL:
1833 if (!msr_info->host_initiated &&
Borislav Petkova6cb0992017-12-20 12:50:28 +01001834 !(vmx->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001835 FEAT_CTL_LMCE_ENABLED))
Jan Kiszkacae50132014-01-04 18:47:22 +01001836 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001837 msr_info->data = vcpu->arch.mcg_ext_ctl;
1838 break;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001839 case MSR_IA32_FEAT_CTL:
Borislav Petkova6cb0992017-12-20 12:50:28 +01001840 msr_info->data = vmx->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01001841 break;
Sean Christopherson8f102442021-04-12 16:21:40 +12001842 case MSR_IA32_SGXLEPUBKEYHASH0 ... MSR_IA32_SGXLEPUBKEYHASH3:
1843 if (!msr_info->host_initiated &&
1844 !guest_cpuid_has(vcpu, X86_FEATURE_SGX_LC))
1845 return 1;
1846 msr_info->data = to_vmx(vcpu)->msr_ia32_sgxlepubkeyhash
1847 [msr_info->index - MSR_IA32_SGXLEPUBKEYHASH0];
1848 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01001849 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1850 if (!nested_vmx_allowed(vcpu))
1851 return 1;
Vitaly Kuznetsov31de3d22020-02-05 13:30:33 +01001852 if (vmx_get_vmx_msr(&vmx->nested.msrs, msr_info->index,
1853 &msr_info->data))
1854 return 1;
1855 /*
Vitaly Kuznetsov8d68bad2021-09-07 18:35:30 +02001856 * Enlightened VMCS v1 doesn't have certain VMCS fields but
1857 * instead of just ignoring the features, different Hyper-V
1858 * versions are either trying to use them and fail or do some
1859 * sanity checking and refuse to boot. Filter all unsupported
1860 * features out.
Vitaly Kuznetsov31de3d22020-02-05 13:30:33 +01001861 */
1862 if (!msr_info->host_initiated &&
1863 vmx->nested.enlightened_vmcs_enabled)
1864 nested_evmcs_filter_control_msr(msr_info->index,
1865 &msr_info->data);
1866 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001867 case MSR_IA32_RTIT_CTL:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001868 if (!vmx_pt_mode_is_host_guest())
Chao Pengbf8c55d2018-10-24 16:05:14 +08001869 return 1;
1870 msr_info->data = vmx->pt_desc.guest.ctl;
1871 break;
1872 case MSR_IA32_RTIT_STATUS:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001873 if (!vmx_pt_mode_is_host_guest())
Chao Pengbf8c55d2018-10-24 16:05:14 +08001874 return 1;
1875 msr_info->data = vmx->pt_desc.guest.status;
1876 break;
1877 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001878 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001879 !intel_pt_validate_cap(vmx->pt_desc.caps,
1880 PT_CAP_cr3_filtering))
1881 return 1;
1882 msr_info->data = vmx->pt_desc.guest.cr3_match;
1883 break;
1884 case MSR_IA32_RTIT_OUTPUT_BASE:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001885 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001886 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1887 PT_CAP_topa_output) &&
1888 !intel_pt_validate_cap(vmx->pt_desc.caps,
1889 PT_CAP_single_range_output)))
1890 return 1;
1891 msr_info->data = vmx->pt_desc.guest.output_base;
1892 break;
1893 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001894 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001895 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1896 PT_CAP_topa_output) &&
1897 !intel_pt_validate_cap(vmx->pt_desc.caps,
1898 PT_CAP_single_range_output)))
1899 return 1;
1900 msr_info->data = vmx->pt_desc.guest.output_mask;
1901 break;
1902 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
1903 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
Sean Christopherson2ef76192020-03-02 15:56:22 -08001904 if (!vmx_pt_mode_is_host_guest() ||
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08001905 (index >= 2 * vmx->pt_desc.num_address_ranges))
Chao Pengbf8c55d2018-10-24 16:05:14 +08001906 return 1;
1907 if (index % 2)
1908 msr_info->data = vmx->pt_desc.guest.addr_b[index / 2];
1909 else
1910 msr_info->data = vmx->pt_desc.guest.addr_a[index / 2];
1911 break;
Like Xud8550662021-01-08 09:36:55 +08001912 case MSR_IA32_DEBUGCTLMSR:
1913 msr_info->data = vmcs_read64(GUEST_IA32_DEBUGCTL);
1914 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001915 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001916 find_uret_msr:
Sean Christophersond85a8032020-09-23 11:04:06 -07001917 msr = vmx_find_uret_msr(vmx, msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001918 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001919 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001920 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001921 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001922 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001923 }
1924
Avi Kivity6aa8b732006-12-10 02:21:36 -08001925 return 0;
1926}
1927
Sean Christopherson24085002020-04-28 16:10:24 -07001928static u64 nested_vmx_truncate_sysenter_addr(struct kvm_vcpu *vcpu,
1929 u64 data)
1930{
1931#ifdef CONFIG_X86_64
1932 if (!guest_cpuid_has(vcpu, X86_FEATURE_LM))
1933 return (u32)data;
1934#endif
1935 return (unsigned long)data;
1936}
1937
Like Xuc6462362021-02-01 13:10:31 +08001938static u64 vcpu_supported_debugctl(struct kvm_vcpu *vcpu)
1939{
1940 u64 debugctl = vmx_supported_debugctl();
1941
1942 if (!intel_pmu_lbr_is_enabled(vcpu))
Like Xue6209a32021-02-01 13:10:36 +08001943 debugctl &= ~DEBUGCTLMSR_LBR_MASK;
Like Xuc6462362021-02-01 13:10:31 +08001944
Paolo Bonzini76ea4382021-05-06 06:30:04 -04001945 if (!guest_cpuid_has(vcpu, X86_FEATURE_BUS_LOCK_DETECT))
1946 debugctl &= ~DEBUGCTLMSR_BUS_LOCK_DETECT;
1947
Like Xuc6462362021-02-01 13:10:31 +08001948 return debugctl;
1949}
1950
Avi Kivity6aa8b732006-12-10 02:21:36 -08001951/*
Miaohe Lin311497e2019-12-11 14:26:25 +08001952 * Writes msr value into the appropriate "register".
Avi Kivity6aa8b732006-12-10 02:21:36 -08001953 * Returns 0 on success, non-0 otherwise.
1954 * Assumes vcpu_load() was already called.
1955 */
Will Auld8fe8ab42012-11-29 12:42:12 -08001956static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001957{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001958 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001959 struct vmx_uret_msr *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03001960 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08001961 u32 msr_index = msr_info->index;
1962 u64 data = msr_info->data;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001963 u32 index;
Eddie Dong2cc51562007-05-21 07:28:09 +03001964
Avi Kivity6aa8b732006-12-10 02:21:36 -08001965 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001966 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08001967 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03001968 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001969#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001970 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001971 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001972 vmcs_writel(GUEST_FS_BASE, data);
1973 break;
1974 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001975 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001976 vmcs_writel(GUEST_GS_BASE, data);
1977 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001978 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001979 vmx_write_guest_kernel_gs_base(vmx, data);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001980 break;
Jing Liuec5be882022-01-05 04:35:23 -08001981 case MSR_IA32_XFD:
1982 ret = kvm_set_msr_common(vcpu, msr_info);
Kevin Tianb5274b12022-01-05 04:35:32 -08001983 /*
1984 * Always intercepting WRMSR could incur non-negligible
1985 * overhead given xfd might be changed frequently in
1986 * guest context switch. Disable write interception
1987 * upon the first write with a non-zero value (indicating
1988 * potential usage on dynamic xfeatures). Also update
1989 * exception bitmap to trap #NM for proper virtualization
1990 * of guest xfd_err.
1991 */
1992 if (!ret && data) {
1993 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_XFD,
1994 MSR_TYPE_RW);
1995 vcpu->arch.xfd_no_write_intercept = true;
Jing Liuec5be882022-01-05 04:35:23 -08001996 vmx_update_exception_bitmap(vcpu);
Kevin Tianb5274b12022-01-05 04:35:32 -08001997 }
Jing Liuec5be882022-01-05 04:35:23 -08001998 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001999#endif
2000 case MSR_IA32_SYSENTER_CS:
Sean Christophersonde70d272019-05-07 09:06:36 -07002001 if (is_guest_mode(vcpu))
2002 get_vmcs12(vcpu)->guest_sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002003 vmcs_write32(GUEST_SYSENTER_CS, data);
2004 break;
2005 case MSR_IA32_SYSENTER_EIP:
Sean Christopherson24085002020-04-28 16:10:24 -07002006 if (is_guest_mode(vcpu)) {
2007 data = nested_vmx_truncate_sysenter_addr(vcpu, data);
Sean Christophersonde70d272019-05-07 09:06:36 -07002008 get_vmcs12(vcpu)->guest_sysenter_eip = data;
Sean Christopherson24085002020-04-28 16:10:24 -07002009 }
Avi Kivityf5b42c32007-03-06 12:05:53 +02002010 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002011 break;
2012 case MSR_IA32_SYSENTER_ESP:
Sean Christopherson24085002020-04-28 16:10:24 -07002013 if (is_guest_mode(vcpu)) {
2014 data = nested_vmx_truncate_sysenter_addr(vcpu, data);
Sean Christophersonde70d272019-05-07 09:06:36 -07002015 get_vmcs12(vcpu)->guest_sysenter_esp = data;
Sean Christopherson24085002020-04-28 16:10:24 -07002016 }
Avi Kivityf5b42c32007-03-06 12:05:53 +02002017 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002018 break;
Like Xud8550662021-01-08 09:36:55 +08002019 case MSR_IA32_DEBUGCTLMSR: {
Like Xuc6462362021-02-01 13:10:31 +08002020 u64 invalid = data & ~vcpu_supported_debugctl(vcpu);
Like Xud8550662021-01-08 09:36:55 +08002021 if (invalid & (DEBUGCTLMSR_BTF|DEBUGCTLMSR_LBR)) {
2022 if (report_ignored_msrs)
2023 vcpu_unimpl(vcpu, "%s: BTF|LBR in IA32_DEBUGCTLMSR 0x%llx, nop\n",
2024 __func__, data);
2025 data &= ~(DEBUGCTLMSR_BTF|DEBUGCTLMSR_LBR);
2026 invalid &= ~(DEBUGCTLMSR_BTF|DEBUGCTLMSR_LBR);
2027 }
2028
2029 if (invalid)
2030 return 1;
2031
Sean Christopherson699a1ac2019-05-07 09:06:37 -07002032 if (is_guest_mode(vcpu) && get_vmcs12(vcpu)->vm_exit_controls &
2033 VM_EXIT_SAVE_DEBUG_CONTROLS)
2034 get_vmcs12(vcpu)->guest_ia32_debugctl = data;
2035
Like Xud8550662021-01-08 09:36:55 +08002036 vmcs_write64(GUEST_IA32_DEBUGCTL, data);
Like Xu8e129112021-02-01 13:10:33 +08002037 if (intel_pmu_lbr_is_enabled(vcpu) && !to_vmx(vcpu)->lbr_desc.event &&
2038 (data & DEBUGCTLMSR_LBR))
2039 intel_pmu_create_guest_lbr_event(vcpu);
Like Xud8550662021-01-08 09:36:55 +08002040 return 0;
2041 }
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002042 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08002043 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02002044 (!msr_info->host_initiated &&
2045 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002046 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08002047 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07002048 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002049 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08002050 vmcs_write64(GUEST_BNDCFGS, data);
2051 break;
Tao Xu6e3ba4a2019-07-16 14:55:50 +08002052 case MSR_IA32_UMWAIT_CONTROL:
2053 if (!msr_info->host_initiated && !vmx_has_waitpkg(vmx))
2054 return 1;
2055
2056 /* The reserved bit 1 and non-32 bit [63:32] should be zero */
2057 if (data & (BIT_ULL(1) | GENMASK_ULL(63, 32)))
2058 return 1;
2059
2060 vmx->msr_ia32_umwait_control = data;
2061 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002062 case MSR_IA32_SPEC_CTRL:
2063 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002064 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002065 return 1;
2066
Maxim Levitsky841c2be2020-07-08 14:57:31 +03002067 if (kvm_spec_ctrl_test_value(data))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002068 return 1;
2069
2070 vmx->spec_ctrl = data;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002071 if (!data)
2072 break;
2073
2074 /*
2075 * For non-nested:
2076 * When it's written (to non-zero) for the first time, pass
2077 * it through.
2078 *
2079 * For nested:
2080 * The handling of the MSR bitmap for L2 guests is done in
Miaohe Lin4d516fe2019-12-11 14:26:21 +08002081 * nested_vmx_prepare_msr_bitmap. We should not touch the
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002082 * vmcs02.msr_bitmap here since it gets completely overwritten
2083 * in the merging. We update the vmcs01 here for L1 as well
2084 * since it will end up touching the MSR anyway now.
2085 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002086 vmx_disable_intercept_for_msr(vcpu,
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002087 MSR_IA32_SPEC_CTRL,
2088 MSR_TYPE_RW);
2089 break;
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05002090 case MSR_IA32_TSX_CTRL:
2091 if (!msr_info->host_initiated &&
2092 !(vcpu->arch.arch_capabilities & ARCH_CAP_TSX_CTRL_MSR))
2093 return 1;
2094 if (data & ~(TSX_CTRL_RTM_DISABLE | TSX_CTRL_CPUID_CLEAR))
2095 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002096 goto find_uret_msr;
Ashok Raj15d45072018-02-01 22:59:43 +01002097 case MSR_IA32_PRED_CMD:
2098 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002099 !guest_has_pred_cmd_msr(vcpu))
Ashok Raj15d45072018-02-01 22:59:43 +01002100 return 1;
2101
2102 if (data & ~PRED_CMD_IBPB)
2103 return 1;
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002104 if (!boot_cpu_has(X86_FEATURE_IBPB))
Paolo Bonzini6441fa62020-01-20 16:33:06 +01002105 return 1;
Ashok Raj15d45072018-02-01 22:59:43 +01002106 if (!data)
2107 break;
2108
2109 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
2110
2111 /*
2112 * For non-nested:
2113 * When it's written (to non-zero) for the first time, pass
2114 * it through.
2115 *
2116 * For nested:
2117 * The handling of the MSR bitmap for L2 guests is done in
Miaohe Lin4d516fe2019-12-11 14:26:21 +08002118 * nested_vmx_prepare_msr_bitmap. We should not touch the
Ashok Raj15d45072018-02-01 22:59:43 +01002119 * vmcs02.msr_bitmap here since it gets completely overwritten
2120 * in the merging.
2121 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002122 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_PRED_CMD, MSR_TYPE_W);
Ashok Raj15d45072018-02-01 22:59:43 +01002123 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002124 case MSR_IA32_CR_PAT:
Sean Christophersond28f4292019-05-07 09:06:27 -07002125 if (!kvm_pat_valid(data))
2126 return 1;
2127
Sean Christopherson142e4be2019-05-07 09:06:35 -07002128 if (is_guest_mode(vcpu) &&
2129 get_vmcs12(vcpu)->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
2130 get_vmcs12(vcpu)->guest_ia32_pat = data;
2131
Sheng Yang468d4722008-10-09 16:01:55 +08002132 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2133 vmcs_write64(GUEST_IA32_PAT, data);
2134 vcpu->arch.pat = data;
2135 break;
2136 }
Will Auld8fe8ab42012-11-29 12:42:12 -08002137 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002138 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002139 case MSR_IA32_MCG_EXT_CTL:
2140 if ((!msr_info->host_initiated &&
2141 !(to_vmx(vcpu)->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002142 FEAT_CTL_LMCE_ENABLED)) ||
Ashok Rajc45dcc72016-06-22 14:59:56 +08002143 (data & ~MCG_EXT_CTL_LMCE_EN))
2144 return 1;
2145 vcpu->arch.mcg_ext_ctl = data;
2146 break;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002147 case MSR_IA32_FEAT_CTL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08002148 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08002149 (to_vmx(vcpu)->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002150 FEAT_CTL_LOCKED && !msr_info->host_initiated))
Jan Kiszkacae50132014-01-04 18:47:22 +01002151 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08002152 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01002153 if (msr_info->host_initiated && data == 0)
2154 vmx_leave_nested(vcpu);
Sean Christopherson72add912021-04-12 16:21:42 +12002155
2156 /* SGX may be enabled/disabled by guest's firmware */
2157 vmx_write_encls_bitmap(vcpu, NULL);
Jan Kiszkacae50132014-01-04 18:47:22 +01002158 break;
Sean Christopherson8f102442021-04-12 16:21:40 +12002159 case MSR_IA32_SGXLEPUBKEYHASH0 ... MSR_IA32_SGXLEPUBKEYHASH3:
2160 /*
2161 * On real hardware, the LE hash MSRs are writable before
2162 * the firmware sets bit 0 in MSR 0x7a ("activating" SGX),
2163 * at which point SGX related bits in IA32_FEATURE_CONTROL
2164 * become writable.
2165 *
2166 * KVM does not emulate SGX activation for simplicity, so
2167 * allow writes to the LE hash MSRs if IA32_FEATURE_CONTROL
2168 * is unlocked. This is technically not architectural
2169 * behavior, but it's close enough.
2170 */
2171 if (!msr_info->host_initiated &&
2172 (!guest_cpuid_has(vcpu, X86_FEATURE_SGX_LC) ||
2173 ((vmx->msr_ia32_feature_control & FEAT_CTL_LOCKED) &&
2174 !(vmx->msr_ia32_feature_control & FEAT_CTL_SGX_LC_ENABLED))))
2175 return 1;
2176 vmx->msr_ia32_sgxlepubkeyhash
2177 [msr_index - MSR_IA32_SGXLEPUBKEYHASH0] = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01002178 break;
2179 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08002180 if (!msr_info->host_initiated)
2181 return 1; /* they are read-only */
2182 if (!nested_vmx_allowed(vcpu))
2183 return 1;
2184 return vmx_set_vmx_msr(vcpu, msr_index, data);
Chao Pengbf8c55d2018-10-24 16:05:14 +08002185 case MSR_IA32_RTIT_CTL:
Sean Christopherson2ef76192020-03-02 15:56:22 -08002186 if (!vmx_pt_mode_is_host_guest() ||
Luwei Kangee85dec2018-10-24 16:05:16 +08002187 vmx_rtit_ctl_check(vcpu, data) ||
2188 vmx->nested.vmxon)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002189 return 1;
2190 vmcs_write64(GUEST_IA32_RTIT_CTL, data);
2191 vmx->pt_desc.guest.ctl = data;
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002192 pt_update_intercept_for_msr(vcpu);
Chao Pengbf8c55d2018-10-24 16:05:14 +08002193 break;
2194 case MSR_IA32_RTIT_STATUS:
Sean Christophersone348ac72019-12-10 15:24:33 -08002195 if (!pt_can_write_msr(vmx))
2196 return 1;
2197 if (data & MSR_IA32_RTIT_STATUS_MASK)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002198 return 1;
2199 vmx->pt_desc.guest.status = data;
2200 break;
2201 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christophersone348ac72019-12-10 15:24:33 -08002202 if (!pt_can_write_msr(vmx))
2203 return 1;
2204 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2205 PT_CAP_cr3_filtering))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002206 return 1;
2207 vmx->pt_desc.guest.cr3_match = data;
2208 break;
2209 case MSR_IA32_RTIT_OUTPUT_BASE:
Sean Christophersone348ac72019-12-10 15:24:33 -08002210 if (!pt_can_write_msr(vmx))
2211 return 1;
2212 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2213 PT_CAP_topa_output) &&
2214 !intel_pt_validate_cap(vmx->pt_desc.caps,
2215 PT_CAP_single_range_output))
2216 return 1;
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07002217 if (!pt_output_base_valid(vcpu, data))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002218 return 1;
2219 vmx->pt_desc.guest.output_base = data;
2220 break;
2221 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christophersone348ac72019-12-10 15:24:33 -08002222 if (!pt_can_write_msr(vmx))
2223 return 1;
2224 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2225 PT_CAP_topa_output) &&
2226 !intel_pt_validate_cap(vmx->pt_desc.caps,
2227 PT_CAP_single_range_output))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002228 return 1;
2229 vmx->pt_desc.guest.output_mask = data;
2230 break;
2231 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christophersone348ac72019-12-10 15:24:33 -08002232 if (!pt_can_write_msr(vmx))
2233 return 1;
Chao Pengbf8c55d2018-10-24 16:05:14 +08002234 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08002235 if (index >= 2 * vmx->pt_desc.num_address_ranges)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002236 return 1;
Sean Christophersonfe6ed362019-12-10 15:24:32 -08002237 if (is_noncanonical_address(data, vcpu))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002238 return 1;
2239 if (index % 2)
2240 vmx->pt_desc.guest.addr_b[index / 2] = data;
2241 else
2242 vmx->pt_desc.guest.addr_a[index / 2] = data;
2243 break;
Paolo Bonzini9c9520c2021-02-02 09:36:08 -05002244 case MSR_IA32_PERF_CAPABILITIES:
2245 if (data && !vcpu_to_pmu(vcpu)->version)
2246 return 1;
2247 if (data & PMU_CAP_LBR_FMT) {
2248 if ((data & PMU_CAP_LBR_FMT) !=
2249 (vmx_get_perf_capabilities() & PMU_CAP_LBR_FMT))
2250 return 1;
2251 if (!intel_pmu_lbr_is_compatible(vcpu))
2252 return 1;
2253 }
2254 ret = kvm_set_msr_common(vcpu, msr_info);
2255 break;
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05002256
Avi Kivity6aa8b732006-12-10 02:21:36 -08002257 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002258 find_uret_msr:
Sean Christophersond85a8032020-09-23 11:04:06 -07002259 msr = vmx_find_uret_msr(vmx, msr_index);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05002260 if (msr)
Sean Christopherson7bf662b2020-09-23 11:04:07 -07002261 ret = vmx_set_guest_uret_msr(vmx, msr, data);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05002262 else
2263 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002264 }
2265
Eddie Dong2cc51562007-05-21 07:28:09 +03002266 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002267}
2268
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002269static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002270{
Sean Christophersonf98c1e72020-05-01 21:32:30 -07002271 unsigned long guest_owned_bits;
2272
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002273 kvm_register_mark_available(vcpu, reg);
2274
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002275 switch (reg) {
2276 case VCPU_REGS_RSP:
2277 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
2278 break;
2279 case VCPU_REGS_RIP:
2280 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
2281 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002282 case VCPU_EXREG_PDPTR:
2283 if (enable_ept)
2284 ept_save_pdptrs(vcpu);
2285 break;
Sean Christophersonbd31fe42020-05-01 21:32:31 -07002286 case VCPU_EXREG_CR0:
2287 guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
2288
2289 vcpu->arch.cr0 &= ~guest_owned_bits;
2290 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & guest_owned_bits;
2291 break;
Sean Christopherson34059c22019-09-27 14:45:23 -07002292 case VCPU_EXREG_CR3:
Sean Christopherson81ca0e72021-07-13 09:33:03 -07002293 /*
2294 * When intercepting CR3 loads, e.g. for shadowing paging, KVM's
2295 * CR3 is loaded into hardware, not the guest's CR3.
2296 */
2297 if (!(exec_controls_get(to_vmx(vcpu)) & CPU_BASED_CR3_LOAD_EXITING))
Sean Christopherson34059c22019-09-27 14:45:23 -07002298 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2299 break;
Sean Christophersonf98c1e72020-05-01 21:32:30 -07002300 case VCPU_EXREG_CR4:
2301 guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
2302
2303 vcpu->arch.cr4 &= ~guest_owned_bits;
2304 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & guest_owned_bits;
2305 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002306 default:
Sean Christopherson67369272021-07-02 15:04:25 -07002307 KVM_BUG_ON(1, vcpu->kvm);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002308 break;
2309 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002310}
2311
Avi Kivity6aa8b732006-12-10 02:21:36 -08002312static __init int cpu_has_kvm_support(void)
2313{
Eduardo Habkost6210e372008-11-17 19:03:16 -02002314 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002315}
2316
2317static __init int vmx_disabled_by_bios(void)
2318{
Sean Christophersona4d0b2f2019-12-20 20:45:09 -08002319 return !boot_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
2320 !boot_cpu_has(X86_FEATURE_VMX);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002321}
2322
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002323static int kvm_cpu_vmxon(u64 vmxon_pointer)
Dongxiao Xu7725b892010-05-11 18:29:38 +08002324{
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002325 u64 msr;
2326
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002327 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03002328
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002329 asm_volatile_goto("1: vmxon %[vmxon_pointer]\n\t"
2330 _ASM_EXTABLE(1b, %l[fault])
2331 : : [vmxon_pointer] "m"(vmxon_pointer)
2332 : : fault);
2333 return 0;
2334
2335fault:
2336 WARN_ONCE(1, "VMXON faulted, MSR_IA32_FEAT_CTL (0x3a) = 0x%llx\n",
2337 rdmsrl_safe(MSR_IA32_FEAT_CTL, &msr) ? 0xdeadbeef : msr);
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002338 cr4_clear_bits(X86_CR4_VMXE);
2339
2340 return -EFAULT;
Dongxiao Xu7725b892010-05-11 18:29:38 +08002341}
2342
Radim Krčmář13a34e02014-08-28 15:13:03 +02002343static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002344{
2345 int cpu = raw_smp_processor_id();
2346 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002347 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002348
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002349 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02002350 return -EBUSY;
2351
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002352 /*
2353 * This can happen if we hot-added a CPU but failed to allocate
2354 * VP assist page for it.
2355 */
2356 if (static_branch_unlikely(&enable_evmcs) &&
2357 !hv_get_vp_assist_page(cpu))
2358 return -EFAULT;
2359
Sean Christopherson5ef940b2020-12-30 16:26:58 -08002360 intel_pt_handle_vmx(1);
2361
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002362 r = kvm_cpu_vmxon(phys_addr);
Sean Christopherson5ef940b2020-12-30 16:26:58 -08002363 if (r) {
2364 intel_pt_handle_vmx(0);
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002365 return r;
Sean Christopherson5ef940b2020-12-30 16:26:58 -08002366 }
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002367
David Hildenbrandfdf288b2017-08-24 20:51:29 +02002368 if (enable_ept)
2369 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02002370
2371 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002372}
2373
Nadav Har'Eld462b812011-05-24 15:26:10 +03002374static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03002375{
2376 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03002377 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03002378
Nadav Har'Eld462b812011-05-24 15:26:10 +03002379 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
2380 loaded_vmcss_on_cpu_link)
2381 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03002382}
2383
Radim Krčmář13a34e02014-08-28 15:13:03 +02002384static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002385{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002386 vmclear_local_loaded_vmcss();
Sean Christopherson6a289132020-12-30 16:26:59 -08002387
2388 if (cpu_vmxoff())
2389 kvm_spurious_fault();
Sean Christopherson5ef940b2020-12-30 16:26:58 -08002390
2391 intel_pt_handle_vmx(0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002392}
2393
Sean Christopherson7a57c092020-03-12 11:04:16 -07002394/*
2395 * There is no X86_FEATURE for SGX yet, but anyway we need to query CPUID
2396 * directly instead of going through cpu_has(), to ensure KVM is trapping
2397 * ENCLS whenever it's supported in hardware. It does not matter whether
2398 * the host OS supports or has enabled SGX.
2399 */
2400static bool cpu_has_sgx(void)
2401{
2402 return cpuid_eax(0) >= 0x12 && (cpuid_eax(0x12) & BIT(0));
2403}
2404
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002405static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04002406 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002407{
2408 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002409 u32 ctl = ctl_min | ctl_opt;
2410
2411 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2412
2413 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
2414 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
2415
2416 /* Ensure minimum (required) set of control bits are supported. */
2417 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002418 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002419
2420 *result = ctl;
2421 return 0;
2422}
2423
Sean Christopherson7caaa712018-12-03 13:53:01 -08002424static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf,
2425 struct vmx_capability *vmx_cap)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002426{
2427 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08002428 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002429 u32 _pin_based_exec_control = 0;
2430 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002431 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002432 u32 _vmexit_control = 0;
2433 u32 _vmentry_control = 0;
2434
Paolo Bonzini13893092018-02-26 13:40:09 +01002435 memset(vmcs_conf, 0, sizeof(*vmcs_conf));
Raghavendra K T10166742012-02-07 23:19:20 +05302436 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002437#ifdef CONFIG_X86_64
2438 CPU_BASED_CR8_LOAD_EXITING |
2439 CPU_BASED_CR8_STORE_EXITING |
2440#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002441 CPU_BASED_CR3_LOAD_EXITING |
2442 CPU_BASED_CR3_STORE_EXITING |
Quan Xu8eb73e2d2017-12-12 16:44:21 +08002443 CPU_BASED_UNCOND_IO_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002444 CPU_BASED_MOV_DR_EXITING |
Xiaoyao Li5e3d3942019-12-06 16:45:26 +08002445 CPU_BASED_USE_TSC_OFFSETTING |
Wanpeng Li4d5422c2018-03-12 04:53:02 -07002446 CPU_BASED_MWAIT_EXITING |
2447 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02002448 CPU_BASED_INVLPG_EXITING |
2449 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06002450
Sheng Yangf78e0e22007-10-29 09:40:42 +08002451 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08002452 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08002453 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002454 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
2455 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002456 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002457#ifdef CONFIG_X86_64
2458 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2459 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
2460 ~CPU_BASED_CR8_STORE_EXITING;
2461#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08002462 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002463 min2 = 0;
2464 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08002465 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08002466 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08002467 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002468 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002469 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002470 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Paolo Bonzini0367f202016-07-12 10:44:55 +02002471 SECONDARY_EXEC_DESC |
Sean Christopherson7f3603b2020-09-23 09:50:47 -07002472 SECONDARY_EXEC_ENABLE_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08002473 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002474 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03002475 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08002476 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08002477 SECONDARY_EXEC_XSAVES |
David Hildenbrand736fdf72017-08-24 20:51:37 +02002478 SECONDARY_EXEC_RDSEED_EXITING |
2479 SECONDARY_EXEC_RDRAND_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08002480 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04002481 SECONDARY_EXEC_TSC_SCALING |
Tao Xue69e72fa2019-07-16 14:55:49 +08002482 SECONDARY_EXEC_ENABLE_USR_WAIT_PAUSE |
Chao Pengf99e3da2018-10-24 16:05:10 +08002483 SECONDARY_EXEC_PT_USE_GPA |
2484 SECONDARY_EXEC_PT_CONCEAL_VMX |
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08002485 SECONDARY_EXEC_ENABLE_VMFUNC |
2486 SECONDARY_EXEC_BUS_LOCK_DETECTION;
Sean Christopherson7a57c092020-03-12 11:04:16 -07002487 if (cpu_has_sgx())
2488 opt2 |= SECONDARY_EXEC_ENCLS_EXITING;
Sheng Yangd56f5462008-04-25 10:13:16 +08002489 if (adjust_vmx_controls(min2, opt2,
2490 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002491 &_cpu_based_2nd_exec_control) < 0)
2492 return -EIO;
2493 }
2494#ifndef CONFIG_X86_64
2495 if (!(_cpu_based_2nd_exec_control &
2496 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
2497 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
2498#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08002499
2500 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2501 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08002502 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002503 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
2504 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08002505
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002506 rdmsr_safe(MSR_IA32_VMX_EPT_VPID_CAP,
Sean Christopherson7caaa712018-12-03 13:53:01 -08002507 &vmx_cap->ept, &vmx_cap->vpid);
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002508
Sheng Yangd56f5462008-04-25 10:13:16 +08002509 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03002510 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
2511 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03002512 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
2513 CPU_BASED_CR3_STORE_EXITING |
2514 CPU_BASED_INVLPG_EXITING);
Sean Christopherson7caaa712018-12-03 13:53:01 -08002515 } else if (vmx_cap->ept) {
2516 vmx_cap->ept = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002517 pr_warn_once("EPT CAP should not exist if not support "
2518 "1-setting enable EPT VM-execution control\n");
2519 }
2520 if (!(_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_VPID) &&
Sean Christopherson7caaa712018-12-03 13:53:01 -08002521 vmx_cap->vpid) {
2522 vmx_cap->vpid = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002523 pr_warn_once("VPID CAP should not exist if not support "
2524 "1-setting enable VPID VM-execution control\n");
Sheng Yangd56f5462008-04-25 10:13:16 +08002525 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002526
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002527 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002528#ifdef CONFIG_X86_64
2529 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
2530#endif
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002531 opt = VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL |
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002532 VM_EXIT_LOAD_IA32_PAT |
2533 VM_EXIT_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002534 VM_EXIT_CLEAR_BNDCFGS |
2535 VM_EXIT_PT_CONCEAL_PIP |
2536 VM_EXIT_CLEAR_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002537 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
2538 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002539 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002540
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01002541 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
2542 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
2543 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002544 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
2545 &_pin_based_exec_control) < 0)
2546 return -EIO;
2547
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02002548 if (cpu_has_broken_vmx_preemption_timer())
2549 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002550 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002551 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08002552 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
2553
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01002554 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002555 opt = VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL |
2556 VM_ENTRY_LOAD_IA32_PAT |
2557 VM_ENTRY_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002558 VM_ENTRY_LOAD_BNDCFGS |
2559 VM_ENTRY_PT_CONCEAL_PIP |
2560 VM_ENTRY_LOAD_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002561 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
2562 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002563 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002564
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002565 /*
2566 * Some cpus support VM_{ENTRY,EXIT}_IA32_PERF_GLOBAL_CTRL but they
2567 * can't be used due to an errata where VM Exit may incorrectly clear
2568 * IA32_PERF_GLOBAL_CTRL[34:32]. Workaround the errata by using the
2569 * MSR load mechanism to switch IA32_PERF_GLOBAL_CTRL.
2570 */
2571 if (boot_cpu_data.x86 == 0x6) {
2572 switch (boot_cpu_data.x86_model) {
2573 case 26: /* AAK155 */
2574 case 30: /* AAP115 */
2575 case 37: /* AAT100 */
2576 case 44: /* BC86,AAY89,BD102 */
2577 case 46: /* BA97 */
Sean Christopherson85ba2b12019-01-14 12:12:02 -08002578 _vmentry_control &= ~VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002579 _vmexit_control &= ~VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL;
2580 pr_warn_once("kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
2581 "does not work properly. Using workaround\n");
2582 break;
2583 default:
2584 break;
2585 }
2586 }
2587
2588
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002589 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002590
2591 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
2592 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002593 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002594
2595#ifdef CONFIG_X86_64
2596 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
2597 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03002598 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002599#endif
2600
2601 /* Require Write-Back (WB) memory type for VMCS accesses. */
2602 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002603 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002604
Yang, Sheng002c7f72007-07-31 14:23:01 +03002605 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02002606 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03002607 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002608
Liran Alon2307af12018-06-29 22:59:04 +03002609 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002610
Yang, Sheng002c7f72007-07-31 14:23:01 +03002611 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
2612 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002613 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002614 vmcs_conf->vmexit_ctrl = _vmexit_control;
2615 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002616
Vitaly Kuznetsov064eedf2020-10-14 16:33:46 +02002617#if IS_ENABLED(CONFIG_HYPERV)
2618 if (enlightened_vmcs)
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002619 evmcs_sanitize_exec_ctrls(vmcs_conf);
Vitaly Kuznetsov064eedf2020-10-14 16:33:46 +02002620#endif
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002621
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002622 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002623}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002624
Ben Gardon41836832019-02-11 11:02:52 -08002625struct vmcs *alloc_vmcs_cpu(bool shadow, int cpu, gfp_t flags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002626{
2627 int node = cpu_to_node(cpu);
2628 struct page *pages;
2629 struct vmcs *vmcs;
2630
Ben Gardon41836832019-02-11 11:02:52 -08002631 pages = __alloc_pages_node(node, flags, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002632 if (!pages)
2633 return NULL;
2634 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002635 memset(vmcs, 0, vmcs_config.size);
Liran Alon2307af12018-06-29 22:59:04 +03002636
2637 /* KVM supports Enlightened VMCS v1 only */
2638 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002639 vmcs->hdr.revision_id = KVM_EVMCS_VERSION;
Liran Alon2307af12018-06-29 22:59:04 +03002640 else
Liran Alon392b2f22018-06-23 02:35:01 +03002641 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002642
Liran Alon491a6032018-06-23 02:35:12 +03002643 if (shadow)
2644 vmcs->hdr.shadow_vmcs = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002645 return vmcs;
2646}
2647
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002648void free_vmcs(struct vmcs *vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002649{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002650 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002651}
2652
Nadav Har'Eld462b812011-05-24 15:26:10 +03002653/*
2654 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
2655 */
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002656void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Nadav Har'Eld462b812011-05-24 15:26:10 +03002657{
2658 if (!loaded_vmcs->vmcs)
2659 return;
2660 loaded_vmcs_clear(loaded_vmcs);
2661 free_vmcs(loaded_vmcs->vmcs);
2662 loaded_vmcs->vmcs = NULL;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002663 if (loaded_vmcs->msr_bitmap)
2664 free_page((unsigned long)loaded_vmcs->msr_bitmap);
Jim Mattson355f4fb2016-10-28 08:29:39 -07002665 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002666}
2667
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002668int alloc_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002669{
Liran Alon491a6032018-06-23 02:35:12 +03002670 loaded_vmcs->vmcs = alloc_vmcs(false);
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002671 if (!loaded_vmcs->vmcs)
2672 return -ENOMEM;
2673
Sean Christophersond260f9e2020-03-21 12:37:50 -07002674 vmcs_clear(loaded_vmcs->vmcs);
2675
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002676 loaded_vmcs->shadow_vmcs = NULL;
Sean Christopherson804939e2019-05-07 12:18:05 -07002677 loaded_vmcs->hv_timer_soft_disabled = false;
Sean Christophersond260f9e2020-03-21 12:37:50 -07002678 loaded_vmcs->cpu = -1;
2679 loaded_vmcs->launched = 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002680
2681 if (cpu_has_vmx_msr_bitmap()) {
Ben Gardon41836832019-02-11 11:02:52 -08002682 loaded_vmcs->msr_bitmap = (unsigned long *)
2683 __get_free_page(GFP_KERNEL_ACCOUNT);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002684 if (!loaded_vmcs->msr_bitmap)
2685 goto out_vmcs;
2686 memset(loaded_vmcs->msr_bitmap, 0xff, PAGE_SIZE);
2687 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07002688
2689 memset(&loaded_vmcs->host_state, 0, sizeof(struct vmcs_host_state));
Sean Christopherson3af80fe2019-05-07 12:18:00 -07002690 memset(&loaded_vmcs->controls_shadow, 0,
2691 sizeof(struct vmcs_controls_shadow));
Sean Christophersond7ee0392018-07-23 12:32:47 -07002692
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002693 return 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002694
2695out_vmcs:
2696 free_loaded_vmcs(loaded_vmcs);
2697 return -ENOMEM;
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002698}
2699
Sam Ravnborg39959582007-06-01 00:47:13 -07002700static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002701{
2702 int cpu;
2703
Zachary Amsden3230bb42009-09-29 11:38:37 -10002704 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002705 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10002706 per_cpu(vmxarea, cpu) = NULL;
2707 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002708}
2709
Avi Kivity6aa8b732006-12-10 02:21:36 -08002710static __init int alloc_kvm_area(void)
2711{
2712 int cpu;
2713
Zachary Amsden3230bb42009-09-29 11:38:37 -10002714 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002715 struct vmcs *vmcs;
2716
Ben Gardon41836832019-02-11 11:02:52 -08002717 vmcs = alloc_vmcs_cpu(false, cpu, GFP_KERNEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002718 if (!vmcs) {
2719 free_kvm_area();
2720 return -ENOMEM;
2721 }
2722
Liran Alon2307af12018-06-29 22:59:04 +03002723 /*
2724 * When eVMCS is enabled, alloc_vmcs_cpu() sets
2725 * vmcs->revision_id to KVM_EVMCS_VERSION instead of
2726 * revision_id reported by MSR_IA32_VMX_BASIC.
2727 *
Linus Torvalds312a4662018-12-26 17:03:51 -08002728 * However, even though not explicitly documented by
Liran Alon2307af12018-06-29 22:59:04 +03002729 * TLFS, VMXArea passed as VMXON argument should
2730 * still be marked with revision_id reported by
2731 * physical CPU.
2732 */
2733 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002734 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002735
Avi Kivity6aa8b732006-12-10 02:21:36 -08002736 per_cpu(vmxarea, cpu) = vmcs;
2737 }
2738 return 0;
2739}
2740
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002741static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02002742 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002743{
Gleb Natapovd99e4152012-12-20 16:57:45 +02002744 if (!emulate_invalid_guest_state) {
2745 /*
2746 * CS and SS RPL should be equal during guest entry according
2747 * to VMX spec, but in reality it is not always so. Since vcpu
2748 * is in the middle of the transition from real mode to
2749 * protected mode it is safe to assume that RPL 0 is a good
2750 * default value.
2751 */
2752 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03002753 save->selector &= ~SEGMENT_RPL_MASK;
2754 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02002755 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002756 }
Sean Christopherson1dd7a4f2021-07-13 09:33:06 -07002757 __vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002758}
2759
2760static void enter_pmode(struct kvm_vcpu *vcpu)
2761{
2762 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002763 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002764
Gleb Natapovd99e4152012-12-20 16:57:45 +02002765 /*
Ingo Molnard9f6e122021-03-18 15:28:01 +01002766 * Update real mode segment cache. It may be not up-to-date if segment
Gleb Natapovd99e4152012-12-20 16:57:45 +02002767 * register was written while vcpu was in a guest mode.
2768 */
2769 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2770 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2771 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2772 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
2773 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2774 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
2775
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002776 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002777
Sean Christopherson1dd7a4f2021-07-13 09:33:06 -07002778 __vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002779
2780 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002781 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2782 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002783 vmcs_writel(GUEST_RFLAGS, flags);
2784
Rusty Russell66aee912007-07-17 23:34:16 +10002785 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
2786 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002787
Jason Baronb6a7cc32021-01-14 22:27:54 -05002788 vmx_update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002789
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002790 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2791 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2792 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2793 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2794 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
2795 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002796}
2797
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002798static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002799{
Mathias Krause772e0312012-08-30 01:30:19 +02002800 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02002801 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002802
Gleb Natapovd99e4152012-12-20 16:57:45 +02002803 var.dpl = 0x3;
2804 if (seg == VCPU_SREG_CS)
2805 var.type = 0x3;
2806
2807 if (!emulate_invalid_guest_state) {
2808 var.selector = var.base >> 4;
2809 var.base = var.base & 0xffff0;
2810 var.limit = 0xffff;
2811 var.g = 0;
2812 var.db = 0;
2813 var.present = 1;
2814 var.s = 1;
2815 var.l = 0;
2816 var.unusable = 0;
2817 var.type = 0x3;
2818 var.avl = 0;
2819 if (save->base & 0xf)
2820 printk_once(KERN_WARNING "kvm: segment base is not "
2821 "paragraph aligned when entering "
2822 "protected mode (seg=%d)", seg);
2823 }
2824
2825 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05002826 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02002827 vmcs_write32(sf->limit, var.limit);
2828 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002829}
2830
2831static void enter_rmode(struct kvm_vcpu *vcpu)
2832{
2833 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002834 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002835 struct kvm_vmx *kvm_vmx = to_kvm_vmx(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002836
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002837 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
2838 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2839 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2840 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2841 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02002842 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2843 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002844
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002845 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002846
Gleb Natapov776e58e2011-03-13 12:34:27 +02002847 /*
2848 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01002849 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02002850 */
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002851 if (!kvm_vmx->tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02002852 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
2853 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02002854
Avi Kivity2fb92db2011-04-27 19:42:18 +03002855 vmx_segment_cache_clear(vmx);
2856
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002857 vmcs_writel(GUEST_TR_BASE, kvm_vmx->tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002858 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002859 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2860
2861 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002862 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002863
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002864 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002865
2866 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10002867 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Jason Baronb6a7cc32021-01-14 22:27:54 -05002868 vmx_update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002869
Gleb Natapovd99e4152012-12-20 16:57:45 +02002870 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2871 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2872 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2873 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2874 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
2875 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002876}
2877
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002878int vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
Amit Shah401d10d2009-02-20 22:53:37 +05302879{
2880 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond85a8032020-09-23 11:04:06 -07002881 struct vmx_uret_msr *msr = vmx_find_uret_msr(vmx, MSR_EFER);
Avi Kivity26bb0982009-09-07 11:14:12 +03002882
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002883 /* Nothing to do if hardware doesn't support EFER. */
Avi Kivity26bb0982009-09-07 11:14:12 +03002884 if (!msr)
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002885 return 0;
Amit Shah401d10d2009-02-20 22:53:37 +05302886
Avi Kivityf6801df2010-01-21 15:31:50 +02002887 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05302888 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002889 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302890 msr->data = efer;
2891 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002892 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302893
2894 msr->data = efer & ~EFER_LME;
2895 }
Sean Christopherson400dd542021-07-13 09:33:11 -07002896 vmx_setup_uret_msrs(vmx);
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002897 return 0;
Amit Shah401d10d2009-02-20 22:53:37 +05302898}
2899
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002900#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002901
2902static void enter_lmode(struct kvm_vcpu *vcpu)
2903{
2904 u32 guest_tr_ar;
2905
Avi Kivity2fb92db2011-04-27 19:42:18 +03002906 vmx_segment_cache_clear(to_vmx(vcpu));
2907
Avi Kivity6aa8b732006-12-10 02:21:36 -08002908 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002909 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02002910 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
2911 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002912 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002913 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
2914 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002915 }
Avi Kivityda38f432010-07-06 11:30:49 +03002916 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002917}
2918
2919static void exit_lmode(struct kvm_vcpu *vcpu)
2920{
Gleb Natapov2961e8762013-11-25 15:37:13 +02002921 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03002922 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002923}
2924
2925#endif
2926
Sean Christopherson77809382020-03-20 14:28:18 -07002927static void vmx_flush_tlb_all(struct kvm_vcpu *vcpu)
Sean Christopherson5058b692020-03-20 14:28:14 -07002928{
2929 struct vcpu_vmx *vmx = to_vmx(vcpu);
2930
2931 /*
Sean Christopherson77809382020-03-20 14:28:18 -07002932 * INVEPT must be issued when EPT is enabled, irrespective of VPID, as
2933 * the CPU is not required to invalidate guest-physical mappings on
2934 * VM-Entry, even if VPID is disabled. Guest-physical mappings are
2935 * associated with the root EPT structure and not any particular VPID
2936 * (INVVPID also isn't required to invalidate guest-physical mappings).
Sean Christopherson5058b692020-03-20 14:28:14 -07002937 */
2938 if (enable_ept) {
2939 ept_sync_global();
2940 } else if (enable_vpid) {
2941 if (cpu_has_vmx_invvpid_global()) {
2942 vpid_sync_vcpu_global();
2943 } else {
2944 vpid_sync_vcpu_single(vmx->vpid);
2945 vpid_sync_vcpu_single(vmx->nested.vpid02);
2946 }
2947 }
2948}
2949
Sean Christopherson2b4a5a52021-11-25 01:49:43 +00002950static inline int vmx_get_current_vpid(struct kvm_vcpu *vcpu)
2951{
2952 if (is_guest_mode(vcpu))
2953 return nested_get_vpid02(vcpu);
2954 return to_vmx(vcpu)->vpid;
2955}
2956
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002957static void vmx_flush_tlb_current(struct kvm_vcpu *vcpu)
2958{
Sean Christopherson2a40b902020-07-15 20:41:18 -07002959 struct kvm_mmu *mmu = vcpu->arch.mmu;
2960 u64 root_hpa = mmu->root_hpa;
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002961
2962 /* No flush required if the current context is invalid. */
2963 if (!VALID_PAGE(root_hpa))
2964 return;
2965
2966 if (enable_ept)
Sean Christopherson2a40b902020-07-15 20:41:18 -07002967 ept_sync_context(construct_eptp(vcpu, root_hpa,
2968 mmu->shadow_root_level));
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002969 else
Sean Christopherson2b4a5a52021-11-25 01:49:43 +00002970 vpid_sync_context(vmx_get_current_vpid(vcpu));
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002971}
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 Christopherson2b4a5a52021-11-25 01:49:43 +00002976 * vpid_sync_vcpu_addr() is a nop if vpid==0, see the comment in
Sean Christophersonad104b52020-03-20 14:28:11 -07002977 * vmx_flush_tlb_guest() for an explanation of why this is ok.
Junaid Shahidfaff8752018-06-29 13:10:05 -07002978 */
Sean Christopherson2b4a5a52021-11-25 01:49:43 +00002979 vpid_sync_vcpu_addr(vmx_get_current_vpid(vcpu), 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 /*
Sean Christopherson2b4a5a52021-11-25 01:49:43 +00002985 * vpid_sync_context() is a nop if vpid==0, e.g. if enable_vpid==0 or a
2986 * vpid couldn't be allocated for this vCPU. VM-Enter and VM-Exit are
2987 * required to flush GVA->{G,H}PA mappings from the TLB if vpid is
Sean Christophersone64419d2020-03-20 14:28:10 -07002988 * disabled (VM-Enter with vpid enabled and vpid==0 is disallowed),
2989 * i.e. no explicit INVVPID is necessary.
2990 */
Sean Christopherson2b4a5a52021-11-25 01:49:43 +00002991 vpid_sync_context(vmx_get_current_vpid(vcpu));
Sean Christophersone64419d2020-03-20 14:28:10 -07002992}
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
Lai Jiangshanc0d69562021-11-08 20:43:54 +08003021 kvm_register_mark_available(vcpu, VCPU_EXREG_PDPTR);
Avi Kivity8f5d5492009-05-31 18:41:29 +03003022}
3023
Sean Christopherson470750b2021-07-13 09:33:02 -07003024#define CR3_EXITING_BITS (CPU_BASED_CR3_LOAD_EXITING | \
3025 CPU_BASED_CR3_STORE_EXITING)
3026
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003027void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003028{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003029 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson32437c22021-07-13 09:33:05 -07003030 unsigned long hw_cr0, old_cr0_pg;
Sean Christopherson470750b2021-07-13 09:33:02 -07003031 u32 tmp;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003032
Sean Christopherson32437c22021-07-13 09:33:05 -07003033 old_cr0_pg = kvm_read_cr0_bits(vcpu, X86_CR0_PG);
3034
Sean Christopherson3de63472018-07-13 08:42:30 -07003035 hw_cr0 = (cr0 & ~KVM_VM_CR0_ALWAYS_OFF);
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003036 if (is_unrestricted_guest(vcpu))
Gleb Natapov50378782013-02-04 16:00:28 +02003037 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02003038 else {
Gleb Natapov50378782013-02-04 16:00:28 +02003039 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sean Christophersonee5a5582021-07-13 09:32:59 -07003040 if (!enable_ept)
3041 hw_cr0 |= X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08003042
Gleb Natapov218e7632013-01-21 15:36:45 +02003043 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
3044 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003045
Gleb Natapov218e7632013-01-21 15:36:45 +02003046 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
3047 enter_rmode(vcpu);
3048 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003049
Sean Christopherson32437c22021-07-13 09:33:05 -07003050 vmcs_writel(CR0_READ_SHADOW, cr0);
3051 vmcs_writel(GUEST_CR0, hw_cr0);
3052 vcpu->arch.cr0 = cr0;
3053 kvm_register_mark_available(vcpu, VCPU_EXREG_CR0);
3054
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003055#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02003056 if (vcpu->arch.efer & EFER_LME) {
Sean Christopherson32437c22021-07-13 09:33:05 -07003057 if (!old_cr0_pg && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003058 enter_lmode(vcpu);
Sean Christopherson32437c22021-07-13 09:33:05 -07003059 else if (old_cr0_pg && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003060 exit_lmode(vcpu);
3061 }
3062#endif
3063
Sean Christophersonc834fd72021-07-13 09:33:01 -07003064 if (enable_ept && !is_unrestricted_guest(vcpu)) {
Sean Christopherson470750b2021-07-13 09:33:02 -07003065 /*
3066 * Ensure KVM has an up-to-date snapshot of the guest's CR3. If
3067 * the below code _enables_ CR3 exiting, vmx_cache_reg() will
3068 * (correctly) stop reading vmcs.GUEST_CR3 because it thinks
3069 * KVM's CR3 is installed.
3070 */
Sean Christophersonc834fd72021-07-13 09:33:01 -07003071 if (!kvm_register_is_available(vcpu, VCPU_EXREG_CR3))
3072 vmx_cache_reg(vcpu, VCPU_EXREG_CR3);
Sean Christopherson470750b2021-07-13 09:33:02 -07003073
3074 /*
3075 * When running with EPT but not unrestricted guest, KVM must
3076 * intercept CR3 accesses when paging is _disabled_. This is
3077 * necessary because restricted guests can't actually run with
3078 * paging disabled, and so KVM stuffs its own CR3 in order to
3079 * run the guest when identity mapped page tables.
3080 *
3081 * Do _NOT_ check the old CR0.PG, e.g. to optimize away the
3082 * update, it may be stale with respect to CR3 interception,
3083 * e.g. after nested VM-Enter.
3084 *
3085 * Lastly, honor L1's desires, i.e. intercept CR3 loads and/or
3086 * stores to forward them to L1, even if KVM does not need to
3087 * intercept them to preserve its identity mapped page tables.
3088 */
Sean Christophersonc834fd72021-07-13 09:33:01 -07003089 if (!(cr0 & X86_CR0_PG)) {
Sean Christopherson470750b2021-07-13 09:33:02 -07003090 exec_controls_setbit(vmx, CR3_EXITING_BITS);
3091 } else if (!is_guest_mode(vcpu)) {
3092 exec_controls_clearbit(vmx, CR3_EXITING_BITS);
3093 } else {
3094 tmp = exec_controls_get(vmx);
3095 tmp &= ~CR3_EXITING_BITS;
3096 tmp |= get_vmcs12(vcpu)->cpu_based_vm_exec_control & CR3_EXITING_BITS;
3097 exec_controls_set(vmx, tmp);
3098 }
3099
Sean Christopherson32437c22021-07-13 09:33:05 -07003100 /* Note, vmx_set_cr4() consumes the new vcpu->arch.cr0. */
3101 if ((old_cr0_pg ^ cr0) & X86_CR0_PG)
Sean Christophersonc834fd72021-07-13 09:33:01 -07003102 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Lai Jiangshan5b611782021-12-16 10:19:38 +08003103
3104 /*
3105 * When !CR0_PG -> CR0_PG, vcpu->arch.cr3 becomes active, but
3106 * GUEST_CR3 is still vmx->ept_identity_map_addr if EPT + !URG.
3107 */
3108 if (!(old_cr0_pg & X86_CR0_PG) && (cr0 & X86_CR0_PG))
3109 kvm_register_mark_dirty(vcpu, VCPU_EXREG_CR3);
Sean Christophersonc834fd72021-07-13 09:33:01 -07003110 }
Sheng Yang14394422008-04-28 12:24:45 +08003111
Gleb Natapov14168782013-01-21 15:36:49 +02003112 /* depends on vcpu->arch.cr0 to be set to a new value */
Maxim Levitskydbab6102021-09-13 17:09:54 +03003113 vmx->emulation_required = vmx_emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003114}
3115
Sean Christophersond468d942020-07-15 20:41:20 -07003116static int vmx_get_max_tdp_level(void)
Sean Christopherson0047fca2020-05-01 21:32:33 -07003117{
Sean Christophersond468d942020-07-15 20:41:20 -07003118 if (cpu_has_vmx_ept_5levels())
Sean Christopherson0047fca2020-05-01 21:32:33 -07003119 return 5;
3120 return 4;
3121}
3122
Sean Christophersone83bc092021-03-05 10:31:13 -08003123u64 construct_eptp(struct kvm_vcpu *vcpu, hpa_t root_hpa, int root_level)
Sheng Yang14394422008-04-28 12:24:45 +08003124{
Yu Zhang855feb62017-08-24 20:27:55 +08003125 u64 eptp = VMX_EPTP_MT_WB;
Sheng Yang14394422008-04-28 12:24:45 +08003126
Sean Christopherson2a40b902020-07-15 20:41:18 -07003127 eptp |= (root_level == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08003128
Peter Feiner995f00a2017-06-30 17:26:32 -07003129 if (enable_ept_ad_bits &&
3130 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02003131 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sean Christophersone83bc092021-03-05 10:31:13 -08003132 eptp |= root_hpa;
Sheng Yang14394422008-04-28 12:24:45 +08003133
3134 return eptp;
3135}
3136
Sean Christophersone83bc092021-03-05 10:31:13 -08003137static void vmx_load_mmu_pgd(struct kvm_vcpu *vcpu, hpa_t root_hpa,
3138 int root_level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003139{
Tianyu Lan877ad952018-07-19 08:40:23 +00003140 struct kvm *kvm = vcpu->kvm;
Sean Christopherson04f11ef2019-09-27 14:45:16 -07003141 bool update_guest_cr3 = true;
Sheng Yang14394422008-04-28 12:24:45 +08003142 unsigned long guest_cr3;
3143 u64 eptp;
3144
Avi Kivity089d0342009-03-23 18:26:32 +02003145 if (enable_ept) {
Sean Christophersone83bc092021-03-05 10:31:13 -08003146 eptp = construct_eptp(vcpu, root_hpa, root_level);
Sheng Yang14394422008-04-28 12:24:45 +08003147 vmcs_write64(EPT_POINTER, eptp);
Tianyu Lan877ad952018-07-19 08:40:23 +00003148
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +00003149 hv_track_root_tdp(vcpu, root_hpa);
Tianyu Lan877ad952018-07-19 08:40:23 +00003150
Paolo Bonzinidf7e0682020-05-20 08:37:37 -04003151 if (!enable_unrestricted_guest && !is_paging(vcpu))
Tianyu Lan877ad952018-07-19 08:40:23 +00003152 guest_cr3 = to_kvm_vmx(kvm)->ept_identity_map_addr;
Lai Jiangshanc62c7bd2021-11-08 20:44:03 +08003153 else if (kvm_register_is_dirty(vcpu, VCPU_EXREG_CR3))
Sean Christophersonb17b7432019-09-27 14:45:17 -07003154 guest_cr3 = vcpu->arch.cr3;
Lai Jiangshanc62c7bd2021-11-08 20:44:03 +08003155 else /* vmcs.GUEST_CR3 is already up-to-date. */
Sean Christophersonb17b7432019-09-27 14:45:17 -07003156 update_guest_cr3 = false;
Peter Shier43fea4e2020-08-20 16:05:45 -07003157 vmx_ept_load_pdptrs(vcpu);
Sean Christophersonbe100ef2020-03-20 14:28:33 -07003158 } else {
Sean Christophersone83bc092021-03-05 10:31:13 -08003159 guest_cr3 = root_hpa | kvm_get_active_pcid(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003160 }
3161
Sean Christopherson04f11ef2019-09-27 14:45:16 -07003162 if (update_guest_cr3)
3163 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003164}
3165
Michael Roth405329f2021-12-16 11:13:54 -06003166
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07003167static bool vmx_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
3168{
3169 /*
3170 * We operate under the default treatment of SMM, so VMX cannot be
3171 * enabled under SMM. Note, whether or not VMXE is allowed at all is
Sean Christophersonee69c922020-10-06 18:44:16 -07003172 * handled by kvm_is_valid_cr4().
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07003173 */
3174 if ((cr4 & X86_CR4_VMXE) && is_smm(vcpu))
3175 return false;
3176
3177 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
3178 return false;
3179
3180 return true;
3181}
3182
3183void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003184{
Jim Mattson2259c172020-10-29 10:06:48 -07003185 unsigned long old_cr4 = vcpu->arch.cr4;
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003186 struct vcpu_vmx *vmx = to_vmx(vcpu);
Ben Serebrin085e68e2015-04-16 11:58:05 -07003187 /*
3188 * Pass through host's Machine Check Enable value to hw_cr4, which
3189 * is in force while we are in guest mode. Do not let guests control
3190 * this bit, even if host CR4.MCE == 0.
3191 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003192 unsigned long hw_cr4;
3193
3194 hw_cr4 = (cr4_read_shadow() & X86_CR4_MCE) | (cr4 & ~X86_CR4_MCE);
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003195 if (is_unrestricted_guest(vcpu))
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003196 hw_cr4 |= KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST;
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003197 else if (vmx->rmode.vm86_active)
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003198 hw_cr4 |= KVM_RMODE_VM_CR4_ALWAYS_ON;
3199 else
3200 hw_cr4 |= KVM_PMODE_VM_CR4_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003201
Sean Christopherson64f7a112018-04-30 10:01:06 -07003202 if (!boot_cpu_has(X86_FEATURE_UMIP) && vmx_umip_emulated()) {
3203 if (cr4 & X86_CR4_UMIP) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003204 secondary_exec_controls_setbit(vmx, SECONDARY_EXEC_DESC);
Sean Christopherson64f7a112018-04-30 10:01:06 -07003205 hw_cr4 &= ~X86_CR4_UMIP;
3206 } else if (!is_guest_mode(vcpu) ||
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003207 !nested_cpu_has2(get_vmcs12(vcpu), SECONDARY_EXEC_DESC)) {
3208 secondary_exec_controls_clearbit(vmx, SECONDARY_EXEC_DESC);
3209 }
Sean Christopherson64f7a112018-04-30 10:01:06 -07003210 }
Paolo Bonzini0367f202016-07-12 10:44:55 +02003211
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003212 vcpu->arch.cr4 = cr4;
Sean Christophersonf98c1e72020-05-01 21:32:30 -07003213 kvm_register_mark_available(vcpu, VCPU_EXREG_CR4);
Sheng Yang14394422008-04-28 12:24:45 +08003214
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003215 if (!is_unrestricted_guest(vcpu)) {
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003216 if (enable_ept) {
3217 if (!is_paging(vcpu)) {
3218 hw_cr4 &= ~X86_CR4_PAE;
3219 hw_cr4 |= X86_CR4_PSE;
3220 } else if (!(cr4 & X86_CR4_PAE)) {
3221 hw_cr4 &= ~X86_CR4_PAE;
3222 }
3223 }
3224
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003225 /*
Huaitong Handdba2622016-03-22 16:51:15 +08003226 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
3227 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
3228 * to be manually disabled when guest switches to non-paging
3229 * mode.
3230 *
3231 * If !enable_unrestricted_guest, the CPU is always running
3232 * with CR0.PG=1 and CR4 needs to be modified.
3233 * If enable_unrestricted_guest, the CPU automatically
3234 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003235 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003236 if (!is_paging(vcpu))
3237 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
3238 }
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003239
Sheng Yang14394422008-04-28 12:24:45 +08003240 vmcs_writel(CR4_READ_SHADOW, cr4);
3241 vmcs_writel(GUEST_CR4, hw_cr4);
Jim Mattson2259c172020-10-29 10:06:48 -07003242
3243 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
3244 kvm_update_cpuid_runtime(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003245}
3246
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003247void vmx_get_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003248{
Avi Kivitya9179492011-01-03 14:28:52 +02003249 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003250 u32 ar;
3251
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003252 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003253 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02003254 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03003255 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003256 return;
Avi Kivity1390a282012-08-21 17:07:08 +03003257 var->base = vmx_read_guest_seg_base(vmx, seg);
3258 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3259 return;
Avi Kivitya9179492011-01-03 14:28:52 +02003260 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003261 var->base = vmx_read_guest_seg_base(vmx, seg);
3262 var->limit = vmx_read_guest_seg_limit(vmx, seg);
3263 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3264 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03003265 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003266 var->type = ar & 15;
3267 var->s = (ar >> 4) & 1;
3268 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03003269 /*
3270 * Some userspaces do not preserve unusable property. Since usable
3271 * segment has to be present according to VMX spec we can use present
3272 * property to amend userspace bug by making unusable segment always
3273 * nonpresent. vmx_segment_access_rights() already marks nonpresent
3274 * segment as unusable.
3275 */
3276 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003277 var->avl = (ar >> 12) & 1;
3278 var->l = (ar >> 13) & 1;
3279 var->db = (ar >> 14) & 1;
3280 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003281}
3282
Avi Kivitya9179492011-01-03 14:28:52 +02003283static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
3284{
Avi Kivitya9179492011-01-03 14:28:52 +02003285 struct kvm_segment s;
3286
3287 if (to_vmx(vcpu)->rmode.vm86_active) {
3288 vmx_get_segment(vcpu, &s, seg);
3289 return s.base;
3290 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003291 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003292}
3293
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003294int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02003295{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003296 struct vcpu_vmx *vmx = to_vmx(vcpu);
3297
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003298 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02003299 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003300 else {
3301 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003302 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003303 }
Avi Kivity69c73022011-03-07 15:26:44 +02003304}
3305
Avi Kivity653e3102007-05-07 10:55:37 +03003306static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003307{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003308 u32 ar;
3309
Avi Kivityf0495f92012-06-07 17:06:10 +03003310 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003311 ar = 1 << 16;
3312 else {
3313 ar = var->type & 15;
3314 ar |= (var->s & 1) << 4;
3315 ar |= (var->dpl & 3) << 5;
3316 ar |= (var->present & 1) << 7;
3317 ar |= (var->avl & 1) << 12;
3318 ar |= (var->l & 1) << 13;
3319 ar |= (var->db & 1) << 14;
3320 ar |= (var->g & 1) << 15;
3321 }
Avi Kivity653e3102007-05-07 10:55:37 +03003322
3323 return ar;
3324}
3325
Sean Christopherson816be9e2021-07-13 09:33:07 -07003326void __vmx_set_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity653e3102007-05-07 10:55:37 +03003327{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003328 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02003329 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03003330
Avi Kivity2fb92db2011-04-27 19:42:18 +03003331 vmx_segment_cache_clear(vmx);
3332
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003333 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
3334 vmx->rmode.segs[seg] = *var;
3335 if (seg == VCPU_SREG_TR)
3336 vmcs_write16(sf->selector, var->selector);
3337 else if (var->s)
3338 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Sean Christopherson1dd7a4f2021-07-13 09:33:06 -07003339 return;
Avi Kivity653e3102007-05-07 10:55:37 +03003340 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003341
Avi Kivity653e3102007-05-07 10:55:37 +03003342 vmcs_writel(sf->base, var->base);
3343 vmcs_write32(sf->limit, var->limit);
3344 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003345
3346 /*
3347 * Fix the "Accessed" bit in AR field of segment registers for older
3348 * qemu binaries.
3349 * IA32 arch specifies that at the time of processor reset the
3350 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08003351 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003352 * state vmexit when "unrestricted guest" mode is turned on.
3353 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3354 * tree. Newer qemu binaries with that qemu fix would not need this
3355 * kvm hack.
3356 */
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003357 if (is_unrestricted_guest(vcpu) && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02003358 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003359
Gleb Natapovf924d662012-12-12 19:10:55 +02003360 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Sean Christopherson1dd7a4f2021-07-13 09:33:06 -07003361}
Gleb Natapovd99e4152012-12-20 16:57:45 +02003362
Sean Christopherson816be9e2021-07-13 09:33:07 -07003363static void vmx_set_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Sean Christopherson1dd7a4f2021-07-13 09:33:06 -07003364{
3365 __vmx_set_segment(vcpu, var, seg);
3366
Maxim Levitskydbab6102021-09-13 17:09:54 +03003367 to_vmx(vcpu)->emulation_required = vmx_emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003368}
3369
Avi Kivity6aa8b732006-12-10 02:21:36 -08003370static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
3371{
Avi Kivity2fb92db2011-04-27 19:42:18 +03003372 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003373
3374 *db = (ar >> 14) & 1;
3375 *l = (ar >> 13) & 1;
3376}
3377
Gleb Natapov89a27f42010-02-16 10:51:48 +02003378static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003379{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003380 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
3381 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003382}
3383
Gleb Natapov89a27f42010-02-16 10:51:48 +02003384static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003385{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003386 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
3387 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003388}
3389
Gleb Natapov89a27f42010-02-16 10:51:48 +02003390static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003391{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003392 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
3393 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003394}
3395
Gleb Natapov89a27f42010-02-16 10:51:48 +02003396static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003397{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003398 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
3399 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003400}
3401
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003402static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
3403{
3404 struct kvm_segment var;
3405 u32 ar;
3406
3407 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02003408 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02003409 if (seg == VCPU_SREG_CS)
3410 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003411 ar = vmx_segment_access_rights(&var);
3412
3413 if (var.base != (var.selector << 4))
3414 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02003415 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003416 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02003417 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003418 return false;
3419
3420 return true;
3421}
3422
3423static bool code_segment_valid(struct kvm_vcpu *vcpu)
3424{
3425 struct kvm_segment cs;
3426 unsigned int cs_rpl;
3427
3428 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003429 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003430
Avi Kivity1872a3f2009-01-04 23:26:52 +02003431 if (cs.unusable)
3432 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003433 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003434 return false;
3435 if (!cs.s)
3436 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003437 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003438 if (cs.dpl > cs_rpl)
3439 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003440 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003441 if (cs.dpl != cs_rpl)
3442 return false;
3443 }
3444 if (!cs.present)
3445 return false;
3446
3447 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
3448 return true;
3449}
3450
3451static bool stack_segment_valid(struct kvm_vcpu *vcpu)
3452{
3453 struct kvm_segment ss;
3454 unsigned int ss_rpl;
3455
3456 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003457 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003458
Avi Kivity1872a3f2009-01-04 23:26:52 +02003459 if (ss.unusable)
3460 return true;
3461 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003462 return false;
3463 if (!ss.s)
3464 return false;
3465 if (ss.dpl != ss_rpl) /* DPL != RPL */
3466 return false;
3467 if (!ss.present)
3468 return false;
3469
3470 return true;
3471}
3472
3473static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
3474{
3475 struct kvm_segment var;
3476 unsigned int rpl;
3477
3478 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03003479 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003480
Avi Kivity1872a3f2009-01-04 23:26:52 +02003481 if (var.unusable)
3482 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003483 if (!var.s)
3484 return false;
3485 if (!var.present)
3486 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003487 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003488 if (var.dpl < rpl) /* DPL < RPL */
3489 return false;
3490 }
3491
3492 /* TODO: Add other members to kvm_segment_field to allow checking for other access
3493 * rights flags
3494 */
3495 return true;
3496}
3497
3498static bool tr_valid(struct kvm_vcpu *vcpu)
3499{
3500 struct kvm_segment tr;
3501
3502 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
3503
Avi Kivity1872a3f2009-01-04 23:26:52 +02003504 if (tr.unusable)
3505 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03003506 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003507 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003508 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003509 return false;
3510 if (!tr.present)
3511 return false;
3512
3513 return true;
3514}
3515
3516static bool ldtr_valid(struct kvm_vcpu *vcpu)
3517{
3518 struct kvm_segment ldtr;
3519
3520 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
3521
Avi Kivity1872a3f2009-01-04 23:26:52 +02003522 if (ldtr.unusable)
3523 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03003524 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003525 return false;
3526 if (ldtr.type != 2)
3527 return false;
3528 if (!ldtr.present)
3529 return false;
3530
3531 return true;
3532}
3533
3534static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
3535{
3536 struct kvm_segment cs, ss;
3537
3538 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3539 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3540
Nadav Amitb32a9912015-03-29 16:33:04 +03003541 return ((cs.selector & SEGMENT_RPL_MASK) ==
3542 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003543}
3544
3545/*
3546 * Check if guest state is valid. Returns true if valid, false if
3547 * not.
3548 * We assume that registers are always usable
3549 */
Sean Christopherson2ba44932020-09-23 11:44:48 -07003550bool __vmx_guest_state_valid(struct kvm_vcpu *vcpu)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003551{
3552 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03003553 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003554 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
3555 return false;
3556 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
3557 return false;
3558 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
3559 return false;
3560 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
3561 return false;
3562 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
3563 return false;
3564 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
3565 return false;
3566 } else {
3567 /* protected mode guest state checks */
3568 if (!cs_ss_rpl_check(vcpu))
3569 return false;
3570 if (!code_segment_valid(vcpu))
3571 return false;
3572 if (!stack_segment_valid(vcpu))
3573 return false;
3574 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
3575 return false;
3576 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
3577 return false;
3578 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
3579 return false;
3580 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
3581 return false;
3582 if (!tr_valid(vcpu))
3583 return false;
3584 if (!ldtr_valid(vcpu))
3585 return false;
3586 }
3587 /* TODO:
3588 * - Add checks on RIP
3589 * - Add checks on RFLAGS
3590 */
3591
3592 return true;
3593}
3594
Peter Xuff5a9832020-09-30 21:20:33 -04003595static int init_rmode_tss(struct kvm *kvm, void __user *ua)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003596{
Peter Xuff5a9832020-09-30 21:20:33 -04003597 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
3598 u16 data;
3599 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003600
Peter Xuff5a9832020-09-30 21:20:33 -04003601 for (i = 0; i < 3; i++) {
3602 if (__copy_to_user(ua + PAGE_SIZE * i, zero_page, PAGE_SIZE))
3603 return -EFAULT;
3604 }
3605
Izik Eidus195aefd2007-10-01 22:14:18 +02003606 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Peter Xuff5a9832020-09-30 21:20:33 -04003607 if (__copy_to_user(ua + TSS_IOPB_BASE_OFFSET, &data, sizeof(u16)))
3608 return -EFAULT;
3609
Izik Eidus195aefd2007-10-01 22:14:18 +02003610 data = ~0;
Peter Xuff5a9832020-09-30 21:20:33 -04003611 if (__copy_to_user(ua + RMODE_TSS_SIZE - 1, &data, sizeof(u8)))
3612 return -EFAULT;
3613
3614 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003615}
3616
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003617static int init_rmode_identity_map(struct kvm *kvm)
3618{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003619 struct kvm_vmx *kvm_vmx = to_kvm_vmx(kvm);
Peter Xu2a5755b2020-01-09 09:57:14 -05003620 int i, r = 0;
Peter Xuff5a9832020-09-30 21:20:33 -04003621 void __user *uaddr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003622 u32 tmp;
3623
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003624 /* Protect kvm_vmx->ept_identity_pagetable_done. */
Tang Chena255d472014-09-16 18:41:58 +08003625 mutex_lock(&kvm->slots_lock);
3626
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003627 if (likely(kvm_vmx->ept_identity_pagetable_done))
Peter Xu2a5755b2020-01-09 09:57:14 -05003628 goto out;
Tang Chena255d472014-09-16 18:41:58 +08003629
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003630 if (!kvm_vmx->ept_identity_map_addr)
3631 kvm_vmx->ept_identity_map_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chena255d472014-09-16 18:41:58 +08003632
Peter Xuff5a9832020-09-30 21:20:33 -04003633 uaddr = __x86_set_memory_region(kvm,
3634 IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
3635 kvm_vmx->ept_identity_map_addr,
3636 PAGE_SIZE);
3637 if (IS_ERR(uaddr)) {
3638 r = PTR_ERR(uaddr);
Peter Xu2a5755b2020-01-09 09:57:14 -05003639 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003640 }
Tang Chena255d472014-09-16 18:41:58 +08003641
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003642 /* Set up identity-mapping pagetable for EPT in real mode */
3643 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
3644 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
3645 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
Peter Xuff5a9832020-09-30 21:20:33 -04003646 if (__copy_to_user(uaddr + i * sizeof(tmp), &tmp, sizeof(tmp))) {
3647 r = -EFAULT;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003648 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003649 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003650 }
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003651 kvm_vmx->ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08003652
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003653out:
Tang Chena255d472014-09-16 18:41:58 +08003654 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08003655 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003656}
3657
Avi Kivity6aa8b732006-12-10 02:21:36 -08003658static void seg_setup(int seg)
3659{
Mathias Krause772e0312012-08-30 01:30:19 +02003660 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003661 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003662
3663 vmcs_write16(sf->selector, 0);
3664 vmcs_writel(sf->base, 0);
3665 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02003666 ar = 0x93;
3667 if (seg == VCPU_SREG_CS)
3668 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003669
3670 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003671}
3672
Sheng Yangf78e0e22007-10-29 09:40:42 +08003673static int alloc_apic_access_page(struct kvm *kvm)
3674{
Xiao Guangrong44841412012-09-07 14:14:20 +08003675 struct page *page;
Peter Xuff5a9832020-09-30 21:20:33 -04003676 void __user *hva;
3677 int ret = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003678
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003679 mutex_lock(&kvm->slots_lock);
Maxim Levitskya01b45e2021-06-23 14:29:55 +03003680 if (kvm->arch.apic_access_memslot_enabled)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003681 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003682 hva = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
3683 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
3684 if (IS_ERR(hva)) {
3685 ret = PTR_ERR(hva);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003686 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003687 }
Izik Eidus72dc67a2008-02-10 18:04:15 +02003688
Tang Chen73a6d942014-09-11 13:38:00 +08003689 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08003690 if (is_error_page(page)) {
Peter Xuff5a9832020-09-30 21:20:33 -04003691 ret = -EFAULT;
Xiao Guangrong44841412012-09-07 14:14:20 +08003692 goto out;
3693 }
3694
Tang Chenc24ae0d2014-09-24 15:57:58 +08003695 /*
3696 * Do not pin the page in memory, so that memory hot-unplug
3697 * is able to migrate it.
3698 */
3699 put_page(page);
Maxim Levitskya01b45e2021-06-23 14:29:55 +03003700 kvm->arch.apic_access_memslot_enabled = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003701out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003702 mutex_unlock(&kvm->slots_lock);
Peter Xuff5a9832020-09-30 21:20:33 -04003703 return ret;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003704}
3705
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003706int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003707{
3708 int vpid;
3709
Avi Kivity919818a2009-03-23 18:01:29 +02003710 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08003711 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003712 spin_lock(&vmx_vpid_lock);
3713 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003714 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003715 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003716 else
3717 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003718 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003719 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003720}
3721
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003722void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003723{
Wanpeng Li991e7a02015-09-16 17:30:05 +08003724 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003725 return;
3726 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003727 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003728 spin_unlock(&vmx_vpid_lock);
3729}
3730
Vitaly Kuznetsovb84155c32021-11-29 10:47:02 +01003731static void vmx_msr_bitmap_l01_changed(struct vcpu_vmx *vmx)
3732{
3733 /*
3734 * When KVM is a nested hypervisor on top of Hyper-V and uses
3735 * 'Enlightened MSR Bitmap' feature L0 needs to know that MSR
3736 * bitmap has changed.
3737 */
3738 if (static_branch_unlikely(&enable_evmcs))
3739 evmcs_touch_msr_bitmap();
Vitaly Kuznetsoved2a4802021-11-29 10:47:03 +01003740
3741 vmx->nested.force_msr_bitmap_recalc = true;
Vitaly Kuznetsovb84155c32021-11-29 10:47:02 +01003742}
3743
Sean Christophersone23f6d42021-04-23 15:19:12 -07003744void vmx_disable_intercept_for_msr(struct kvm_vcpu *vcpu, u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08003745{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003746 struct vcpu_vmx *vmx = to_vmx(vcpu);
3747 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
Sheng Yang25c5f222008-03-28 13:18:56 +08003748
3749 if (!cpu_has_vmx_msr_bitmap())
3750 return;
3751
Vitaly Kuznetsovb84155c32021-11-29 10:47:02 +01003752 vmx_msr_bitmap_l01_changed(vmx);
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003753
Sheng Yang25c5f222008-03-28 13:18:56 +08003754 /*
Alexander Graf3eb90012020-09-25 16:34:20 +02003755 * Mark the desired intercept state in shadow bitmap, this is needed
3756 * for resync when the MSR filters change.
3757 */
3758 if (is_valid_passthrough_msr(msr)) {
3759 int idx = possible_passthrough_msr_slot(msr);
Yang Zhang8d146952013-01-25 10:18:50 +08003760
Alexander Graf3eb90012020-09-25 16:34:20 +02003761 if (idx != -ENOENT) {
3762 if (type & MSR_TYPE_R)
3763 clear_bit(idx, vmx->shadow_msr_intercept.read);
3764 if (type & MSR_TYPE_W)
3765 clear_bit(idx, vmx->shadow_msr_intercept.write);
3766 }
Yang Zhang8d146952013-01-25 10:18:50 +08003767 }
Alexander Graf3eb90012020-09-25 16:34:20 +02003768
3769 if ((type & MSR_TYPE_R) &&
3770 !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_READ)) {
3771 vmx_set_msr_bitmap_read(msr_bitmap, msr);
3772 type &= ~MSR_TYPE_R;
3773 }
3774
3775 if ((type & MSR_TYPE_W) &&
3776 !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_WRITE)) {
3777 vmx_set_msr_bitmap_write(msr_bitmap, msr);
3778 type &= ~MSR_TYPE_W;
3779 }
3780
3781 if (type & MSR_TYPE_R)
3782 vmx_clear_msr_bitmap_read(msr_bitmap, msr);
3783
3784 if (type & MSR_TYPE_W)
3785 vmx_clear_msr_bitmap_write(msr_bitmap, msr);
Yang Zhang8d146952013-01-25 10:18:50 +08003786}
3787
Sean Christophersone23f6d42021-04-23 15:19:12 -07003788void vmx_enable_intercept_for_msr(struct kvm_vcpu *vcpu, u32 msr, int type)
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003789{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003790 struct vcpu_vmx *vmx = to_vmx(vcpu);
3791 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003792
3793 if (!cpu_has_vmx_msr_bitmap())
3794 return;
3795
Vitaly Kuznetsovb84155c32021-11-29 10:47:02 +01003796 vmx_msr_bitmap_l01_changed(vmx);
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003797
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003798 /*
Alexander Graf3eb90012020-09-25 16:34:20 +02003799 * Mark the desired intercept state in shadow bitmap, this is needed
3800 * for resync when the MSR filter changes.
3801 */
3802 if (is_valid_passthrough_msr(msr)) {
3803 int idx = possible_passthrough_msr_slot(msr);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003804
Alexander Graf3eb90012020-09-25 16:34:20 +02003805 if (idx != -ENOENT) {
3806 if (type & MSR_TYPE_R)
3807 set_bit(idx, vmx->shadow_msr_intercept.read);
3808 if (type & MSR_TYPE_W)
3809 set_bit(idx, vmx->shadow_msr_intercept.write);
3810 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003811 }
Alexander Graf3eb90012020-09-25 16:34:20 +02003812
3813 if (type & MSR_TYPE_R)
3814 vmx_set_msr_bitmap_read(msr_bitmap, msr);
3815
3816 if (type & MSR_TYPE_W)
3817 vmx_set_msr_bitmap_write(msr_bitmap, msr);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003818}
3819
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003820static void vmx_reset_x2apic_msrs(struct kvm_vcpu *vcpu, u8 mode)
Yang Zhang8d146952013-01-25 10:18:50 +08003821{
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003822 unsigned long *msr_bitmap = to_vmx(vcpu)->vmcs01.msr_bitmap;
3823 unsigned long read_intercept;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003824 int msr;
3825
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003826 read_intercept = (mode & MSR_BITMAP_MODE_X2APIC_APICV) ? 0 : ~0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003827
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003828 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
3829 unsigned int read_idx = msr / BITS_PER_LONG;
3830 unsigned int write_idx = read_idx + (0x800 / sizeof(long));
3831
3832 msr_bitmap[read_idx] = read_intercept;
3833 msr_bitmap[write_idx] = ~0ul;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08003834 }
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003835}
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003836
Sean Christopherson84ec8d22021-07-13 09:33:19 -07003837static void vmx_update_msr_bitmap_x2apic(struct kvm_vcpu *vcpu)
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003838{
Sean Christopherson84ec8d22021-07-13 09:33:19 -07003839 struct vcpu_vmx *vmx = to_vmx(vcpu);
3840 u8 mode;
3841
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003842 if (!cpu_has_vmx_msr_bitmap())
3843 return;
3844
Sean Christopherson84ec8d22021-07-13 09:33:19 -07003845 if (cpu_has_secondary_exec_ctrls() &&
3846 (secondary_exec_controls_get(vmx) &
3847 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
3848 mode = MSR_BITMAP_MODE_X2APIC;
3849 if (enable_apicv && kvm_vcpu_apicv_active(vcpu))
3850 mode |= MSR_BITMAP_MODE_X2APIC_APICV;
3851 } else {
3852 mode = 0;
3853 }
3854
3855 if (mode == vmx->x2apic_msr_bitmap_mode)
3856 return;
3857
3858 vmx->x2apic_msr_bitmap_mode = mode;
3859
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003860 vmx_reset_x2apic_msrs(vcpu, mode);
3861
3862 /*
3863 * TPR reads and writes can be virtualized even if virtual interrupt
3864 * delivery is not in use.
3865 */
3866 vmx_set_intercept_for_msr(vcpu, X2APIC_MSR(APIC_TASKPRI), MSR_TYPE_RW,
3867 !(mode & MSR_BITMAP_MODE_X2APIC));
3868
3869 if (mode & MSR_BITMAP_MODE_X2APIC_APICV) {
3870 vmx_enable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_TMCCT), MSR_TYPE_RW);
3871 vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_EOI), MSR_TYPE_W);
3872 vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_SELF_IPI), MSR_TYPE_W);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003873 }
3874}
3875
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003876void pt_update_intercept_for_msr(struct kvm_vcpu *vcpu)
Chao Pengb08c2892018-10-24 16:05:15 +08003877{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003878 struct vcpu_vmx *vmx = to_vmx(vcpu);
Chao Pengb08c2892018-10-24 16:05:15 +08003879 bool flag = !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
3880 u32 i;
3881
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003882 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_STATUS, MSR_TYPE_RW, flag);
3883 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_OUTPUT_BASE, MSR_TYPE_RW, flag);
3884 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_OUTPUT_MASK, MSR_TYPE_RW, flag);
3885 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_CR3_MATCH, MSR_TYPE_RW, flag);
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08003886 for (i = 0; i < vmx->pt_desc.num_address_ranges; i++) {
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003887 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_ADDR0_A + i * 2, MSR_TYPE_RW, flag);
3888 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_ADDR0_B + i * 2, MSR_TYPE_RW, flag);
Chao Pengb08c2892018-10-24 16:05:15 +08003889 }
3890}
3891
Liran Alone6c67d82018-09-04 10:56:52 +03003892static bool vmx_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
3893{
3894 struct vcpu_vmx *vmx = to_vmx(vcpu);
3895 void *vapic_page;
3896 u32 vppr;
3897 int rvi;
3898
3899 if (WARN_ON_ONCE(!is_guest_mode(vcpu)) ||
3900 !nested_cpu_has_vid(get_vmcs12(vcpu)) ||
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003901 WARN_ON_ONCE(!vmx->nested.virtual_apic_map.gfn))
Liran Alone6c67d82018-09-04 10:56:52 +03003902 return false;
3903
Paolo Bonzini7e712682018-10-03 13:44:26 +02003904 rvi = vmx_get_rvi();
Liran Alone6c67d82018-09-04 10:56:52 +03003905
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003906 vapic_page = vmx->nested.virtual_apic_map.hva;
Liran Alone6c67d82018-09-04 10:56:52 +03003907 vppr = *((u32 *)(vapic_page + APIC_PROCPRI));
Liran Alone6c67d82018-09-04 10:56:52 +03003908
3909 return ((rvi & 0xf0) > (vppr & 0xf0));
3910}
3911
Alexander Graf3eb90012020-09-25 16:34:20 +02003912static void vmx_msr_filter_changed(struct kvm_vcpu *vcpu)
3913{
3914 struct vcpu_vmx *vmx = to_vmx(vcpu);
3915 u32 i;
3916
3917 /*
3918 * Set intercept permissions for all potentially passed through MSRs
3919 * again. They will automatically get filtered through the MSR filter,
3920 * so we are back in sync after this.
3921 */
3922 for (i = 0; i < ARRAY_SIZE(vmx_possible_passthrough_msrs); i++) {
3923 u32 msr = vmx_possible_passthrough_msrs[i];
3924 bool read = test_bit(i, vmx->shadow_msr_intercept.read);
3925 bool write = test_bit(i, vmx->shadow_msr_intercept.write);
3926
3927 vmx_set_intercept_for_msr(vcpu, msr, MSR_TYPE_R, read);
3928 vmx_set_intercept_for_msr(vcpu, msr, MSR_TYPE_W, write);
3929 }
3930
3931 pt_update_intercept_for_msr(vcpu);
Alexander Graf3eb90012020-09-25 16:34:20 +02003932}
3933
Sean Christophersonccf8d682021-12-08 01:52:29 +00003934static inline void kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
Sean Christopherson296aa262021-12-08 01:52:28 +00003935 int pi_vec)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003936{
3937#ifdef CONFIG_SMP
3938 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08003939 /*
Haozhong Zhang5753743f2017-09-18 09:56:50 +08003940 * The vector of interrupt to be delivered to vcpu had
3941 * been set in PIR before this function.
Feng Wu28b835d2015-09-18 22:29:54 +08003942 *
Haozhong Zhang5753743f2017-09-18 09:56:50 +08003943 * Following cases will be reached in this block, and
3944 * we always send a notification event in all cases as
3945 * explained below.
3946 *
3947 * Case 1: vcpu keeps in non-root mode. Sending a
3948 * notification event posts the interrupt to vcpu.
3949 *
3950 * Case 2: vcpu exits to root mode and is still
3951 * runnable. PIR will be synced to vIRR before the
3952 * next vcpu entry. Sending a notification event in
3953 * this case has no effect, as vcpu is not in root
3954 * mode.
3955 *
3956 * Case 3: vcpu exits to root mode and is blocked.
3957 * vcpu_block() has already synced PIR to vIRR and
3958 * never blocks vcpu if vIRR is not cleared. Therefore,
3959 * a blocked vcpu here does not wait for any requested
3960 * interrupts in PIR, and sending a notification event
3961 * which has no effect is safe here.
Feng Wu28b835d2015-09-18 22:29:54 +08003962 */
Feng Wu28b835d2015-09-18 22:29:54 +08003963
Wincy Van06a55242017-04-28 13:13:59 +08003964 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Sean Christophersonccf8d682021-12-08 01:52:29 +00003965 return;
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003966 }
3967#endif
Sean Christophersonccf8d682021-12-08 01:52:29 +00003968 /*
3969 * The vCPU isn't in the guest; wake the vCPU in case it is blocking,
3970 * otherwise do nothing as KVM will grab the highest priority pending
3971 * IRQ via ->sync_pir_to_irr() in vcpu_enter_guest().
3972 */
3973 kvm_vcpu_wake_up(vcpu);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003974}
3975
Wincy Van705699a2015-02-03 23:58:17 +08003976static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
3977 int vector)
3978{
3979 struct vcpu_vmx *vmx = to_vmx(vcpu);
3980
3981 if (is_guest_mode(vcpu) &&
3982 vector == vmx->nested.posted_intr_nv) {
Wincy Van705699a2015-02-03 23:58:17 +08003983 /*
3984 * If a posted intr is not recognized by hardware,
3985 * we will accomplish it in the next vmentry.
3986 */
3987 vmx->nested.pi_pending = true;
3988 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sean Christopherson83c98002021-12-08 01:52:12 +00003989
3990 /*
3991 * This pairs with the smp_mb_*() after setting vcpu->mode in
3992 * vcpu_enter_guest() to guarantee the vCPU sees the event
3993 * request if triggering a posted interrupt "fails" because
3994 * vcpu->mode != IN_GUEST_MODE. The extra barrier is needed as
3995 * the smb_wmb() in kvm_make_request() only ensures everything
3996 * done before making the request is visible when the request
3997 * is visible, it doesn't ensure ordering between the store to
3998 * vcpu->requests and the load from vcpu->mode.
3999 */
4000 smp_mb__after_atomic();
4001
Liran Alon6b697712017-11-09 20:27:20 +02004002 /* the PIR and ON have been set by L1. */
Sean Christophersonccf8d682021-12-08 01:52:29 +00004003 kvm_vcpu_trigger_posted_interrupt(vcpu, POSTED_INTR_NESTED_VECTOR);
Wincy Van705699a2015-02-03 23:58:17 +08004004 return 0;
4005 }
4006 return -1;
4007}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004008/*
Yang Zhanga20ed542013-04-11 19:25:15 +08004009 * Send interrupt to vcpu via posted interrupt way.
4010 * 1. If target vcpu is running(non-root mode), send posted interrupt
4011 * notification to vcpu and hardware will sync PIR to vIRR atomically.
4012 * 2. If target vcpu isn't running(root mode), kick it to pick up the
4013 * interrupt from PIR in next vmentry.
4014 */
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004015static int vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
Yang Zhanga20ed542013-04-11 19:25:15 +08004016{
4017 struct vcpu_vmx *vmx = to_vmx(vcpu);
4018 int r;
4019
Wincy Van705699a2015-02-03 23:58:17 +08004020 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
4021 if (!r)
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004022 return 0;
4023
4024 if (!vcpu->arch.apicv_active)
4025 return -1;
Wincy Van705699a2015-02-03 23:58:17 +08004026
Yang Zhanga20ed542013-04-11 19:25:15 +08004027 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004028 return 0;
Yang Zhanga20ed542013-04-11 19:25:15 +08004029
Paolo Bonzinib95234c2016-12-19 13:57:33 +01004030 /* If a previous notification has sent the IPI, nothing to do. */
4031 if (pi_test_and_set_on(&vmx->pi_desc))
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004032 return 0;
Paolo Bonzinib95234c2016-12-19 13:57:33 +01004033
Sean Christopherson83c98002021-12-08 01:52:12 +00004034 /*
4035 * The implied barrier in pi_test_and_set_on() pairs with the smp_mb_*()
4036 * after setting vcpu->mode in vcpu_enter_guest(), thus the vCPU is
4037 * guaranteed to see PID.ON=1 and sync the PIR to IRR if triggering a
4038 * posted interrupt "fails" because vcpu->mode != IN_GUEST_MODE.
4039 */
Sean Christophersonccf8d682021-12-08 01:52:29 +00004040 kvm_vcpu_trigger_posted_interrupt(vcpu, POSTED_INTR_VECTOR);
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004041 return 0;
Yang Zhanga20ed542013-04-11 19:25:15 +08004042}
4043
Avi Kivity6aa8b732006-12-10 02:21:36 -08004044/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004045 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
4046 * will not change in the lifetime of the guest.
4047 * Note that host-state that does change is set elsewhere. E.g., host-state
4048 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
4049 */
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004050void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004051{
4052 u32 low32, high32;
4053 unsigned long tmpl;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07004054 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004055
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07004056 cr0 = read_cr0();
4057 WARN_ON(cr0 & X86_CR0_TS);
4058 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07004059
4060 /*
4061 * Save the most likely value for this task's CR3 in the VMCS.
4062 * We can't use __get_current_cr3_fast() because we're not atomic.
4063 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07004064 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07004065 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
Sean Christophersond7ee0392018-07-23 12:32:47 -07004066 vmx->loaded_vmcs->host_state.cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004067
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004068 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07004069 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004070 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07004071 vmx->loaded_vmcs->host_state.cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004072
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004073 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004074#ifdef CONFIG_X86_64
4075 /*
4076 * Load null selectors, so we can avoid reloading them in
Sean Christopherson6d6095b2018-07-23 12:32:44 -07004077 * vmx_prepare_switch_to_host(), in case userspace uses
4078 * the null selectors too (the expected case).
Avi Kivityb2da15a2012-05-13 19:53:24 +03004079 */
4080 vmcs_write16(HOST_DS_SELECTOR, 0);
4081 vmcs_write16(HOST_ES_SELECTOR, 0);
4082#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004083 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4084 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004085#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004086 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4087 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
4088
Sean Christopherson23420802019-04-19 22:50:57 -07004089 vmcs_writel(HOST_IDTR_BASE, host_idt_base); /* 22.2.4 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004090
Sean Christopherson453eafb2018-12-20 12:25:17 -08004091 vmcs_writel(HOST_RIP, (unsigned long)vmx_vmexit); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004092
4093 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
4094 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
Lai Jiangshan6ab8a402021-11-18 19:08:01 +08004095
4096 /*
4097 * If 32-bit syscall is enabled, vmx_vcpu_load_vcms rewrites
4098 * HOST_IA32_SYSENTER_ESP.
4099 */
4100 vmcs_writel(HOST_IA32_SYSENTER_ESP, 0);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004101 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
4102 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
4103
4104 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
4105 rdmsr(MSR_IA32_CR_PAT, low32, high32);
4106 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
4107 }
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07004108
Sean Christophersonc73da3f2018-12-03 13:53:00 -08004109 if (cpu_has_load_ia32_efer())
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07004110 vmcs_write64(HOST_IA32_EFER, host_efer);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004111}
4112
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004113void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004114{
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004115 struct kvm_vcpu *vcpu = &vmx->vcpu;
4116
4117 vcpu->arch.cr4_guest_owned_bits = KVM_POSSIBLE_CR4_GUEST_BITS &
4118 ~vcpu->arch.cr4_guest_rsvd_bits;
Lai Jiangshana37ebdc2021-11-08 20:43:57 +08004119 if (!enable_ept) {
Lai Jiangshan5ec60aa2021-11-08 20:43:56 +08004120 vcpu->arch.cr4_guest_owned_bits &= ~X86_CR4_TLBFLUSH_BITS;
Lai Jiangshana37ebdc2021-11-08 20:43:57 +08004121 vcpu->arch.cr4_guest_owned_bits &= ~X86_CR4_PDPTR_BITS;
4122 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03004123 if (is_guest_mode(&vmx->vcpu))
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004124 vcpu->arch.cr4_guest_owned_bits &=
4125 ~get_vmcs12(vcpu)->cr4_guest_host_mask;
4126 vmcs_writel(CR4_GUEST_HOST_MASK, ~vcpu->arch.cr4_guest_owned_bits);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004127}
4128
Sean Christopherson2fba4fc2021-08-10 10:19:52 -07004129static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
Yang Zhang01e439b2013-04-11 19:25:12 +08004130{
4131 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
4132
Andrey Smetanind62caab2015-11-10 15:36:33 +03004133 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08004134 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004135
4136 if (!enable_vnmi)
4137 pin_based_exec_ctrl &= ~PIN_BASED_VIRTUAL_NMIS;
4138
Sean Christopherson804939e2019-05-07 12:18:05 -07004139 if (!enable_preemption_timer)
4140 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
4141
Yang Zhang01e439b2013-04-11 19:25:12 +08004142 return pin_based_exec_ctrl;
4143}
4144
Sean Christopherson2fba4fc2021-08-10 10:19:52 -07004145static u32 vmx_vmentry_ctrl(void)
4146{
4147 u32 vmentry_ctrl = vmcs_config.vmentry_ctrl;
4148
4149 if (vmx_pt_mode_is_system())
4150 vmentry_ctrl &= ~(VM_ENTRY_PT_CONCEAL_PIP |
4151 VM_ENTRY_LOAD_IA32_RTIT_CTL);
4152 /* Loading of EFER and PERF_GLOBAL_CTRL are toggled dynamically */
4153 return vmentry_ctrl &
4154 ~(VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL | VM_ENTRY_LOAD_IA32_EFER);
4155}
4156
4157static u32 vmx_vmexit_ctrl(void)
4158{
4159 u32 vmexit_ctrl = vmcs_config.vmexit_ctrl;
4160
4161 if (vmx_pt_mode_is_system())
4162 vmexit_ctrl &= ~(VM_EXIT_PT_CONCEAL_PIP |
4163 VM_EXIT_CLEAR_IA32_RTIT_CTL);
4164 /* Loading of EFER and PERF_GLOBAL_CTRL are toggled dynamically */
4165 return vmexit_ctrl &
4166 ~(VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL | VM_EXIT_LOAD_IA32_EFER);
4167}
4168
Andrey Smetanind62caab2015-11-10 15:36:33 +03004169static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
4170{
4171 struct vcpu_vmx *vmx = to_vmx(vcpu);
4172
Sean Christophersonc5f2c762019-05-07 12:17:55 -07004173 pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03004174 if (cpu_has_secondary_exec_ctrls()) {
4175 if (kvm_vcpu_apicv_active(vcpu))
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07004176 secondary_exec_controls_setbit(vmx,
Roman Kagan3ce424e2016-05-18 17:48:20 +03004177 SECONDARY_EXEC_APIC_REGISTER_VIRT |
4178 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
4179 else
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07004180 secondary_exec_controls_clearbit(vmx,
Roman Kagan3ce424e2016-05-18 17:48:20 +03004181 SECONDARY_EXEC_APIC_REGISTER_VIRT |
4182 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
4183 }
4184
Sean Christopherson84ec8d22021-07-13 09:33:19 -07004185 vmx_update_msr_bitmap_x2apic(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004186}
4187
Sean Christopherson2fba4fc2021-08-10 10:19:52 -07004188static u32 vmx_exec_control(struct vcpu_vmx *vmx)
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08004189{
4190 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
4191
4192 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
4193 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
4194
4195 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
4196 exec_control &= ~CPU_BASED_TPR_SHADOW;
4197#ifdef CONFIG_X86_64
4198 exec_control |= CPU_BASED_CR8_STORE_EXITING |
4199 CPU_BASED_CR8_LOAD_EXITING;
4200#endif
4201 }
4202 if (!enable_ept)
4203 exec_control |= CPU_BASED_CR3_STORE_EXITING |
4204 CPU_BASED_CR3_LOAD_EXITING |
4205 CPU_BASED_INVLPG_EXITING;
4206 if (kvm_mwait_in_guest(vmx->vcpu.kvm))
4207 exec_control &= ~(CPU_BASED_MWAIT_EXITING |
4208 CPU_BASED_MONITOR_EXITING);
4209 if (kvm_hlt_in_guest(vmx->vcpu.kvm))
4210 exec_control &= ~CPU_BASED_HLT_EXITING;
4211 return exec_control;
4212}
4213
Sean Christopherson8b50b922020-09-24 17:30:11 -07004214/*
4215 * Adjust a single secondary execution control bit to intercept/allow an
4216 * instruction in the guest. This is usually done based on whether or not a
4217 * feature has been exposed to the guest in order to correctly emulate faults.
4218 */
4219static inline void
4220vmx_adjust_secondary_exec_control(struct vcpu_vmx *vmx, u32 *exec_control,
4221 u32 control, bool enabled, bool exiting)
4222{
4223 /*
4224 * If the control is for an opt-in feature, clear the control if the
4225 * feature is not exposed to the guest, i.e. not enabled. If the
4226 * control is opt-out, i.e. an exiting control, clear the control if
4227 * the feature _is_ exposed to the guest, i.e. exiting/interception is
4228 * disabled for the associated instruction. Note, the caller is
4229 * responsible presetting exec_control to set all supported bits.
4230 */
4231 if (enabled == exiting)
4232 *exec_control &= ~control;
4233
4234 /*
4235 * Update the nested MSR settings so that a nested VMM can/can't set
4236 * controls for features that are/aren't exposed to the guest.
4237 */
4238 if (nested) {
4239 if (enabled)
4240 vmx->nested.msrs.secondary_ctls_high |= control;
4241 else
4242 vmx->nested.msrs.secondary_ctls_high &= ~control;
4243 }
4244}
4245
4246/*
4247 * Wrapper macro for the common case of adjusting a secondary execution control
4248 * based on a single guest CPUID bit, with a dedicated feature bit. This also
4249 * verifies that the control is actually supported by KVM and hardware.
4250 */
4251#define vmx_adjust_sec_exec_control(vmx, exec_control, name, feat_name, ctrl_name, exiting) \
4252({ \
4253 bool __enabled; \
4254 \
4255 if (cpu_has_vmx_##name()) { \
4256 __enabled = guest_cpuid_has(&(vmx)->vcpu, \
4257 X86_FEATURE_##feat_name); \
4258 vmx_adjust_secondary_exec_control(vmx, exec_control, \
4259 SECONDARY_EXEC_##ctrl_name, __enabled, exiting); \
4260 } \
4261})
4262
4263/* More macro magic for ENABLE_/opt-in versus _EXITING/opt-out controls. */
4264#define vmx_adjust_sec_exec_feature(vmx, exec_control, lname, uname) \
4265 vmx_adjust_sec_exec_control(vmx, exec_control, lname, uname, ENABLE_##uname, false)
4266
4267#define vmx_adjust_sec_exec_exiting(vmx, exec_control, lname, uname) \
4268 vmx_adjust_sec_exec_control(vmx, exec_control, lname, uname, uname##_EXITING, true)
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08004269
Sean Christopherson2fba4fc2021-08-10 10:19:52 -07004270static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004271{
Paolo Bonzini80154d72017-08-24 13:55:35 +02004272 struct kvm_vcpu *vcpu = &vmx->vcpu;
4273
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004274 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004275
Sean Christopherson2ef76192020-03-02 15:56:22 -08004276 if (vmx_pt_mode_is_system())
Chao Pengf99e3da2018-10-24 16:05:10 +08004277 exec_control &= ~(SECONDARY_EXEC_PT_USE_GPA | SECONDARY_EXEC_PT_CONCEAL_VMX);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004278 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004279 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
4280 if (vmx->vpid == 0)
4281 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
4282 if (!enable_ept) {
4283 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
4284 enable_unrestricted_guest = 0;
4285 }
4286 if (!enable_unrestricted_guest)
4287 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Wanpeng Lib31c1142018-03-12 04:53:04 -07004288 if (kvm_pause_in_guest(vmx->vcpu.kvm))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004289 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02004290 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08004291 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
4292 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08004293 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004294
4295 /* SECONDARY_EXEC_DESC is enabled/disabled on writes to CR4.UMIP,
4296 * in vmx_set_cr4. */
4297 exec_control &= ~SECONDARY_EXEC_DESC;
4298
Abel Gordonabc4fc52013-04-18 14:35:25 +03004299 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
4300 (handle_vmptrld).
4301 We can NOT enable shadow_vmcs here because we don't have yet
4302 a current VMCS12
4303 */
4304 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08004305
Makarand Sonarea85863c2021-02-12 16:50:12 -08004306 /*
4307 * PML is enabled/disabled when dirty logging of memsmlots changes, but
4308 * it needs to be set here when dirty logging is already active, e.g.
4309 * if this vCPU was created after dirty logging was enabled.
4310 */
4311 if (!vcpu->kvm->arch.cpu_dirty_logging_count)
Kai Huanga3eaa862015-11-04 13:46:05 +08004312 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08004313
Sean Christophersonbecdad82020-09-23 09:50:45 -07004314 if (cpu_has_vmx_xsaves()) {
Paolo Bonzini3db13482017-08-24 14:48:03 +02004315 /* Exposing XSAVES only when XSAVE is exposed */
4316 bool xsaves_enabled =
Sean Christopherson96be4e02019-12-10 14:44:15 -08004317 boot_cpu_has(X86_FEATURE_XSAVE) &&
Paolo Bonzini3db13482017-08-24 14:48:03 +02004318 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
4319 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
4320
Aaron Lewis72041602019-10-21 16:30:20 -07004321 vcpu->arch.xsaves_enabled = xsaves_enabled;
4322
Sean Christopherson8b50b922020-09-24 17:30:11 -07004323 vmx_adjust_secondary_exec_control(vmx, &exec_control,
4324 SECONDARY_EXEC_XSAVES,
4325 xsaves_enabled, false);
Paolo Bonzini3db13482017-08-24 14:48:03 +02004326 }
4327
Sean Christopherson36fa06f2021-05-04 10:17:26 -07004328 /*
4329 * RDPID is also gated by ENABLE_RDTSCP, turn on the control if either
4330 * feature is exposed to the guest. This creates a virtualization hole
4331 * if both are supported in hardware but only one is exposed to the
4332 * guest, but letting the guest execute RDTSCP or RDPID when either one
4333 * is advertised is preferable to emulating the advertised instruction
4334 * in KVM on #UD, and obviously better than incorrectly injecting #UD.
4335 */
4336 if (cpu_has_vmx_rdtscp()) {
4337 bool rdpid_or_rdtscp_enabled =
4338 guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) ||
4339 guest_cpuid_has(vcpu, X86_FEATURE_RDPID);
4340
4341 vmx_adjust_secondary_exec_control(vmx, &exec_control,
4342 SECONDARY_EXEC_ENABLE_RDTSCP,
4343 rdpid_or_rdtscp_enabled, false);
4344 }
Sean Christopherson8b50b922020-09-24 17:30:11 -07004345 vmx_adjust_sec_exec_feature(vmx, &exec_control, invpcid, INVPCID);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004346
Sean Christopherson8b50b922020-09-24 17:30:11 -07004347 vmx_adjust_sec_exec_exiting(vmx, &exec_control, rdrand, RDRAND);
4348 vmx_adjust_sec_exec_exiting(vmx, &exec_control, rdseed, RDSEED);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004349
Sean Christopherson8b50b922020-09-24 17:30:11 -07004350 vmx_adjust_sec_exec_control(vmx, &exec_control, waitpkg, WAITPKG,
4351 ENABLE_USR_WAIT_PAUSE, false);
Tao Xue69e72fa2019-07-16 14:55:49 +08004352
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08004353 if (!vcpu->kvm->arch.bus_lock_detection_enabled)
4354 exec_control &= ~SECONDARY_EXEC_BUS_LOCK_DETECTION;
4355
Sean Christophersonb6247682021-08-10 10:19:51 -07004356 return exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004357}
4358
Wanpeng Lif53cd632014-12-02 19:14:58 +08004359#define VMX_XSS_EXIT_BITMAP 0
Avi Kivity6aa8b732006-12-10 02:21:36 -08004360
Xiaoyao Li1b842922019-10-20 17:11:01 +08004361static void init_vmcs(struct vcpu_vmx *vmx)
Sean Christopherson944c3462018-12-03 13:53:09 -08004362{
Sean Christopherson944c3462018-12-03 13:53:09 -08004363 if (nested)
Xiaoyao Li1b842922019-10-20 17:11:01 +08004364 nested_vmx_set_vmcs_shadowing_bitmap();
Sean Christopherson944c3462018-12-03 13:53:09 -08004365
Sheng Yang25c5f222008-03-28 13:18:56 +08004366 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004367 vmcs_write64(MSR_BITMAP, __pa(vmx->vmcs01.msr_bitmap));
Sheng Yang25c5f222008-03-28 13:18:56 +08004368
Yu Zhang64c78502021-09-30 01:51:53 +08004369 vmcs_write64(VMCS_LINK_POINTER, INVALID_GPA); /* 22.3.1.5 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004370
Avi Kivity6aa8b732006-12-10 02:21:36 -08004371 /* Control */
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004372 pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004373
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004374 exec_controls_set(vmx, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004375
Sean Christophersonb6247682021-08-10 10:19:51 -07004376 if (cpu_has_secondary_exec_ctrls())
4377 secondary_exec_controls_set(vmx, vmx_secondary_exec_control(vmx));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004378
Andrey Smetanind62caab2015-11-10 15:36:33 +03004379 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08004380 vmcs_write64(EOI_EXIT_BITMAP0, 0);
4381 vmcs_write64(EOI_EXIT_BITMAP1, 0);
4382 vmcs_write64(EOI_EXIT_BITMAP2, 0);
4383 vmcs_write64(EOI_EXIT_BITMAP3, 0);
4384
4385 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08004386
Li RongQing0bcf2612015-12-03 13:29:34 +08004387 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08004388 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08004389 }
4390
Wanpeng Lib31c1142018-03-12 04:53:04 -07004391 if (!kvm_pause_in_guest(vmx->vcpu.kvm)) {
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004392 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02004393 vmx->ple_window = ple_window;
4394 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004395 }
4396
Xiao Guangrongc3707952011-07-12 03:28:04 +08004397 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
4398 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004399 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
4400
Avi Kivity9581d442010-10-19 16:46:55 +02004401 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
4402 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004403 vmx_set_constant_host_state(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004404 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
4405 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004406
Bandan Das2a499e42017-08-03 15:54:41 -04004407 if (cpu_has_vmx_vmfunc())
4408 vmcs_write64(VM_FUNCTION_CONTROL, 0);
4409
Eddie Dong2cc51562007-05-21 07:28:09 +03004410 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
4411 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004412 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host.val));
Eddie Dong2cc51562007-05-21 07:28:09 +03004413 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004414 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest.val));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004415
Radim Krčmář74545702015-04-27 15:11:25 +02004416 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
4417 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08004418
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004419 vm_exit_controls_set(vmx, vmx_vmexit_ctrl());
Avi Kivity6aa8b732006-12-10 02:21:36 -08004420
4421 /* 22.2.1, 20.8.1 */
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004422 vm_entry_controls_set(vmx, vmx_vmentry_ctrl());
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004423
Sean Christophersonfa71e952020-07-02 21:04:22 -07004424 vmx->vcpu.arch.cr0_guest_owned_bits = KVM_POSSIBLE_CR0_GUEST_BITS;
4425 vmcs_writel(CR0_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr0_guest_owned_bits);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004426
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004427 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004428
Xiaoyao Li35fbe0d2019-10-20 17:10:58 +08004429 if (vmx->vpid != 0)
4430 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
4431
Sean Christophersonbecdad82020-09-23 09:50:45 -07004432 if (cpu_has_vmx_xsaves())
Wanpeng Lif53cd632014-12-02 19:14:58 +08004433 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
4434
Peter Feiner4e595162016-07-07 14:49:58 -07004435 if (enable_pml) {
Peter Feiner4e595162016-07-07 14:49:58 -07004436 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
4437 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
4438 }
Sean Christopherson0b665d32018-08-14 09:33:34 -07004439
Sean Christopherson72add912021-04-12 16:21:42 +12004440 vmx_write_encls_bitmap(&vmx->vcpu, NULL);
Chao Peng2ef444f2018-10-24 16:05:12 +08004441
Sean Christopherson2ef76192020-03-02 15:56:22 -08004442 if (vmx_pt_mode_is_host_guest()) {
Chao Peng2ef444f2018-10-24 16:05:12 +08004443 memset(&vmx->pt_desc, 0, sizeof(vmx->pt_desc));
4444 /* Bit[6~0] are forced to 1, writes are ignored. */
4445 vmx->pt_desc.guest.output_mask = 0x7F;
4446 vmcs_write64(GUEST_IA32_RTIT_CTL, 0);
4447 }
Sean Christophersonc5c9f922021-07-13 09:33:13 -07004448
Sean Christophersone5494942021-07-13 09:33:21 -07004449 vmcs_write32(GUEST_SYSENTER_CS, 0);
4450 vmcs_writel(GUEST_SYSENTER_ESP, 0);
4451 vmcs_writel(GUEST_SYSENTER_EIP, 0);
4452 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
4453
4454 if (cpu_has_vmx_tpr_shadow()) {
4455 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
4456 if (cpu_need_tpr_shadow(&vmx->vcpu))
4457 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
4458 __pa(vmx->vcpu.arch.apic->regs));
4459 vmcs_write32(TPR_THRESHOLD, 0);
4460 }
4461
Sean Christophersonc5c9f922021-07-13 09:33:13 -07004462 vmx_setup_uret_msrs(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004463}
4464
Sean Christopherson06692e42021-09-20 17:03:01 -07004465static void __vmx_vcpu_reset(struct kvm_vcpu *vcpu)
4466{
4467 struct vcpu_vmx *vmx = to_vmx(vcpu);
4468
4469 init_vmcs(vmx);
4470
4471 if (nested)
4472 memcpy(&vmx->nested.msrs, &vmcs_config.nested, sizeof(vmx->nested.msrs));
4473
4474 vcpu_setup_sgx_lepubkeyhash(vcpu);
4475
4476 vmx->nested.posted_intr_nv = -1;
4477 vmx->nested.vmxon_ptr = INVALID_GPA;
4478 vmx->nested.current_vmptr = INVALID_GPA;
4479 vmx->nested.hv_evmcs_vmptr = EVMPTR_INVALID;
4480
4481 vcpu->arch.microcode_version = 0x100000000ULL;
4482 vmx->msr_ia32_feature_control_valid_bits = FEAT_CTL_LOCKED;
4483
4484 /*
4485 * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR
4486 * or POSTED_INTR_WAKEUP_VECTOR.
4487 */
4488 vmx->pi_desc.nv = POSTED_INTR_VECTOR;
4489 vmx->pi_desc.sn = 1;
4490}
4491
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004492static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004493{
4494 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004495
Sean Christopherson06692e42021-09-20 17:03:01 -07004496 if (!init_event)
4497 __vmx_vcpu_reset(vcpu);
4498
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004499 vmx->rmode.vm86_active = 0;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004500 vmx->spec_ctrl = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004501
Tao Xu6e3ba4a2019-07-16 14:55:50 +08004502 vmx->msr_ia32_umwait_control = 0;
4503
Wanpeng Li95c06542019-09-05 14:26:28 +08004504 vmx->hv_deadline_tsc = -1;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004505 kvm_set_cr8(vcpu, 0);
4506
Avi Kivity2fb92db2011-04-27 19:42:18 +03004507 vmx_segment_cache_clear(vmx);
Sean Christophersonff8828c2021-09-20 17:02:56 -07004508 kvm_register_mark_available(vcpu, VCPU_EXREG_SEGMENTS);
Avi Kivity2fb92db2011-04-27 19:42:18 +03004509
Avi Kivity5706be02008-08-20 15:07:31 +03004510 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01004511 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004512 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004513
4514 seg_setup(VCPU_SREG_DS);
4515 seg_setup(VCPU_SREG_ES);
4516 seg_setup(VCPU_SREG_FS);
4517 seg_setup(VCPU_SREG_GS);
4518 seg_setup(VCPU_SREG_SS);
4519
4520 vmcs_write16(GUEST_TR_SELECTOR, 0);
4521 vmcs_writel(GUEST_TR_BASE, 0);
4522 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
4523 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4524
4525 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
4526 vmcs_writel(GUEST_LDTR_BASE, 0);
4527 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
4528 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
4529
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004530 vmcs_writel(GUEST_GDTR_BASE, 0);
4531 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
4532
4533 vmcs_writel(GUEST_IDTR_BASE, 0);
4534 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
4535
Anthony Liguori443381a2010-12-06 10:53:38 -06004536 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004537 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004538 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Wanpeng Lia554d202017-10-11 05:10:19 -07004539 if (kvm_mpx_supported())
4540 vmcs_write64(GUEST_BNDCFGS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004541
Avi Kivity6aa8b732006-12-10 02:21:36 -08004542 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
4543
Paolo Bonzinia73896c2014-11-02 07:54:30 +01004544 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004545
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004546 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004547}
4548
Jason Baronb6a7cc32021-01-14 22:27:54 -05004549static void vmx_enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004550{
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08004551 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_INTR_WINDOW_EXITING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004552}
4553
Jason Baronb6a7cc32021-01-14 22:27:54 -05004554static void vmx_enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004555{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004556 if (!enable_vnmi ||
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004557 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jason Baronb6a7cc32021-01-14 22:27:54 -05004558 vmx_enable_irq_window(vcpu);
Jan Kiszkac9a79532014-03-07 20:03:15 +01004559 return;
4560 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02004561
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08004562 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_NMI_WINDOW_EXITING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004563}
4564
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004565static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03004566{
Avi Kivity9c8cba32007-11-22 11:42:59 +02004567 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004568 uint32_t intr;
4569 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02004570
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004571 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004572
Avi Kivityfa89a812008-09-01 15:57:51 +03004573 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004574 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05004575 int inc_eip = 0;
4576 if (vcpu->arch.interrupt.soft)
4577 inc_eip = vcpu->arch.event_exit_inst_len;
Sean Christopherson9497e1f2019-08-27 14:40:36 -07004578 kvm_inject_realmode_interrupt(vcpu, irq, inc_eip);
Eddie Dong85f455f2007-07-06 12:20:49 +03004579 return;
4580 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004581 intr = irq | INTR_INFO_VALID_MASK;
4582 if (vcpu->arch.interrupt.soft) {
4583 intr |= INTR_TYPE_SOFT_INTR;
4584 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
4585 vmx->vcpu.arch.event_exit_inst_len);
4586 } else
4587 intr |= INTR_TYPE_EXT_INTR;
4588 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004589
4590 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03004591}
4592
Sheng Yangf08864b2008-05-15 18:23:25 +08004593static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
4594{
Jan Kiszka66a5a342008-09-26 09:30:51 +02004595 struct vcpu_vmx *vmx = to_vmx(vcpu);
4596
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004597 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004598 /*
4599 * Tracking the NMI-blocked state in software is built upon
4600 * finding the next open IRQ window. This, in turn, depends on
4601 * well-behaving guests: They have to keep IRQs disabled at
4602 * least as long as the NMI handler runs. Otherwise we may
4603 * cause NMI nesting, maybe breaking the guest. But as this is
4604 * highly unlikely, we can live with the residual risk.
4605 */
4606 vmx->loaded_vmcs->soft_vnmi_blocked = 1;
4607 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4608 }
4609
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004610 ++vcpu->stat.nmi_injections;
4611 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004612
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004613 if (vmx->rmode.vm86_active) {
Sean Christopherson9497e1f2019-08-27 14:40:36 -07004614 kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0);
Jan Kiszka66a5a342008-09-26 09:30:51 +02004615 return;
4616 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08004617
Sheng Yangf08864b2008-05-15 18:23:25 +08004618 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
4619 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004620
4621 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08004622}
4623
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004624bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004625{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004626 struct vcpu_vmx *vmx = to_vmx(vcpu);
4627 bool masked;
4628
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004629 if (!enable_vnmi)
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004630 return vmx->loaded_vmcs->soft_vnmi_blocked;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004631 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02004632 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004633 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
4634 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4635 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004636}
4637
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004638void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004639{
4640 struct vcpu_vmx *vmx = to_vmx(vcpu);
4641
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004642 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004643 if (vmx->loaded_vmcs->soft_vnmi_blocked != masked) {
4644 vmx->loaded_vmcs->soft_vnmi_blocked = masked;
4645 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4646 }
4647 } else {
4648 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4649 if (masked)
4650 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
4651 GUEST_INTR_STATE_NMI);
4652 else
4653 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
4654 GUEST_INTR_STATE_NMI);
4655 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004656}
4657
Sean Christopherson1b660b62020-04-22 19:25:44 -07004658bool vmx_nmi_blocked(struct kvm_vcpu *vcpu)
4659{
4660 if (is_guest_mode(vcpu) && nested_exit_on_nmi(vcpu))
4661 return false;
4662
4663 if (!enable_vnmi && to_vmx(vcpu)->loaded_vmcs->soft_vnmi_blocked)
4664 return true;
4665
4666 return (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4667 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI |
4668 GUEST_INTR_STATE_NMI));
4669}
4670
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004671static int vmx_nmi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Jan Kiszka2505dc92013-04-14 12:12:47 +02004672{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01004673 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004674 return -EBUSY;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02004675
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004676 /* An NMI must not be injected into L2 if it's supposed to VM-Exit. */
4677 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_nmi(vcpu))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004678 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004679
Sean Christopherson1b660b62020-04-22 19:25:44 -07004680 return !vmx_nmi_blocked(vcpu);
4681}
Sean Christopherson429ab572020-04-22 19:25:42 -07004682
Sean Christopherson1b660b62020-04-22 19:25:44 -07004683bool vmx_interrupt_blocked(struct kvm_vcpu *vcpu)
4684{
4685 if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
Sean Christopherson88c604b2020-04-22 19:25:41 -07004686 return false;
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004687
Sean Christopherson7ab0abd2020-04-22 19:25:50 -07004688 return !(vmx_get_rflags(vcpu) & X86_EFLAGS_IF) ||
Sean Christopherson1b660b62020-04-22 19:25:44 -07004689 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4690 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Jan Kiszka2505dc92013-04-14 12:12:47 +02004691}
4692
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004693static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Gleb Natapov78646122009-03-23 12:12:11 +02004694{
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004695 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004696 return -EBUSY;
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004697
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004698 /*
4699 * An IRQ must not be injected into L2 if it's supposed to VM-Exit,
4700 * e.g. if the IRQ arrived asynchronously after checking nested events.
4701 */
4702 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004703 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004704
Sean Christopherson1b660b62020-04-22 19:25:44 -07004705 return !vmx_interrupt_blocked(vcpu);
Gleb Natapov78646122009-03-23 12:12:11 +02004706}
4707
Izik Eiduscbc94022007-10-25 00:29:55 +02004708static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
4709{
Peter Xuff5a9832020-09-30 21:20:33 -04004710 void __user *ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02004711
Sean Christophersonf7eaeb02018-03-05 12:04:36 -08004712 if (enable_unrestricted_guest)
4713 return 0;
4714
Peter Xu6a3c6232020-01-09 09:57:16 -05004715 mutex_lock(&kvm->slots_lock);
4716 ret = __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
4717 PAGE_SIZE * 3);
4718 mutex_unlock(&kvm->slots_lock);
4719
Peter Xuff5a9832020-09-30 21:20:33 -04004720 if (IS_ERR(ret))
4721 return PTR_ERR(ret);
4722
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004723 to_kvm_vmx(kvm)->tss_addr = addr;
Peter Xuff5a9832020-09-30 21:20:33 -04004724
4725 return init_rmode_tss(kvm, ret);
Izik Eiduscbc94022007-10-25 00:29:55 +02004726}
4727
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004728static int vmx_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
4729{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004730 to_kvm_vmx(kvm)->ept_identity_map_addr = ident_addr;
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004731 return 0;
4732}
4733
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004734static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004735{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004736 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004737 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01004738 /*
4739 * Update instruction length as we may reinject the exception
4740 * from user space while in guest debugging mode.
4741 */
4742 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
4743 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004744 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004745 return false;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004746 fallthrough;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004747 case DB_VECTOR:
Miaohe Lina8cfbae2020-02-19 10:45:48 +08004748 return !(vcpu->guest_debug &
4749 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP));
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004750 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004751 case OF_VECTOR:
4752 case BR_VECTOR:
4753 case UD_VECTOR:
4754 case DF_VECTOR:
4755 case SS_VECTOR:
4756 case GP_VECTOR:
4757 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004758 return true;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004759 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004760 return false;
4761}
4762
4763static int handle_rmode_exception(struct kvm_vcpu *vcpu,
4764 int vec, u32 err_code)
4765{
4766 /*
4767 * Instruction with address size override prefix opcode 0x67
4768 * Cause the #SS fault with 0 error code in VM86 mode.
4769 */
4770 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004771 if (kvm_emulate_instruction(vcpu, 0)) {
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004772 if (vcpu->arch.halt_request) {
4773 vcpu->arch.halt_request = 0;
Sean Christopherson14601792021-10-08 19:12:05 -07004774 return kvm_emulate_halt_noskip(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004775 }
4776 return 1;
4777 }
4778 return 0;
4779 }
4780
4781 /*
4782 * Forward all other exceptions that are valid in real mode.
4783 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
4784 * the required debugging infrastructure rework.
4785 */
4786 kvm_queue_exception(vcpu, vec);
4787 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004788}
4789
Avi Kivity851ba692009-08-24 11:10:17 +03004790static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08004791{
Sean Christopherson95b5a482019-04-19 22:50:59 -07004792 /* handled by vmx_vcpu_run() */
Andi Kleena0861c02009-06-08 17:37:09 +08004793 return 1;
4794}
4795
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004796/*
4797 * If the host has split lock detection disabled, then #AC is
4798 * unconditionally injected into the guest, which is the pre split lock
4799 * detection behaviour.
4800 *
4801 * If the host has split lock detection enabled then #AC is
4802 * only injected into the guest when:
4803 * - Guest CPL == 3 (user mode)
4804 * - Guest has #AC detection enabled in CR0
4805 * - Guest EFLAGS has AC bit set
4806 */
Sean Christophersonb33bb782021-06-22 10:22:44 -07004807bool vmx_guest_inject_ac(struct kvm_vcpu *vcpu)
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004808{
4809 if (!boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
4810 return true;
4811
4812 return vmx_get_cpl(vcpu) == 3 && kvm_read_cr0_bits(vcpu, X86_CR0_AM) &&
4813 (kvm_get_rflags(vcpu) & X86_EFLAGS_AC);
4814}
4815
Sean Christopherson95b5a482019-04-19 22:50:59 -07004816static int handle_exception_nmi(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004817{
Avi Kivity1155f762007-11-22 11:30:47 +02004818 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004819 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004820 u32 intr_info, ex_no, error_code;
Yuan Yaoe87e46d2021-05-26 14:38:28 +08004821 unsigned long cr2, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004822 u32 vect_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004823
Avi Kivity1155f762007-11-22 11:30:47 +02004824 vect_info = vmx->idt_vectoring_info;
Sean Christophersonf27ad732020-04-27 10:18:37 -07004825 intr_info = vmx_get_intr_info(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004826
Paolo Bonzini2ea72032019-06-06 14:57:25 +02004827 if (is_machine_check(intr_info) || is_nmi(intr_info))
Sean Christopherson95b5a482019-04-19 22:50:59 -07004828 return 1; /* handled by handle_exception_nmi_irqoff() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03004829
Jing Liuec5be882022-01-05 04:35:23 -08004830 /*
4831 * Queue the exception here instead of in handle_nm_fault_irqoff().
4832 * This ensures the nested_vmx check is not skipped so vmexit can
4833 * be reflected to L1 (when it intercepts #NM) before reaching this
4834 * point.
4835 */
4836 if (is_nm_fault(intr_info)) {
4837 kvm_queue_exception(vcpu, NM_VECTOR);
4838 return 1;
4839 }
4840
Wanpeng Li082d06e2018-04-03 16:28:48 -07004841 if (is_invalid_opcode(intr_info))
4842 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004843
Avi Kivity6aa8b732006-12-10 02:21:36 -08004844 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06004845 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004846 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004847
Liran Alon9e869482018-03-12 13:12:51 +02004848 if (!vmx->rmode.vm86_active && is_gp_fault(intr_info)) {
4849 WARN_ON_ONCE(!enable_vmware_backdoor);
Sean Christophersona6c6ed12019-08-27 14:40:30 -07004850
4851 /*
4852 * VMware backdoor emulation on #GP interception only handles
4853 * IN{S}, OUT{S}, and RDPMC, none of which generate a non-zero
4854 * error code on #GP.
4855 */
4856 if (error_code) {
4857 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
4858 return 1;
4859 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004860 return kvm_emulate_instruction(vcpu, EMULTYPE_VMWARE_GP);
Liran Alon9e869482018-03-12 13:12:51 +02004861 }
4862
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004863 /*
4864 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
4865 * MMIO, it is better to report an internal error.
4866 * See the comments in vmx_handle_exit.
4867 */
4868 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
4869 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
4870 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4871 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Jim Mattson1aa561b2020-06-03 16:56:21 -07004872 vcpu->run->internal.ndata = 4;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004873 vcpu->run->internal.data[0] = vect_info;
4874 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02004875 vcpu->run->internal.data[2] = error_code;
Jim Mattson8a14fe42020-06-03 16:56:22 -07004876 vcpu->run->internal.data[3] = vcpu->arch.last_vmentry_cpu;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004877 return 0;
4878 }
4879
Avi Kivity6aa8b732006-12-10 02:21:36 -08004880 if (is_page_fault(intr_info)) {
Sean Christopherson5addc232020-04-15 13:34:53 -07004881 cr2 = vmx_get_exit_qual(vcpu);
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02004882 if (enable_ept && !vcpu->arch.apf.host_apf_flags) {
4883 /*
4884 * EPT will cause page fault only if we need to
4885 * detect illegal GPAs.
4886 */
Mohammed Gamalb96e6502020-09-03 16:11:22 +02004887 WARN_ON_ONCE(!allow_smaller_maxphyaddr);
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02004888 kvm_fixup_and_inject_pf_error(vcpu, cr2, error_code);
4889 return 1;
4890 } else
4891 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004892 }
4893
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004894 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004895
4896 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
4897 return handle_rmode_exception(vcpu, ex_no, error_code);
4898
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004899 switch (ex_no) {
4900 case DB_VECTOR:
Sean Christopherson5addc232020-04-15 13:34:53 -07004901 dr6 = vmx_get_exit_qual(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004902 if (!(vcpu->guest_debug &
4903 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Linus Torvalds32d43cd2018-03-20 12:16:59 -07004904 if (is_icebp(intr_info))
Sean Christopherson1957aa62019-08-27 14:40:39 -07004905 WARN_ON(!skip_emulated_instruction(vcpu));
Huw Daviesfd2a4452014-04-16 10:02:51 +01004906
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04004907 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004908 return 1;
4909 }
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08004910 kvm_run->debug.arch.dr6 = dr6 | DR6_ACTIVE_LOW;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004911 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004912 fallthrough;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004913 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01004914 /*
4915 * Update instruction length as we may reinject #BP from
4916 * user space while in guest debugging mode. Reading it for
4917 * #DB as well causes no harm, it is not used in that case.
4918 */
4919 vmx->vcpu.arch.event_exit_inst_len =
4920 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004921 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Yuan Yaoe87e46d2021-05-26 14:38:28 +08004922 kvm_run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004923 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004924 break;
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004925 case AC_VECTOR:
Sean Christophersonb33bb782021-06-22 10:22:44 -07004926 if (vmx_guest_inject_ac(vcpu)) {
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004927 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
4928 return 1;
4929 }
4930
4931 /*
4932 * Handle split lock. Depending on detection mode this will
4933 * either warn and disable split lock detection for this
4934 * task or force SIGBUS on it.
4935 */
4936 if (handle_guest_split_lock(kvm_rip_read(vcpu)))
4937 return 1;
4938 fallthrough;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004939 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004940 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
4941 kvm_run->ex.exception = ex_no;
4942 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004943 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004944 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004945 return 0;
4946}
4947
Andrea Arcangelif399e602019-11-04 17:59:58 -05004948static __always_inline int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004949{
Avi Kivity1165f5f2007-04-19 17:27:43 +03004950 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004951 return 1;
4952}
4953
Avi Kivity851ba692009-08-24 11:10:17 +03004954static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08004955{
Avi Kivity851ba692009-08-24 11:10:17 +03004956 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07004957 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08004958 return 0;
4959}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004960
Avi Kivity851ba692009-08-24 11:10:17 +03004961static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004962{
He, Qingbfdaab02007-09-12 14:18:28 +08004963 unsigned long exit_qualification;
Sean Christophersondca7f122018-03-08 08:57:27 -08004964 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02004965 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004966
Sean Christopherson5addc232020-04-15 13:34:53 -07004967 exit_qualification = vmx_get_exit_qual(vcpu);
Avi Kivity039576c2007-03-20 12:46:50 +02004968 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004969
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004970 ++vcpu->stat.io_exits;
4971
Sean Christopherson432baf62018-03-08 08:57:26 -08004972 if (string)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004973 return kvm_emulate_instruction(vcpu, 0);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004974
4975 port = exit_qualification >> 16;
4976 size = (exit_qualification & 7) + 1;
Sean Christopherson432baf62018-03-08 08:57:26 -08004977 in = (exit_qualification & 8) != 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004978
Sean Christophersondca7f122018-03-08 08:57:27 -08004979 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004980}
4981
Ingo Molnar102d8322007-02-19 14:37:47 +02004982static void
4983vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
4984{
4985 /*
4986 * Patch in the VMCALL instruction:
4987 */
4988 hypercall[0] = 0x0f;
4989 hypercall[1] = 0x01;
4990 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02004991}
4992
Guo Chao0fa06072012-06-28 15:16:19 +08004993/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004994static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
4995{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004996 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004997 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4998 unsigned long orig_val = val;
4999
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005000 /*
5001 * We get here when L2 changed cr0 in a way that did not change
5002 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005003 * but did change L0 shadowed bits. So we first calculate the
5004 * effective cr0 value that L1 would like to write into the
5005 * hardware. It consists of the L2-owned bits from the new
5006 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005007 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005008 val = (val & ~vmcs12->cr0_guest_host_mask) |
5009 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
5010
David Matlack38991522016-11-29 18:14:08 -08005011 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005012 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005013
5014 if (kvm_set_cr0(vcpu, val))
5015 return 1;
5016 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005017 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005018 } else {
5019 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08005020 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005021 return 1;
David Matlack38991522016-11-29 18:14:08 -08005022
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005023 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005024 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005025}
5026
5027static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
5028{
5029 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005030 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5031 unsigned long orig_val = val;
5032
5033 /* analogously to handle_set_cr0 */
5034 val = (val & ~vmcs12->cr4_guest_host_mask) |
5035 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
5036 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005037 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005038 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005039 return 0;
5040 } else
5041 return kvm_set_cr4(vcpu, val);
5042}
5043
Paolo Bonzini0367f202016-07-12 10:44:55 +02005044static int handle_desc(struct kvm_vcpu *vcpu)
5045{
5046 WARN_ON(!(vcpu->arch.cr4 & X86_CR4_UMIP));
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005047 return kvm_emulate_instruction(vcpu, 0);
Paolo Bonzini0367f202016-07-12 10:44:55 +02005048}
5049
Avi Kivity851ba692009-08-24 11:10:17 +03005050static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005051{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005052 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005053 int cr;
5054 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03005055 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08005056 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005057
Sean Christopherson5addc232020-04-15 13:34:53 -07005058 exit_qualification = vmx_get_exit_qual(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005059 cr = exit_qualification & 15;
5060 reg = (exit_qualification >> 8) & 15;
5061 switch ((exit_qualification >> 4) & 3) {
5062 case 0: /* mov to cr */
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07005063 val = kvm_register_read(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005064 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005065 switch (cr) {
5066 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005067 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005068 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005069 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08005070 WARN_ON_ONCE(enable_unrestricted_guest);
Sean Christopherson67369272021-07-02 15:04:25 -07005071
Avi Kivity23902182010-06-10 17:02:16 +03005072 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005073 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005074 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005075 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005076 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005077 case 8: {
5078 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03005079 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01005080 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005081 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005082 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08005083 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005084 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08005085 return ret;
5086 /*
5087 * TODO: we might be squashing a
5088 * KVM_GUESTDBG_SINGLESTEP-triggered
5089 * KVM_EXIT_DEBUG here.
5090 */
Avi Kivity851ba692009-08-24 11:10:17 +03005091 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005092 return 0;
5093 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02005094 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005095 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03005096 case 2: /* clts */
Sean Christopherson67369272021-07-02 15:04:25 -07005097 KVM_BUG(1, vcpu->kvm, "Guest always owns CR0.TS");
5098 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005099 case 1: /*mov from cr*/
5100 switch (cr) {
5101 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08005102 WARN_ON_ONCE(enable_unrestricted_guest);
Sean Christopherson67369272021-07-02 15:04:25 -07005103
Avi Kivity9f8fe502010-12-05 17:30:00 +02005104 val = kvm_read_cr3(vcpu);
5105 kvm_register_write(vcpu, reg, val);
5106 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005107 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005108 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005109 val = kvm_get_cr8(vcpu);
5110 kvm_register_write(vcpu, reg, val);
5111 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005112 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005113 }
5114 break;
5115 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02005116 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02005117 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02005118 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005119
Kyle Huey6affcbe2016-11-29 12:40:40 -08005120 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005121 default:
5122 break;
5123 }
Avi Kivity851ba692009-08-24 11:10:17 +03005124 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03005125 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08005126 (int)(exit_qualification >> 4) & 3, cr);
5127 return 0;
5128}
5129
Avi Kivity851ba692009-08-24 11:10:17 +03005130static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005131{
He, Qingbfdaab02007-09-12 14:18:28 +08005132 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005133 int dr, dr7, reg;
Paolo Bonzini996ff542020-12-14 07:49:54 -05005134 int err = 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005135
Sean Christopherson5addc232020-04-15 13:34:53 -07005136 exit_qualification = vmx_get_exit_qual(vcpu);
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005137 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
5138
5139 /* First, if DR does not exist, trigger UD */
5140 if (!kvm_require_dr(vcpu, dr))
5141 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005142
Paolo Bonzini996ff542020-12-14 07:49:54 -05005143 if (kvm_x86_ops.get_cpl(vcpu) > 0)
5144 goto out;
5145
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005146 dr7 = vmcs_readl(GUEST_DR7);
5147 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005148 /*
5149 * As the vm-exit takes precedence over the debug trap, we
5150 * need to emulate the latter, either for the host or the
5151 * guest debugging itself.
5152 */
5153 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08005154 vcpu->run->debug.arch.dr6 = DR6_BD | DR6_ACTIVE_LOW;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005155 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02005156 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005157 vcpu->run->debug.arch.exception = DB_VECTOR;
5158 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005159 return 0;
5160 } else {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04005161 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BD);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005162 return 1;
5163 }
5164 }
5165
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005166 if (vcpu->guest_debug == 0) {
Sean Christopherson2183f562019-05-07 12:17:56 -07005167 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005168
5169 /*
5170 * No more DR vmexits; force a reload of the debug registers
5171 * and reenter on this instruction. The next vmexit will
5172 * retrieve the full state of the debug registers.
5173 */
5174 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
5175 return 1;
5176 }
5177
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005178 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
5179 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03005180 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005181
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05005182 kvm_get_dr(vcpu, dr, &val);
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005183 kvm_register_write(vcpu, reg, val);
Paolo Bonzini996ff542020-12-14 07:49:54 -05005184 err = 0;
5185 } else {
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07005186 err = kvm_set_dr(vcpu, dr, kvm_register_read(vcpu, reg));
Paolo Bonzini996ff542020-12-14 07:49:54 -05005187 }
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005188
Paolo Bonzini996ff542020-12-14 07:49:54 -05005189out:
5190 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005191}
5192
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005193static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
5194{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005195 get_debugreg(vcpu->arch.db[0], 0);
5196 get_debugreg(vcpu->arch.db[1], 1);
5197 get_debugreg(vcpu->arch.db[2], 2);
5198 get_debugreg(vcpu->arch.db[3], 3);
5199 get_debugreg(vcpu->arch.dr6, 6);
5200 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
5201
5202 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Sean Christopherson2183f562019-05-07 12:17:56 -07005203 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini1ccb6f92021-08-10 06:11:35 -04005204
5205 /*
5206 * exc_debug expects dr6 to be cleared after it runs, avoid that it sees
5207 * a stale dr6 from the guest.
5208 */
5209 set_debugreg(DR6_RESERVED, 6);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005210}
5211
Gleb Natapov020df072010-04-13 10:05:23 +03005212static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
5213{
5214 vmcs_writel(GUEST_DR7, val);
5215}
5216
Avi Kivity851ba692009-08-24 11:10:17 +03005217static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005218{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01005219 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005220 return 1;
5221}
5222
Avi Kivity851ba692009-08-24 11:10:17 +03005223static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005224{
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005225 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_INTR_WINDOW_EXITING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005226
Avi Kivity3842d132010-07-27 12:30:24 +03005227 kvm_make_request(KVM_REQ_EVENT, vcpu);
5228
Jan Kiszkaa26bf122008-09-26 09:30:45 +02005229 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005230 return 1;
5231}
5232
Avi Kivity851ba692009-08-24 11:10:17 +03005233static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03005234{
Sean Christopherson5addc232020-04-15 13:34:53 -07005235 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005236
5237 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005238 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005239}
5240
Avi Kivity851ba692009-08-24 11:10:17 +03005241static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005242{
Kevin Tian58fbbf22011-08-30 13:56:17 +03005243 if (likely(fasteoi)) {
Sean Christopherson5addc232020-04-15 13:34:53 -07005244 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03005245 int access_type, offset;
5246
5247 access_type = exit_qualification & APIC_ACCESS_TYPE;
5248 offset = exit_qualification & APIC_ACCESS_OFFSET;
5249 /*
5250 * Sane guest uses MOV to write EOI, with written value
5251 * not cared. So make a short-circuit here by avoiding
5252 * heavy instruction emulation.
5253 */
5254 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
5255 (offset == APIC_EOI)) {
5256 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005257 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03005258 }
5259 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005260 return kvm_emulate_instruction(vcpu, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08005261}
5262
Yang Zhangc7c9c562013-01-25 10:18:51 +08005263static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
5264{
Sean Christopherson5addc232020-04-15 13:34:53 -07005265 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005266 int vector = exit_qualification & 0xff;
5267
5268 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
5269 kvm_apic_set_eoi_accelerated(vcpu, vector);
5270 return 1;
5271}
5272
Yang Zhang83d4c282013-01-25 10:18:49 +08005273static int handle_apic_write(struct kvm_vcpu *vcpu)
5274{
Sean Christopherson5addc232020-04-15 13:34:53 -07005275 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Yang Zhang83d4c282013-01-25 10:18:49 +08005276 u32 offset = exit_qualification & 0xfff;
5277
5278 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
5279 kvm_apic_write_nodecode(vcpu, offset);
5280 return 1;
5281}
5282
Avi Kivity851ba692009-08-24 11:10:17 +03005283static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02005284{
Jan Kiszka60637aa2008-09-26 09:30:47 +02005285 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005286 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02005287 bool has_error_code = false;
5288 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02005289 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005290 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005291
5292 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005293 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005294 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02005295
Sean Christopherson5addc232020-04-15 13:34:53 -07005296 exit_qualification = vmx_get_exit_qual(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005297
5298 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005299 if (reason == TASK_SWITCH_GATE && idt_v) {
5300 switch (type) {
5301 case INTR_TYPE_NMI_INTR:
5302 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02005303 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005304 break;
5305 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005306 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005307 kvm_clear_interrupt_queue(vcpu);
5308 break;
5309 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02005310 if (vmx->idt_vectoring_info &
5311 VECTORING_INFO_DELIVER_CODE_MASK) {
5312 has_error_code = true;
5313 error_code =
5314 vmcs_read32(IDT_VECTORING_ERROR_CODE);
5315 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05005316 fallthrough;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005317 case INTR_TYPE_SOFT_EXCEPTION:
5318 kvm_clear_exception_queue(vcpu);
5319 break;
5320 default:
5321 break;
5322 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02005323 }
Izik Eidus37817f22008-03-24 23:14:53 +02005324 tss_selector = exit_qualification;
5325
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005326 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
5327 type != INTR_TYPE_EXT_INTR &&
5328 type != INTR_TYPE_NMI_INTR))
Sean Christopherson1957aa62019-08-27 14:40:39 -07005329 WARN_ON(!skip_emulated_instruction(vcpu));
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005330
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005331 /*
5332 * TODO: What about debug traps on tss switch?
5333 * Are we supposed to inject them and update dr6?
5334 */
Sean Christopherson10517782019-08-27 14:40:35 -07005335 return kvm_task_switch(vcpu, tss_selector,
5336 type == INTR_TYPE_SOFT_INTR ? idt_index : -1,
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005337 reason, has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02005338}
5339
Avi Kivity851ba692009-08-24 11:10:17 +03005340static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08005341{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005342 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08005343 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01005344 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08005345
Sean Christopherson5addc232020-04-15 13:34:53 -07005346 exit_qualification = vmx_get_exit_qual(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08005347
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005348 /*
5349 * EPT violation happened while executing iret from NMI,
5350 * "blocked by NMI" bit has to be set before next VM entry.
5351 * There are errata that may cause this bit to not be set:
5352 * AAK134, BY25.
5353 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005354 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005355 enable_vnmi &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005356 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005357 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
5358
Sheng Yang14394422008-04-28 12:24:45 +08005359 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005360 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005361
Junaid Shahid27959a42016-12-06 16:46:10 -08005362 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005363 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08005364 ? PFERR_USER_MASK : 0;
5365 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005366 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08005367 ? PFERR_WRITE_MASK : 0;
5368 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005369 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08005370 ? PFERR_FETCH_MASK : 0;
5371 /* ept page table entry is present? */
5372 error_code |= (exit_qualification &
5373 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
5374 EPT_VIOLATION_EXECUTABLE))
5375 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005376
Isaku Yamahata108356022021-04-22 17:22:29 -07005377 error_code |= (exit_qualification & EPT_VIOLATION_GVA_TRANSLATED) != 0 ?
Paolo Bonzinieebed242016-11-28 14:39:58 +01005378 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03005379
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005380 vcpu->arch.exit_qualification = exit_qualification;
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02005381
5382 /*
5383 * Check that the GPA doesn't exceed physical memory limits, as that is
5384 * a guest page fault. We have to emulate the instruction here, because
5385 * if the illegal address is that of a paging structure, then
5386 * EPT_VIOLATION_ACC_WRITE bit is set. Alternatively, if supported we
5387 * would also use advanced VM-exit information for EPT violations to
5388 * reconstruct the page fault error code.
5389 */
Paolo Bonzinic0623f52020-10-21 18:05:58 -04005390 if (unlikely(allow_smaller_maxphyaddr && kvm_vcpu_is_illegal_gpa(vcpu, gpa)))
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02005391 return kvm_emulate_instruction(vcpu, 0);
5392
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005393 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08005394}
5395
Avi Kivity851ba692009-08-24 11:10:17 +03005396static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005397{
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005398 gpa_t gpa;
5399
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12005400 if (!vmx_can_emulate_instruction(vcpu, NULL, 0))
5401 return 1;
5402
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005403 /*
5404 * A nested guest cannot optimize MMIO vmexits, because we have an
5405 * nGPA here instead of the required GPA.
5406 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005407 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005408 if (!is_guest_mode(vcpu) &&
5409 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08005410 trace_kvm_fast_mmio(gpa);
Sean Christopherson1957aa62019-08-27 14:40:39 -07005411 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03005412 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005413
Sean Christophersonc75d0edc2018-03-29 14:48:31 -07005414 return kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005415}
5416
Avi Kivity851ba692009-08-24 11:10:17 +03005417static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08005418{
Sean Christopherson67369272021-07-02 15:04:25 -07005419 if (KVM_BUG_ON(!enable_vnmi, vcpu->kvm))
5420 return -EIO;
5421
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08005422 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_NMI_WINDOW_EXITING);
Sheng Yangf08864b2008-05-15 18:23:25 +08005423 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03005424 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08005425
5426 return 1;
5427}
5428
Sean Christophersonfc4fad72021-12-28 23:24:36 +00005429static bool vmx_emulation_required_with_pending_exception(struct kvm_vcpu *vcpu)
5430{
5431 struct vcpu_vmx *vmx = to_vmx(vcpu);
5432
5433 return vmx->emulation_required && !vmx->rmode.vm86_active &&
5434 vcpu->arch.exception.pending;
5435}
5436
Mohammed Gamal80ced182009-09-01 12:48:18 +02005437static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005438{
Avi Kivity8b3079a2009-01-05 12:10:54 +02005439 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity49e9d552010-09-19 14:34:08 +02005440 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03005441 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02005442
Sean Christopherson2183f562019-05-07 12:17:56 -07005443 intr_window_requested = exec_controls_get(vmx) &
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005444 CPU_BASED_INTR_WINDOW_EXITING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005445
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01005446 while (vmx->emulation_required && count-- != 0) {
Sean Christophersondb438592020-04-22 19:25:48 -07005447 if (intr_window_requested && !vmx_interrupt_blocked(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02005448 return handle_interrupt_window(&vmx->vcpu);
5449
Radim Krčmář72875d82017-04-26 22:32:19 +02005450 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03005451 return 1;
5452
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005453 if (!kvm_emulate_instruction(vcpu, 0))
Sean Christopherson8fff2712019-08-27 14:40:37 -07005454 return 0;
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005455
Sean Christophersonfc4fad72021-12-28 23:24:36 +00005456 if (vmx_emulation_required_with_pending_exception(vcpu)) {
David Edmondsone615e352021-09-20 11:37:36 +01005457 kvm_prepare_emulation_failure_exit(vcpu);
Sean Christopherson8fff2712019-08-27 14:40:37 -07005458 return 0;
5459 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005460
Gleb Natapov8d76c492013-05-08 18:38:44 +03005461 if (vcpu->arch.halt_request) {
5462 vcpu->arch.halt_request = 0;
Sean Christopherson14601792021-10-08 19:12:05 -07005463 return kvm_emulate_halt_noskip(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03005464 }
5465
Sean Christopherson8fff2712019-08-27 14:40:37 -07005466 /*
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02005467 * Note, return 1 and not 0, vcpu_run() will invoke
5468 * xfer_to_guest_mode() which will create a proper return
5469 * code.
Sean Christopherson8fff2712019-08-27 14:40:37 -07005470 */
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02005471 if (__xfer_to_guest_mode_work_pending())
Sean Christopherson8fff2712019-08-27 14:40:37 -07005472 return 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005473 }
5474
Sean Christopherson8fff2712019-08-27 14:40:37 -07005475 return 1;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005476}
5477
Sean Christophersonfc4fad72021-12-28 23:24:36 +00005478static int vmx_vcpu_pre_run(struct kvm_vcpu *vcpu)
5479{
5480 if (vmx_emulation_required_with_pending_exception(vcpu)) {
5481 kvm_prepare_emulation_failure_exit(vcpu);
5482 return 0;
5483 }
5484
5485 return 1;
5486}
5487
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005488static void grow_ple_window(struct kvm_vcpu *vcpu)
5489{
5490 struct vcpu_vmx *vmx = to_vmx(vcpu);
Peter Xuc5c5d6f2019-09-06 10:17:21 +08005491 unsigned int old = vmx->ple_window;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005492
Babu Mogerc8e88712018-03-16 16:37:24 -04005493 vmx->ple_window = __grow_ple_window(old, ple_window,
5494 ple_window_grow,
5495 ple_window_max);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005496
Peter Xu4f75bcc2019-09-06 10:17:22 +08005497 if (vmx->ple_window != old) {
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005498 vmx->ple_window_dirty = true;
Peter Xu4f75bcc2019-09-06 10:17:22 +08005499 trace_kvm_ple_window_update(vcpu->vcpu_id,
5500 vmx->ple_window, old);
5501 }
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005502}
5503
5504static void shrink_ple_window(struct kvm_vcpu *vcpu)
5505{
5506 struct vcpu_vmx *vmx = to_vmx(vcpu);
Peter Xuc5c5d6f2019-09-06 10:17:21 +08005507 unsigned int old = vmx->ple_window;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005508
Babu Mogerc8e88712018-03-16 16:37:24 -04005509 vmx->ple_window = __shrink_ple_window(old, ple_window,
5510 ple_window_shrink,
5511 ple_window);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005512
Peter Xu4f75bcc2019-09-06 10:17:22 +08005513 if (vmx->ple_window != old) {
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005514 vmx->ple_window_dirty = true;
Peter Xu4f75bcc2019-09-06 10:17:22 +08005515 trace_kvm_ple_window_update(vcpu->vcpu_id,
5516 vmx->ple_window, old);
5517 }
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005518}
5519
Avi Kivity6aa8b732006-12-10 02:21:36 -08005520/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005521 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
5522 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
5523 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03005524static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005525{
Wanpeng Lib31c1142018-03-12 04:53:04 -07005526 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005527 grow_ple_window(vcpu);
5528
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08005529 /*
5530 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
5531 * VM-execution control is ignored if CPL > 0. OTOH, KVM
5532 * never set PAUSE_EXITING and just set PLE if supported,
5533 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
5534 */
5535 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005536 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005537}
5538
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005539static int handle_monitor_trap(struct kvm_vcpu *vcpu)
5540{
5541 return 1;
5542}
5543
Junaid Shahideb4b2482018-06-27 14:59:14 -07005544static int handle_invpcid(struct kvm_vcpu *vcpu)
5545{
5546 u32 vmx_instruction_info;
5547 unsigned long type;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005548 gva_t gva;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005549 struct {
5550 u64 pcid;
5551 u64 gla;
5552 } operand;
Vipin Sharma329bd562021-11-09 17:44:25 +00005553 int gpr_index;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005554
5555 if (!guest_cpuid_has(vcpu, X86_FEATURE_INVPCID)) {
5556 kvm_queue_exception(vcpu, UD_VECTOR);
5557 return 1;
5558 }
5559
5560 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Vipin Sharma329bd562021-11-09 17:44:25 +00005561 gpr_index = vmx_get_instr_info_reg2(vmx_instruction_info);
5562 type = kvm_register_read(vcpu, gpr_index);
Junaid Shahideb4b2482018-06-27 14:59:14 -07005563
5564 /* According to the Intel instruction reference, the memory operand
5565 * is read even if it isn't needed (e.g., for type==all)
5566 */
Sean Christopherson5addc232020-04-15 13:34:53 -07005567 if (get_vmx_mem_address(vcpu, vmx_get_exit_qual(vcpu),
Eugene Korenevskyfdb28612019-06-06 00:19:16 +03005568 vmx_instruction_info, false,
5569 sizeof(operand), &gva))
Junaid Shahideb4b2482018-06-27 14:59:14 -07005570 return 1;
5571
Babu Moger97150922020-09-11 14:29:12 -05005572 return kvm_handle_invpcid(vcpu, type, gva);
Junaid Shahideb4b2482018-06-27 14:59:14 -07005573}
5574
Kai Huang843e4332015-01-28 10:54:28 +08005575static int handle_pml_full(struct kvm_vcpu *vcpu)
5576{
5577 unsigned long exit_qualification;
5578
5579 trace_kvm_pml_full(vcpu->vcpu_id);
5580
Sean Christopherson5addc232020-04-15 13:34:53 -07005581 exit_qualification = vmx_get_exit_qual(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005582
5583 /*
5584 * PML buffer FULL happened while executing iret from NMI,
5585 * "blocked by NMI" bit has to be set before next VM entry.
5586 */
5587 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005588 enable_vnmi &&
Kai Huang843e4332015-01-28 10:54:28 +08005589 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
5590 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5591 GUEST_INTR_STATE_NMI);
5592
5593 /*
5594 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
5595 * here.., and there's no userspace involvement needed for PML.
5596 */
5597 return 1;
5598}
5599
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005600static fastpath_t handle_fastpath_preemption_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07005601{
Sean Christopherson804939e2019-05-07 12:18:05 -07005602 struct vcpu_vmx *vmx = to_vmx(vcpu);
5603
5604 if (!vmx->req_immediate_exit &&
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005605 !unlikely(vmx->loaded_vmcs->hv_timer_soft_disabled)) {
Sean Christophersond264ee02018-08-27 15:21:12 -07005606 kvm_lapic_expired_hv_timer(vcpu);
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005607 return EXIT_FASTPATH_REENTER_GUEST;
5608 }
Sean Christopherson804939e2019-05-07 12:18:05 -07005609
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005610 return EXIT_FASTPATH_NONE;
5611}
5612
5613static int handle_preemption_timer(struct kvm_vcpu *vcpu)
5614{
5615 handle_fastpath_preemption_timer(vcpu);
Yunhong Jiang64672c92016-06-13 14:19:59 -07005616 return 1;
5617}
5618
Sean Christophersone4027cf2018-12-03 13:53:12 -08005619/*
5620 * When nested=0, all VMX instruction VM Exits filter here. The handlers
5621 * are overwritten by nested_vmx_setup() when nested=1.
5622 */
5623static int handle_vmx_instruction(struct kvm_vcpu *vcpu)
5624{
5625 kvm_queue_exception(vcpu, UD_VECTOR);
5626 return 1;
5627}
5628
Sean Christopherson9798adb2021-04-12 16:21:38 +12005629#ifndef CONFIG_X86_SGX_KVM
Sean Christopherson0b665d32018-08-14 09:33:34 -07005630static int handle_encls(struct kvm_vcpu *vcpu)
5631{
5632 /*
Sean Christopherson9798adb2021-04-12 16:21:38 +12005633 * SGX virtualization is disabled. There is no software enable bit for
5634 * SGX, so KVM intercepts all ENCLS leafs and injects a #UD to prevent
5635 * the guest from executing ENCLS (when SGX is supported by hardware).
Sean Christopherson0b665d32018-08-14 09:33:34 -07005636 */
5637 kvm_queue_exception(vcpu, UD_VECTOR);
5638 return 1;
5639}
Sean Christopherson9798adb2021-04-12 16:21:38 +12005640#endif /* CONFIG_X86_SGX_KVM */
Sean Christopherson0b665d32018-08-14 09:33:34 -07005641
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005642static int handle_bus_lock_vmexit(struct kvm_vcpu *vcpu)
5643{
Hao Xiangd61863c2021-10-15 19:59:21 +08005644 /*
5645 * Hardware may or may not set the BUS_LOCK_DETECTED flag on BUS_LOCK
5646 * VM-Exits. Unconditionally set the flag here and leave the handling to
5647 * vmx_handle_exit().
5648 */
5649 to_vmx(vcpu)->exit_reason.bus_lock_detected = true;
5650 return 1;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005651}
5652
Nadav Har'El0140cae2011-05-25 23:06:28 +03005653/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005654 * The exit handlers return 1 if the exit was handled fully and guest execution
5655 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
5656 * to be done to userspace and return 0.
5657 */
Sean Christophersone4027cf2018-12-03 13:53:12 -08005658static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Sean Christopherson95b5a482019-04-19 22:50:59 -07005659 [EXIT_REASON_EXCEPTION_NMI] = handle_exception_nmi,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005660 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08005661 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08005662 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005663 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005664 [EXIT_REASON_CR_ACCESS] = handle_cr,
5665 [EXIT_REASON_DR_ACCESS] = handle_dr,
Andrea Arcangelif399e602019-11-04 17:59:58 -05005666 [EXIT_REASON_CPUID] = kvm_emulate_cpuid,
5667 [EXIT_REASON_MSR_READ] = kvm_emulate_rdmsr,
5668 [EXIT_REASON_MSR_WRITE] = kvm_emulate_wrmsr,
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005669 [EXIT_REASON_INTERRUPT_WINDOW] = handle_interrupt_window,
Andrea Arcangelif399e602019-11-04 17:59:58 -05005670 [EXIT_REASON_HLT] = kvm_emulate_halt,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005671 [EXIT_REASON_INVD] = kvm_emulate_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03005672 [EXIT_REASON_INVLPG] = handle_invlpg,
Sean Christophersonc483c452021-02-04 16:57:48 -08005673 [EXIT_REASON_RDPMC] = kvm_emulate_rdpmc,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005674 [EXIT_REASON_VMCALL] = kvm_emulate_hypercall,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005675 [EXIT_REASON_VMCLEAR] = handle_vmx_instruction,
5676 [EXIT_REASON_VMLAUNCH] = handle_vmx_instruction,
5677 [EXIT_REASON_VMPTRLD] = handle_vmx_instruction,
5678 [EXIT_REASON_VMPTRST] = handle_vmx_instruction,
5679 [EXIT_REASON_VMREAD] = handle_vmx_instruction,
5680 [EXIT_REASON_VMRESUME] = handle_vmx_instruction,
5681 [EXIT_REASON_VMWRITE] = handle_vmx_instruction,
5682 [EXIT_REASON_VMOFF] = handle_vmx_instruction,
5683 [EXIT_REASON_VMON] = handle_vmx_instruction,
Sheng Yangf78e0e22007-10-29 09:40:42 +08005684 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
5685 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08005686 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08005687 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005688 [EXIT_REASON_WBINVD] = kvm_emulate_wbinvd,
Sean Christopherson92f98952021-02-04 16:57:46 -08005689 [EXIT_REASON_XSETBV] = kvm_emulate_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02005690 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08005691 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Paolo Bonzini0367f202016-07-12 10:44:55 +02005692 [EXIT_REASON_GDTR_IDTR] = handle_desc,
5693 [EXIT_REASON_LDTR_TR] = handle_desc,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005694 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
5695 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005696 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005697 [EXIT_REASON_MWAIT_INSTRUCTION] = kvm_emulate_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005698 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005699 [EXIT_REASON_MONITOR_INSTRUCTION] = kvm_emulate_monitor,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005700 [EXIT_REASON_INVEPT] = handle_vmx_instruction,
5701 [EXIT_REASON_INVVPID] = handle_vmx_instruction,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005702 [EXIT_REASON_RDRAND] = kvm_handle_invalid_op,
5703 [EXIT_REASON_RDSEED] = kvm_handle_invalid_op,
Kai Huang843e4332015-01-28 10:54:28 +08005704 [EXIT_REASON_PML_FULL] = handle_pml_full,
Junaid Shahideb4b2482018-06-27 14:59:14 -07005705 [EXIT_REASON_INVPCID] = handle_invpcid,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005706 [EXIT_REASON_VMFUNC] = handle_vmx_instruction,
Yunhong Jiang64672c92016-06-13 14:19:59 -07005707 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Sean Christopherson0b665d32018-08-14 09:33:34 -07005708 [EXIT_REASON_ENCLS] = handle_encls,
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005709 [EXIT_REASON_BUS_LOCK] = handle_bus_lock_vmexit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005710};
5711
5712static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04005713 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005714
David Edmondson0a62a032021-09-20 11:37:35 +01005715static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u32 *reason,
5716 u64 *info1, u64 *info2,
Sean Christopherson235ba742020-09-23 13:13:46 -07005717 u32 *intr_info, u32 *error_code)
Avi Kivity586f9602010-11-18 13:09:54 +02005718{
Sean Christopherson235ba742020-09-23 13:13:46 -07005719 struct vcpu_vmx *vmx = to_vmx(vcpu);
5720
David Edmondson0a62a032021-09-20 11:37:35 +01005721 *reason = vmx->exit_reason.full;
Sean Christopherson5addc232020-04-15 13:34:53 -07005722 *info1 = vmx_get_exit_qual(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08005723 if (!(vmx->exit_reason.failed_vmentry)) {
Sean Christopherson235ba742020-09-23 13:13:46 -07005724 *info2 = vmx->idt_vectoring_info;
5725 *intr_info = vmx_get_intr_info(vcpu);
5726 if (is_exception_with_error_code(*intr_info))
5727 *error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
5728 else
5729 *error_code = 0;
5730 } else {
5731 *info2 = 0;
5732 *intr_info = 0;
5733 *error_code = 0;
5734 }
Avi Kivity586f9602010-11-18 13:09:54 +02005735}
5736
Kai Huanga3eaa862015-11-04 13:46:05 +08005737static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08005738{
Kai Huanga3eaa862015-11-04 13:46:05 +08005739 if (vmx->pml_pg) {
5740 __free_page(vmx->pml_pg);
5741 vmx->pml_pg = NULL;
5742 }
Kai Huang843e4332015-01-28 10:54:28 +08005743}
5744
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005745static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08005746{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005747 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005748 u64 *pml_buf;
5749 u16 pml_idx;
5750
5751 pml_idx = vmcs_read16(GUEST_PML_INDEX);
5752
5753 /* Do nothing if PML buffer is empty */
5754 if (pml_idx == (PML_ENTITY_NUM - 1))
5755 return;
5756
5757 /* PML index always points to next available PML buffer entity */
5758 if (pml_idx >= PML_ENTITY_NUM)
5759 pml_idx = 0;
5760 else
5761 pml_idx++;
5762
5763 pml_buf = page_address(vmx->pml_pg);
5764 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
5765 u64 gpa;
5766
5767 gpa = pml_buf[pml_idx];
5768 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005769 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08005770 }
5771
5772 /* reset PML index */
5773 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5774}
5775
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005776static void vmx_dump_sel(char *name, uint32_t sel)
5777{
5778 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05005779 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005780 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
5781 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
5782 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
5783}
5784
5785static void vmx_dump_dtsel(char *name, uint32_t limit)
5786{
5787 pr_err("%s limit=0x%08x, base=0x%016lx\n",
5788 name, vmcs_read32(limit),
5789 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
5790}
5791
David Edmondson84860392021-03-18 12:08:41 +00005792static void vmx_dump_msrs(char *name, struct vmx_msrs *m)
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005793{
David Edmondson84860392021-03-18 12:08:41 +00005794 unsigned int i;
5795 struct vmx_msr_entry *e;
5796
5797 pr_err("MSR %s:\n", name);
5798 for (i = 0, e = m->val; i < m->nr; ++i, ++e)
5799 pr_err(" %2d: msr=0x%08x value=0x%016llx\n", i, e->index, e->value);
5800}
5801
David Edmondson0702a3c2021-03-18 12:08:40 +00005802void dump_vmcs(struct kvm_vcpu *vcpu)
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005803{
David Edmondson0702a3c2021-03-18 12:08:40 +00005804 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005805 u32 vmentry_ctl, vmexit_ctl;
5806 u32 cpu_based_exec_ctrl, pin_based_exec_ctrl, secondary_exec_control;
5807 unsigned long cr4;
David Edmondson0702a3c2021-03-18 12:08:40 +00005808 int efer_slot;
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005809
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005810 if (!dump_invalid_vmcs) {
5811 pr_warn_ratelimited("set kvm_intel.dump_invalid_vmcs=1 to dump internal KVM state.\n");
5812 return;
5813 }
5814
5815 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
5816 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
5817 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5818 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
5819 cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005820 secondary_exec_control = 0;
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005821 if (cpu_has_secondary_exec_ctrls())
5822 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
5823
Jim Mattson18f63b12021-06-21 15:16:48 -07005824 pr_err("VMCS %p, last attempted VM-entry on CPU %d\n",
5825 vmx->loaded_vmcs->vmcs, vcpu->arch.last_vmentry_cpu);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005826 pr_err("*** Guest State ***\n");
5827 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5828 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
5829 vmcs_readl(CR0_GUEST_HOST_MASK));
5830 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5831 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
5832 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
David Edmondsond9e46d32021-03-18 12:08:37 +00005833 if (cpu_has_vmx_ept()) {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005834 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
5835 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
5836 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
5837 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005838 }
5839 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
5840 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
5841 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
5842 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
5843 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5844 vmcs_readl(GUEST_SYSENTER_ESP),
5845 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
5846 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
5847 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
5848 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
5849 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
5850 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
5851 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
5852 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
5853 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
5854 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
5855 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
David Edmondson0702a3c2021-03-18 12:08:40 +00005856 efer_slot = vmx_find_loadstore_msr_slot(&vmx->msr_autoload.guest, MSR_EFER);
David Edmondson5518da62021-03-18 12:08:39 +00005857 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_EFER)
David Edmondson699e1b22021-03-18 12:08:38 +00005858 pr_err("EFER= 0x%016llx\n", vmcs_read64(GUEST_IA32_EFER));
David Edmondson0702a3c2021-03-18 12:08:40 +00005859 else if (efer_slot >= 0)
5860 pr_err("EFER= 0x%016llx (autoload)\n",
5861 vmx->msr_autoload.guest.val[efer_slot].value);
5862 else if (vmentry_ctl & VM_ENTRY_IA32E_MODE)
5863 pr_err("EFER= 0x%016llx (effective)\n",
5864 vcpu->arch.efer | (EFER_LMA | EFER_LME));
5865 else
5866 pr_err("EFER= 0x%016llx (effective)\n",
5867 vcpu->arch.efer & ~(EFER_LMA | EFER_LME));
David Edmondson5518da62021-03-18 12:08:39 +00005868 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PAT)
David Edmondson699e1b22021-03-18 12:08:38 +00005869 pr_err("PAT = 0x%016llx\n", vmcs_read64(GUEST_IA32_PAT));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005870 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
5871 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005872 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005873 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005874 vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005875 pr_err("PerfGlobCtl = 0x%016llx\n",
5876 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005877 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005878 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005879 pr_err("Interruptibility = %08x ActivityState = %08x\n",
5880 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
5881 vmcs_read32(GUEST_ACTIVITY_STATE));
5882 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
5883 pr_err("InterruptStatus = %04x\n",
5884 vmcs_read16(GUEST_INTR_STATUS));
David Edmondson84860392021-03-18 12:08:41 +00005885 if (vmcs_read32(VM_ENTRY_MSR_LOAD_COUNT) > 0)
5886 vmx_dump_msrs("guest autoload", &vmx->msr_autoload.guest);
5887 if (vmcs_read32(VM_EXIT_MSR_STORE_COUNT) > 0)
5888 vmx_dump_msrs("guest autostore", &vmx->msr_autostore.guest);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005889
5890 pr_err("*** Host State ***\n");
5891 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
5892 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
5893 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
5894 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
5895 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
5896 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
5897 vmcs_read16(HOST_TR_SELECTOR));
5898 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
5899 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
5900 vmcs_readl(HOST_TR_BASE));
5901 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
5902 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
5903 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
5904 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
5905 vmcs_readl(HOST_CR4));
5906 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5907 vmcs_readl(HOST_IA32_SYSENTER_ESP),
5908 vmcs_read32(HOST_IA32_SYSENTER_CS),
5909 vmcs_readl(HOST_IA32_SYSENTER_EIP));
David Edmondson699e1b22021-03-18 12:08:38 +00005910 if (vmexit_ctl & VM_EXIT_LOAD_IA32_EFER)
5911 pr_err("EFER= 0x%016llx\n", vmcs_read64(HOST_IA32_EFER));
5912 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PAT)
5913 pr_err("PAT = 0x%016llx\n", vmcs_read64(HOST_IA32_PAT));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005914 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005915 vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005916 pr_err("PerfGlobCtl = 0x%016llx\n",
5917 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
David Edmondson84860392021-03-18 12:08:41 +00005918 if (vmcs_read32(VM_EXIT_MSR_LOAD_COUNT) > 0)
5919 vmx_dump_msrs("host autoload", &vmx->msr_autoload.host);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005920
5921 pr_err("*** Control State ***\n");
5922 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
5923 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
5924 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
5925 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
5926 vmcs_read32(EXCEPTION_BITMAP),
5927 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
5928 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
5929 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
5930 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
5931 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
5932 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
5933 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
5934 vmcs_read32(VM_EXIT_INTR_INFO),
5935 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
5936 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
5937 pr_err(" reason=%08x qualification=%016lx\n",
5938 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
5939 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
5940 vmcs_read32(IDT_VECTORING_INFO_FIELD),
5941 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005942 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08005943 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005944 pr_err("TSC Multiplier = 0x%016llx\n",
5945 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005946 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW) {
5947 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
5948 u16 status = vmcs_read16(GUEST_INTR_STATUS);
5949 pr_err("SVI|RVI = %02x|%02x ", status >> 8, status & 0xff);
5950 }
Dan Carpenterd6a85c32019-04-24 13:15:08 +03005951 pr_cont("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005952 if (secondary_exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
5953 pr_err("APIC-access addr = 0x%016llx ", vmcs_read64(APIC_ACCESS_ADDR));
Dan Carpenterd6a85c32019-04-24 13:15:08 +03005954 pr_cont("virt-APIC addr = 0x%016llx\n", vmcs_read64(VIRTUAL_APIC_PAGE_ADDR));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005955 }
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005956 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
5957 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
5958 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005959 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005960 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
5961 pr_err("PLE Gap=%08x Window=%08x\n",
5962 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
5963 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
5964 pr_err("Virtual processor ID = 0x%04x\n",
5965 vmcs_read16(VIRTUAL_PROCESSOR_ID));
5966}
5967
Avi Kivity6aa8b732006-12-10 02:21:36 -08005968/*
5969 * The guest has exited. See if we can fix it or if we need userspace
5970 * assistance.
5971 */
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005972static int __vmx_handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005973{
Avi Kivity29bd8a72007-09-10 17:27:03 +03005974 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08005975 union vmx_exit_reason exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02005976 u32 vectoring_info = vmx->idt_vectoring_info;
Sean Christopherson8e533242020-11-06 17:03:12 +08005977 u16 exit_handler_index;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005978
Kai Huang843e4332015-01-28 10:54:28 +08005979 /*
5980 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
5981 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
5982 * querying dirty_bitmap, we only need to kick all vcpus out of guest
5983 * mode as if vcpus is in root mode, the PML buffer must has been
Sean Christophersonc3bb9a22021-02-12 16:50:07 -08005984 * flushed already. Note, PML is never enabled in hardware while
5985 * running L2.
Kai Huang843e4332015-01-28 10:54:28 +08005986 */
Sean Christophersonc3bb9a22021-02-12 16:50:07 -08005987 if (enable_pml && !is_guest_mode(vcpu))
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005988 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005989
Sean Christophersondb438592020-04-22 19:25:48 -07005990 /*
Sean Christophersoncd0e6152021-12-07 19:30:04 +00005991 * KVM should never reach this point with a pending nested VM-Enter.
5992 * More specifically, short-circuiting VM-Entry to emulate L2 due to
5993 * invalid guest state should never happen as that means KVM knowingly
5994 * allowed a nested VM-Enter with an invalid vmcs12. More below.
Sean Christophersondb438592020-04-22 19:25:48 -07005995 */
Sean Christopherson67369272021-07-02 15:04:25 -07005996 if (KVM_BUG_ON(vmx->nested.nested_run_pending, vcpu->kvm))
5997 return -EIO;
Sean Christophersondb438592020-04-22 19:25:48 -07005998
Paolo Bonzini96b100c2020-03-17 18:32:50 +01005999 if (is_guest_mode(vcpu)) {
6000 /*
Sean Christophersonc3bb9a22021-02-12 16:50:07 -08006001 * PML is never enabled when running L2, bail immediately if a
6002 * PML full exit occurs as something is horribly wrong.
6003 */
6004 if (exit_reason.basic == EXIT_REASON_PML_FULL)
6005 goto unexpected_vmexit;
6006
6007 /*
Paolo Bonzini96b100c2020-03-17 18:32:50 +01006008 * The host physical addresses of some pages of guest memory
6009 * are loaded into the vmcs02 (e.g. vmcs12's Virtual APIC
6010 * Page). The CPU may write to these pages via their host
6011 * physical address while L2 is running, bypassing any
6012 * address-translation-based dirty tracking (e.g. EPT write
6013 * protection).
6014 *
6015 * Mark them dirty on every exit from L2 to prevent them from
6016 * getting out of sync with dirty tracking.
6017 */
6018 nested_mark_vmcs12_pages_dirty(vcpu);
6019
Sean Christophersoncd0e6152021-12-07 19:30:04 +00006020 /*
6021 * Synthesize a triple fault if L2 state is invalid. In normal
6022 * operation, nested VM-Enter rejects any attempt to enter L2
6023 * with invalid state. However, those checks are skipped if
6024 * state is being stuffed via RSM or KVM_SET_NESTED_STATE. If
6025 * L2 state is invalid, it means either L1 modified SMRAM state
6026 * or userspace provided bad state. Synthesize TRIPLE_FAULT as
6027 * doing so is architecturally allowed in the RSM case, and is
6028 * the least awful solution for the userspace case without
6029 * risking false positives.
6030 */
6031 if (vmx->emulation_required) {
6032 nested_vmx_vmexit(vcpu, EXIT_REASON_TRIPLE_FAULT, 0, 0);
6033 return 1;
6034 }
6035
Sean Christophersonf47baae2020-04-15 10:55:16 -07006036 if (nested_vmx_reflect_vmexit(vcpu))
Sean Christopherson789afc52020-04-15 10:55:10 -07006037 return 1;
Paolo Bonzini96b100c2020-03-17 18:32:50 +01006038 }
Nadav Har'El644d7112011-05-25 23:12:35 +03006039
Sean Christophersoncd0e6152021-12-07 19:30:04 +00006040 /* If guest state is invalid, start emulating. L2 is handled above. */
6041 if (vmx->emulation_required)
6042 return handle_invalid_guest_state(vcpu);
6043
Sean Christopherson8e533242020-11-06 17:03:12 +08006044 if (exit_reason.failed_vmentry) {
David Edmondson0702a3c2021-03-18 12:08:40 +00006045 dump_vmcs(vcpu);
Mohammed Gamal51207022010-05-31 22:40:54 +03006046 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
6047 vcpu->run->fail_entry.hardware_entry_failure_reason
Sean Christopherson8e533242020-11-06 17:03:12 +08006048 = exit_reason.full;
Jim Mattson8a14fe42020-06-03 16:56:22 -07006049 vcpu->run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Mohammed Gamal51207022010-05-31 22:40:54 +03006050 return 0;
6051 }
6052
Avi Kivity29bd8a72007-09-10 17:27:03 +03006053 if (unlikely(vmx->fail)) {
David Edmondson0702a3c2021-03-18 12:08:40 +00006054 dump_vmcs(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03006055 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
6056 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03006057 = vmcs_read32(VM_INSTRUCTION_ERROR);
Jim Mattson8a14fe42020-06-03 16:56:22 -07006058 vcpu->run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Avi Kivity29bd8a72007-09-10 17:27:03 +03006059 return 0;
6060 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006061
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08006062 /*
6063 * Note:
6064 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
6065 * delivery event since it indicates guest is accessing MMIO.
6066 * The vm-exit can be triggered again after return to guest that
6067 * will cause infinite loop.
6068 */
Mike Dayd77c26f2007-10-08 09:02:08 -04006069 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sean Christopherson8e533242020-11-06 17:03:12 +08006070 (exit_reason.basic != EXIT_REASON_EXCEPTION_NMI &&
6071 exit_reason.basic != EXIT_REASON_EPT_VIOLATION &&
6072 exit_reason.basic != EXIT_REASON_PML_FULL &&
6073 exit_reason.basic != EXIT_REASON_APIC_ACCESS &&
6074 exit_reason.basic != EXIT_REASON_TASK_SWITCH)) {
Reiji Watanabe04c4f2e2021-04-13 15:47:40 +00006075 int ndata = 3;
6076
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08006077 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6078 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08006079 vcpu->run->internal.data[0] = vectoring_info;
Sean Christopherson8e533242020-11-06 17:03:12 +08006080 vcpu->run->internal.data[1] = exit_reason.full;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02006081 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
Sean Christopherson8e533242020-11-06 17:03:12 +08006082 if (exit_reason.basic == EXIT_REASON_EPT_MISCONFIG) {
Reiji Watanabe04c4f2e2021-04-13 15:47:40 +00006083 vcpu->run->internal.data[ndata++] =
Paolo Bonzini70bcd702017-07-05 12:38:06 +02006084 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
6085 }
Reiji Watanabe04c4f2e2021-04-13 15:47:40 +00006086 vcpu->run->internal.data[ndata++] = vcpu->arch.last_vmentry_cpu;
6087 vcpu->run->internal.ndata = ndata;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08006088 return 0;
6089 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006090
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006091 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006092 vmx->loaded_vmcs->soft_vnmi_blocked)) {
Sean Christophersondb438592020-04-22 19:25:48 -07006093 if (!vmx_interrupt_blocked(vcpu)) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006094 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
6095 } else if (vmx->loaded_vmcs->vnmi_blocked_time > 1000000000LL &&
6096 vcpu->arch.nmi_pending) {
6097 /*
6098 * This CPU don't support us in finding the end of an
6099 * NMI-blocked window if the guest runs with IRQs
6100 * disabled. So we pull the trigger after 1 s of
6101 * futile waiting, but inform the user about this.
6102 */
6103 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
6104 "state on VCPU %d after 1 s timeout\n",
6105 __func__, vcpu->vcpu_id);
6106 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
6107 }
6108 }
6109
Wanpeng Li404d5d72020-04-28 14:23:25 +08006110 if (exit_fastpath != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08006111 return 1;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006112
Sean Christopherson8e533242020-11-06 17:03:12 +08006113 if (exit_reason.basic >= kvm_vmx_max_exit_handlers)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006114 goto unexpected_vmexit;
6115#ifdef CONFIG_RETPOLINE
Sean Christopherson8e533242020-11-06 17:03:12 +08006116 if (exit_reason.basic == EXIT_REASON_MSR_WRITE)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006117 return kvm_emulate_wrmsr(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006118 else if (exit_reason.basic == EXIT_REASON_PREEMPTION_TIMER)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006119 return handle_preemption_timer(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006120 else if (exit_reason.basic == EXIT_REASON_INTERRUPT_WINDOW)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006121 return handle_interrupt_window(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006122 else if (exit_reason.basic == EXIT_REASON_EXTERNAL_INTERRUPT)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006123 return handle_external_interrupt(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006124 else if (exit_reason.basic == EXIT_REASON_HLT)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006125 return kvm_emulate_halt(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006126 else if (exit_reason.basic == EXIT_REASON_EPT_MISCONFIG)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006127 return handle_ept_misconfig(vcpu);
6128#endif
6129
Sean Christopherson8e533242020-11-06 17:03:12 +08006130 exit_handler_index = array_index_nospec((u16)exit_reason.basic,
6131 kvm_vmx_max_exit_handlers);
6132 if (!kvm_vmx_exit_handlers[exit_handler_index])
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006133 goto unexpected_vmexit;
6134
Sean Christopherson8e533242020-11-06 17:03:12 +08006135 return kvm_vmx_exit_handlers[exit_handler_index](vcpu);
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006136
6137unexpected_vmexit:
Sean Christopherson8e533242020-11-06 17:03:12 +08006138 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
6139 exit_reason.full);
David Edmondson0702a3c2021-03-18 12:08:40 +00006140 dump_vmcs(vcpu);
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006141 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6142 vcpu->run->internal.suberror =
6143 KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
Jim Mattson1aa561b2020-06-03 16:56:21 -07006144 vcpu->run->internal.ndata = 2;
Sean Christopherson8e533242020-11-06 17:03:12 +08006145 vcpu->run->internal.data[0] = exit_reason.full;
Jim Mattson8a14fe42020-06-03 16:56:22 -07006146 vcpu->run->internal.data[1] = vcpu->arch.last_vmentry_cpu;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006147 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006148}
6149
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08006150static int vmx_handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
6151{
6152 int ret = __vmx_handle_exit(vcpu, exit_fastpath);
6153
6154 /*
Hao Xiangd61863c2021-10-15 19:59:21 +08006155 * Exit to user space when bus lock detected to inform that there is
6156 * a bus lock in guest.
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08006157 */
6158 if (to_vmx(vcpu)->exit_reason.bus_lock_detected) {
6159 if (ret > 0)
6160 vcpu->run->exit_reason = KVM_EXIT_X86_BUS_LOCK;
6161
6162 vcpu->run->flags |= KVM_RUN_X86_BUS_LOCK;
6163 return 0;
6164 }
6165 return ret;
6166}
6167
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006168/*
6169 * Software based L1D cache flush which is used when microcode providing
6170 * the cache control MSR is not loaded.
6171 *
6172 * The L1D cache is 32 KiB on Nehalem and later microarchitectures, but to
6173 * flush it is required to read in 64 KiB because the replacement algorithm
6174 * is not exactly LRU. This could be sized at runtime via topology
6175 * information but as all relevant affected CPUs have 32KiB L1D cache size
6176 * there is no point in doing so.
6177 */
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006178static noinstr void vmx_l1d_flush(struct kvm_vcpu *vcpu)
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006179{
6180 int size = PAGE_SIZE << L1D_CACHE_ORDER;
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006181
6182 /*
Thomas Gleixner2f055942018-07-13 16:23:17 +02006183 * This code is only executed when the the flush mode is 'cond' or
6184 * 'always'
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006185 */
Nicolai Stange427362a2018-07-21 22:25:00 +02006186 if (static_branch_likely(&vmx_l1d_flush_cond)) {
Nicolai Stange45b575c2018-07-27 13:22:16 +02006187 bool flush_l1d;
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02006188
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006189 /*
Nicolai Stange45b575c2018-07-27 13:22:16 +02006190 * Clear the per-vcpu flush bit, it gets set again
6191 * either from vcpu_run() or from one of the unsafe
6192 * VMEXIT handlers.
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006193 */
Nicolai Stange45b575c2018-07-27 13:22:16 +02006194 flush_l1d = vcpu->arch.l1tf_flush_l1d;
Thomas Gleixner4c6523e2018-07-13 16:23:20 +02006195 vcpu->arch.l1tf_flush_l1d = false;
Nicolai Stange45b575c2018-07-27 13:22:16 +02006196
6197 /*
6198 * Clear the per-cpu flush bit, it gets set again from
6199 * the interrupt handlers.
6200 */
6201 flush_l1d |= kvm_get_cpu_l1tf_flush_l1d();
6202 kvm_clear_cpu_l1tf_flush_l1d();
6203
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02006204 if (!flush_l1d)
6205 return;
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006206 }
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006207
6208 vcpu->stat.l1d_flush++;
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006209
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02006210 if (static_cpu_has(X86_FEATURE_FLUSH_L1D)) {
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006211 native_wrmsrl(MSR_IA32_FLUSH_CMD, L1D_FLUSH);
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02006212 return;
6213 }
6214
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006215 asm volatile(
6216 /* First ensure the pages are in the TLB */
6217 "xorl %%eax, %%eax\n"
6218 ".Lpopulate_tlb:\n\t"
Nicolai Stange288d1522018-07-18 19:07:38 +02006219 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006220 "addl $4096, %%eax\n\t"
6221 "cmpl %%eax, %[size]\n\t"
6222 "jne .Lpopulate_tlb\n\t"
6223 "xorl %%eax, %%eax\n\t"
6224 "cpuid\n\t"
6225 /* Now fill the cache */
6226 "xorl %%eax, %%eax\n"
6227 ".Lfill_cache:\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02006228 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006229 "addl $64, %%eax\n\t"
6230 "cmpl %%eax, %[size]\n\t"
6231 "jne .Lfill_cache\n\t"
6232 "lfence\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02006233 :: [flush_pages] "r" (vmx_l1d_flush_pages),
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006234 [size] "r" (size)
6235 : "eax", "ebx", "ecx", "edx");
6236}
6237
Jason Baronb6a7cc32021-01-14 22:27:54 -05006238static void vmx_update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006239{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006240 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Liran Alon132f4f72019-11-11 14:30:54 +02006241 int tpr_threshold;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006242
6243 if (is_guest_mode(vcpu) &&
6244 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
6245 return;
6246
Liran Alon132f4f72019-11-11 14:30:54 +02006247 tpr_threshold = (irr == -1 || tpr < irr) ? 0 : irr;
Liran Alon02d496cf2019-11-11 14:30:55 +02006248 if (is_guest_mode(vcpu))
6249 to_vmx(vcpu)->nested.l1_tpr_threshold = tpr_threshold;
6250 else
6251 vmcs_write32(TPR_THRESHOLD, tpr_threshold);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006252}
6253
Sean Christopherson97b7ead2018-12-03 13:53:16 -08006254void vmx_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08006255{
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006256 struct vcpu_vmx *vmx = to_vmx(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08006257 u32 sec_exec_control;
6258
Jim Mattson8d860bb2018-05-09 16:56:05 -04006259 if (!lapic_in_kernel(vcpu))
6260 return;
6261
Sean Christophersonfd6b6d92018-10-01 14:25:34 -07006262 if (!flexpriority_enabled &&
6263 !cpu_has_vmx_virtualize_x2apic_mode())
6264 return;
6265
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02006266 /* Postpone execution until vmcs01 is the current VMCS. */
6267 if (is_guest_mode(vcpu)) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006268 vmx->nested.change_vmcs01_virtual_apic_mode = true;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02006269 return;
6270 }
6271
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006272 sec_exec_control = secondary_exec_controls_get(vmx);
Jim Mattson8d860bb2018-05-09 16:56:05 -04006273 sec_exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
6274 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
Yang Zhang8d146952013-01-25 10:18:50 +08006275
Jim Mattson8d860bb2018-05-09 16:56:05 -04006276 switch (kvm_get_apic_mode(vcpu)) {
6277 case LAPIC_MODE_INVALID:
6278 WARN_ONCE(true, "Invalid local APIC state");
Gustavo A. R. Silva551912d2021-05-28 15:07:56 -05006279 break;
Jim Mattson8d860bb2018-05-09 16:56:05 -04006280 case LAPIC_MODE_DISABLED:
6281 break;
6282 case LAPIC_MODE_XAPIC:
6283 if (flexpriority_enabled) {
6284 sec_exec_control |=
6285 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sean Christopherson4de1f9d2020-03-20 14:28:25 -07006286 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
6287
6288 /*
6289 * Flush the TLB, reloading the APIC access page will
6290 * only do so if its physical address has changed, but
6291 * the guest may have inserted a non-APIC mapping into
6292 * the TLB while the APIC access page was disabled.
6293 */
6294 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
Jim Mattson8d860bb2018-05-09 16:56:05 -04006295 }
6296 break;
6297 case LAPIC_MODE_X2APIC:
6298 if (cpu_has_vmx_virtualize_x2apic_mode())
6299 sec_exec_control |=
6300 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
6301 break;
Yang Zhang8d146952013-01-25 10:18:50 +08006302 }
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006303 secondary_exec_controls_set(vmx, sec_exec_control);
Yang Zhang8d146952013-01-25 10:18:50 +08006304
Sean Christopherson84ec8d22021-07-13 09:33:19 -07006305 vmx_update_msr_bitmap_x2apic(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08006306}
6307
Sean Christophersona4148b72020-03-20 14:28:24 -07006308static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu)
Tang Chen38b99172014-09-24 15:57:54 +08006309{
Sean Christophersona4148b72020-03-20 14:28:24 -07006310 struct page *page;
6311
Sean Christopherson1196cb92020-03-20 14:28:23 -07006312 /* Defer reload until vmcs01 is the current VMCS. */
6313 if (is_guest_mode(vcpu)) {
6314 to_vmx(vcpu)->nested.reload_vmcs01_apic_access_page = true;
6315 return;
Jim Mattsonfb6c8192017-03-16 13:53:59 -07006316 }
Sean Christopherson1196cb92020-03-20 14:28:23 -07006317
Sean Christopherson4de1f9d2020-03-20 14:28:25 -07006318 if (!(secondary_exec_controls_get(to_vmx(vcpu)) &
6319 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
6320 return;
6321
Sean Christophersona4148b72020-03-20 14:28:24 -07006322 page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
6323 if (is_error_page(page))
6324 return;
6325
6326 vmcs_write64(APIC_ACCESS_ADDR, page_to_phys(page));
Sean Christopherson1196cb92020-03-20 14:28:23 -07006327 vmx_flush_tlb_current(vcpu);
Sean Christophersona4148b72020-03-20 14:28:24 -07006328
6329 /*
6330 * Do not pin apic access page in memory, the MMU notifier
6331 * will call us again if it is migrated or swapped out.
6332 */
6333 put_page(page);
Tang Chen38b99172014-09-24 15:57:54 +08006334}
6335
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006336static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006337{
6338 u16 status;
6339 u8 old;
6340
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006341 if (max_isr == -1)
6342 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006343
6344 status = vmcs_read16(GUEST_INTR_STATUS);
6345 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006346 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08006347 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006348 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006349 vmcs_write16(GUEST_INTR_STATUS, status);
6350 }
6351}
6352
6353static void vmx_set_rvi(int vector)
6354{
6355 u16 status;
6356 u8 old;
6357
Wei Wang4114c272014-11-05 10:53:43 +08006358 if (vector == -1)
6359 vector = 0;
6360
Yang Zhangc7c9c562013-01-25 10:18:51 +08006361 status = vmcs_read16(GUEST_INTR_STATUS);
6362 old = (u8)status & 0xff;
6363 if ((u8)vector != old) {
6364 status &= ~0xff;
6365 status |= (u8)vector;
6366 vmcs_write16(GUEST_INTR_STATUS, status);
6367 }
6368}
6369
6370static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
6371{
Liran Alon851c1a182017-12-24 18:12:56 +02006372 /*
6373 * When running L2, updating RVI is only relevant when
6374 * vmcs12 virtual-interrupt-delivery enabled.
6375 * However, it can be enabled only when L1 also
6376 * intercepts external-interrupts and in that case
6377 * we should not update vmcs02 RVI but instead intercept
6378 * interrupt. Therefore, do nothing when running L2.
6379 */
6380 if (!is_guest_mode(vcpu))
Wanpeng Li963fee12014-07-17 19:03:00 +08006381 vmx_set_rvi(max_irr);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006382}
6383
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006384static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006385{
6386 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006387 int max_irr;
Paolo Bonzini7e1901f2021-11-22 19:43:09 -05006388 bool got_posted_interrupt;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006389
Paolo Bonzini7e1901f2021-11-22 19:43:09 -05006390 if (KVM_BUG_ON(!enable_apicv, vcpu->kvm))
Sean Christopherson67369272021-07-02 15:04:25 -07006391 return -EIO;
6392
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006393 if (pi_test_on(&vmx->pi_desc)) {
6394 pi_clear_on(&vmx->pi_desc);
6395 /*
Liran Alond9ff2742019-11-11 14:25:25 +02006396 * IOMMU can write to PID.ON, so the barrier matters even on UP.
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006397 * But on x86 this is just a compiler barrier anyway.
6398 */
6399 smp_mb__after_atomic();
Paolo Bonzini7e1901f2021-11-22 19:43:09 -05006400 got_posted_interrupt =
Liran Alonf27a85c2017-12-24 18:12:55 +02006401 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir, &max_irr);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006402 } else {
6403 max_irr = kvm_lapic_find_highest_irr(vcpu);
Paolo Bonzini7e1901f2021-11-22 19:43:09 -05006404 got_posted_interrupt = false;
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006405 }
Paolo Bonzini7e1901f2021-11-22 19:43:09 -05006406
6407 /*
6408 * Newly recognized interrupts are injected via either virtual interrupt
6409 * delivery (RVI) or KVM_REQ_EVENT. Virtual interrupt delivery is
6410 * disabled in two cases:
6411 *
6412 * 1) If L2 is running and the vCPU has a new pending interrupt. If L1
6413 * wants to exit on interrupts, KVM_REQ_EVENT is needed to synthesize a
6414 * VM-Exit to L1. If L1 doesn't want to exit, the interrupt is injected
6415 * into L2, but KVM doesn't use virtual interrupt delivery to inject
6416 * interrupts into L2, and so KVM_REQ_EVENT is again needed.
6417 *
6418 * 2) If APICv is disabled for this vCPU, assigned devices may still
6419 * attempt to post interrupts. The posted interrupt vector will cause
6420 * a VM-Exit and the subsequent entry will call sync_pir_to_irr.
6421 */
6422 if (!is_guest_mode(vcpu) && kvm_vcpu_apicv_active(vcpu))
6423 vmx_set_rvi(max_irr);
6424 else if (got_posted_interrupt)
6425 kvm_make_request(KVM_REQ_EVENT, vcpu);
6426
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006427 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006428}
6429
Andrey Smetanin63086302015-11-10 15:36:32 +03006430static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006431{
Andrey Smetanind62caab2015-11-10 15:36:33 +03006432 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08006433 return;
6434
Yang Zhangc7c9c562013-01-25 10:18:51 +08006435 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
6436 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
6437 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
6438 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
6439}
6440
Paolo Bonzini967235d2016-12-19 14:03:45 +01006441static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
6442{
6443 struct vcpu_vmx *vmx = to_vmx(vcpu);
6444
6445 pi_clear_on(&vmx->pi_desc);
6446 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
6447}
6448
Sean Christopherson535f7ef2020-09-15 12:15:04 -07006449void vmx_do_interrupt_nmi_irqoff(unsigned long entry);
6450
Lai Jiangshana217a652021-05-04 21:50:14 +02006451static void handle_interrupt_nmi_irqoff(struct kvm_vcpu *vcpu,
6452 unsigned long entry)
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006453{
Sean Christophersondb215752021-11-11 02:07:32 +00006454 bool is_nmi = entry == (unsigned long)asm_exc_nmi_noist;
6455
6456 kvm_before_interrupt(vcpu, is_nmi ? KVM_HANDLING_NMI : KVM_HANDLING_IRQ);
Lai Jiangshana217a652021-05-04 21:50:14 +02006457 vmx_do_interrupt_nmi_irqoff(entry);
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006458 kvm_after_interrupt(vcpu);
6459}
6460
Jing Liuec5be882022-01-05 04:35:23 -08006461static void handle_nm_fault_irqoff(struct kvm_vcpu *vcpu)
6462{
6463 /*
6464 * Save xfd_err to guest_fpu before interrupt is enabled, so the
6465 * MSR value is not clobbered by the host activity before the guest
6466 * has chance to consume it.
6467 *
6468 * Do not blindly read xfd_err here, since this exception might
6469 * be caused by L1 interception on a platform which doesn't
6470 * support xfd at all.
6471 *
6472 * Do it conditionally upon guest_fpu::xfd. xfd_err matters
6473 * only when xfd contains a non-zero value.
6474 *
6475 * Queuing exception is done in vmx_handle_exit. See comment there.
6476 */
6477 if (vcpu->arch.guest_fpu.fpstate->xfd)
6478 rdmsrl(MSR_IA32_XFD_ERR, vcpu->arch.guest_fpu.xfd_err);
6479}
6480
Sean Christopherson95b5a482019-04-19 22:50:59 -07006481static void handle_exception_nmi_irqoff(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03006482{
Lai Jiangshana217a652021-05-04 21:50:14 +02006483 const unsigned long nmi_entry = (unsigned long)asm_exc_nmi_noist;
Sean Christopherson87915852020-04-15 13:34:54 -07006484 u32 intr_info = vmx_get_intr_info(&vmx->vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08006485
Wanpeng Li1261bfa2017-07-13 18:30:40 -07006486 /* if exit due to PF check for async PF */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006487 if (is_page_fault(intr_info))
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02006488 vmx->vcpu.arch.apf.host_apf_flags = kvm_read_and_reset_apf_flags();
Jing Liuec5be882022-01-05 04:35:23 -08006489 /* if exit due to NM, handle before interrupts are enabled */
6490 else if (is_nm_fault(intr_info))
6491 handle_nm_fault_irqoff(&vmx->vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08006492 /* Handle machine checks before interrupts are enabled */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006493 else if (is_machine_check(intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08006494 kvm_machine_check();
Gleb Natapov20f65982009-05-11 13:35:55 +03006495 /* We need to handle NMIs before interrupts are enabled */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006496 else if (is_nmi(intr_info))
Lai Jiangshana217a652021-05-04 21:50:14 +02006497 handle_interrupt_nmi_irqoff(&vmx->vcpu, nmi_entry);
Avi Kivity51aa01d2010-07-20 14:31:20 +03006498}
Gleb Natapov20f65982009-05-11 13:35:55 +03006499
Sean Christopherson95b5a482019-04-19 22:50:59 -07006500static void handle_external_interrupt_irqoff(struct kvm_vcpu *vcpu)
Yang Zhanga547c6d2013-04-11 19:25:10 +08006501{
Sean Christopherson87915852020-04-15 13:34:54 -07006502 u32 intr_info = vmx_get_intr_info(vcpu);
Lai Jiangshana217a652021-05-04 21:50:14 +02006503 unsigned int vector = intr_info & INTR_INFO_VECTOR_MASK;
6504 gate_desc *desc = (gate_desc *)host_idt_base + vector;
Yang Zhanga547c6d2013-04-11 19:25:10 +08006505
Sean Christopherson67369272021-07-02 15:04:25 -07006506 if (KVM_BUG(!is_external_intr(intr_info), vcpu->kvm,
Sean Christopherson49def502019-04-19 22:50:56 -07006507 "KVM: unexpected VM-Exit interrupt info: 0x%x", intr_info))
6508 return;
6509
Lai Jiangshana217a652021-05-04 21:50:14 +02006510 handle_interrupt_nmi_irqoff(vcpu, gate_offset(desc));
Yang Zhanga547c6d2013-04-11 19:25:10 +08006511}
Sean Christopherson95b5a482019-04-19 22:50:59 -07006512
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006513static void vmx_handle_exit_irqoff(struct kvm_vcpu *vcpu)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006514{
6515 struct vcpu_vmx *vmx = to_vmx(vcpu);
6516
Maxim Levitsky81b4b56d2021-08-26 12:57:49 +03006517 if (vmx->emulation_required)
6518 return;
6519
Sean Christopherson8e533242020-11-06 17:03:12 +08006520 if (vmx->exit_reason.basic == EXIT_REASON_EXTERNAL_INTERRUPT)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006521 handle_external_interrupt_irqoff(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006522 else if (vmx->exit_reason.basic == EXIT_REASON_EXCEPTION_NMI)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006523 handle_exception_nmi_irqoff(vmx);
6524}
Yang Zhanga547c6d2013-04-11 19:25:10 +08006525
Tom Lendacky57194552020-12-10 11:10:00 -06006526/*
6527 * The kvm parameter can be NULL (module initialization, or invocation before
6528 * VM creation). Be sure to check the kvm parameter before using it.
6529 */
6530static bool vmx_has_emulated_msr(struct kvm *kvm, u32 index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006531{
Tom Lendackybc226f02018-05-10 22:06:39 +02006532 switch (index) {
6533 case MSR_IA32_SMBASE:
6534 /*
6535 * We cannot do SMM unless we can run the guest in big
6536 * real mode.
6537 */
6538 return enable_unrestricted_guest || emulate_invalid_guest_state;
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02006539 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
6540 return nested;
Tom Lendackybc226f02018-05-10 22:06:39 +02006541 case MSR_AMD64_VIRT_SPEC_CTRL:
Maxim Levitsky5228eb92021-09-14 18:48:24 +03006542 case MSR_AMD64_TSC_RATIO:
Tom Lendackybc226f02018-05-10 22:06:39 +02006543 /* This is AMD only. */
6544 return false;
6545 default:
6546 return true;
6547 }
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006548}
6549
Avi Kivity51aa01d2010-07-20 14:31:20 +03006550static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
6551{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02006552 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03006553 bool unblock_nmi;
6554 u8 vector;
6555 bool idtv_info_valid;
6556
6557 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03006558
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006559 if (enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006560 if (vmx->loaded_vmcs->nmi_known_unmasked)
6561 return;
Sean Christopherson87915852020-04-15 13:34:54 -07006562
6563 exit_intr_info = vmx_get_intr_info(&vmx->vcpu);
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006564 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
6565 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
6566 /*
6567 * SDM 3: 27.7.1.2 (September 2008)
6568 * Re-set bit "block by NMI" before VM entry if vmexit caused by
6569 * a guest IRET fault.
6570 * SDM 3: 23.2.2 (September 2008)
6571 * Bit 12 is undefined in any of the following cases:
6572 * If the VM exit sets the valid bit in the IDT-vectoring
6573 * information field.
6574 * If the VM exit is due to a double fault.
6575 */
6576 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
6577 vector != DF_VECTOR && !idtv_info_valid)
6578 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
6579 GUEST_INTR_STATE_NMI);
6580 else
6581 vmx->loaded_vmcs->nmi_known_unmasked =
6582 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
6583 & GUEST_INTR_STATE_NMI);
6584 } else if (unlikely(vmx->loaded_vmcs->soft_vnmi_blocked))
6585 vmx->loaded_vmcs->vnmi_blocked_time +=
6586 ktime_to_ns(ktime_sub(ktime_get(),
6587 vmx->loaded_vmcs->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03006588}
6589
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006590static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03006591 u32 idt_vectoring_info,
6592 int instr_len_field,
6593 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03006594{
Avi Kivity51aa01d2010-07-20 14:31:20 +03006595 u8 vector;
6596 int type;
6597 bool idtv_info_valid;
6598
6599 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03006600
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006601 vcpu->arch.nmi_injected = false;
6602 kvm_clear_exception_queue(vcpu);
6603 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006604
6605 if (!idtv_info_valid)
6606 return;
6607
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006608 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03006609
Avi Kivity668f6122008-07-02 09:28:55 +03006610 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
6611 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006612
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006613 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03006614 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006615 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03006616 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03006617 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03006618 * Clear bit "block by NMI" before VM entry if a NMI
6619 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03006620 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006621 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006622 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006623 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006624 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05006625 fallthrough;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006626 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03006627 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03006628 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03006629 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03006630 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03006631 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006632 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006633 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006634 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05006635 fallthrough;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006636 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006637 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006638 break;
6639 default:
6640 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03006641 }
Avi Kivitycf393f72008-07-01 16:20:21 +03006642}
6643
Avi Kivity83422e12010-07-20 14:43:23 +03006644static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
6645{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006646 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03006647 VM_EXIT_INSTRUCTION_LEN,
6648 IDT_VECTORING_ERROR_CODE);
6649}
6650
Avi Kivityb463a6f2010-07-20 15:06:17 +03006651static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
6652{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006653 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03006654 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
6655 VM_ENTRY_INSTRUCTION_LEN,
6656 VM_ENTRY_EXCEPTION_ERROR_CODE);
6657
6658 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
6659}
6660
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006661static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
6662{
6663 int i, nr_msrs;
6664 struct perf_guest_switch_msr *msrs;
6665
Sean Christophersonc8e2fe12021-03-09 09:10:19 -08006666 /* Note, nr_msrs may be garbage if perf_guest_get_msrs() returns NULL. */
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006667 msrs = perf_guest_get_msrs(&nr_msrs);
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006668 if (!msrs)
6669 return;
6670
6671 for (i = 0; i < nr_msrs; i++)
6672 if (msrs[i].host == msrs[i].guest)
6673 clear_atomic_switch_msr(vmx, msrs[i].msr);
6674 else
6675 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04006676 msrs[i].host, false);
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006677}
6678
Sean Christophersonf459a702018-08-27 15:21:11 -07006679static void vmx_update_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07006680{
6681 struct vcpu_vmx *vmx = to_vmx(vcpu);
6682 u64 tscl;
6683 u32 delta_tsc;
6684
Sean Christophersond264ee02018-08-27 15:21:12 -07006685 if (vmx->req_immediate_exit) {
Sean Christopherson804939e2019-05-07 12:18:05 -07006686 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, 0);
6687 vmx->loaded_vmcs->hv_timer_soft_disabled = false;
6688 } else if (vmx->hv_deadline_tsc != -1) {
Sean Christophersonf459a702018-08-27 15:21:11 -07006689 tscl = rdtsc();
6690 if (vmx->hv_deadline_tsc > tscl)
6691 /* set_hv_timer ensures the delta fits in 32-bits */
6692 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
6693 cpu_preemption_timer_multi);
6694 else
6695 delta_tsc = 0;
6696
Sean Christopherson804939e2019-05-07 12:18:05 -07006697 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
6698 vmx->loaded_vmcs->hv_timer_soft_disabled = false;
6699 } else if (!vmx->loaded_vmcs->hv_timer_soft_disabled) {
6700 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, -1);
6701 vmx->loaded_vmcs->hv_timer_soft_disabled = true;
Sean Christophersonf459a702018-08-27 15:21:11 -07006702 }
Yunhong Jiang64672c92016-06-13 14:19:59 -07006703}
6704
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006705void noinstr vmx_update_host_rsp(struct vcpu_vmx *vmx, unsigned long host_rsp)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006706{
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006707 if (unlikely(host_rsp != vmx->loaded_vmcs->host_state.rsp)) {
6708 vmx->loaded_vmcs->host_state.rsp = host_rsp;
6709 vmcs_writel(HOST_RSP, host_rsp);
6710 }
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006711}
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006712
Wanpeng Li404d5d72020-04-28 14:23:25 +08006713static fastpath_t vmx_exit_handlers_fastpath(struct kvm_vcpu *vcpu)
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006714{
Sean Christopherson8e533242020-11-06 17:03:12 +08006715 switch (to_vmx(vcpu)->exit_reason.basic) {
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006716 case EXIT_REASON_MSR_WRITE:
6717 return handle_fastpath_set_msr_irqoff(vcpu);
Wanpeng Li26efe2f2020-05-06 11:44:01 -04006718 case EXIT_REASON_PREEMPTION_TIMER:
6719 return handle_fastpath_preemption_timer(vcpu);
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006720 default:
6721 return EXIT_FASTPATH_NONE;
6722 }
6723}
6724
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006725static noinstr void vmx_vcpu_enter_exit(struct kvm_vcpu *vcpu,
6726 struct vcpu_vmx *vmx)
6727{
Sean Christophersonbc908e02021-05-04 17:27:35 -07006728 kvm_guest_enter_irqoff();
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006729
6730 /* L1D Flush includes CPU buffer clear to mitigate MDS */
6731 if (static_branch_unlikely(&vmx_l1d_should_flush))
6732 vmx_l1d_flush(vcpu);
6733 else if (static_branch_unlikely(&mds_user_clear))
6734 mds_clear_cpu_buffers();
6735
Thomas Gleixner2245d392020-07-08 21:52:00 +02006736 if (vcpu->arch.cr2 != native_read_cr2())
6737 native_write_cr2(vcpu->arch.cr2);
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006738
6739 vmx->fail = __vmx_vcpu_run(vmx, (unsigned long *)&vcpu->arch.regs,
6740 vmx->loaded_vmcs->launched);
6741
Thomas Gleixner2245d392020-07-08 21:52:00 +02006742 vcpu->arch.cr2 = native_read_cr2();
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006743
Sean Christophersonbc908e02021-05-04 17:27:35 -07006744 kvm_guest_exit_irqoff();
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006745}
6746
Wanpeng Li404d5d72020-04-28 14:23:25 +08006747static fastpath_t vmx_vcpu_run(struct kvm_vcpu *vcpu)
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006748{
6749 struct vcpu_vmx *vmx = to_vmx(vcpu);
Lai Jiangshan15ad9762021-11-18 19:08:03 +08006750 unsigned long cr4;
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006751
6752 /* Record the guest's net vcpu time for enforced NMI injections. */
6753 if (unlikely(!enable_vnmi &&
6754 vmx->loaded_vmcs->soft_vnmi_blocked))
6755 vmx->loaded_vmcs->entry_time = ktime_get();
6756
Maxim Levitskyc42dec12021-09-13 17:09:52 +03006757 /*
6758 * Don't enter VMX if guest state is invalid, let the exit handler
6759 * start emulation until we arrive back to a valid state. Synthesize a
6760 * consistency check VM-Exit due to invalid guest state and bail.
6761 */
6762 if (unlikely(vmx->emulation_required)) {
Sean Christophersona80dfc02021-12-07 19:30:03 +00006763 vmx->fail = 0;
Maxim Levitskyc8607e42021-09-13 17:09:53 +03006764
Maxim Levitskyc42dec12021-09-13 17:09:52 +03006765 vmx->exit_reason.full = EXIT_REASON_INVALID_STATE;
6766 vmx->exit_reason.failed_vmentry = 1;
6767 kvm_register_mark_available(vcpu, VCPU_EXREG_EXIT_INFO_1);
6768 vmx->exit_qualification = ENTRY_FAIL_DEFAULT;
6769 kvm_register_mark_available(vcpu, VCPU_EXREG_EXIT_INFO_2);
6770 vmx->exit_intr_info = 0;
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006771 return EXIT_FASTPATH_NONE;
Maxim Levitskyc42dec12021-09-13 17:09:52 +03006772 }
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006773
Lorenzo Bresciad95df952020-12-23 14:45:07 +00006774 trace_kvm_entry(vcpu);
6775
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006776 if (vmx->ple_window_dirty) {
6777 vmx->ple_window_dirty = false;
6778 vmcs_write32(PLE_WINDOW, vmx->ple_window);
6779 }
6780
wanpeng lic9dfd3f2020-02-17 18:37:43 +08006781 /*
6782 * We did this in prepare_switch_to_guest, because it needs to
6783 * be within srcu_read_lock.
6784 */
6785 WARN_ON_ONCE(vmx->nested.need_vmcs12_to_shadow_sync);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006786
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07006787 if (kvm_register_is_dirty(vcpu, VCPU_REGS_RSP))
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006788 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07006789 if (kvm_register_is_dirty(vcpu, VCPU_REGS_RIP))
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006790 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
Paolo Bonzini41e68b62021-11-26 07:00:15 -05006791 vcpu->arch.regs_dirty = 0;
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006792
6793 cr4 = cr4_read_shadow();
6794 if (unlikely(cr4 != vmx->loaded_vmcs->host_state.cr4)) {
6795 vmcs_writel(HOST_CR4, cr4);
6796 vmx->loaded_vmcs->host_state.cr4 = cr4;
6797 }
6798
Paolo Bonzini375e28f2021-08-10 06:07:06 -04006799 /* When KVM_DEBUGREG_WONT_EXIT, dr6 is accessible in guest. */
6800 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT))
6801 set_debugreg(vcpu->arch.dr6, 6);
6802
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006803 /* When single-stepping over STI and MOV SS, we must clear the
6804 * corresponding interruptibility bits in the guest state. Otherwise
6805 * vmentry fails as it then expects bit 14 (BS) in pending debug
6806 * exceptions being set, but that's not correct for the guest debugging
6807 * case. */
6808 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
6809 vmx_set_interrupt_shadow(vcpu, 0);
6810
Aaron Lewis139a12c2019-10-21 16:30:25 -07006811 kvm_load_guest_xsave_state(vcpu);
WANG Chao1811d972019-04-12 15:55:39 +08006812
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006813 pt_guest_enter(vmx);
6814
Vitaly Kuznetsov49097762020-06-19 11:40:46 +02006815 atomic_switch_perf_msrs(vmx);
Like Xu1b5ac3222021-02-01 13:10:34 +08006816 if (intel_pmu_lbr_is_enabled(vcpu))
6817 vmx_passthrough_lbr_msrs(vcpu);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006818
Sean Christopherson804939e2019-05-07 12:18:05 -07006819 if (enable_preemption_timer)
6820 vmx_update_hv_timer(vcpu);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006821
Wanpeng Li010fd372020-09-10 17:50:41 +08006822 kvm_wait_lapic_expire(vcpu);
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08006823
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006824 /*
6825 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
6826 * it's non-zero. Since vmentry is serialising on affected CPUs, there
6827 * is no need to worry about the conditional branch over the wrmsr
6828 * being speculatively taken.
6829 */
6830 x86_spec_ctrl_set_guest(vmx->spec_ctrl, 0);
6831
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006832 /* The actual VMENTER/EXIT is in the .noinstr.text section. */
6833 vmx_vcpu_enter_exit(vcpu, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006834
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006835 /*
6836 * We do not use IBRS in the kernel. If this vCPU has used the
6837 * SPEC_CTRL MSR it may have left it on; save the value and
6838 * turn it off. This is much more efficient than blindly adding
6839 * it to the atomic save/restore list. Especially as the former
6840 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
6841 *
6842 * For non-nested case:
6843 * If the L01 MSR bitmap does not intercept the MSR, then we need to
6844 * save it.
6845 *
6846 * For nested case:
6847 * If the L02 MSR bitmap does not intercept the MSR, then we need to
6848 * save it.
6849 */
Sean Christopherson7dfbc622021-11-09 01:30:44 +00006850 if (unlikely(!msr_write_intercepted(vmx, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01006851 vmx->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006852
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02006853 x86_spec_ctrl_restore_host(vmx->spec_ctrl, 0);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006854
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01006855 /* All fields are clean at this point */
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01006856 if (static_branch_unlikely(&enable_evmcs)) {
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01006857 current_evmcs->hv_clean_fields |=
6858 HV_VMX_ENLIGHTENED_CLEAN_FIELD_ALL;
6859
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01006860 current_evmcs->hv_vp_id = kvm_hv_get_vpindex(vcpu);
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01006861 }
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08006862
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006863 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
Wanpeng Li74c55932017-11-29 01:31:20 -08006864 if (vmx->host_debugctlmsr)
6865 update_debugctlmsr(vmx->host_debugctlmsr);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006866
Avi Kivityaa67f602012-08-01 16:48:03 +03006867#ifndef CONFIG_X86_64
6868 /*
6869 * The sysexit path does not restore ds/es, so we must set them to
6870 * a reasonable value ourselves.
6871 *
Sean Christopherson6d6095b2018-07-23 12:32:44 -07006872 * We can't defer this to vmx_prepare_switch_to_host() since that
6873 * function may be executed in interrupt context, which saves and
6874 * restore segments around it, nullifying its effect.
Avi Kivityaa67f602012-08-01 16:48:03 +03006875 */
6876 loadsegment(ds, __USER_DS);
6877 loadsegment(es, __USER_DS);
6878#endif
6879
Paolo Bonzini41e68b62021-11-26 07:00:15 -05006880 vcpu->arch.regs_avail &= ~VMX_REGS_LAZY_LOAD_SET;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006881
Chao Peng2ef444f2018-10-24 16:05:12 +08006882 pt_guest_exit(vmx);
6883
Aaron Lewis139a12c2019-10-21 16:30:25 -07006884 kvm_load_host_xsave_state(vcpu);
WANG Chao1811d972019-04-12 15:55:39 +08006885
Krish Sadhukhanb93af022021-06-09 14:03:38 -04006886 if (is_guest_mode(vcpu)) {
6887 /*
6888 * Track VMLAUNCH/VMRESUME that have made past guest state
6889 * checking.
6890 */
6891 if (vmx->nested.nested_run_pending &&
6892 !vmx->exit_reason.failed_vmentry)
6893 ++vcpu->stat.nested_run;
6894
6895 vmx->nested.nested_run_pending = 0;
6896 }
6897
Jim Mattsonb060ca32017-09-14 16:31:42 -07006898 vmx->idt_vectoring_info = 0;
6899
Sean Christopherson873e1da2020-04-10 10:47:02 -07006900 if (unlikely(vmx->fail)) {
Sean Christopherson8e533242020-11-06 17:03:12 +08006901 vmx->exit_reason.full = 0xdead;
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006902 return EXIT_FASTPATH_NONE;
Sean Christopherson873e1da2020-04-10 10:47:02 -07006903 }
6904
Sean Christopherson8e533242020-11-06 17:03:12 +08006905 vmx->exit_reason.full = vmcs_read32(VM_EXIT_REASON);
6906 if (unlikely((u16)vmx->exit_reason.basic == EXIT_REASON_MCE_DURING_VMENTRY))
Sean Christophersonbeb8d932019-04-19 22:50:55 -07006907 kvm_machine_check();
6908
Maxim Levitskyf5c59b52021-02-17 16:57:12 +02006909 if (likely(!vmx->exit_reason.failed_vmentry))
6910 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
6911
David Edmondson0a62a032021-09-20 11:37:35 +01006912 trace_kvm_exit(vcpu, KVM_ISA_VMX);
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006913
Sean Christopherson8e533242020-11-06 17:03:12 +08006914 if (unlikely(vmx->exit_reason.failed_vmentry))
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006915 return EXIT_FASTPATH_NONE;
6916
Jim Mattsonb060ca32017-09-14 16:31:42 -07006917 vmx->loaded_vmcs->launched = 1;
Gleb Natapove0b890d2013-09-25 12:51:33 +03006918
Avi Kivity51aa01d2010-07-20 14:31:20 +03006919 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03006920 vmx_complete_interrupts(vmx);
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006921
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006922 if (is_guest_mode(vcpu))
6923 return EXIT_FASTPATH_NONE;
6924
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05006925 return vmx_exit_handlers_fastpath(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006926}
6927
Avi Kivity6aa8b732006-12-10 02:21:36 -08006928static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
6929{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006930 struct vcpu_vmx *vmx = to_vmx(vcpu);
6931
Kai Huang843e4332015-01-28 10:54:28 +08006932 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08006933 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08006934 free_vpid(vmx->vpid);
Sean Christopherson55d23752018-12-03 13:53:18 -08006935 nested_vmx_free_vcpu(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006936 free_loaded_vmcs(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006937}
6938
Sean Christopherson987b2592019-12-18 13:54:55 -08006939static int vmx_create_vcpu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006940{
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006941 struct vmx_uret_msr *tsx_ctrl;
Ben Gardon41836832019-02-11 11:02:52 -08006942 struct vcpu_vmx *vmx;
Sean Christopherson06692e42021-09-20 17:03:01 -07006943 int i, err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006944
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006945 BUILD_BUG_ON(offsetof(struct vcpu_vmx, vcpu) != 0);
6946 vmx = to_vmx(vcpu);
Ingo Molnar965b58a2007-01-05 16:36:23 -08006947
Sean Christopherson12a8eee2021-12-08 01:52:16 +00006948 INIT_LIST_HEAD(&vmx->pi_wakeup_list);
6949
Peter Feiner4e595162016-07-07 14:49:58 -07006950 err = -ENOMEM;
6951
Sean Christopherson034d8e22019-12-18 13:54:49 -08006952 vmx->vpid = allocate_vpid();
6953
Peter Feiner4e595162016-07-07 14:49:58 -07006954 /*
6955 * If PML is turned on, failure on enabling PML just results in failure
6956 * of creating the vcpu, therefore we can simplify PML logic (by
6957 * avoiding dealing with cases, such as enabling PML partially on vcpus
Miaohe Lin67b0ae42019-12-11 14:26:22 +08006958 * for the guest), etc.
Peter Feiner4e595162016-07-07 14:49:58 -07006959 */
6960 if (enable_pml) {
Ben Gardon41836832019-02-11 11:02:52 -08006961 vmx->pml_pg = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Peter Feiner4e595162016-07-07 14:49:58 -07006962 if (!vmx->pml_pg)
Sean Christopherson987b2592019-12-18 13:54:55 -08006963 goto free_vpid;
Peter Feiner4e595162016-07-07 14:49:58 -07006964 }
6965
Sean Christophersond0656732021-09-20 17:03:00 -07006966 for (i = 0; i < kvm_nr_uret_msrs; ++i)
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006967 vmx->guest_uret_msrs[i].mask = -1ull;
Sean Christopherson5e17c622021-05-04 10:17:30 -07006968 if (boot_cpu_has(X86_FEATURE_RTM)) {
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006969 /*
6970 * TSX_CTRL_CPUID_CLEAR is handled in the CPUID interception.
6971 * Keep the host value unchanged to avoid changing CPUID bits
6972 * under the host kernel's feet.
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006973 */
Sean Christopherson5e17c622021-05-04 10:17:30 -07006974 tsx_ctrl = vmx_find_uret_msr(vmx, MSR_IA32_TSX_CTRL);
6975 if (tsx_ctrl)
Zhenzhong Duan5c49d182021-09-26 09:55:45 +08006976 tsx_ctrl->mask = ~(u64)TSX_CTRL_CPUID_CLEAR;
Xiaoyao Li4be53412019-10-20 17:11:00 +08006977 }
6978
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006979 err = alloc_loaded_vmcs(&vmx->vmcs01);
6980 if (err < 0)
Jim Mattson7d737102019-12-03 16:24:42 -08006981 goto free_pml;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006982
Vitaly Kuznetsov250552b2021-11-29 10:47:01 +01006983 /*
6984 * Use Hyper-V 'Enlightened MSR Bitmap' feature when KVM runs as a
6985 * nested (L1) hypervisor and Hyper-V in L0 supports it. Enable the
6986 * feature only for vmcs01, KVM currently isn't equipped to realize any
6987 * performance benefits from enabling it for vmcs02.
6988 */
6989 if (IS_ENABLED(CONFIG_HYPERV) && static_branch_unlikely(&enable_evmcs) &&
6990 (ms_hyperv.nested_features & HV_X64_NESTED_MSR_BITMAP)) {
6991 struct hv_enlightened_vmcs *evmcs = (void *)vmx->vmcs01.vmcs;
6992
6993 evmcs->hv_enlightenments_control.msr_bitmap = 1;
6994 }
6995
Alexander Graf3eb90012020-09-25 16:34:20 +02006996 /* The MSR bitmap starts with all ones */
6997 bitmap_fill(vmx->shadow_msr_intercept.read, MAX_POSSIBLE_PASSTHROUGH_MSRS);
6998 bitmap_fill(vmx->shadow_msr_intercept.write, MAX_POSSIBLE_PASSTHROUGH_MSRS);
6999
Aaron Lewis476c9bd2020-09-25 16:34:18 +02007000 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_TSC, MSR_TYPE_R);
Sean Christophersondbdd0962021-04-21 19:38:31 -07007001#ifdef CONFIG_X86_64
Aaron Lewis476c9bd2020-09-25 16:34:18 +02007002 vmx_disable_intercept_for_msr(vcpu, MSR_FS_BASE, MSR_TYPE_RW);
7003 vmx_disable_intercept_for_msr(vcpu, MSR_GS_BASE, MSR_TYPE_RW);
7004 vmx_disable_intercept_for_msr(vcpu, MSR_KERNEL_GS_BASE, MSR_TYPE_RW);
Sean Christophersondbdd0962021-04-21 19:38:31 -07007005#endif
Aaron Lewis476c9bd2020-09-25 16:34:18 +02007006 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_CS, MSR_TYPE_RW);
7007 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_ESP, MSR_TYPE_RW);
7008 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_EIP, MSR_TYPE_RW);
Sean Christopherson987b2592019-12-18 13:54:55 -08007009 if (kvm_cstate_in_guest(vcpu->kvm)) {
Aaron Lewis476c9bd2020-09-25 16:34:18 +02007010 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C1_RES, MSR_TYPE_R);
7011 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C3_RESIDENCY, MSR_TYPE_R);
7012 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C6_RESIDENCY, MSR_TYPE_R);
7013 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C7_RESIDENCY, MSR_TYPE_R);
Wanpeng Lib5170062019-05-21 14:06:53 +08007014 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01007015
Paolo Bonzinif21f1652018-01-11 12:16:15 +01007016 vmx->loaded_vmcs = &vmx->vmcs01;
Sean Christopherson06692e42021-09-20 17:03:01 -07007017
Sean Christopherson34109c02019-12-18 13:54:50 -08007018 if (cpu_need_virtualize_apic_accesses(vcpu)) {
Sean Christopherson987b2592019-12-18 13:54:55 -08007019 err = alloc_apic_access_page(vcpu->kvm);
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02007020 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02007021 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02007022 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08007023
Sean Christophersone90008d2018-03-05 12:04:37 -08007024 if (enable_ept && !enable_unrestricted_guest) {
Sean Christopherson987b2592019-12-18 13:54:55 -08007025 err = init_rmode_identity_map(vcpu->kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08007026 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02007027 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08007028 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08007029
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{
7046 if (!ple_gap)
7047 kvm->arch.pause_in_guest = true;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04007048
Jiri Kosinad90a7a02018-07-13 16:23:25 +02007049 if (boot_cpu_has(X86_BUG_L1TF) && enable_ept) {
7050 switch (l1tf_mitigation) {
7051 case L1TF_MITIGATION_OFF:
7052 case L1TF_MITIGATION_FLUSH_NOWARN:
7053 /* 'I explicitly don't care' is set */
7054 break;
7055 case L1TF_MITIGATION_FLUSH:
7056 case L1TF_MITIGATION_FLUSH_NOSMT:
7057 case L1TF_MITIGATION_FULL:
7058 /*
7059 * Warn upon starting the first VM in a potentially
7060 * insecure environment.
7061 */
Josh Poimboeufb2849092019-01-30 07:13:58 -06007062 if (sched_smt_active())
Jiri Kosinad90a7a02018-07-13 16:23:25 +02007063 pr_warn_once(L1TF_MSG_SMT);
7064 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_NEVER)
7065 pr_warn_once(L1TF_MSG_L1D);
7066 break;
7067 case L1TF_MITIGATION_FULL_FORCE:
7068 /* Flush is enforced */
7069 break;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04007070 }
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04007071 }
Wanpeng Lib31c1142018-03-12 04:53:04 -07007072 return 0;
7073}
7074
Sean Christophersonf257d6d2019-04-19 22:18:17 -07007075static int __init vmx_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03007076{
7077 struct vmcs_config vmcs_conf;
Sean Christopherson7caaa712018-12-03 13:53:01 -08007078 struct vmx_capability vmx_cap;
Yang, Sheng002c7f72007-07-31 14:23:01 +03007079
Sean Christophersonff10e222019-12-20 20:45:10 -08007080 if (!this_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
7081 !this_cpu_has(X86_FEATURE_VMX)) {
7082 pr_err("kvm: VMX is disabled on CPU %d\n", smp_processor_id());
7083 return -EIO;
7084 }
7085
Sean Christopherson7caaa712018-12-03 13:53:01 -08007086 if (setup_vmcs_config(&vmcs_conf, &vmx_cap) < 0)
Sean Christophersonf257d6d2019-04-19 22:18:17 -07007087 return -EIO;
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08007088 if (nested)
Vitaly Kuznetsova4443262020-02-20 18:22:04 +01007089 nested_vmx_setup_ctls_msrs(&vmcs_conf.nested, vmx_cap.ept);
Yang, Sheng002c7f72007-07-31 14:23:01 +03007090 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
7091 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
7092 smp_processor_id());
Sean Christophersonf257d6d2019-04-19 22:18:17 -07007093 return -EIO;
Yang, Sheng002c7f72007-07-31 14:23:01 +03007094 }
Sean Christophersonf257d6d2019-04-19 22:18:17 -07007095 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03007096}
7097
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007098static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08007099{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007100 u8 cache;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007101
Chia-I Wu222f06e2020-02-13 13:30:34 -08007102 /* We wanted to honor guest CD/MTRR/PAT, but doing so could result in
7103 * memory aliases with conflicting memory types and sometimes MCEs.
7104 * We have to be careful as to what are honored and when.
7105 *
7106 * For MMIO, guest CD/MTRR are ignored. The EPT memory type is set to
7107 * UC. The effective memory type is UC or WC depending on guest PAT.
7108 * This was historically the source of MCEs and we want to be
7109 * conservative.
7110 *
7111 * When there is no need to deal with noncoherent DMA (e.g., no VT-d
7112 * or VT-d has snoop control), guest CD/MTRR/PAT are all ignored. The
7113 * EPT memory type is set to WB. The effective memory type is forced
7114 * WB.
7115 *
7116 * Otherwise, we trust guest. Guest CD/MTRR/PAT are all honored. The
7117 * EPT memory type is used to emulate guest CD/MTRR.
Sheng Yang522c68c2009-04-27 20:35:43 +08007118 */
Chia-I Wu222f06e2020-02-13 13:30:34 -08007119
Ben Gardonfb434962021-11-15 15:45:59 -08007120 if (is_mmio)
7121 return MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Paolo Bonzini606decd2015-10-01 13:12:47 +02007122
Ben Gardonfb434962021-11-15 15:45:59 -08007123 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm))
7124 return (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT) | VMX_EPT_IPAT_BIT;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007125
7126 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
Paolo Bonzini0da029e2015-07-23 08:24:42 +02007127 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08007128 cache = MTRR_TYPE_WRBACK;
7129 else
7130 cache = MTRR_TYPE_UNCACHABLE;
Ben Gardonfb434962021-11-15 15:45:59 -08007131
7132 return (cache << VMX_EPT_MT_EPTE_SHIFT) | VMX_EPT_IPAT_BIT;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007133 }
7134
Ben Gardonfb434962021-11-15 15:45:59 -08007135 return kvm_mtrr_get_guest_memory_type(vcpu, gfn) << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang64d4d522008-10-09 16:01:57 +08007136}
7137
Sean Christophersonb6247682021-08-10 10:19:51 -07007138static void vmcs_set_secondary_exec_control(struct vcpu_vmx *vmx, u32 new_ctl)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007139{
7140 /*
7141 * These bits in the secondary execution controls field
7142 * are dynamic, the others are mostly based on the hypervisor
7143 * architecture and the guest's CPUID. Do not touch the
7144 * dynamic bits.
7145 */
7146 u32 mask =
7147 SECONDARY_EXEC_SHADOW_VMCS |
7148 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Paolo Bonzini0367f202016-07-12 10:44:55 +02007149 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
7150 SECONDARY_EXEC_DESC;
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007151
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007152 u32 cur_ctl = secondary_exec_controls_get(vmx);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007153
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007154 secondary_exec_controls_set(vmx, (new_ctl & ~mask) | (cur_ctl & mask));
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007155}
7156
David Matlack8322ebb2016-11-29 18:14:09 -08007157/*
7158 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
7159 * (indicating "allowed-1") if they are supported in the guest's CPUID.
7160 */
7161static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
7162{
7163 struct vcpu_vmx *vmx = to_vmx(vcpu);
7164 struct kvm_cpuid_entry2 *entry;
7165
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01007166 vmx->nested.msrs.cr0_fixed1 = 0xffffffff;
7167 vmx->nested.msrs.cr4_fixed1 = X86_CR4_PCE;
David Matlack8322ebb2016-11-29 18:14:09 -08007168
7169#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
7170 if (entry && (entry->_reg & (_cpuid_mask))) \
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01007171 vmx->nested.msrs.cr4_fixed1 |= (_cr4_mask); \
David Matlack8322ebb2016-11-29 18:14:09 -08007172} while (0)
7173
7174 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
Sean Christopherson87382002019-12-17 13:32:42 -08007175 cr4_fixed1_update(X86_CR4_VME, edx, feature_bit(VME));
7176 cr4_fixed1_update(X86_CR4_PVI, edx, feature_bit(VME));
7177 cr4_fixed1_update(X86_CR4_TSD, edx, feature_bit(TSC));
7178 cr4_fixed1_update(X86_CR4_DE, edx, feature_bit(DE));
7179 cr4_fixed1_update(X86_CR4_PSE, edx, feature_bit(PSE));
7180 cr4_fixed1_update(X86_CR4_PAE, edx, feature_bit(PAE));
7181 cr4_fixed1_update(X86_CR4_MCE, edx, feature_bit(MCE));
7182 cr4_fixed1_update(X86_CR4_PGE, edx, feature_bit(PGE));
7183 cr4_fixed1_update(X86_CR4_OSFXSR, edx, feature_bit(FXSR));
7184 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, feature_bit(XMM));
7185 cr4_fixed1_update(X86_CR4_VMXE, ecx, feature_bit(VMX));
7186 cr4_fixed1_update(X86_CR4_SMXE, ecx, feature_bit(SMX));
7187 cr4_fixed1_update(X86_CR4_PCIDE, ecx, feature_bit(PCID));
7188 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, feature_bit(XSAVE));
David Matlack8322ebb2016-11-29 18:14:09 -08007189
7190 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
Sean Christopherson87382002019-12-17 13:32:42 -08007191 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, feature_bit(FSGSBASE));
7192 cr4_fixed1_update(X86_CR4_SMEP, ebx, feature_bit(SMEP));
7193 cr4_fixed1_update(X86_CR4_SMAP, ebx, feature_bit(SMAP));
7194 cr4_fixed1_update(X86_CR4_PKE, ecx, feature_bit(PKU));
7195 cr4_fixed1_update(X86_CR4_UMIP, ecx, feature_bit(UMIP));
7196 cr4_fixed1_update(X86_CR4_LA57, ecx, feature_bit(LA57));
David Matlack8322ebb2016-11-29 18:14:09 -08007197
7198#undef cr4_fixed1_update
7199}
7200
Liran Alon5f76f6f2018-09-14 03:25:52 +03007201static void nested_vmx_entry_exit_ctls_update(struct kvm_vcpu *vcpu)
7202{
7203 struct vcpu_vmx *vmx = to_vmx(vcpu);
7204
7205 if (kvm_mpx_supported()) {
7206 bool mpx_enabled = guest_cpuid_has(vcpu, X86_FEATURE_MPX);
7207
7208 if (mpx_enabled) {
7209 vmx->nested.msrs.entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
7210 vmx->nested.msrs.exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
7211 } else {
7212 vmx->nested.msrs.entry_ctls_high &= ~VM_ENTRY_LOAD_BNDCFGS;
7213 vmx->nested.msrs.exit_ctls_high &= ~VM_EXIT_CLEAR_BNDCFGS;
7214 }
7215 }
7216}
7217
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007218static void update_intel_pt_cfg(struct kvm_vcpu *vcpu)
7219{
7220 struct vcpu_vmx *vmx = to_vmx(vcpu);
7221 struct kvm_cpuid_entry2 *best = NULL;
7222 int i;
7223
7224 for (i = 0; i < PT_CPUID_LEAVES; i++) {
7225 best = kvm_find_cpuid_entry(vcpu, 0x14, i);
7226 if (!best)
7227 return;
7228 vmx->pt_desc.caps[CPUID_EAX + i*PT_CPUID_REGS_NUM] = best->eax;
7229 vmx->pt_desc.caps[CPUID_EBX + i*PT_CPUID_REGS_NUM] = best->ebx;
7230 vmx->pt_desc.caps[CPUID_ECX + i*PT_CPUID_REGS_NUM] = best->ecx;
7231 vmx->pt_desc.caps[CPUID_EDX + i*PT_CPUID_REGS_NUM] = best->edx;
7232 }
7233
7234 /* Get the number of configurable Address Ranges for filtering */
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08007235 vmx->pt_desc.num_address_ranges = intel_pt_validate_cap(vmx->pt_desc.caps,
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007236 PT_CAP_num_address_ranges);
7237
7238 /* Initialize and clear the no dependency bits */
7239 vmx->pt_desc.ctl_bitmask = ~(RTIT_CTL_TRACEEN | RTIT_CTL_OS |
Xiaoyao Lie099f3eb2021-08-27 15:02:46 +08007240 RTIT_CTL_USR | RTIT_CTL_TSC_EN | RTIT_CTL_DISRETC |
7241 RTIT_CTL_BRANCH_EN);
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007242
7243 /*
7244 * If CPUID.(EAX=14H,ECX=0):EBX[0]=1 CR3Filter can be set otherwise
7245 * will inject an #GP
7246 */
7247 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_cr3_filtering))
7248 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_CR3EN;
7249
7250 /*
7251 * If CPUID.(EAX=14H,ECX=0):EBX[1]=1 CYCEn, CycThresh and
7252 * PSBFreq can be set
7253 */
7254 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc))
7255 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_CYCLEACC |
7256 RTIT_CTL_CYC_THRESH | RTIT_CTL_PSB_FREQ);
7257
7258 /*
Xiaoyao Lie099f3eb2021-08-27 15:02:46 +08007259 * If CPUID.(EAX=14H,ECX=0):EBX[3]=1 MTCEn and MTCFreq can be set
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007260 */
7261 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc))
7262 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_MTC_EN |
Xiaoyao Lie099f3eb2021-08-27 15:02:46 +08007263 RTIT_CTL_MTC_RANGE);
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007264
7265 /* If CPUID.(EAX=14H,ECX=0):EBX[4]=1 FUPonPTW and PTWEn can be set */
7266 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_ptwrite))
7267 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_FUP_ON_PTW |
7268 RTIT_CTL_PTW_EN);
7269
7270 /* If CPUID.(EAX=14H,ECX=0):EBX[5]=1 PwrEvEn can be set */
7271 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_power_event_trace))
7272 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_PWR_EVT_EN;
7273
7274 /* If CPUID.(EAX=14H,ECX=0):ECX[0]=1 ToPA can be set */
7275 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_topa_output))
7276 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_TOPA;
7277
Ingo Molnard9f6e122021-03-18 15:28:01 +01007278 /* If CPUID.(EAX=14H,ECX=0):ECX[3]=1 FabricEn can be set */
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007279 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_output_subsys))
7280 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_FABRIC_EN;
7281
7282 /* unmask address range configure area */
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08007283 for (i = 0; i < vmx->pt_desc.num_address_ranges; i++)
Gustavo A. R. Silvad14eff12018-12-26 14:40:59 -06007284 vmx->pt_desc.ctl_bitmask &= ~(0xfULL << (32 + i * 4));
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007285}
7286
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08007287static void vmx_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
Sheng Yang0e851882009-12-18 16:48:46 +08007288{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007289 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007290
Aaron Lewis72041602019-10-21 16:30:20 -07007291 /* xsaves_enabled is recomputed in vmx_compute_secondary_exec_control(). */
7292 vcpu->arch.xsaves_enabled = false;
7293
Sean Christopherson432979b2021-07-13 09:33:12 -07007294 vmx_setup_uret_msrs(vmx);
7295
Sean Christophersonb6247682021-08-10 10:19:51 -07007296 if (cpu_has_secondary_exec_ctrls())
7297 vmcs_set_secondary_exec_control(vmx,
7298 vmx_secondary_exec_control(vmx));
Mao, Junjiead756a12012-07-02 01:18:48 +00007299
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007300 if (nested_vmx_allowed(vcpu))
7301 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007302 FEAT_CTL_VMX_ENABLED_INSIDE_SMX |
7303 FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX;
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007304 else
7305 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007306 ~(FEAT_CTL_VMX_ENABLED_INSIDE_SMX |
7307 FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX);
David Matlack8322ebb2016-11-29 18:14:09 -08007308
Liran Alon5f76f6f2018-09-14 03:25:52 +03007309 if (nested_vmx_allowed(vcpu)) {
David Matlack8322ebb2016-11-29 18:14:09 -08007310 nested_vmx_cr_fixed1_bits_update(vcpu);
Liran Alon5f76f6f2018-09-14 03:25:52 +03007311 nested_vmx_entry_exit_ctls_update(vcpu);
7312 }
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007313
7314 if (boot_cpu_has(X86_FEATURE_INTEL_PT) &&
7315 guest_cpuid_has(vcpu, X86_FEATURE_INTEL_PT))
7316 update_intel_pt_cfg(vcpu);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007317
7318 if (boot_cpu_has(X86_FEATURE_RTM)) {
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07007319 struct vmx_uret_msr *msr;
Sean Christophersond85a8032020-09-23 11:04:06 -07007320 msr = vmx_find_uret_msr(vmx, MSR_IA32_TSX_CTRL);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007321 if (msr) {
7322 bool enabled = guest_cpuid_has(vcpu, X86_FEATURE_RTM);
Sean Christopherson7bf662b2020-09-23 11:04:07 -07007323 vmx_set_guest_uret_msr(vmx, msr, enabled ? 0 : TSX_CTRL_RTM_DISABLE);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007324 }
7325 }
Sean Christophersona6337a32020-09-29 21:16:57 -07007326
Jing Liu61f20812022-01-05 04:35:25 -08007327 if (kvm_cpu_cap_has(X86_FEATURE_XFD))
7328 vmx_set_intercept_for_msr(vcpu, MSR_IA32_XFD_ERR, MSR_TYPE_R,
7329 !guest_cpuid_has(vcpu, X86_FEATURE_XFD));
7330
7331
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07007332 set_cr4_guest_host_mask(vmx);
7333
Sean Christopherson72add912021-04-12 16:21:42 +12007334 vmx_write_encls_bitmap(vcpu, NULL);
7335 if (guest_cpuid_has(vcpu, X86_FEATURE_SGX))
7336 vmx->msr_ia32_feature_control_valid_bits |= FEAT_CTL_SGX_ENABLED;
7337 else
7338 vmx->msr_ia32_feature_control_valid_bits &= ~FEAT_CTL_SGX_ENABLED;
7339
7340 if (guest_cpuid_has(vcpu, X86_FEATURE_SGX_LC))
7341 vmx->msr_ia32_feature_control_valid_bits |=
7342 FEAT_CTL_SGX_LC_ENABLED;
7343 else
7344 vmx->msr_ia32_feature_control_valid_bits &=
7345 ~FEAT_CTL_SGX_LC_ENABLED;
7346
Sean Christophersona6337a32020-09-29 21:16:57 -07007347 /* Refresh #PF interception to account for MAXPHYADDR changes. */
Jason Baronb6a7cc32021-01-14 22:27:54 -05007348 vmx_update_exception_bitmap(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08007349}
7350
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007351static __init void vmx_set_cpu_caps(void)
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007352{
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007353 kvm_set_cpu_caps();
7354
7355 /* CPUID 0x1 */
7356 if (nested)
7357 kvm_cpu_cap_set(X86_FEATURE_VMX);
7358
7359 /* CPUID 0x7 */
Sean Christopherson8721f5b2020-03-02 15:56:45 -08007360 if (kvm_mpx_supported())
7361 kvm_cpu_cap_check_and_set(X86_FEATURE_MPX);
Sean Christophersone4203332021-02-11 16:34:10 -08007362 if (!cpu_has_vmx_invpcid())
7363 kvm_cpu_cap_clear(X86_FEATURE_INVPCID);
Sean Christopherson8721f5b2020-03-02 15:56:45 -08007364 if (vmx_pt_mode_is_host_guest())
7365 kvm_cpu_cap_check_and_set(X86_FEATURE_INTEL_PT);
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007366
Sean Christopherson72add912021-04-12 16:21:42 +12007367 if (!enable_sgx) {
7368 kvm_cpu_cap_clear(X86_FEATURE_SGX);
7369 kvm_cpu_cap_clear(X86_FEATURE_SGX_LC);
7370 kvm_cpu_cap_clear(X86_FEATURE_SGX1);
7371 kvm_cpu_cap_clear(X86_FEATURE_SGX2);
7372 }
7373
Sean Christopherson90d2f602020-03-02 15:56:47 -08007374 if (vmx_umip_emulated())
7375 kvm_cpu_cap_set(X86_FEATURE_UMIP);
7376
Sean Christophersonb3d895d52020-03-02 15:56:44 -08007377 /* CPUID 0xD.1 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01007378 supported_xss = 0;
Sean Christophersonbecdad82020-09-23 09:50:45 -07007379 if (!cpu_has_vmx_xsaves())
Sean Christophersonb3d895d52020-03-02 15:56:44 -08007380 kvm_cpu_cap_clear(X86_FEATURE_XSAVES);
7381
Sean Christopherson8aec21c2021-05-04 10:17:20 -07007382 /* CPUID 0x80000001 and 0x7 (RDPID) */
7383 if (!cpu_has_vmx_rdtscp()) {
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007384 kvm_cpu_cap_clear(X86_FEATURE_RDTSCP);
Sean Christopherson8aec21c2021-05-04 10:17:20 -07007385 kvm_cpu_cap_clear(X86_FEATURE_RDPID);
7386 }
Maxim Levitsky0abcc8f2020-05-23 19:14:54 +03007387
Sean Christophersonbecdad82020-09-23 09:50:45 -07007388 if (cpu_has_vmx_waitpkg())
Maxim Levitsky0abcc8f2020-05-23 19:14:54 +03007389 kvm_cpu_cap_check_and_set(X86_FEATURE_WAITPKG);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007390}
7391
Sean Christophersond264ee02018-08-27 15:21:12 -07007392static void vmx_request_immediate_exit(struct kvm_vcpu *vcpu)
7393{
7394 to_vmx(vcpu)->req_immediate_exit = true;
7395}
7396
Oliver Upton35a57132020-02-04 15:26:31 -08007397static int vmx_check_intercept_io(struct kvm_vcpu *vcpu,
7398 struct x86_instruction_info *info)
7399{
7400 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7401 unsigned short port;
7402 bool intercept;
7403 int size;
7404
7405 if (info->intercept == x86_intercept_in ||
7406 info->intercept == x86_intercept_ins) {
7407 port = info->src_val;
7408 size = info->dst_bytes;
7409 } else {
7410 port = info->dst_val;
7411 size = info->src_bytes;
7412 }
7413
7414 /*
7415 * If the 'use IO bitmaps' VM-execution control is 0, IO instruction
7416 * VM-exits depend on the 'unconditional IO exiting' VM-execution
7417 * control.
7418 *
7419 * Otherwise, IO instruction VM-exits are controlled by the IO bitmaps.
7420 */
7421 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
7422 intercept = nested_cpu_has(vmcs12,
7423 CPU_BASED_UNCOND_IO_EXITING);
7424 else
7425 intercept = nested_vmx_check_io_bitmaps(vcpu, port, size);
7426
Oliver Upton86f7e902020-02-29 11:30:14 -08007427 /* FIXME: produce nested vmexit and return X86EMUL_INTERCEPTED. */
Oliver Upton35a57132020-02-04 15:26:31 -08007428 return intercept ? X86EMUL_UNHANDLEABLE : X86EMUL_CONTINUE;
7429}
7430
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007431static int vmx_check_intercept(struct kvm_vcpu *vcpu,
7432 struct x86_instruction_info *info,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007433 enum x86_intercept_stage stage,
7434 struct x86_exception *exception)
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007435{
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007436 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007437
Oliver Upton35a57132020-02-04 15:26:31 -08007438 switch (info->intercept) {
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007439 /*
7440 * RDPID causes #UD if disabled through secondary execution controls.
7441 * Because it is marked as EmulateOnUD, we need to intercept it here.
Sean Christopherson2183de42021-05-04 10:17:23 -07007442 * Note, RDPID is hidden behind ENABLE_RDTSCP.
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007443 */
Sean Christopherson2183de42021-05-04 10:17:23 -07007444 case x86_intercept_rdpid:
Sean Christopherson7f3603b2020-09-23 09:50:47 -07007445 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_RDTSCP)) {
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007446 exception->vector = UD_VECTOR;
7447 exception->error_code_valid = false;
Oliver Upton35a57132020-02-04 15:26:31 -08007448 return X86EMUL_PROPAGATE_FAULT;
7449 }
7450 break;
7451
7452 case x86_intercept_in:
7453 case x86_intercept_ins:
7454 case x86_intercept_out:
7455 case x86_intercept_outs:
7456 return vmx_check_intercept_io(vcpu, info);
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007457
Oliver Upton86f7e902020-02-29 11:30:14 -08007458 case x86_intercept_lgdt:
7459 case x86_intercept_lidt:
7460 case x86_intercept_lldt:
7461 case x86_intercept_ltr:
7462 case x86_intercept_sgdt:
7463 case x86_intercept_sidt:
7464 case x86_intercept_sldt:
7465 case x86_intercept_str:
7466 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC))
7467 return X86EMUL_CONTINUE;
7468
7469 /* FIXME: produce nested vmexit and return X86EMUL_INTERCEPTED. */
7470 break;
7471
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007472 /* TODO: check more intercepts... */
Oliver Upton35a57132020-02-04 15:26:31 -08007473 default:
7474 break;
7475 }
7476
Paolo Bonzini07721fe2020-02-04 15:26:29 -08007477 return X86EMUL_UNHANDLEABLE;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007478}
7479
Yunhong Jiang64672c92016-06-13 14:19:59 -07007480#ifdef CONFIG_X86_64
7481/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
7482static inline int u64_shl_div_u64(u64 a, unsigned int shift,
7483 u64 divisor, u64 *result)
7484{
7485 u64 low = a << shift, high = a >> (64 - shift);
7486
7487 /* To avoid the overflow on divq */
7488 if (high >= divisor)
7489 return 1;
7490
7491 /* Low hold the result, high hold rem which is discarded */
7492 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
7493 "rm" (divisor), "0" (low), "1" (high));
7494 *result = low;
7495
7496 return 0;
7497}
7498
Sean Christophersonf9927982019-04-16 13:32:46 -07007499static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc,
7500 bool *expired)
Yunhong Jiang64672c92016-06-13 14:19:59 -07007501{
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007502 struct vcpu_vmx *vmx;
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007503 u64 tscl, guest_tscl, delta_tsc, lapic_timer_advance_cycles;
Sean Christopherson39497d72019-04-17 10:15:32 -07007504 struct kvm_timer *ktimer = &vcpu->arch.apic->lapic_timer;
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007505
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007506 vmx = to_vmx(vcpu);
7507 tscl = rdtsc();
7508 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
7509 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Sean Christopherson39497d72019-04-17 10:15:32 -07007510 lapic_timer_advance_cycles = nsec_to_cycles(vcpu,
7511 ktimer->timer_advance_ns);
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007512
7513 if (delta_tsc > lapic_timer_advance_cycles)
7514 delta_tsc -= lapic_timer_advance_cycles;
7515 else
7516 delta_tsc = 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007517
7518 /* Convert to host delta tsc if tsc scaling is enabled */
Ilias Stamatis805d7052021-05-26 19:44:09 +01007519 if (vcpu->arch.l1_tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
Sean Christopherson0967fa12019-04-16 13:32:48 -07007520 delta_tsc && u64_shl_div_u64(delta_tsc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007521 kvm_tsc_scaling_ratio_frac_bits,
Ilias Stamatis805d7052021-05-26 19:44:09 +01007522 vcpu->arch.l1_tsc_scaling_ratio, &delta_tsc))
Yunhong Jiang64672c92016-06-13 14:19:59 -07007523 return -ERANGE;
7524
7525 /*
7526 * If the delta tsc can't fit in the 32 bit after the multi shift,
7527 * we can't use the preemption timer.
7528 * It's possible that it fits on later vmentries, but checking
7529 * on every vmentry is costly so we just use an hrtimer.
7530 */
7531 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
7532 return -ERANGE;
7533
7534 vmx->hv_deadline_tsc = tscl + delta_tsc;
Sean Christophersonf9927982019-04-16 13:32:46 -07007535 *expired = !delta_tsc;
7536 return 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007537}
7538
7539static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
7540{
Sean Christophersonf459a702018-08-27 15:21:11 -07007541 to_vmx(vcpu)->hv_deadline_tsc = -1;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007542}
7543#endif
7544
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007545static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007546{
Wanpeng Lib31c1142018-03-12 04:53:04 -07007547 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007548 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007549}
7550
Makarand Sonarea85863c2021-02-12 16:50:12 -08007551void vmx_update_cpu_dirty_logging(struct kvm_vcpu *vcpu)
7552{
7553 struct vcpu_vmx *vmx = to_vmx(vcpu);
7554
7555 if (is_guest_mode(vcpu)) {
7556 vmx->nested.update_vmcs01_cpu_dirty_logging = true;
7557 return;
7558 }
7559
7560 /*
7561 * Note, cpu_dirty_logging_count can be changed concurrent with this
7562 * code, but in that case another update request will be made and so
7563 * the guest will never run with a stale PML value.
7564 */
7565 if (vcpu->kvm->arch.cpu_dirty_logging_count)
7566 secondary_exec_controls_setbit(vmx, SECONDARY_EXEC_ENABLE_PML);
7567 else
7568 secondary_exec_controls_clearbit(vmx, SECONDARY_EXEC_ENABLE_PML);
7569}
7570
Ashok Rajc45dcc72016-06-22 14:59:56 +08007571static void vmx_setup_mce(struct kvm_vcpu *vcpu)
7572{
7573 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
7574 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007575 FEAT_CTL_LMCE_ENABLED;
Ashok Rajc45dcc72016-06-22 14:59:56 +08007576 else
7577 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007578 ~FEAT_CTL_LMCE_ENABLED;
Ashok Rajc45dcc72016-06-22 14:59:56 +08007579}
7580
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007581static int vmx_smi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Ladi Prosek72d7b372017-10-11 16:54:41 +02007582{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007583 /* we need a nested vmexit to enter SMM, postpone if run is pending */
7584 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007585 return -EBUSY;
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -04007586 return !is_smm(vcpu);
Ladi Prosek72d7b372017-10-11 16:54:41 +02007587}
7588
Sean Christophersonecc513e2021-06-09 11:56:19 -07007589static int vmx_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007590{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007591 struct vcpu_vmx *vmx = to_vmx(vcpu);
7592
7593 vmx->nested.smm.guest_mode = is_guest_mode(vcpu);
7594 if (vmx->nested.smm.guest_mode)
7595 nested_vmx_vmexit(vcpu, -1, 0, 0);
7596
7597 vmx->nested.smm.vmxon = vmx->nested.vmxon;
7598 vmx->nested.vmxon = false;
Wanpeng Licaa057a2018-03-12 04:53:03 -07007599 vmx_clear_hlt(vcpu);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007600 return 0;
7601}
7602
Sean Christophersonecc513e2021-06-09 11:56:19 -07007603static int vmx_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007604{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007605 struct vcpu_vmx *vmx = to_vmx(vcpu);
7606 int ret;
7607
7608 if (vmx->nested.smm.vmxon) {
7609 vmx->nested.vmxon = true;
7610 vmx->nested.smm.vmxon = false;
7611 }
7612
7613 if (vmx->nested.smm.guest_mode) {
Sean Christophersona633e412018-09-26 09:23:47 -07007614 ret = nested_vmx_enter_non_root_mode(vcpu, false);
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007615 if (ret)
7616 return ret;
7617
7618 vmx->nested.smm.guest_mode = false;
7619 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02007620 return 0;
7621}
7622
Jason Baronb6a7cc32021-01-14 22:27:54 -05007623static void vmx_enable_smi_window(struct kvm_vcpu *vcpu)
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007624{
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007625 /* RSM will cause a vmexit anyway. */
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007626}
7627
Liran Alon4b9852f2019-08-26 13:24:49 +03007628static bool vmx_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
7629{
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05007630 return to_vmx(vcpu)->nested.vmxon && !is_guest_mode(vcpu);
Liran Alon4b9852f2019-08-26 13:24:49 +03007631}
7632
Jim Mattson93dff2f2020-05-08 13:36:43 -07007633static void vmx_migrate_timers(struct kvm_vcpu *vcpu)
7634{
7635 if (is_guest_mode(vcpu)) {
7636 struct hrtimer *timer = &to_vmx(vcpu)->nested.preemption_timer;
7637
7638 if (hrtimer_try_to_cancel(timer) == 1)
7639 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
7640 }
7641}
7642
Sean Christopherson6e4fd062020-03-21 13:26:01 -07007643static void hardware_unsetup(void)
Sean Christophersona3203382018-12-03 13:53:11 -08007644{
Sean Christophersonec5a4912021-10-08 17:11:05 -07007645 kvm_set_posted_intr_wakeup_handler(NULL);
7646
Sean Christophersona3203382018-12-03 13:53:11 -08007647 if (nested)
7648 nested_vmx_hardware_unsetup();
7649
7650 free_kvm_area();
7651}
7652
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007653static bool vmx_check_apicv_inhibit_reasons(ulong bit)
7654{
Suravee Suthikulpanitf4fdc0a2019-11-14 14:15:13 -06007655 ulong supported = BIT(APICV_INHIBIT_REASON_DISABLE) |
Paolo Bonzinief8b4b72021-11-30 07:37:45 -05007656 BIT(APICV_INHIBIT_REASON_ABSENT) |
Maxim Levitskycae72dc2021-11-08 11:02:45 +02007657 BIT(APICV_INHIBIT_REASON_HYPERV) |
7658 BIT(APICV_INHIBIT_REASON_BLOCKIRQ);
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007659
7660 return supported & BIT(bit);
7661}
7662
Sean Christophersone286ac02020-03-21 13:26:02 -07007663static struct kvm_x86_ops vmx_x86_ops __initdata = {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07007664 .name = "kvm_intel",
7665
Avi Kivity6aa8b732006-12-10 02:21:36 -08007666 .hardware_unsetup = hardware_unsetup,
Sean Christopherson484014f2020-03-21 13:25:57 -07007667
Avi Kivity6aa8b732006-12-10 02:21:36 -08007668 .hardware_enable = hardware_enable,
7669 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08007670 .cpu_has_accelerated_tpr = report_flexpriority,
Tom Lendackybc226f02018-05-10 22:06:39 +02007671 .has_emulated_msr = vmx_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007672
Sean Christopherson484014f2020-03-21 13:25:57 -07007673 .vm_size = sizeof(struct kvm_vmx),
Wanpeng Lib31c1142018-03-12 04:53:04 -07007674 .vm_init = vmx_vm_init,
7675
Avi Kivity6aa8b732006-12-10 02:21:36 -08007676 .vcpu_create = vmx_create_vcpu,
7677 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007678 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007679
Sean Christopherson6d6095b2018-07-23 12:32:44 -07007680 .prepare_guest_switch = vmx_prepare_switch_to_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007681 .vcpu_load = vmx_vcpu_load,
7682 .vcpu_put = vmx_vcpu_put,
7683
Jason Baronb6a7cc32021-01-14 22:27:54 -05007684 .update_exception_bitmap = vmx_update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -06007685 .get_msr_feature = vmx_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007686 .get_msr = vmx_get_msr,
7687 .set_msr = vmx_set_msr,
7688 .get_segment_base = vmx_get_segment_base,
7689 .get_segment = vmx_get_segment,
7690 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007691 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007692 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
7693 .set_cr0 = vmx_set_cr0,
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07007694 .is_valid_cr4 = vmx_is_valid_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007695 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007696 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007697 .get_idt = vmx_get_idt,
7698 .set_idt = vmx_set_idt,
7699 .get_gdt = vmx_get_gdt,
7700 .set_gdt = vmx_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03007701 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007702 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007703 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007704 .get_rflags = vmx_get_rflags,
7705 .set_rflags = vmx_set_rflags,
Marc Orrc5063552021-12-09 07:52:57 -08007706 .get_if_flag = vmx_get_if_flag,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007707
Sean Christopherson77809382020-03-20 14:28:18 -07007708 .tlb_flush_all = vmx_flush_tlb_all,
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07007709 .tlb_flush_current = vmx_flush_tlb_current,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007710 .tlb_flush_gva = vmx_flush_tlb_gva,
Sean Christophersone64419d2020-03-20 14:28:10 -07007711 .tlb_flush_guest = vmx_flush_tlb_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007712
Sean Christophersonfc4fad72021-12-28 23:24:36 +00007713 .vcpu_pre_run = vmx_vcpu_pre_run,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007714 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02007715 .handle_exit = vmx_handle_exit,
Oliver Upton5ef8acb2020-02-07 02:36:07 -08007716 .skip_emulated_instruction = vmx_skip_emulated_instruction,
7717 .update_emulated_instruction = vmx_update_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007718 .set_interrupt_shadow = vmx_set_interrupt_shadow,
7719 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007720 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007721 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007722 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007723 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007724 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007725 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007726 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007727 .get_nmi_mask = vmx_get_nmi_mask,
7728 .set_nmi_mask = vmx_set_nmi_mask,
Jason Baronb6a7cc32021-01-14 22:27:54 -05007729 .enable_nmi_window = vmx_enable_nmi_window,
7730 .enable_irq_window = vmx_enable_irq_window,
7731 .update_cr8_intercept = vmx_update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007732 .set_virtual_apic_mode = vmx_set_virtual_apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +08007733 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007734 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007735 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +01007736 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007737 .check_apicv_inhibit_reasons = vmx_check_apicv_inhibit_reasons,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007738 .hwapic_irr_update = vmx_hwapic_irr_update,
7739 .hwapic_isr_update = vmx_hwapic_isr_update,
Liran Alone6c67d82018-09-04 10:56:52 +03007740 .guest_apic_has_interrupt = vmx_guest_apic_has_interrupt,
Yang Zhanga20ed542013-04-11 19:25:15 +08007741 .sync_pir_to_irr = vmx_sync_pir_to_irr,
7742 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007743 .dy_apicv_has_pending_interrupt = pi_has_pending_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007744
Izik Eiduscbc94022007-10-25 00:29:55 +02007745 .set_tss_addr = vmx_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007746 .set_identity_map_addr = vmx_set_identity_map_addr,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007747 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007748
Avi Kivity586f9602010-11-18 13:09:54 +02007749 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007750
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08007751 .vcpu_after_set_cpuid = vmx_vcpu_after_set_cpuid,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007752
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007753 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007754
Ilias Stamatis307a94c2021-05-26 19:44:13 +01007755 .get_l2_tsc_offset = vmx_get_l2_tsc_offset,
7756 .get_l2_tsc_multiplier = vmx_get_l2_tsc_multiplier,
Ilias Stamatisedcfe542021-05-26 19:44:15 +01007757 .write_tsc_offset = vmx_write_tsc_offset,
Ilias Stamatis1ab92872021-06-07 11:54:38 +01007758 .write_tsc_multiplier = vmx_write_tsc_multiplier,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007759
Sean Christopherson484014f2020-03-21 13:25:57 -07007760 .load_mmu_pgd = vmx_load_mmu_pgd,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007761
7762 .check_intercept = vmx_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07007763 .handle_exit_irqoff = vmx_handle_exit_irqoff,
Jan Kiszkab6b8a142014-03-07 20:03:12 +01007764
Sean Christophersond264ee02018-08-27 15:21:12 -07007765 .request_immediate_exit = vmx_request_immediate_exit,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007766
7767 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +08007768
Sean Christopherson6dd03802021-02-12 16:50:09 -08007769 .cpu_dirty_log_size = PML_ENTITY_NUM,
Makarand Sonarea85863c2021-02-12 16:50:12 -08007770 .update_cpu_dirty_logging = vmx_update_cpu_dirty_logging,
Wei Huang25462f72015-06-19 15:45:05 +02007771
7772 .pmu_ops = &intel_pmu_ops,
Paolo Bonzini33b22172020-04-17 10:24:18 -04007773 .nested_ops = &vmx_nested_ops,
Feng Wuefc64402015-09-18 22:29:51 +08007774
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007775 .update_pi_irte = pi_update_irte,
Marcelo Tosattia2486022021-05-26 14:20:14 -03007776 .start_assignment = vmx_pi_start_assignment,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007777
7778#ifdef CONFIG_X86_64
7779 .set_hv_timer = vmx_set_hv_timer,
7780 .cancel_hv_timer = vmx_cancel_hv_timer,
7781#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +08007782
7783 .setup_mce = vmx_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007784
Ladi Prosek72d7b372017-10-11 16:54:41 +02007785 .smi_allowed = vmx_smi_allowed,
Sean Christophersonecc513e2021-06-09 11:56:19 -07007786 .enter_smm = vmx_enter_smm,
7787 .leave_smm = vmx_leave_smm,
Jason Baronb6a7cc32021-01-14 22:27:54 -05007788 .enable_smi_window = vmx_enable_smi_window,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007789
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007790 .can_emulate_instruction = vmx_can_emulate_instruction,
Liran Alon4b9852f2019-08-26 13:24:49 +03007791 .apic_init_signal_blocked = vmx_apic_init_signal_blocked,
Jim Mattson93dff2f2020-05-08 13:36:43 -07007792 .migrate_timers = vmx_migrate_timers,
Alexander Graf3eb90012020-09-25 16:34:20 +02007793
7794 .msr_filter_changed = vmx_msr_filter_changed,
Paolo Bonzinif9a4d622020-12-14 10:26:51 -05007795 .complete_emulated_msr = kvm_complete_insn_gp,
Tom Lendacky647daca2021-01-04 14:20:01 -06007796
7797 .vcpu_deliver_sipi_vector = kvm_vcpu_deliver_sipi_vector,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007798};
7799
Sean Christopherson33271a92021-11-11 02:07:34 +00007800static unsigned int vmx_handle_intel_pt_intr(void)
7801{
7802 struct kvm_vcpu *vcpu = kvm_get_running_vcpu();
7803
7804 /* '0' on failure so that the !PT case can use a RET0 static call. */
7805 if (!kvm_arch_pmi_in_guest(vcpu))
7806 return 0;
7807
7808 kvm_make_request(KVM_REQ_PMI, vcpu);
7809 __set_bit(MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI_BIT,
7810 (unsigned long *)&vcpu->arch.pmu.global_status);
7811 return 1;
7812}
7813
Sean Christophersonb6194b92021-05-04 10:17:27 -07007814static __init void vmx_setup_user_return_msrs(void)
7815{
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07007816
7817 /*
7818 * Though SYSCALL is only supported in 64-bit mode on Intel CPUs, kvm
7819 * will emulate SYSCALL in legacy mode if the vendor string in guest
7820 * CPUID.0:{EBX,ECX,EDX} is "AuthenticAMD" or "AMDisbetter!" To
7821 * support this emulation, MSR_STAR is included in the list for i386,
7822 * but is never loaded into hardware. MSR_CSTAR is also never loaded
7823 * into hardware and is here purely for emulation purposes.
7824 */
7825 const u32 vmx_uret_msrs_list[] = {
7826 #ifdef CONFIG_X86_64
7827 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
7828 #endif
7829 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
7830 MSR_IA32_TSX_CTRL,
7831 };
Sean Christophersonb6194b92021-05-04 10:17:27 -07007832 int i;
7833
7834 BUILD_BUG_ON(ARRAY_SIZE(vmx_uret_msrs_list) != MAX_NR_USER_RETURN_MSRS);
7835
Sean Christophersone5fda4b2021-05-04 10:17:32 -07007836 for (i = 0; i < ARRAY_SIZE(vmx_uret_msrs_list); ++i)
7837 kvm_add_user_return_msr(vmx_uret_msrs_list[i]);
Sean Christophersonb6194b92021-05-04 10:17:27 -07007838}
7839
Sean Christopherson33271a92021-11-11 02:07:34 +00007840static struct kvm_x86_init_ops vmx_init_ops __initdata;
7841
Avi Kivity6aa8b732006-12-10 02:21:36 -08007842static __init int hardware_setup(void)
7843{
7844 unsigned long host_bndcfgs;
7845 struct desc_ptr dt;
Lai Jiangshanf8cd4572021-11-24 20:20:50 +08007846 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007847
Avi Kivity6aa8b732006-12-10 02:21:36 -08007848 store_idt(&dt);
7849 host_idt_base = dt.address;
7850
Sean Christophersonb6194b92021-05-04 10:17:27 -07007851 vmx_setup_user_return_msrs();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007852
7853 if (setup_vmcs_config(&vmcs_config, &vmx_capability) < 0)
7854 return -EIO;
7855
7856 if (boot_cpu_has(X86_FEATURE_NX))
7857 kvm_enable_efer_bits(EFER_NX);
7858
7859 if (boot_cpu_has(X86_FEATURE_MPX)) {
7860 rdmsrl(MSR_IA32_BNDCFGS, host_bndcfgs);
7861 WARN_ONCE(host_bndcfgs, "KVM: BNDCFGS in host will be lost");
7862 }
7863
Sean Christopherson7f5581f2020-03-02 15:56:24 -08007864 if (!cpu_has_vmx_mpx())
Sean Christophersoncfc48182020-03-02 15:56:23 -08007865 supported_xcr0 &= ~(XFEATURE_MASK_BNDREGS |
7866 XFEATURE_MASK_BNDCSR);
7867
Avi Kivity6aa8b732006-12-10 02:21:36 -08007868 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
7869 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
7870 enable_vpid = 0;
7871
7872 if (!cpu_has_vmx_ept() ||
7873 !cpu_has_vmx_ept_4levels() ||
7874 !cpu_has_vmx_ept_mt_wb() ||
7875 !cpu_has_vmx_invept_global())
7876 enable_ept = 0;
7877
Sean Christopherson23f079c2021-06-15 09:45:32 -07007878 /* NX support is required for shadow paging. */
7879 if (!enable_ept && !boot_cpu_has(X86_FEATURE_NX)) {
7880 pr_err_ratelimited("kvm: NX (Execute Disable) not supported\n");
7881 return -EOPNOTSUPP;
7882 }
7883
Avi Kivity6aa8b732006-12-10 02:21:36 -08007884 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
7885 enable_ept_ad_bits = 0;
7886
7887 if (!cpu_has_vmx_unrestricted_guest() || !enable_ept)
7888 enable_unrestricted_guest = 0;
7889
7890 if (!cpu_has_vmx_flexpriority())
7891 flexpriority_enabled = 0;
7892
7893 if (!cpu_has_virtual_nmis())
7894 enable_vnmi = 0;
7895
7896 /*
7897 * set_apic_access_page_addr() is used to reload apic access
Avi Kivity873a7c42006-12-13 00:34:14 -08007898 * page upon invalidation. No need to do anything if not
Avi Kivity6aa8b732006-12-10 02:21:36 -08007899 * using the APIC_ACCESS_ADDR VMCS field.
7900 */
7901 if (!flexpriority_enabled)
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007902 vmx_x86_ops.set_apic_access_page_addr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007903
7904 if (!cpu_has_vmx_tpr_shadow())
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007905 vmx_x86_ops.update_cr8_intercept = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007906
Avi Kivity6aa8b732006-12-10 02:21:36 -08007907#if IS_ENABLED(CONFIG_HYPERV)
7908 if (ms_hyperv.nested_features & HV_X64_NESTED_GUEST_MAPPING_FLUSH
7909 && enable_ept) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007910 vmx_x86_ops.tlb_remote_flush = hv_remote_flush_tlb;
7911 vmx_x86_ops.tlb_remote_flush_with_range =
Avi Kivity6aa8b732006-12-10 02:21:36 -08007912 hv_remote_flush_tlb_with_range;
7913 }
7914#endif
7915
7916 if (!cpu_has_vmx_ple()) {
7917 ple_gap = 0;
7918 ple_window = 0;
7919 ple_window_grow = 0;
7920 ple_window_max = 0;
7921 ple_window_shrink = 0;
7922 }
7923
Paolo Bonzinie90e51d2021-11-30 07:36:41 -05007924 if (!cpu_has_vmx_apicv())
Sheng Yang25c5f222008-03-28 13:18:56 +08007925 enable_apicv = 0;
Paolo Bonzinie90e51d2021-11-30 07:36:41 -05007926 if (!enable_apicv)
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007927 vmx_x86_ops.sync_pir_to_irr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007928
7929 if (cpu_has_vmx_tsc_scaling()) {
7930 kvm_has_tsc_control = true;
7931 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
7932 kvm_tsc_scaling_ratio_frac_bits = 48;
7933 }
7934
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08007935 kvm_has_bus_lock_exit = cpu_has_vmx_bus_lock_detection();
7936
Avi Kivity6aa8b732006-12-10 02:21:36 -08007937 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
7938
7939 if (enable_ept)
Sean Christophersone7b7bde2021-02-25 12:47:42 -08007940 kvm_mmu_set_ept_masks(enable_ept_ad_bits,
7941 cpu_has_vmx_ept_execute_only());
Sean Christopherson703c3352020-03-02 15:57:03 -08007942
Wei Huang746700d2021-08-18 11:55:47 -05007943 kvm_configure_mmu(enable_ept, 0, vmx_get_max_tdp_level(),
Lai Jiangshanf8cd4572021-11-24 20:20:50 +08007944 ept_caps_to_lpage_level(vmx_capability.ept));
Avi Kivity6aa8b732006-12-10 02:21:36 -08007945
7946 /*
7947 * Only enable PML when hardware supports PML feature, and both EPT
7948 * and EPT A/D bit features are enabled -- PML depends on them to work.
7949 */
7950 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
7951 enable_pml = 0;
7952
Sean Christophersona018eba2021-02-12 16:50:10 -08007953 if (!enable_pml)
Sean Christopherson6dd03802021-02-12 16:50:09 -08007954 vmx_x86_ops.cpu_dirty_log_size = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007955
7956 if (!cpu_has_vmx_preemption_timer())
7957 enable_preemption_timer = false;
7958
7959 if (enable_preemption_timer) {
7960 u64 use_timer_freq = 5000ULL * 1000 * 1000;
7961 u64 vmx_msr;
7962
7963 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
7964 cpu_preemption_timer_multi =
7965 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
7966
7967 if (tsc_khz)
7968 use_timer_freq = (u64)tsc_khz * 1000;
7969 use_timer_freq >>= cpu_preemption_timer_multi;
7970
7971 /*
7972 * KVM "disables" the preemption timer by setting it to its max
7973 * value. Don't use the timer if it might cause spurious exits
7974 * at a rate faster than 0.1 Hz (of uninterrupted guest time).
7975 */
7976 if (use_timer_freq > 0xffffffffu / 10)
7977 enable_preemption_timer = false;
7978 }
7979
7980 if (!enable_preemption_timer) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007981 vmx_x86_ops.set_hv_timer = NULL;
7982 vmx_x86_ops.cancel_hv_timer = NULL;
7983 vmx_x86_ops.request_immediate_exit = __kvm_request_immediate_exit;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007984 }
7985
Avi Kivity6aa8b732006-12-10 02:21:36 -08007986 kvm_mce_cap_supported |= MCG_LMCE_P;
7987
7988 if (pt_mode != PT_MODE_SYSTEM && pt_mode != PT_MODE_HOST_GUEST)
7989 return -EINVAL;
7990 if (!enable_ept || !cpu_has_vmx_intel_pt())
7991 pt_mode = PT_MODE_SYSTEM;
Sean Christopherson33271a92021-11-11 02:07:34 +00007992 if (pt_mode == PT_MODE_HOST_GUEST)
7993 vmx_init_ops.handle_intel_pt_intr = vmx_handle_intel_pt_intr;
7994 else
7995 vmx_init_ops.handle_intel_pt_intr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007996
Sean Christopherson8f102442021-04-12 16:21:40 +12007997 setup_default_sgx_lepubkeyhash();
7998
Avi Kivity6aa8b732006-12-10 02:21:36 -08007999 if (nested) {
8000 nested_vmx_setup_ctls_msrs(&vmcs_config.nested,
8001 vmx_capability.ept);
8002
Sean Christopherson6c1c6e52020-05-06 13:46:53 -07008003 r = nested_vmx_hardware_setup(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008004 if (r)
8005 return r;
8006 }
8007
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08008008 vmx_set_cpu_caps();
Sean Christopherson66a69502020-03-02 15:56:41 -08008009
Avi Kivity6aa8b732006-12-10 02:21:36 -08008010 r = alloc_kvm_area();
8011 if (r)
8012 nested_vmx_hardware_unsetup();
Sean Christophersonec5a4912021-10-08 17:11:05 -07008013
8014 kvm_set_posted_intr_wakeup_handler(pi_wakeup_handler);
8015
Avi Kivity6aa8b732006-12-10 02:21:36 -08008016 return r;
8017}
8018
Sean Christophersond008dfd2020-03-21 13:25:56 -07008019static struct kvm_x86_init_ops vmx_init_ops __initdata = {
8020 .cpu_has_kvm_support = cpu_has_kvm_support,
8021 .disabled_by_bios = vmx_disabled_by_bios,
8022 .check_processor_compatibility = vmx_check_processor_compat,
8023 .hardware_setup = hardware_setup,
Sean Christopherson33271a92021-11-11 02:07:34 +00008024 .handle_intel_pt_intr = NULL,
Sean Christophersond008dfd2020-03-21 13:25:56 -07008025
8026 .runtime_ops = &vmx_x86_ops,
8027};
8028
Avi Kivity6aa8b732006-12-10 02:21:36 -08008029static void vmx_cleanup_l1d_flush(void)
8030{
8031 if (vmx_l1d_flush_pages) {
8032 free_pages((unsigned long)vmx_l1d_flush_pages, L1D_CACHE_ORDER);
8033 vmx_l1d_flush_pages = NULL;
8034 }
8035 /* Restore state so sysfs ignores VMX */
8036 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO;
8037}
8038
8039static void vmx_exit(void)
8040{
8041#ifdef CONFIG_KEXEC_CORE
8042 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
8043 synchronize_rcu();
8044#endif
8045
8046 kvm_exit();
8047
8048#if IS_ENABLED(CONFIG_HYPERV)
8049 if (static_branch_unlikely(&enable_evmcs)) {
8050 int cpu;
8051 struct hv_vp_assist_page *vp_ap;
8052 /*
8053 * Reset everything to support using non-enlightened VMCS
8054 * access later (e.g. when we reload the module with
8055 * enlightened_vmcs=0)
8056 */
8057 for_each_online_cpu(cpu) {
8058 vp_ap = hv_get_vp_assist_page(cpu);
8059
8060 if (!vp_ap)
8061 continue;
8062
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08008063 vp_ap->nested_control.features.directhypercall = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008064 vp_ap->current_nested_vmcs = 0;
8065 vp_ap->enlighten_vmentry = 0;
8066 }
8067
8068 static_branch_disable(&enable_evmcs);
8069 }
8070#endif
8071 vmx_cleanup_l1d_flush();
Aaron Lewis88213da2021-06-23 20:34:27 +00008072
8073 allow_smaller_maxphyaddr = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008074}
8075module_exit(vmx_exit);
8076
8077static int __init vmx_init(void)
8078{
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02008079 int r, cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008080
8081#if IS_ENABLED(CONFIG_HYPERV)
8082 /*
8083 * Enlightened VMCS usage should be recommended and the host needs
8084 * to support eVMCS v1 or above. We can also disable eVMCS support
8085 * with module parameter.
8086 */
8087 if (enlightened_vmcs &&
8088 ms_hyperv.hints & HV_X64_ENLIGHTENED_VMCS_RECOMMENDED &&
8089 (ms_hyperv.nested_features & HV_X64_ENLIGHTENED_VMCS_VERSION) >=
8090 KVM_EVMCS_VERSION) {
8091 int cpu;
8092
8093 /* Check that we have assist pages on all online CPUs */
8094 for_each_online_cpu(cpu) {
8095 if (!hv_get_vp_assist_page(cpu)) {
8096 enlightened_vmcs = false;
8097 break;
8098 }
8099 }
8100
8101 if (enlightened_vmcs) {
8102 pr_info("KVM: vmx: using Hyper-V Enlightened VMCS\n");
8103 static_branch_enable(&enable_evmcs);
8104 }
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08008105
8106 if (ms_hyperv.nested_features & HV_X64_NESTED_DIRECT_FLUSH)
8107 vmx_x86_ops.enable_direct_tlbflush
8108 = hv_enable_direct_tlbflush;
8109
Avi Kivity6aa8b732006-12-10 02:21:36 -08008110 } else {
8111 enlightened_vmcs = false;
8112 }
8113#endif
8114
Sean Christophersond008dfd2020-03-21 13:25:56 -07008115 r = kvm_init(&vmx_init_ops, sizeof(struct vcpu_vmx),
Avi Kivity6aa8b732006-12-10 02:21:36 -08008116 __alignof__(struct vcpu_vmx), THIS_MODULE);
8117 if (r)
8118 return r;
8119
8120 /*
8121 * Must be called after kvm_init() so enable_ept is properly set
8122 * up. Hand the parameter mitigation value in which was stored in
8123 * the pre module init parser. If no parameter was given, it will
8124 * contain 'auto' which will be turned into the default 'cond'
8125 * mitigation mode.
8126 */
Waiman Long19a36d32019-08-26 15:30:23 -04008127 r = vmx_setup_l1d_flush(vmentry_l1d_flush_param);
8128 if (r) {
8129 vmx_exit();
8130 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008131 }
8132
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02008133 for_each_possible_cpu(cpu) {
8134 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07008135
Paolo Bonzinia3ff25f2020-10-24 04:08:37 -04008136 pi_init_cpu(cpu);
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02008137 }
8138
Avi Kivity6aa8b732006-12-10 02:21:36 -08008139#ifdef CONFIG_KEXEC_CORE
8140 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
8141 crash_vmclear_local_loaded_vmcss);
8142#endif
8143 vmx_check_vmcs12_offsets();
8144
Mohammed Gamal3edd6832020-07-10 17:48:11 +02008145 /*
Mohammed Gamalb96e6502020-09-03 16:11:22 +02008146 * Shadow paging doesn't have a (further) performance penalty
8147 * from GUEST_MAXPHYADDR < HOST_MAXPHYADDR so enable it
8148 * by default
Mohammed Gamal3edd6832020-07-10 17:48:11 +02008149 */
Mohammed Gamalb96e6502020-09-03 16:11:22 +02008150 if (!enable_ept)
8151 allow_smaller_maxphyaddr = true;
Mohammed Gamal3edd6832020-07-10 17:48:11 +02008152
Avi Kivity6aa8b732006-12-10 02:21:36 -08008153 return 0;
8154}
8155module_init(vmx_init);