blob: 5aa0e54c793b29c82bf2e76a651b77ac93273912 [file] [log] [blame]
Thomas Gleixner20c8ccb2019-06-04 10:11:32 +02001// SPDX-License-Identifier: GPL-2.0-only
Avi Kivity6aa8b732006-12-10 02:21:36 -08002/*
3 * Kernel-based Virtual Machine driver for Linux
4 *
5 * This module enables machines with Intel VT-x extensions to run virtual
6 * machines without emulation or binary translation.
7 *
8 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02009 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -080010 *
11 * Authors:
12 * Avi Kivity <avi@qumranet.com>
13 * Yaniv Kamay <yaniv@qumranet.com>
Avi Kivity6aa8b732006-12-10 02:21:36 -080014 */
15
Sean Christopherson199b1182018-12-03 13:52:53 -080016#include <linux/highmem.h>
17#include <linux/hrtimer.h>
18#include <linux/kernel.h>
Avi Kivityedf88412007-12-16 11:02:48 +020019#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080020#include <linux/module.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020021#include <linux/moduleparam.h>
Josh Triplette9bda3b2012-03-20 23:33:51 -070022#include <linux/mod_devicetable.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080023#include <linux/mm.h>
Julien Thierry00089c02020-09-04 16:30:25 +010024#include <linux/objtool.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080025#include <linux/sched.h>
Josh Poimboeufb2849092019-01-30 07:13:58 -060026#include <linux/sched/smt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040028#include <linux/tboot.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080029#include <linux/trace_events.h>
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +020030#include <linux/entry-kvm.h>
Avi Kivitye4956062007-06-28 14:15:57 -040031
Sean Christopherson199b1182018-12-03 13:52:53 -080032#include <asm/apic.h>
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +020033#include <asm/asm.h>
Feng Wu28b835d2015-09-18 22:29:54 +080034#include <asm/cpu.h>
Thomas Gleixnerba5bade2020-03-20 14:13:46 +010035#include <asm/cpu_device_id.h>
Paolo Bonzini81908bf2014-02-21 10:32:27 +010036#include <asm/debugreg.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080037#include <asm/desc.h>
38#include <asm/fpu/internal.h>
Lai Jiangshana217a652021-05-04 21:50:14 +020039#include <asm/idtentry.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080040#include <asm/io.h>
Feng Wuefc64402015-09-18 22:29:51 +080041#include <asm/irq_remapping.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080042#include <asm/kexec.h>
43#include <asm/perf_event.h>
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070044#include <asm/mmu_context.h>
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010045#include <asm/mshyperv.h>
Benjamin Thielb10c3072020-01-23 18:29:45 +010046#include <asm/mwait.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080047#include <asm/spec-ctrl.h>
48#include <asm/virtext.h>
49#include <asm/vmx.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080050
Sean Christopherson3077c192018-12-03 13:53:02 -080051#include "capabilities.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080052#include "cpuid.h"
Sean Christopherson4cebd742018-12-03 13:52:58 -080053#include "evmcs.h"
Vitaly Kuznetsov05f04ae2021-01-26 14:48:09 +010054#include "hyperv.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080055#include "irq.h"
56#include "kvm_cache_regs.h"
57#include "lapic.h"
58#include "mmu.h"
Sean Christopherson55d23752018-12-03 13:53:18 -080059#include "nested.h"
Wei Huang25462f72015-06-19 15:45:05 +020060#include "pmu.h"
Sean Christopherson9798adb2021-04-12 16:21:38 +120061#include "sgx.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080062#include "trace.h"
Sean Christophersoncb1d4742018-12-03 13:53:04 -080063#include "vmcs.h"
Sean Christopherson609363c2018-12-03 13:53:05 -080064#include "vmcs12.h"
Sean Christopherson89b0c9f2018-12-03 13:53:07 -080065#include "vmx.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080066#include "x86.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030067
Avi Kivity6aa8b732006-12-10 02:21:36 -080068MODULE_AUTHOR("Qumranet");
69MODULE_LICENSE("GPL");
70
Valdis Klētnieks575b2552020-02-27 21:49:52 -050071#ifdef MODULE
Josh Triplette9bda3b2012-03-20 23:33:51 -070072static const struct x86_cpu_id vmx_cpu_id[] = {
Thomas Gleixner320debe2020-03-20 14:13:50 +010073 X86_MATCH_FEATURE(X86_FEATURE_VMX, NULL),
Josh Triplette9bda3b2012-03-20 23:33:51 -070074 {}
75};
76MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
Valdis Klētnieks575b2552020-02-27 21:49:52 -050077#endif
Josh Triplette9bda3b2012-03-20 23:33:51 -070078
Sean Christopherson2c4fd912018-12-03 13:53:03 -080079bool __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020080module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080081
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010082static bool __read_mostly enable_vnmi = 1;
83module_param_named(vnmi, enable_vnmi, bool, S_IRUGO);
84
Sean Christopherson2c4fd912018-12-03 13:53:03 -080085bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020086module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020087
Sean Christopherson2c4fd912018-12-03 13:53:03 -080088bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020089module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080090
Sean Christopherson2c4fd912018-12-03 13:53:03 -080091bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070092module_param_named(unrestricted_guest,
93 enable_unrestricted_guest, bool, S_IRUGO);
94
Sean Christopherson2c4fd912018-12-03 13:53:03 -080095bool __read_mostly enable_ept_ad_bits = 1;
Xudong Hao83c3a332012-05-28 19:33:35 +080096module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
97
Avi Kivitya27685c2012-06-12 20:30:18 +030098static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020099module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300100
Rusty Russell476bc002012-01-13 09:32:18 +1030101static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +0300102module_param(fasteoi, bool, S_IRUGO);
103
Yang Zhang01e439b2013-04-11 19:25:12 +0800104module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +0800105
Nadav Har'El801d3422011-05-25 23:02:23 +0300106/*
107 * If nested=1, nested virtualization is supported, i.e., guests may use
108 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
109 * use VMX instructions.
110 */
Paolo Bonzini1e58e5e2018-10-17 00:55:22 +0200111static bool __read_mostly nested = 1;
Nadav Har'El801d3422011-05-25 23:02:23 +0300112module_param(nested, bool, S_IRUGO);
113
Sean Christopherson2c4fd912018-12-03 13:53:03 -0800114bool __read_mostly enable_pml = 1;
Kai Huang843e4332015-01-28 10:54:28 +0800115module_param_named(pml, enable_pml, bool, S_IRUGO);
116
Paolo Bonzini6f2f8452019-05-20 15:34:35 +0200117static bool __read_mostly dump_invalid_vmcs = 0;
118module_param(dump_invalid_vmcs, bool, 0644);
119
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100120#define MSR_BITMAP_MODE_X2APIC 1
121#define MSR_BITMAP_MODE_X2APIC_APICV 2
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100122
Haozhong Zhang64903d62015-10-20 15:39:09 +0800123#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
124
Yunhong Jiang64672c92016-06-13 14:19:59 -0700125/* Guest_tsc -> host_tsc conversion requires 64-bit division. */
126static int __read_mostly cpu_preemption_timer_multi;
127static bool __read_mostly enable_preemption_timer = 1;
128#ifdef CONFIG_X86_64
129module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
130#endif
131
Mohammed Gamalb96e6502020-09-03 16:11:22 +0200132extern bool __read_mostly allow_smaller_maxphyaddr;
133module_param(allow_smaller_maxphyaddr, bool, S_IRUGO);
134
Sean Christopherson3de63472018-07-13 08:42:30 -0700135#define KVM_VM_CR0_ALWAYS_OFF (X86_CR0_NW | X86_CR0_CD)
Sean Christopherson1706bd02018-03-05 12:04:38 -0800136#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR0_NE
137#define KVM_VM_CR0_ALWAYS_ON \
138 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | \
139 X86_CR0_WP | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200140
Sean Christopherson5dc1f042018-03-05 12:04:39 -0800141#define KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR4_VMXE
Avi Kivitycdc0e242009-12-06 17:21:14 +0200142#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
143#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
144
Avi Kivity78ac8b42010-04-08 18:19:35 +0300145#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
146
Chao Pengbf8c55d2018-10-24 16:05:14 +0800147#define MSR_IA32_RTIT_STATUS_MASK (~(RTIT_STATUS_FILTEREN | \
148 RTIT_STATUS_CONTEXTEN | RTIT_STATUS_TRIGGEREN | \
149 RTIT_STATUS_ERROR | RTIT_STATUS_STOPPED | \
150 RTIT_STATUS_BYTECNT))
151
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800152/*
Alexander Graf3eb90012020-09-25 16:34:20 +0200153 * List of MSRs that can be directly passed to the guest.
154 * In addition to these x2apic and PT MSRs are handled specially.
155 */
156static u32 vmx_possible_passthrough_msrs[MAX_POSSIBLE_PASSTHROUGH_MSRS] = {
157 MSR_IA32_SPEC_CTRL,
158 MSR_IA32_PRED_CMD,
159 MSR_IA32_TSC,
Sean Christophersondbdd0962021-04-21 19:38:31 -0700160#ifdef CONFIG_X86_64
Alexander Graf3eb90012020-09-25 16:34:20 +0200161 MSR_FS_BASE,
162 MSR_GS_BASE,
163 MSR_KERNEL_GS_BASE,
Sean Christophersondbdd0962021-04-21 19:38:31 -0700164#endif
Alexander Graf3eb90012020-09-25 16:34:20 +0200165 MSR_IA32_SYSENTER_CS,
166 MSR_IA32_SYSENTER_ESP,
167 MSR_IA32_SYSENTER_EIP,
168 MSR_CORE_C1_RES,
169 MSR_CORE_C3_RESIDENCY,
170 MSR_CORE_C6_RESIDENCY,
171 MSR_CORE_C7_RESIDENCY,
172};
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800173
174/*
175 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
176 * ple_gap: upper bound on the amount of time between two successive
177 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500178 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800179 * ple_window: upper bound on the amount of time a guest is allowed to execute
180 * in a PAUSE loop. Tests indicate that most spinlocks are held for
181 * less than 2^12 cycles
182 * Time is measured based on a counter that runs at the same rate as the TSC,
183 * refer SDM volume 3b section 21.6.13 & 22.1.3.
184 */
Babu Mogerc8e88712018-03-16 16:37:24 -0400185static unsigned int ple_gap = KVM_DEFAULT_PLE_GAP;
Luiz Capitulinoa87c99e2018-11-23 12:02:14 -0500186module_param(ple_gap, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200187
Babu Moger7fbc85a2018-03-16 16:37:22 -0400188static unsigned int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
189module_param(ple_window, uint, 0444);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800190
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200191/* Default doubles per-vcpu window every exit. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400192static unsigned int ple_window_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400193module_param(ple_window_grow, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200194
195/* Default resets per-vcpu window every exit to ple_window. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400196static unsigned int ple_window_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400197module_param(ple_window_shrink, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200198
199/* Default is to compute the maximum so we can never overflow. */
Babu Moger7fbc85a2018-03-16 16:37:22 -0400200static unsigned int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
201module_param(ple_window_max, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200202
Chao Pengf99e3da2018-10-24 16:05:10 +0800203/* Default is SYSTEM mode, 1 for host-guest mode */
204int __read_mostly pt_mode = PT_MODE_SYSTEM;
205module_param(pt_mode, int, S_IRUGO);
206
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200207static DEFINE_STATIC_KEY_FALSE(vmx_l1d_should_flush);
Nicolai Stange427362a2018-07-21 22:25:00 +0200208static DEFINE_STATIC_KEY_FALSE(vmx_l1d_flush_cond);
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200209static DEFINE_MUTEX(vmx_l1d_flush_mutex);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200210
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200211/* Storage for pre module init parameter parsing */
212static enum vmx_l1d_flush_state __read_mostly vmentry_l1d_flush_param = VMENTER_L1D_FLUSH_AUTO;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200213
214static const struct {
215 const char *option;
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200216 bool for_parse;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200217} vmentry_l1d_param[] = {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200218 [VMENTER_L1D_FLUSH_AUTO] = {"auto", true},
219 [VMENTER_L1D_FLUSH_NEVER] = {"never", true},
220 [VMENTER_L1D_FLUSH_COND] = {"cond", true},
221 [VMENTER_L1D_FLUSH_ALWAYS] = {"always", true},
222 [VMENTER_L1D_FLUSH_EPT_DISABLED] = {"EPT disabled", false},
223 [VMENTER_L1D_FLUSH_NOT_REQUIRED] = {"not required", false},
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200224};
225
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200226#define L1D_CACHE_ORDER 4
227static void *vmx_l1d_flush_pages;
228
229static int vmx_setup_l1d_flush(enum vmx_l1d_flush_state l1tf)
230{
231 struct page *page;
Nicolai Stange288d1522018-07-18 19:07:38 +0200232 unsigned int i;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200233
Waiman Long19a36d32019-08-26 15:30:23 -0400234 if (!boot_cpu_has_bug(X86_BUG_L1TF)) {
235 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_NOT_REQUIRED;
236 return 0;
237 }
238
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200239 if (!enable_ept) {
240 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_EPT_DISABLED;
241 return 0;
242 }
243
Yi Wangd806afa2018-08-16 13:42:39 +0800244 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES)) {
245 u64 msr;
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200246
Yi Wangd806afa2018-08-16 13:42:39 +0800247 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, msr);
248 if (msr & ARCH_CAP_SKIP_VMENTRY_L1DFLUSH) {
249 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_NOT_REQUIRED;
250 return 0;
251 }
252 }
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200253
Jiri Kosinad90a7a02018-07-13 16:23:25 +0200254 /* If set to auto use the default l1tf mitigation method */
255 if (l1tf == VMENTER_L1D_FLUSH_AUTO) {
256 switch (l1tf_mitigation) {
257 case L1TF_MITIGATION_OFF:
258 l1tf = VMENTER_L1D_FLUSH_NEVER;
259 break;
260 case L1TF_MITIGATION_FLUSH_NOWARN:
261 case L1TF_MITIGATION_FLUSH:
262 case L1TF_MITIGATION_FLUSH_NOSMT:
263 l1tf = VMENTER_L1D_FLUSH_COND;
264 break;
265 case L1TF_MITIGATION_FULL:
266 case L1TF_MITIGATION_FULL_FORCE:
267 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
268 break;
269 }
270 } else if (l1tf_mitigation == L1TF_MITIGATION_FULL_FORCE) {
271 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
272 }
273
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200274 if (l1tf != VMENTER_L1D_FLUSH_NEVER && !vmx_l1d_flush_pages &&
275 !boot_cpu_has(X86_FEATURE_FLUSH_L1D)) {
Ben Gardon41836832019-02-11 11:02:52 -0800276 /*
277 * This allocation for vmx_l1d_flush_pages is not tied to a VM
278 * lifetime and so should not be charged to a memcg.
279 */
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200280 page = alloc_pages(GFP_KERNEL, L1D_CACHE_ORDER);
281 if (!page)
282 return -ENOMEM;
283 vmx_l1d_flush_pages = page_address(page);
Nicolai Stange288d1522018-07-18 19:07:38 +0200284
285 /*
286 * Initialize each page with a different pattern in
287 * order to protect against KSM in the nested
288 * virtualization case.
289 */
290 for (i = 0; i < 1u << L1D_CACHE_ORDER; ++i) {
291 memset(vmx_l1d_flush_pages + i * PAGE_SIZE, i + 1,
292 PAGE_SIZE);
293 }
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200294 }
295
296 l1tf_vmx_mitigation = l1tf;
297
Thomas Gleixner895ae472018-07-13 16:23:22 +0200298 if (l1tf != VMENTER_L1D_FLUSH_NEVER)
299 static_branch_enable(&vmx_l1d_should_flush);
300 else
301 static_branch_disable(&vmx_l1d_should_flush);
Thomas Gleixner4c6523e2018-07-13 16:23:20 +0200302
Nicolai Stange427362a2018-07-21 22:25:00 +0200303 if (l1tf == VMENTER_L1D_FLUSH_COND)
304 static_branch_enable(&vmx_l1d_flush_cond);
Thomas Gleixner895ae472018-07-13 16:23:22 +0200305 else
Nicolai Stange427362a2018-07-21 22:25:00 +0200306 static_branch_disable(&vmx_l1d_flush_cond);
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200307 return 0;
308}
309
310static int vmentry_l1d_flush_parse(const char *s)
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200311{
312 unsigned int i;
313
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200314 if (s) {
315 for (i = 0; i < ARRAY_SIZE(vmentry_l1d_param); i++) {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200316 if (vmentry_l1d_param[i].for_parse &&
317 sysfs_streq(s, vmentry_l1d_param[i].option))
318 return i;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200319 }
320 }
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200321 return -EINVAL;
322}
323
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200324static int vmentry_l1d_flush_set(const char *s, const struct kernel_param *kp)
325{
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200326 int l1tf, ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200327
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200328 l1tf = vmentry_l1d_flush_parse(s);
329 if (l1tf < 0)
330 return l1tf;
331
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200332 if (!boot_cpu_has(X86_BUG_L1TF))
333 return 0;
334
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200335 /*
336 * Has vmx_init() run already? If not then this is the pre init
337 * parameter parsing. In that case just store the value and let
338 * vmx_init() do the proper setup after enable_ept has been
339 * established.
340 */
341 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_AUTO) {
342 vmentry_l1d_flush_param = l1tf;
343 return 0;
344 }
345
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200346 mutex_lock(&vmx_l1d_flush_mutex);
347 ret = vmx_setup_l1d_flush(l1tf);
348 mutex_unlock(&vmx_l1d_flush_mutex);
349 return ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200350}
351
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200352static int vmentry_l1d_flush_get(char *s, const struct kernel_param *kp)
353{
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200354 if (WARN_ON_ONCE(l1tf_vmx_mitigation >= ARRAY_SIZE(vmentry_l1d_param)))
355 return sprintf(s, "???\n");
356
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200357 return sprintf(s, "%s\n", vmentry_l1d_param[l1tf_vmx_mitigation].option);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200358}
359
360static const struct kernel_param_ops vmentry_l1d_flush_ops = {
361 .set = vmentry_l1d_flush_set,
362 .get = vmentry_l1d_flush_get,
363};
Thomas Gleixner895ae472018-07-13 16:23:22 +0200364module_param_cb(vmentry_l1d_flush, &vmentry_l1d_flush_ops, NULL, 0644);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200365
Gleb Natapovd99e4152012-12-20 16:57:45 +0200366static u32 vmx_segment_access_rights(struct kvm_segment *var);
Avi Kivity75880a02007-06-20 11:20:04 +0300367
Sean Christopherson453eafb2018-12-20 12:25:17 -0800368void vmx_vmexit(void);
369
Sean Christopherson52a9fcb2019-07-19 13:41:07 -0700370#define vmx_insn_failed(fmt...) \
371do { \
372 WARN_ONCE(1, fmt); \
373 pr_warn_ratelimited(fmt); \
374} while (0)
375
Sean Christopherson6e202092019-07-19 13:41:08 -0700376asmlinkage void vmread_error(unsigned long field, bool fault)
377{
378 if (fault)
379 kvm_spurious_fault();
380 else
381 vmx_insn_failed("kvm: vmread failed: field=%lx\n", field);
382}
383
Sean Christopherson52a9fcb2019-07-19 13:41:07 -0700384noinline void vmwrite_error(unsigned long field, unsigned long value)
385{
386 vmx_insn_failed("kvm: vmwrite failed: field=%lx val=%lx err=%d\n",
387 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
388}
389
390noinline void vmclear_error(struct vmcs *vmcs, u64 phys_addr)
391{
392 vmx_insn_failed("kvm: vmclear failed: %p/%llx\n", vmcs, phys_addr);
393}
394
395noinline void vmptrld_error(struct vmcs *vmcs, u64 phys_addr)
396{
397 vmx_insn_failed("kvm: vmptrld failed: %p/%llx\n", vmcs, phys_addr);
398}
399
400noinline void invvpid_error(unsigned long ext, u16 vpid, gva_t gva)
401{
402 vmx_insn_failed("kvm: invvpid failed: ext=0x%lx vpid=%u gva=0x%lx\n",
403 ext, vpid, gva);
404}
405
406noinline void invept_error(unsigned long ext, u64 eptp, gpa_t gpa)
407{
408 vmx_insn_failed("kvm: invept failed: ext=0x%lx eptp=%llx gpa=0x%llx\n",
409 ext, eptp, gpa);
410}
411
Avi Kivity6aa8b732006-12-10 02:21:36 -0800412static DEFINE_PER_CPU(struct vmcs *, vmxarea);
Sean Christopherson75edce82018-12-03 13:53:06 -0800413DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300414/*
415 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
416 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
417 */
418static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800419
Sheng Yang2384d2b2008-01-17 15:14:33 +0800420static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
421static DEFINE_SPINLOCK(vmx_vpid_lock);
422
Sean Christopherson3077c192018-12-03 13:53:02 -0800423struct vmcs_config vmcs_config;
424struct vmx_capability vmx_capability;
Sheng Yangd56f5462008-04-25 10:13:16 +0800425
Avi Kivity6aa8b732006-12-10 02:21:36 -0800426#define VMX_SEGMENT_FIELD(seg) \
427 [VCPU_SREG_##seg] = { \
428 .selector = GUEST_##seg##_SELECTOR, \
429 .base = GUEST_##seg##_BASE, \
430 .limit = GUEST_##seg##_LIMIT, \
431 .ar_bytes = GUEST_##seg##_AR_BYTES, \
432 }
433
Mathias Krause772e0312012-08-30 01:30:19 +0200434static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800435 unsigned selector;
436 unsigned base;
437 unsigned limit;
438 unsigned ar_bytes;
439} kvm_vmx_segment_fields[] = {
440 VMX_SEGMENT_FIELD(CS),
441 VMX_SEGMENT_FIELD(DS),
442 VMX_SEGMENT_FIELD(ES),
443 VMX_SEGMENT_FIELD(FS),
444 VMX_SEGMENT_FIELD(GS),
445 VMX_SEGMENT_FIELD(SS),
446 VMX_SEGMENT_FIELD(TR),
447 VMX_SEGMENT_FIELD(LDTR),
448};
449
Sean Christophersonec0241f2020-04-15 13:34:52 -0700450static inline void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
451{
452 vmx->segment_cache.bitmask = 0;
453}
454
Sean Christopherson23420802019-04-19 22:50:57 -0700455static unsigned long host_idt_base;
Avi Kivity26bb0982009-09-07 11:14:12 +0300456
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +0100457#if IS_ENABLED(CONFIG_HYPERV)
458static bool __read_mostly enlightened_vmcs = true;
459module_param(enlightened_vmcs, bool, 0444);
460
Yi Wang8997f652019-01-21 15:27:05 +0800461static int kvm_fill_hv_flush_list_func(struct hv_guest_mapping_flush_list *flush,
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800462 void *data)
463{
464 struct kvm_tlb_range *range = data;
465
466 return hyperv_fill_flush_guest_mapping_list(flush, range->start_gfn,
467 range->pages);
468}
469
Sean Christopherson978c8342021-03-05 10:31:23 -0800470static inline int hv_remote_flush_root_ept(hpa_t root_ept,
471 struct kvm_tlb_range *range)
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800472{
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800473 if (range)
Sean Christopherson978c8342021-03-05 10:31:23 -0800474 return hyperv_flush_guest_mapping_range(root_ept,
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800475 kvm_fill_hv_flush_list_func, (void *)range);
476 else
Sean Christopherson978c8342021-03-05 10:31:23 -0800477 return hyperv_flush_guest_mapping(root_ept);
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800478}
479
480static int hv_remote_flush_tlb_with_range(struct kvm *kvm,
481 struct kvm_tlb_range *range)
Tianyu Lan877ad952018-07-19 08:40:23 +0000482{
Sean Christophersonb68aa15c2021-03-05 10:31:15 -0800483 struct kvm_vmx *kvm_vmx = to_kvm_vmx(kvm);
Lan Tianyua5c214d2018-10-13 22:54:05 +0800484 struct kvm_vcpu *vcpu;
Sean Christopherson978c8342021-03-05 10:31:23 -0800485 int ret = 0, i, nr_unique_valid_roots;
486 hpa_t root;
Tianyu Lan877ad952018-07-19 08:40:23 +0000487
Sean Christopherson978c8342021-03-05 10:31:23 -0800488 spin_lock(&kvm_vmx->hv_root_ept_lock);
Tianyu Lan877ad952018-07-19 08:40:23 +0000489
Sean Christopherson978c8342021-03-05 10:31:23 -0800490 if (!VALID_PAGE(kvm_vmx->hv_root_ept)) {
491 nr_unique_valid_roots = 0;
Tianyu Lan877ad952018-07-19 08:40:23 +0000492
Sean Christophersoncdbd4b42021-03-05 10:31:18 -0800493 /*
Sean Christopherson978c8342021-03-05 10:31:23 -0800494 * Flush all valid roots, and see if all vCPUs have converged
495 * on a common root, in which case future flushes can skip the
496 * loop and flush the common root.
Sean Christophersoncdbd4b42021-03-05 10:31:18 -0800497 */
Lan Tianyu53963a72018-12-06 15:34:36 +0800498 kvm_for_each_vcpu(i, vcpu, kvm) {
Sean Christopherson978c8342021-03-05 10:31:23 -0800499 root = to_vmx(vcpu)->hv_root_ept;
500 if (!VALID_PAGE(root) || root == kvm_vmx->hv_root_ept)
Sean Christopherson288bee22021-03-05 10:31:16 -0800501 continue;
502
Sean Christophersoncdbd4b42021-03-05 10:31:18 -0800503 /*
Sean Christopherson978c8342021-03-05 10:31:23 -0800504 * Set the tracked root to the first valid root. Keep
505 * this root for the entirety of the loop even if more
506 * roots are encountered as a low effort optimization
507 * to avoid flushing the same (first) root again.
Sean Christophersoncdbd4b42021-03-05 10:31:18 -0800508 */
Sean Christopherson978c8342021-03-05 10:31:23 -0800509 if (++nr_unique_valid_roots == 1)
510 kvm_vmx->hv_root_ept = root;
Vitaly Kuznetsov5f8bb002018-10-11 12:03:12 +0200511
Sean Christopherson14072e52021-03-05 10:31:22 -0800512 if (!ret)
Sean Christopherson978c8342021-03-05 10:31:23 -0800513 ret = hv_remote_flush_root_ept(root, range);
Sean Christopherson14072e52021-03-05 10:31:22 -0800514
515 /*
Sean Christopherson978c8342021-03-05 10:31:23 -0800516 * Stop processing roots if a failure occurred and
517 * multiple valid roots have already been detected.
Sean Christopherson14072e52021-03-05 10:31:22 -0800518 */
Sean Christopherson978c8342021-03-05 10:31:23 -0800519 if (ret && nr_unique_valid_roots > 1)
Sean Christopherson14072e52021-03-05 10:31:22 -0800520 break;
Lan Tianyu53963a72018-12-06 15:34:36 +0800521 }
Sean Christophersoncdbd4b42021-03-05 10:31:18 -0800522
523 /*
Sean Christopherson978c8342021-03-05 10:31:23 -0800524 * The optimized flush of a single root can't be used if there
525 * are multiple valid roots (obviously).
Sean Christophersoncdbd4b42021-03-05 10:31:18 -0800526 */
Sean Christopherson978c8342021-03-05 10:31:23 -0800527 if (nr_unique_valid_roots > 1)
528 kvm_vmx->hv_root_ept = INVALID_PAGE;
Lan Tianyua5c214d2018-10-13 22:54:05 +0800529 } else {
Sean Christopherson978c8342021-03-05 10:31:23 -0800530 ret = hv_remote_flush_root_ept(kvm_vmx->hv_root_ept, range);
Tianyu Lan877ad952018-07-19 08:40:23 +0000531 }
Tianyu Lan877ad952018-07-19 08:40:23 +0000532
Sean Christopherson978c8342021-03-05 10:31:23 -0800533 spin_unlock(&kvm_vmx->hv_root_ept_lock);
Tianyu Lan877ad952018-07-19 08:40:23 +0000534 return ret;
535}
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800536static int hv_remote_flush_tlb(struct kvm *kvm)
537{
538 return hv_remote_flush_tlb_with_range(kvm, NULL);
539}
540
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800541static int hv_enable_direct_tlbflush(struct kvm_vcpu *vcpu)
542{
543 struct hv_enlightened_vmcs *evmcs;
544 struct hv_partition_assist_pg **p_hv_pa_pg =
Vitaly Kuznetsov05f04ae2021-01-26 14:48:09 +0100545 &to_kvm_hv(vcpu->kvm)->hv_pa_pg;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800546 /*
547 * Synthetic VM-Exit is not enabled in current code and so All
548 * evmcs in singe VM shares same assist page.
549 */
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200550 if (!*p_hv_pa_pg)
Sean Christophersoneba04b22021-03-30 19:30:25 -0700551 *p_hv_pa_pg = kzalloc(PAGE_SIZE, GFP_KERNEL_ACCOUNT);
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200552
553 if (!*p_hv_pa_pg)
554 return -ENOMEM;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800555
556 evmcs = (struct hv_enlightened_vmcs *)to_vmx(vcpu)->loaded_vmcs->vmcs;
557
558 evmcs->partition_assist_page =
559 __pa(*p_hv_pa_pg);
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200560 evmcs->hv_vm_id = (unsigned long)vcpu->kvm;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800561 evmcs->hv_enlightenments_control.nested_flush_hypercall = 1;
562
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800563 return 0;
564}
565
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +0100566#endif /* IS_ENABLED(CONFIG_HYPERV) */
567
Sean Christopherson978c8342021-03-05 10:31:23 -0800568static void hv_track_root_ept(struct kvm_vcpu *vcpu, hpa_t root_ept)
Sean Christophersonc82f1b62021-03-05 10:31:20 -0800569{
570#if IS_ENABLED(CONFIG_HYPERV)
571 struct kvm_vmx *kvm_vmx = to_kvm_vmx(vcpu->kvm);
572
573 if (kvm_x86_ops.tlb_remote_flush == hv_remote_flush_tlb) {
Sean Christopherson978c8342021-03-05 10:31:23 -0800574 spin_lock(&kvm_vmx->hv_root_ept_lock);
575 to_vmx(vcpu)->hv_root_ept = root_ept;
576 if (root_ept != kvm_vmx->hv_root_ept)
577 kvm_vmx->hv_root_ept = INVALID_PAGE;
578 spin_unlock(&kvm_vmx->hv_root_ept_lock);
Sean Christophersonc82f1b62021-03-05 10:31:20 -0800579 }
580#endif
581}
582
Yunhong Jiang64672c92016-06-13 14:19:59 -0700583/*
584 * Comment's format: document - errata name - stepping - processor name.
585 * Refer from
586 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
587 */
588static u32 vmx_preemption_cpu_tfms[] = {
589/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
5900x000206E6,
591/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
592/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
593/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
5940x00020652,
595/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
5960x00020655,
597/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
598/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
599/*
600 * 320767.pdf - AAP86 - B1 -
601 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
602 */
6030x000106E5,
604/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
6050x000106A0,
606/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
6070x000106A1,
608/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
6090x000106A4,
610 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
611 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
612 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
6130x000106A5,
Wei Huang3d82c562018-12-03 14:13:32 -0600614 /* Xeon E3-1220 V2 */
6150x000306A8,
Yunhong Jiang64672c92016-06-13 14:19:59 -0700616};
617
618static inline bool cpu_has_broken_vmx_preemption_timer(void)
619{
620 u32 eax = cpuid_eax(0x00000001), i;
621
622 /* Clear the reserved bits */
623 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +0000624 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -0700625 if (eax == vmx_preemption_cpu_tfms[i])
626 return true;
627
628 return false;
629}
630
Paolo Bonzini35754c92015-07-29 12:05:37 +0200631static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800632{
Paolo Bonzini35754c92015-07-29 12:05:37 +0200633 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800634}
635
Sheng Yang04547152009-04-01 15:52:31 +0800636static inline bool report_flexpriority(void)
637{
638 return flexpriority_enabled;
639}
640
Alexander Graf3eb90012020-09-25 16:34:20 +0200641static int possible_passthrough_msr_slot(u32 msr)
642{
643 u32 i;
644
645 for (i = 0; i < ARRAY_SIZE(vmx_possible_passthrough_msrs); i++)
646 if (vmx_possible_passthrough_msrs[i] == msr)
647 return i;
648
649 return -ENOENT;
650}
651
652static bool is_valid_passthrough_msr(u32 msr)
653{
654 bool r;
655
656 switch (msr) {
657 case 0x800 ... 0x8ff:
658 /* x2APIC MSRs. These are handled in vmx_update_msr_bitmap_x2apic() */
659 return true;
660 case MSR_IA32_RTIT_STATUS:
661 case MSR_IA32_RTIT_OUTPUT_BASE:
662 case MSR_IA32_RTIT_OUTPUT_MASK:
663 case MSR_IA32_RTIT_CR3_MATCH:
664 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
665 /* PT MSRs. These are handled in pt_update_intercept_for_msr() */
Like Xu1b5ac3222021-02-01 13:10:34 +0800666 case MSR_LBR_SELECT:
667 case MSR_LBR_TOS:
668 case MSR_LBR_INFO_0 ... MSR_LBR_INFO_0 + 31:
669 case MSR_LBR_NHM_FROM ... MSR_LBR_NHM_FROM + 31:
670 case MSR_LBR_NHM_TO ... MSR_LBR_NHM_TO + 31:
671 case MSR_LBR_CORE_FROM ... MSR_LBR_CORE_FROM + 8:
672 case MSR_LBR_CORE_TO ... MSR_LBR_CORE_TO + 8:
673 /* LBR MSRs. These are handled in vmx_update_intercept_for_lbr_msrs() */
Alexander Graf3eb90012020-09-25 16:34:20 +0200674 return true;
675 }
676
677 r = possible_passthrough_msr_slot(msr) != -ENOENT;
678
679 WARN(!r, "Invalid MSR %x, please adapt vmx_possible_passthrough_msrs[]", msr);
680
681 return r;
682}
683
Sean Christophersond85a8032020-09-23 11:04:06 -0700684struct vmx_uret_msr *vmx_find_uret_msr(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300685{
686 int i;
687
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700688 i = kvm_find_user_return_msr(msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300689 if (i >= 0)
Sean Christophersoneb3db1b2020-09-23 11:03:58 -0700690 return &vmx->guest_uret_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000691 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800692}
693
Sean Christopherson7bf662b2020-09-23 11:04:07 -0700694static int vmx_set_guest_uret_msr(struct vcpu_vmx *vmx,
695 struct vmx_uret_msr *msr, u64 data)
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500696{
Sean Christophersonee9d22e2021-05-04 10:17:28 -0700697 unsigned int slot = msr - vmx->guest_uret_msrs;
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500698 int ret = 0;
699
700 u64 old_msr_data = msr->data;
701 msr->data = data;
Sean Christophersonee9d22e2021-05-04 10:17:28 -0700702 if (msr->load_into_hardware) {
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500703 preempt_disable();
Sean Christophersonee9d22e2021-05-04 10:17:28 -0700704 ret = kvm_set_user_return_msr(slot, msr->data, msr->mask);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500705 preempt_enable();
706 if (ret)
707 msr->data = old_msr_data;
708 }
709 return ret;
710}
711
Dave Young2965faa2015-09-09 15:38:55 -0700712#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800713static void crash_vmclear_local_loaded_vmcss(void)
714{
715 int cpu = raw_smp_processor_id();
716 struct loaded_vmcs *v;
717
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800718 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
719 loaded_vmcss_on_cpu_link)
720 vmcs_clear(v->vmcs);
721}
Dave Young2965faa2015-09-09 15:38:55 -0700722#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800723
Nadav Har'Eld462b812011-05-24 15:26:10 +0300724static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800725{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300726 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800727 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800728
Nadav Har'Eld462b812011-05-24 15:26:10 +0300729 if (loaded_vmcs->cpu != cpu)
730 return; /* vcpu migration can race with cpu offline */
731 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800732 per_cpu(current_vmcs, cpu) = NULL;
Sean Christopherson31603d42020-03-21 12:37:49 -0700733
734 vmcs_clear(loaded_vmcs->vmcs);
735 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
736 vmcs_clear(loaded_vmcs->shadow_vmcs);
737
Nadav Har'Eld462b812011-05-24 15:26:10 +0300738 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +0800739
740 /*
Sean Christopherson31603d42020-03-21 12:37:49 -0700741 * Ensure all writes to loaded_vmcs, including deleting it from its
742 * current percpu list, complete before setting loaded_vmcs->vcpu to
743 * -1, otherwise a different cpu can see vcpu == -1 first and add
744 * loaded_vmcs to its percpu list before it's deleted from this cpu's
745 * list. Pairs with the smp_rmb() in vmx_vcpu_load_vmcs().
Xiao Guangrong5a560f82012-11-28 20:54:14 +0800746 */
747 smp_wmb();
748
Sean Christopherson31603d42020-03-21 12:37:49 -0700749 loaded_vmcs->cpu = -1;
750 loaded_vmcs->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800751}
752
Sean Christopherson89b0c9f2018-12-03 13:53:07 -0800753void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800754{
Xiao Guangronge6c7d322012-11-28 20:53:15 +0800755 int cpu = loaded_vmcs->cpu;
756
757 if (cpu != -1)
758 smp_call_function_single(cpu,
759 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800760}
761
Avi Kivity2fb92db2011-04-27 19:42:18 +0300762static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
763 unsigned field)
764{
765 bool ret;
766 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
767
Sean Christophersoncb3c1e22019-09-27 14:45:22 -0700768 if (!kvm_register_is_available(&vmx->vcpu, VCPU_EXREG_SEGMENTS)) {
769 kvm_register_mark_available(&vmx->vcpu, VCPU_EXREG_SEGMENTS);
Avi Kivity2fb92db2011-04-27 19:42:18 +0300770 vmx->segment_cache.bitmask = 0;
771 }
772 ret = vmx->segment_cache.bitmask & mask;
773 vmx->segment_cache.bitmask |= mask;
774 return ret;
775}
776
777static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
778{
779 u16 *p = &vmx->segment_cache.seg[seg].selector;
780
781 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
782 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
783 return *p;
784}
785
786static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
787{
788 ulong *p = &vmx->segment_cache.seg[seg].base;
789
790 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
791 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
792 return *p;
793}
794
795static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
796{
797 u32 *p = &vmx->segment_cache.seg[seg].limit;
798
799 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
800 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
801 return *p;
802}
803
804static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
805{
806 u32 *p = &vmx->segment_cache.seg[seg].ar;
807
808 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
809 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
810 return *p;
811}
812
Jason Baronb6a7cc32021-01-14 22:27:54 -0500813void vmx_update_exception_bitmap(struct kvm_vcpu *vcpu)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300814{
815 u32 eb;
816
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100817 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -0800818 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Liran Alon9e869482018-03-12 13:12:51 +0200819 /*
820 * Guest access to VMware backdoor ports could legitimately
821 * trigger #GP because of TSS I/O permission bitmap.
822 * We intercept those #GP and allow access to them anyway
823 * as VMware does.
824 */
825 if (enable_vmware_backdoor)
826 eb |= (1u << GP_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100827 if ((vcpu->guest_debug &
828 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
829 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
830 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300831 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300832 eb = ~0;
Paolo Bonzinia0c13432020-07-10 17:48:08 +0200833 if (!vmx_need_pf_intercept(vcpu))
Miaohe Lin49f933d2020-02-27 11:20:54 +0800834 eb &= ~(1u << PF_VECTOR);
Nadav Har'El36cf24e2011-05-25 23:15:08 +0300835
836 /* When we are running a nested L2 guest and L1 specified for it a
837 * certain exception bitmap, we must trap the same exceptions and pass
838 * them to L1. When running L2, we will only handle the exceptions
839 * specified above if L1 did not want them.
840 */
841 if (is_guest_mode(vcpu))
842 eb |= get_vmcs12(vcpu)->exception_bitmap;
Paolo Bonzinib502e6e2020-09-29 08:31:32 -0400843 else {
844 /*
845 * If EPT is enabled, #PF is only trapped if MAXPHYADDR is mismatched
846 * between guest and host. In that case we only care about present
847 * faults. For vmcs02, however, PFEC_MASK and PFEC_MATCH are set in
848 * prepare_vmcs02_rare.
849 */
850 bool selective_pf_trap = enable_ept && (eb & (1u << PF_VECTOR));
851 int mask = selective_pf_trap ? PFERR_PRESENT_MASK : 0;
852 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, mask);
853 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, mask);
854 }
Nadav Har'El36cf24e2011-05-25 23:15:08 +0300855
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300856 vmcs_write32(EXCEPTION_BITMAP, eb);
857}
858
Ashok Raj15d45072018-02-01 22:59:43 +0100859/*
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100860 * Check if MSR is intercepted for currently loaded MSR bitmap.
861 */
862static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr)
863{
864 unsigned long *msr_bitmap;
865 int f = sizeof(unsigned long);
866
867 if (!cpu_has_vmx_msr_bitmap())
868 return true;
869
870 msr_bitmap = to_vmx(vcpu)->loaded_vmcs->msr_bitmap;
871
872 if (msr <= 0x1fff) {
873 return !!test_bit(msr, msr_bitmap + 0x800 / f);
874 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
875 msr &= 0x1fff;
876 return !!test_bit(msr, msr_bitmap + 0xc00 / f);
877 }
878
879 return true;
880}
881
Gleb Natapov2961e8762013-11-25 15:37:13 +0200882static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
883 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200884{
Gleb Natapov2961e8762013-11-25 15:37:13 +0200885 vm_entry_controls_clearbit(vmx, entry);
886 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200887}
888
Sean Christophersona128a932020-09-23 11:03:57 -0700889int vmx_find_loadstore_msr_slot(struct vmx_msrs *m, u32 msr)
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400890{
891 unsigned int i;
892
893 for (i = 0; i < m->nr; ++i) {
894 if (m->val[i].index == msr)
895 return i;
896 }
897 return -ENOENT;
898}
899
Avi Kivity61d2ef22010-04-28 16:40:38 +0300900static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
901{
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400902 int i;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300903 struct msr_autoload *m = &vmx->msr_autoload;
904
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200905 switch (msr) {
906 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800907 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200908 clear_atomic_switch_msr_special(vmx,
909 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200910 VM_EXIT_LOAD_IA32_EFER);
911 return;
912 }
913 break;
914 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800915 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200916 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200917 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
918 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
919 return;
920 }
921 break;
Avi Kivity110312c2010-12-21 12:54:20 +0200922 }
Sean Christophersona128a932020-09-23 11:03:57 -0700923 i = vmx_find_loadstore_msr_slot(&m->guest, msr);
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400924 if (i < 0)
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400925 goto skip_guest;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400926 --m->guest.nr;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400927 m->guest.val[i] = m->guest.val[m->guest.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400928 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Avi Kivity110312c2010-12-21 12:54:20 +0200929
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400930skip_guest:
Sean Christophersona128a932020-09-23 11:03:57 -0700931 i = vmx_find_loadstore_msr_slot(&m->host, msr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400932 if (i < 0)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300933 return;
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400934
935 --m->host.nr;
936 m->host.val[i] = m->host.val[m->host.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400937 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300938}
939
Gleb Natapov2961e8762013-11-25 15:37:13 +0200940static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
941 unsigned long entry, unsigned long exit,
942 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
943 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200944{
945 vmcs_write64(guest_val_vmcs, guest_val);
Sean Christopherson5a5e8a12018-09-26 09:23:56 -0700946 if (host_val_vmcs != HOST_IA32_EFER)
947 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +0200948 vm_entry_controls_setbit(vmx, entry);
949 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200950}
951
Avi Kivity61d2ef22010-04-28 16:40:38 +0300952static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400953 u64 guest_val, u64 host_val, bool entry_only)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300954{
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400955 int i, j = 0;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300956 struct msr_autoload *m = &vmx->msr_autoload;
957
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200958 switch (msr) {
959 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800960 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200961 add_atomic_switch_msr_special(vmx,
962 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200963 VM_EXIT_LOAD_IA32_EFER,
964 GUEST_IA32_EFER,
965 HOST_IA32_EFER,
966 guest_val, host_val);
967 return;
968 }
969 break;
970 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800971 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200972 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200973 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
974 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
975 GUEST_IA32_PERF_GLOBAL_CTRL,
976 HOST_IA32_PERF_GLOBAL_CTRL,
977 guest_val, host_val);
978 return;
979 }
980 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +0100981 case MSR_IA32_PEBS_ENABLE:
982 /* PEBS needs a quiescent period after being disabled (to write
983 * a record). Disabling PEBS through VMX MSR swapping doesn't
984 * provide that period, so a CPU could write host's record into
985 * guest's memory.
986 */
987 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +0200988 }
989
Sean Christophersona128a932020-09-23 11:03:57 -0700990 i = vmx_find_loadstore_msr_slot(&m->guest, msr);
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400991 if (!entry_only)
Sean Christophersona128a932020-09-23 11:03:57 -0700992 j = vmx_find_loadstore_msr_slot(&m->host, msr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300993
Sean Christophersonce833b22020-09-23 11:03:56 -0700994 if ((i < 0 && m->guest.nr == MAX_NR_LOADSTORE_MSRS) ||
995 (j < 0 && m->host.nr == MAX_NR_LOADSTORE_MSRS)) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +0200996 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +0200997 "Can't add msr %x\n", msr);
998 return;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300999 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04001000 if (i < 0) {
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04001001 i = m->guest.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04001002 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04001003 }
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04001004 m->guest.val[i].index = msr;
1005 m->guest.val[i].value = guest_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +03001006
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04001007 if (entry_only)
1008 return;
1009
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04001010 if (j < 0) {
1011 j = m->host.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04001012 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +03001013 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04001014 m->host.val[j].index = msr;
1015 m->host.val[j].value = host_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +03001016}
1017
Sean Christopherson86e3e492020-09-23 11:04:04 -07001018static bool update_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +03001019{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001020 u64 guest_efer = vmx->vcpu.arch.efer;
1021 u64 ignore_bits = 0;
Sean Christopherson86e3e492020-09-23 11:04:04 -07001022 int i;
Eddie Dong2cc51562007-05-21 07:28:09 +03001023
Paolo Bonzini9167ab72019-10-27 16:23:23 +01001024 /* Shadow paging assumes NX to be available. */
1025 if (!enable_ept)
1026 guest_efer |= EFER_NX;
Roel Kluin3a34a882009-08-04 02:08:45 -07001027
Avi Kivity51c6cf62007-08-29 03:48:05 +03001028 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001029 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03001030 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001031 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001032#ifdef CONFIG_X86_64
1033 ignore_bits |= EFER_LMA | EFER_LME;
1034 /* SCE is meaningful only in long mode on Intel */
1035 if (guest_efer & EFER_LMA)
1036 ignore_bits &= ~(u64)EFER_SCE;
1037#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03001038
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08001039 /*
1040 * On EPT, we can't emulate NX, so we must switch EFER atomically.
1041 * On CPUs that support "load IA32_EFER", always switch EFER
1042 * atomically, since it's faster than switching it manually.
1043 */
Sean Christophersonc73da3f2018-12-03 13:53:00 -08001044 if (cpu_has_load_ia32_efer() ||
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08001045 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03001046 if (!(guest_efer & EFER_LMA))
1047 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08001048 if (guest_efer != host_efer)
1049 add_atomic_switch_msr(vmx, MSR_EFER,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04001050 guest_efer, host_efer, false);
Sean Christopherson02343cf2018-09-26 09:23:43 -07001051 else
1052 clear_atomic_switch_msr(vmx, MSR_EFER);
Avi Kivity84ad33e2010-04-28 16:42:29 +03001053 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001054 }
Sean Christopherson86e3e492020-09-23 11:04:04 -07001055
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07001056 i = kvm_find_user_return_msr(MSR_EFER);
Sean Christopherson86e3e492020-09-23 11:04:04 -07001057 if (i < 0)
1058 return false;
1059
1060 clear_atomic_switch_msr(vmx, MSR_EFER);
1061
1062 guest_efer &= ~ignore_bits;
1063 guest_efer |= host_efer & ignore_bits;
1064
1065 vmx->guest_uret_msrs[i].data = guest_efer;
1066 vmx->guest_uret_msrs[i].mask = ~ignore_bits;
1067
1068 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001069}
1070
Andy Lutomirskie28baea2017-02-20 08:56:11 -08001071#ifdef CONFIG_X86_32
1072/*
1073 * On 32-bit kernels, VM exits still load the FS and GS bases from the
1074 * VMCS rather than the segment table. KVM uses this helper to figure
1075 * out the current bases to poke them into the VMCS before entry.
1076 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001077static unsigned long segment_base(u16 selector)
1078{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001079 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001080 unsigned long v;
1081
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001082 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001083 return 0;
1084
Thomas Garnier45fc8752017-03-14 10:05:08 -07001085 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001086
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001087 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001088 u16 ldt_selector = kvm_read_ldt();
1089
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001090 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001091 return 0;
1092
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001093 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001094 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001095 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001096 return v;
1097}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08001098#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001099
Sean Christophersone348ac72019-12-10 15:24:33 -08001100static inline bool pt_can_write_msr(struct vcpu_vmx *vmx)
1101{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001102 return vmx_pt_mode_is_host_guest() &&
Sean Christophersone348ac72019-12-10 15:24:33 -08001103 !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
1104}
1105
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07001106static inline bool pt_output_base_valid(struct kvm_vcpu *vcpu, u64 base)
1107{
1108 /* The base must be 128-byte aligned and a legal physical address. */
Sean Christopherson636e8b72021-02-03 16:01:10 -08001109 return kvm_vcpu_is_legal_aligned_gpa(vcpu, base, 128);
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07001110}
1111
Chao Peng2ef444f2018-10-24 16:05:12 +08001112static inline void pt_load_msr(struct pt_ctx *ctx, u32 addr_range)
1113{
1114 u32 i;
1115
1116 wrmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
1117 wrmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
1118 wrmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1119 wrmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1120 for (i = 0; i < addr_range; i++) {
1121 wrmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1122 wrmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1123 }
1124}
1125
1126static inline void pt_save_msr(struct pt_ctx *ctx, u32 addr_range)
1127{
1128 u32 i;
1129
1130 rdmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
1131 rdmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
1132 rdmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1133 rdmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1134 for (i = 0; i < addr_range; i++) {
1135 rdmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1136 rdmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1137 }
1138}
1139
1140static void pt_guest_enter(struct vcpu_vmx *vmx)
1141{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001142 if (vmx_pt_mode_is_system())
Chao Peng2ef444f2018-10-24 16:05:12 +08001143 return;
1144
Chao Peng2ef444f2018-10-24 16:05:12 +08001145 /*
Chao Pengb08c2892018-10-24 16:05:15 +08001146 * GUEST_IA32_RTIT_CTL is already set in the VMCS.
1147 * Save host state before VM entry.
Chao Peng2ef444f2018-10-24 16:05:12 +08001148 */
Chao Pengb08c2892018-10-24 16:05:15 +08001149 rdmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
Chao Peng2ef444f2018-10-24 16:05:12 +08001150 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
1151 wrmsrl(MSR_IA32_RTIT_CTL, 0);
1152 pt_save_msr(&vmx->pt_desc.host, vmx->pt_desc.addr_range);
1153 pt_load_msr(&vmx->pt_desc.guest, vmx->pt_desc.addr_range);
1154 }
1155}
1156
1157static void pt_guest_exit(struct vcpu_vmx *vmx)
1158{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001159 if (vmx_pt_mode_is_system())
Chao Peng2ef444f2018-10-24 16:05:12 +08001160 return;
1161
1162 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
1163 pt_save_msr(&vmx->pt_desc.guest, vmx->pt_desc.addr_range);
1164 pt_load_msr(&vmx->pt_desc.host, vmx->pt_desc.addr_range);
1165 }
1166
1167 /* Reload host state (IA32_RTIT_CTL will be cleared on VM exit). */
1168 wrmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
1169}
1170
Sean Christopherson13b964a2019-05-07 09:06:31 -07001171void vmx_set_host_fs_gs(struct vmcs_host_state *host, u16 fs_sel, u16 gs_sel,
1172 unsigned long fs_base, unsigned long gs_base)
1173{
1174 if (unlikely(fs_sel != host->fs_sel)) {
1175 if (!(fs_sel & 7))
1176 vmcs_write16(HOST_FS_SELECTOR, fs_sel);
1177 else
1178 vmcs_write16(HOST_FS_SELECTOR, 0);
1179 host->fs_sel = fs_sel;
1180 }
1181 if (unlikely(gs_sel != host->gs_sel)) {
1182 if (!(gs_sel & 7))
1183 vmcs_write16(HOST_GS_SELECTOR, gs_sel);
1184 else
1185 vmcs_write16(HOST_GS_SELECTOR, 0);
1186 host->gs_sel = gs_sel;
1187 }
1188 if (unlikely(fs_base != host->fs_base)) {
1189 vmcs_writel(HOST_FS_BASE, fs_base);
1190 host->fs_base = fs_base;
1191 }
1192 if (unlikely(gs_base != host->gs_base)) {
1193 vmcs_writel(HOST_GS_BASE, gs_base);
1194 host->gs_base = gs_base;
1195 }
1196}
1197
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001198void vmx_prepare_switch_to_guest(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001199{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001200 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond7ee0392018-07-23 12:32:47 -07001201 struct vmcs_host_state *host_state;
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001202#ifdef CONFIG_X86_64
Vitaly Kuznetsov35060ed2018-03-13 18:48:05 +01001203 int cpu = raw_smp_processor_id();
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001204#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001205 unsigned long fs_base, gs_base;
1206 u16 fs_sel, gs_sel;
Avi Kivity26bb0982009-09-07 11:14:12 +03001207 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001208
Sean Christophersond264ee02018-08-27 15:21:12 -07001209 vmx->req_immediate_exit = false;
1210
Liran Alonf48b4712018-11-20 18:03:25 +02001211 /*
1212 * Note that guest MSRs to be saved/restored can also be changed
1213 * when guest state is loaded. This happens when guest transitions
1214 * to/from long-mode by setting MSR_EFER.LMA.
1215 */
Sean Christopherson658ece82020-09-23 11:04:01 -07001216 if (!vmx->guest_uret_msrs_loaded) {
1217 vmx->guest_uret_msrs_loaded = true;
Sean Christophersone5fda4b2021-05-04 10:17:32 -07001218 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001219 if (!vmx->guest_uret_msrs[i].load_into_hardware)
1220 continue;
1221
1222 kvm_set_user_return_msr(i,
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001223 vmx->guest_uret_msrs[i].data,
1224 vmx->guest_uret_msrs[i].mask);
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001225 }
Liran Alonf48b4712018-11-20 18:03:25 +02001226 }
wanpeng lic9dfd3f2020-02-17 18:37:43 +08001227
1228 if (vmx->nested.need_vmcs12_to_shadow_sync)
1229 nested_sync_vmcs12_to_shadow(vcpu);
1230
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001231 if (vmx->guest_state_loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001232 return;
1233
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001234 host_state = &vmx->loaded_vmcs->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001235
Avi Kivity33ed6322007-05-02 16:54:03 +03001236 /*
1237 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1238 * allow segment selectors with cpl > 0 or ti == 1.
1239 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07001240 host_state->ldt_sel = kvm_read_ldt();
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01001241
1242#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001243 savesegment(ds, host_state->ds_sel);
1244 savesegment(es, host_state->es_sel);
Sean Christophersone368b872018-07-23 12:32:41 -07001245
1246 gs_base = cpu_kernelmode_gs_base(cpu);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001247 if (likely(is_64bit_mm(current->mm))) {
Thomas Gleixner67580342020-05-28 16:13:52 -04001248 current_save_fsgs();
Sean Christophersone368b872018-07-23 12:32:41 -07001249 fs_sel = current->thread.fsindex;
1250 gs_sel = current->thread.gsindex;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001251 fs_base = current->thread.fsbase;
Sean Christophersone368b872018-07-23 12:32:41 -07001252 vmx->msr_host_kernel_gs_base = current->thread.gsbase;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001253 } else {
Sean Christophersone368b872018-07-23 12:32:41 -07001254 savesegment(fs, fs_sel);
1255 savesegment(gs, gs_sel);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001256 fs_base = read_msr(MSR_FS_BASE);
Sean Christophersone368b872018-07-23 12:32:41 -07001257 vmx->msr_host_kernel_gs_base = read_msr(MSR_KERNEL_GS_BASE);
Avi Kivity33ed6322007-05-02 16:54:03 +03001258 }
1259
Paolo Bonzini4679b612018-09-24 17:23:01 +02001260 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity33ed6322007-05-02 16:54:03 +03001261#else
Sean Christophersone368b872018-07-23 12:32:41 -07001262 savesegment(fs, fs_sel);
1263 savesegment(gs, gs_sel);
1264 fs_base = segment_base(fs_sel);
1265 gs_base = segment_base(gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001266#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001267
Sean Christopherson13b964a2019-05-07 09:06:31 -07001268 vmx_set_host_fs_gs(host_state, fs_sel, gs_sel, fs_base, gs_base);
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001269 vmx->guest_state_loaded = true;
Avi Kivity33ed6322007-05-02 16:54:03 +03001270}
1271
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001272static void vmx_prepare_switch_to_host(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001273{
Sean Christophersond7ee0392018-07-23 12:32:47 -07001274 struct vmcs_host_state *host_state;
1275
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001276 if (!vmx->guest_state_loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001277 return;
1278
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001279 host_state = &vmx->loaded_vmcs->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001280
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001281 ++vmx->vcpu.stat.host_state_reload;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001282
Avi Kivityc8770e72010-11-11 12:37:26 +02001283#ifdef CONFIG_X86_64
Paolo Bonzini4679b612018-09-24 17:23:01 +02001284 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivityc8770e72010-11-11 12:37:26 +02001285#endif
Sean Christophersond7ee0392018-07-23 12:32:47 -07001286 if (host_state->ldt_sel || (host_state->gs_sel & 7)) {
1287 kvm_load_ldt(host_state->ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001288#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001289 load_gs_index(host_state->gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02001290#else
Sean Christophersond7ee0392018-07-23 12:32:47 -07001291 loadsegment(gs, host_state->gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001292#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03001293 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07001294 if (host_state->fs_sel & 7)
1295 loadsegment(fs, host_state->fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001296#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001297 if (unlikely(host_state->ds_sel | host_state->es_sel)) {
1298 loadsegment(ds, host_state->ds_sel);
1299 loadsegment(es, host_state->es_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001300 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03001301#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08001302 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03001303#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001304 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001305#endif
Thomas Garnier45fc8752017-03-14 10:05:08 -07001306 load_fixmap_gdt(raw_smp_processor_id());
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001307 vmx->guest_state_loaded = false;
Sean Christopherson658ece82020-09-23 11:04:01 -07001308 vmx->guest_uret_msrs_loaded = false;
Avi Kivity33ed6322007-05-02 16:54:03 +03001309}
1310
Sean Christopherson678e3152018-07-23 12:32:43 -07001311#ifdef CONFIG_X86_64
1312static u64 vmx_read_guest_kernel_gs_base(struct vcpu_vmx *vmx)
Avi Kivitya9b21b62008-06-24 11:48:49 +03001313{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001314 preempt_disable();
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001315 if (vmx->guest_state_loaded)
Paolo Bonzini4679b612018-09-24 17:23:01 +02001316 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1317 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001318 return vmx->msr_guest_kernel_gs_base;
Avi Kivitya9b21b62008-06-24 11:48:49 +03001319}
1320
Sean Christopherson678e3152018-07-23 12:32:43 -07001321static void vmx_write_guest_kernel_gs_base(struct vcpu_vmx *vmx, u64 data)
1322{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001323 preempt_disable();
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001324 if (vmx->guest_state_loaded)
Paolo Bonzini4679b612018-09-24 17:23:01 +02001325 wrmsrl(MSR_KERNEL_GS_BASE, data);
1326 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001327 vmx->msr_guest_kernel_gs_base = data;
1328}
1329#endif
1330
Sean Christopherson5c911be2020-05-01 09:31:17 -07001331void vmx_vcpu_load_vmcs(struct kvm_vcpu *vcpu, int cpu,
1332 struct loaded_vmcs *buddy)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001333{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001334 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001335 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Sean Christopherson5c911be2020-05-01 09:31:17 -07001336 struct vmcs *prev;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001337
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001338 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01001339 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001340 local_irq_disable();
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001341
1342 /*
Sean Christopherson31603d42020-03-21 12:37:49 -07001343 * Ensure loaded_vmcs->cpu is read before adding loaded_vmcs to
1344 * this cpu's percpu list, otherwise it may not yet be deleted
1345 * from its previous cpu's percpu list. Pairs with the
1346 * smb_wmb() in __loaded_vmcs_clear().
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001347 */
1348 smp_rmb();
1349
Nadav Har'Eld462b812011-05-24 15:26:10 +03001350 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
1351 &per_cpu(loaded_vmcss_on_cpu, cpu));
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001352 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001353 }
1354
Sean Christopherson5c911be2020-05-01 09:31:17 -07001355 prev = per_cpu(current_vmcs, cpu);
1356 if (prev != vmx->loaded_vmcs->vmcs) {
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001357 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
1358 vmcs_load(vmx->loaded_vmcs->vmcs);
Sean Christopherson5c911be2020-05-01 09:31:17 -07001359
1360 /*
1361 * No indirect branch prediction barrier needed when switching
1362 * the active VMCS within a guest, e.g. on nested VM-Enter.
1363 * The L1 VMM can protect itself with retpolines, IBPB or IBRS.
1364 */
1365 if (!buddy || WARN_ON_ONCE(buddy->vmcs != prev))
1366 indirect_branch_prediction_barrier();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001367 }
1368
1369 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001370 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001371 unsigned long sysenter_esp;
1372
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07001373 /*
1374 * Flush all EPTP/VPID contexts, the new pCPU may have stale
1375 * TLB entries from its previous association with the vCPU.
1376 */
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001377 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001378
Avi Kivity6aa8b732006-12-10 02:21:36 -08001379 /*
1380 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001381 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001382 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001383 vmcs_writel(HOST_TR_BASE,
Andy Lutomirski72f5e082017-12-04 15:07:20 +01001384 (unsigned long)&get_cpu_entry_area(cpu)->tss.x86_tss);
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001385 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001386
1387 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
1388 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08001389
Nadav Har'Eld462b812011-05-24 15:26:10 +03001390 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001391 }
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001392}
1393
1394/*
1395 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
1396 * vcpu mutex is already taken.
1397 */
Sean Christopherson1af1bb02020-05-06 16:58:50 -07001398static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001399{
1400 struct vcpu_vmx *vmx = to_vmx(vcpu);
1401
Sean Christopherson5c911be2020-05-01 09:31:17 -07001402 vmx_vcpu_load_vmcs(vcpu, cpu, NULL);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001403
Feng Wu28b835d2015-09-18 22:29:54 +08001404 vmx_vcpu_pi_load(vcpu, cpu);
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001405
Wanpeng Li74c55932017-11-29 01:31:20 -08001406 vmx->host_debugctlmsr = get_debugctlmsr();
Feng Wu28b835d2015-09-18 22:29:54 +08001407}
1408
Sean Christopherson13b964a2019-05-07 09:06:31 -07001409static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001410{
Feng Wu28b835d2015-09-18 22:29:54 +08001411 vmx_vcpu_pi_put(vcpu);
1412
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001413 vmx_prepare_switch_to_host(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001414}
1415
Wanpeng Lif244dee2017-07-20 01:11:54 -07001416static bool emulation_required(struct kvm_vcpu *vcpu)
1417{
Sean Christopherson2ba44932020-09-23 11:44:48 -07001418 return emulate_invalid_guest_state && !vmx_guest_state_valid(vcpu);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001419}
1420
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001421unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001422{
Sean Christophersone7bddc52019-09-27 14:45:18 -07001423 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity78ac8b42010-04-08 18:19:35 +03001424 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03001425
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001426 if (!kvm_register_is_available(vcpu, VCPU_EXREG_RFLAGS)) {
1427 kvm_register_mark_available(vcpu, VCPU_EXREG_RFLAGS);
Avi Kivity6de12732011-03-07 12:51:22 +02001428 rflags = vmcs_readl(GUEST_RFLAGS);
Sean Christophersone7bddc52019-09-27 14:45:18 -07001429 if (vmx->rmode.vm86_active) {
Avi Kivity6de12732011-03-07 12:51:22 +02001430 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
Sean Christophersone7bddc52019-09-27 14:45:18 -07001431 save_rflags = vmx->rmode.save_rflags;
Avi Kivity6de12732011-03-07 12:51:22 +02001432 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
1433 }
Sean Christophersone7bddc52019-09-27 14:45:18 -07001434 vmx->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001435 }
Sean Christophersone7bddc52019-09-27 14:45:18 -07001436 return vmx->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001437}
1438
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001439void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001440{
Sean Christophersone7bddc52019-09-27 14:45:18 -07001441 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson491c1ad2019-09-27 14:45:19 -07001442 unsigned long old_rflags;
Wanpeng Lif244dee2017-07-20 01:11:54 -07001443
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00001444 if (is_unrestricted_guest(vcpu)) {
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001445 kvm_register_mark_available(vcpu, VCPU_EXREG_RFLAGS);
Sean Christopherson491c1ad2019-09-27 14:45:19 -07001446 vmx->rflags = rflags;
1447 vmcs_writel(GUEST_RFLAGS, rflags);
1448 return;
1449 }
1450
1451 old_rflags = vmx_get_rflags(vcpu);
Sean Christophersone7bddc52019-09-27 14:45:18 -07001452 vmx->rflags = rflags;
1453 if (vmx->rmode.vm86_active) {
1454 vmx->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001455 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001456 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001457 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001458
Sean Christophersone7bddc52019-09-27 14:45:18 -07001459 if ((old_rflags ^ vmx->rflags) & X86_EFLAGS_VM)
1460 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001461}
1462
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001463u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001464{
1465 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1466 int ret = 0;
1467
1468 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01001469 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001470 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01001471 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001472
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02001473 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001474}
1475
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001476void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001477{
1478 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1479 u32 interruptibility = interruptibility_old;
1480
1481 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
1482
Jan Kiszka48005f62010-02-19 19:38:07 +01001483 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001484 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01001485 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001486 interruptibility |= GUEST_INTR_STATE_STI;
1487
1488 if ((interruptibility != interruptibility_old))
1489 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
1490}
1491
Chao Pengbf8c55d2018-10-24 16:05:14 +08001492static int vmx_rtit_ctl_check(struct kvm_vcpu *vcpu, u64 data)
1493{
1494 struct vcpu_vmx *vmx = to_vmx(vcpu);
1495 unsigned long value;
1496
1497 /*
1498 * Any MSR write that attempts to change bits marked reserved will
1499 * case a #GP fault.
1500 */
1501 if (data & vmx->pt_desc.ctl_bitmask)
1502 return 1;
1503
1504 /*
1505 * Any attempt to modify IA32_RTIT_CTL while TraceEn is set will
1506 * result in a #GP unless the same write also clears TraceEn.
1507 */
1508 if ((vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) &&
1509 ((vmx->pt_desc.guest.ctl ^ data) & ~RTIT_CTL_TRACEEN))
1510 return 1;
1511
1512 /*
1513 * WRMSR to IA32_RTIT_CTL that sets TraceEn but clears this bit
1514 * and FabricEn would cause #GP, if
1515 * CPUID.(EAX=14H, ECX=0):ECX.SNGLRGNOUT[bit 2] = 0
1516 */
1517 if ((data & RTIT_CTL_TRACEEN) && !(data & RTIT_CTL_TOPA) &&
1518 !(data & RTIT_CTL_FABRIC_EN) &&
1519 !intel_pt_validate_cap(vmx->pt_desc.caps,
1520 PT_CAP_single_range_output))
1521 return 1;
1522
1523 /*
1524 * MTCFreq, CycThresh and PSBFreq encodings check, any MSR write that
Ingo Molnard9f6e122021-03-18 15:28:01 +01001525 * utilize encodings marked reserved will cause a #GP fault.
Chao Pengbf8c55d2018-10-24 16:05:14 +08001526 */
1527 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc_periods);
1528 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc) &&
1529 !test_bit((data & RTIT_CTL_MTC_RANGE) >>
1530 RTIT_CTL_MTC_RANGE_OFFSET, &value))
1531 return 1;
1532 value = intel_pt_validate_cap(vmx->pt_desc.caps,
1533 PT_CAP_cycle_thresholds);
1534 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1535 !test_bit((data & RTIT_CTL_CYC_THRESH) >>
1536 RTIT_CTL_CYC_THRESH_OFFSET, &value))
1537 return 1;
1538 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_periods);
1539 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1540 !test_bit((data & RTIT_CTL_PSB_FREQ) >>
1541 RTIT_CTL_PSB_FREQ_OFFSET, &value))
1542 return 1;
1543
1544 /*
1545 * If ADDRx_CFG is reserved or the encodings is >2 will
1546 * cause a #GP fault.
1547 */
1548 value = (data & RTIT_CTL_ADDR0) >> RTIT_CTL_ADDR0_OFFSET;
1549 if ((value && (vmx->pt_desc.addr_range < 1)) || (value > 2))
1550 return 1;
1551 value = (data & RTIT_CTL_ADDR1) >> RTIT_CTL_ADDR1_OFFSET;
1552 if ((value && (vmx->pt_desc.addr_range < 2)) || (value > 2))
1553 return 1;
1554 value = (data & RTIT_CTL_ADDR2) >> RTIT_CTL_ADDR2_OFFSET;
1555 if ((value && (vmx->pt_desc.addr_range < 3)) || (value > 2))
1556 return 1;
1557 value = (data & RTIT_CTL_ADDR3) >> RTIT_CTL_ADDR3_OFFSET;
1558 if ((value && (vmx->pt_desc.addr_range < 4)) || (value > 2))
1559 return 1;
1560
1561 return 0;
1562}
1563
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07001564static bool vmx_can_emulate_instruction(struct kvm_vcpu *vcpu, void *insn, int insn_len)
1565{
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001566 /*
1567 * Emulation of instructions in SGX enclaves is impossible as RIP does
1568 * not point tthe failing instruction, and even if it did, the code
1569 * stream is inaccessible. Inject #UD instead of exiting to userspace
1570 * so that guest userspace can't DoS the guest simply by triggering
1571 * emulation (enclaves are CPL3 only).
1572 */
1573 if (to_vmx(vcpu)->exit_reason.enclave_mode) {
1574 kvm_queue_exception(vcpu, UD_VECTOR);
1575 return false;
1576 }
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07001577 return true;
1578}
1579
Sean Christopherson1957aa62019-08-27 14:40:39 -07001580static int skip_emulated_instruction(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001581{
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001582 union vmx_exit_reason exit_reason = to_vmx(vcpu)->exit_reason;
Paolo Bonzinifede8072020-04-27 11:55:59 -04001583 unsigned long rip, orig_rip;
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001584 u32 instr_len;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001585
Sean Christopherson1957aa62019-08-27 14:40:39 -07001586 /*
1587 * Using VMCS.VM_EXIT_INSTRUCTION_LEN on EPT misconfig depends on
1588 * undefined behavior: Intel's SDM doesn't mandate the VMCS field be
1589 * set when EPT misconfig occurs. In practice, real hardware updates
1590 * VM_EXIT_INSTRUCTION_LEN on EPT misconfig, but other hypervisors
1591 * (namely Hyper-V) don't set it due to it being undefined behavior,
1592 * i.e. we end up advancing IP with some random value.
1593 */
1594 if (!static_cpu_has(X86_FEATURE_HYPERVISOR) ||
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001595 exit_reason.basic != EXIT_REASON_EPT_MISCONFIG) {
1596 instr_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
1597
1598 /*
1599 * Emulating an enclave's instructions isn't supported as KVM
1600 * cannot access the enclave's memory or its true RIP, e.g. the
1601 * vmcs.GUEST_RIP points at the exit point of the enclave, not
1602 * the RIP that actually triggered the VM-Exit. But, because
1603 * most instructions that cause VM-Exit will #UD in an enclave,
1604 * most instruction-based VM-Exits simply do not occur.
1605 *
1606 * There are a few exceptions, notably the debug instructions
1607 * INT1ICEBRK and INT3, as they are allowed in debug enclaves
1608 * and generate #DB/#BP as expected, which KVM might intercept.
1609 * But again, the CPU does the dirty work and saves an instr
1610 * length of zero so VMMs don't shoot themselves in the foot.
1611 * WARN if KVM tries to skip a non-zero length instruction on
1612 * a VM-Exit from an enclave.
1613 */
1614 if (!instr_len)
1615 goto rip_updated;
1616
1617 WARN(exit_reason.enclave_mode,
1618 "KVM: skipping instruction after SGX enclave VM-Exit");
1619
Paolo Bonzinifede8072020-04-27 11:55:59 -04001620 orig_rip = kvm_rip_read(vcpu);
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001621 rip = orig_rip + instr_len;
Paolo Bonzinifede8072020-04-27 11:55:59 -04001622#ifdef CONFIG_X86_64
1623 /*
1624 * We need to mask out the high 32 bits of RIP if not in 64-bit
1625 * mode, but just finding out that we are in 64-bit mode is
1626 * quite expensive. Only do it if there was a carry.
1627 */
1628 if (unlikely(((rip ^ orig_rip) >> 31) == 3) && !is_64_bit_mode(vcpu))
1629 rip = (u32)rip;
1630#endif
Sean Christopherson1957aa62019-08-27 14:40:39 -07001631 kvm_rip_write(vcpu, rip);
1632 } else {
1633 if (!kvm_emulate_instruction(vcpu, EMULTYPE_SKIP))
1634 return 0;
1635 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001636
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001637rip_updated:
Glauber Costa2809f5d2009-05-12 16:21:05 -04001638 /* skipping an emulated instruction also counts */
1639 vmx_set_interrupt_shadow(vcpu, 0);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02001640
Sean Christopherson60fc3d02019-08-27 14:40:38 -07001641 return 1;
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02001642}
1643
Vitaly Kuznetsov7a35e512020-06-05 13:59:05 +02001644/*
Oliver Upton5ef8acb2020-02-07 02:36:07 -08001645 * Recognizes a pending MTF VM-exit and records the nested state for later
1646 * delivery.
1647 */
1648static void vmx_update_emulated_instruction(struct kvm_vcpu *vcpu)
1649{
1650 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1651 struct vcpu_vmx *vmx = to_vmx(vcpu);
1652
1653 if (!is_guest_mode(vcpu))
1654 return;
1655
1656 /*
1657 * Per the SDM, MTF takes priority over debug-trap exceptions besides
1658 * T-bit traps. As instruction emulation is completed (i.e. at the
1659 * instruction boundary), any #DB exception pending delivery must be a
1660 * debug-trap. Record the pending MTF state to be delivered in
1661 * vmx_check_nested_events().
1662 */
1663 if (nested_cpu_has_mtf(vmcs12) &&
1664 (!vcpu->arch.exception.pending ||
1665 vcpu->arch.exception.nr == DB_VECTOR))
1666 vmx->nested.mtf_pending = true;
1667 else
1668 vmx->nested.mtf_pending = false;
1669}
1670
1671static int vmx_skip_emulated_instruction(struct kvm_vcpu *vcpu)
1672{
1673 vmx_update_emulated_instruction(vcpu);
1674 return skip_emulated_instruction(vcpu);
1675}
1676
Wanpeng Licaa057a2018-03-12 04:53:03 -07001677static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
1678{
1679 /*
1680 * Ensure that we clear the HLT state in the VMCS. We don't need to
1681 * explicitly skip the instruction because if the HLT state is set,
1682 * then the instruction is already executing and RIP has already been
1683 * advanced.
1684 */
1685 if (kvm_hlt_in_guest(vcpu->kvm) &&
1686 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
1687 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
1688}
1689
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001690static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02001691{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001692 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001693 unsigned nr = vcpu->arch.exception.nr;
1694 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001695 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001696 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001697
Jim Mattsonda998b42018-10-16 14:29:22 -07001698 kvm_deliver_exception_payload(vcpu);
1699
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001700 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001701 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001702 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
1703 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001704
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001705 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05001706 int inc_eip = 0;
1707 if (kvm_exception_is_soft(nr))
1708 inc_eip = vcpu->arch.event_exit_inst_len;
Sean Christopherson9497e1f2019-08-27 14:40:36 -07001709 kvm_inject_realmode_interrupt(vcpu, nr, inc_eip);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001710 return;
1711 }
1712
Sean Christophersonadd5ff72018-03-23 09:34:00 -07001713 WARN_ON_ONCE(vmx->emulation_required);
1714
Gleb Natapov66fd3f72009-05-11 13:35:50 +03001715 if (kvm_exception_is_soft(nr)) {
1716 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
1717 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001718 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
1719 } else
1720 intr_info |= INTR_TYPE_HARD_EXCEPTION;
1721
1722 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Wanpeng Licaa057a2018-03-12 04:53:03 -07001723
1724 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02001725}
1726
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001727static void vmx_setup_uret_msr(struct vcpu_vmx *vmx, unsigned int msr,
1728 bool load_into_hardware)
Eddie Donga75beee2007-05-17 18:55:15 +03001729{
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001730 struct vmx_uret_msr *uret_msr;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001731
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001732 uret_msr = vmx_find_uret_msr(vmx, msr);
1733 if (!uret_msr)
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001734 return;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001735
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001736 uret_msr->load_into_hardware = load_into_hardware;
Eddie Donga75beee2007-05-17 18:55:15 +03001737}
1738
1739/*
Avi Kivitye38aea32007-04-19 13:22:48 +03001740 * Set up the vmcs to automatically save and restore system
1741 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
1742 * mode, as fiddling with msrs is very expensive.
1743 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001744static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03001745{
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001746#ifdef CONFIG_X86_64
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001747 bool load_syscall_msrs;
1748
Jim Mattson84c8c5b2018-12-05 15:29:01 -08001749 /*
1750 * The SYSCALL MSRs are only needed on long mode guests, and only
1751 * when EFER.SCE is set.
1752 */
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001753 load_syscall_msrs = is_long_mode(&vmx->vcpu) &&
1754 (vmx->vcpu.arch.efer & EFER_SCE);
1755
1756 vmx_setup_uret_msr(vmx, MSR_STAR, load_syscall_msrs);
1757 vmx_setup_uret_msr(vmx, MSR_LSTAR, load_syscall_msrs);
1758 vmx_setup_uret_msr(vmx, MSR_SYSCALL_MASK, load_syscall_msrs);
Eddie Donga75beee2007-05-17 18:55:15 +03001759#endif
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001760 vmx_setup_uret_msr(vmx, MSR_EFER, update_transition_efer(vmx));
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001761
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001762 vmx_setup_uret_msr(vmx, MSR_TSC_AUX,
1763 guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP) ||
1764 guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDPID));
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001765
Sean Christopherson5e17c622021-05-04 10:17:30 -07001766 /*
1767 * hle=0, rtm=0, tsx_ctrl=1 can be found with some combinations of new
1768 * kernel and old userspace. If those guests run on a tsx=off host, do
1769 * allow guests to use TSX_CTRL, but don't change the value in hardware
1770 * so that TSX remains always disabled.
1771 */
1772 vmx_setup_uret_msr(vmx, MSR_IA32_TSX_CTRL, boot_cpu_has(X86_FEATURE_RTM));
Avi Kivity58972972009-02-24 22:26:47 +02001773
Yang Zhang8d146952013-01-25 10:18:50 +08001774 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01001775 vmx_update_msr_bitmap(&vmx->vcpu);
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001776
1777 /*
1778 * The set of MSRs to load may have changed, reload MSRs before the
1779 * next VM-Enter.
1780 */
1781 vmx->guest_uret_msrs_loaded = false;
Avi Kivitye38aea32007-04-19 13:22:48 +03001782}
1783
Ilias Stamatis307a94c2021-05-26 19:44:13 +01001784u64 vmx_get_l2_tsc_offset(struct kvm_vcpu *vcpu)
1785{
1786 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1787
1788 if (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETTING))
1789 return vmcs12->tsc_offset;
1790
1791 return 0;
1792}
1793
1794u64 vmx_get_l2_tsc_multiplier(struct kvm_vcpu *vcpu)
1795{
1796 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1797
1798 if (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETTING) &&
1799 nested_cpu_has2(vmcs12, SECONDARY_EXEC_TSC_SCALING))
1800 return vmcs12->tsc_multiplier;
1801
1802 return kvm_default_tsc_scaling_ratio;
1803}
1804
Ilias Stamatisedcfe542021-05-26 19:44:15 +01001805static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001806{
Ilias Stamatisedcfe542021-05-26 19:44:15 +01001807 vmcs_write64(TSC_OFFSET, offset);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001808}
1809
Ilias Stamatis1ab92872021-06-07 11:54:38 +01001810static void vmx_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 multiplier)
1811{
1812 vmcs_write64(TSC_MULTIPLIER, multiplier);
1813}
1814
Nadav Har'El801d3422011-05-25 23:02:23 +03001815/*
1816 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
1817 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
1818 * all guests if the "nested" module option is off, and can also be disabled
1819 * for a single guest by disabling its VMX cpuid bit.
1820 */
Sean Christopherson7c97fcb2018-12-03 13:53:17 -08001821bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
Nadav Har'El801d3422011-05-25 23:02:23 +03001822{
Radim Krčmářd6321d42017-08-05 00:12:49 +02001823 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03001824}
1825
Haozhong Zhang37e4c992016-06-22 14:59:55 +08001826static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
1827 uint64_t val)
1828{
1829 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
1830
1831 return !(val & ~valid_bits);
1832}
1833
Tom Lendacky801e4592018-02-21 13:39:51 -06001834static int vmx_get_msr_feature(struct kvm_msr_entry *msr)
1835{
Paolo Bonzini13893092018-02-26 13:40:09 +01001836 switch (msr->index) {
1837 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1838 if (!nested)
1839 return 1;
1840 return vmx_get_vmx_msr(&vmcs_config.nested, msr->index, &msr->data);
Like Xu27461da32020-05-29 15:43:45 +08001841 case MSR_IA32_PERF_CAPABILITIES:
1842 msr->data = vmx_get_perf_capabilities();
1843 return 0;
Paolo Bonzini13893092018-02-26 13:40:09 +01001844 default:
Peter Xu12bc2132020-06-22 18:04:42 -04001845 return KVM_MSR_RET_INVALID;
Paolo Bonzini13893092018-02-26 13:40:09 +01001846 }
Tom Lendacky801e4592018-02-21 13:39:51 -06001847}
1848
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001849/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001850 * Reads an msr value (of 'msr_index') into 'pdata'.
1851 * Returns 0 on success, non-0 otherwise.
1852 * Assumes vcpu_load() was already called.
1853 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001854static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001855{
Borislav Petkova6cb0992017-12-20 12:50:28 +01001856 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001857 struct vmx_uret_msr *msr;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001858 u32 index;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001859
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001860 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001861#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001862 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001863 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001864 break;
1865 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001866 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001867 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001868 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001869 msr_info->data = vmx_read_guest_kernel_gs_base(vmx);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001870 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03001871#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001872 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001873 return kvm_get_msr_common(vcpu, msr_info);
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05001874 case MSR_IA32_TSX_CTRL:
1875 if (!msr_info->host_initiated &&
1876 !(vcpu->arch.arch_capabilities & ARCH_CAP_TSX_CTRL_MSR))
1877 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001878 goto find_uret_msr;
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001879 case MSR_IA32_UMWAIT_CONTROL:
1880 if (!msr_info->host_initiated && !vmx_has_waitpkg(vmx))
1881 return 1;
1882
1883 msr_info->data = vmx->msr_ia32_umwait_control;
1884 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001885 case MSR_IA32_SPEC_CTRL:
1886 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05001887 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001888 return 1;
1889
1890 msr_info->data = to_vmx(vcpu)->spec_ctrl;
1891 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001892 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001893 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001894 break;
1895 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001896 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001897 break;
1898 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001899 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001900 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001901 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08001902 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02001903 (!msr_info->host_initiated &&
1904 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01001905 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001906 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001907 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001908 case MSR_IA32_MCG_EXT_CTL:
1909 if (!msr_info->host_initiated &&
Borislav Petkova6cb0992017-12-20 12:50:28 +01001910 !(vmx->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001911 FEAT_CTL_LMCE_ENABLED))
Jan Kiszkacae50132014-01-04 18:47:22 +01001912 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001913 msr_info->data = vcpu->arch.mcg_ext_ctl;
1914 break;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001915 case MSR_IA32_FEAT_CTL:
Borislav Petkova6cb0992017-12-20 12:50:28 +01001916 msr_info->data = vmx->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01001917 break;
Sean Christopherson8f102442021-04-12 16:21:40 +12001918 case MSR_IA32_SGXLEPUBKEYHASH0 ... MSR_IA32_SGXLEPUBKEYHASH3:
1919 if (!msr_info->host_initiated &&
1920 !guest_cpuid_has(vcpu, X86_FEATURE_SGX_LC))
1921 return 1;
1922 msr_info->data = to_vmx(vcpu)->msr_ia32_sgxlepubkeyhash
1923 [msr_info->index - MSR_IA32_SGXLEPUBKEYHASH0];
1924 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01001925 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1926 if (!nested_vmx_allowed(vcpu))
1927 return 1;
Vitaly Kuznetsov31de3d22020-02-05 13:30:33 +01001928 if (vmx_get_vmx_msr(&vmx->nested.msrs, msr_info->index,
1929 &msr_info->data))
1930 return 1;
1931 /*
1932 * Enlightened VMCS v1 doesn't have certain fields, but buggy
1933 * Hyper-V versions are still trying to use corresponding
1934 * features when they are exposed. Filter out the essential
1935 * minimum.
1936 */
1937 if (!msr_info->host_initiated &&
1938 vmx->nested.enlightened_vmcs_enabled)
1939 nested_evmcs_filter_control_msr(msr_info->index,
1940 &msr_info->data);
1941 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001942 case MSR_IA32_RTIT_CTL:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001943 if (!vmx_pt_mode_is_host_guest())
Chao Pengbf8c55d2018-10-24 16:05:14 +08001944 return 1;
1945 msr_info->data = vmx->pt_desc.guest.ctl;
1946 break;
1947 case MSR_IA32_RTIT_STATUS:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001948 if (!vmx_pt_mode_is_host_guest())
Chao Pengbf8c55d2018-10-24 16:05:14 +08001949 return 1;
1950 msr_info->data = vmx->pt_desc.guest.status;
1951 break;
1952 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001953 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001954 !intel_pt_validate_cap(vmx->pt_desc.caps,
1955 PT_CAP_cr3_filtering))
1956 return 1;
1957 msr_info->data = vmx->pt_desc.guest.cr3_match;
1958 break;
1959 case MSR_IA32_RTIT_OUTPUT_BASE:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001960 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001961 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1962 PT_CAP_topa_output) &&
1963 !intel_pt_validate_cap(vmx->pt_desc.caps,
1964 PT_CAP_single_range_output)))
1965 return 1;
1966 msr_info->data = vmx->pt_desc.guest.output_base;
1967 break;
1968 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001969 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001970 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1971 PT_CAP_topa_output) &&
1972 !intel_pt_validate_cap(vmx->pt_desc.caps,
1973 PT_CAP_single_range_output)))
1974 return 1;
1975 msr_info->data = vmx->pt_desc.guest.output_mask;
1976 break;
1977 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
1978 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
Sean Christopherson2ef76192020-03-02 15:56:22 -08001979 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001980 (index >= 2 * intel_pt_validate_cap(vmx->pt_desc.caps,
1981 PT_CAP_num_address_ranges)))
1982 return 1;
1983 if (index % 2)
1984 msr_info->data = vmx->pt_desc.guest.addr_b[index / 2];
1985 else
1986 msr_info->data = vmx->pt_desc.guest.addr_a[index / 2];
1987 break;
Like Xud8550662021-01-08 09:36:55 +08001988 case MSR_IA32_DEBUGCTLMSR:
1989 msr_info->data = vmcs_read64(GUEST_IA32_DEBUGCTL);
1990 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001991 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001992 find_uret_msr:
Sean Christophersond85a8032020-09-23 11:04:06 -07001993 msr = vmx_find_uret_msr(vmx, msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001994 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001995 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001996 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001997 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001998 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001999 }
2000
Avi Kivity6aa8b732006-12-10 02:21:36 -08002001 return 0;
2002}
2003
Sean Christopherson24085002020-04-28 16:10:24 -07002004static u64 nested_vmx_truncate_sysenter_addr(struct kvm_vcpu *vcpu,
2005 u64 data)
2006{
2007#ifdef CONFIG_X86_64
2008 if (!guest_cpuid_has(vcpu, X86_FEATURE_LM))
2009 return (u32)data;
2010#endif
2011 return (unsigned long)data;
2012}
2013
Like Xuc6462362021-02-01 13:10:31 +08002014static u64 vcpu_supported_debugctl(struct kvm_vcpu *vcpu)
2015{
2016 u64 debugctl = vmx_supported_debugctl();
2017
2018 if (!intel_pmu_lbr_is_enabled(vcpu))
Like Xue6209a32021-02-01 13:10:36 +08002019 debugctl &= ~DEBUGCTLMSR_LBR_MASK;
Like Xuc6462362021-02-01 13:10:31 +08002020
Paolo Bonzini76ea4382021-05-06 06:30:04 -04002021 if (!guest_cpuid_has(vcpu, X86_FEATURE_BUS_LOCK_DETECT))
2022 debugctl &= ~DEBUGCTLMSR_BUS_LOCK_DETECT;
2023
Like Xuc6462362021-02-01 13:10:31 +08002024 return debugctl;
2025}
2026
Avi Kivity6aa8b732006-12-10 02:21:36 -08002027/*
Miaohe Lin311497e2019-12-11 14:26:25 +08002028 * Writes msr value into the appropriate "register".
Avi Kivity6aa8b732006-12-10 02:21:36 -08002029 * Returns 0 on success, non-0 otherwise.
2030 * Assumes vcpu_load() was already called.
2031 */
Will Auld8fe8ab42012-11-29 12:42:12 -08002032static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002033{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002034 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002035 struct vmx_uret_msr *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03002036 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08002037 u32 msr_index = msr_info->index;
2038 u64 data = msr_info->data;
Chao Pengbf8c55d2018-10-24 16:05:14 +08002039 u32 index;
Eddie Dong2cc51562007-05-21 07:28:09 +03002040
Avi Kivity6aa8b732006-12-10 02:21:36 -08002041 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08002042 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08002043 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03002044 break;
Avi Kivity16175a72009-03-23 22:13:44 +02002045#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002046 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002047 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002048 vmcs_writel(GUEST_FS_BASE, data);
2049 break;
2050 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002051 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002052 vmcs_writel(GUEST_GS_BASE, data);
2053 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002054 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07002055 vmx_write_guest_kernel_gs_base(vmx, data);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002056 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002057#endif
2058 case MSR_IA32_SYSENTER_CS:
Sean Christophersonde70d272019-05-07 09:06:36 -07002059 if (is_guest_mode(vcpu))
2060 get_vmcs12(vcpu)->guest_sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002061 vmcs_write32(GUEST_SYSENTER_CS, data);
2062 break;
2063 case MSR_IA32_SYSENTER_EIP:
Sean Christopherson24085002020-04-28 16:10:24 -07002064 if (is_guest_mode(vcpu)) {
2065 data = nested_vmx_truncate_sysenter_addr(vcpu, data);
Sean Christophersonde70d272019-05-07 09:06:36 -07002066 get_vmcs12(vcpu)->guest_sysenter_eip = data;
Sean Christopherson24085002020-04-28 16:10:24 -07002067 }
Avi Kivityf5b42c32007-03-06 12:05:53 +02002068 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002069 break;
2070 case MSR_IA32_SYSENTER_ESP:
Sean Christopherson24085002020-04-28 16:10:24 -07002071 if (is_guest_mode(vcpu)) {
2072 data = nested_vmx_truncate_sysenter_addr(vcpu, data);
Sean Christophersonde70d272019-05-07 09:06:36 -07002073 get_vmcs12(vcpu)->guest_sysenter_esp = data;
Sean Christopherson24085002020-04-28 16:10:24 -07002074 }
Avi Kivityf5b42c32007-03-06 12:05:53 +02002075 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002076 break;
Like Xud8550662021-01-08 09:36:55 +08002077 case MSR_IA32_DEBUGCTLMSR: {
Like Xuc6462362021-02-01 13:10:31 +08002078 u64 invalid = data & ~vcpu_supported_debugctl(vcpu);
Like Xud8550662021-01-08 09:36:55 +08002079 if (invalid & (DEBUGCTLMSR_BTF|DEBUGCTLMSR_LBR)) {
2080 if (report_ignored_msrs)
2081 vcpu_unimpl(vcpu, "%s: BTF|LBR in IA32_DEBUGCTLMSR 0x%llx, nop\n",
2082 __func__, data);
2083 data &= ~(DEBUGCTLMSR_BTF|DEBUGCTLMSR_LBR);
2084 invalid &= ~(DEBUGCTLMSR_BTF|DEBUGCTLMSR_LBR);
2085 }
2086
2087 if (invalid)
2088 return 1;
2089
Sean Christopherson699a1ac2019-05-07 09:06:37 -07002090 if (is_guest_mode(vcpu) && get_vmcs12(vcpu)->vm_exit_controls &
2091 VM_EXIT_SAVE_DEBUG_CONTROLS)
2092 get_vmcs12(vcpu)->guest_ia32_debugctl = data;
2093
Like Xud8550662021-01-08 09:36:55 +08002094 vmcs_write64(GUEST_IA32_DEBUGCTL, data);
Like Xu8e129112021-02-01 13:10:33 +08002095 if (intel_pmu_lbr_is_enabled(vcpu) && !to_vmx(vcpu)->lbr_desc.event &&
2096 (data & DEBUGCTLMSR_LBR))
2097 intel_pmu_create_guest_lbr_event(vcpu);
Like Xud8550662021-01-08 09:36:55 +08002098 return 0;
2099 }
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002100 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08002101 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02002102 (!msr_info->host_initiated &&
2103 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002104 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08002105 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07002106 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002107 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08002108 vmcs_write64(GUEST_BNDCFGS, data);
2109 break;
Tao Xu6e3ba4a2019-07-16 14:55:50 +08002110 case MSR_IA32_UMWAIT_CONTROL:
2111 if (!msr_info->host_initiated && !vmx_has_waitpkg(vmx))
2112 return 1;
2113
2114 /* The reserved bit 1 and non-32 bit [63:32] should be zero */
2115 if (data & (BIT_ULL(1) | GENMASK_ULL(63, 32)))
2116 return 1;
2117
2118 vmx->msr_ia32_umwait_control = data;
2119 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002120 case MSR_IA32_SPEC_CTRL:
2121 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002122 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002123 return 1;
2124
Maxim Levitsky841c2be2020-07-08 14:57:31 +03002125 if (kvm_spec_ctrl_test_value(data))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002126 return 1;
2127
2128 vmx->spec_ctrl = data;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002129 if (!data)
2130 break;
2131
2132 /*
2133 * For non-nested:
2134 * When it's written (to non-zero) for the first time, pass
2135 * it through.
2136 *
2137 * For nested:
2138 * The handling of the MSR bitmap for L2 guests is done in
Miaohe Lin4d516fe2019-12-11 14:26:21 +08002139 * nested_vmx_prepare_msr_bitmap. We should not touch the
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002140 * vmcs02.msr_bitmap here since it gets completely overwritten
2141 * in the merging. We update the vmcs01 here for L1 as well
2142 * since it will end up touching the MSR anyway now.
2143 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002144 vmx_disable_intercept_for_msr(vcpu,
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002145 MSR_IA32_SPEC_CTRL,
2146 MSR_TYPE_RW);
2147 break;
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05002148 case MSR_IA32_TSX_CTRL:
2149 if (!msr_info->host_initiated &&
2150 !(vcpu->arch.arch_capabilities & ARCH_CAP_TSX_CTRL_MSR))
2151 return 1;
2152 if (data & ~(TSX_CTRL_RTM_DISABLE | TSX_CTRL_CPUID_CLEAR))
2153 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002154 goto find_uret_msr;
Ashok Raj15d45072018-02-01 22:59:43 +01002155 case MSR_IA32_PRED_CMD:
2156 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002157 !guest_has_pred_cmd_msr(vcpu))
Ashok Raj15d45072018-02-01 22:59:43 +01002158 return 1;
2159
2160 if (data & ~PRED_CMD_IBPB)
2161 return 1;
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002162 if (!boot_cpu_has(X86_FEATURE_IBPB))
Paolo Bonzini6441fa62020-01-20 16:33:06 +01002163 return 1;
Ashok Raj15d45072018-02-01 22:59:43 +01002164 if (!data)
2165 break;
2166
2167 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
2168
2169 /*
2170 * For non-nested:
2171 * When it's written (to non-zero) for the first time, pass
2172 * it through.
2173 *
2174 * For nested:
2175 * The handling of the MSR bitmap for L2 guests is done in
Miaohe Lin4d516fe2019-12-11 14:26:21 +08002176 * nested_vmx_prepare_msr_bitmap. We should not touch the
Ashok Raj15d45072018-02-01 22:59:43 +01002177 * vmcs02.msr_bitmap here since it gets completely overwritten
2178 * in the merging.
2179 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002180 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_PRED_CMD, MSR_TYPE_W);
Ashok Raj15d45072018-02-01 22:59:43 +01002181 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002182 case MSR_IA32_CR_PAT:
Sean Christophersond28f4292019-05-07 09:06:27 -07002183 if (!kvm_pat_valid(data))
2184 return 1;
2185
Sean Christopherson142e4be2019-05-07 09:06:35 -07002186 if (is_guest_mode(vcpu) &&
2187 get_vmcs12(vcpu)->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
2188 get_vmcs12(vcpu)->guest_ia32_pat = data;
2189
Sheng Yang468d4722008-10-09 16:01:55 +08002190 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2191 vmcs_write64(GUEST_IA32_PAT, data);
2192 vcpu->arch.pat = data;
2193 break;
2194 }
Will Auld8fe8ab42012-11-29 12:42:12 -08002195 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002196 break;
Will Auldba904632012-11-29 12:42:50 -08002197 case MSR_IA32_TSC_ADJUST:
2198 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002199 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002200 case MSR_IA32_MCG_EXT_CTL:
2201 if ((!msr_info->host_initiated &&
2202 !(to_vmx(vcpu)->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002203 FEAT_CTL_LMCE_ENABLED)) ||
Ashok Rajc45dcc72016-06-22 14:59:56 +08002204 (data & ~MCG_EXT_CTL_LMCE_EN))
2205 return 1;
2206 vcpu->arch.mcg_ext_ctl = data;
2207 break;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002208 case MSR_IA32_FEAT_CTL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08002209 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08002210 (to_vmx(vcpu)->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002211 FEAT_CTL_LOCKED && !msr_info->host_initiated))
Jan Kiszkacae50132014-01-04 18:47:22 +01002212 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08002213 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01002214 if (msr_info->host_initiated && data == 0)
2215 vmx_leave_nested(vcpu);
Sean Christopherson72add912021-04-12 16:21:42 +12002216
2217 /* SGX may be enabled/disabled by guest's firmware */
2218 vmx_write_encls_bitmap(vcpu, NULL);
Jan Kiszkacae50132014-01-04 18:47:22 +01002219 break;
Sean Christopherson8f102442021-04-12 16:21:40 +12002220 case MSR_IA32_SGXLEPUBKEYHASH0 ... MSR_IA32_SGXLEPUBKEYHASH3:
2221 /*
2222 * On real hardware, the LE hash MSRs are writable before
2223 * the firmware sets bit 0 in MSR 0x7a ("activating" SGX),
2224 * at which point SGX related bits in IA32_FEATURE_CONTROL
2225 * become writable.
2226 *
2227 * KVM does not emulate SGX activation for simplicity, so
2228 * allow writes to the LE hash MSRs if IA32_FEATURE_CONTROL
2229 * is unlocked. This is technically not architectural
2230 * behavior, but it's close enough.
2231 */
2232 if (!msr_info->host_initiated &&
2233 (!guest_cpuid_has(vcpu, X86_FEATURE_SGX_LC) ||
2234 ((vmx->msr_ia32_feature_control & FEAT_CTL_LOCKED) &&
2235 !(vmx->msr_ia32_feature_control & FEAT_CTL_SGX_LC_ENABLED))))
2236 return 1;
2237 vmx->msr_ia32_sgxlepubkeyhash
2238 [msr_index - MSR_IA32_SGXLEPUBKEYHASH0] = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01002239 break;
2240 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08002241 if (!msr_info->host_initiated)
2242 return 1; /* they are read-only */
2243 if (!nested_vmx_allowed(vcpu))
2244 return 1;
2245 return vmx_set_vmx_msr(vcpu, msr_index, data);
Chao Pengbf8c55d2018-10-24 16:05:14 +08002246 case MSR_IA32_RTIT_CTL:
Sean Christopherson2ef76192020-03-02 15:56:22 -08002247 if (!vmx_pt_mode_is_host_guest() ||
Luwei Kangee85dec2018-10-24 16:05:16 +08002248 vmx_rtit_ctl_check(vcpu, data) ||
2249 vmx->nested.vmxon)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002250 return 1;
2251 vmcs_write64(GUEST_IA32_RTIT_CTL, data);
2252 vmx->pt_desc.guest.ctl = data;
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002253 pt_update_intercept_for_msr(vcpu);
Chao Pengbf8c55d2018-10-24 16:05:14 +08002254 break;
2255 case MSR_IA32_RTIT_STATUS:
Sean Christophersone348ac72019-12-10 15:24:33 -08002256 if (!pt_can_write_msr(vmx))
2257 return 1;
2258 if (data & MSR_IA32_RTIT_STATUS_MASK)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002259 return 1;
2260 vmx->pt_desc.guest.status = data;
2261 break;
2262 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christophersone348ac72019-12-10 15:24:33 -08002263 if (!pt_can_write_msr(vmx))
2264 return 1;
2265 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2266 PT_CAP_cr3_filtering))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002267 return 1;
2268 vmx->pt_desc.guest.cr3_match = data;
2269 break;
2270 case MSR_IA32_RTIT_OUTPUT_BASE:
Sean Christophersone348ac72019-12-10 15:24:33 -08002271 if (!pt_can_write_msr(vmx))
2272 return 1;
2273 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2274 PT_CAP_topa_output) &&
2275 !intel_pt_validate_cap(vmx->pt_desc.caps,
2276 PT_CAP_single_range_output))
2277 return 1;
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07002278 if (!pt_output_base_valid(vcpu, data))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002279 return 1;
2280 vmx->pt_desc.guest.output_base = data;
2281 break;
2282 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christophersone348ac72019-12-10 15:24:33 -08002283 if (!pt_can_write_msr(vmx))
2284 return 1;
2285 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2286 PT_CAP_topa_output) &&
2287 !intel_pt_validate_cap(vmx->pt_desc.caps,
2288 PT_CAP_single_range_output))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002289 return 1;
2290 vmx->pt_desc.guest.output_mask = data;
2291 break;
2292 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christophersone348ac72019-12-10 15:24:33 -08002293 if (!pt_can_write_msr(vmx))
2294 return 1;
Chao Pengbf8c55d2018-10-24 16:05:14 +08002295 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
Sean Christophersone348ac72019-12-10 15:24:33 -08002296 if (index >= 2 * intel_pt_validate_cap(vmx->pt_desc.caps,
2297 PT_CAP_num_address_ranges))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002298 return 1;
Sean Christophersonfe6ed362019-12-10 15:24:32 -08002299 if (is_noncanonical_address(data, vcpu))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002300 return 1;
2301 if (index % 2)
2302 vmx->pt_desc.guest.addr_b[index / 2] = data;
2303 else
2304 vmx->pt_desc.guest.addr_a[index / 2] = data;
2305 break;
Paolo Bonzini9c9520c2021-02-02 09:36:08 -05002306 case MSR_IA32_PERF_CAPABILITIES:
2307 if (data && !vcpu_to_pmu(vcpu)->version)
2308 return 1;
2309 if (data & PMU_CAP_LBR_FMT) {
2310 if ((data & PMU_CAP_LBR_FMT) !=
2311 (vmx_get_perf_capabilities() & PMU_CAP_LBR_FMT))
2312 return 1;
2313 if (!intel_pmu_lbr_is_compatible(vcpu))
2314 return 1;
2315 }
2316 ret = kvm_set_msr_common(vcpu, msr_info);
2317 break;
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05002318
Avi Kivity6aa8b732006-12-10 02:21:36 -08002319 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002320 find_uret_msr:
Sean Christophersond85a8032020-09-23 11:04:06 -07002321 msr = vmx_find_uret_msr(vmx, msr_index);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05002322 if (msr)
Sean Christopherson7bf662b2020-09-23 11:04:07 -07002323 ret = vmx_set_guest_uret_msr(vmx, msr, data);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05002324 else
2325 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002326 }
2327
Eddie Dong2cc51562007-05-21 07:28:09 +03002328 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002329}
2330
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002331static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002332{
Sean Christophersonf98c1e72020-05-01 21:32:30 -07002333 unsigned long guest_owned_bits;
2334
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002335 kvm_register_mark_available(vcpu, reg);
2336
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002337 switch (reg) {
2338 case VCPU_REGS_RSP:
2339 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
2340 break;
2341 case VCPU_REGS_RIP:
2342 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
2343 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002344 case VCPU_EXREG_PDPTR:
2345 if (enable_ept)
2346 ept_save_pdptrs(vcpu);
2347 break;
Sean Christophersonbd31fe42020-05-01 21:32:31 -07002348 case VCPU_EXREG_CR0:
2349 guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
2350
2351 vcpu->arch.cr0 &= ~guest_owned_bits;
2352 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & guest_owned_bits;
2353 break;
Sean Christopherson34059c22019-09-27 14:45:23 -07002354 case VCPU_EXREG_CR3:
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00002355 if (is_unrestricted_guest(vcpu) ||
2356 (enable_ept && is_paging(vcpu)))
Sean Christopherson34059c22019-09-27 14:45:23 -07002357 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2358 break;
Sean Christophersonf98c1e72020-05-01 21:32:30 -07002359 case VCPU_EXREG_CR4:
2360 guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
2361
2362 vcpu->arch.cr4 &= ~guest_owned_bits;
2363 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & guest_owned_bits;
2364 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002365 default:
Sean Christopherson34059c22019-09-27 14:45:23 -07002366 WARN_ON_ONCE(1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002367 break;
2368 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002369}
2370
Avi Kivity6aa8b732006-12-10 02:21:36 -08002371static __init int cpu_has_kvm_support(void)
2372{
Eduardo Habkost6210e372008-11-17 19:03:16 -02002373 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002374}
2375
2376static __init int vmx_disabled_by_bios(void)
2377{
Sean Christophersona4d0b2f2019-12-20 20:45:09 -08002378 return !boot_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
2379 !boot_cpu_has(X86_FEATURE_VMX);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002380}
2381
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002382static int kvm_cpu_vmxon(u64 vmxon_pointer)
Dongxiao Xu7725b892010-05-11 18:29:38 +08002383{
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002384 u64 msr;
2385
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002386 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03002387
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002388 asm_volatile_goto("1: vmxon %[vmxon_pointer]\n\t"
2389 _ASM_EXTABLE(1b, %l[fault])
2390 : : [vmxon_pointer] "m"(vmxon_pointer)
2391 : : fault);
2392 return 0;
2393
2394fault:
2395 WARN_ONCE(1, "VMXON faulted, MSR_IA32_FEAT_CTL (0x3a) = 0x%llx\n",
2396 rdmsrl_safe(MSR_IA32_FEAT_CTL, &msr) ? 0xdeadbeef : msr);
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002397 cr4_clear_bits(X86_CR4_VMXE);
2398
2399 return -EFAULT;
Dongxiao Xu7725b892010-05-11 18:29:38 +08002400}
2401
Radim Krčmář13a34e02014-08-28 15:13:03 +02002402static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002403{
2404 int cpu = raw_smp_processor_id();
2405 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002406 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002407
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002408 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02002409 return -EBUSY;
2410
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002411 /*
2412 * This can happen if we hot-added a CPU but failed to allocate
2413 * VP assist page for it.
2414 */
2415 if (static_branch_unlikely(&enable_evmcs) &&
2416 !hv_get_vp_assist_page(cpu))
2417 return -EFAULT;
2418
Sean Christopherson5ef940b2020-12-30 16:26:58 -08002419 intel_pt_handle_vmx(1);
2420
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002421 r = kvm_cpu_vmxon(phys_addr);
Sean Christopherson5ef940b2020-12-30 16:26:58 -08002422 if (r) {
2423 intel_pt_handle_vmx(0);
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002424 return r;
Sean Christopherson5ef940b2020-12-30 16:26:58 -08002425 }
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002426
David Hildenbrandfdf288b2017-08-24 20:51:29 +02002427 if (enable_ept)
2428 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02002429
2430 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002431}
2432
Nadav Har'Eld462b812011-05-24 15:26:10 +03002433static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03002434{
2435 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03002436 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03002437
Nadav Har'Eld462b812011-05-24 15:26:10 +03002438 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
2439 loaded_vmcss_on_cpu_link)
2440 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03002441}
2442
Radim Krčmář13a34e02014-08-28 15:13:03 +02002443static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002444{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002445 vmclear_local_loaded_vmcss();
Sean Christopherson6a289132020-12-30 16:26:59 -08002446
2447 if (cpu_vmxoff())
2448 kvm_spurious_fault();
Sean Christopherson5ef940b2020-12-30 16:26:58 -08002449
2450 intel_pt_handle_vmx(0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002451}
2452
Sean Christopherson7a57c092020-03-12 11:04:16 -07002453/*
2454 * There is no X86_FEATURE for SGX yet, but anyway we need to query CPUID
2455 * directly instead of going through cpu_has(), to ensure KVM is trapping
2456 * ENCLS whenever it's supported in hardware. It does not matter whether
2457 * the host OS supports or has enabled SGX.
2458 */
2459static bool cpu_has_sgx(void)
2460{
2461 return cpuid_eax(0) >= 0x12 && (cpuid_eax(0x12) & BIT(0));
2462}
2463
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002464static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04002465 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002466{
2467 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002468 u32 ctl = ctl_min | ctl_opt;
2469
2470 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2471
2472 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
2473 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
2474
2475 /* Ensure minimum (required) set of control bits are supported. */
2476 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002477 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002478
2479 *result = ctl;
2480 return 0;
2481}
2482
Sean Christopherson7caaa712018-12-03 13:53:01 -08002483static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf,
2484 struct vmx_capability *vmx_cap)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002485{
2486 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08002487 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002488 u32 _pin_based_exec_control = 0;
2489 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002490 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002491 u32 _vmexit_control = 0;
2492 u32 _vmentry_control = 0;
2493
Paolo Bonzini13893092018-02-26 13:40:09 +01002494 memset(vmcs_conf, 0, sizeof(*vmcs_conf));
Raghavendra K T10166742012-02-07 23:19:20 +05302495 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002496#ifdef CONFIG_X86_64
2497 CPU_BASED_CR8_LOAD_EXITING |
2498 CPU_BASED_CR8_STORE_EXITING |
2499#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002500 CPU_BASED_CR3_LOAD_EXITING |
2501 CPU_BASED_CR3_STORE_EXITING |
Quan Xu8eb73e2d2017-12-12 16:44:21 +08002502 CPU_BASED_UNCOND_IO_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002503 CPU_BASED_MOV_DR_EXITING |
Xiaoyao Li5e3d3942019-12-06 16:45:26 +08002504 CPU_BASED_USE_TSC_OFFSETTING |
Wanpeng Li4d5422c2018-03-12 04:53:02 -07002505 CPU_BASED_MWAIT_EXITING |
2506 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02002507 CPU_BASED_INVLPG_EXITING |
2508 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06002509
Sheng Yangf78e0e22007-10-29 09:40:42 +08002510 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08002511 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08002512 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002513 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
2514 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002515 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002516#ifdef CONFIG_X86_64
2517 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2518 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
2519 ~CPU_BASED_CR8_STORE_EXITING;
2520#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08002521 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002522 min2 = 0;
2523 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08002524 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08002525 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08002526 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002527 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002528 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002529 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Paolo Bonzini0367f202016-07-12 10:44:55 +02002530 SECONDARY_EXEC_DESC |
Sean Christopherson7f3603b2020-09-23 09:50:47 -07002531 SECONDARY_EXEC_ENABLE_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08002532 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002533 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03002534 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08002535 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08002536 SECONDARY_EXEC_XSAVES |
David Hildenbrand736fdf72017-08-24 20:51:37 +02002537 SECONDARY_EXEC_RDSEED_EXITING |
2538 SECONDARY_EXEC_RDRAND_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08002539 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04002540 SECONDARY_EXEC_TSC_SCALING |
Tao Xue69e72fa2019-07-16 14:55:49 +08002541 SECONDARY_EXEC_ENABLE_USR_WAIT_PAUSE |
Chao Pengf99e3da2018-10-24 16:05:10 +08002542 SECONDARY_EXEC_PT_USE_GPA |
2543 SECONDARY_EXEC_PT_CONCEAL_VMX |
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08002544 SECONDARY_EXEC_ENABLE_VMFUNC |
2545 SECONDARY_EXEC_BUS_LOCK_DETECTION;
Sean Christopherson7a57c092020-03-12 11:04:16 -07002546 if (cpu_has_sgx())
2547 opt2 |= SECONDARY_EXEC_ENCLS_EXITING;
Sheng Yangd56f5462008-04-25 10:13:16 +08002548 if (adjust_vmx_controls(min2, opt2,
2549 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002550 &_cpu_based_2nd_exec_control) < 0)
2551 return -EIO;
2552 }
2553#ifndef CONFIG_X86_64
2554 if (!(_cpu_based_2nd_exec_control &
2555 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
2556 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
2557#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08002558
2559 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2560 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08002561 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002562 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
2563 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08002564
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002565 rdmsr_safe(MSR_IA32_VMX_EPT_VPID_CAP,
Sean Christopherson7caaa712018-12-03 13:53:01 -08002566 &vmx_cap->ept, &vmx_cap->vpid);
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002567
Sheng Yangd56f5462008-04-25 10:13:16 +08002568 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03002569 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
2570 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03002571 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
2572 CPU_BASED_CR3_STORE_EXITING |
2573 CPU_BASED_INVLPG_EXITING);
Sean Christopherson7caaa712018-12-03 13:53:01 -08002574 } else if (vmx_cap->ept) {
2575 vmx_cap->ept = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002576 pr_warn_once("EPT CAP should not exist if not support "
2577 "1-setting enable EPT VM-execution control\n");
2578 }
2579 if (!(_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_VPID) &&
Sean Christopherson7caaa712018-12-03 13:53:01 -08002580 vmx_cap->vpid) {
2581 vmx_cap->vpid = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002582 pr_warn_once("VPID CAP should not exist if not support "
2583 "1-setting enable VPID VM-execution control\n");
Sheng Yangd56f5462008-04-25 10:13:16 +08002584 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002585
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002586 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002587#ifdef CONFIG_X86_64
2588 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
2589#endif
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002590 opt = VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL |
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002591 VM_EXIT_LOAD_IA32_PAT |
2592 VM_EXIT_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002593 VM_EXIT_CLEAR_BNDCFGS |
2594 VM_EXIT_PT_CONCEAL_PIP |
2595 VM_EXIT_CLEAR_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002596 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
2597 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002598 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002599
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01002600 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
2601 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
2602 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002603 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
2604 &_pin_based_exec_control) < 0)
2605 return -EIO;
2606
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02002607 if (cpu_has_broken_vmx_preemption_timer())
2608 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002609 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002610 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08002611 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
2612
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01002613 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002614 opt = VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL |
2615 VM_ENTRY_LOAD_IA32_PAT |
2616 VM_ENTRY_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002617 VM_ENTRY_LOAD_BNDCFGS |
2618 VM_ENTRY_PT_CONCEAL_PIP |
2619 VM_ENTRY_LOAD_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002620 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
2621 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002622 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002623
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002624 /*
2625 * Some cpus support VM_{ENTRY,EXIT}_IA32_PERF_GLOBAL_CTRL but they
2626 * can't be used due to an errata where VM Exit may incorrectly clear
2627 * IA32_PERF_GLOBAL_CTRL[34:32]. Workaround the errata by using the
2628 * MSR load mechanism to switch IA32_PERF_GLOBAL_CTRL.
2629 */
2630 if (boot_cpu_data.x86 == 0x6) {
2631 switch (boot_cpu_data.x86_model) {
2632 case 26: /* AAK155 */
2633 case 30: /* AAP115 */
2634 case 37: /* AAT100 */
2635 case 44: /* BC86,AAY89,BD102 */
2636 case 46: /* BA97 */
Sean Christopherson85ba2b12019-01-14 12:12:02 -08002637 _vmentry_control &= ~VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002638 _vmexit_control &= ~VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL;
2639 pr_warn_once("kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
2640 "does not work properly. Using workaround\n");
2641 break;
2642 default:
2643 break;
2644 }
2645 }
2646
2647
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002648 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002649
2650 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
2651 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002652 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002653
2654#ifdef CONFIG_X86_64
2655 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
2656 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03002657 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002658#endif
2659
2660 /* Require Write-Back (WB) memory type for VMCS accesses. */
2661 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002662 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002663
Yang, Sheng002c7f72007-07-31 14:23:01 +03002664 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02002665 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03002666 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002667
Liran Alon2307af12018-06-29 22:59:04 +03002668 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002669
Yang, Sheng002c7f72007-07-31 14:23:01 +03002670 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
2671 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002672 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002673 vmcs_conf->vmexit_ctrl = _vmexit_control;
2674 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002675
Vitaly Kuznetsov064eedf2020-10-14 16:33:46 +02002676#if IS_ENABLED(CONFIG_HYPERV)
2677 if (enlightened_vmcs)
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002678 evmcs_sanitize_exec_ctrls(vmcs_conf);
Vitaly Kuznetsov064eedf2020-10-14 16:33:46 +02002679#endif
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002680
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002681 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002682}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002683
Ben Gardon41836832019-02-11 11:02:52 -08002684struct vmcs *alloc_vmcs_cpu(bool shadow, int cpu, gfp_t flags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002685{
2686 int node = cpu_to_node(cpu);
2687 struct page *pages;
2688 struct vmcs *vmcs;
2689
Ben Gardon41836832019-02-11 11:02:52 -08002690 pages = __alloc_pages_node(node, flags, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002691 if (!pages)
2692 return NULL;
2693 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002694 memset(vmcs, 0, vmcs_config.size);
Liran Alon2307af12018-06-29 22:59:04 +03002695
2696 /* KVM supports Enlightened VMCS v1 only */
2697 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002698 vmcs->hdr.revision_id = KVM_EVMCS_VERSION;
Liran Alon2307af12018-06-29 22:59:04 +03002699 else
Liran Alon392b2f22018-06-23 02:35:01 +03002700 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002701
Liran Alon491a6032018-06-23 02:35:12 +03002702 if (shadow)
2703 vmcs->hdr.shadow_vmcs = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002704 return vmcs;
2705}
2706
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002707void free_vmcs(struct vmcs *vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002708{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002709 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002710}
2711
Nadav Har'Eld462b812011-05-24 15:26:10 +03002712/*
2713 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
2714 */
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002715void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Nadav Har'Eld462b812011-05-24 15:26:10 +03002716{
2717 if (!loaded_vmcs->vmcs)
2718 return;
2719 loaded_vmcs_clear(loaded_vmcs);
2720 free_vmcs(loaded_vmcs->vmcs);
2721 loaded_vmcs->vmcs = NULL;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002722 if (loaded_vmcs->msr_bitmap)
2723 free_page((unsigned long)loaded_vmcs->msr_bitmap);
Jim Mattson355f4fb2016-10-28 08:29:39 -07002724 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002725}
2726
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002727int alloc_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002728{
Liran Alon491a6032018-06-23 02:35:12 +03002729 loaded_vmcs->vmcs = alloc_vmcs(false);
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002730 if (!loaded_vmcs->vmcs)
2731 return -ENOMEM;
2732
Sean Christophersond260f9e2020-03-21 12:37:50 -07002733 vmcs_clear(loaded_vmcs->vmcs);
2734
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002735 loaded_vmcs->shadow_vmcs = NULL;
Sean Christopherson804939e2019-05-07 12:18:05 -07002736 loaded_vmcs->hv_timer_soft_disabled = false;
Sean Christophersond260f9e2020-03-21 12:37:50 -07002737 loaded_vmcs->cpu = -1;
2738 loaded_vmcs->launched = 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002739
2740 if (cpu_has_vmx_msr_bitmap()) {
Ben Gardon41836832019-02-11 11:02:52 -08002741 loaded_vmcs->msr_bitmap = (unsigned long *)
2742 __get_free_page(GFP_KERNEL_ACCOUNT);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002743 if (!loaded_vmcs->msr_bitmap)
2744 goto out_vmcs;
2745 memset(loaded_vmcs->msr_bitmap, 0xff, PAGE_SIZE);
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02002746
Arnd Bergmann1f008e12018-05-25 17:36:17 +02002747 if (IS_ENABLED(CONFIG_HYPERV) &&
2748 static_branch_unlikely(&enable_evmcs) &&
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02002749 (ms_hyperv.nested_features & HV_X64_NESTED_MSR_BITMAP)) {
2750 struct hv_enlightened_vmcs *evmcs =
2751 (struct hv_enlightened_vmcs *)loaded_vmcs->vmcs;
2752
2753 evmcs->hv_enlightenments_control.msr_bitmap = 1;
2754 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002755 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07002756
2757 memset(&loaded_vmcs->host_state, 0, sizeof(struct vmcs_host_state));
Sean Christopherson3af80fe2019-05-07 12:18:00 -07002758 memset(&loaded_vmcs->controls_shadow, 0,
2759 sizeof(struct vmcs_controls_shadow));
Sean Christophersond7ee0392018-07-23 12:32:47 -07002760
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002761 return 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002762
2763out_vmcs:
2764 free_loaded_vmcs(loaded_vmcs);
2765 return -ENOMEM;
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002766}
2767
Sam Ravnborg39959582007-06-01 00:47:13 -07002768static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002769{
2770 int cpu;
2771
Zachary Amsden3230bb42009-09-29 11:38:37 -10002772 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002773 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10002774 per_cpu(vmxarea, cpu) = NULL;
2775 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002776}
2777
Avi Kivity6aa8b732006-12-10 02:21:36 -08002778static __init int alloc_kvm_area(void)
2779{
2780 int cpu;
2781
Zachary Amsden3230bb42009-09-29 11:38:37 -10002782 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002783 struct vmcs *vmcs;
2784
Ben Gardon41836832019-02-11 11:02:52 -08002785 vmcs = alloc_vmcs_cpu(false, cpu, GFP_KERNEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002786 if (!vmcs) {
2787 free_kvm_area();
2788 return -ENOMEM;
2789 }
2790
Liran Alon2307af12018-06-29 22:59:04 +03002791 /*
2792 * When eVMCS is enabled, alloc_vmcs_cpu() sets
2793 * vmcs->revision_id to KVM_EVMCS_VERSION instead of
2794 * revision_id reported by MSR_IA32_VMX_BASIC.
2795 *
Linus Torvalds312a4662018-12-26 17:03:51 -08002796 * However, even though not explicitly documented by
Liran Alon2307af12018-06-29 22:59:04 +03002797 * TLFS, VMXArea passed as VMXON argument should
2798 * still be marked with revision_id reported by
2799 * physical CPU.
2800 */
2801 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002802 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002803
Avi Kivity6aa8b732006-12-10 02:21:36 -08002804 per_cpu(vmxarea, cpu) = vmcs;
2805 }
2806 return 0;
2807}
2808
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002809static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02002810 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002811{
Gleb Natapovd99e4152012-12-20 16:57:45 +02002812 if (!emulate_invalid_guest_state) {
2813 /*
2814 * CS and SS RPL should be equal during guest entry according
2815 * to VMX spec, but in reality it is not always so. Since vcpu
2816 * is in the middle of the transition from real mode to
2817 * protected mode it is safe to assume that RPL 0 is a good
2818 * default value.
2819 */
2820 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03002821 save->selector &= ~SEGMENT_RPL_MASK;
2822 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02002823 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002824 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02002825 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002826}
2827
2828static void enter_pmode(struct kvm_vcpu *vcpu)
2829{
2830 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002831 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002832
Gleb Natapovd99e4152012-12-20 16:57:45 +02002833 /*
Ingo Molnard9f6e122021-03-18 15:28:01 +01002834 * Update real mode segment cache. It may be not up-to-date if segment
Gleb Natapovd99e4152012-12-20 16:57:45 +02002835 * register was written while vcpu was in a guest mode.
2836 */
2837 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2838 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2839 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2840 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
2841 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2842 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
2843
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002844 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002845
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002846 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002847
2848 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002849 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2850 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002851 vmcs_writel(GUEST_RFLAGS, flags);
2852
Rusty Russell66aee912007-07-17 23:34:16 +10002853 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
2854 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002855
Jason Baronb6a7cc32021-01-14 22:27:54 -05002856 vmx_update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002857
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002858 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2859 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2860 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2861 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2862 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
2863 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002864}
2865
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002866static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002867{
Mathias Krause772e0312012-08-30 01:30:19 +02002868 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02002869 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002870
Gleb Natapovd99e4152012-12-20 16:57:45 +02002871 var.dpl = 0x3;
2872 if (seg == VCPU_SREG_CS)
2873 var.type = 0x3;
2874
2875 if (!emulate_invalid_guest_state) {
2876 var.selector = var.base >> 4;
2877 var.base = var.base & 0xffff0;
2878 var.limit = 0xffff;
2879 var.g = 0;
2880 var.db = 0;
2881 var.present = 1;
2882 var.s = 1;
2883 var.l = 0;
2884 var.unusable = 0;
2885 var.type = 0x3;
2886 var.avl = 0;
2887 if (save->base & 0xf)
2888 printk_once(KERN_WARNING "kvm: segment base is not "
2889 "paragraph aligned when entering "
2890 "protected mode (seg=%d)", seg);
2891 }
2892
2893 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05002894 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02002895 vmcs_write32(sf->limit, var.limit);
2896 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002897}
2898
2899static void enter_rmode(struct kvm_vcpu *vcpu)
2900{
2901 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002902 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002903 struct kvm_vmx *kvm_vmx = to_kvm_vmx(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002904
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002905 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
2906 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2907 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2908 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2909 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02002910 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2911 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002912
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002913 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002914
Gleb Natapov776e58e2011-03-13 12:34:27 +02002915 /*
2916 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01002917 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02002918 */
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002919 if (!kvm_vmx->tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02002920 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
2921 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02002922
Avi Kivity2fb92db2011-04-27 19:42:18 +03002923 vmx_segment_cache_clear(vmx);
2924
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002925 vmcs_writel(GUEST_TR_BASE, kvm_vmx->tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002926 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002927 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2928
2929 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002930 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002931
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002932 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002933
2934 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10002935 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Jason Baronb6a7cc32021-01-14 22:27:54 -05002936 vmx_update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002937
Gleb Natapovd99e4152012-12-20 16:57:45 +02002938 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2939 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2940 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2941 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2942 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
2943 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002944
Eddie Dong8668a3c2007-10-10 14:26:45 +08002945 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002946}
2947
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002948int vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
Amit Shah401d10d2009-02-20 22:53:37 +05302949{
2950 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond85a8032020-09-23 11:04:06 -07002951 struct vmx_uret_msr *msr = vmx_find_uret_msr(vmx, MSR_EFER);
Avi Kivity26bb0982009-09-07 11:14:12 +03002952
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002953 /* Nothing to do if hardware doesn't support EFER. */
Avi Kivity26bb0982009-09-07 11:14:12 +03002954 if (!msr)
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002955 return 0;
Amit Shah401d10d2009-02-20 22:53:37 +05302956
Avi Kivityf6801df2010-01-21 15:31:50 +02002957 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05302958 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002959 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302960 msr->data = efer;
2961 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002962 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302963
2964 msr->data = efer & ~EFER_LME;
2965 }
2966 setup_msrs(vmx);
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002967 return 0;
Amit Shah401d10d2009-02-20 22:53:37 +05302968}
2969
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002970#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002971
2972static void enter_lmode(struct kvm_vcpu *vcpu)
2973{
2974 u32 guest_tr_ar;
2975
Avi Kivity2fb92db2011-04-27 19:42:18 +03002976 vmx_segment_cache_clear(to_vmx(vcpu));
2977
Avi Kivity6aa8b732006-12-10 02:21:36 -08002978 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002979 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02002980 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
2981 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002982 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002983 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
2984 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002985 }
Avi Kivityda38f432010-07-06 11:30:49 +03002986 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002987}
2988
2989static void exit_lmode(struct kvm_vcpu *vcpu)
2990{
Gleb Natapov2961e8762013-11-25 15:37:13 +02002991 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03002992 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002993}
2994
2995#endif
2996
Sean Christopherson77809382020-03-20 14:28:18 -07002997static void vmx_flush_tlb_all(struct kvm_vcpu *vcpu)
Sean Christopherson5058b692020-03-20 14:28:14 -07002998{
2999 struct vcpu_vmx *vmx = to_vmx(vcpu);
3000
3001 /*
Sean Christopherson77809382020-03-20 14:28:18 -07003002 * INVEPT must be issued when EPT is enabled, irrespective of VPID, as
3003 * the CPU is not required to invalidate guest-physical mappings on
3004 * VM-Entry, even if VPID is disabled. Guest-physical mappings are
3005 * associated with the root EPT structure and not any particular VPID
3006 * (INVVPID also isn't required to invalidate guest-physical mappings).
Sean Christopherson5058b692020-03-20 14:28:14 -07003007 */
3008 if (enable_ept) {
3009 ept_sync_global();
3010 } else if (enable_vpid) {
3011 if (cpu_has_vmx_invvpid_global()) {
3012 vpid_sync_vcpu_global();
3013 } else {
3014 vpid_sync_vcpu_single(vmx->vpid);
3015 vpid_sync_vcpu_single(vmx->nested.vpid02);
3016 }
3017 }
3018}
3019
Sean Christopherson33d19ec2020-03-20 14:28:16 -07003020static void vmx_flush_tlb_current(struct kvm_vcpu *vcpu)
3021{
Sean Christopherson2a40b902020-07-15 20:41:18 -07003022 struct kvm_mmu *mmu = vcpu->arch.mmu;
3023 u64 root_hpa = mmu->root_hpa;
Sean Christopherson33d19ec2020-03-20 14:28:16 -07003024
3025 /* No flush required if the current context is invalid. */
3026 if (!VALID_PAGE(root_hpa))
3027 return;
3028
3029 if (enable_ept)
Sean Christopherson2a40b902020-07-15 20:41:18 -07003030 ept_sync_context(construct_eptp(vcpu, root_hpa,
3031 mmu->shadow_root_level));
Sean Christopherson33d19ec2020-03-20 14:28:16 -07003032 else if (!is_guest_mode(vcpu))
3033 vpid_sync_context(to_vmx(vcpu)->vpid);
3034 else
3035 vpid_sync_context(nested_get_vpid02(vcpu));
3036}
3037
Junaid Shahidfaff8752018-06-29 13:10:05 -07003038static void vmx_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t addr)
3039{
Junaid Shahidfaff8752018-06-29 13:10:05 -07003040 /*
Sean Christophersonad104b52020-03-20 14:28:11 -07003041 * vpid_sync_vcpu_addr() is a nop if vmx->vpid==0, see the comment in
3042 * vmx_flush_tlb_guest() for an explanation of why this is ok.
Junaid Shahidfaff8752018-06-29 13:10:05 -07003043 */
Sean Christophersonad104b52020-03-20 14:28:11 -07003044 vpid_sync_vcpu_addr(to_vmx(vcpu)->vpid, addr);
Junaid Shahidfaff8752018-06-29 13:10:05 -07003045}
3046
Sean Christophersone64419d2020-03-20 14:28:10 -07003047static void vmx_flush_tlb_guest(struct kvm_vcpu *vcpu)
3048{
3049 /*
3050 * vpid_sync_context() is a nop if vmx->vpid==0, e.g. if enable_vpid==0
3051 * or a vpid couldn't be allocated for this vCPU. VM-Enter and VM-Exit
3052 * are required to flush GVA->{G,H}PA mappings from the TLB if vpid is
3053 * disabled (VM-Enter with vpid enabled and vpid==0 is disallowed),
3054 * i.e. no explicit INVVPID is necessary.
3055 */
3056 vpid_sync_context(to_vmx(vcpu)->vpid);
3057}
3058
Peter Shier43fea4e2020-08-20 16:05:45 -07003059void vmx_ept_load_pdptrs(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08003060{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003061 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3062
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07003063 if (!kvm_register_is_dirty(vcpu, VCPU_EXREG_PDPTR))
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003064 return;
3065
Paolo Bonzinibf03d4f2019-06-06 18:52:44 +02003066 if (is_pae_paging(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003067 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
3068 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
3069 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
3070 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08003071 }
3072}
3073
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003074void ept_save_pdptrs(struct kvm_vcpu *vcpu)
Avi Kivity8f5d5492009-05-31 18:41:29 +03003075{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003076 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3077
Sean Christopherson9932b492020-04-15 13:34:50 -07003078 if (WARN_ON_ONCE(!is_pae_paging(vcpu)))
3079 return;
3080
3081 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
3082 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
3083 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
3084 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003085
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07003086 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
Avi Kivity8f5d5492009-05-31 18:41:29 +03003087}
3088
Sheng Yang14394422008-04-28 12:24:45 +08003089static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
3090 unsigned long cr0,
3091 struct kvm_vcpu *vcpu)
3092{
Sean Christopherson2183f562019-05-07 12:17:56 -07003093 struct vcpu_vmx *vmx = to_vmx(vcpu);
3094
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07003095 if (!kvm_register_is_available(vcpu, VCPU_EXREG_CR3))
Sean Christopherson34059c22019-09-27 14:45:23 -07003096 vmx_cache_reg(vcpu, VCPU_EXREG_CR3);
Sheng Yang14394422008-04-28 12:24:45 +08003097 if (!(cr0 & X86_CR0_PG)) {
3098 /* From paging/starting to nonpaging */
Sean Christopherson2183f562019-05-07 12:17:56 -07003099 exec_controls_setbit(vmx, CPU_BASED_CR3_LOAD_EXITING |
3100 CPU_BASED_CR3_STORE_EXITING);
Sheng Yang14394422008-04-28 12:24:45 +08003101 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02003102 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08003103 } else if (!is_paging(vcpu)) {
3104 /* From nonpaging to paging */
Sean Christopherson2183f562019-05-07 12:17:56 -07003105 exec_controls_clearbit(vmx, CPU_BASED_CR3_LOAD_EXITING |
3106 CPU_BASED_CR3_STORE_EXITING);
Sheng Yang14394422008-04-28 12:24:45 +08003107 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02003108 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08003109 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08003110
3111 if (!(cr0 & X86_CR0_WP))
3112 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08003113}
3114
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003115void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003116{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003117 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003118 unsigned long hw_cr0;
3119
Sean Christopherson3de63472018-07-13 08:42:30 -07003120 hw_cr0 = (cr0 & ~KVM_VM_CR0_ALWAYS_OFF);
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003121 if (is_unrestricted_guest(vcpu))
Gleb Natapov50378782013-02-04 16:00:28 +02003122 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02003123 else {
Gleb Natapov50378782013-02-04 16:00:28 +02003124 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003125
Gleb Natapov218e7632013-01-21 15:36:45 +02003126 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
3127 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003128
Gleb Natapov218e7632013-01-21 15:36:45 +02003129 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
3130 enter_rmode(vcpu);
3131 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003132
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003133#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02003134 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10003135 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003136 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10003137 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003138 exit_lmode(vcpu);
3139 }
3140#endif
3141
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003142 if (enable_ept && !is_unrestricted_guest(vcpu))
Sheng Yang14394422008-04-28 12:24:45 +08003143 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
3144
Avi Kivity6aa8b732006-12-10 02:21:36 -08003145 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08003146 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003147 vcpu->arch.cr0 = cr0;
Sean Christophersonbd31fe42020-05-01 21:32:31 -07003148 kvm_register_mark_available(vcpu, VCPU_EXREG_CR0);
Gleb Natapov14168782013-01-21 15:36:49 +02003149
3150 /* depends on vcpu->arch.cr0 to be set to a new value */
3151 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003152}
3153
Sean Christophersond468d942020-07-15 20:41:20 -07003154static int vmx_get_max_tdp_level(void)
Sean Christopherson0047fca2020-05-01 21:32:33 -07003155{
Sean Christophersond468d942020-07-15 20:41:20 -07003156 if (cpu_has_vmx_ept_5levels())
Sean Christopherson0047fca2020-05-01 21:32:33 -07003157 return 5;
3158 return 4;
3159}
3160
Sean Christophersone83bc092021-03-05 10:31:13 -08003161u64 construct_eptp(struct kvm_vcpu *vcpu, hpa_t root_hpa, int root_level)
Sheng Yang14394422008-04-28 12:24:45 +08003162{
Yu Zhang855feb62017-08-24 20:27:55 +08003163 u64 eptp = VMX_EPTP_MT_WB;
Sheng Yang14394422008-04-28 12:24:45 +08003164
Sean Christopherson2a40b902020-07-15 20:41:18 -07003165 eptp |= (root_level == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08003166
Peter Feiner995f00a2017-06-30 17:26:32 -07003167 if (enable_ept_ad_bits &&
3168 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02003169 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sean Christophersone83bc092021-03-05 10:31:13 -08003170 eptp |= root_hpa;
Sheng Yang14394422008-04-28 12:24:45 +08003171
3172 return eptp;
3173}
3174
Sean Christophersone83bc092021-03-05 10:31:13 -08003175static void vmx_load_mmu_pgd(struct kvm_vcpu *vcpu, hpa_t root_hpa,
3176 int root_level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003177{
Tianyu Lan877ad952018-07-19 08:40:23 +00003178 struct kvm *kvm = vcpu->kvm;
Sean Christopherson04f11ef2019-09-27 14:45:16 -07003179 bool update_guest_cr3 = true;
Sheng Yang14394422008-04-28 12:24:45 +08003180 unsigned long guest_cr3;
3181 u64 eptp;
3182
Avi Kivity089d0342009-03-23 18:26:32 +02003183 if (enable_ept) {
Sean Christophersone83bc092021-03-05 10:31:13 -08003184 eptp = construct_eptp(vcpu, root_hpa, root_level);
Sheng Yang14394422008-04-28 12:24:45 +08003185 vmcs_write64(EPT_POINTER, eptp);
Tianyu Lan877ad952018-07-19 08:40:23 +00003186
Sean Christopherson978c8342021-03-05 10:31:23 -08003187 hv_track_root_ept(vcpu, root_hpa);
Tianyu Lan877ad952018-07-19 08:40:23 +00003188
Paolo Bonzinidf7e0682020-05-20 08:37:37 -04003189 if (!enable_unrestricted_guest && !is_paging(vcpu))
Tianyu Lan877ad952018-07-19 08:40:23 +00003190 guest_cr3 = to_kvm_vmx(kvm)->ept_identity_map_addr;
Sean Christophersonb17b7432019-09-27 14:45:17 -07003191 else if (test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3192 guest_cr3 = vcpu->arch.cr3;
3193 else /* vmcs01.GUEST_CR3 is already up-to-date. */
3194 update_guest_cr3 = false;
Peter Shier43fea4e2020-08-20 16:05:45 -07003195 vmx_ept_load_pdptrs(vcpu);
Sean Christophersonbe100ef2020-03-20 14:28:33 -07003196 } else {
Sean Christophersone83bc092021-03-05 10:31:13 -08003197 guest_cr3 = root_hpa | kvm_get_active_pcid(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003198 }
3199
Sean Christopherson04f11ef2019-09-27 14:45:16 -07003200 if (update_guest_cr3)
3201 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003202}
3203
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07003204static bool vmx_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
3205{
3206 /*
3207 * We operate under the default treatment of SMM, so VMX cannot be
3208 * enabled under SMM. Note, whether or not VMXE is allowed at all is
Sean Christophersonee69c922020-10-06 18:44:16 -07003209 * handled by kvm_is_valid_cr4().
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07003210 */
3211 if ((cr4 & X86_CR4_VMXE) && is_smm(vcpu))
3212 return false;
3213
3214 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
3215 return false;
3216
3217 return true;
3218}
3219
3220void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003221{
Jim Mattson2259c172020-10-29 10:06:48 -07003222 unsigned long old_cr4 = vcpu->arch.cr4;
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003223 struct vcpu_vmx *vmx = to_vmx(vcpu);
Ben Serebrin085e68e2015-04-16 11:58:05 -07003224 /*
3225 * Pass through host's Machine Check Enable value to hw_cr4, which
3226 * is in force while we are in guest mode. Do not let guests control
3227 * this bit, even if host CR4.MCE == 0.
3228 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003229 unsigned long hw_cr4;
3230
3231 hw_cr4 = (cr4_read_shadow() & X86_CR4_MCE) | (cr4 & ~X86_CR4_MCE);
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003232 if (is_unrestricted_guest(vcpu))
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003233 hw_cr4 |= KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST;
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003234 else if (vmx->rmode.vm86_active)
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003235 hw_cr4 |= KVM_RMODE_VM_CR4_ALWAYS_ON;
3236 else
3237 hw_cr4 |= KVM_PMODE_VM_CR4_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003238
Sean Christopherson64f7a112018-04-30 10:01:06 -07003239 if (!boot_cpu_has(X86_FEATURE_UMIP) && vmx_umip_emulated()) {
3240 if (cr4 & X86_CR4_UMIP) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003241 secondary_exec_controls_setbit(vmx, SECONDARY_EXEC_DESC);
Sean Christopherson64f7a112018-04-30 10:01:06 -07003242 hw_cr4 &= ~X86_CR4_UMIP;
3243 } else if (!is_guest_mode(vcpu) ||
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003244 !nested_cpu_has2(get_vmcs12(vcpu), SECONDARY_EXEC_DESC)) {
3245 secondary_exec_controls_clearbit(vmx, SECONDARY_EXEC_DESC);
3246 }
Sean Christopherson64f7a112018-04-30 10:01:06 -07003247 }
Paolo Bonzini0367f202016-07-12 10:44:55 +02003248
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003249 vcpu->arch.cr4 = cr4;
Sean Christophersonf98c1e72020-05-01 21:32:30 -07003250 kvm_register_mark_available(vcpu, VCPU_EXREG_CR4);
Sheng Yang14394422008-04-28 12:24:45 +08003251
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003252 if (!is_unrestricted_guest(vcpu)) {
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003253 if (enable_ept) {
3254 if (!is_paging(vcpu)) {
3255 hw_cr4 &= ~X86_CR4_PAE;
3256 hw_cr4 |= X86_CR4_PSE;
3257 } else if (!(cr4 & X86_CR4_PAE)) {
3258 hw_cr4 &= ~X86_CR4_PAE;
3259 }
3260 }
3261
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003262 /*
Huaitong Handdba2622016-03-22 16:51:15 +08003263 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
3264 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
3265 * to be manually disabled when guest switches to non-paging
3266 * mode.
3267 *
3268 * If !enable_unrestricted_guest, the CPU is always running
3269 * with CR0.PG=1 and CR4 needs to be modified.
3270 * If enable_unrestricted_guest, the CPU automatically
3271 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003272 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003273 if (!is_paging(vcpu))
3274 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
3275 }
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003276
Sheng Yang14394422008-04-28 12:24:45 +08003277 vmcs_writel(CR4_READ_SHADOW, cr4);
3278 vmcs_writel(GUEST_CR4, hw_cr4);
Jim Mattson2259c172020-10-29 10:06:48 -07003279
3280 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
3281 kvm_update_cpuid_runtime(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003282}
3283
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003284void vmx_get_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003285{
Avi Kivitya9179492011-01-03 14:28:52 +02003286 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003287 u32 ar;
3288
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003289 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003290 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02003291 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03003292 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003293 return;
Avi Kivity1390a282012-08-21 17:07:08 +03003294 var->base = vmx_read_guest_seg_base(vmx, seg);
3295 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3296 return;
Avi Kivitya9179492011-01-03 14:28:52 +02003297 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003298 var->base = vmx_read_guest_seg_base(vmx, seg);
3299 var->limit = vmx_read_guest_seg_limit(vmx, seg);
3300 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3301 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03003302 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003303 var->type = ar & 15;
3304 var->s = (ar >> 4) & 1;
3305 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03003306 /*
3307 * Some userspaces do not preserve unusable property. Since usable
3308 * segment has to be present according to VMX spec we can use present
3309 * property to amend userspace bug by making unusable segment always
3310 * nonpresent. vmx_segment_access_rights() already marks nonpresent
3311 * segment as unusable.
3312 */
3313 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003314 var->avl = (ar >> 12) & 1;
3315 var->l = (ar >> 13) & 1;
3316 var->db = (ar >> 14) & 1;
3317 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003318}
3319
Avi Kivitya9179492011-01-03 14:28:52 +02003320static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
3321{
Avi Kivitya9179492011-01-03 14:28:52 +02003322 struct kvm_segment s;
3323
3324 if (to_vmx(vcpu)->rmode.vm86_active) {
3325 vmx_get_segment(vcpu, &s, seg);
3326 return s.base;
3327 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003328 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003329}
3330
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003331int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02003332{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003333 struct vcpu_vmx *vmx = to_vmx(vcpu);
3334
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003335 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02003336 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003337 else {
3338 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003339 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003340 }
Avi Kivity69c73022011-03-07 15:26:44 +02003341}
3342
Avi Kivity653e3102007-05-07 10:55:37 +03003343static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003344{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003345 u32 ar;
3346
Avi Kivityf0495f92012-06-07 17:06:10 +03003347 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003348 ar = 1 << 16;
3349 else {
3350 ar = var->type & 15;
3351 ar |= (var->s & 1) << 4;
3352 ar |= (var->dpl & 3) << 5;
3353 ar |= (var->present & 1) << 7;
3354 ar |= (var->avl & 1) << 12;
3355 ar |= (var->l & 1) << 13;
3356 ar |= (var->db & 1) << 14;
3357 ar |= (var->g & 1) << 15;
3358 }
Avi Kivity653e3102007-05-07 10:55:37 +03003359
3360 return ar;
3361}
3362
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003363void vmx_set_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity653e3102007-05-07 10:55:37 +03003364{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003365 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02003366 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03003367
Avi Kivity2fb92db2011-04-27 19:42:18 +03003368 vmx_segment_cache_clear(vmx);
3369
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003370 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
3371 vmx->rmode.segs[seg] = *var;
3372 if (seg == VCPU_SREG_TR)
3373 vmcs_write16(sf->selector, var->selector);
3374 else if (var->s)
3375 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02003376 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03003377 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003378
Avi Kivity653e3102007-05-07 10:55:37 +03003379 vmcs_writel(sf->base, var->base);
3380 vmcs_write32(sf->limit, var->limit);
3381 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003382
3383 /*
3384 * Fix the "Accessed" bit in AR field of segment registers for older
3385 * qemu binaries.
3386 * IA32 arch specifies that at the time of processor reset the
3387 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08003388 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003389 * state vmexit when "unrestricted guest" mode is turned on.
3390 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3391 * tree. Newer qemu binaries with that qemu fix would not need this
3392 * kvm hack.
3393 */
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003394 if (is_unrestricted_guest(vcpu) && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02003395 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003396
Gleb Natapovf924d662012-12-12 19:10:55 +02003397 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02003398
3399out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01003400 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003401}
3402
Avi Kivity6aa8b732006-12-10 02:21:36 -08003403static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
3404{
Avi Kivity2fb92db2011-04-27 19:42:18 +03003405 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003406
3407 *db = (ar >> 14) & 1;
3408 *l = (ar >> 13) & 1;
3409}
3410
Gleb Natapov89a27f42010-02-16 10:51:48 +02003411static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003412{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003413 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
3414 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003415}
3416
Gleb Natapov89a27f42010-02-16 10:51:48 +02003417static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003418{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003419 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
3420 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003421}
3422
Gleb Natapov89a27f42010-02-16 10:51:48 +02003423static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003424{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003425 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
3426 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003427}
3428
Gleb Natapov89a27f42010-02-16 10:51:48 +02003429static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003430{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003431 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
3432 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003433}
3434
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003435static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
3436{
3437 struct kvm_segment var;
3438 u32 ar;
3439
3440 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02003441 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02003442 if (seg == VCPU_SREG_CS)
3443 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003444 ar = vmx_segment_access_rights(&var);
3445
3446 if (var.base != (var.selector << 4))
3447 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02003448 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003449 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02003450 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003451 return false;
3452
3453 return true;
3454}
3455
3456static bool code_segment_valid(struct kvm_vcpu *vcpu)
3457{
3458 struct kvm_segment cs;
3459 unsigned int cs_rpl;
3460
3461 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003462 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003463
Avi Kivity1872a3f2009-01-04 23:26:52 +02003464 if (cs.unusable)
3465 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003466 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003467 return false;
3468 if (!cs.s)
3469 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003470 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003471 if (cs.dpl > cs_rpl)
3472 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003473 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003474 if (cs.dpl != cs_rpl)
3475 return false;
3476 }
3477 if (!cs.present)
3478 return false;
3479
3480 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
3481 return true;
3482}
3483
3484static bool stack_segment_valid(struct kvm_vcpu *vcpu)
3485{
3486 struct kvm_segment ss;
3487 unsigned int ss_rpl;
3488
3489 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003490 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003491
Avi Kivity1872a3f2009-01-04 23:26:52 +02003492 if (ss.unusable)
3493 return true;
3494 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003495 return false;
3496 if (!ss.s)
3497 return false;
3498 if (ss.dpl != ss_rpl) /* DPL != RPL */
3499 return false;
3500 if (!ss.present)
3501 return false;
3502
3503 return true;
3504}
3505
3506static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
3507{
3508 struct kvm_segment var;
3509 unsigned int rpl;
3510
3511 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03003512 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003513
Avi Kivity1872a3f2009-01-04 23:26:52 +02003514 if (var.unusable)
3515 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003516 if (!var.s)
3517 return false;
3518 if (!var.present)
3519 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003520 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003521 if (var.dpl < rpl) /* DPL < RPL */
3522 return false;
3523 }
3524
3525 /* TODO: Add other members to kvm_segment_field to allow checking for other access
3526 * rights flags
3527 */
3528 return true;
3529}
3530
3531static bool tr_valid(struct kvm_vcpu *vcpu)
3532{
3533 struct kvm_segment tr;
3534
3535 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
3536
Avi Kivity1872a3f2009-01-04 23:26:52 +02003537 if (tr.unusable)
3538 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03003539 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003540 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003541 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003542 return false;
3543 if (!tr.present)
3544 return false;
3545
3546 return true;
3547}
3548
3549static bool ldtr_valid(struct kvm_vcpu *vcpu)
3550{
3551 struct kvm_segment ldtr;
3552
3553 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
3554
Avi Kivity1872a3f2009-01-04 23:26:52 +02003555 if (ldtr.unusable)
3556 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03003557 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003558 return false;
3559 if (ldtr.type != 2)
3560 return false;
3561 if (!ldtr.present)
3562 return false;
3563
3564 return true;
3565}
3566
3567static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
3568{
3569 struct kvm_segment cs, ss;
3570
3571 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3572 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3573
Nadav Amitb32a9912015-03-29 16:33:04 +03003574 return ((cs.selector & SEGMENT_RPL_MASK) ==
3575 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003576}
3577
3578/*
3579 * Check if guest state is valid. Returns true if valid, false if
3580 * not.
3581 * We assume that registers are always usable
3582 */
Sean Christopherson2ba44932020-09-23 11:44:48 -07003583bool __vmx_guest_state_valid(struct kvm_vcpu *vcpu)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003584{
3585 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03003586 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003587 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
3588 return false;
3589 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
3590 return false;
3591 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
3592 return false;
3593 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
3594 return false;
3595 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
3596 return false;
3597 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
3598 return false;
3599 } else {
3600 /* protected mode guest state checks */
3601 if (!cs_ss_rpl_check(vcpu))
3602 return false;
3603 if (!code_segment_valid(vcpu))
3604 return false;
3605 if (!stack_segment_valid(vcpu))
3606 return false;
3607 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
3608 return false;
3609 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
3610 return false;
3611 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
3612 return false;
3613 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
3614 return false;
3615 if (!tr_valid(vcpu))
3616 return false;
3617 if (!ldtr_valid(vcpu))
3618 return false;
3619 }
3620 /* TODO:
3621 * - Add checks on RIP
3622 * - Add checks on RFLAGS
3623 */
3624
3625 return true;
3626}
3627
Peter Xuff5a9832020-09-30 21:20:33 -04003628static int init_rmode_tss(struct kvm *kvm, void __user *ua)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003629{
Peter Xuff5a9832020-09-30 21:20:33 -04003630 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
3631 u16 data;
3632 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003633
Peter Xuff5a9832020-09-30 21:20:33 -04003634 for (i = 0; i < 3; i++) {
3635 if (__copy_to_user(ua + PAGE_SIZE * i, zero_page, PAGE_SIZE))
3636 return -EFAULT;
3637 }
3638
Izik Eidus195aefd2007-10-01 22:14:18 +02003639 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Peter Xuff5a9832020-09-30 21:20:33 -04003640 if (__copy_to_user(ua + TSS_IOPB_BASE_OFFSET, &data, sizeof(u16)))
3641 return -EFAULT;
3642
Izik Eidus195aefd2007-10-01 22:14:18 +02003643 data = ~0;
Peter Xuff5a9832020-09-30 21:20:33 -04003644 if (__copy_to_user(ua + RMODE_TSS_SIZE - 1, &data, sizeof(u8)))
3645 return -EFAULT;
3646
3647 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003648}
3649
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003650static int init_rmode_identity_map(struct kvm *kvm)
3651{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003652 struct kvm_vmx *kvm_vmx = to_kvm_vmx(kvm);
Peter Xu2a5755b2020-01-09 09:57:14 -05003653 int i, r = 0;
Peter Xuff5a9832020-09-30 21:20:33 -04003654 void __user *uaddr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003655 u32 tmp;
3656
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003657 /* Protect kvm_vmx->ept_identity_pagetable_done. */
Tang Chena255d472014-09-16 18:41:58 +08003658 mutex_lock(&kvm->slots_lock);
3659
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003660 if (likely(kvm_vmx->ept_identity_pagetable_done))
Peter Xu2a5755b2020-01-09 09:57:14 -05003661 goto out;
Tang Chena255d472014-09-16 18:41:58 +08003662
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003663 if (!kvm_vmx->ept_identity_map_addr)
3664 kvm_vmx->ept_identity_map_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chena255d472014-09-16 18:41:58 +08003665
Peter Xuff5a9832020-09-30 21:20:33 -04003666 uaddr = __x86_set_memory_region(kvm,
3667 IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
3668 kvm_vmx->ept_identity_map_addr,
3669 PAGE_SIZE);
3670 if (IS_ERR(uaddr)) {
3671 r = PTR_ERR(uaddr);
Peter Xu2a5755b2020-01-09 09:57:14 -05003672 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003673 }
Tang Chena255d472014-09-16 18:41:58 +08003674
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003675 /* Set up identity-mapping pagetable for EPT in real mode */
3676 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
3677 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
3678 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
Peter Xuff5a9832020-09-30 21:20:33 -04003679 if (__copy_to_user(uaddr + i * sizeof(tmp), &tmp, sizeof(tmp))) {
3680 r = -EFAULT;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003681 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003682 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003683 }
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003684 kvm_vmx->ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08003685
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003686out:
Tang Chena255d472014-09-16 18:41:58 +08003687 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08003688 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003689}
3690
Avi Kivity6aa8b732006-12-10 02:21:36 -08003691static void seg_setup(int seg)
3692{
Mathias Krause772e0312012-08-30 01:30:19 +02003693 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003694 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003695
3696 vmcs_write16(sf->selector, 0);
3697 vmcs_writel(sf->base, 0);
3698 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02003699 ar = 0x93;
3700 if (seg == VCPU_SREG_CS)
3701 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003702
3703 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003704}
3705
Sheng Yangf78e0e22007-10-29 09:40:42 +08003706static int alloc_apic_access_page(struct kvm *kvm)
3707{
Xiao Guangrong44841412012-09-07 14:14:20 +08003708 struct page *page;
Peter Xuff5a9832020-09-30 21:20:33 -04003709 void __user *hva;
3710 int ret = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003711
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003712 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08003713 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003714 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003715 hva = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
3716 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
3717 if (IS_ERR(hva)) {
3718 ret = PTR_ERR(hva);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003719 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003720 }
Izik Eidus72dc67a2008-02-10 18:04:15 +02003721
Tang Chen73a6d942014-09-11 13:38:00 +08003722 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08003723 if (is_error_page(page)) {
Peter Xuff5a9832020-09-30 21:20:33 -04003724 ret = -EFAULT;
Xiao Guangrong44841412012-09-07 14:14:20 +08003725 goto out;
3726 }
3727
Tang Chenc24ae0d2014-09-24 15:57:58 +08003728 /*
3729 * Do not pin the page in memory, so that memory hot-unplug
3730 * is able to migrate it.
3731 */
3732 put_page(page);
3733 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003734out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003735 mutex_unlock(&kvm->slots_lock);
Peter Xuff5a9832020-09-30 21:20:33 -04003736 return ret;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003737}
3738
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003739int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003740{
3741 int vpid;
3742
Avi Kivity919818a2009-03-23 18:01:29 +02003743 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08003744 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003745 spin_lock(&vmx_vpid_lock);
3746 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003747 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003748 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003749 else
3750 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003751 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003752 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003753}
3754
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003755void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003756{
Wanpeng Li991e7a02015-09-16 17:30:05 +08003757 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003758 return;
3759 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003760 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003761 spin_unlock(&vmx_vpid_lock);
3762}
3763
Alexander Graf3eb90012020-09-25 16:34:20 +02003764static void vmx_clear_msr_bitmap_read(ulong *msr_bitmap, u32 msr)
3765{
3766 int f = sizeof(unsigned long);
3767
3768 if (msr <= 0x1fff)
3769 __clear_bit(msr, msr_bitmap + 0x000 / f);
3770 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3771 __clear_bit(msr & 0x1fff, msr_bitmap + 0x400 / f);
3772}
3773
3774static void vmx_clear_msr_bitmap_write(ulong *msr_bitmap, u32 msr)
3775{
3776 int f = sizeof(unsigned long);
3777
3778 if (msr <= 0x1fff)
3779 __clear_bit(msr, msr_bitmap + 0x800 / f);
3780 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3781 __clear_bit(msr & 0x1fff, msr_bitmap + 0xc00 / f);
3782}
3783
3784static void vmx_set_msr_bitmap_read(ulong *msr_bitmap, u32 msr)
3785{
3786 int f = sizeof(unsigned long);
3787
3788 if (msr <= 0x1fff)
3789 __set_bit(msr, msr_bitmap + 0x000 / f);
3790 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3791 __set_bit(msr & 0x1fff, msr_bitmap + 0x400 / f);
3792}
3793
3794static void vmx_set_msr_bitmap_write(ulong *msr_bitmap, u32 msr)
3795{
3796 int f = sizeof(unsigned long);
3797
3798 if (msr <= 0x1fff)
3799 __set_bit(msr, msr_bitmap + 0x800 / f);
3800 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3801 __set_bit(msr & 0x1fff, msr_bitmap + 0xc00 / f);
3802}
3803
Sean Christophersone23f6d42021-04-23 15:19:12 -07003804void vmx_disable_intercept_for_msr(struct kvm_vcpu *vcpu, u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08003805{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003806 struct vcpu_vmx *vmx = to_vmx(vcpu);
3807 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
Sheng Yang25c5f222008-03-28 13:18:56 +08003808
3809 if (!cpu_has_vmx_msr_bitmap())
3810 return;
3811
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003812 if (static_branch_unlikely(&enable_evmcs))
3813 evmcs_touch_msr_bitmap();
3814
Sheng Yang25c5f222008-03-28 13:18:56 +08003815 /*
Alexander Graf3eb90012020-09-25 16:34:20 +02003816 * Mark the desired intercept state in shadow bitmap, this is needed
3817 * for resync when the MSR filters change.
3818 */
3819 if (is_valid_passthrough_msr(msr)) {
3820 int idx = possible_passthrough_msr_slot(msr);
Yang Zhang8d146952013-01-25 10:18:50 +08003821
Alexander Graf3eb90012020-09-25 16:34:20 +02003822 if (idx != -ENOENT) {
3823 if (type & MSR_TYPE_R)
3824 clear_bit(idx, vmx->shadow_msr_intercept.read);
3825 if (type & MSR_TYPE_W)
3826 clear_bit(idx, vmx->shadow_msr_intercept.write);
3827 }
Yang Zhang8d146952013-01-25 10:18:50 +08003828 }
Alexander Graf3eb90012020-09-25 16:34:20 +02003829
3830 if ((type & MSR_TYPE_R) &&
3831 !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_READ)) {
3832 vmx_set_msr_bitmap_read(msr_bitmap, msr);
3833 type &= ~MSR_TYPE_R;
3834 }
3835
3836 if ((type & MSR_TYPE_W) &&
3837 !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_WRITE)) {
3838 vmx_set_msr_bitmap_write(msr_bitmap, msr);
3839 type &= ~MSR_TYPE_W;
3840 }
3841
3842 if (type & MSR_TYPE_R)
3843 vmx_clear_msr_bitmap_read(msr_bitmap, msr);
3844
3845 if (type & MSR_TYPE_W)
3846 vmx_clear_msr_bitmap_write(msr_bitmap, msr);
Yang Zhang8d146952013-01-25 10:18:50 +08003847}
3848
Sean Christophersone23f6d42021-04-23 15:19:12 -07003849void vmx_enable_intercept_for_msr(struct kvm_vcpu *vcpu, u32 msr, int type)
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003850{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003851 struct vcpu_vmx *vmx = to_vmx(vcpu);
3852 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003853
3854 if (!cpu_has_vmx_msr_bitmap())
3855 return;
3856
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003857 if (static_branch_unlikely(&enable_evmcs))
3858 evmcs_touch_msr_bitmap();
3859
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003860 /*
Alexander Graf3eb90012020-09-25 16:34:20 +02003861 * Mark the desired intercept state in shadow bitmap, this is needed
3862 * for resync when the MSR filter changes.
3863 */
3864 if (is_valid_passthrough_msr(msr)) {
3865 int idx = possible_passthrough_msr_slot(msr);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003866
Alexander Graf3eb90012020-09-25 16:34:20 +02003867 if (idx != -ENOENT) {
3868 if (type & MSR_TYPE_R)
3869 set_bit(idx, vmx->shadow_msr_intercept.read);
3870 if (type & MSR_TYPE_W)
3871 set_bit(idx, vmx->shadow_msr_intercept.write);
3872 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003873 }
Alexander Graf3eb90012020-09-25 16:34:20 +02003874
3875 if (type & MSR_TYPE_R)
3876 vmx_set_msr_bitmap_read(msr_bitmap, msr);
3877
3878 if (type & MSR_TYPE_W)
3879 vmx_set_msr_bitmap_write(msr_bitmap, msr);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003880}
3881
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003882static u8 vmx_msr_bitmap_mode(struct kvm_vcpu *vcpu)
Avi Kivity58972972009-02-24 22:26:47 +02003883{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003884 u8 mode = 0;
3885
3886 if (cpu_has_secondary_exec_ctrls() &&
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003887 (secondary_exec_controls_get(to_vmx(vcpu)) &
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003888 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
3889 mode |= MSR_BITMAP_MODE_X2APIC;
3890 if (enable_apicv && kvm_vcpu_apicv_active(vcpu))
3891 mode |= MSR_BITMAP_MODE_X2APIC_APICV;
3892 }
3893
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003894 return mode;
Yang Zhang8d146952013-01-25 10:18:50 +08003895}
3896
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003897static void vmx_reset_x2apic_msrs(struct kvm_vcpu *vcpu, u8 mode)
Yang Zhang8d146952013-01-25 10:18:50 +08003898{
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003899 unsigned long *msr_bitmap = to_vmx(vcpu)->vmcs01.msr_bitmap;
3900 unsigned long read_intercept;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003901 int msr;
3902
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003903 read_intercept = (mode & MSR_BITMAP_MODE_X2APIC_APICV) ? 0 : ~0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003904
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003905 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
3906 unsigned int read_idx = msr / BITS_PER_LONG;
3907 unsigned int write_idx = read_idx + (0x800 / sizeof(long));
3908
3909 msr_bitmap[read_idx] = read_intercept;
3910 msr_bitmap[write_idx] = ~0ul;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08003911 }
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003912}
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003913
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003914static void vmx_update_msr_bitmap_x2apic(struct kvm_vcpu *vcpu, u8 mode)
3915{
3916 if (!cpu_has_vmx_msr_bitmap())
3917 return;
3918
3919 vmx_reset_x2apic_msrs(vcpu, mode);
3920
3921 /*
3922 * TPR reads and writes can be virtualized even if virtual interrupt
3923 * delivery is not in use.
3924 */
3925 vmx_set_intercept_for_msr(vcpu, X2APIC_MSR(APIC_TASKPRI), MSR_TYPE_RW,
3926 !(mode & MSR_BITMAP_MODE_X2APIC));
3927
3928 if (mode & MSR_BITMAP_MODE_X2APIC_APICV) {
3929 vmx_enable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_TMCCT), MSR_TYPE_RW);
3930 vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_EOI), MSR_TYPE_W);
3931 vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_SELF_IPI), MSR_TYPE_W);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003932 }
3933}
3934
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003935void vmx_update_msr_bitmap(struct kvm_vcpu *vcpu)
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003936{
3937 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003938 u8 mode = vmx_msr_bitmap_mode(vcpu);
3939 u8 changed = mode ^ vmx->msr_bitmap_mode;
3940
3941 if (!changed)
3942 return;
3943
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003944 if (changed & (MSR_BITMAP_MODE_X2APIC | MSR_BITMAP_MODE_X2APIC_APICV))
Alexander Graf3eb90012020-09-25 16:34:20 +02003945 vmx_update_msr_bitmap_x2apic(vcpu, mode);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003946
3947 vmx->msr_bitmap_mode = mode;
Avi Kivity58972972009-02-24 22:26:47 +02003948}
3949
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003950void pt_update_intercept_for_msr(struct kvm_vcpu *vcpu)
Chao Pengb08c2892018-10-24 16:05:15 +08003951{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003952 struct vcpu_vmx *vmx = to_vmx(vcpu);
Chao Pengb08c2892018-10-24 16:05:15 +08003953 bool flag = !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
3954 u32 i;
3955
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003956 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_STATUS, MSR_TYPE_RW, flag);
3957 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_OUTPUT_BASE, MSR_TYPE_RW, flag);
3958 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_OUTPUT_MASK, MSR_TYPE_RW, flag);
3959 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_CR3_MATCH, MSR_TYPE_RW, flag);
Chao Pengb08c2892018-10-24 16:05:15 +08003960 for (i = 0; i < vmx->pt_desc.addr_range; i++) {
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003961 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_ADDR0_A + i * 2, MSR_TYPE_RW, flag);
3962 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_ADDR0_B + i * 2, MSR_TYPE_RW, flag);
Chao Pengb08c2892018-10-24 16:05:15 +08003963 }
3964}
3965
Liran Alone6c67d82018-09-04 10:56:52 +03003966static bool vmx_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
3967{
3968 struct vcpu_vmx *vmx = to_vmx(vcpu);
3969 void *vapic_page;
3970 u32 vppr;
3971 int rvi;
3972
3973 if (WARN_ON_ONCE(!is_guest_mode(vcpu)) ||
3974 !nested_cpu_has_vid(get_vmcs12(vcpu)) ||
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003975 WARN_ON_ONCE(!vmx->nested.virtual_apic_map.gfn))
Liran Alone6c67d82018-09-04 10:56:52 +03003976 return false;
3977
Paolo Bonzini7e712682018-10-03 13:44:26 +02003978 rvi = vmx_get_rvi();
Liran Alone6c67d82018-09-04 10:56:52 +03003979
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003980 vapic_page = vmx->nested.virtual_apic_map.hva;
Liran Alone6c67d82018-09-04 10:56:52 +03003981 vppr = *((u32 *)(vapic_page + APIC_PROCPRI));
Liran Alone6c67d82018-09-04 10:56:52 +03003982
3983 return ((rvi & 0xf0) > (vppr & 0xf0));
3984}
3985
Alexander Graf3eb90012020-09-25 16:34:20 +02003986static void vmx_msr_filter_changed(struct kvm_vcpu *vcpu)
3987{
3988 struct vcpu_vmx *vmx = to_vmx(vcpu);
3989 u32 i;
3990
3991 /*
3992 * Set intercept permissions for all potentially passed through MSRs
3993 * again. They will automatically get filtered through the MSR filter,
3994 * so we are back in sync after this.
3995 */
3996 for (i = 0; i < ARRAY_SIZE(vmx_possible_passthrough_msrs); i++) {
3997 u32 msr = vmx_possible_passthrough_msrs[i];
3998 bool read = test_bit(i, vmx->shadow_msr_intercept.read);
3999 bool write = test_bit(i, vmx->shadow_msr_intercept.write);
4000
4001 vmx_set_intercept_for_msr(vcpu, msr, MSR_TYPE_R, read);
4002 vmx_set_intercept_for_msr(vcpu, msr, MSR_TYPE_W, write);
4003 }
4004
4005 pt_update_intercept_for_msr(vcpu);
4006 vmx_update_msr_bitmap_x2apic(vcpu, vmx_msr_bitmap_mode(vcpu));
4007}
4008
Wincy Van06a55242017-04-28 13:13:59 +08004009static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
4010 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004011{
4012#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08004013 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
4014
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004015 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08004016 /*
Haozhong Zhang5753743f2017-09-18 09:56:50 +08004017 * The vector of interrupt to be delivered to vcpu had
4018 * been set in PIR before this function.
Feng Wu28b835d2015-09-18 22:29:54 +08004019 *
Haozhong Zhang5753743f2017-09-18 09:56:50 +08004020 * Following cases will be reached in this block, and
4021 * we always send a notification event in all cases as
4022 * explained below.
4023 *
4024 * Case 1: vcpu keeps in non-root mode. Sending a
4025 * notification event posts the interrupt to vcpu.
4026 *
4027 * Case 2: vcpu exits to root mode and is still
4028 * runnable. PIR will be synced to vIRR before the
4029 * next vcpu entry. Sending a notification event in
4030 * this case has no effect, as vcpu is not in root
4031 * mode.
4032 *
4033 * Case 3: vcpu exits to root mode and is blocked.
4034 * vcpu_block() has already synced PIR to vIRR and
4035 * never blocks vcpu if vIRR is not cleared. Therefore,
4036 * a blocked vcpu here does not wait for any requested
4037 * interrupts in PIR, and sending a notification event
4038 * which has no effect is safe here.
Feng Wu28b835d2015-09-18 22:29:54 +08004039 */
Feng Wu28b835d2015-09-18 22:29:54 +08004040
Wincy Van06a55242017-04-28 13:13:59 +08004041 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004042 return true;
4043 }
4044#endif
4045 return false;
4046}
4047
Wincy Van705699a2015-02-03 23:58:17 +08004048static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
4049 int vector)
4050{
4051 struct vcpu_vmx *vmx = to_vmx(vcpu);
4052
4053 if (is_guest_mode(vcpu) &&
4054 vector == vmx->nested.posted_intr_nv) {
Wincy Van705699a2015-02-03 23:58:17 +08004055 /*
4056 * If a posted intr is not recognized by hardware,
4057 * we will accomplish it in the next vmentry.
4058 */
4059 vmx->nested.pi_pending = true;
4060 kvm_make_request(KVM_REQ_EVENT, vcpu);
Liran Alon6b697712017-11-09 20:27:20 +02004061 /* the PIR and ON have been set by L1. */
4062 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, true))
4063 kvm_vcpu_kick(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08004064 return 0;
4065 }
4066 return -1;
4067}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004068/*
Yang Zhanga20ed542013-04-11 19:25:15 +08004069 * Send interrupt to vcpu via posted interrupt way.
4070 * 1. If target vcpu is running(non-root mode), send posted interrupt
4071 * notification to vcpu and hardware will sync PIR to vIRR atomically.
4072 * 2. If target vcpu isn't running(root mode), kick it to pick up the
4073 * interrupt from PIR in next vmentry.
4074 */
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004075static int vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
Yang Zhanga20ed542013-04-11 19:25:15 +08004076{
4077 struct vcpu_vmx *vmx = to_vmx(vcpu);
4078 int r;
4079
Wincy Van705699a2015-02-03 23:58:17 +08004080 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
4081 if (!r)
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004082 return 0;
4083
4084 if (!vcpu->arch.apicv_active)
4085 return -1;
Wincy Van705699a2015-02-03 23:58:17 +08004086
Yang Zhanga20ed542013-04-11 19:25:15 +08004087 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004088 return 0;
Yang Zhanga20ed542013-04-11 19:25:15 +08004089
Paolo Bonzinib95234c2016-12-19 13:57:33 +01004090 /* If a previous notification has sent the IPI, nothing to do. */
4091 if (pi_test_and_set_on(&vmx->pi_desc))
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004092 return 0;
Paolo Bonzinib95234c2016-12-19 13:57:33 +01004093
Wanpeng Li379a3c82020-04-28 14:23:27 +08004094 if (vcpu != kvm_get_running_vcpu() &&
4095 !kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08004096 kvm_vcpu_kick(vcpu);
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004097
4098 return 0;
Yang Zhanga20ed542013-04-11 19:25:15 +08004099}
4100
Avi Kivity6aa8b732006-12-10 02:21:36 -08004101/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004102 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
4103 * will not change in the lifetime of the guest.
4104 * Note that host-state that does change is set elsewhere. E.g., host-state
4105 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
4106 */
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004107void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004108{
4109 u32 low32, high32;
4110 unsigned long tmpl;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07004111 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004112
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07004113 cr0 = read_cr0();
4114 WARN_ON(cr0 & X86_CR0_TS);
4115 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07004116
4117 /*
4118 * Save the most likely value for this task's CR3 in the VMCS.
4119 * We can't use __get_current_cr3_fast() because we're not atomic.
4120 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07004121 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07004122 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
Sean Christophersond7ee0392018-07-23 12:32:47 -07004123 vmx->loaded_vmcs->host_state.cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004124
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004125 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07004126 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004127 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07004128 vmx->loaded_vmcs->host_state.cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004129
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004130 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004131#ifdef CONFIG_X86_64
4132 /*
4133 * Load null selectors, so we can avoid reloading them in
Sean Christopherson6d6095b2018-07-23 12:32:44 -07004134 * vmx_prepare_switch_to_host(), in case userspace uses
4135 * the null selectors too (the expected case).
Avi Kivityb2da15a2012-05-13 19:53:24 +03004136 */
4137 vmcs_write16(HOST_DS_SELECTOR, 0);
4138 vmcs_write16(HOST_ES_SELECTOR, 0);
4139#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004140 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4141 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004142#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004143 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4144 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
4145
Sean Christopherson23420802019-04-19 22:50:57 -07004146 vmcs_writel(HOST_IDTR_BASE, host_idt_base); /* 22.2.4 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004147
Sean Christopherson453eafb2018-12-20 12:25:17 -08004148 vmcs_writel(HOST_RIP, (unsigned long)vmx_vmexit); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004149
4150 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
4151 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
4152 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
4153 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
4154
4155 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
4156 rdmsr(MSR_IA32_CR_PAT, low32, high32);
4157 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
4158 }
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07004159
Sean Christophersonc73da3f2018-12-03 13:53:00 -08004160 if (cpu_has_load_ia32_efer())
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07004161 vmcs_write64(HOST_IA32_EFER, host_efer);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004162}
4163
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004164void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004165{
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004166 struct kvm_vcpu *vcpu = &vmx->vcpu;
4167
4168 vcpu->arch.cr4_guest_owned_bits = KVM_POSSIBLE_CR4_GUEST_BITS &
4169 ~vcpu->arch.cr4_guest_rsvd_bits;
Sean Christophersonfa71e952020-07-02 21:04:22 -07004170 if (!enable_ept)
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004171 vcpu->arch.cr4_guest_owned_bits &= ~X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03004172 if (is_guest_mode(&vmx->vcpu))
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004173 vcpu->arch.cr4_guest_owned_bits &=
4174 ~get_vmcs12(vcpu)->cr4_guest_host_mask;
4175 vmcs_writel(CR4_GUEST_HOST_MASK, ~vcpu->arch.cr4_guest_owned_bits);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004176}
4177
Sean Christophersonc075c3e2019-05-07 12:17:53 -07004178u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
Yang Zhang01e439b2013-04-11 19:25:12 +08004179{
4180 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
4181
Andrey Smetanind62caab2015-11-10 15:36:33 +03004182 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08004183 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004184
4185 if (!enable_vnmi)
4186 pin_based_exec_ctrl &= ~PIN_BASED_VIRTUAL_NMIS;
4187
Sean Christopherson804939e2019-05-07 12:18:05 -07004188 if (!enable_preemption_timer)
4189 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
4190
Yang Zhang01e439b2013-04-11 19:25:12 +08004191 return pin_based_exec_ctrl;
4192}
4193
Andrey Smetanind62caab2015-11-10 15:36:33 +03004194static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
4195{
4196 struct vcpu_vmx *vmx = to_vmx(vcpu);
4197
Sean Christophersonc5f2c762019-05-07 12:17:55 -07004198 pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03004199 if (cpu_has_secondary_exec_ctrls()) {
4200 if (kvm_vcpu_apicv_active(vcpu))
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07004201 secondary_exec_controls_setbit(vmx,
Roman Kagan3ce424e2016-05-18 17:48:20 +03004202 SECONDARY_EXEC_APIC_REGISTER_VIRT |
4203 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
4204 else
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07004205 secondary_exec_controls_clearbit(vmx,
Roman Kagan3ce424e2016-05-18 17:48:20 +03004206 SECONDARY_EXEC_APIC_REGISTER_VIRT |
4207 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
4208 }
4209
4210 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004211 vmx_update_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004212}
4213
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08004214u32 vmx_exec_control(struct vcpu_vmx *vmx)
4215{
4216 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
4217
4218 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
4219 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
4220
4221 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
4222 exec_control &= ~CPU_BASED_TPR_SHADOW;
4223#ifdef CONFIG_X86_64
4224 exec_control |= CPU_BASED_CR8_STORE_EXITING |
4225 CPU_BASED_CR8_LOAD_EXITING;
4226#endif
4227 }
4228 if (!enable_ept)
4229 exec_control |= CPU_BASED_CR3_STORE_EXITING |
4230 CPU_BASED_CR3_LOAD_EXITING |
4231 CPU_BASED_INVLPG_EXITING;
4232 if (kvm_mwait_in_guest(vmx->vcpu.kvm))
4233 exec_control &= ~(CPU_BASED_MWAIT_EXITING |
4234 CPU_BASED_MONITOR_EXITING);
4235 if (kvm_hlt_in_guest(vmx->vcpu.kvm))
4236 exec_control &= ~CPU_BASED_HLT_EXITING;
4237 return exec_control;
4238}
4239
Sean Christopherson8b50b922020-09-24 17:30:11 -07004240/*
4241 * Adjust a single secondary execution control bit to intercept/allow an
4242 * instruction in the guest. This is usually done based on whether or not a
4243 * feature has been exposed to the guest in order to correctly emulate faults.
4244 */
4245static inline void
4246vmx_adjust_secondary_exec_control(struct vcpu_vmx *vmx, u32 *exec_control,
4247 u32 control, bool enabled, bool exiting)
4248{
4249 /*
4250 * If the control is for an opt-in feature, clear the control if the
4251 * feature is not exposed to the guest, i.e. not enabled. If the
4252 * control is opt-out, i.e. an exiting control, clear the control if
4253 * the feature _is_ exposed to the guest, i.e. exiting/interception is
4254 * disabled for the associated instruction. Note, the caller is
4255 * responsible presetting exec_control to set all supported bits.
4256 */
4257 if (enabled == exiting)
4258 *exec_control &= ~control;
4259
4260 /*
4261 * Update the nested MSR settings so that a nested VMM can/can't set
4262 * controls for features that are/aren't exposed to the guest.
4263 */
4264 if (nested) {
4265 if (enabled)
4266 vmx->nested.msrs.secondary_ctls_high |= control;
4267 else
4268 vmx->nested.msrs.secondary_ctls_high &= ~control;
4269 }
4270}
4271
4272/*
4273 * Wrapper macro for the common case of adjusting a secondary execution control
4274 * based on a single guest CPUID bit, with a dedicated feature bit. This also
4275 * verifies that the control is actually supported by KVM and hardware.
4276 */
4277#define vmx_adjust_sec_exec_control(vmx, exec_control, name, feat_name, ctrl_name, exiting) \
4278({ \
4279 bool __enabled; \
4280 \
4281 if (cpu_has_vmx_##name()) { \
4282 __enabled = guest_cpuid_has(&(vmx)->vcpu, \
4283 X86_FEATURE_##feat_name); \
4284 vmx_adjust_secondary_exec_control(vmx, exec_control, \
4285 SECONDARY_EXEC_##ctrl_name, __enabled, exiting); \
4286 } \
4287})
4288
4289/* More macro magic for ENABLE_/opt-in versus _EXITING/opt-out controls. */
4290#define vmx_adjust_sec_exec_feature(vmx, exec_control, lname, uname) \
4291 vmx_adjust_sec_exec_control(vmx, exec_control, lname, uname, ENABLE_##uname, false)
4292
4293#define vmx_adjust_sec_exec_exiting(vmx, exec_control, lname, uname) \
4294 vmx_adjust_sec_exec_control(vmx, exec_control, lname, uname, uname##_EXITING, true)
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08004295
Paolo Bonzini80154d72017-08-24 13:55:35 +02004296static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004297{
Paolo Bonzini80154d72017-08-24 13:55:35 +02004298 struct kvm_vcpu *vcpu = &vmx->vcpu;
4299
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004300 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004301
Sean Christopherson2ef76192020-03-02 15:56:22 -08004302 if (vmx_pt_mode_is_system())
Chao Pengf99e3da2018-10-24 16:05:10 +08004303 exec_control &= ~(SECONDARY_EXEC_PT_USE_GPA | SECONDARY_EXEC_PT_CONCEAL_VMX);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004304 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004305 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
4306 if (vmx->vpid == 0)
4307 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
4308 if (!enable_ept) {
4309 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
4310 enable_unrestricted_guest = 0;
4311 }
4312 if (!enable_unrestricted_guest)
4313 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Wanpeng Lib31c1142018-03-12 04:53:04 -07004314 if (kvm_pause_in_guest(vmx->vcpu.kvm))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004315 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02004316 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08004317 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
4318 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08004319 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004320
4321 /* SECONDARY_EXEC_DESC is enabled/disabled on writes to CR4.UMIP,
4322 * in vmx_set_cr4. */
4323 exec_control &= ~SECONDARY_EXEC_DESC;
4324
Abel Gordonabc4fc52013-04-18 14:35:25 +03004325 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
4326 (handle_vmptrld).
4327 We can NOT enable shadow_vmcs here because we don't have yet
4328 a current VMCS12
4329 */
4330 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08004331
Makarand Sonarea85863c2021-02-12 16:50:12 -08004332 /*
4333 * PML is enabled/disabled when dirty logging of memsmlots changes, but
4334 * it needs to be set here when dirty logging is already active, e.g.
4335 * if this vCPU was created after dirty logging was enabled.
4336 */
4337 if (!vcpu->kvm->arch.cpu_dirty_logging_count)
Kai Huanga3eaa862015-11-04 13:46:05 +08004338 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08004339
Sean Christophersonbecdad82020-09-23 09:50:45 -07004340 if (cpu_has_vmx_xsaves()) {
Paolo Bonzini3db13482017-08-24 14:48:03 +02004341 /* Exposing XSAVES only when XSAVE is exposed */
4342 bool xsaves_enabled =
Sean Christopherson96be4e02019-12-10 14:44:15 -08004343 boot_cpu_has(X86_FEATURE_XSAVE) &&
Paolo Bonzini3db13482017-08-24 14:48:03 +02004344 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
4345 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
4346
Aaron Lewis72041602019-10-21 16:30:20 -07004347 vcpu->arch.xsaves_enabled = xsaves_enabled;
4348
Sean Christopherson8b50b922020-09-24 17:30:11 -07004349 vmx_adjust_secondary_exec_control(vmx, &exec_control,
4350 SECONDARY_EXEC_XSAVES,
4351 xsaves_enabled, false);
Paolo Bonzini3db13482017-08-24 14:48:03 +02004352 }
4353
Sean Christopherson36fa06f2021-05-04 10:17:26 -07004354 /*
4355 * RDPID is also gated by ENABLE_RDTSCP, turn on the control if either
4356 * feature is exposed to the guest. This creates a virtualization hole
4357 * if both are supported in hardware but only one is exposed to the
4358 * guest, but letting the guest execute RDTSCP or RDPID when either one
4359 * is advertised is preferable to emulating the advertised instruction
4360 * in KVM on #UD, and obviously better than incorrectly injecting #UD.
4361 */
4362 if (cpu_has_vmx_rdtscp()) {
4363 bool rdpid_or_rdtscp_enabled =
4364 guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) ||
4365 guest_cpuid_has(vcpu, X86_FEATURE_RDPID);
4366
4367 vmx_adjust_secondary_exec_control(vmx, &exec_control,
4368 SECONDARY_EXEC_ENABLE_RDTSCP,
4369 rdpid_or_rdtscp_enabled, false);
4370 }
Sean Christopherson8b50b922020-09-24 17:30:11 -07004371 vmx_adjust_sec_exec_feature(vmx, &exec_control, invpcid, INVPCID);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004372
Sean Christopherson8b50b922020-09-24 17:30:11 -07004373 vmx_adjust_sec_exec_exiting(vmx, &exec_control, rdrand, RDRAND);
4374 vmx_adjust_sec_exec_exiting(vmx, &exec_control, rdseed, RDSEED);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004375
Sean Christopherson8b50b922020-09-24 17:30:11 -07004376 vmx_adjust_sec_exec_control(vmx, &exec_control, waitpkg, WAITPKG,
4377 ENABLE_USR_WAIT_PAUSE, false);
Tao Xue69e72fa2019-07-16 14:55:49 +08004378
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08004379 if (!vcpu->kvm->arch.bus_lock_detection_enabled)
4380 exec_control &= ~SECONDARY_EXEC_BUS_LOCK_DETECTION;
4381
Paolo Bonzini80154d72017-08-24 13:55:35 +02004382 vmx->secondary_exec_control = exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004383}
4384
Wanpeng Lif53cd632014-12-02 19:14:58 +08004385#define VMX_XSS_EXIT_BITMAP 0
Avi Kivity6aa8b732006-12-10 02:21:36 -08004386
Sean Christopherson944c3462018-12-03 13:53:09 -08004387/*
Xiaoyao Li1b842922019-10-20 17:11:01 +08004388 * Noting that the initialization of Guest-state Area of VMCS is in
4389 * vmx_vcpu_reset().
Sean Christopherson944c3462018-12-03 13:53:09 -08004390 */
Xiaoyao Li1b842922019-10-20 17:11:01 +08004391static void init_vmcs(struct vcpu_vmx *vmx)
Sean Christopherson944c3462018-12-03 13:53:09 -08004392{
Sean Christopherson944c3462018-12-03 13:53:09 -08004393 if (nested)
Xiaoyao Li1b842922019-10-20 17:11:01 +08004394 nested_vmx_set_vmcs_shadowing_bitmap();
Sean Christopherson944c3462018-12-03 13:53:09 -08004395
Sheng Yang25c5f222008-03-28 13:18:56 +08004396 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004397 vmcs_write64(MSR_BITMAP, __pa(vmx->vmcs01.msr_bitmap));
Sheng Yang25c5f222008-03-28 13:18:56 +08004398
Avi Kivity6aa8b732006-12-10 02:21:36 -08004399 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
4400
Avi Kivity6aa8b732006-12-10 02:21:36 -08004401 /* Control */
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004402 pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004403
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004404 exec_controls_set(vmx, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004405
Dan Williamsdfa169b2016-06-02 11:17:24 -07004406 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +02004407 vmx_compute_secondary_exec_control(vmx);
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004408 secondary_exec_controls_set(vmx, vmx->secondary_exec_control);
Dan Williamsdfa169b2016-06-02 11:17:24 -07004409 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08004410
Andrey Smetanind62caab2015-11-10 15:36:33 +03004411 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08004412 vmcs_write64(EOI_EXIT_BITMAP0, 0);
4413 vmcs_write64(EOI_EXIT_BITMAP1, 0);
4414 vmcs_write64(EOI_EXIT_BITMAP2, 0);
4415 vmcs_write64(EOI_EXIT_BITMAP3, 0);
4416
4417 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08004418
Li RongQing0bcf2612015-12-03 13:29:34 +08004419 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08004420 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08004421 }
4422
Wanpeng Lib31c1142018-03-12 04:53:04 -07004423 if (!kvm_pause_in_guest(vmx->vcpu.kvm)) {
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004424 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02004425 vmx->ple_window = ple_window;
4426 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004427 }
4428
Xiao Guangrongc3707952011-07-12 03:28:04 +08004429 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
4430 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004431 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
4432
Avi Kivity9581d442010-10-19 16:46:55 +02004433 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
4434 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004435 vmx_set_constant_host_state(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004436 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
4437 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004438
Bandan Das2a499e42017-08-03 15:54:41 -04004439 if (cpu_has_vmx_vmfunc())
4440 vmcs_write64(VM_FUNCTION_CONTROL, 0);
4441
Eddie Dong2cc51562007-05-21 07:28:09 +03004442 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
4443 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004444 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host.val));
Eddie Dong2cc51562007-05-21 07:28:09 +03004445 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004446 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest.val));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004447
Radim Krčmář74545702015-04-27 15:11:25 +02004448 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
4449 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08004450
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004451 vm_exit_controls_set(vmx, vmx_vmexit_ctrl());
Avi Kivity6aa8b732006-12-10 02:21:36 -08004452
4453 /* 22.2.1, 20.8.1 */
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004454 vm_entry_controls_set(vmx, vmx_vmentry_ctrl());
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004455
Sean Christophersonfa71e952020-07-02 21:04:22 -07004456 vmx->vcpu.arch.cr0_guest_owned_bits = KVM_POSSIBLE_CR0_GUEST_BITS;
4457 vmcs_writel(CR0_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr0_guest_owned_bits);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004458
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004459 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004460
Xiaoyao Li35fbe0d2019-10-20 17:10:58 +08004461 if (vmx->vpid != 0)
4462 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
4463
Sean Christophersonbecdad82020-09-23 09:50:45 -07004464 if (cpu_has_vmx_xsaves())
Wanpeng Lif53cd632014-12-02 19:14:58 +08004465 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
4466
Peter Feiner4e595162016-07-07 14:49:58 -07004467 if (enable_pml) {
Peter Feiner4e595162016-07-07 14:49:58 -07004468 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
4469 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
4470 }
Sean Christopherson0b665d32018-08-14 09:33:34 -07004471
Sean Christopherson72add912021-04-12 16:21:42 +12004472 vmx_write_encls_bitmap(&vmx->vcpu, NULL);
Chao Peng2ef444f2018-10-24 16:05:12 +08004473
Sean Christopherson2ef76192020-03-02 15:56:22 -08004474 if (vmx_pt_mode_is_host_guest()) {
Chao Peng2ef444f2018-10-24 16:05:12 +08004475 memset(&vmx->pt_desc, 0, sizeof(vmx->pt_desc));
4476 /* Bit[6~0] are forced to 1, writes are ignored. */
4477 vmx->pt_desc.guest.output_mask = 0x7F;
4478 vmcs_write64(GUEST_IA32_RTIT_CTL, 0);
4479 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004480}
4481
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004482static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004483{
4484 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01004485 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004486 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004487
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004488 vmx->rmode.vm86_active = 0;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004489 vmx->spec_ctrl = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004490
Tao Xu6e3ba4a2019-07-16 14:55:50 +08004491 vmx->msr_ia32_umwait_control = 0;
4492
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004493 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Wanpeng Li95c06542019-09-05 14:26:28 +08004494 vmx->hv_deadline_tsc = -1;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004495 kvm_set_cr8(vcpu, 0);
4496
4497 if (!init_event) {
4498 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
4499 MSR_IA32_APICBASE_ENABLE;
4500 if (kvm_vcpu_is_reset_bsp(vcpu))
4501 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
4502 apic_base_msr.host_initiated = true;
4503 kvm_set_apic_base(vcpu, &apic_base_msr);
4504 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004505
Avi Kivity2fb92db2011-04-27 19:42:18 +03004506 vmx_segment_cache_clear(vmx);
4507
Avi Kivity5706be02008-08-20 15:07:31 +03004508 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01004509 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004510 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004511
4512 seg_setup(VCPU_SREG_DS);
4513 seg_setup(VCPU_SREG_ES);
4514 seg_setup(VCPU_SREG_FS);
4515 seg_setup(VCPU_SREG_GS);
4516 seg_setup(VCPU_SREG_SS);
4517
4518 vmcs_write16(GUEST_TR_SELECTOR, 0);
4519 vmcs_writel(GUEST_TR_BASE, 0);
4520 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
4521 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4522
4523 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
4524 vmcs_writel(GUEST_LDTR_BASE, 0);
4525 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
4526 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
4527
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004528 if (!init_event) {
4529 vmcs_write32(GUEST_SYSENTER_CS, 0);
4530 vmcs_writel(GUEST_SYSENTER_ESP, 0);
4531 vmcs_writel(GUEST_SYSENTER_EIP, 0);
4532 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
4533 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004534
Wanpeng Lic37c2872017-11-20 14:52:21 -08004535 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
Jan Kiszka66450a22013-03-13 12:42:34 +01004536 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004537
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004538 vmcs_writel(GUEST_GDTR_BASE, 0);
4539 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
4540
4541 vmcs_writel(GUEST_IDTR_BASE, 0);
4542 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
4543
Anthony Liguori443381a2010-12-06 10:53:38 -06004544 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004545 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004546 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Wanpeng Lia554d202017-10-11 05:10:19 -07004547 if (kvm_mpx_supported())
4548 vmcs_write64(GUEST_BNDCFGS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004549
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004550 setup_msrs(vmx);
4551
Avi Kivity6aa8b732006-12-10 02:21:36 -08004552 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
4553
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004554 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08004555 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004556 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08004557 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004558 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004559 vmcs_write32(TPR_THRESHOLD, 0);
4560 }
4561
Paolo Bonzinia73896c2014-11-02 07:54:30 +01004562 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004563
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004564 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004565 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06004566 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004567 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02004568 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004569
Jason Baronb6a7cc32021-01-14 22:27:54 -05004570 vmx_update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004571
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004572 vpid_sync_context(vmx->vpid);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004573 if (init_event)
4574 vmx_clear_hlt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004575}
4576
Jason Baronb6a7cc32021-01-14 22:27:54 -05004577static void vmx_enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004578{
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08004579 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_INTR_WINDOW_EXITING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004580}
4581
Jason Baronb6a7cc32021-01-14 22:27:54 -05004582static void vmx_enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004583{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004584 if (!enable_vnmi ||
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004585 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jason Baronb6a7cc32021-01-14 22:27:54 -05004586 vmx_enable_irq_window(vcpu);
Jan Kiszkac9a79532014-03-07 20:03:15 +01004587 return;
4588 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02004589
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08004590 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_NMI_WINDOW_EXITING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004591}
4592
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004593static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03004594{
Avi Kivity9c8cba32007-11-22 11:42:59 +02004595 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004596 uint32_t intr;
4597 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02004598
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004599 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004600
Avi Kivityfa89a812008-09-01 15:57:51 +03004601 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004602 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05004603 int inc_eip = 0;
4604 if (vcpu->arch.interrupt.soft)
4605 inc_eip = vcpu->arch.event_exit_inst_len;
Sean Christopherson9497e1f2019-08-27 14:40:36 -07004606 kvm_inject_realmode_interrupt(vcpu, irq, inc_eip);
Eddie Dong85f455f2007-07-06 12:20:49 +03004607 return;
4608 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004609 intr = irq | INTR_INFO_VALID_MASK;
4610 if (vcpu->arch.interrupt.soft) {
4611 intr |= INTR_TYPE_SOFT_INTR;
4612 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
4613 vmx->vcpu.arch.event_exit_inst_len);
4614 } else
4615 intr |= INTR_TYPE_EXT_INTR;
4616 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004617
4618 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03004619}
4620
Sheng Yangf08864b2008-05-15 18:23:25 +08004621static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
4622{
Jan Kiszka66a5a342008-09-26 09:30:51 +02004623 struct vcpu_vmx *vmx = to_vmx(vcpu);
4624
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004625 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004626 /*
4627 * Tracking the NMI-blocked state in software is built upon
4628 * finding the next open IRQ window. This, in turn, depends on
4629 * well-behaving guests: They have to keep IRQs disabled at
4630 * least as long as the NMI handler runs. Otherwise we may
4631 * cause NMI nesting, maybe breaking the guest. But as this is
4632 * highly unlikely, we can live with the residual risk.
4633 */
4634 vmx->loaded_vmcs->soft_vnmi_blocked = 1;
4635 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4636 }
4637
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004638 ++vcpu->stat.nmi_injections;
4639 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004640
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004641 if (vmx->rmode.vm86_active) {
Sean Christopherson9497e1f2019-08-27 14:40:36 -07004642 kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0);
Jan Kiszka66a5a342008-09-26 09:30:51 +02004643 return;
4644 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08004645
Sheng Yangf08864b2008-05-15 18:23:25 +08004646 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
4647 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004648
4649 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08004650}
4651
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004652bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004653{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004654 struct vcpu_vmx *vmx = to_vmx(vcpu);
4655 bool masked;
4656
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004657 if (!enable_vnmi)
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004658 return vmx->loaded_vmcs->soft_vnmi_blocked;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004659 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02004660 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004661 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
4662 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4663 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004664}
4665
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004666void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004667{
4668 struct vcpu_vmx *vmx = to_vmx(vcpu);
4669
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004670 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004671 if (vmx->loaded_vmcs->soft_vnmi_blocked != masked) {
4672 vmx->loaded_vmcs->soft_vnmi_blocked = masked;
4673 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4674 }
4675 } else {
4676 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4677 if (masked)
4678 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
4679 GUEST_INTR_STATE_NMI);
4680 else
4681 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
4682 GUEST_INTR_STATE_NMI);
4683 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004684}
4685
Sean Christopherson1b660b62020-04-22 19:25:44 -07004686bool vmx_nmi_blocked(struct kvm_vcpu *vcpu)
4687{
4688 if (is_guest_mode(vcpu) && nested_exit_on_nmi(vcpu))
4689 return false;
4690
4691 if (!enable_vnmi && to_vmx(vcpu)->loaded_vmcs->soft_vnmi_blocked)
4692 return true;
4693
4694 return (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4695 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI |
4696 GUEST_INTR_STATE_NMI));
4697}
4698
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004699static int vmx_nmi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Jan Kiszka2505dc92013-04-14 12:12:47 +02004700{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01004701 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004702 return -EBUSY;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02004703
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004704 /* An NMI must not be injected into L2 if it's supposed to VM-Exit. */
4705 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_nmi(vcpu))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004706 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004707
Sean Christopherson1b660b62020-04-22 19:25:44 -07004708 return !vmx_nmi_blocked(vcpu);
4709}
Sean Christopherson429ab572020-04-22 19:25:42 -07004710
Sean Christopherson1b660b62020-04-22 19:25:44 -07004711bool vmx_interrupt_blocked(struct kvm_vcpu *vcpu)
4712{
4713 if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
Sean Christopherson88c604b2020-04-22 19:25:41 -07004714 return false;
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004715
Sean Christopherson7ab0abd2020-04-22 19:25:50 -07004716 return !(vmx_get_rflags(vcpu) & X86_EFLAGS_IF) ||
Sean Christopherson1b660b62020-04-22 19:25:44 -07004717 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4718 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Jan Kiszka2505dc92013-04-14 12:12:47 +02004719}
4720
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004721static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Gleb Natapov78646122009-03-23 12:12:11 +02004722{
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004723 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004724 return -EBUSY;
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004725
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004726 /*
4727 * An IRQ must not be injected into L2 if it's supposed to VM-Exit,
4728 * e.g. if the IRQ arrived asynchronously after checking nested events.
4729 */
4730 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004731 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004732
Sean Christopherson1b660b62020-04-22 19:25:44 -07004733 return !vmx_interrupt_blocked(vcpu);
Gleb Natapov78646122009-03-23 12:12:11 +02004734}
4735
Izik Eiduscbc94022007-10-25 00:29:55 +02004736static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
4737{
Peter Xuff5a9832020-09-30 21:20:33 -04004738 void __user *ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02004739
Sean Christophersonf7eaeb02018-03-05 12:04:36 -08004740 if (enable_unrestricted_guest)
4741 return 0;
4742
Peter Xu6a3c6232020-01-09 09:57:16 -05004743 mutex_lock(&kvm->slots_lock);
4744 ret = __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
4745 PAGE_SIZE * 3);
4746 mutex_unlock(&kvm->slots_lock);
4747
Peter Xuff5a9832020-09-30 21:20:33 -04004748 if (IS_ERR(ret))
4749 return PTR_ERR(ret);
4750
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004751 to_kvm_vmx(kvm)->tss_addr = addr;
Peter Xuff5a9832020-09-30 21:20:33 -04004752
4753 return init_rmode_tss(kvm, ret);
Izik Eiduscbc94022007-10-25 00:29:55 +02004754}
4755
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004756static int vmx_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
4757{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004758 to_kvm_vmx(kvm)->ept_identity_map_addr = ident_addr;
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004759 return 0;
4760}
4761
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004762static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004763{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004764 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004765 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01004766 /*
4767 * Update instruction length as we may reinject the exception
4768 * from user space while in guest debugging mode.
4769 */
4770 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
4771 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004772 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004773 return false;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004774 fallthrough;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004775 case DB_VECTOR:
Miaohe Lina8cfbae2020-02-19 10:45:48 +08004776 return !(vcpu->guest_debug &
4777 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP));
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004778 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004779 case OF_VECTOR:
4780 case BR_VECTOR:
4781 case UD_VECTOR:
4782 case DF_VECTOR:
4783 case SS_VECTOR:
4784 case GP_VECTOR:
4785 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004786 return true;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004787 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004788 return false;
4789}
4790
4791static int handle_rmode_exception(struct kvm_vcpu *vcpu,
4792 int vec, u32 err_code)
4793{
4794 /*
4795 * Instruction with address size override prefix opcode 0x67
4796 * Cause the #SS fault with 0 error code in VM86 mode.
4797 */
4798 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004799 if (kvm_emulate_instruction(vcpu, 0)) {
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004800 if (vcpu->arch.halt_request) {
4801 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06004802 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004803 }
4804 return 1;
4805 }
4806 return 0;
4807 }
4808
4809 /*
4810 * Forward all other exceptions that are valid in real mode.
4811 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
4812 * the required debugging infrastructure rework.
4813 */
4814 kvm_queue_exception(vcpu, vec);
4815 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004816}
4817
Avi Kivity851ba692009-08-24 11:10:17 +03004818static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08004819{
Sean Christopherson95b5a482019-04-19 22:50:59 -07004820 /* handled by vmx_vcpu_run() */
Andi Kleena0861c02009-06-08 17:37:09 +08004821 return 1;
4822}
4823
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004824/*
4825 * If the host has split lock detection disabled, then #AC is
4826 * unconditionally injected into the guest, which is the pre split lock
4827 * detection behaviour.
4828 *
4829 * If the host has split lock detection enabled then #AC is
4830 * only injected into the guest when:
4831 * - Guest CPL == 3 (user mode)
4832 * - Guest has #AC detection enabled in CR0
4833 * - Guest EFLAGS has AC bit set
4834 */
4835static inline bool guest_inject_ac(struct kvm_vcpu *vcpu)
4836{
4837 if (!boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
4838 return true;
4839
4840 return vmx_get_cpl(vcpu) == 3 && kvm_read_cr0_bits(vcpu, X86_CR0_AM) &&
4841 (kvm_get_rflags(vcpu) & X86_EFLAGS_AC);
4842}
4843
Sean Christopherson95b5a482019-04-19 22:50:59 -07004844static int handle_exception_nmi(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004845{
Avi Kivity1155f762007-11-22 11:30:47 +02004846 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004847 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004848 u32 intr_info, ex_no, error_code;
Yuan Yaoe87e46d2021-05-26 14:38:28 +08004849 unsigned long cr2, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004850 u32 vect_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004851
Avi Kivity1155f762007-11-22 11:30:47 +02004852 vect_info = vmx->idt_vectoring_info;
Sean Christophersonf27ad732020-04-27 10:18:37 -07004853 intr_info = vmx_get_intr_info(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004854
Paolo Bonzini2ea72032019-06-06 14:57:25 +02004855 if (is_machine_check(intr_info) || is_nmi(intr_info))
Sean Christopherson95b5a482019-04-19 22:50:59 -07004856 return 1; /* handled by handle_exception_nmi_irqoff() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03004857
Wanpeng Li082d06e2018-04-03 16:28:48 -07004858 if (is_invalid_opcode(intr_info))
4859 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004860
Avi Kivity6aa8b732006-12-10 02:21:36 -08004861 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06004862 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004863 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004864
Liran Alon9e869482018-03-12 13:12:51 +02004865 if (!vmx->rmode.vm86_active && is_gp_fault(intr_info)) {
4866 WARN_ON_ONCE(!enable_vmware_backdoor);
Sean Christophersona6c6ed12019-08-27 14:40:30 -07004867
4868 /*
4869 * VMware backdoor emulation on #GP interception only handles
4870 * IN{S}, OUT{S}, and RDPMC, none of which generate a non-zero
4871 * error code on #GP.
4872 */
4873 if (error_code) {
4874 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
4875 return 1;
4876 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004877 return kvm_emulate_instruction(vcpu, EMULTYPE_VMWARE_GP);
Liran Alon9e869482018-03-12 13:12:51 +02004878 }
4879
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004880 /*
4881 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
4882 * MMIO, it is better to report an internal error.
4883 * See the comments in vmx_handle_exit.
4884 */
4885 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
4886 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
4887 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4888 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Jim Mattson1aa561b2020-06-03 16:56:21 -07004889 vcpu->run->internal.ndata = 4;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004890 vcpu->run->internal.data[0] = vect_info;
4891 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02004892 vcpu->run->internal.data[2] = error_code;
Jim Mattson8a14fe42020-06-03 16:56:22 -07004893 vcpu->run->internal.data[3] = vcpu->arch.last_vmentry_cpu;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004894 return 0;
4895 }
4896
Avi Kivity6aa8b732006-12-10 02:21:36 -08004897 if (is_page_fault(intr_info)) {
Sean Christopherson5addc232020-04-15 13:34:53 -07004898 cr2 = vmx_get_exit_qual(vcpu);
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02004899 if (enable_ept && !vcpu->arch.apf.host_apf_flags) {
4900 /*
4901 * EPT will cause page fault only if we need to
4902 * detect illegal GPAs.
4903 */
Mohammed Gamalb96e6502020-09-03 16:11:22 +02004904 WARN_ON_ONCE(!allow_smaller_maxphyaddr);
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02004905 kvm_fixup_and_inject_pf_error(vcpu, cr2, error_code);
4906 return 1;
4907 } else
4908 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004909 }
4910
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004911 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004912
4913 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
4914 return handle_rmode_exception(vcpu, ex_no, error_code);
4915
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004916 switch (ex_no) {
4917 case DB_VECTOR:
Sean Christopherson5addc232020-04-15 13:34:53 -07004918 dr6 = vmx_get_exit_qual(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004919 if (!(vcpu->guest_debug &
4920 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Linus Torvalds32d43cd2018-03-20 12:16:59 -07004921 if (is_icebp(intr_info))
Sean Christopherson1957aa62019-08-27 14:40:39 -07004922 WARN_ON(!skip_emulated_instruction(vcpu));
Huw Daviesfd2a4452014-04-16 10:02:51 +01004923
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04004924 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004925 return 1;
4926 }
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08004927 kvm_run->debug.arch.dr6 = dr6 | DR6_ACTIVE_LOW;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004928 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004929 fallthrough;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004930 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01004931 /*
4932 * Update instruction length as we may reinject #BP from
4933 * user space while in guest debugging mode. Reading it for
4934 * #DB as well causes no harm, it is not used in that case.
4935 */
4936 vmx->vcpu.arch.event_exit_inst_len =
4937 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004938 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Yuan Yaoe87e46d2021-05-26 14:38:28 +08004939 kvm_run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004940 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004941 break;
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004942 case AC_VECTOR:
4943 if (guest_inject_ac(vcpu)) {
4944 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
4945 return 1;
4946 }
4947
4948 /*
4949 * Handle split lock. Depending on detection mode this will
4950 * either warn and disable split lock detection for this
4951 * task or force SIGBUS on it.
4952 */
4953 if (handle_guest_split_lock(kvm_rip_read(vcpu)))
4954 return 1;
4955 fallthrough;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004956 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004957 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
4958 kvm_run->ex.exception = ex_no;
4959 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004960 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004961 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004962 return 0;
4963}
4964
Andrea Arcangelif399e602019-11-04 17:59:58 -05004965static __always_inline int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004966{
Avi Kivity1165f5f2007-04-19 17:27:43 +03004967 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004968 return 1;
4969}
4970
Avi Kivity851ba692009-08-24 11:10:17 +03004971static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08004972{
Avi Kivity851ba692009-08-24 11:10:17 +03004973 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07004974 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08004975 return 0;
4976}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004977
Avi Kivity851ba692009-08-24 11:10:17 +03004978static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004979{
He, Qingbfdaab02007-09-12 14:18:28 +08004980 unsigned long exit_qualification;
Sean Christophersondca7f122018-03-08 08:57:27 -08004981 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02004982 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004983
Sean Christopherson5addc232020-04-15 13:34:53 -07004984 exit_qualification = vmx_get_exit_qual(vcpu);
Avi Kivity039576c2007-03-20 12:46:50 +02004985 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004986
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004987 ++vcpu->stat.io_exits;
4988
Sean Christopherson432baf62018-03-08 08:57:26 -08004989 if (string)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004990 return kvm_emulate_instruction(vcpu, 0);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004991
4992 port = exit_qualification >> 16;
4993 size = (exit_qualification & 7) + 1;
Sean Christopherson432baf62018-03-08 08:57:26 -08004994 in = (exit_qualification & 8) != 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004995
Sean Christophersondca7f122018-03-08 08:57:27 -08004996 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004997}
4998
Ingo Molnar102d8322007-02-19 14:37:47 +02004999static void
5000vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5001{
5002 /*
5003 * Patch in the VMCALL instruction:
5004 */
5005 hypercall[0] = 0x0f;
5006 hypercall[1] = 0x01;
5007 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02005008}
5009
Guo Chao0fa06072012-06-28 15:16:19 +08005010/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005011static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
5012{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005013 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005014 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5015 unsigned long orig_val = val;
5016
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005017 /*
5018 * We get here when L2 changed cr0 in a way that did not change
5019 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005020 * but did change L0 shadowed bits. So we first calculate the
5021 * effective cr0 value that L1 would like to write into the
5022 * hardware. It consists of the L2-owned bits from the new
5023 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005024 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005025 val = (val & ~vmcs12->cr0_guest_host_mask) |
5026 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
5027
David Matlack38991522016-11-29 18:14:08 -08005028 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005029 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005030
5031 if (kvm_set_cr0(vcpu, val))
5032 return 1;
5033 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005034 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005035 } else {
5036 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08005037 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005038 return 1;
David Matlack38991522016-11-29 18:14:08 -08005039
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005040 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005041 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005042}
5043
5044static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
5045{
5046 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005047 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5048 unsigned long orig_val = val;
5049
5050 /* analogously to handle_set_cr0 */
5051 val = (val & ~vmcs12->cr4_guest_host_mask) |
5052 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
5053 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005054 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005055 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005056 return 0;
5057 } else
5058 return kvm_set_cr4(vcpu, val);
5059}
5060
Paolo Bonzini0367f202016-07-12 10:44:55 +02005061static int handle_desc(struct kvm_vcpu *vcpu)
5062{
5063 WARN_ON(!(vcpu->arch.cr4 & X86_CR4_UMIP));
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005064 return kvm_emulate_instruction(vcpu, 0);
Paolo Bonzini0367f202016-07-12 10:44:55 +02005065}
5066
Avi Kivity851ba692009-08-24 11:10:17 +03005067static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005068{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005069 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005070 int cr;
5071 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03005072 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08005073 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005074
Sean Christopherson5addc232020-04-15 13:34:53 -07005075 exit_qualification = vmx_get_exit_qual(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005076 cr = exit_qualification & 15;
5077 reg = (exit_qualification >> 8) & 15;
5078 switch ((exit_qualification >> 4) & 3) {
5079 case 0: /* mov to cr */
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07005080 val = kvm_register_read(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005081 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005082 switch (cr) {
5083 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005084 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005085 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005086 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08005087 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity23902182010-06-10 17:02:16 +03005088 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005089 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005090 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005091 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005092 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005093 case 8: {
5094 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03005095 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01005096 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005097 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005098 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08005099 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005100 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08005101 return ret;
5102 /*
5103 * TODO: we might be squashing a
5104 * KVM_GUESTDBG_SINGLESTEP-triggered
5105 * KVM_EXIT_DEBUG here.
5106 */
Avi Kivity851ba692009-08-24 11:10:17 +03005107 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005108 return 0;
5109 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02005110 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005111 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03005112 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005113 WARN_ONCE(1, "Guest should always own CR0.TS");
5114 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02005115 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08005116 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005117 case 1: /*mov from cr*/
5118 switch (cr) {
5119 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08005120 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity9f8fe502010-12-05 17:30:00 +02005121 val = kvm_read_cr3(vcpu);
5122 kvm_register_write(vcpu, reg, val);
5123 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005124 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005125 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005126 val = kvm_get_cr8(vcpu);
5127 kvm_register_write(vcpu, reg, val);
5128 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005129 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005130 }
5131 break;
5132 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02005133 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02005134 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02005135 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005136
Kyle Huey6affcbe2016-11-29 12:40:40 -08005137 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005138 default:
5139 break;
5140 }
Avi Kivity851ba692009-08-24 11:10:17 +03005141 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03005142 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08005143 (int)(exit_qualification >> 4) & 3, cr);
5144 return 0;
5145}
5146
Avi Kivity851ba692009-08-24 11:10:17 +03005147static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005148{
He, Qingbfdaab02007-09-12 14:18:28 +08005149 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005150 int dr, dr7, reg;
Paolo Bonzini996ff542020-12-14 07:49:54 -05005151 int err = 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005152
Sean Christopherson5addc232020-04-15 13:34:53 -07005153 exit_qualification = vmx_get_exit_qual(vcpu);
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005154 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
5155
5156 /* First, if DR does not exist, trigger UD */
5157 if (!kvm_require_dr(vcpu, dr))
5158 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005159
Paolo Bonzini996ff542020-12-14 07:49:54 -05005160 if (kvm_x86_ops.get_cpl(vcpu) > 0)
5161 goto out;
5162
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005163 dr7 = vmcs_readl(GUEST_DR7);
5164 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005165 /*
5166 * As the vm-exit takes precedence over the debug trap, we
5167 * need to emulate the latter, either for the host or the
5168 * guest debugging itself.
5169 */
5170 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08005171 vcpu->run->debug.arch.dr6 = DR6_BD | DR6_ACTIVE_LOW;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005172 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02005173 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005174 vcpu->run->debug.arch.exception = DB_VECTOR;
5175 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005176 return 0;
5177 } else {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04005178 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BD);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005179 return 1;
5180 }
5181 }
5182
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005183 if (vcpu->guest_debug == 0) {
Sean Christopherson2183f562019-05-07 12:17:56 -07005184 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005185
5186 /*
5187 * No more DR vmexits; force a reload of the debug registers
5188 * and reenter on this instruction. The next vmexit will
5189 * retrieve the full state of the debug registers.
5190 */
5191 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
5192 return 1;
5193 }
5194
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005195 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
5196 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03005197 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005198
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05005199 kvm_get_dr(vcpu, dr, &val);
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005200 kvm_register_write(vcpu, reg, val);
Paolo Bonzini996ff542020-12-14 07:49:54 -05005201 err = 0;
5202 } else {
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07005203 err = kvm_set_dr(vcpu, dr, kvm_register_read(vcpu, reg));
Paolo Bonzini996ff542020-12-14 07:49:54 -05005204 }
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005205
Paolo Bonzini996ff542020-12-14 07:49:54 -05005206out:
5207 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005208}
5209
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005210static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
5211{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005212 get_debugreg(vcpu->arch.db[0], 0);
5213 get_debugreg(vcpu->arch.db[1], 1);
5214 get_debugreg(vcpu->arch.db[2], 2);
5215 get_debugreg(vcpu->arch.db[3], 3);
5216 get_debugreg(vcpu->arch.dr6, 6);
5217 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
5218
5219 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Sean Christopherson2183f562019-05-07 12:17:56 -07005220 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005221}
5222
Gleb Natapov020df072010-04-13 10:05:23 +03005223static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
5224{
5225 vmcs_writel(GUEST_DR7, val);
5226}
5227
Avi Kivity851ba692009-08-24 11:10:17 +03005228static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005229{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01005230 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005231 return 1;
5232}
5233
Avi Kivity851ba692009-08-24 11:10:17 +03005234static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005235{
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005236 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_INTR_WINDOW_EXITING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005237
Avi Kivity3842d132010-07-27 12:30:24 +03005238 kvm_make_request(KVM_REQ_EVENT, vcpu);
5239
Jan Kiszkaa26bf122008-09-26 09:30:45 +02005240 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005241 return 1;
5242}
5243
Avi Kivity851ba692009-08-24 11:10:17 +03005244static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03005245{
Sean Christopherson5addc232020-04-15 13:34:53 -07005246 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005247
5248 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005249 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005250}
5251
Avi Kivity851ba692009-08-24 11:10:17 +03005252static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005253{
Kevin Tian58fbbf22011-08-30 13:56:17 +03005254 if (likely(fasteoi)) {
Sean Christopherson5addc232020-04-15 13:34:53 -07005255 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03005256 int access_type, offset;
5257
5258 access_type = exit_qualification & APIC_ACCESS_TYPE;
5259 offset = exit_qualification & APIC_ACCESS_OFFSET;
5260 /*
5261 * Sane guest uses MOV to write EOI, with written value
5262 * not cared. So make a short-circuit here by avoiding
5263 * heavy instruction emulation.
5264 */
5265 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
5266 (offset == APIC_EOI)) {
5267 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005268 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03005269 }
5270 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005271 return kvm_emulate_instruction(vcpu, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08005272}
5273
Yang Zhangc7c9c562013-01-25 10:18:51 +08005274static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
5275{
Sean Christopherson5addc232020-04-15 13:34:53 -07005276 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005277 int vector = exit_qualification & 0xff;
5278
5279 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
5280 kvm_apic_set_eoi_accelerated(vcpu, vector);
5281 return 1;
5282}
5283
Yang Zhang83d4c282013-01-25 10:18:49 +08005284static int handle_apic_write(struct kvm_vcpu *vcpu)
5285{
Sean Christopherson5addc232020-04-15 13:34:53 -07005286 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Yang Zhang83d4c282013-01-25 10:18:49 +08005287 u32 offset = exit_qualification & 0xfff;
5288
5289 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
5290 kvm_apic_write_nodecode(vcpu, offset);
5291 return 1;
5292}
5293
Avi Kivity851ba692009-08-24 11:10:17 +03005294static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02005295{
Jan Kiszka60637aa2008-09-26 09:30:47 +02005296 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005297 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02005298 bool has_error_code = false;
5299 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02005300 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005301 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005302
5303 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005304 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005305 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02005306
Sean Christopherson5addc232020-04-15 13:34:53 -07005307 exit_qualification = vmx_get_exit_qual(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005308
5309 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005310 if (reason == TASK_SWITCH_GATE && idt_v) {
5311 switch (type) {
5312 case INTR_TYPE_NMI_INTR:
5313 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02005314 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005315 break;
5316 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005317 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005318 kvm_clear_interrupt_queue(vcpu);
5319 break;
5320 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02005321 if (vmx->idt_vectoring_info &
5322 VECTORING_INFO_DELIVER_CODE_MASK) {
5323 has_error_code = true;
5324 error_code =
5325 vmcs_read32(IDT_VECTORING_ERROR_CODE);
5326 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05005327 fallthrough;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005328 case INTR_TYPE_SOFT_EXCEPTION:
5329 kvm_clear_exception_queue(vcpu);
5330 break;
5331 default:
5332 break;
5333 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02005334 }
Izik Eidus37817f22008-03-24 23:14:53 +02005335 tss_selector = exit_qualification;
5336
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005337 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
5338 type != INTR_TYPE_EXT_INTR &&
5339 type != INTR_TYPE_NMI_INTR))
Sean Christopherson1957aa62019-08-27 14:40:39 -07005340 WARN_ON(!skip_emulated_instruction(vcpu));
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005341
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005342 /*
5343 * TODO: What about debug traps on tss switch?
5344 * Are we supposed to inject them and update dr6?
5345 */
Sean Christopherson10517782019-08-27 14:40:35 -07005346 return kvm_task_switch(vcpu, tss_selector,
5347 type == INTR_TYPE_SOFT_INTR ? idt_index : -1,
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005348 reason, has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02005349}
5350
Avi Kivity851ba692009-08-24 11:10:17 +03005351static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08005352{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005353 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08005354 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01005355 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08005356
Sean Christopherson5addc232020-04-15 13:34:53 -07005357 exit_qualification = vmx_get_exit_qual(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08005358
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005359 /*
5360 * EPT violation happened while executing iret from NMI,
5361 * "blocked by NMI" bit has to be set before next VM entry.
5362 * There are errata that may cause this bit to not be set:
5363 * AAK134, BY25.
5364 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005365 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005366 enable_vnmi &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005367 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005368 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
5369
Sheng Yang14394422008-04-28 12:24:45 +08005370 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005371 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005372
Junaid Shahid27959a42016-12-06 16:46:10 -08005373 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005374 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08005375 ? PFERR_USER_MASK : 0;
5376 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005377 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08005378 ? PFERR_WRITE_MASK : 0;
5379 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005380 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08005381 ? PFERR_FETCH_MASK : 0;
5382 /* ept page table entry is present? */
5383 error_code |= (exit_qualification &
5384 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
5385 EPT_VIOLATION_EXECUTABLE))
5386 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005387
Isaku Yamahata108356022021-04-22 17:22:29 -07005388 error_code |= (exit_qualification & EPT_VIOLATION_GVA_TRANSLATED) != 0 ?
Paolo Bonzinieebed242016-11-28 14:39:58 +01005389 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03005390
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005391 vcpu->arch.exit_qualification = exit_qualification;
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02005392
5393 /*
5394 * Check that the GPA doesn't exceed physical memory limits, as that is
5395 * a guest page fault. We have to emulate the instruction here, because
5396 * if the illegal address is that of a paging structure, then
5397 * EPT_VIOLATION_ACC_WRITE bit is set. Alternatively, if supported we
5398 * would also use advanced VM-exit information for EPT violations to
5399 * reconstruct the page fault error code.
5400 */
Paolo Bonzinic0623f52020-10-21 18:05:58 -04005401 if (unlikely(allow_smaller_maxphyaddr && kvm_vcpu_is_illegal_gpa(vcpu, gpa)))
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02005402 return kvm_emulate_instruction(vcpu, 0);
5403
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005404 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08005405}
5406
Avi Kivity851ba692009-08-24 11:10:17 +03005407static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005408{
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005409 gpa_t gpa;
5410
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12005411 if (!vmx_can_emulate_instruction(vcpu, NULL, 0))
5412 return 1;
5413
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005414 /*
5415 * A nested guest cannot optimize MMIO vmexits, because we have an
5416 * nGPA here instead of the required GPA.
5417 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005418 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005419 if (!is_guest_mode(vcpu) &&
5420 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08005421 trace_kvm_fast_mmio(gpa);
Sean Christopherson1957aa62019-08-27 14:40:39 -07005422 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03005423 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005424
Sean Christophersonc75d0edc2018-03-29 14:48:31 -07005425 return kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005426}
5427
Avi Kivity851ba692009-08-24 11:10:17 +03005428static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08005429{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005430 WARN_ON_ONCE(!enable_vnmi);
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08005431 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_NMI_WINDOW_EXITING);
Sheng Yangf08864b2008-05-15 18:23:25 +08005432 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03005433 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08005434
5435 return 1;
5436}
5437
Mohammed Gamal80ced182009-09-01 12:48:18 +02005438static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005439{
Avi Kivity8b3079a2009-01-05 12:10:54 +02005440 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity49e9d552010-09-19 14:34:08 +02005441 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03005442 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02005443
Sean Christopherson2183f562019-05-07 12:17:56 -07005444 intr_window_requested = exec_controls_get(vmx) &
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005445 CPU_BASED_INTR_WINDOW_EXITING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005446
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01005447 while (vmx->emulation_required && count-- != 0) {
Sean Christophersondb438592020-04-22 19:25:48 -07005448 if (intr_window_requested && !vmx_interrupt_blocked(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02005449 return handle_interrupt_window(&vmx->vcpu);
5450
Radim Krčmář72875d82017-04-26 22:32:19 +02005451 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03005452 return 1;
5453
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005454 if (!kvm_emulate_instruction(vcpu, 0))
Sean Christopherson8fff2712019-08-27 14:40:37 -07005455 return 0;
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005456
Sean Christophersonadd5ff72018-03-23 09:34:00 -07005457 if (vmx->emulation_required && !vmx->rmode.vm86_active &&
Sean Christopherson8fff2712019-08-27 14:40:37 -07005458 vcpu->arch.exception.pending) {
5459 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5460 vcpu->run->internal.suberror =
5461 KVM_INTERNAL_ERROR_EMULATION;
5462 vcpu->run->internal.ndata = 0;
5463 return 0;
5464 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005465
Gleb Natapov8d76c492013-05-08 18:38:44 +03005466 if (vcpu->arch.halt_request) {
5467 vcpu->arch.halt_request = 0;
Sean Christopherson8fff2712019-08-27 14:40:37 -07005468 return kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03005469 }
5470
Sean Christopherson8fff2712019-08-27 14:40:37 -07005471 /*
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02005472 * Note, return 1 and not 0, vcpu_run() will invoke
5473 * xfer_to_guest_mode() which will create a proper return
5474 * code.
Sean Christopherson8fff2712019-08-27 14:40:37 -07005475 */
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02005476 if (__xfer_to_guest_mode_work_pending())
Sean Christopherson8fff2712019-08-27 14:40:37 -07005477 return 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005478 }
5479
Sean Christopherson8fff2712019-08-27 14:40:37 -07005480 return 1;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005481}
5482
5483static void grow_ple_window(struct kvm_vcpu *vcpu)
5484{
5485 struct vcpu_vmx *vmx = to_vmx(vcpu);
Peter Xuc5c5d6f2019-09-06 10:17:21 +08005486 unsigned int old = vmx->ple_window;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005487
Babu Mogerc8e88712018-03-16 16:37:24 -04005488 vmx->ple_window = __grow_ple_window(old, ple_window,
5489 ple_window_grow,
5490 ple_window_max);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005491
Peter Xu4f75bcc2019-09-06 10:17:22 +08005492 if (vmx->ple_window != old) {
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005493 vmx->ple_window_dirty = true;
Peter Xu4f75bcc2019-09-06 10:17:22 +08005494 trace_kvm_ple_window_update(vcpu->vcpu_id,
5495 vmx->ple_window, old);
5496 }
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005497}
5498
5499static void shrink_ple_window(struct kvm_vcpu *vcpu)
5500{
5501 struct vcpu_vmx *vmx = to_vmx(vcpu);
Peter Xuc5c5d6f2019-09-06 10:17:21 +08005502 unsigned int old = vmx->ple_window;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005503
Babu Mogerc8e88712018-03-16 16:37:24 -04005504 vmx->ple_window = __shrink_ple_window(old, ple_window,
5505 ple_window_shrink,
5506 ple_window);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005507
Peter Xu4f75bcc2019-09-06 10:17:22 +08005508 if (vmx->ple_window != old) {
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005509 vmx->ple_window_dirty = true;
Peter Xu4f75bcc2019-09-06 10:17:22 +08005510 trace_kvm_ple_window_update(vcpu->vcpu_id,
5511 vmx->ple_window, old);
5512 }
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005513}
5514
Avi Kivity6aa8b732006-12-10 02:21:36 -08005515/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005516 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
5517 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
5518 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03005519static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005520{
Wanpeng Lib31c1142018-03-12 04:53:04 -07005521 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005522 grow_ple_window(vcpu);
5523
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08005524 /*
5525 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
5526 * VM-execution control is ignored if CPL > 0. OTOH, KVM
5527 * never set PAUSE_EXITING and just set PLE if supported,
5528 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
5529 */
5530 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005531 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005532}
5533
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005534static int handle_monitor_trap(struct kvm_vcpu *vcpu)
5535{
5536 return 1;
5537}
5538
Junaid Shahideb4b2482018-06-27 14:59:14 -07005539static int handle_invpcid(struct kvm_vcpu *vcpu)
5540{
5541 u32 vmx_instruction_info;
5542 unsigned long type;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005543 gva_t gva;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005544 struct {
5545 u64 pcid;
5546 u64 gla;
5547 } operand;
5548
5549 if (!guest_cpuid_has(vcpu, X86_FEATURE_INVPCID)) {
5550 kvm_queue_exception(vcpu, UD_VECTOR);
5551 return 1;
5552 }
5553
5554 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07005555 type = kvm_register_read(vcpu, (vmx_instruction_info >> 28) & 0xf);
Junaid Shahideb4b2482018-06-27 14:59:14 -07005556
5557 if (type > 3) {
5558 kvm_inject_gp(vcpu, 0);
5559 return 1;
5560 }
5561
5562 /* According to the Intel instruction reference, the memory operand
5563 * is read even if it isn't needed (e.g., for type==all)
5564 */
Sean Christopherson5addc232020-04-15 13:34:53 -07005565 if (get_vmx_mem_address(vcpu, vmx_get_exit_qual(vcpu),
Eugene Korenevskyfdb28612019-06-06 00:19:16 +03005566 vmx_instruction_info, false,
5567 sizeof(operand), &gva))
Junaid Shahideb4b2482018-06-27 14:59:14 -07005568 return 1;
5569
Babu Moger97150922020-09-11 14:29:12 -05005570 return kvm_handle_invpcid(vcpu, type, gva);
Junaid Shahideb4b2482018-06-27 14:59:14 -07005571}
5572
Kai Huang843e4332015-01-28 10:54:28 +08005573static int handle_pml_full(struct kvm_vcpu *vcpu)
5574{
5575 unsigned long exit_qualification;
5576
5577 trace_kvm_pml_full(vcpu->vcpu_id);
5578
Sean Christopherson5addc232020-04-15 13:34:53 -07005579 exit_qualification = vmx_get_exit_qual(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005580
5581 /*
5582 * PML buffer FULL happened while executing iret from NMI,
5583 * "blocked by NMI" bit has to be set before next VM entry.
5584 */
5585 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005586 enable_vnmi &&
Kai Huang843e4332015-01-28 10:54:28 +08005587 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
5588 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5589 GUEST_INTR_STATE_NMI);
5590
5591 /*
5592 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
5593 * here.., and there's no userspace involvement needed for PML.
5594 */
5595 return 1;
5596}
5597
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005598static fastpath_t handle_fastpath_preemption_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07005599{
Sean Christopherson804939e2019-05-07 12:18:05 -07005600 struct vcpu_vmx *vmx = to_vmx(vcpu);
5601
5602 if (!vmx->req_immediate_exit &&
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005603 !unlikely(vmx->loaded_vmcs->hv_timer_soft_disabled)) {
Sean Christophersond264ee02018-08-27 15:21:12 -07005604 kvm_lapic_expired_hv_timer(vcpu);
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005605 return EXIT_FASTPATH_REENTER_GUEST;
5606 }
Sean Christopherson804939e2019-05-07 12:18:05 -07005607
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005608 return EXIT_FASTPATH_NONE;
5609}
5610
5611static int handle_preemption_timer(struct kvm_vcpu *vcpu)
5612{
5613 handle_fastpath_preemption_timer(vcpu);
Yunhong Jiang64672c92016-06-13 14:19:59 -07005614 return 1;
5615}
5616
Sean Christophersone4027cf2018-12-03 13:53:12 -08005617/*
5618 * When nested=0, all VMX instruction VM Exits filter here. The handlers
5619 * are overwritten by nested_vmx_setup() when nested=1.
5620 */
5621static int handle_vmx_instruction(struct kvm_vcpu *vcpu)
5622{
5623 kvm_queue_exception(vcpu, UD_VECTOR);
5624 return 1;
5625}
5626
Sean Christopherson9798adb2021-04-12 16:21:38 +12005627#ifndef CONFIG_X86_SGX_KVM
Sean Christopherson0b665d32018-08-14 09:33:34 -07005628static int handle_encls(struct kvm_vcpu *vcpu)
5629{
5630 /*
Sean Christopherson9798adb2021-04-12 16:21:38 +12005631 * SGX virtualization is disabled. There is no software enable bit for
5632 * SGX, so KVM intercepts all ENCLS leafs and injects a #UD to prevent
5633 * the guest from executing ENCLS (when SGX is supported by hardware).
Sean Christopherson0b665d32018-08-14 09:33:34 -07005634 */
5635 kvm_queue_exception(vcpu, UD_VECTOR);
5636 return 1;
5637}
Sean Christopherson9798adb2021-04-12 16:21:38 +12005638#endif /* CONFIG_X86_SGX_KVM */
Sean Christopherson0b665d32018-08-14 09:33:34 -07005639
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005640static int handle_bus_lock_vmexit(struct kvm_vcpu *vcpu)
5641{
5642 vcpu->run->exit_reason = KVM_EXIT_X86_BUS_LOCK;
5643 vcpu->run->flags |= KVM_RUN_X86_BUS_LOCK;
5644 return 0;
5645}
5646
Nadav Har'El0140cae2011-05-25 23:06:28 +03005647/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005648 * The exit handlers return 1 if the exit was handled fully and guest execution
5649 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
5650 * to be done to userspace and return 0.
5651 */
Sean Christophersone4027cf2018-12-03 13:53:12 -08005652static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Sean Christopherson95b5a482019-04-19 22:50:59 -07005653 [EXIT_REASON_EXCEPTION_NMI] = handle_exception_nmi,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005654 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08005655 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08005656 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005657 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005658 [EXIT_REASON_CR_ACCESS] = handle_cr,
5659 [EXIT_REASON_DR_ACCESS] = handle_dr,
Andrea Arcangelif399e602019-11-04 17:59:58 -05005660 [EXIT_REASON_CPUID] = kvm_emulate_cpuid,
5661 [EXIT_REASON_MSR_READ] = kvm_emulate_rdmsr,
5662 [EXIT_REASON_MSR_WRITE] = kvm_emulate_wrmsr,
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005663 [EXIT_REASON_INTERRUPT_WINDOW] = handle_interrupt_window,
Andrea Arcangelif399e602019-11-04 17:59:58 -05005664 [EXIT_REASON_HLT] = kvm_emulate_halt,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005665 [EXIT_REASON_INVD] = kvm_emulate_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03005666 [EXIT_REASON_INVLPG] = handle_invlpg,
Sean Christophersonc483c452021-02-04 16:57:48 -08005667 [EXIT_REASON_RDPMC] = kvm_emulate_rdpmc,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005668 [EXIT_REASON_VMCALL] = kvm_emulate_hypercall,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005669 [EXIT_REASON_VMCLEAR] = handle_vmx_instruction,
5670 [EXIT_REASON_VMLAUNCH] = handle_vmx_instruction,
5671 [EXIT_REASON_VMPTRLD] = handle_vmx_instruction,
5672 [EXIT_REASON_VMPTRST] = handle_vmx_instruction,
5673 [EXIT_REASON_VMREAD] = handle_vmx_instruction,
5674 [EXIT_REASON_VMRESUME] = handle_vmx_instruction,
5675 [EXIT_REASON_VMWRITE] = handle_vmx_instruction,
5676 [EXIT_REASON_VMOFF] = handle_vmx_instruction,
5677 [EXIT_REASON_VMON] = handle_vmx_instruction,
Sheng Yangf78e0e22007-10-29 09:40:42 +08005678 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
5679 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08005680 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08005681 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005682 [EXIT_REASON_WBINVD] = kvm_emulate_wbinvd,
Sean Christopherson92f98952021-02-04 16:57:46 -08005683 [EXIT_REASON_XSETBV] = kvm_emulate_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02005684 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08005685 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Paolo Bonzini0367f202016-07-12 10:44:55 +02005686 [EXIT_REASON_GDTR_IDTR] = handle_desc,
5687 [EXIT_REASON_LDTR_TR] = handle_desc,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005688 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
5689 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005690 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005691 [EXIT_REASON_MWAIT_INSTRUCTION] = kvm_emulate_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005692 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005693 [EXIT_REASON_MONITOR_INSTRUCTION] = kvm_emulate_monitor,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005694 [EXIT_REASON_INVEPT] = handle_vmx_instruction,
5695 [EXIT_REASON_INVVPID] = handle_vmx_instruction,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005696 [EXIT_REASON_RDRAND] = kvm_handle_invalid_op,
5697 [EXIT_REASON_RDSEED] = kvm_handle_invalid_op,
Kai Huang843e4332015-01-28 10:54:28 +08005698 [EXIT_REASON_PML_FULL] = handle_pml_full,
Junaid Shahideb4b2482018-06-27 14:59:14 -07005699 [EXIT_REASON_INVPCID] = handle_invpcid,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005700 [EXIT_REASON_VMFUNC] = handle_vmx_instruction,
Yunhong Jiang64672c92016-06-13 14:19:59 -07005701 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Sean Christopherson0b665d32018-08-14 09:33:34 -07005702 [EXIT_REASON_ENCLS] = handle_encls,
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005703 [EXIT_REASON_BUS_LOCK] = handle_bus_lock_vmexit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005704};
5705
5706static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04005707 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005708
Sean Christopherson235ba742020-09-23 13:13:46 -07005709static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2,
5710 u32 *intr_info, u32 *error_code)
Avi Kivity586f9602010-11-18 13:09:54 +02005711{
Sean Christopherson235ba742020-09-23 13:13:46 -07005712 struct vcpu_vmx *vmx = to_vmx(vcpu);
5713
Sean Christopherson5addc232020-04-15 13:34:53 -07005714 *info1 = vmx_get_exit_qual(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08005715 if (!(vmx->exit_reason.failed_vmentry)) {
Sean Christopherson235ba742020-09-23 13:13:46 -07005716 *info2 = vmx->idt_vectoring_info;
5717 *intr_info = vmx_get_intr_info(vcpu);
5718 if (is_exception_with_error_code(*intr_info))
5719 *error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
5720 else
5721 *error_code = 0;
5722 } else {
5723 *info2 = 0;
5724 *intr_info = 0;
5725 *error_code = 0;
5726 }
Avi Kivity586f9602010-11-18 13:09:54 +02005727}
5728
Kai Huanga3eaa862015-11-04 13:46:05 +08005729static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08005730{
Kai Huanga3eaa862015-11-04 13:46:05 +08005731 if (vmx->pml_pg) {
5732 __free_page(vmx->pml_pg);
5733 vmx->pml_pg = NULL;
5734 }
Kai Huang843e4332015-01-28 10:54:28 +08005735}
5736
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005737static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08005738{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005739 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005740 u64 *pml_buf;
5741 u16 pml_idx;
5742
5743 pml_idx = vmcs_read16(GUEST_PML_INDEX);
5744
5745 /* Do nothing if PML buffer is empty */
5746 if (pml_idx == (PML_ENTITY_NUM - 1))
5747 return;
5748
5749 /* PML index always points to next available PML buffer entity */
5750 if (pml_idx >= PML_ENTITY_NUM)
5751 pml_idx = 0;
5752 else
5753 pml_idx++;
5754
5755 pml_buf = page_address(vmx->pml_pg);
5756 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
5757 u64 gpa;
5758
5759 gpa = pml_buf[pml_idx];
5760 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005761 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08005762 }
5763
5764 /* reset PML index */
5765 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5766}
5767
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005768static void vmx_dump_sel(char *name, uint32_t sel)
5769{
5770 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05005771 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005772 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
5773 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
5774 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
5775}
5776
5777static void vmx_dump_dtsel(char *name, uint32_t limit)
5778{
5779 pr_err("%s limit=0x%08x, base=0x%016lx\n",
5780 name, vmcs_read32(limit),
5781 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
5782}
5783
David Edmondson84860392021-03-18 12:08:41 +00005784static void vmx_dump_msrs(char *name, struct vmx_msrs *m)
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005785{
David Edmondson84860392021-03-18 12:08:41 +00005786 unsigned int i;
5787 struct vmx_msr_entry *e;
5788
5789 pr_err("MSR %s:\n", name);
5790 for (i = 0, e = m->val; i < m->nr; ++i, ++e)
5791 pr_err(" %2d: msr=0x%08x value=0x%016llx\n", i, e->index, e->value);
5792}
5793
David Edmondson0702a3c2021-03-18 12:08:40 +00005794void dump_vmcs(struct kvm_vcpu *vcpu)
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005795{
David Edmondson0702a3c2021-03-18 12:08:40 +00005796 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005797 u32 vmentry_ctl, vmexit_ctl;
5798 u32 cpu_based_exec_ctrl, pin_based_exec_ctrl, secondary_exec_control;
5799 unsigned long cr4;
David Edmondson0702a3c2021-03-18 12:08:40 +00005800 int efer_slot;
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005801
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005802 if (!dump_invalid_vmcs) {
5803 pr_warn_ratelimited("set kvm_intel.dump_invalid_vmcs=1 to dump internal KVM state.\n");
5804 return;
5805 }
5806
5807 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
5808 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
5809 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5810 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
5811 cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005812 secondary_exec_control = 0;
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005813 if (cpu_has_secondary_exec_ctrls())
5814 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
5815
5816 pr_err("*** Guest State ***\n");
5817 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5818 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
5819 vmcs_readl(CR0_GUEST_HOST_MASK));
5820 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5821 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
5822 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
David Edmondsond9e46d32021-03-18 12:08:37 +00005823 if (cpu_has_vmx_ept()) {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005824 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
5825 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
5826 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
5827 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005828 }
5829 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
5830 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
5831 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
5832 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
5833 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5834 vmcs_readl(GUEST_SYSENTER_ESP),
5835 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
5836 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
5837 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
5838 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
5839 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
5840 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
5841 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
5842 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
5843 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
5844 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
5845 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
David Edmondson0702a3c2021-03-18 12:08:40 +00005846 efer_slot = vmx_find_loadstore_msr_slot(&vmx->msr_autoload.guest, MSR_EFER);
David Edmondson5518da62021-03-18 12:08:39 +00005847 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_EFER)
David Edmondson699e1b22021-03-18 12:08:38 +00005848 pr_err("EFER= 0x%016llx\n", vmcs_read64(GUEST_IA32_EFER));
David Edmondson0702a3c2021-03-18 12:08:40 +00005849 else if (efer_slot >= 0)
5850 pr_err("EFER= 0x%016llx (autoload)\n",
5851 vmx->msr_autoload.guest.val[efer_slot].value);
5852 else if (vmentry_ctl & VM_ENTRY_IA32E_MODE)
5853 pr_err("EFER= 0x%016llx (effective)\n",
5854 vcpu->arch.efer | (EFER_LMA | EFER_LME));
5855 else
5856 pr_err("EFER= 0x%016llx (effective)\n",
5857 vcpu->arch.efer & ~(EFER_LMA | EFER_LME));
David Edmondson5518da62021-03-18 12:08:39 +00005858 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PAT)
David Edmondson699e1b22021-03-18 12:08:38 +00005859 pr_err("PAT = 0x%016llx\n", vmcs_read64(GUEST_IA32_PAT));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005860 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
5861 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005862 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005863 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005864 vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005865 pr_err("PerfGlobCtl = 0x%016llx\n",
5866 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005867 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005868 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005869 pr_err("Interruptibility = %08x ActivityState = %08x\n",
5870 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
5871 vmcs_read32(GUEST_ACTIVITY_STATE));
5872 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
5873 pr_err("InterruptStatus = %04x\n",
5874 vmcs_read16(GUEST_INTR_STATUS));
David Edmondson84860392021-03-18 12:08:41 +00005875 if (vmcs_read32(VM_ENTRY_MSR_LOAD_COUNT) > 0)
5876 vmx_dump_msrs("guest autoload", &vmx->msr_autoload.guest);
5877 if (vmcs_read32(VM_EXIT_MSR_STORE_COUNT) > 0)
5878 vmx_dump_msrs("guest autostore", &vmx->msr_autostore.guest);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005879
5880 pr_err("*** Host State ***\n");
5881 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
5882 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
5883 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
5884 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
5885 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
5886 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
5887 vmcs_read16(HOST_TR_SELECTOR));
5888 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
5889 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
5890 vmcs_readl(HOST_TR_BASE));
5891 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
5892 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
5893 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
5894 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
5895 vmcs_readl(HOST_CR4));
5896 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5897 vmcs_readl(HOST_IA32_SYSENTER_ESP),
5898 vmcs_read32(HOST_IA32_SYSENTER_CS),
5899 vmcs_readl(HOST_IA32_SYSENTER_EIP));
David Edmondson699e1b22021-03-18 12:08:38 +00005900 if (vmexit_ctl & VM_EXIT_LOAD_IA32_EFER)
5901 pr_err("EFER= 0x%016llx\n", vmcs_read64(HOST_IA32_EFER));
5902 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PAT)
5903 pr_err("PAT = 0x%016llx\n", vmcs_read64(HOST_IA32_PAT));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005904 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005905 vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005906 pr_err("PerfGlobCtl = 0x%016llx\n",
5907 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
David Edmondson84860392021-03-18 12:08:41 +00005908 if (vmcs_read32(VM_EXIT_MSR_LOAD_COUNT) > 0)
5909 vmx_dump_msrs("host autoload", &vmx->msr_autoload.host);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005910
5911 pr_err("*** Control State ***\n");
5912 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
5913 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
5914 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
5915 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
5916 vmcs_read32(EXCEPTION_BITMAP),
5917 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
5918 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
5919 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
5920 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
5921 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
5922 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
5923 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
5924 vmcs_read32(VM_EXIT_INTR_INFO),
5925 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
5926 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
5927 pr_err(" reason=%08x qualification=%016lx\n",
5928 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
5929 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
5930 vmcs_read32(IDT_VECTORING_INFO_FIELD),
5931 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005932 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08005933 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005934 pr_err("TSC Multiplier = 0x%016llx\n",
5935 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005936 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW) {
5937 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
5938 u16 status = vmcs_read16(GUEST_INTR_STATUS);
5939 pr_err("SVI|RVI = %02x|%02x ", status >> 8, status & 0xff);
5940 }
Dan Carpenterd6a85c32019-04-24 13:15:08 +03005941 pr_cont("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005942 if (secondary_exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
5943 pr_err("APIC-access addr = 0x%016llx ", vmcs_read64(APIC_ACCESS_ADDR));
Dan Carpenterd6a85c32019-04-24 13:15:08 +03005944 pr_cont("virt-APIC addr = 0x%016llx\n", vmcs_read64(VIRTUAL_APIC_PAGE_ADDR));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005945 }
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005946 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
5947 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
5948 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005949 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005950 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
5951 pr_err("PLE Gap=%08x Window=%08x\n",
5952 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
5953 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
5954 pr_err("Virtual processor ID = 0x%04x\n",
5955 vmcs_read16(VIRTUAL_PROCESSOR_ID));
5956}
5957
Avi Kivity6aa8b732006-12-10 02:21:36 -08005958/*
5959 * The guest has exited. See if we can fix it or if we need userspace
5960 * assistance.
5961 */
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005962static int __vmx_handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005963{
Avi Kivity29bd8a72007-09-10 17:27:03 +03005964 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08005965 union vmx_exit_reason exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02005966 u32 vectoring_info = vmx->idt_vectoring_info;
Sean Christopherson8e533242020-11-06 17:03:12 +08005967 u16 exit_handler_index;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005968
Kai Huang843e4332015-01-28 10:54:28 +08005969 /*
5970 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
5971 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
5972 * querying dirty_bitmap, we only need to kick all vcpus out of guest
5973 * mode as if vcpus is in root mode, the PML buffer must has been
Sean Christophersonc3bb9a22021-02-12 16:50:07 -08005974 * flushed already. Note, PML is never enabled in hardware while
5975 * running L2.
Kai Huang843e4332015-01-28 10:54:28 +08005976 */
Sean Christophersonc3bb9a22021-02-12 16:50:07 -08005977 if (enable_pml && !is_guest_mode(vcpu))
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005978 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005979
Sean Christophersondb438592020-04-22 19:25:48 -07005980 /*
5981 * We should never reach this point with a pending nested VM-Enter, and
5982 * more specifically emulation of L2 due to invalid guest state (see
5983 * below) should never happen as that means we incorrectly allowed a
5984 * nested VM-Enter with an invalid vmcs12.
5985 */
5986 WARN_ON_ONCE(vmx->nested.nested_run_pending);
5987
Mohammed Gamal80ced182009-09-01 12:48:18 +02005988 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02005989 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02005990 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005991
Paolo Bonzini96b100c2020-03-17 18:32:50 +01005992 if (is_guest_mode(vcpu)) {
5993 /*
Sean Christophersonc3bb9a22021-02-12 16:50:07 -08005994 * PML is never enabled when running L2, bail immediately if a
5995 * PML full exit occurs as something is horribly wrong.
5996 */
5997 if (exit_reason.basic == EXIT_REASON_PML_FULL)
5998 goto unexpected_vmexit;
5999
6000 /*
Paolo Bonzini96b100c2020-03-17 18:32:50 +01006001 * The host physical addresses of some pages of guest memory
6002 * are loaded into the vmcs02 (e.g. vmcs12's Virtual APIC
6003 * Page). The CPU may write to these pages via their host
6004 * physical address while L2 is running, bypassing any
6005 * address-translation-based dirty tracking (e.g. EPT write
6006 * protection).
6007 *
6008 * Mark them dirty on every exit from L2 to prevent them from
6009 * getting out of sync with dirty tracking.
6010 */
6011 nested_mark_vmcs12_pages_dirty(vcpu);
6012
Sean Christophersonf47baae2020-04-15 10:55:16 -07006013 if (nested_vmx_reflect_vmexit(vcpu))
Sean Christopherson789afc52020-04-15 10:55:10 -07006014 return 1;
Paolo Bonzini96b100c2020-03-17 18:32:50 +01006015 }
Nadav Har'El644d7112011-05-25 23:12:35 +03006016
Sean Christopherson8e533242020-11-06 17:03:12 +08006017 if (exit_reason.failed_vmentry) {
David Edmondson0702a3c2021-03-18 12:08:40 +00006018 dump_vmcs(vcpu);
Mohammed Gamal51207022010-05-31 22:40:54 +03006019 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
6020 vcpu->run->fail_entry.hardware_entry_failure_reason
Sean Christopherson8e533242020-11-06 17:03:12 +08006021 = exit_reason.full;
Jim Mattson8a14fe42020-06-03 16:56:22 -07006022 vcpu->run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Mohammed Gamal51207022010-05-31 22:40:54 +03006023 return 0;
6024 }
6025
Avi Kivity29bd8a72007-09-10 17:27:03 +03006026 if (unlikely(vmx->fail)) {
David Edmondson0702a3c2021-03-18 12:08:40 +00006027 dump_vmcs(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03006028 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
6029 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03006030 = vmcs_read32(VM_INSTRUCTION_ERROR);
Jim Mattson8a14fe42020-06-03 16:56:22 -07006031 vcpu->run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Avi Kivity29bd8a72007-09-10 17:27:03 +03006032 return 0;
6033 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006034
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08006035 /*
6036 * Note:
6037 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
6038 * delivery event since it indicates guest is accessing MMIO.
6039 * The vm-exit can be triggered again after return to guest that
6040 * will cause infinite loop.
6041 */
Mike Dayd77c26f2007-10-08 09:02:08 -04006042 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sean Christopherson8e533242020-11-06 17:03:12 +08006043 (exit_reason.basic != EXIT_REASON_EXCEPTION_NMI &&
6044 exit_reason.basic != EXIT_REASON_EPT_VIOLATION &&
6045 exit_reason.basic != EXIT_REASON_PML_FULL &&
6046 exit_reason.basic != EXIT_REASON_APIC_ACCESS &&
6047 exit_reason.basic != EXIT_REASON_TASK_SWITCH)) {
Reiji Watanabe04c4f2e2021-04-13 15:47:40 +00006048 int ndata = 3;
6049
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08006050 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6051 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08006052 vcpu->run->internal.data[0] = vectoring_info;
Sean Christopherson8e533242020-11-06 17:03:12 +08006053 vcpu->run->internal.data[1] = exit_reason.full;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02006054 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
Sean Christopherson8e533242020-11-06 17:03:12 +08006055 if (exit_reason.basic == EXIT_REASON_EPT_MISCONFIG) {
Reiji Watanabe04c4f2e2021-04-13 15:47:40 +00006056 vcpu->run->internal.data[ndata++] =
Paolo Bonzini70bcd702017-07-05 12:38:06 +02006057 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
6058 }
Reiji Watanabe04c4f2e2021-04-13 15:47:40 +00006059 vcpu->run->internal.data[ndata++] = vcpu->arch.last_vmentry_cpu;
6060 vcpu->run->internal.ndata = ndata;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08006061 return 0;
6062 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006063
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006064 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006065 vmx->loaded_vmcs->soft_vnmi_blocked)) {
Sean Christophersondb438592020-04-22 19:25:48 -07006066 if (!vmx_interrupt_blocked(vcpu)) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006067 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
6068 } else if (vmx->loaded_vmcs->vnmi_blocked_time > 1000000000LL &&
6069 vcpu->arch.nmi_pending) {
6070 /*
6071 * This CPU don't support us in finding the end of an
6072 * NMI-blocked window if the guest runs with IRQs
6073 * disabled. So we pull the trigger after 1 s of
6074 * futile waiting, but inform the user about this.
6075 */
6076 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
6077 "state on VCPU %d after 1 s timeout\n",
6078 __func__, vcpu->vcpu_id);
6079 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
6080 }
6081 }
6082
Wanpeng Li404d5d72020-04-28 14:23:25 +08006083 if (exit_fastpath != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08006084 return 1;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006085
Sean Christopherson8e533242020-11-06 17:03:12 +08006086 if (exit_reason.basic >= kvm_vmx_max_exit_handlers)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006087 goto unexpected_vmexit;
6088#ifdef CONFIG_RETPOLINE
Sean Christopherson8e533242020-11-06 17:03:12 +08006089 if (exit_reason.basic == EXIT_REASON_MSR_WRITE)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006090 return kvm_emulate_wrmsr(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006091 else if (exit_reason.basic == EXIT_REASON_PREEMPTION_TIMER)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006092 return handle_preemption_timer(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006093 else if (exit_reason.basic == EXIT_REASON_INTERRUPT_WINDOW)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006094 return handle_interrupt_window(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006095 else if (exit_reason.basic == EXIT_REASON_EXTERNAL_INTERRUPT)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006096 return handle_external_interrupt(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006097 else if (exit_reason.basic == EXIT_REASON_HLT)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006098 return kvm_emulate_halt(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006099 else if (exit_reason.basic == EXIT_REASON_EPT_MISCONFIG)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006100 return handle_ept_misconfig(vcpu);
6101#endif
6102
Sean Christopherson8e533242020-11-06 17:03:12 +08006103 exit_handler_index = array_index_nospec((u16)exit_reason.basic,
6104 kvm_vmx_max_exit_handlers);
6105 if (!kvm_vmx_exit_handlers[exit_handler_index])
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006106 goto unexpected_vmexit;
6107
Sean Christopherson8e533242020-11-06 17:03:12 +08006108 return kvm_vmx_exit_handlers[exit_handler_index](vcpu);
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006109
6110unexpected_vmexit:
Sean Christopherson8e533242020-11-06 17:03:12 +08006111 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
6112 exit_reason.full);
David Edmondson0702a3c2021-03-18 12:08:40 +00006113 dump_vmcs(vcpu);
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006114 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6115 vcpu->run->internal.suberror =
6116 KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
Jim Mattson1aa561b2020-06-03 16:56:21 -07006117 vcpu->run->internal.ndata = 2;
Sean Christopherson8e533242020-11-06 17:03:12 +08006118 vcpu->run->internal.data[0] = exit_reason.full;
Jim Mattson8a14fe42020-06-03 16:56:22 -07006119 vcpu->run->internal.data[1] = vcpu->arch.last_vmentry_cpu;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006120 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006121}
6122
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08006123static int vmx_handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
6124{
6125 int ret = __vmx_handle_exit(vcpu, exit_fastpath);
6126
6127 /*
6128 * Even when current exit reason is handled by KVM internally, we
6129 * still need to exit to user space when bus lock detected to inform
6130 * that there is a bus lock in guest.
6131 */
6132 if (to_vmx(vcpu)->exit_reason.bus_lock_detected) {
6133 if (ret > 0)
6134 vcpu->run->exit_reason = KVM_EXIT_X86_BUS_LOCK;
6135
6136 vcpu->run->flags |= KVM_RUN_X86_BUS_LOCK;
6137 return 0;
6138 }
6139 return ret;
6140}
6141
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006142/*
6143 * Software based L1D cache flush which is used when microcode providing
6144 * the cache control MSR is not loaded.
6145 *
6146 * The L1D cache is 32 KiB on Nehalem and later microarchitectures, but to
6147 * flush it is required to read in 64 KiB because the replacement algorithm
6148 * is not exactly LRU. This could be sized at runtime via topology
6149 * information but as all relevant affected CPUs have 32KiB L1D cache size
6150 * there is no point in doing so.
6151 */
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006152static noinstr void vmx_l1d_flush(struct kvm_vcpu *vcpu)
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006153{
6154 int size = PAGE_SIZE << L1D_CACHE_ORDER;
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006155
6156 /*
Thomas Gleixner2f055942018-07-13 16:23:17 +02006157 * This code is only executed when the the flush mode is 'cond' or
6158 * 'always'
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006159 */
Nicolai Stange427362a2018-07-21 22:25:00 +02006160 if (static_branch_likely(&vmx_l1d_flush_cond)) {
Nicolai Stange45b575c2018-07-27 13:22:16 +02006161 bool flush_l1d;
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02006162
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006163 /*
Nicolai Stange45b575c2018-07-27 13:22:16 +02006164 * Clear the per-vcpu flush bit, it gets set again
6165 * either from vcpu_run() or from one of the unsafe
6166 * VMEXIT handlers.
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006167 */
Nicolai Stange45b575c2018-07-27 13:22:16 +02006168 flush_l1d = vcpu->arch.l1tf_flush_l1d;
Thomas Gleixner4c6523e2018-07-13 16:23:20 +02006169 vcpu->arch.l1tf_flush_l1d = false;
Nicolai Stange45b575c2018-07-27 13:22:16 +02006170
6171 /*
6172 * Clear the per-cpu flush bit, it gets set again from
6173 * the interrupt handlers.
6174 */
6175 flush_l1d |= kvm_get_cpu_l1tf_flush_l1d();
6176 kvm_clear_cpu_l1tf_flush_l1d();
6177
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02006178 if (!flush_l1d)
6179 return;
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006180 }
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006181
6182 vcpu->stat.l1d_flush++;
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006183
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02006184 if (static_cpu_has(X86_FEATURE_FLUSH_L1D)) {
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006185 native_wrmsrl(MSR_IA32_FLUSH_CMD, L1D_FLUSH);
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02006186 return;
6187 }
6188
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006189 asm volatile(
6190 /* First ensure the pages are in the TLB */
6191 "xorl %%eax, %%eax\n"
6192 ".Lpopulate_tlb:\n\t"
Nicolai Stange288d1522018-07-18 19:07:38 +02006193 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006194 "addl $4096, %%eax\n\t"
6195 "cmpl %%eax, %[size]\n\t"
6196 "jne .Lpopulate_tlb\n\t"
6197 "xorl %%eax, %%eax\n\t"
6198 "cpuid\n\t"
6199 /* Now fill the cache */
6200 "xorl %%eax, %%eax\n"
6201 ".Lfill_cache:\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02006202 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006203 "addl $64, %%eax\n\t"
6204 "cmpl %%eax, %[size]\n\t"
6205 "jne .Lfill_cache\n\t"
6206 "lfence\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02006207 :: [flush_pages] "r" (vmx_l1d_flush_pages),
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006208 [size] "r" (size)
6209 : "eax", "ebx", "ecx", "edx");
6210}
6211
Jason Baronb6a7cc32021-01-14 22:27:54 -05006212static void vmx_update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006213{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006214 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Liran Alon132f4f72019-11-11 14:30:54 +02006215 int tpr_threshold;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006216
6217 if (is_guest_mode(vcpu) &&
6218 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
6219 return;
6220
Liran Alon132f4f72019-11-11 14:30:54 +02006221 tpr_threshold = (irr == -1 || tpr < irr) ? 0 : irr;
Liran Alon02d496cf2019-11-11 14:30:55 +02006222 if (is_guest_mode(vcpu))
6223 to_vmx(vcpu)->nested.l1_tpr_threshold = tpr_threshold;
6224 else
6225 vmcs_write32(TPR_THRESHOLD, tpr_threshold);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006226}
6227
Sean Christopherson97b7ead2018-12-03 13:53:16 -08006228void vmx_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08006229{
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006230 struct vcpu_vmx *vmx = to_vmx(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08006231 u32 sec_exec_control;
6232
Jim Mattson8d860bb2018-05-09 16:56:05 -04006233 if (!lapic_in_kernel(vcpu))
6234 return;
6235
Sean Christophersonfd6b6d92018-10-01 14:25:34 -07006236 if (!flexpriority_enabled &&
6237 !cpu_has_vmx_virtualize_x2apic_mode())
6238 return;
6239
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02006240 /* Postpone execution until vmcs01 is the current VMCS. */
6241 if (is_guest_mode(vcpu)) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006242 vmx->nested.change_vmcs01_virtual_apic_mode = true;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02006243 return;
6244 }
6245
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006246 sec_exec_control = secondary_exec_controls_get(vmx);
Jim Mattson8d860bb2018-05-09 16:56:05 -04006247 sec_exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
6248 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
Yang Zhang8d146952013-01-25 10:18:50 +08006249
Jim Mattson8d860bb2018-05-09 16:56:05 -04006250 switch (kvm_get_apic_mode(vcpu)) {
6251 case LAPIC_MODE_INVALID:
6252 WARN_ONCE(true, "Invalid local APIC state");
Gustavo A. R. Silva551912d2021-05-28 15:07:56 -05006253 break;
Jim Mattson8d860bb2018-05-09 16:56:05 -04006254 case LAPIC_MODE_DISABLED:
6255 break;
6256 case LAPIC_MODE_XAPIC:
6257 if (flexpriority_enabled) {
6258 sec_exec_control |=
6259 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sean Christopherson4de1f9d2020-03-20 14:28:25 -07006260 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
6261
6262 /*
6263 * Flush the TLB, reloading the APIC access page will
6264 * only do so if its physical address has changed, but
6265 * the guest may have inserted a non-APIC mapping into
6266 * the TLB while the APIC access page was disabled.
6267 */
6268 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
Jim Mattson8d860bb2018-05-09 16:56:05 -04006269 }
6270 break;
6271 case LAPIC_MODE_X2APIC:
6272 if (cpu_has_vmx_virtualize_x2apic_mode())
6273 sec_exec_control |=
6274 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
6275 break;
Yang Zhang8d146952013-01-25 10:18:50 +08006276 }
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006277 secondary_exec_controls_set(vmx, sec_exec_control);
Yang Zhang8d146952013-01-25 10:18:50 +08006278
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006279 vmx_update_msr_bitmap(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08006280}
6281
Sean Christophersona4148b72020-03-20 14:28:24 -07006282static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu)
Tang Chen38b99172014-09-24 15:57:54 +08006283{
Sean Christophersona4148b72020-03-20 14:28:24 -07006284 struct page *page;
6285
Sean Christopherson1196cb92020-03-20 14:28:23 -07006286 /* Defer reload until vmcs01 is the current VMCS. */
6287 if (is_guest_mode(vcpu)) {
6288 to_vmx(vcpu)->nested.reload_vmcs01_apic_access_page = true;
6289 return;
Jim Mattsonfb6c8192017-03-16 13:53:59 -07006290 }
Sean Christopherson1196cb92020-03-20 14:28:23 -07006291
Sean Christopherson4de1f9d2020-03-20 14:28:25 -07006292 if (!(secondary_exec_controls_get(to_vmx(vcpu)) &
6293 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
6294 return;
6295
Sean Christophersona4148b72020-03-20 14:28:24 -07006296 page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
6297 if (is_error_page(page))
6298 return;
6299
6300 vmcs_write64(APIC_ACCESS_ADDR, page_to_phys(page));
Sean Christopherson1196cb92020-03-20 14:28:23 -07006301 vmx_flush_tlb_current(vcpu);
Sean Christophersona4148b72020-03-20 14:28:24 -07006302
6303 /*
6304 * Do not pin apic access page in memory, the MMU notifier
6305 * will call us again if it is migrated or swapped out.
6306 */
6307 put_page(page);
Tang Chen38b99172014-09-24 15:57:54 +08006308}
6309
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006310static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006311{
6312 u16 status;
6313 u8 old;
6314
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006315 if (max_isr == -1)
6316 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006317
6318 status = vmcs_read16(GUEST_INTR_STATUS);
6319 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006320 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08006321 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006322 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006323 vmcs_write16(GUEST_INTR_STATUS, status);
6324 }
6325}
6326
6327static void vmx_set_rvi(int vector)
6328{
6329 u16 status;
6330 u8 old;
6331
Wei Wang4114c272014-11-05 10:53:43 +08006332 if (vector == -1)
6333 vector = 0;
6334
Yang Zhangc7c9c562013-01-25 10:18:51 +08006335 status = vmcs_read16(GUEST_INTR_STATUS);
6336 old = (u8)status & 0xff;
6337 if ((u8)vector != old) {
6338 status &= ~0xff;
6339 status |= (u8)vector;
6340 vmcs_write16(GUEST_INTR_STATUS, status);
6341 }
6342}
6343
6344static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
6345{
Liran Alon851c1a182017-12-24 18:12:56 +02006346 /*
6347 * When running L2, updating RVI is only relevant when
6348 * vmcs12 virtual-interrupt-delivery enabled.
6349 * However, it can be enabled only when L1 also
6350 * intercepts external-interrupts and in that case
6351 * we should not update vmcs02 RVI but instead intercept
6352 * interrupt. Therefore, do nothing when running L2.
6353 */
6354 if (!is_guest_mode(vcpu))
Wanpeng Li963fee12014-07-17 19:03:00 +08006355 vmx_set_rvi(max_irr);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006356}
6357
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006358static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006359{
6360 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006361 int max_irr;
Liran Alonf27a85c2017-12-24 18:12:55 +02006362 bool max_irr_updated;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006363
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006364 WARN_ON(!vcpu->arch.apicv_active);
6365 if (pi_test_on(&vmx->pi_desc)) {
6366 pi_clear_on(&vmx->pi_desc);
6367 /*
Liran Alond9ff2742019-11-11 14:25:25 +02006368 * IOMMU can write to PID.ON, so the barrier matters even on UP.
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006369 * But on x86 this is just a compiler barrier anyway.
6370 */
6371 smp_mb__after_atomic();
Liran Alonf27a85c2017-12-24 18:12:55 +02006372 max_irr_updated =
6373 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir, &max_irr);
6374
6375 /*
6376 * If we are running L2 and L1 has a new pending interrupt
6377 * which can be injected, we should re-evaluate
6378 * what should be done with this new L1 interrupt.
Liran Alon851c1a182017-12-24 18:12:56 +02006379 * If L1 intercepts external-interrupts, we should
6380 * exit from L2 to L1. Otherwise, interrupt should be
6381 * delivered directly to L2.
Liran Alonf27a85c2017-12-24 18:12:55 +02006382 */
Liran Alon851c1a182017-12-24 18:12:56 +02006383 if (is_guest_mode(vcpu) && max_irr_updated) {
6384 if (nested_exit_on_intr(vcpu))
6385 kvm_vcpu_exiting_guest_mode(vcpu);
6386 else
6387 kvm_make_request(KVM_REQ_EVENT, vcpu);
6388 }
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006389 } else {
6390 max_irr = kvm_lapic_find_highest_irr(vcpu);
6391 }
6392 vmx_hwapic_irr_update(vcpu, max_irr);
6393 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006394}
6395
Andrey Smetanin63086302015-11-10 15:36:32 +03006396static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006397{
Andrey Smetanind62caab2015-11-10 15:36:33 +03006398 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08006399 return;
6400
Yang Zhangc7c9c562013-01-25 10:18:51 +08006401 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
6402 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
6403 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
6404 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
6405}
6406
Paolo Bonzini967235d2016-12-19 14:03:45 +01006407static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
6408{
6409 struct vcpu_vmx *vmx = to_vmx(vcpu);
6410
6411 pi_clear_on(&vmx->pi_desc);
6412 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
6413}
6414
Sean Christopherson535f7ef2020-09-15 12:15:04 -07006415void vmx_do_interrupt_nmi_irqoff(unsigned long entry);
6416
Lai Jiangshana217a652021-05-04 21:50:14 +02006417static void handle_interrupt_nmi_irqoff(struct kvm_vcpu *vcpu,
6418 unsigned long entry)
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006419{
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006420 kvm_before_interrupt(vcpu);
Lai Jiangshana217a652021-05-04 21:50:14 +02006421 vmx_do_interrupt_nmi_irqoff(entry);
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006422 kvm_after_interrupt(vcpu);
6423}
6424
Sean Christopherson95b5a482019-04-19 22:50:59 -07006425static void handle_exception_nmi_irqoff(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03006426{
Lai Jiangshana217a652021-05-04 21:50:14 +02006427 const unsigned long nmi_entry = (unsigned long)asm_exc_nmi_noist;
Sean Christopherson87915852020-04-15 13:34:54 -07006428 u32 intr_info = vmx_get_intr_info(&vmx->vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08006429
Wanpeng Li1261bfa2017-07-13 18:30:40 -07006430 /* if exit due to PF check for async PF */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006431 if (is_page_fault(intr_info))
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02006432 vmx->vcpu.arch.apf.host_apf_flags = kvm_read_and_reset_apf_flags();
Andi Kleena0861c02009-06-08 17:37:09 +08006433 /* Handle machine checks before interrupts are enabled */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006434 else if (is_machine_check(intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08006435 kvm_machine_check();
Gleb Natapov20f65982009-05-11 13:35:55 +03006436 /* We need to handle NMIs before interrupts are enabled */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006437 else if (is_nmi(intr_info))
Lai Jiangshana217a652021-05-04 21:50:14 +02006438 handle_interrupt_nmi_irqoff(&vmx->vcpu, nmi_entry);
Avi Kivity51aa01d2010-07-20 14:31:20 +03006439}
Gleb Natapov20f65982009-05-11 13:35:55 +03006440
Sean Christopherson95b5a482019-04-19 22:50:59 -07006441static void handle_external_interrupt_irqoff(struct kvm_vcpu *vcpu)
Yang Zhanga547c6d2013-04-11 19:25:10 +08006442{
Sean Christopherson87915852020-04-15 13:34:54 -07006443 u32 intr_info = vmx_get_intr_info(vcpu);
Lai Jiangshana217a652021-05-04 21:50:14 +02006444 unsigned int vector = intr_info & INTR_INFO_VECTOR_MASK;
6445 gate_desc *desc = (gate_desc *)host_idt_base + vector;
Yang Zhanga547c6d2013-04-11 19:25:10 +08006446
Sean Christopherson49def502019-04-19 22:50:56 -07006447 if (WARN_ONCE(!is_external_intr(intr_info),
6448 "KVM: unexpected VM-Exit interrupt info: 0x%x", intr_info))
6449 return;
6450
Lai Jiangshana217a652021-05-04 21:50:14 +02006451 handle_interrupt_nmi_irqoff(vcpu, gate_offset(desc));
Yang Zhanga547c6d2013-04-11 19:25:10 +08006452}
Sean Christopherson95b5a482019-04-19 22:50:59 -07006453
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006454static void vmx_handle_exit_irqoff(struct kvm_vcpu *vcpu)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006455{
6456 struct vcpu_vmx *vmx = to_vmx(vcpu);
6457
Sean Christopherson8e533242020-11-06 17:03:12 +08006458 if (vmx->exit_reason.basic == EXIT_REASON_EXTERNAL_INTERRUPT)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006459 handle_external_interrupt_irqoff(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006460 else if (vmx->exit_reason.basic == EXIT_REASON_EXCEPTION_NMI)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006461 handle_exception_nmi_irqoff(vmx);
6462}
Yang Zhanga547c6d2013-04-11 19:25:10 +08006463
Tom Lendacky57194552020-12-10 11:10:00 -06006464/*
6465 * The kvm parameter can be NULL (module initialization, or invocation before
6466 * VM creation). Be sure to check the kvm parameter before using it.
6467 */
6468static bool vmx_has_emulated_msr(struct kvm *kvm, u32 index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006469{
Tom Lendackybc226f02018-05-10 22:06:39 +02006470 switch (index) {
6471 case MSR_IA32_SMBASE:
6472 /*
6473 * We cannot do SMM unless we can run the guest in big
6474 * real mode.
6475 */
6476 return enable_unrestricted_guest || emulate_invalid_guest_state;
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02006477 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
6478 return nested;
Tom Lendackybc226f02018-05-10 22:06:39 +02006479 case MSR_AMD64_VIRT_SPEC_CTRL:
6480 /* This is AMD only. */
6481 return false;
6482 default:
6483 return true;
6484 }
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006485}
6486
Avi Kivity51aa01d2010-07-20 14:31:20 +03006487static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
6488{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02006489 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03006490 bool unblock_nmi;
6491 u8 vector;
6492 bool idtv_info_valid;
6493
6494 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03006495
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006496 if (enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006497 if (vmx->loaded_vmcs->nmi_known_unmasked)
6498 return;
Sean Christopherson87915852020-04-15 13:34:54 -07006499
6500 exit_intr_info = vmx_get_intr_info(&vmx->vcpu);
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006501 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
6502 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
6503 /*
6504 * SDM 3: 27.7.1.2 (September 2008)
6505 * Re-set bit "block by NMI" before VM entry if vmexit caused by
6506 * a guest IRET fault.
6507 * SDM 3: 23.2.2 (September 2008)
6508 * Bit 12 is undefined in any of the following cases:
6509 * If the VM exit sets the valid bit in the IDT-vectoring
6510 * information field.
6511 * If the VM exit is due to a double fault.
6512 */
6513 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
6514 vector != DF_VECTOR && !idtv_info_valid)
6515 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
6516 GUEST_INTR_STATE_NMI);
6517 else
6518 vmx->loaded_vmcs->nmi_known_unmasked =
6519 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
6520 & GUEST_INTR_STATE_NMI);
6521 } else if (unlikely(vmx->loaded_vmcs->soft_vnmi_blocked))
6522 vmx->loaded_vmcs->vnmi_blocked_time +=
6523 ktime_to_ns(ktime_sub(ktime_get(),
6524 vmx->loaded_vmcs->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03006525}
6526
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006527static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03006528 u32 idt_vectoring_info,
6529 int instr_len_field,
6530 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03006531{
Avi Kivity51aa01d2010-07-20 14:31:20 +03006532 u8 vector;
6533 int type;
6534 bool idtv_info_valid;
6535
6536 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03006537
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006538 vcpu->arch.nmi_injected = false;
6539 kvm_clear_exception_queue(vcpu);
6540 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006541
6542 if (!idtv_info_valid)
6543 return;
6544
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006545 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03006546
Avi Kivity668f6122008-07-02 09:28:55 +03006547 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
6548 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006549
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006550 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03006551 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006552 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03006553 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03006554 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03006555 * Clear bit "block by NMI" before VM entry if a NMI
6556 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03006557 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006558 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006559 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006560 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006561 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05006562 fallthrough;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006563 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03006564 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03006565 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03006566 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03006567 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03006568 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006569 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006570 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006571 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05006572 fallthrough;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006573 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006574 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006575 break;
6576 default:
6577 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03006578 }
Avi Kivitycf393f72008-07-01 16:20:21 +03006579}
6580
Avi Kivity83422e12010-07-20 14:43:23 +03006581static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
6582{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006583 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03006584 VM_EXIT_INSTRUCTION_LEN,
6585 IDT_VECTORING_ERROR_CODE);
6586}
6587
Avi Kivityb463a6f2010-07-20 15:06:17 +03006588static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
6589{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006590 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03006591 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
6592 VM_ENTRY_INSTRUCTION_LEN,
6593 VM_ENTRY_EXCEPTION_ERROR_CODE);
6594
6595 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
6596}
6597
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006598static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
6599{
6600 int i, nr_msrs;
6601 struct perf_guest_switch_msr *msrs;
6602
Sean Christophersonc8e2fe12021-03-09 09:10:19 -08006603 /* Note, nr_msrs may be garbage if perf_guest_get_msrs() returns NULL. */
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006604 msrs = perf_guest_get_msrs(&nr_msrs);
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006605 if (!msrs)
6606 return;
6607
6608 for (i = 0; i < nr_msrs; i++)
6609 if (msrs[i].host == msrs[i].guest)
6610 clear_atomic_switch_msr(vmx, msrs[i].msr);
6611 else
6612 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04006613 msrs[i].host, false);
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006614}
6615
Sean Christophersonf459a702018-08-27 15:21:11 -07006616static void vmx_update_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07006617{
6618 struct vcpu_vmx *vmx = to_vmx(vcpu);
6619 u64 tscl;
6620 u32 delta_tsc;
6621
Sean Christophersond264ee02018-08-27 15:21:12 -07006622 if (vmx->req_immediate_exit) {
Sean Christopherson804939e2019-05-07 12:18:05 -07006623 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, 0);
6624 vmx->loaded_vmcs->hv_timer_soft_disabled = false;
6625 } else if (vmx->hv_deadline_tsc != -1) {
Sean Christophersonf459a702018-08-27 15:21:11 -07006626 tscl = rdtsc();
6627 if (vmx->hv_deadline_tsc > tscl)
6628 /* set_hv_timer ensures the delta fits in 32-bits */
6629 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
6630 cpu_preemption_timer_multi);
6631 else
6632 delta_tsc = 0;
6633
Sean Christopherson804939e2019-05-07 12:18:05 -07006634 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
6635 vmx->loaded_vmcs->hv_timer_soft_disabled = false;
6636 } else if (!vmx->loaded_vmcs->hv_timer_soft_disabled) {
6637 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, -1);
6638 vmx->loaded_vmcs->hv_timer_soft_disabled = true;
Sean Christophersonf459a702018-08-27 15:21:11 -07006639 }
Yunhong Jiang64672c92016-06-13 14:19:59 -07006640}
6641
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006642void noinstr vmx_update_host_rsp(struct vcpu_vmx *vmx, unsigned long host_rsp)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006643{
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006644 if (unlikely(host_rsp != vmx->loaded_vmcs->host_state.rsp)) {
6645 vmx->loaded_vmcs->host_state.rsp = host_rsp;
6646 vmcs_writel(HOST_RSP, host_rsp);
6647 }
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006648}
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006649
Wanpeng Li404d5d72020-04-28 14:23:25 +08006650static fastpath_t vmx_exit_handlers_fastpath(struct kvm_vcpu *vcpu)
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006651{
Sean Christopherson8e533242020-11-06 17:03:12 +08006652 switch (to_vmx(vcpu)->exit_reason.basic) {
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006653 case EXIT_REASON_MSR_WRITE:
6654 return handle_fastpath_set_msr_irqoff(vcpu);
Wanpeng Li26efe2f2020-05-06 11:44:01 -04006655 case EXIT_REASON_PREEMPTION_TIMER:
6656 return handle_fastpath_preemption_timer(vcpu);
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006657 default:
6658 return EXIT_FASTPATH_NONE;
6659 }
6660}
6661
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006662static noinstr void vmx_vcpu_enter_exit(struct kvm_vcpu *vcpu,
6663 struct vcpu_vmx *vmx)
6664{
Sean Christophersonbc908e02021-05-04 17:27:35 -07006665 kvm_guest_enter_irqoff();
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006666
6667 /* L1D Flush includes CPU buffer clear to mitigate MDS */
6668 if (static_branch_unlikely(&vmx_l1d_should_flush))
6669 vmx_l1d_flush(vcpu);
6670 else if (static_branch_unlikely(&mds_user_clear))
6671 mds_clear_cpu_buffers();
6672
Thomas Gleixner2245d392020-07-08 21:52:00 +02006673 if (vcpu->arch.cr2 != native_read_cr2())
6674 native_write_cr2(vcpu->arch.cr2);
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006675
6676 vmx->fail = __vmx_vcpu_run(vmx, (unsigned long *)&vcpu->arch.regs,
6677 vmx->loaded_vmcs->launched);
6678
Thomas Gleixner2245d392020-07-08 21:52:00 +02006679 vcpu->arch.cr2 = native_read_cr2();
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006680
Sean Christophersonbc908e02021-05-04 17:27:35 -07006681 kvm_guest_exit_irqoff();
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006682}
6683
Wanpeng Li404d5d72020-04-28 14:23:25 +08006684static fastpath_t vmx_vcpu_run(struct kvm_vcpu *vcpu)
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006685{
6686 struct vcpu_vmx *vmx = to_vmx(vcpu);
6687 unsigned long cr3, cr4;
6688
6689 /* Record the guest's net vcpu time for enforced NMI injections. */
6690 if (unlikely(!enable_vnmi &&
6691 vmx->loaded_vmcs->soft_vnmi_blocked))
6692 vmx->loaded_vmcs->entry_time = ktime_get();
6693
6694 /* Don't enter VMX if guest state is invalid, let the exit handler
6695 start emulation until we arrive back to a valid state */
6696 if (vmx->emulation_required)
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006697 return EXIT_FASTPATH_NONE;
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006698
Lorenzo Bresciad95df952020-12-23 14:45:07 +00006699 trace_kvm_entry(vcpu);
6700
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006701 if (vmx->ple_window_dirty) {
6702 vmx->ple_window_dirty = false;
6703 vmcs_write32(PLE_WINDOW, vmx->ple_window);
6704 }
6705
wanpeng lic9dfd3f2020-02-17 18:37:43 +08006706 /*
6707 * We did this in prepare_switch_to_guest, because it needs to
6708 * be within srcu_read_lock.
6709 */
6710 WARN_ON_ONCE(vmx->nested.need_vmcs12_to_shadow_sync);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006711
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07006712 if (kvm_register_is_dirty(vcpu, VCPU_REGS_RSP))
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006713 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07006714 if (kvm_register_is_dirty(vcpu, VCPU_REGS_RIP))
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006715 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
6716
6717 cr3 = __get_current_cr3_fast();
6718 if (unlikely(cr3 != vmx->loaded_vmcs->host_state.cr3)) {
6719 vmcs_writel(HOST_CR3, cr3);
6720 vmx->loaded_vmcs->host_state.cr3 = cr3;
6721 }
6722
6723 cr4 = cr4_read_shadow();
6724 if (unlikely(cr4 != vmx->loaded_vmcs->host_state.cr4)) {
6725 vmcs_writel(HOST_CR4, cr4);
6726 vmx->loaded_vmcs->host_state.cr4 = cr4;
6727 }
6728
6729 /* When single-stepping over STI and MOV SS, we must clear the
6730 * corresponding interruptibility bits in the guest state. Otherwise
6731 * vmentry fails as it then expects bit 14 (BS) in pending debug
6732 * exceptions being set, but that's not correct for the guest debugging
6733 * case. */
6734 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
6735 vmx_set_interrupt_shadow(vcpu, 0);
6736
Aaron Lewis139a12c2019-10-21 16:30:25 -07006737 kvm_load_guest_xsave_state(vcpu);
WANG Chao1811d972019-04-12 15:55:39 +08006738
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006739 pt_guest_enter(vmx);
6740
Vitaly Kuznetsov49097762020-06-19 11:40:46 +02006741 atomic_switch_perf_msrs(vmx);
Like Xu1b5ac3222021-02-01 13:10:34 +08006742 if (intel_pmu_lbr_is_enabled(vcpu))
6743 vmx_passthrough_lbr_msrs(vcpu);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006744
Sean Christopherson804939e2019-05-07 12:18:05 -07006745 if (enable_preemption_timer)
6746 vmx_update_hv_timer(vcpu);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006747
Wanpeng Li010fd372020-09-10 17:50:41 +08006748 kvm_wait_lapic_expire(vcpu);
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08006749
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006750 /*
6751 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
6752 * it's non-zero. Since vmentry is serialising on affected CPUs, there
6753 * is no need to worry about the conditional branch over the wrmsr
6754 * being speculatively taken.
6755 */
6756 x86_spec_ctrl_set_guest(vmx->spec_ctrl, 0);
6757
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006758 /* The actual VMENTER/EXIT is in the .noinstr.text section. */
6759 vmx_vcpu_enter_exit(vcpu, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006760
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006761 /*
6762 * We do not use IBRS in the kernel. If this vCPU has used the
6763 * SPEC_CTRL MSR it may have left it on; save the value and
6764 * turn it off. This is much more efficient than blindly adding
6765 * it to the atomic save/restore list. Especially as the former
6766 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
6767 *
6768 * For non-nested case:
6769 * If the L01 MSR bitmap does not intercept the MSR, then we need to
6770 * save it.
6771 *
6772 * For nested case:
6773 * If the L02 MSR bitmap does not intercept the MSR, then we need to
6774 * save it.
6775 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01006776 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01006777 vmx->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006778
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02006779 x86_spec_ctrl_restore_host(vmx->spec_ctrl, 0);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006780
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01006781 /* All fields are clean at this point */
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01006782 if (static_branch_unlikely(&enable_evmcs)) {
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01006783 current_evmcs->hv_clean_fields |=
6784 HV_VMX_ENLIGHTENED_CLEAN_FIELD_ALL;
6785
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01006786 current_evmcs->hv_vp_id = kvm_hv_get_vpindex(vcpu);
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01006787 }
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08006788
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006789 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
Wanpeng Li74c55932017-11-29 01:31:20 -08006790 if (vmx->host_debugctlmsr)
6791 update_debugctlmsr(vmx->host_debugctlmsr);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006792
Avi Kivityaa67f602012-08-01 16:48:03 +03006793#ifndef CONFIG_X86_64
6794 /*
6795 * The sysexit path does not restore ds/es, so we must set them to
6796 * a reasonable value ourselves.
6797 *
Sean Christopherson6d6095b2018-07-23 12:32:44 -07006798 * We can't defer this to vmx_prepare_switch_to_host() since that
6799 * function may be executed in interrupt context, which saves and
6800 * restore segments around it, nullifying its effect.
Avi Kivityaa67f602012-08-01 16:48:03 +03006801 */
6802 loadsegment(ds, __USER_DS);
6803 loadsegment(es, __USER_DS);
6804#endif
6805
Sean Christophersone5d03de2020-04-15 13:34:51 -07006806 vmx_register_cache_reset(vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006807
Chao Peng2ef444f2018-10-24 16:05:12 +08006808 pt_guest_exit(vmx);
6809
Aaron Lewis139a12c2019-10-21 16:30:25 -07006810 kvm_load_host_xsave_state(vcpu);
WANG Chao1811d972019-04-12 15:55:39 +08006811
Krish Sadhukhanb93af022021-06-09 14:03:38 -04006812 if (is_guest_mode(vcpu)) {
6813 /*
6814 * Track VMLAUNCH/VMRESUME that have made past guest state
6815 * checking.
6816 */
6817 if (vmx->nested.nested_run_pending &&
6818 !vmx->exit_reason.failed_vmentry)
6819 ++vcpu->stat.nested_run;
6820
6821 vmx->nested.nested_run_pending = 0;
6822 }
6823
Jim Mattsonb060ca32017-09-14 16:31:42 -07006824 vmx->idt_vectoring_info = 0;
6825
Sean Christopherson873e1da2020-04-10 10:47:02 -07006826 if (unlikely(vmx->fail)) {
Sean Christopherson8e533242020-11-06 17:03:12 +08006827 vmx->exit_reason.full = 0xdead;
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006828 return EXIT_FASTPATH_NONE;
Sean Christopherson873e1da2020-04-10 10:47:02 -07006829 }
6830
Sean Christopherson8e533242020-11-06 17:03:12 +08006831 vmx->exit_reason.full = vmcs_read32(VM_EXIT_REASON);
6832 if (unlikely((u16)vmx->exit_reason.basic == EXIT_REASON_MCE_DURING_VMENTRY))
Sean Christophersonbeb8d932019-04-19 22:50:55 -07006833 kvm_machine_check();
6834
Maxim Levitskyf5c59b52021-02-17 16:57:12 +02006835 if (likely(!vmx->exit_reason.failed_vmentry))
6836 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
6837
Sean Christopherson8e533242020-11-06 17:03:12 +08006838 trace_kvm_exit(vmx->exit_reason.full, vcpu, KVM_ISA_VMX);
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006839
Sean Christopherson8e533242020-11-06 17:03:12 +08006840 if (unlikely(vmx->exit_reason.failed_vmentry))
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006841 return EXIT_FASTPATH_NONE;
6842
Jim Mattsonb060ca32017-09-14 16:31:42 -07006843 vmx->loaded_vmcs->launched = 1;
Gleb Natapove0b890d2013-09-25 12:51:33 +03006844
Avi Kivity51aa01d2010-07-20 14:31:20 +03006845 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03006846 vmx_complete_interrupts(vmx);
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006847
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006848 if (is_guest_mode(vcpu))
6849 return EXIT_FASTPATH_NONE;
6850
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05006851 return vmx_exit_handlers_fastpath(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006852}
6853
Avi Kivity6aa8b732006-12-10 02:21:36 -08006854static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
6855{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006856 struct vcpu_vmx *vmx = to_vmx(vcpu);
6857
Kai Huang843e4332015-01-28 10:54:28 +08006858 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08006859 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08006860 free_vpid(vmx->vpid);
Sean Christopherson55d23752018-12-03 13:53:18 -08006861 nested_vmx_free_vcpu(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006862 free_loaded_vmcs(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006863}
6864
Sean Christopherson987b2592019-12-18 13:54:55 -08006865static int vmx_create_vcpu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006866{
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006867 struct vmx_uret_msr *tsx_ctrl;
Ben Gardon41836832019-02-11 11:02:52 -08006868 struct vcpu_vmx *vmx;
Sean Christopherson34109c02019-12-18 13:54:50 -08006869 int i, cpu, err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006870
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006871 BUILD_BUG_ON(offsetof(struct vcpu_vmx, vcpu) != 0);
6872 vmx = to_vmx(vcpu);
Ingo Molnar965b58a2007-01-05 16:36:23 -08006873
Peter Feiner4e595162016-07-07 14:49:58 -07006874 err = -ENOMEM;
6875
Sean Christopherson034d8e22019-12-18 13:54:49 -08006876 vmx->vpid = allocate_vpid();
6877
Peter Feiner4e595162016-07-07 14:49:58 -07006878 /*
6879 * If PML is turned on, failure on enabling PML just results in failure
6880 * of creating the vcpu, therefore we can simplify PML logic (by
6881 * avoiding dealing with cases, such as enabling PML partially on vcpus
Miaohe Lin67b0ae42019-12-11 14:26:22 +08006882 * for the guest), etc.
Peter Feiner4e595162016-07-07 14:49:58 -07006883 */
6884 if (enable_pml) {
Ben Gardon41836832019-02-11 11:02:52 -08006885 vmx->pml_pg = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Peter Feiner4e595162016-07-07 14:49:58 -07006886 if (!vmx->pml_pg)
Sean Christopherson987b2592019-12-18 13:54:55 -08006887 goto free_vpid;
Peter Feiner4e595162016-07-07 14:49:58 -07006888 }
6889
Sean Christophersone5fda4b2021-05-04 10:17:32 -07006890 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
Sean Christophersonb6194b92021-05-04 10:17:27 -07006891 vmx->guest_uret_msrs[i].data = 0;
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006892 vmx->guest_uret_msrs[i].mask = -1ull;
6893 }
Sean Christopherson5e17c622021-05-04 10:17:30 -07006894 if (boot_cpu_has(X86_FEATURE_RTM)) {
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006895 /*
6896 * TSX_CTRL_CPUID_CLEAR is handled in the CPUID interception.
6897 * Keep the host value unchanged to avoid changing CPUID bits
6898 * under the host kernel's feet.
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006899 */
Sean Christopherson5e17c622021-05-04 10:17:30 -07006900 tsx_ctrl = vmx_find_uret_msr(vmx, MSR_IA32_TSX_CTRL);
6901 if (tsx_ctrl)
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006902 vmx->guest_uret_msrs[i].mask = ~(u64)TSX_CTRL_CPUID_CLEAR;
Xiaoyao Li4be53412019-10-20 17:11:00 +08006903 }
6904
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006905 err = alloc_loaded_vmcs(&vmx->vmcs01);
6906 if (err < 0)
Jim Mattson7d737102019-12-03 16:24:42 -08006907 goto free_pml;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006908
Alexander Graf3eb90012020-09-25 16:34:20 +02006909 /* The MSR bitmap starts with all ones */
6910 bitmap_fill(vmx->shadow_msr_intercept.read, MAX_POSSIBLE_PASSTHROUGH_MSRS);
6911 bitmap_fill(vmx->shadow_msr_intercept.write, MAX_POSSIBLE_PASSTHROUGH_MSRS);
6912
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006913 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_TSC, MSR_TYPE_R);
Sean Christophersondbdd0962021-04-21 19:38:31 -07006914#ifdef CONFIG_X86_64
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006915 vmx_disable_intercept_for_msr(vcpu, MSR_FS_BASE, MSR_TYPE_RW);
6916 vmx_disable_intercept_for_msr(vcpu, MSR_GS_BASE, MSR_TYPE_RW);
6917 vmx_disable_intercept_for_msr(vcpu, MSR_KERNEL_GS_BASE, MSR_TYPE_RW);
Sean Christophersondbdd0962021-04-21 19:38:31 -07006918#endif
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006919 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_CS, MSR_TYPE_RW);
6920 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_ESP, MSR_TYPE_RW);
6921 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_EIP, MSR_TYPE_RW);
Sean Christopherson987b2592019-12-18 13:54:55 -08006922 if (kvm_cstate_in_guest(vcpu->kvm)) {
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006923 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C1_RES, MSR_TYPE_R);
6924 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C3_RESIDENCY, MSR_TYPE_R);
6925 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C6_RESIDENCY, MSR_TYPE_R);
6926 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C7_RESIDENCY, MSR_TYPE_R);
Wanpeng Lib5170062019-05-21 14:06:53 +08006927 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006928 vmx->msr_bitmap_mode = 0;
6929
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006930 vmx->loaded_vmcs = &vmx->vmcs01;
Avi Kivity15ad7142007-07-11 18:17:21 +03006931 cpu = get_cpu();
Sean Christopherson34109c02019-12-18 13:54:50 -08006932 vmx_vcpu_load(vcpu, cpu);
6933 vcpu->cpu = cpu;
Xiaoyao Li1b842922019-10-20 17:11:01 +08006934 init_vmcs(vmx);
Sean Christopherson34109c02019-12-18 13:54:50 -08006935 vmx_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03006936 put_cpu();
Sean Christopherson34109c02019-12-18 13:54:50 -08006937 if (cpu_need_virtualize_apic_accesses(vcpu)) {
Sean Christopherson987b2592019-12-18 13:54:55 -08006938 err = alloc_apic_access_page(vcpu->kvm);
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02006939 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02006940 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02006941 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08006942
Sean Christophersone90008d2018-03-05 12:04:37 -08006943 if (enable_ept && !enable_unrestricted_guest) {
Sean Christopherson987b2592019-12-18 13:54:55 -08006944 err = init_rmode_identity_map(vcpu->kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08006945 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02006946 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006947 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08006948
Roman Kagan63aff652018-07-19 21:59:07 +03006949 if (nested)
Chenyi Qiangb9757a42020-08-28 16:56:22 +08006950 memcpy(&vmx->nested.msrs, &vmcs_config.nested, sizeof(vmx->nested.msrs));
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08006951 else
6952 memset(&vmx->nested.msrs, 0, sizeof(vmx->nested.msrs));
Wincy Vanb9c237b2015-02-03 23:56:30 +08006953
Sean Christopherson8f102442021-04-12 16:21:40 +12006954 vcpu_setup_sgx_lepubkeyhash(vcpu);
6955
Wincy Van705699a2015-02-03 23:58:17 +08006956 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03006957 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03006958
Paolo Bonzinibab0c312020-02-11 18:40:58 +01006959 vcpu->arch.microcode_version = 0x100000000ULL;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08006960 vmx->msr_ia32_feature_control_valid_bits = FEAT_CTL_LOCKED;
Haozhong Zhang37e4c992016-06-22 14:59:55 +08006961
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02006962 /*
6963 * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR
6964 * or POSTED_INTR_WAKEUP_VECTOR.
6965 */
6966 vmx->pi_desc.nv = POSTED_INTR_VECTOR;
6967 vmx->pi_desc.sn = 1;
6968
Sean Christophersonee366562021-03-05 10:31:21 -08006969#if IS_ENABLED(CONFIG_HYPERV)
Sean Christopherson978c8342021-03-05 10:31:23 -08006970 vmx->hv_root_ept = INVALID_PAGE;
Sean Christophersonee366562021-03-05 10:31:21 -08006971#endif
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006972 return 0;
Ingo Molnar965b58a2007-01-05 16:36:23 -08006973
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006974free_vmcs:
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08006975 free_loaded_vmcs(vmx->loaded_vmcs);
Peter Feiner4e595162016-07-07 14:49:58 -07006976free_pml:
6977 vmx_destroy_pml_buffer(vmx);
Sean Christopherson987b2592019-12-18 13:54:55 -08006978free_vpid:
Wanpeng Li991e7a02015-09-16 17:30:05 +08006979 free_vpid(vmx->vpid);
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006980 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006981}
6982
Thomas Gleixner65fd4cb2019-02-19 11:10:49 +01006983#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"
6984#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 -04006985
Wanpeng Lib31c1142018-03-12 04:53:04 -07006986static int vmx_vm_init(struct kvm *kvm)
6987{
Sean Christophersonee366562021-03-05 10:31:21 -08006988#if IS_ENABLED(CONFIG_HYPERV)
Sean Christopherson978c8342021-03-05 10:31:23 -08006989 spin_lock_init(&to_kvm_vmx(kvm)->hv_root_ept_lock);
Sean Christophersonee366562021-03-05 10:31:21 -08006990#endif
Tianyu Lan877ad952018-07-19 08:40:23 +00006991
Wanpeng Lib31c1142018-03-12 04:53:04 -07006992 if (!ple_gap)
6993 kvm->arch.pause_in_guest = true;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006994
Jiri Kosinad90a7a02018-07-13 16:23:25 +02006995 if (boot_cpu_has(X86_BUG_L1TF) && enable_ept) {
6996 switch (l1tf_mitigation) {
6997 case L1TF_MITIGATION_OFF:
6998 case L1TF_MITIGATION_FLUSH_NOWARN:
6999 /* 'I explicitly don't care' is set */
7000 break;
7001 case L1TF_MITIGATION_FLUSH:
7002 case L1TF_MITIGATION_FLUSH_NOSMT:
7003 case L1TF_MITIGATION_FULL:
7004 /*
7005 * Warn upon starting the first VM in a potentially
7006 * insecure environment.
7007 */
Josh Poimboeufb2849092019-01-30 07:13:58 -06007008 if (sched_smt_active())
Jiri Kosinad90a7a02018-07-13 16:23:25 +02007009 pr_warn_once(L1TF_MSG_SMT);
7010 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_NEVER)
7011 pr_warn_once(L1TF_MSG_L1D);
7012 break;
7013 case L1TF_MITIGATION_FULL_FORCE:
7014 /* Flush is enforced */
7015 break;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04007016 }
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04007017 }
Wanpeng Lib31c1142018-03-12 04:53:04 -07007018 return 0;
7019}
7020
Sean Christophersonf257d6d2019-04-19 22:18:17 -07007021static int __init vmx_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03007022{
7023 struct vmcs_config vmcs_conf;
Sean Christopherson7caaa712018-12-03 13:53:01 -08007024 struct vmx_capability vmx_cap;
Yang, Sheng002c7f72007-07-31 14:23:01 +03007025
Sean Christophersonff10e222019-12-20 20:45:10 -08007026 if (!this_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
7027 !this_cpu_has(X86_FEATURE_VMX)) {
7028 pr_err("kvm: VMX is disabled on CPU %d\n", smp_processor_id());
7029 return -EIO;
7030 }
7031
Sean Christopherson7caaa712018-12-03 13:53:01 -08007032 if (setup_vmcs_config(&vmcs_conf, &vmx_cap) < 0)
Sean Christophersonf257d6d2019-04-19 22:18:17 -07007033 return -EIO;
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08007034 if (nested)
Vitaly Kuznetsova4443262020-02-20 18:22:04 +01007035 nested_vmx_setup_ctls_msrs(&vmcs_conf.nested, vmx_cap.ept);
Yang, Sheng002c7f72007-07-31 14:23:01 +03007036 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
7037 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
7038 smp_processor_id());
Sean Christophersonf257d6d2019-04-19 22:18:17 -07007039 return -EIO;
Yang, Sheng002c7f72007-07-31 14:23:01 +03007040 }
Sean Christophersonf257d6d2019-04-19 22:18:17 -07007041 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03007042}
7043
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007044static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08007045{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007046 u8 cache;
7047 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007048
Chia-I Wu222f06e2020-02-13 13:30:34 -08007049 /* We wanted to honor guest CD/MTRR/PAT, but doing so could result in
7050 * memory aliases with conflicting memory types and sometimes MCEs.
7051 * We have to be careful as to what are honored and when.
7052 *
7053 * For MMIO, guest CD/MTRR are ignored. The EPT memory type is set to
7054 * UC. The effective memory type is UC or WC depending on guest PAT.
7055 * This was historically the source of MCEs and we want to be
7056 * conservative.
7057 *
7058 * When there is no need to deal with noncoherent DMA (e.g., no VT-d
7059 * or VT-d has snoop control), guest CD/MTRR/PAT are all ignored. The
7060 * EPT memory type is set to WB. The effective memory type is forced
7061 * WB.
7062 *
7063 * Otherwise, we trust guest. Guest CD/MTRR/PAT are all honored. The
7064 * EPT memory type is used to emulate guest CD/MTRR.
Sheng Yang522c68c2009-04-27 20:35:43 +08007065 */
Chia-I Wu222f06e2020-02-13 13:30:34 -08007066
Paolo Bonzini606decd2015-10-01 13:12:47 +02007067 if (is_mmio) {
7068 cache = MTRR_TYPE_UNCACHABLE;
7069 goto exit;
7070 }
7071
7072 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007073 ipat = VMX_EPT_IPAT_BIT;
7074 cache = MTRR_TYPE_WRBACK;
7075 goto exit;
7076 }
7077
7078 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
7079 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02007080 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08007081 cache = MTRR_TYPE_WRBACK;
7082 else
7083 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007084 goto exit;
7085 }
7086
Xiao Guangrongff536042015-06-15 16:55:22 +08007087 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007088
7089exit:
7090 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08007091}
7092
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007093static void vmcs_set_secondary_exec_control(struct vcpu_vmx *vmx)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007094{
7095 /*
7096 * These bits in the secondary execution controls field
7097 * are dynamic, the others are mostly based on the hypervisor
7098 * architecture and the guest's CPUID. Do not touch the
7099 * dynamic bits.
7100 */
7101 u32 mask =
7102 SECONDARY_EXEC_SHADOW_VMCS |
7103 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Paolo Bonzini0367f202016-07-12 10:44:55 +02007104 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
7105 SECONDARY_EXEC_DESC;
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007106
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007107 u32 new_ctl = vmx->secondary_exec_control;
7108 u32 cur_ctl = secondary_exec_controls_get(vmx);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007109
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007110 secondary_exec_controls_set(vmx, (new_ctl & ~mask) | (cur_ctl & mask));
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007111}
7112
David Matlack8322ebb2016-11-29 18:14:09 -08007113/*
7114 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
7115 * (indicating "allowed-1") if they are supported in the guest's CPUID.
7116 */
7117static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
7118{
7119 struct vcpu_vmx *vmx = to_vmx(vcpu);
7120 struct kvm_cpuid_entry2 *entry;
7121
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01007122 vmx->nested.msrs.cr0_fixed1 = 0xffffffff;
7123 vmx->nested.msrs.cr4_fixed1 = X86_CR4_PCE;
David Matlack8322ebb2016-11-29 18:14:09 -08007124
7125#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
7126 if (entry && (entry->_reg & (_cpuid_mask))) \
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01007127 vmx->nested.msrs.cr4_fixed1 |= (_cr4_mask); \
David Matlack8322ebb2016-11-29 18:14:09 -08007128} while (0)
7129
7130 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
Sean Christopherson87382002019-12-17 13:32:42 -08007131 cr4_fixed1_update(X86_CR4_VME, edx, feature_bit(VME));
7132 cr4_fixed1_update(X86_CR4_PVI, edx, feature_bit(VME));
7133 cr4_fixed1_update(X86_CR4_TSD, edx, feature_bit(TSC));
7134 cr4_fixed1_update(X86_CR4_DE, edx, feature_bit(DE));
7135 cr4_fixed1_update(X86_CR4_PSE, edx, feature_bit(PSE));
7136 cr4_fixed1_update(X86_CR4_PAE, edx, feature_bit(PAE));
7137 cr4_fixed1_update(X86_CR4_MCE, edx, feature_bit(MCE));
7138 cr4_fixed1_update(X86_CR4_PGE, edx, feature_bit(PGE));
7139 cr4_fixed1_update(X86_CR4_OSFXSR, edx, feature_bit(FXSR));
7140 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, feature_bit(XMM));
7141 cr4_fixed1_update(X86_CR4_VMXE, ecx, feature_bit(VMX));
7142 cr4_fixed1_update(X86_CR4_SMXE, ecx, feature_bit(SMX));
7143 cr4_fixed1_update(X86_CR4_PCIDE, ecx, feature_bit(PCID));
7144 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, feature_bit(XSAVE));
David Matlack8322ebb2016-11-29 18:14:09 -08007145
7146 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
Sean Christopherson87382002019-12-17 13:32:42 -08007147 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, feature_bit(FSGSBASE));
7148 cr4_fixed1_update(X86_CR4_SMEP, ebx, feature_bit(SMEP));
7149 cr4_fixed1_update(X86_CR4_SMAP, ebx, feature_bit(SMAP));
7150 cr4_fixed1_update(X86_CR4_PKE, ecx, feature_bit(PKU));
7151 cr4_fixed1_update(X86_CR4_UMIP, ecx, feature_bit(UMIP));
7152 cr4_fixed1_update(X86_CR4_LA57, ecx, feature_bit(LA57));
David Matlack8322ebb2016-11-29 18:14:09 -08007153
7154#undef cr4_fixed1_update
7155}
7156
Liran Alon5f76f6f2018-09-14 03:25:52 +03007157static void nested_vmx_entry_exit_ctls_update(struct kvm_vcpu *vcpu)
7158{
7159 struct vcpu_vmx *vmx = to_vmx(vcpu);
7160
7161 if (kvm_mpx_supported()) {
7162 bool mpx_enabled = guest_cpuid_has(vcpu, X86_FEATURE_MPX);
7163
7164 if (mpx_enabled) {
7165 vmx->nested.msrs.entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
7166 vmx->nested.msrs.exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
7167 } else {
7168 vmx->nested.msrs.entry_ctls_high &= ~VM_ENTRY_LOAD_BNDCFGS;
7169 vmx->nested.msrs.exit_ctls_high &= ~VM_EXIT_CLEAR_BNDCFGS;
7170 }
7171 }
7172}
7173
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007174static void update_intel_pt_cfg(struct kvm_vcpu *vcpu)
7175{
7176 struct vcpu_vmx *vmx = to_vmx(vcpu);
7177 struct kvm_cpuid_entry2 *best = NULL;
7178 int i;
7179
7180 for (i = 0; i < PT_CPUID_LEAVES; i++) {
7181 best = kvm_find_cpuid_entry(vcpu, 0x14, i);
7182 if (!best)
7183 return;
7184 vmx->pt_desc.caps[CPUID_EAX + i*PT_CPUID_REGS_NUM] = best->eax;
7185 vmx->pt_desc.caps[CPUID_EBX + i*PT_CPUID_REGS_NUM] = best->ebx;
7186 vmx->pt_desc.caps[CPUID_ECX + i*PT_CPUID_REGS_NUM] = best->ecx;
7187 vmx->pt_desc.caps[CPUID_EDX + i*PT_CPUID_REGS_NUM] = best->edx;
7188 }
7189
7190 /* Get the number of configurable Address Ranges for filtering */
7191 vmx->pt_desc.addr_range = intel_pt_validate_cap(vmx->pt_desc.caps,
7192 PT_CAP_num_address_ranges);
7193
7194 /* Initialize and clear the no dependency bits */
7195 vmx->pt_desc.ctl_bitmask = ~(RTIT_CTL_TRACEEN | RTIT_CTL_OS |
7196 RTIT_CTL_USR | RTIT_CTL_TSC_EN | RTIT_CTL_DISRETC);
7197
7198 /*
7199 * If CPUID.(EAX=14H,ECX=0):EBX[0]=1 CR3Filter can be set otherwise
7200 * will inject an #GP
7201 */
7202 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_cr3_filtering))
7203 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_CR3EN;
7204
7205 /*
7206 * If CPUID.(EAX=14H,ECX=0):EBX[1]=1 CYCEn, CycThresh and
7207 * PSBFreq can be set
7208 */
7209 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc))
7210 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_CYCLEACC |
7211 RTIT_CTL_CYC_THRESH | RTIT_CTL_PSB_FREQ);
7212
7213 /*
7214 * If CPUID.(EAX=14H,ECX=0):EBX[3]=1 MTCEn BranchEn and
7215 * MTCFreq can be set
7216 */
7217 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc))
7218 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_MTC_EN |
7219 RTIT_CTL_BRANCH_EN | RTIT_CTL_MTC_RANGE);
7220
7221 /* If CPUID.(EAX=14H,ECX=0):EBX[4]=1 FUPonPTW and PTWEn can be set */
7222 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_ptwrite))
7223 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_FUP_ON_PTW |
7224 RTIT_CTL_PTW_EN);
7225
7226 /* If CPUID.(EAX=14H,ECX=0):EBX[5]=1 PwrEvEn can be set */
7227 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_power_event_trace))
7228 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_PWR_EVT_EN;
7229
7230 /* If CPUID.(EAX=14H,ECX=0):ECX[0]=1 ToPA can be set */
7231 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_topa_output))
7232 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_TOPA;
7233
Ingo Molnard9f6e122021-03-18 15:28:01 +01007234 /* If CPUID.(EAX=14H,ECX=0):ECX[3]=1 FabricEn can be set */
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007235 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_output_subsys))
7236 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_FABRIC_EN;
7237
7238 /* unmask address range configure area */
7239 for (i = 0; i < vmx->pt_desc.addr_range; i++)
Gustavo A. R. Silvad14eff12018-12-26 14:40:59 -06007240 vmx->pt_desc.ctl_bitmask &= ~(0xfULL << (32 + i * 4));
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007241}
7242
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08007243static void vmx_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
Sheng Yang0e851882009-12-18 16:48:46 +08007244{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007245 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007246
Aaron Lewis72041602019-10-21 16:30:20 -07007247 /* xsaves_enabled is recomputed in vmx_compute_secondary_exec_control(). */
7248 vcpu->arch.xsaves_enabled = false;
7249
Paolo Bonzini80154d72017-08-24 13:55:35 +02007250 if (cpu_has_secondary_exec_ctrls()) {
7251 vmx_compute_secondary_exec_control(vmx);
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007252 vmcs_set_secondary_exec_control(vmx);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007253 }
Mao, Junjiead756a12012-07-02 01:18:48 +00007254
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007255 if (nested_vmx_allowed(vcpu))
7256 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007257 FEAT_CTL_VMX_ENABLED_INSIDE_SMX |
7258 FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX;
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007259 else
7260 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007261 ~(FEAT_CTL_VMX_ENABLED_INSIDE_SMX |
7262 FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX);
David Matlack8322ebb2016-11-29 18:14:09 -08007263
Liran Alon5f76f6f2018-09-14 03:25:52 +03007264 if (nested_vmx_allowed(vcpu)) {
David Matlack8322ebb2016-11-29 18:14:09 -08007265 nested_vmx_cr_fixed1_bits_update(vcpu);
Liran Alon5f76f6f2018-09-14 03:25:52 +03007266 nested_vmx_entry_exit_ctls_update(vcpu);
7267 }
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007268
7269 if (boot_cpu_has(X86_FEATURE_INTEL_PT) &&
7270 guest_cpuid_has(vcpu, X86_FEATURE_INTEL_PT))
7271 update_intel_pt_cfg(vcpu);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007272
7273 if (boot_cpu_has(X86_FEATURE_RTM)) {
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07007274 struct vmx_uret_msr *msr;
Sean Christophersond85a8032020-09-23 11:04:06 -07007275 msr = vmx_find_uret_msr(vmx, MSR_IA32_TSX_CTRL);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007276 if (msr) {
7277 bool enabled = guest_cpuid_has(vcpu, X86_FEATURE_RTM);
Sean Christopherson7bf662b2020-09-23 11:04:07 -07007278 vmx_set_guest_uret_msr(vmx, msr, enabled ? 0 : TSX_CTRL_RTM_DISABLE);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007279 }
7280 }
Sean Christophersona6337a32020-09-29 21:16:57 -07007281
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07007282 set_cr4_guest_host_mask(vmx);
7283
Sean Christopherson72add912021-04-12 16:21:42 +12007284 vmx_write_encls_bitmap(vcpu, NULL);
7285 if (guest_cpuid_has(vcpu, X86_FEATURE_SGX))
7286 vmx->msr_ia32_feature_control_valid_bits |= FEAT_CTL_SGX_ENABLED;
7287 else
7288 vmx->msr_ia32_feature_control_valid_bits &= ~FEAT_CTL_SGX_ENABLED;
7289
7290 if (guest_cpuid_has(vcpu, X86_FEATURE_SGX_LC))
7291 vmx->msr_ia32_feature_control_valid_bits |=
7292 FEAT_CTL_SGX_LC_ENABLED;
7293 else
7294 vmx->msr_ia32_feature_control_valid_bits &=
7295 ~FEAT_CTL_SGX_LC_ENABLED;
7296
Sean Christophersona6337a32020-09-29 21:16:57 -07007297 /* Refresh #PF interception to account for MAXPHYADDR changes. */
Jason Baronb6a7cc32021-01-14 22:27:54 -05007298 vmx_update_exception_bitmap(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08007299}
7300
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007301static __init void vmx_set_cpu_caps(void)
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007302{
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007303 kvm_set_cpu_caps();
7304
7305 /* CPUID 0x1 */
7306 if (nested)
7307 kvm_cpu_cap_set(X86_FEATURE_VMX);
7308
7309 /* CPUID 0x7 */
Sean Christopherson8721f5b2020-03-02 15:56:45 -08007310 if (kvm_mpx_supported())
7311 kvm_cpu_cap_check_and_set(X86_FEATURE_MPX);
Sean Christophersone4203332021-02-11 16:34:10 -08007312 if (!cpu_has_vmx_invpcid())
7313 kvm_cpu_cap_clear(X86_FEATURE_INVPCID);
Sean Christopherson8721f5b2020-03-02 15:56:45 -08007314 if (vmx_pt_mode_is_host_guest())
7315 kvm_cpu_cap_check_and_set(X86_FEATURE_INTEL_PT);
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007316
Sean Christopherson72add912021-04-12 16:21:42 +12007317 if (!enable_sgx) {
7318 kvm_cpu_cap_clear(X86_FEATURE_SGX);
7319 kvm_cpu_cap_clear(X86_FEATURE_SGX_LC);
7320 kvm_cpu_cap_clear(X86_FEATURE_SGX1);
7321 kvm_cpu_cap_clear(X86_FEATURE_SGX2);
7322 }
7323
Sean Christopherson90d2f602020-03-02 15:56:47 -08007324 if (vmx_umip_emulated())
7325 kvm_cpu_cap_set(X86_FEATURE_UMIP);
7326
Sean Christophersonb3d895d52020-03-02 15:56:44 -08007327 /* CPUID 0xD.1 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01007328 supported_xss = 0;
Sean Christophersonbecdad82020-09-23 09:50:45 -07007329 if (!cpu_has_vmx_xsaves())
Sean Christophersonb3d895d52020-03-02 15:56:44 -08007330 kvm_cpu_cap_clear(X86_FEATURE_XSAVES);
7331
Sean Christopherson8aec21c2021-05-04 10:17:20 -07007332 /* CPUID 0x80000001 and 0x7 (RDPID) */
7333 if (!cpu_has_vmx_rdtscp()) {
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007334 kvm_cpu_cap_clear(X86_FEATURE_RDTSCP);
Sean Christopherson8aec21c2021-05-04 10:17:20 -07007335 kvm_cpu_cap_clear(X86_FEATURE_RDPID);
7336 }
Maxim Levitsky0abcc8f2020-05-23 19:14:54 +03007337
Sean Christophersonbecdad82020-09-23 09:50:45 -07007338 if (cpu_has_vmx_waitpkg())
Maxim Levitsky0abcc8f2020-05-23 19:14:54 +03007339 kvm_cpu_cap_check_and_set(X86_FEATURE_WAITPKG);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007340}
7341
Sean Christophersond264ee02018-08-27 15:21:12 -07007342static void vmx_request_immediate_exit(struct kvm_vcpu *vcpu)
7343{
7344 to_vmx(vcpu)->req_immediate_exit = true;
7345}
7346
Oliver Upton35a57132020-02-04 15:26:31 -08007347static int vmx_check_intercept_io(struct kvm_vcpu *vcpu,
7348 struct x86_instruction_info *info)
7349{
7350 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7351 unsigned short port;
7352 bool intercept;
7353 int size;
7354
7355 if (info->intercept == x86_intercept_in ||
7356 info->intercept == x86_intercept_ins) {
7357 port = info->src_val;
7358 size = info->dst_bytes;
7359 } else {
7360 port = info->dst_val;
7361 size = info->src_bytes;
7362 }
7363
7364 /*
7365 * If the 'use IO bitmaps' VM-execution control is 0, IO instruction
7366 * VM-exits depend on the 'unconditional IO exiting' VM-execution
7367 * control.
7368 *
7369 * Otherwise, IO instruction VM-exits are controlled by the IO bitmaps.
7370 */
7371 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
7372 intercept = nested_cpu_has(vmcs12,
7373 CPU_BASED_UNCOND_IO_EXITING);
7374 else
7375 intercept = nested_vmx_check_io_bitmaps(vcpu, port, size);
7376
Oliver Upton86f7e902020-02-29 11:30:14 -08007377 /* FIXME: produce nested vmexit and return X86EMUL_INTERCEPTED. */
Oliver Upton35a57132020-02-04 15:26:31 -08007378 return intercept ? X86EMUL_UNHANDLEABLE : X86EMUL_CONTINUE;
7379}
7380
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007381static int vmx_check_intercept(struct kvm_vcpu *vcpu,
7382 struct x86_instruction_info *info,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007383 enum x86_intercept_stage stage,
7384 struct x86_exception *exception)
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007385{
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007386 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007387
Oliver Upton35a57132020-02-04 15:26:31 -08007388 switch (info->intercept) {
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007389 /*
7390 * RDPID causes #UD if disabled through secondary execution controls.
7391 * Because it is marked as EmulateOnUD, we need to intercept it here.
Sean Christopherson2183de42021-05-04 10:17:23 -07007392 * Note, RDPID is hidden behind ENABLE_RDTSCP.
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007393 */
Sean Christopherson2183de42021-05-04 10:17:23 -07007394 case x86_intercept_rdpid:
Sean Christopherson7f3603b2020-09-23 09:50:47 -07007395 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_RDTSCP)) {
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007396 exception->vector = UD_VECTOR;
7397 exception->error_code_valid = false;
Oliver Upton35a57132020-02-04 15:26:31 -08007398 return X86EMUL_PROPAGATE_FAULT;
7399 }
7400 break;
7401
7402 case x86_intercept_in:
7403 case x86_intercept_ins:
7404 case x86_intercept_out:
7405 case x86_intercept_outs:
7406 return vmx_check_intercept_io(vcpu, info);
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007407
Oliver Upton86f7e902020-02-29 11:30:14 -08007408 case x86_intercept_lgdt:
7409 case x86_intercept_lidt:
7410 case x86_intercept_lldt:
7411 case x86_intercept_ltr:
7412 case x86_intercept_sgdt:
7413 case x86_intercept_sidt:
7414 case x86_intercept_sldt:
7415 case x86_intercept_str:
7416 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC))
7417 return X86EMUL_CONTINUE;
7418
7419 /* FIXME: produce nested vmexit and return X86EMUL_INTERCEPTED. */
7420 break;
7421
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007422 /* TODO: check more intercepts... */
Oliver Upton35a57132020-02-04 15:26:31 -08007423 default:
7424 break;
7425 }
7426
Paolo Bonzini07721fe2020-02-04 15:26:29 -08007427 return X86EMUL_UNHANDLEABLE;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007428}
7429
Yunhong Jiang64672c92016-06-13 14:19:59 -07007430#ifdef CONFIG_X86_64
7431/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
7432static inline int u64_shl_div_u64(u64 a, unsigned int shift,
7433 u64 divisor, u64 *result)
7434{
7435 u64 low = a << shift, high = a >> (64 - shift);
7436
7437 /* To avoid the overflow on divq */
7438 if (high >= divisor)
7439 return 1;
7440
7441 /* Low hold the result, high hold rem which is discarded */
7442 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
7443 "rm" (divisor), "0" (low), "1" (high));
7444 *result = low;
7445
7446 return 0;
7447}
7448
Sean Christophersonf9927982019-04-16 13:32:46 -07007449static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc,
7450 bool *expired)
Yunhong Jiang64672c92016-06-13 14:19:59 -07007451{
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007452 struct vcpu_vmx *vmx;
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007453 u64 tscl, guest_tscl, delta_tsc, lapic_timer_advance_cycles;
Sean Christopherson39497d72019-04-17 10:15:32 -07007454 struct kvm_timer *ktimer = &vcpu->arch.apic->lapic_timer;
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007455
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007456 vmx = to_vmx(vcpu);
7457 tscl = rdtsc();
7458 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
7459 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Sean Christopherson39497d72019-04-17 10:15:32 -07007460 lapic_timer_advance_cycles = nsec_to_cycles(vcpu,
7461 ktimer->timer_advance_ns);
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007462
7463 if (delta_tsc > lapic_timer_advance_cycles)
7464 delta_tsc -= lapic_timer_advance_cycles;
7465 else
7466 delta_tsc = 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007467
7468 /* Convert to host delta tsc if tsc scaling is enabled */
Ilias Stamatis805d7052021-05-26 19:44:09 +01007469 if (vcpu->arch.l1_tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
Sean Christopherson0967fa12019-04-16 13:32:48 -07007470 delta_tsc && u64_shl_div_u64(delta_tsc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007471 kvm_tsc_scaling_ratio_frac_bits,
Ilias Stamatis805d7052021-05-26 19:44:09 +01007472 vcpu->arch.l1_tsc_scaling_ratio, &delta_tsc))
Yunhong Jiang64672c92016-06-13 14:19:59 -07007473 return -ERANGE;
7474
7475 /*
7476 * If the delta tsc can't fit in the 32 bit after the multi shift,
7477 * we can't use the preemption timer.
7478 * It's possible that it fits on later vmentries, but checking
7479 * on every vmentry is costly so we just use an hrtimer.
7480 */
7481 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
7482 return -ERANGE;
7483
7484 vmx->hv_deadline_tsc = tscl + delta_tsc;
Sean Christophersonf9927982019-04-16 13:32:46 -07007485 *expired = !delta_tsc;
7486 return 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007487}
7488
7489static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
7490{
Sean Christophersonf459a702018-08-27 15:21:11 -07007491 to_vmx(vcpu)->hv_deadline_tsc = -1;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007492}
7493#endif
7494
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007495static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007496{
Wanpeng Lib31c1142018-03-12 04:53:04 -07007497 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007498 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007499}
7500
Makarand Sonarea85863c2021-02-12 16:50:12 -08007501void vmx_update_cpu_dirty_logging(struct kvm_vcpu *vcpu)
7502{
7503 struct vcpu_vmx *vmx = to_vmx(vcpu);
7504
7505 if (is_guest_mode(vcpu)) {
7506 vmx->nested.update_vmcs01_cpu_dirty_logging = true;
7507 return;
7508 }
7509
7510 /*
7511 * Note, cpu_dirty_logging_count can be changed concurrent with this
7512 * code, but in that case another update request will be made and so
7513 * the guest will never run with a stale PML value.
7514 */
7515 if (vcpu->kvm->arch.cpu_dirty_logging_count)
7516 secondary_exec_controls_setbit(vmx, SECONDARY_EXEC_ENABLE_PML);
7517 else
7518 secondary_exec_controls_clearbit(vmx, SECONDARY_EXEC_ENABLE_PML);
7519}
7520
Yunhong Jiangbc225122016-06-13 14:19:58 -07007521static int vmx_pre_block(struct kvm_vcpu *vcpu)
7522{
7523 if (pi_pre_block(vcpu))
7524 return 1;
7525
Yunhong Jiang64672c92016-06-13 14:19:59 -07007526 if (kvm_lapic_hv_timer_in_use(vcpu))
7527 kvm_lapic_switch_to_sw_timer(vcpu);
7528
Yunhong Jiangbc225122016-06-13 14:19:58 -07007529 return 0;
7530}
7531
Yunhong Jiangbc225122016-06-13 14:19:58 -07007532static void vmx_post_block(struct kvm_vcpu *vcpu)
7533{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007534 if (kvm_x86_ops.set_hv_timer)
Yunhong Jiang64672c92016-06-13 14:19:59 -07007535 kvm_lapic_switch_to_hv_timer(vcpu);
7536
Yunhong Jiangbc225122016-06-13 14:19:58 -07007537 pi_post_block(vcpu);
7538}
7539
Ashok Rajc45dcc72016-06-22 14:59:56 +08007540static void vmx_setup_mce(struct kvm_vcpu *vcpu)
7541{
7542 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
7543 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007544 FEAT_CTL_LMCE_ENABLED;
Ashok Rajc45dcc72016-06-22 14:59:56 +08007545 else
7546 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007547 ~FEAT_CTL_LMCE_ENABLED;
Ashok Rajc45dcc72016-06-22 14:59:56 +08007548}
7549
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007550static int vmx_smi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Ladi Prosek72d7b372017-10-11 16:54:41 +02007551{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007552 /* we need a nested vmexit to enter SMM, postpone if run is pending */
7553 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007554 return -EBUSY;
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -04007555 return !is_smm(vcpu);
Ladi Prosek72d7b372017-10-11 16:54:41 +02007556}
7557
Sean Christophersonecc513e2021-06-09 11:56:19 -07007558static int vmx_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007559{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007560 struct vcpu_vmx *vmx = to_vmx(vcpu);
7561
7562 vmx->nested.smm.guest_mode = is_guest_mode(vcpu);
7563 if (vmx->nested.smm.guest_mode)
7564 nested_vmx_vmexit(vcpu, -1, 0, 0);
7565
7566 vmx->nested.smm.vmxon = vmx->nested.vmxon;
7567 vmx->nested.vmxon = false;
Wanpeng Licaa057a2018-03-12 04:53:03 -07007568 vmx_clear_hlt(vcpu);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007569 return 0;
7570}
7571
Sean Christophersonecc513e2021-06-09 11:56:19 -07007572static int vmx_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007573{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007574 struct vcpu_vmx *vmx = to_vmx(vcpu);
7575 int ret;
7576
7577 if (vmx->nested.smm.vmxon) {
7578 vmx->nested.vmxon = true;
7579 vmx->nested.smm.vmxon = false;
7580 }
7581
7582 if (vmx->nested.smm.guest_mode) {
Sean Christophersona633e412018-09-26 09:23:47 -07007583 ret = nested_vmx_enter_non_root_mode(vcpu, false);
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007584 if (ret)
7585 return ret;
7586
7587 vmx->nested.smm.guest_mode = false;
7588 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02007589 return 0;
7590}
7591
Jason Baronb6a7cc32021-01-14 22:27:54 -05007592static void vmx_enable_smi_window(struct kvm_vcpu *vcpu)
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007593{
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007594 /* RSM will cause a vmexit anyway. */
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007595}
7596
Liran Alon4b9852f2019-08-26 13:24:49 +03007597static bool vmx_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
7598{
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05007599 return to_vmx(vcpu)->nested.vmxon && !is_guest_mode(vcpu);
Liran Alon4b9852f2019-08-26 13:24:49 +03007600}
7601
Jim Mattson93dff2f2020-05-08 13:36:43 -07007602static void vmx_migrate_timers(struct kvm_vcpu *vcpu)
7603{
7604 if (is_guest_mode(vcpu)) {
7605 struct hrtimer *timer = &to_vmx(vcpu)->nested.preemption_timer;
7606
7607 if (hrtimer_try_to_cancel(timer) == 1)
7608 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
7609 }
7610}
7611
Sean Christopherson6e4fd062020-03-21 13:26:01 -07007612static void hardware_unsetup(void)
Sean Christophersona3203382018-12-03 13:53:11 -08007613{
7614 if (nested)
7615 nested_vmx_hardware_unsetup();
7616
7617 free_kvm_area();
7618}
7619
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007620static bool vmx_check_apicv_inhibit_reasons(ulong bit)
7621{
Suravee Suthikulpanitf4fdc0a2019-11-14 14:15:13 -06007622 ulong supported = BIT(APICV_INHIBIT_REASON_DISABLE) |
7623 BIT(APICV_INHIBIT_REASON_HYPERV);
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007624
7625 return supported & BIT(bit);
7626}
7627
Sean Christophersone286ac02020-03-21 13:26:02 -07007628static struct kvm_x86_ops vmx_x86_ops __initdata = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007629 .hardware_unsetup = hardware_unsetup,
Sean Christopherson484014f2020-03-21 13:25:57 -07007630
Avi Kivity6aa8b732006-12-10 02:21:36 -08007631 .hardware_enable = hardware_enable,
7632 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08007633 .cpu_has_accelerated_tpr = report_flexpriority,
Tom Lendackybc226f02018-05-10 22:06:39 +02007634 .has_emulated_msr = vmx_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007635
Sean Christopherson484014f2020-03-21 13:25:57 -07007636 .vm_size = sizeof(struct kvm_vmx),
Wanpeng Lib31c1142018-03-12 04:53:04 -07007637 .vm_init = vmx_vm_init,
7638
Avi Kivity6aa8b732006-12-10 02:21:36 -08007639 .vcpu_create = vmx_create_vcpu,
7640 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007641 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007642
Sean Christopherson6d6095b2018-07-23 12:32:44 -07007643 .prepare_guest_switch = vmx_prepare_switch_to_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007644 .vcpu_load = vmx_vcpu_load,
7645 .vcpu_put = vmx_vcpu_put,
7646
Jason Baronb6a7cc32021-01-14 22:27:54 -05007647 .update_exception_bitmap = vmx_update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -06007648 .get_msr_feature = vmx_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007649 .get_msr = vmx_get_msr,
7650 .set_msr = vmx_set_msr,
7651 .get_segment_base = vmx_get_segment_base,
7652 .get_segment = vmx_get_segment,
7653 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007654 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007655 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
7656 .set_cr0 = vmx_set_cr0,
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07007657 .is_valid_cr4 = vmx_is_valid_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007658 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007659 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007660 .get_idt = vmx_get_idt,
7661 .set_idt = vmx_set_idt,
7662 .get_gdt = vmx_get_gdt,
7663 .set_gdt = vmx_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03007664 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007665 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007666 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007667 .get_rflags = vmx_get_rflags,
7668 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007669
Sean Christopherson77809382020-03-20 14:28:18 -07007670 .tlb_flush_all = vmx_flush_tlb_all,
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07007671 .tlb_flush_current = vmx_flush_tlb_current,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007672 .tlb_flush_gva = vmx_flush_tlb_gva,
Sean Christophersone64419d2020-03-20 14:28:10 -07007673 .tlb_flush_guest = vmx_flush_tlb_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007674
Avi Kivity6aa8b732006-12-10 02:21:36 -08007675 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02007676 .handle_exit = vmx_handle_exit,
Oliver Upton5ef8acb2020-02-07 02:36:07 -08007677 .skip_emulated_instruction = vmx_skip_emulated_instruction,
7678 .update_emulated_instruction = vmx_update_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007679 .set_interrupt_shadow = vmx_set_interrupt_shadow,
7680 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007681 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007682 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007683 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007684 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007685 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007686 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007687 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007688 .get_nmi_mask = vmx_get_nmi_mask,
7689 .set_nmi_mask = vmx_set_nmi_mask,
Jason Baronb6a7cc32021-01-14 22:27:54 -05007690 .enable_nmi_window = vmx_enable_nmi_window,
7691 .enable_irq_window = vmx_enable_irq_window,
7692 .update_cr8_intercept = vmx_update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007693 .set_virtual_apic_mode = vmx_set_virtual_apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +08007694 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007695 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007696 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +01007697 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007698 .check_apicv_inhibit_reasons = vmx_check_apicv_inhibit_reasons,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007699 .hwapic_irr_update = vmx_hwapic_irr_update,
7700 .hwapic_isr_update = vmx_hwapic_isr_update,
Liran Alone6c67d82018-09-04 10:56:52 +03007701 .guest_apic_has_interrupt = vmx_guest_apic_has_interrupt,
Yang Zhanga20ed542013-04-11 19:25:15 +08007702 .sync_pir_to_irr = vmx_sync_pir_to_irr,
7703 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007704 .dy_apicv_has_pending_interrupt = pi_has_pending_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007705
Izik Eiduscbc94022007-10-25 00:29:55 +02007706 .set_tss_addr = vmx_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007707 .set_identity_map_addr = vmx_set_identity_map_addr,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007708 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007709
Avi Kivity586f9602010-11-18 13:09:54 +02007710 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007711
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08007712 .vcpu_after_set_cpuid = vmx_vcpu_after_set_cpuid,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007713
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007714 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007715
Ilias Stamatis307a94c2021-05-26 19:44:13 +01007716 .get_l2_tsc_offset = vmx_get_l2_tsc_offset,
7717 .get_l2_tsc_multiplier = vmx_get_l2_tsc_multiplier,
Ilias Stamatisedcfe542021-05-26 19:44:15 +01007718 .write_tsc_offset = vmx_write_tsc_offset,
Ilias Stamatis1ab92872021-06-07 11:54:38 +01007719 .write_tsc_multiplier = vmx_write_tsc_multiplier,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007720
Sean Christopherson484014f2020-03-21 13:25:57 -07007721 .load_mmu_pgd = vmx_load_mmu_pgd,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007722
7723 .check_intercept = vmx_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07007724 .handle_exit_irqoff = vmx_handle_exit_irqoff,
Jan Kiszkab6b8a142014-03-07 20:03:12 +01007725
Sean Christophersond264ee02018-08-27 15:21:12 -07007726 .request_immediate_exit = vmx_request_immediate_exit,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007727
7728 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +08007729
Sean Christopherson6dd03802021-02-12 16:50:09 -08007730 .cpu_dirty_log_size = PML_ENTITY_NUM,
Makarand Sonarea85863c2021-02-12 16:50:12 -08007731 .update_cpu_dirty_logging = vmx_update_cpu_dirty_logging,
Wei Huang25462f72015-06-19 15:45:05 +02007732
Feng Wubf9f6ac2015-09-18 22:29:55 +08007733 .pre_block = vmx_pre_block,
7734 .post_block = vmx_post_block,
7735
Wei Huang25462f72015-06-19 15:45:05 +02007736 .pmu_ops = &intel_pmu_ops,
Paolo Bonzini33b22172020-04-17 10:24:18 -04007737 .nested_ops = &vmx_nested_ops,
Feng Wuefc64402015-09-18 22:29:51 +08007738
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007739 .update_pi_irte = pi_update_irte,
Marcelo Tosattia2486022021-05-26 14:20:14 -03007740 .start_assignment = vmx_pi_start_assignment,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007741
7742#ifdef CONFIG_X86_64
7743 .set_hv_timer = vmx_set_hv_timer,
7744 .cancel_hv_timer = vmx_cancel_hv_timer,
7745#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +08007746
7747 .setup_mce = vmx_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007748
Ladi Prosek72d7b372017-10-11 16:54:41 +02007749 .smi_allowed = vmx_smi_allowed,
Sean Christophersonecc513e2021-06-09 11:56:19 -07007750 .enter_smm = vmx_enter_smm,
7751 .leave_smm = vmx_leave_smm,
Jason Baronb6a7cc32021-01-14 22:27:54 -05007752 .enable_smi_window = vmx_enable_smi_window,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007753
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007754 .can_emulate_instruction = vmx_can_emulate_instruction,
Liran Alon4b9852f2019-08-26 13:24:49 +03007755 .apic_init_signal_blocked = vmx_apic_init_signal_blocked,
Jim Mattson93dff2f2020-05-08 13:36:43 -07007756 .migrate_timers = vmx_migrate_timers,
Alexander Graf3eb90012020-09-25 16:34:20 +02007757
7758 .msr_filter_changed = vmx_msr_filter_changed,
Paolo Bonzinif9a4d622020-12-14 10:26:51 -05007759 .complete_emulated_msr = kvm_complete_insn_gp,
Tom Lendacky647daca2021-01-04 14:20:01 -06007760
7761 .vcpu_deliver_sipi_vector = kvm_vcpu_deliver_sipi_vector,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007762};
7763
Sean Christophersonb6194b92021-05-04 10:17:27 -07007764static __init void vmx_setup_user_return_msrs(void)
7765{
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07007766
7767 /*
7768 * Though SYSCALL is only supported in 64-bit mode on Intel CPUs, kvm
7769 * will emulate SYSCALL in legacy mode if the vendor string in guest
7770 * CPUID.0:{EBX,ECX,EDX} is "AuthenticAMD" or "AMDisbetter!" To
7771 * support this emulation, MSR_STAR is included in the list for i386,
7772 * but is never loaded into hardware. MSR_CSTAR is also never loaded
7773 * into hardware and is here purely for emulation purposes.
7774 */
7775 const u32 vmx_uret_msrs_list[] = {
7776 #ifdef CONFIG_X86_64
7777 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
7778 #endif
7779 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
7780 MSR_IA32_TSX_CTRL,
7781 };
Sean Christophersonb6194b92021-05-04 10:17:27 -07007782 int i;
7783
7784 BUILD_BUG_ON(ARRAY_SIZE(vmx_uret_msrs_list) != MAX_NR_USER_RETURN_MSRS);
7785
Sean Christophersone5fda4b2021-05-04 10:17:32 -07007786 for (i = 0; i < ARRAY_SIZE(vmx_uret_msrs_list); ++i)
7787 kvm_add_user_return_msr(vmx_uret_msrs_list[i]);
Sean Christophersonb6194b92021-05-04 10:17:27 -07007788}
7789
Avi Kivity6aa8b732006-12-10 02:21:36 -08007790static __init int hardware_setup(void)
7791{
7792 unsigned long host_bndcfgs;
7793 struct desc_ptr dt;
Sean Christophersonb6194b92021-05-04 10:17:27 -07007794 int r, ept_lpage_level;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007795
Avi Kivity6aa8b732006-12-10 02:21:36 -08007796 store_idt(&dt);
7797 host_idt_base = dt.address;
7798
Sean Christophersonb6194b92021-05-04 10:17:27 -07007799 vmx_setup_user_return_msrs();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007800
7801 if (setup_vmcs_config(&vmcs_config, &vmx_capability) < 0)
7802 return -EIO;
7803
7804 if (boot_cpu_has(X86_FEATURE_NX))
7805 kvm_enable_efer_bits(EFER_NX);
7806
7807 if (boot_cpu_has(X86_FEATURE_MPX)) {
7808 rdmsrl(MSR_IA32_BNDCFGS, host_bndcfgs);
7809 WARN_ONCE(host_bndcfgs, "KVM: BNDCFGS in host will be lost");
7810 }
7811
Sean Christopherson7f5581f2020-03-02 15:56:24 -08007812 if (!cpu_has_vmx_mpx())
Sean Christophersoncfc48182020-03-02 15:56:23 -08007813 supported_xcr0 &= ~(XFEATURE_MASK_BNDREGS |
7814 XFEATURE_MASK_BNDCSR);
7815
Avi Kivity6aa8b732006-12-10 02:21:36 -08007816 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
7817 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
7818 enable_vpid = 0;
7819
7820 if (!cpu_has_vmx_ept() ||
7821 !cpu_has_vmx_ept_4levels() ||
7822 !cpu_has_vmx_ept_mt_wb() ||
7823 !cpu_has_vmx_invept_global())
7824 enable_ept = 0;
7825
7826 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
7827 enable_ept_ad_bits = 0;
7828
7829 if (!cpu_has_vmx_unrestricted_guest() || !enable_ept)
Avi Kivity873a7c42006-12-13 00:34:14 -08007830 enable_unrestricted_guest = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007831
7832 if (!cpu_has_vmx_flexpriority())
7833 flexpriority_enabled = 0;
7834
7835 if (!cpu_has_virtual_nmis())
7836 enable_vnmi = 0;
7837
7838 /*
7839 * set_apic_access_page_addr() is used to reload apic access
7840 * page upon invalidation. No need to do anything if not
7841 * using the APIC_ACCESS_ADDR VMCS field.
7842 */
7843 if (!flexpriority_enabled)
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007844 vmx_x86_ops.set_apic_access_page_addr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007845
7846 if (!cpu_has_vmx_tpr_shadow())
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007847 vmx_x86_ops.update_cr8_intercept = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007848
Avi Kivity6aa8b732006-12-10 02:21:36 -08007849#if IS_ENABLED(CONFIG_HYPERV)
7850 if (ms_hyperv.nested_features & HV_X64_NESTED_GUEST_MAPPING_FLUSH
7851 && enable_ept) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007852 vmx_x86_ops.tlb_remote_flush = hv_remote_flush_tlb;
7853 vmx_x86_ops.tlb_remote_flush_with_range =
Avi Kivity6aa8b732006-12-10 02:21:36 -08007854 hv_remote_flush_tlb_with_range;
7855 }
7856#endif
7857
7858 if (!cpu_has_vmx_ple()) {
7859 ple_gap = 0;
7860 ple_window = 0;
7861 ple_window_grow = 0;
7862 ple_window_max = 0;
7863 ple_window_shrink = 0;
7864 }
7865
7866 if (!cpu_has_vmx_apicv()) {
7867 enable_apicv = 0;
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007868 vmx_x86_ops.sync_pir_to_irr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007869 }
7870
7871 if (cpu_has_vmx_tsc_scaling()) {
7872 kvm_has_tsc_control = true;
7873 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
7874 kvm_tsc_scaling_ratio_frac_bits = 48;
7875 }
7876
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08007877 kvm_has_bus_lock_exit = cpu_has_vmx_bus_lock_detection();
7878
Avi Kivity6aa8b732006-12-10 02:21:36 -08007879 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
7880
7881 if (enable_ept)
Sean Christophersone7b7bde2021-02-25 12:47:42 -08007882 kvm_mmu_set_ept_masks(enable_ept_ad_bits,
7883 cpu_has_vmx_ept_execute_only());
Sean Christopherson703c3352020-03-02 15:57:03 -08007884
7885 if (!enable_ept)
7886 ept_lpage_level = 0;
7887 else if (cpu_has_vmx_ept_1g_page())
Sean Christopherson3bae0452020-04-27 17:54:22 -07007888 ept_lpage_level = PG_LEVEL_1G;
Sean Christopherson703c3352020-03-02 15:57:03 -08007889 else if (cpu_has_vmx_ept_2m_page())
Sean Christopherson3bae0452020-04-27 17:54:22 -07007890 ept_lpage_level = PG_LEVEL_2M;
Sean Christopherson703c3352020-03-02 15:57:03 -08007891 else
Sean Christopherson3bae0452020-04-27 17:54:22 -07007892 ept_lpage_level = PG_LEVEL_4K;
Sean Christopherson83013052020-07-15 20:41:22 -07007893 kvm_configure_mmu(enable_ept, vmx_get_max_tdp_level(), ept_lpage_level);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007894
7895 /*
7896 * Only enable PML when hardware supports PML feature, and both EPT
7897 * and EPT A/D bit features are enabled -- PML depends on them to work.
7898 */
7899 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
7900 enable_pml = 0;
7901
Sean Christophersona018eba2021-02-12 16:50:10 -08007902 if (!enable_pml)
Sean Christopherson6dd03802021-02-12 16:50:09 -08007903 vmx_x86_ops.cpu_dirty_log_size = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007904
7905 if (!cpu_has_vmx_preemption_timer())
7906 enable_preemption_timer = false;
7907
7908 if (enable_preemption_timer) {
7909 u64 use_timer_freq = 5000ULL * 1000 * 1000;
7910 u64 vmx_msr;
7911
7912 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
7913 cpu_preemption_timer_multi =
7914 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
7915
7916 if (tsc_khz)
7917 use_timer_freq = (u64)tsc_khz * 1000;
7918 use_timer_freq >>= cpu_preemption_timer_multi;
7919
7920 /*
7921 * KVM "disables" the preemption timer by setting it to its max
7922 * value. Don't use the timer if it might cause spurious exits
7923 * at a rate faster than 0.1 Hz (of uninterrupted guest time).
7924 */
7925 if (use_timer_freq > 0xffffffffu / 10)
7926 enable_preemption_timer = false;
7927 }
7928
7929 if (!enable_preemption_timer) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007930 vmx_x86_ops.set_hv_timer = NULL;
7931 vmx_x86_ops.cancel_hv_timer = NULL;
7932 vmx_x86_ops.request_immediate_exit = __kvm_request_immediate_exit;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007933 }
7934
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007935 kvm_set_posted_intr_wakeup_handler(pi_wakeup_handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007936
7937 kvm_mce_cap_supported |= MCG_LMCE_P;
7938
7939 if (pt_mode != PT_MODE_SYSTEM && pt_mode != PT_MODE_HOST_GUEST)
7940 return -EINVAL;
7941 if (!enable_ept || !cpu_has_vmx_intel_pt())
7942 pt_mode = PT_MODE_SYSTEM;
7943
Sean Christopherson8f102442021-04-12 16:21:40 +12007944 setup_default_sgx_lepubkeyhash();
7945
Avi Kivity6aa8b732006-12-10 02:21:36 -08007946 if (nested) {
7947 nested_vmx_setup_ctls_msrs(&vmcs_config.nested,
7948 vmx_capability.ept);
7949
Sean Christopherson6c1c6e52020-05-06 13:46:53 -07007950 r = nested_vmx_hardware_setup(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007951 if (r)
7952 return r;
7953 }
7954
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007955 vmx_set_cpu_caps();
Sean Christopherson66a69502020-03-02 15:56:41 -08007956
Avi Kivity6aa8b732006-12-10 02:21:36 -08007957 r = alloc_kvm_area();
7958 if (r)
7959 nested_vmx_hardware_unsetup();
7960 return r;
7961}
7962
Sean Christophersond008dfd2020-03-21 13:25:56 -07007963static struct kvm_x86_init_ops vmx_init_ops __initdata = {
7964 .cpu_has_kvm_support = cpu_has_kvm_support,
7965 .disabled_by_bios = vmx_disabled_by_bios,
7966 .check_processor_compatibility = vmx_check_processor_compat,
7967 .hardware_setup = hardware_setup,
7968
7969 .runtime_ops = &vmx_x86_ops,
7970};
7971
Avi Kivity6aa8b732006-12-10 02:21:36 -08007972static void vmx_cleanup_l1d_flush(void)
7973{
7974 if (vmx_l1d_flush_pages) {
7975 free_pages((unsigned long)vmx_l1d_flush_pages, L1D_CACHE_ORDER);
7976 vmx_l1d_flush_pages = NULL;
7977 }
7978 /* Restore state so sysfs ignores VMX */
7979 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO;
7980}
7981
7982static void vmx_exit(void)
7983{
7984#ifdef CONFIG_KEXEC_CORE
7985 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
7986 synchronize_rcu();
7987#endif
7988
7989 kvm_exit();
7990
7991#if IS_ENABLED(CONFIG_HYPERV)
7992 if (static_branch_unlikely(&enable_evmcs)) {
7993 int cpu;
7994 struct hv_vp_assist_page *vp_ap;
7995 /*
7996 * Reset everything to support using non-enlightened VMCS
7997 * access later (e.g. when we reload the module with
7998 * enlightened_vmcs=0)
7999 */
8000 for_each_online_cpu(cpu) {
8001 vp_ap = hv_get_vp_assist_page(cpu);
8002
8003 if (!vp_ap)
8004 continue;
8005
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08008006 vp_ap->nested_control.features.directhypercall = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008007 vp_ap->current_nested_vmcs = 0;
8008 vp_ap->enlighten_vmentry = 0;
8009 }
8010
8011 static_branch_disable(&enable_evmcs);
8012 }
8013#endif
8014 vmx_cleanup_l1d_flush();
8015}
8016module_exit(vmx_exit);
8017
8018static int __init vmx_init(void)
8019{
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02008020 int r, cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008021
8022#if IS_ENABLED(CONFIG_HYPERV)
8023 /*
8024 * Enlightened VMCS usage should be recommended and the host needs
8025 * to support eVMCS v1 or above. We can also disable eVMCS support
8026 * with module parameter.
8027 */
8028 if (enlightened_vmcs &&
8029 ms_hyperv.hints & HV_X64_ENLIGHTENED_VMCS_RECOMMENDED &&
8030 (ms_hyperv.nested_features & HV_X64_ENLIGHTENED_VMCS_VERSION) >=
8031 KVM_EVMCS_VERSION) {
8032 int cpu;
8033
8034 /* Check that we have assist pages on all online CPUs */
8035 for_each_online_cpu(cpu) {
8036 if (!hv_get_vp_assist_page(cpu)) {
8037 enlightened_vmcs = false;
8038 break;
8039 }
8040 }
8041
8042 if (enlightened_vmcs) {
8043 pr_info("KVM: vmx: using Hyper-V Enlightened VMCS\n");
8044 static_branch_enable(&enable_evmcs);
8045 }
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08008046
8047 if (ms_hyperv.nested_features & HV_X64_NESTED_DIRECT_FLUSH)
8048 vmx_x86_ops.enable_direct_tlbflush
8049 = hv_enable_direct_tlbflush;
8050
Avi Kivity6aa8b732006-12-10 02:21:36 -08008051 } else {
8052 enlightened_vmcs = false;
8053 }
8054#endif
8055
Sean Christophersond008dfd2020-03-21 13:25:56 -07008056 r = kvm_init(&vmx_init_ops, sizeof(struct vcpu_vmx),
Avi Kivity6aa8b732006-12-10 02:21:36 -08008057 __alignof__(struct vcpu_vmx), THIS_MODULE);
8058 if (r)
8059 return r;
8060
8061 /*
8062 * Must be called after kvm_init() so enable_ept is properly set
8063 * up. Hand the parameter mitigation value in which was stored in
8064 * the pre module init parser. If no parameter was given, it will
8065 * contain 'auto' which will be turned into the default 'cond'
8066 * mitigation mode.
8067 */
Waiman Long19a36d32019-08-26 15:30:23 -04008068 r = vmx_setup_l1d_flush(vmentry_l1d_flush_param);
8069 if (r) {
8070 vmx_exit();
8071 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008072 }
8073
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02008074 for_each_possible_cpu(cpu) {
8075 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07008076
Paolo Bonzinia3ff25f2020-10-24 04:08:37 -04008077 pi_init_cpu(cpu);
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02008078 }
8079
Avi Kivity6aa8b732006-12-10 02:21:36 -08008080#ifdef CONFIG_KEXEC_CORE
8081 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
8082 crash_vmclear_local_loaded_vmcss);
8083#endif
8084 vmx_check_vmcs12_offsets();
8085
Mohammed Gamal3edd6832020-07-10 17:48:11 +02008086 /*
Mohammed Gamalb96e6502020-09-03 16:11:22 +02008087 * Shadow paging doesn't have a (further) performance penalty
8088 * from GUEST_MAXPHYADDR < HOST_MAXPHYADDR so enable it
8089 * by default
Mohammed Gamal3edd6832020-07-10 17:48:11 +02008090 */
Mohammed Gamalb96e6502020-09-03 16:11:22 +02008091 if (!enable_ept)
8092 allow_smaller_maxphyaddr = true;
Mohammed Gamal3edd6832020-07-10 17:48:11 +02008093
Avi Kivity6aa8b732006-12-10 02:21:36 -08008094 return 0;
8095}
8096module_init(vmx_init);