blob: 7c1c8ef1a286d1088bfba3ddd03204c6bac3393c [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"
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000055#include "kvm_onhyperv.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080056#include "irq.h"
57#include "kvm_cache_regs.h"
58#include "lapic.h"
59#include "mmu.h"
Sean Christopherson55d23752018-12-03 13:53:18 -080060#include "nested.h"
Wei Huang25462f72015-06-19 15:45:05 +020061#include "pmu.h"
Sean Christopherson9798adb2021-04-12 16:21:38 +120062#include "sgx.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080063#include "trace.h"
Sean Christophersoncb1d4742018-12-03 13:53:04 -080064#include "vmcs.h"
Sean Christopherson609363c2018-12-03 13:53:05 -080065#include "vmcs12.h"
Sean Christopherson89b0c9f2018-12-03 13:53:07 -080066#include "vmx.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080067#include "x86.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030068
Avi Kivity6aa8b732006-12-10 02:21:36 -080069MODULE_AUTHOR("Qumranet");
70MODULE_LICENSE("GPL");
71
Valdis Klētnieks575b2552020-02-27 21:49:52 -050072#ifdef MODULE
Josh Triplette9bda3b2012-03-20 23:33:51 -070073static const struct x86_cpu_id vmx_cpu_id[] = {
Thomas Gleixner320debe2020-03-20 14:13:50 +010074 X86_MATCH_FEATURE(X86_FEATURE_VMX, NULL),
Josh Triplette9bda3b2012-03-20 23:33:51 -070075 {}
76};
77MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
Valdis Klētnieks575b2552020-02-27 21:49:52 -050078#endif
Josh Triplette9bda3b2012-03-20 23:33:51 -070079
Sean Christopherson2c4fd912018-12-03 13:53:03 -080080bool __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020081module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080082
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010083static bool __read_mostly enable_vnmi = 1;
84module_param_named(vnmi, enable_vnmi, bool, S_IRUGO);
85
Sean Christopherson2c4fd912018-12-03 13:53:03 -080086bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020087module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020088
Sean Christopherson2c4fd912018-12-03 13:53:03 -080089bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020090module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080091
Sean Christopherson2c4fd912018-12-03 13:53:03 -080092bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070093module_param_named(unrestricted_guest,
94 enable_unrestricted_guest, bool, S_IRUGO);
95
Sean Christopherson2c4fd912018-12-03 13:53:03 -080096bool __read_mostly enable_ept_ad_bits = 1;
Xudong Hao83c3a332012-05-28 19:33:35 +080097module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
98
Avi Kivitya27685c2012-06-12 20:30:18 +030099static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +0200100module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300101
Rusty Russell476bc002012-01-13 09:32:18 +1030102static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +0300103module_param(fasteoi, bool, S_IRUGO);
104
Yang Zhang01e439b2013-04-11 19:25:12 +0800105module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +0800106
Nadav Har'El801d3422011-05-25 23:02:23 +0300107/*
108 * If nested=1, nested virtualization is supported, i.e., guests may use
109 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
110 * use VMX instructions.
111 */
Paolo Bonzini1e58e5e2018-10-17 00:55:22 +0200112static bool __read_mostly nested = 1;
Nadav Har'El801d3422011-05-25 23:02:23 +0300113module_param(nested, bool, S_IRUGO);
114
Sean Christopherson2c4fd912018-12-03 13:53:03 -0800115bool __read_mostly enable_pml = 1;
Kai Huang843e4332015-01-28 10:54:28 +0800116module_param_named(pml, enable_pml, bool, S_IRUGO);
117
Paolo Bonzini6f2f8452019-05-20 15:34:35 +0200118static bool __read_mostly dump_invalid_vmcs = 0;
119module_param(dump_invalid_vmcs, bool, 0644);
120
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100121#define MSR_BITMAP_MODE_X2APIC 1
122#define MSR_BITMAP_MODE_X2APIC_APICV 2
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100123
Haozhong Zhang64903d62015-10-20 15:39:09 +0800124#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
125
Yunhong Jiang64672c92016-06-13 14:19:59 -0700126/* Guest_tsc -> host_tsc conversion requires 64-bit division. */
127static int __read_mostly cpu_preemption_timer_multi;
128static bool __read_mostly enable_preemption_timer = 1;
129#ifdef CONFIG_X86_64
130module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
131#endif
132
Mohammed Gamalb96e6502020-09-03 16:11:22 +0200133extern bool __read_mostly allow_smaller_maxphyaddr;
134module_param(allow_smaller_maxphyaddr, bool, S_IRUGO);
135
Sean Christopherson3de63472018-07-13 08:42:30 -0700136#define KVM_VM_CR0_ALWAYS_OFF (X86_CR0_NW | X86_CR0_CD)
Sean Christopherson1706bd02018-03-05 12:04:38 -0800137#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR0_NE
138#define KVM_VM_CR0_ALWAYS_ON \
Sean Christophersonee5a5582021-07-13 09:32:59 -0700139 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | 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
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800461static int hv_enable_direct_tlbflush(struct kvm_vcpu *vcpu)
462{
463 struct hv_enlightened_vmcs *evmcs;
464 struct hv_partition_assist_pg **p_hv_pa_pg =
Vitaly Kuznetsov05f04ae2021-01-26 14:48:09 +0100465 &to_kvm_hv(vcpu->kvm)->hv_pa_pg;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800466 /*
467 * Synthetic VM-Exit is not enabled in current code and so All
468 * evmcs in singe VM shares same assist page.
469 */
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200470 if (!*p_hv_pa_pg)
Sean Christophersoneba04b22021-03-30 19:30:25 -0700471 *p_hv_pa_pg = kzalloc(PAGE_SIZE, GFP_KERNEL_ACCOUNT);
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200472
473 if (!*p_hv_pa_pg)
474 return -ENOMEM;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800475
476 evmcs = (struct hv_enlightened_vmcs *)to_vmx(vcpu)->loaded_vmcs->vmcs;
477
478 evmcs->partition_assist_page =
479 __pa(*p_hv_pa_pg);
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200480 evmcs->hv_vm_id = (unsigned long)vcpu->kvm;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800481 evmcs->hv_enlightenments_control.nested_flush_hypercall = 1;
482
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800483 return 0;
484}
485
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +0100486#endif /* IS_ENABLED(CONFIG_HYPERV) */
487
Yunhong Jiang64672c92016-06-13 14:19:59 -0700488/*
489 * Comment's format: document - errata name - stepping - processor name.
490 * Refer from
491 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
492 */
493static u32 vmx_preemption_cpu_tfms[] = {
494/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
4950x000206E6,
496/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
497/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
498/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
4990x00020652,
500/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
5010x00020655,
502/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
503/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
504/*
505 * 320767.pdf - AAP86 - B1 -
506 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
507 */
5080x000106E5,
509/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
5100x000106A0,
511/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
5120x000106A1,
513/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
5140x000106A4,
515 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
516 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
517 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
5180x000106A5,
Wei Huang3d82c562018-12-03 14:13:32 -0600519 /* Xeon E3-1220 V2 */
5200x000306A8,
Yunhong Jiang64672c92016-06-13 14:19:59 -0700521};
522
523static inline bool cpu_has_broken_vmx_preemption_timer(void)
524{
525 u32 eax = cpuid_eax(0x00000001), i;
526
527 /* Clear the reserved bits */
528 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +0000529 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -0700530 if (eax == vmx_preemption_cpu_tfms[i])
531 return true;
532
533 return false;
534}
535
Paolo Bonzini35754c92015-07-29 12:05:37 +0200536static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800537{
Paolo Bonzini35754c92015-07-29 12:05:37 +0200538 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800539}
540
Sheng Yang04547152009-04-01 15:52:31 +0800541static inline bool report_flexpriority(void)
542{
543 return flexpriority_enabled;
544}
545
Alexander Graf3eb90012020-09-25 16:34:20 +0200546static int possible_passthrough_msr_slot(u32 msr)
547{
548 u32 i;
549
550 for (i = 0; i < ARRAY_SIZE(vmx_possible_passthrough_msrs); i++)
551 if (vmx_possible_passthrough_msrs[i] == msr)
552 return i;
553
554 return -ENOENT;
555}
556
557static bool is_valid_passthrough_msr(u32 msr)
558{
559 bool r;
560
561 switch (msr) {
562 case 0x800 ... 0x8ff:
563 /* x2APIC MSRs. These are handled in vmx_update_msr_bitmap_x2apic() */
564 return true;
565 case MSR_IA32_RTIT_STATUS:
566 case MSR_IA32_RTIT_OUTPUT_BASE:
567 case MSR_IA32_RTIT_OUTPUT_MASK:
568 case MSR_IA32_RTIT_CR3_MATCH:
569 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
570 /* PT MSRs. These are handled in pt_update_intercept_for_msr() */
Like Xu1b5ac3222021-02-01 13:10:34 +0800571 case MSR_LBR_SELECT:
572 case MSR_LBR_TOS:
573 case MSR_LBR_INFO_0 ... MSR_LBR_INFO_0 + 31:
574 case MSR_LBR_NHM_FROM ... MSR_LBR_NHM_FROM + 31:
575 case MSR_LBR_NHM_TO ... MSR_LBR_NHM_TO + 31:
576 case MSR_LBR_CORE_FROM ... MSR_LBR_CORE_FROM + 8:
577 case MSR_LBR_CORE_TO ... MSR_LBR_CORE_TO + 8:
578 /* LBR MSRs. These are handled in vmx_update_intercept_for_lbr_msrs() */
Alexander Graf3eb90012020-09-25 16:34:20 +0200579 return true;
580 }
581
582 r = possible_passthrough_msr_slot(msr) != -ENOENT;
583
584 WARN(!r, "Invalid MSR %x, please adapt vmx_possible_passthrough_msrs[]", msr);
585
586 return r;
587}
588
Sean Christophersond85a8032020-09-23 11:04:06 -0700589struct vmx_uret_msr *vmx_find_uret_msr(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300590{
591 int i;
592
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700593 i = kvm_find_user_return_msr(msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300594 if (i >= 0)
Sean Christophersoneb3db1b2020-09-23 11:03:58 -0700595 return &vmx->guest_uret_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000596 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800597}
598
Sean Christopherson7bf662b2020-09-23 11:04:07 -0700599static int vmx_set_guest_uret_msr(struct vcpu_vmx *vmx,
600 struct vmx_uret_msr *msr, u64 data)
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500601{
Sean Christophersonee9d22e2021-05-04 10:17:28 -0700602 unsigned int slot = msr - vmx->guest_uret_msrs;
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500603 int ret = 0;
604
605 u64 old_msr_data = msr->data;
606 msr->data = data;
Sean Christophersonee9d22e2021-05-04 10:17:28 -0700607 if (msr->load_into_hardware) {
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500608 preempt_disable();
Sean Christophersonee9d22e2021-05-04 10:17:28 -0700609 ret = kvm_set_user_return_msr(slot, msr->data, msr->mask);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500610 preempt_enable();
611 if (ret)
612 msr->data = old_msr_data;
613 }
614 return ret;
615}
616
Dave Young2965faa2015-09-09 15:38:55 -0700617#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800618static void crash_vmclear_local_loaded_vmcss(void)
619{
620 int cpu = raw_smp_processor_id();
621 struct loaded_vmcs *v;
622
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800623 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
624 loaded_vmcss_on_cpu_link)
625 vmcs_clear(v->vmcs);
626}
Dave Young2965faa2015-09-09 15:38:55 -0700627#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800628
Nadav Har'Eld462b812011-05-24 15:26:10 +0300629static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800630{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300631 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800632 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800633
Nadav Har'Eld462b812011-05-24 15:26:10 +0300634 if (loaded_vmcs->cpu != cpu)
635 return; /* vcpu migration can race with cpu offline */
636 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800637 per_cpu(current_vmcs, cpu) = NULL;
Sean Christopherson31603d42020-03-21 12:37:49 -0700638
639 vmcs_clear(loaded_vmcs->vmcs);
640 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
641 vmcs_clear(loaded_vmcs->shadow_vmcs);
642
Nadav Har'Eld462b812011-05-24 15:26:10 +0300643 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +0800644
645 /*
Sean Christopherson31603d42020-03-21 12:37:49 -0700646 * Ensure all writes to loaded_vmcs, including deleting it from its
647 * current percpu list, complete before setting loaded_vmcs->vcpu to
648 * -1, otherwise a different cpu can see vcpu == -1 first and add
649 * loaded_vmcs to its percpu list before it's deleted from this cpu's
650 * list. Pairs with the smp_rmb() in vmx_vcpu_load_vmcs().
Xiao Guangrong5a560f82012-11-28 20:54:14 +0800651 */
652 smp_wmb();
653
Sean Christopherson31603d42020-03-21 12:37:49 -0700654 loaded_vmcs->cpu = -1;
655 loaded_vmcs->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800656}
657
Sean Christopherson89b0c9f2018-12-03 13:53:07 -0800658void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800659{
Xiao Guangronge6c7d322012-11-28 20:53:15 +0800660 int cpu = loaded_vmcs->cpu;
661
662 if (cpu != -1)
663 smp_call_function_single(cpu,
664 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800665}
666
Avi Kivity2fb92db2011-04-27 19:42:18 +0300667static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
668 unsigned field)
669{
670 bool ret;
671 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
672
Sean Christophersoncb3c1e22019-09-27 14:45:22 -0700673 if (!kvm_register_is_available(&vmx->vcpu, VCPU_EXREG_SEGMENTS)) {
674 kvm_register_mark_available(&vmx->vcpu, VCPU_EXREG_SEGMENTS);
Avi Kivity2fb92db2011-04-27 19:42:18 +0300675 vmx->segment_cache.bitmask = 0;
676 }
677 ret = vmx->segment_cache.bitmask & mask;
678 vmx->segment_cache.bitmask |= mask;
679 return ret;
680}
681
682static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
683{
684 u16 *p = &vmx->segment_cache.seg[seg].selector;
685
686 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
687 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
688 return *p;
689}
690
691static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
692{
693 ulong *p = &vmx->segment_cache.seg[seg].base;
694
695 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
696 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
697 return *p;
698}
699
700static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
701{
702 u32 *p = &vmx->segment_cache.seg[seg].limit;
703
704 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
705 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
706 return *p;
707}
708
709static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
710{
711 u32 *p = &vmx->segment_cache.seg[seg].ar;
712
713 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
714 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
715 return *p;
716}
717
Jason Baronb6a7cc32021-01-14 22:27:54 -0500718void vmx_update_exception_bitmap(struct kvm_vcpu *vcpu)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300719{
720 u32 eb;
721
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100722 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -0800723 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Liran Alon9e869482018-03-12 13:12:51 +0200724 /*
725 * Guest access to VMware backdoor ports could legitimately
726 * trigger #GP because of TSS I/O permission bitmap.
727 * We intercept those #GP and allow access to them anyway
728 * as VMware does.
729 */
730 if (enable_vmware_backdoor)
731 eb |= (1u << GP_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100732 if ((vcpu->guest_debug &
733 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
734 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
735 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300736 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300737 eb = ~0;
Paolo Bonzinia0c13432020-07-10 17:48:08 +0200738 if (!vmx_need_pf_intercept(vcpu))
Miaohe Lin49f933d2020-02-27 11:20:54 +0800739 eb &= ~(1u << PF_VECTOR);
Nadav Har'El36cf24e2011-05-25 23:15:08 +0300740
741 /* When we are running a nested L2 guest and L1 specified for it a
742 * certain exception bitmap, we must trap the same exceptions and pass
743 * them to L1. When running L2, we will only handle the exceptions
744 * specified above if L1 did not want them.
745 */
746 if (is_guest_mode(vcpu))
747 eb |= get_vmcs12(vcpu)->exception_bitmap;
Paolo Bonzinib502e6e2020-09-29 08:31:32 -0400748 else {
Jim Mattson5140bc72021-06-18 16:59:41 -0700749 int mask = 0, match = 0;
750
751 if (enable_ept && (eb & (1u << PF_VECTOR))) {
752 /*
753 * If EPT is enabled, #PF is currently only intercepted
754 * if MAXPHYADDR is smaller on the guest than on the
755 * host. In that case we only care about present,
756 * non-reserved faults. For vmcs02, however, PFEC_MASK
757 * and PFEC_MATCH are set in prepare_vmcs02_rare.
758 */
759 mask = PFERR_PRESENT_MASK | PFERR_RSVD_MASK;
760 match = PFERR_PRESENT_MASK;
761 }
Paolo Bonzinib502e6e2020-09-29 08:31:32 -0400762 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, mask);
Jim Mattson5140bc72021-06-18 16:59:41 -0700763 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, match);
Paolo Bonzinib502e6e2020-09-29 08:31:32 -0400764 }
Nadav Har'El36cf24e2011-05-25 23:15:08 +0300765
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300766 vmcs_write32(EXCEPTION_BITMAP, eb);
767}
768
Ashok Raj15d45072018-02-01 22:59:43 +0100769/*
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100770 * Check if MSR is intercepted for currently loaded MSR bitmap.
771 */
772static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr)
773{
774 unsigned long *msr_bitmap;
775 int f = sizeof(unsigned long);
776
777 if (!cpu_has_vmx_msr_bitmap())
778 return true;
779
780 msr_bitmap = to_vmx(vcpu)->loaded_vmcs->msr_bitmap;
781
782 if (msr <= 0x1fff) {
783 return !!test_bit(msr, msr_bitmap + 0x800 / f);
784 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
785 msr &= 0x1fff;
786 return !!test_bit(msr, msr_bitmap + 0xc00 / f);
787 }
788
789 return true;
790}
791
Gleb Natapov2961e8762013-11-25 15:37:13 +0200792static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
793 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200794{
Gleb Natapov2961e8762013-11-25 15:37:13 +0200795 vm_entry_controls_clearbit(vmx, entry);
796 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200797}
798
Sean Christophersona128a932020-09-23 11:03:57 -0700799int vmx_find_loadstore_msr_slot(struct vmx_msrs *m, u32 msr)
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400800{
801 unsigned int i;
802
803 for (i = 0; i < m->nr; ++i) {
804 if (m->val[i].index == msr)
805 return i;
806 }
807 return -ENOENT;
808}
809
Avi Kivity61d2ef22010-04-28 16:40:38 +0300810static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
811{
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400812 int i;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300813 struct msr_autoload *m = &vmx->msr_autoload;
814
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200815 switch (msr) {
816 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800817 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200818 clear_atomic_switch_msr_special(vmx,
819 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200820 VM_EXIT_LOAD_IA32_EFER);
821 return;
822 }
823 break;
824 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800825 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200826 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200827 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
828 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
829 return;
830 }
831 break;
Avi Kivity110312c2010-12-21 12:54:20 +0200832 }
Sean Christophersona128a932020-09-23 11:03:57 -0700833 i = vmx_find_loadstore_msr_slot(&m->guest, msr);
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400834 if (i < 0)
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400835 goto skip_guest;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400836 --m->guest.nr;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400837 m->guest.val[i] = m->guest.val[m->guest.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400838 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Avi Kivity110312c2010-12-21 12:54:20 +0200839
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400840skip_guest:
Sean Christophersona128a932020-09-23 11:03:57 -0700841 i = vmx_find_loadstore_msr_slot(&m->host, msr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400842 if (i < 0)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300843 return;
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400844
845 --m->host.nr;
846 m->host.val[i] = m->host.val[m->host.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400847 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300848}
849
Gleb Natapov2961e8762013-11-25 15:37:13 +0200850static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
851 unsigned long entry, unsigned long exit,
852 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
853 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200854{
855 vmcs_write64(guest_val_vmcs, guest_val);
Sean Christopherson5a5e8a12018-09-26 09:23:56 -0700856 if (host_val_vmcs != HOST_IA32_EFER)
857 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +0200858 vm_entry_controls_setbit(vmx, entry);
859 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200860}
861
Avi Kivity61d2ef22010-04-28 16:40:38 +0300862static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400863 u64 guest_val, u64 host_val, bool entry_only)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300864{
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400865 int i, j = 0;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300866 struct msr_autoload *m = &vmx->msr_autoload;
867
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200868 switch (msr) {
869 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800870 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200871 add_atomic_switch_msr_special(vmx,
872 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200873 VM_EXIT_LOAD_IA32_EFER,
874 GUEST_IA32_EFER,
875 HOST_IA32_EFER,
876 guest_val, host_val);
877 return;
878 }
879 break;
880 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800881 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200882 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200883 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
884 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
885 GUEST_IA32_PERF_GLOBAL_CTRL,
886 HOST_IA32_PERF_GLOBAL_CTRL,
887 guest_val, host_val);
888 return;
889 }
890 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +0100891 case MSR_IA32_PEBS_ENABLE:
892 /* PEBS needs a quiescent period after being disabled (to write
893 * a record). Disabling PEBS through VMX MSR swapping doesn't
894 * provide that period, so a CPU could write host's record into
895 * guest's memory.
896 */
897 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +0200898 }
899
Sean Christophersona128a932020-09-23 11:03:57 -0700900 i = vmx_find_loadstore_msr_slot(&m->guest, msr);
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400901 if (!entry_only)
Sean Christophersona128a932020-09-23 11:03:57 -0700902 j = vmx_find_loadstore_msr_slot(&m->host, msr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300903
Sean Christophersonce833b22020-09-23 11:03:56 -0700904 if ((i < 0 && m->guest.nr == MAX_NR_LOADSTORE_MSRS) ||
905 (j < 0 && m->host.nr == MAX_NR_LOADSTORE_MSRS)) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +0200906 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +0200907 "Can't add msr %x\n", msr);
908 return;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300909 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400910 if (i < 0) {
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400911 i = m->guest.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400912 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400913 }
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400914 m->guest.val[i].index = msr;
915 m->guest.val[i].value = guest_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300916
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400917 if (entry_only)
918 return;
919
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400920 if (j < 0) {
921 j = m->host.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400922 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300923 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400924 m->host.val[j].index = msr;
925 m->host.val[j].value = host_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300926}
927
Sean Christopherson86e3e492020-09-23 11:04:04 -0700928static bool update_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +0300929{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100930 u64 guest_efer = vmx->vcpu.arch.efer;
931 u64 ignore_bits = 0;
Sean Christopherson86e3e492020-09-23 11:04:04 -0700932 int i;
Eddie Dong2cc51562007-05-21 07:28:09 +0300933
Paolo Bonzini9167ab72019-10-27 16:23:23 +0100934 /* Shadow paging assumes NX to be available. */
935 if (!enable_ept)
936 guest_efer |= EFER_NX;
Roel Kluin3a34a882009-08-04 02:08:45 -0700937
Avi Kivity51c6cf62007-08-29 03:48:05 +0300938 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100939 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +0300940 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100941 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300942#ifdef CONFIG_X86_64
943 ignore_bits |= EFER_LMA | EFER_LME;
944 /* SCE is meaningful only in long mode on Intel */
945 if (guest_efer & EFER_LMA)
946 ignore_bits &= ~(u64)EFER_SCE;
947#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +0300948
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -0800949 /*
950 * On EPT, we can't emulate NX, so we must switch EFER atomically.
951 * On CPUs that support "load IA32_EFER", always switch EFER
952 * atomically, since it's faster than switching it manually.
953 */
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800954 if (cpu_has_load_ia32_efer() ||
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -0800955 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +0300956 if (!(guest_efer & EFER_LMA))
957 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -0800958 if (guest_efer != host_efer)
959 add_atomic_switch_msr(vmx, MSR_EFER,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400960 guest_efer, host_efer, false);
Sean Christopherson02343cf2018-09-26 09:23:43 -0700961 else
962 clear_atomic_switch_msr(vmx, MSR_EFER);
Avi Kivity84ad33e2010-04-28 16:42:29 +0300963 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100964 }
Sean Christopherson86e3e492020-09-23 11:04:04 -0700965
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700966 i = kvm_find_user_return_msr(MSR_EFER);
Sean Christopherson86e3e492020-09-23 11:04:04 -0700967 if (i < 0)
968 return false;
969
970 clear_atomic_switch_msr(vmx, MSR_EFER);
971
972 guest_efer &= ~ignore_bits;
973 guest_efer |= host_efer & ignore_bits;
974
975 vmx->guest_uret_msrs[i].data = guest_efer;
976 vmx->guest_uret_msrs[i].mask = ~ignore_bits;
977
978 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300979}
980
Andy Lutomirskie28baea2017-02-20 08:56:11 -0800981#ifdef CONFIG_X86_32
982/*
983 * On 32-bit kernels, VM exits still load the FS and GS bases from the
984 * VMCS rather than the segment table. KVM uses this helper to figure
985 * out the current bases to poke them into the VMCS before entry.
986 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200987static unsigned long segment_base(u16 selector)
988{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800989 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200990 unsigned long v;
991
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800992 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200993 return 0;
994
Thomas Garnier45fc8752017-03-14 10:05:08 -0700995 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200996
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800997 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200998 u16 ldt_selector = kvm_read_ldt();
999
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001000 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001001 return 0;
1002
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001003 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001004 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001005 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001006 return v;
1007}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08001008#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001009
Sean Christophersone348ac72019-12-10 15:24:33 -08001010static inline bool pt_can_write_msr(struct vcpu_vmx *vmx)
1011{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001012 return vmx_pt_mode_is_host_guest() &&
Sean Christophersone348ac72019-12-10 15:24:33 -08001013 !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
1014}
1015
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07001016static inline bool pt_output_base_valid(struct kvm_vcpu *vcpu, u64 base)
1017{
1018 /* The base must be 128-byte aligned and a legal physical address. */
Sean Christopherson636e8b72021-02-03 16:01:10 -08001019 return kvm_vcpu_is_legal_aligned_gpa(vcpu, base, 128);
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07001020}
1021
Chao Peng2ef444f2018-10-24 16:05:12 +08001022static inline void pt_load_msr(struct pt_ctx *ctx, u32 addr_range)
1023{
1024 u32 i;
1025
1026 wrmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
1027 wrmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
1028 wrmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1029 wrmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1030 for (i = 0; i < addr_range; i++) {
1031 wrmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1032 wrmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1033 }
1034}
1035
1036static inline void pt_save_msr(struct pt_ctx *ctx, u32 addr_range)
1037{
1038 u32 i;
1039
1040 rdmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
1041 rdmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
1042 rdmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1043 rdmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1044 for (i = 0; i < addr_range; i++) {
1045 rdmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1046 rdmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1047 }
1048}
1049
1050static void pt_guest_enter(struct vcpu_vmx *vmx)
1051{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001052 if (vmx_pt_mode_is_system())
Chao Peng2ef444f2018-10-24 16:05:12 +08001053 return;
1054
Chao Peng2ef444f2018-10-24 16:05:12 +08001055 /*
Chao Pengb08c2892018-10-24 16:05:15 +08001056 * GUEST_IA32_RTIT_CTL is already set in the VMCS.
1057 * Save host state before VM entry.
Chao Peng2ef444f2018-10-24 16:05:12 +08001058 */
Chao Pengb08c2892018-10-24 16:05:15 +08001059 rdmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
Chao Peng2ef444f2018-10-24 16:05:12 +08001060 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
1061 wrmsrl(MSR_IA32_RTIT_CTL, 0);
1062 pt_save_msr(&vmx->pt_desc.host, vmx->pt_desc.addr_range);
1063 pt_load_msr(&vmx->pt_desc.guest, vmx->pt_desc.addr_range);
1064 }
1065}
1066
1067static void pt_guest_exit(struct vcpu_vmx *vmx)
1068{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001069 if (vmx_pt_mode_is_system())
Chao Peng2ef444f2018-10-24 16:05:12 +08001070 return;
1071
1072 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
1073 pt_save_msr(&vmx->pt_desc.guest, vmx->pt_desc.addr_range);
1074 pt_load_msr(&vmx->pt_desc.host, vmx->pt_desc.addr_range);
1075 }
1076
1077 /* Reload host state (IA32_RTIT_CTL will be cleared on VM exit). */
1078 wrmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
1079}
1080
Sean Christopherson13b964a2019-05-07 09:06:31 -07001081void vmx_set_host_fs_gs(struct vmcs_host_state *host, u16 fs_sel, u16 gs_sel,
1082 unsigned long fs_base, unsigned long gs_base)
1083{
1084 if (unlikely(fs_sel != host->fs_sel)) {
1085 if (!(fs_sel & 7))
1086 vmcs_write16(HOST_FS_SELECTOR, fs_sel);
1087 else
1088 vmcs_write16(HOST_FS_SELECTOR, 0);
1089 host->fs_sel = fs_sel;
1090 }
1091 if (unlikely(gs_sel != host->gs_sel)) {
1092 if (!(gs_sel & 7))
1093 vmcs_write16(HOST_GS_SELECTOR, gs_sel);
1094 else
1095 vmcs_write16(HOST_GS_SELECTOR, 0);
1096 host->gs_sel = gs_sel;
1097 }
1098 if (unlikely(fs_base != host->fs_base)) {
1099 vmcs_writel(HOST_FS_BASE, fs_base);
1100 host->fs_base = fs_base;
1101 }
1102 if (unlikely(gs_base != host->gs_base)) {
1103 vmcs_writel(HOST_GS_BASE, gs_base);
1104 host->gs_base = gs_base;
1105 }
1106}
1107
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001108void vmx_prepare_switch_to_guest(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001109{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001110 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond7ee0392018-07-23 12:32:47 -07001111 struct vmcs_host_state *host_state;
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001112#ifdef CONFIG_X86_64
Vitaly Kuznetsov35060ed2018-03-13 18:48:05 +01001113 int cpu = raw_smp_processor_id();
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001114#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001115 unsigned long fs_base, gs_base;
1116 u16 fs_sel, gs_sel;
Avi Kivity26bb0982009-09-07 11:14:12 +03001117 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001118
Sean Christophersond264ee02018-08-27 15:21:12 -07001119 vmx->req_immediate_exit = false;
1120
Liran Alonf48b4712018-11-20 18:03:25 +02001121 /*
1122 * Note that guest MSRs to be saved/restored can also be changed
1123 * when guest state is loaded. This happens when guest transitions
1124 * to/from long-mode by setting MSR_EFER.LMA.
1125 */
Sean Christopherson658ece82020-09-23 11:04:01 -07001126 if (!vmx->guest_uret_msrs_loaded) {
1127 vmx->guest_uret_msrs_loaded = true;
Sean Christophersone5fda4b2021-05-04 10:17:32 -07001128 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001129 if (!vmx->guest_uret_msrs[i].load_into_hardware)
1130 continue;
1131
1132 kvm_set_user_return_msr(i,
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001133 vmx->guest_uret_msrs[i].data,
1134 vmx->guest_uret_msrs[i].mask);
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001135 }
Liran Alonf48b4712018-11-20 18:03:25 +02001136 }
wanpeng lic9dfd3f2020-02-17 18:37:43 +08001137
1138 if (vmx->nested.need_vmcs12_to_shadow_sync)
1139 nested_sync_vmcs12_to_shadow(vcpu);
1140
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001141 if (vmx->guest_state_loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001142 return;
1143
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001144 host_state = &vmx->loaded_vmcs->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001145
Avi Kivity33ed6322007-05-02 16:54:03 +03001146 /*
1147 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1148 * allow segment selectors with cpl > 0 or ti == 1.
1149 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07001150 host_state->ldt_sel = kvm_read_ldt();
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01001151
1152#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001153 savesegment(ds, host_state->ds_sel);
1154 savesegment(es, host_state->es_sel);
Sean Christophersone368b872018-07-23 12:32:41 -07001155
1156 gs_base = cpu_kernelmode_gs_base(cpu);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001157 if (likely(is_64bit_mm(current->mm))) {
Thomas Gleixner67580342020-05-28 16:13:52 -04001158 current_save_fsgs();
Sean Christophersone368b872018-07-23 12:32:41 -07001159 fs_sel = current->thread.fsindex;
1160 gs_sel = current->thread.gsindex;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001161 fs_base = current->thread.fsbase;
Sean Christophersone368b872018-07-23 12:32:41 -07001162 vmx->msr_host_kernel_gs_base = current->thread.gsbase;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001163 } else {
Sean Christophersone368b872018-07-23 12:32:41 -07001164 savesegment(fs, fs_sel);
1165 savesegment(gs, gs_sel);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001166 fs_base = read_msr(MSR_FS_BASE);
Sean Christophersone368b872018-07-23 12:32:41 -07001167 vmx->msr_host_kernel_gs_base = read_msr(MSR_KERNEL_GS_BASE);
Avi Kivity33ed6322007-05-02 16:54:03 +03001168 }
1169
Paolo Bonzini4679b612018-09-24 17:23:01 +02001170 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity33ed6322007-05-02 16:54:03 +03001171#else
Sean Christophersone368b872018-07-23 12:32:41 -07001172 savesegment(fs, fs_sel);
1173 savesegment(gs, gs_sel);
1174 fs_base = segment_base(fs_sel);
1175 gs_base = segment_base(gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001176#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001177
Sean Christopherson13b964a2019-05-07 09:06:31 -07001178 vmx_set_host_fs_gs(host_state, fs_sel, gs_sel, fs_base, gs_base);
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001179 vmx->guest_state_loaded = true;
Avi Kivity33ed6322007-05-02 16:54:03 +03001180}
1181
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001182static void vmx_prepare_switch_to_host(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001183{
Sean Christophersond7ee0392018-07-23 12:32:47 -07001184 struct vmcs_host_state *host_state;
1185
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001186 if (!vmx->guest_state_loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001187 return;
1188
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001189 host_state = &vmx->loaded_vmcs->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001190
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001191 ++vmx->vcpu.stat.host_state_reload;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001192
Avi Kivityc8770e72010-11-11 12:37:26 +02001193#ifdef CONFIG_X86_64
Paolo Bonzini4679b612018-09-24 17:23:01 +02001194 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivityc8770e72010-11-11 12:37:26 +02001195#endif
Sean Christophersond7ee0392018-07-23 12:32:47 -07001196 if (host_state->ldt_sel || (host_state->gs_sel & 7)) {
1197 kvm_load_ldt(host_state->ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001198#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001199 load_gs_index(host_state->gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02001200#else
Sean Christophersond7ee0392018-07-23 12:32:47 -07001201 loadsegment(gs, host_state->gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001202#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03001203 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07001204 if (host_state->fs_sel & 7)
1205 loadsegment(fs, host_state->fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001206#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001207 if (unlikely(host_state->ds_sel | host_state->es_sel)) {
1208 loadsegment(ds, host_state->ds_sel);
1209 loadsegment(es, host_state->es_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001210 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03001211#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08001212 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03001213#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001214 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001215#endif
Thomas Garnier45fc8752017-03-14 10:05:08 -07001216 load_fixmap_gdt(raw_smp_processor_id());
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001217 vmx->guest_state_loaded = false;
Sean Christopherson658ece82020-09-23 11:04:01 -07001218 vmx->guest_uret_msrs_loaded = false;
Avi Kivity33ed6322007-05-02 16:54:03 +03001219}
1220
Sean Christopherson678e3152018-07-23 12:32:43 -07001221#ifdef CONFIG_X86_64
1222static u64 vmx_read_guest_kernel_gs_base(struct vcpu_vmx *vmx)
Avi Kivitya9b21b62008-06-24 11:48:49 +03001223{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001224 preempt_disable();
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001225 if (vmx->guest_state_loaded)
Paolo Bonzini4679b612018-09-24 17:23:01 +02001226 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1227 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001228 return vmx->msr_guest_kernel_gs_base;
Avi Kivitya9b21b62008-06-24 11:48:49 +03001229}
1230
Sean Christopherson678e3152018-07-23 12:32:43 -07001231static void vmx_write_guest_kernel_gs_base(struct vcpu_vmx *vmx, u64 data)
1232{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001233 preempt_disable();
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001234 if (vmx->guest_state_loaded)
Paolo Bonzini4679b612018-09-24 17:23:01 +02001235 wrmsrl(MSR_KERNEL_GS_BASE, data);
1236 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001237 vmx->msr_guest_kernel_gs_base = data;
1238}
1239#endif
1240
Sean Christopherson5c911be2020-05-01 09:31:17 -07001241void vmx_vcpu_load_vmcs(struct kvm_vcpu *vcpu, int cpu,
1242 struct loaded_vmcs *buddy)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001243{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001244 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001245 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Sean Christopherson5c911be2020-05-01 09:31:17 -07001246 struct vmcs *prev;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001247
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001248 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01001249 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001250 local_irq_disable();
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001251
1252 /*
Sean Christopherson31603d42020-03-21 12:37:49 -07001253 * Ensure loaded_vmcs->cpu is read before adding loaded_vmcs to
1254 * this cpu's percpu list, otherwise it may not yet be deleted
1255 * from its previous cpu's percpu list. Pairs with the
1256 * smb_wmb() in __loaded_vmcs_clear().
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001257 */
1258 smp_rmb();
1259
Nadav Har'Eld462b812011-05-24 15:26:10 +03001260 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
1261 &per_cpu(loaded_vmcss_on_cpu, cpu));
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001262 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001263 }
1264
Sean Christopherson5c911be2020-05-01 09:31:17 -07001265 prev = per_cpu(current_vmcs, cpu);
1266 if (prev != vmx->loaded_vmcs->vmcs) {
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001267 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
1268 vmcs_load(vmx->loaded_vmcs->vmcs);
Sean Christopherson5c911be2020-05-01 09:31:17 -07001269
1270 /*
1271 * No indirect branch prediction barrier needed when switching
1272 * the active VMCS within a guest, e.g. on nested VM-Enter.
1273 * The L1 VMM can protect itself with retpolines, IBPB or IBRS.
1274 */
1275 if (!buddy || WARN_ON_ONCE(buddy->vmcs != prev))
1276 indirect_branch_prediction_barrier();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001277 }
1278
1279 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001280 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001281 unsigned long sysenter_esp;
1282
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07001283 /*
1284 * Flush all EPTP/VPID contexts, the new pCPU may have stale
1285 * TLB entries from its previous association with the vCPU.
1286 */
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001287 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001288
Avi Kivity6aa8b732006-12-10 02:21:36 -08001289 /*
1290 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001291 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001292 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001293 vmcs_writel(HOST_TR_BASE,
Andy Lutomirski72f5e082017-12-04 15:07:20 +01001294 (unsigned long)&get_cpu_entry_area(cpu)->tss.x86_tss);
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001295 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001296
1297 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
1298 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08001299
Nadav Har'Eld462b812011-05-24 15:26:10 +03001300 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001301 }
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001302}
1303
1304/*
1305 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
1306 * vcpu mutex is already taken.
1307 */
Sean Christopherson1af1bb02020-05-06 16:58:50 -07001308static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001309{
1310 struct vcpu_vmx *vmx = to_vmx(vcpu);
1311
Sean Christopherson5c911be2020-05-01 09:31:17 -07001312 vmx_vcpu_load_vmcs(vcpu, cpu, NULL);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001313
Feng Wu28b835d2015-09-18 22:29:54 +08001314 vmx_vcpu_pi_load(vcpu, cpu);
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001315
Wanpeng Li74c55932017-11-29 01:31:20 -08001316 vmx->host_debugctlmsr = get_debugctlmsr();
Feng Wu28b835d2015-09-18 22:29:54 +08001317}
1318
Sean Christopherson13b964a2019-05-07 09:06:31 -07001319static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001320{
Feng Wu28b835d2015-09-18 22:29:54 +08001321 vmx_vcpu_pi_put(vcpu);
1322
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001323 vmx_prepare_switch_to_host(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001324}
1325
Wanpeng Lif244dee2017-07-20 01:11:54 -07001326static bool emulation_required(struct kvm_vcpu *vcpu)
1327{
Sean Christopherson2ba44932020-09-23 11:44:48 -07001328 return emulate_invalid_guest_state && !vmx_guest_state_valid(vcpu);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001329}
1330
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001331unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001332{
Sean Christophersone7bddc52019-09-27 14:45:18 -07001333 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity78ac8b42010-04-08 18:19:35 +03001334 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03001335
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001336 if (!kvm_register_is_available(vcpu, VCPU_EXREG_RFLAGS)) {
1337 kvm_register_mark_available(vcpu, VCPU_EXREG_RFLAGS);
Avi Kivity6de12732011-03-07 12:51:22 +02001338 rflags = vmcs_readl(GUEST_RFLAGS);
Sean Christophersone7bddc52019-09-27 14:45:18 -07001339 if (vmx->rmode.vm86_active) {
Avi Kivity6de12732011-03-07 12:51:22 +02001340 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
Sean Christophersone7bddc52019-09-27 14:45:18 -07001341 save_rflags = vmx->rmode.save_rflags;
Avi Kivity6de12732011-03-07 12:51:22 +02001342 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
1343 }
Sean Christophersone7bddc52019-09-27 14:45:18 -07001344 vmx->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001345 }
Sean Christophersone7bddc52019-09-27 14:45:18 -07001346 return vmx->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001347}
1348
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001349void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001350{
Sean Christophersone7bddc52019-09-27 14:45:18 -07001351 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson491c1ad2019-09-27 14:45:19 -07001352 unsigned long old_rflags;
Wanpeng Lif244dee2017-07-20 01:11:54 -07001353
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00001354 if (is_unrestricted_guest(vcpu)) {
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001355 kvm_register_mark_available(vcpu, VCPU_EXREG_RFLAGS);
Sean Christopherson491c1ad2019-09-27 14:45:19 -07001356 vmx->rflags = rflags;
1357 vmcs_writel(GUEST_RFLAGS, rflags);
1358 return;
1359 }
1360
1361 old_rflags = vmx_get_rflags(vcpu);
Sean Christophersone7bddc52019-09-27 14:45:18 -07001362 vmx->rflags = rflags;
1363 if (vmx->rmode.vm86_active) {
1364 vmx->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001365 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001366 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001367 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001368
Sean Christophersone7bddc52019-09-27 14:45:18 -07001369 if ((old_rflags ^ vmx->rflags) & X86_EFLAGS_VM)
1370 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001371}
1372
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001373u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001374{
1375 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1376 int ret = 0;
1377
1378 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01001379 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001380 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01001381 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001382
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02001383 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001384}
1385
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001386void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001387{
1388 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1389 u32 interruptibility = interruptibility_old;
1390
1391 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
1392
Jan Kiszka48005f62010-02-19 19:38:07 +01001393 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001394 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01001395 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001396 interruptibility |= GUEST_INTR_STATE_STI;
1397
1398 if ((interruptibility != interruptibility_old))
1399 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
1400}
1401
Chao Pengbf8c55d2018-10-24 16:05:14 +08001402static int vmx_rtit_ctl_check(struct kvm_vcpu *vcpu, u64 data)
1403{
1404 struct vcpu_vmx *vmx = to_vmx(vcpu);
1405 unsigned long value;
1406
1407 /*
1408 * Any MSR write that attempts to change bits marked reserved will
1409 * case a #GP fault.
1410 */
1411 if (data & vmx->pt_desc.ctl_bitmask)
1412 return 1;
1413
1414 /*
1415 * Any attempt to modify IA32_RTIT_CTL while TraceEn is set will
1416 * result in a #GP unless the same write also clears TraceEn.
1417 */
1418 if ((vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) &&
1419 ((vmx->pt_desc.guest.ctl ^ data) & ~RTIT_CTL_TRACEEN))
1420 return 1;
1421
1422 /*
1423 * WRMSR to IA32_RTIT_CTL that sets TraceEn but clears this bit
1424 * and FabricEn would cause #GP, if
1425 * CPUID.(EAX=14H, ECX=0):ECX.SNGLRGNOUT[bit 2] = 0
1426 */
1427 if ((data & RTIT_CTL_TRACEEN) && !(data & RTIT_CTL_TOPA) &&
1428 !(data & RTIT_CTL_FABRIC_EN) &&
1429 !intel_pt_validate_cap(vmx->pt_desc.caps,
1430 PT_CAP_single_range_output))
1431 return 1;
1432
1433 /*
1434 * MTCFreq, CycThresh and PSBFreq encodings check, any MSR write that
Ingo Molnard9f6e122021-03-18 15:28:01 +01001435 * utilize encodings marked reserved will cause a #GP fault.
Chao Pengbf8c55d2018-10-24 16:05:14 +08001436 */
1437 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc_periods);
1438 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc) &&
1439 !test_bit((data & RTIT_CTL_MTC_RANGE) >>
1440 RTIT_CTL_MTC_RANGE_OFFSET, &value))
1441 return 1;
1442 value = intel_pt_validate_cap(vmx->pt_desc.caps,
1443 PT_CAP_cycle_thresholds);
1444 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1445 !test_bit((data & RTIT_CTL_CYC_THRESH) >>
1446 RTIT_CTL_CYC_THRESH_OFFSET, &value))
1447 return 1;
1448 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_periods);
1449 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1450 !test_bit((data & RTIT_CTL_PSB_FREQ) >>
1451 RTIT_CTL_PSB_FREQ_OFFSET, &value))
1452 return 1;
1453
1454 /*
1455 * If ADDRx_CFG is reserved or the encodings is >2 will
1456 * cause a #GP fault.
1457 */
1458 value = (data & RTIT_CTL_ADDR0) >> RTIT_CTL_ADDR0_OFFSET;
1459 if ((value && (vmx->pt_desc.addr_range < 1)) || (value > 2))
1460 return 1;
1461 value = (data & RTIT_CTL_ADDR1) >> RTIT_CTL_ADDR1_OFFSET;
1462 if ((value && (vmx->pt_desc.addr_range < 2)) || (value > 2))
1463 return 1;
1464 value = (data & RTIT_CTL_ADDR2) >> RTIT_CTL_ADDR2_OFFSET;
1465 if ((value && (vmx->pt_desc.addr_range < 3)) || (value > 2))
1466 return 1;
1467 value = (data & RTIT_CTL_ADDR3) >> RTIT_CTL_ADDR3_OFFSET;
1468 if ((value && (vmx->pt_desc.addr_range < 4)) || (value > 2))
1469 return 1;
1470
1471 return 0;
1472}
1473
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07001474static bool vmx_can_emulate_instruction(struct kvm_vcpu *vcpu, void *insn, int insn_len)
1475{
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001476 /*
1477 * Emulation of instructions in SGX enclaves is impossible as RIP does
1478 * not point tthe failing instruction, and even if it did, the code
1479 * stream is inaccessible. Inject #UD instead of exiting to userspace
1480 * so that guest userspace can't DoS the guest simply by triggering
1481 * emulation (enclaves are CPL3 only).
1482 */
1483 if (to_vmx(vcpu)->exit_reason.enclave_mode) {
1484 kvm_queue_exception(vcpu, UD_VECTOR);
1485 return false;
1486 }
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07001487 return true;
1488}
1489
Sean Christopherson1957aa62019-08-27 14:40:39 -07001490static int skip_emulated_instruction(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001491{
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001492 union vmx_exit_reason exit_reason = to_vmx(vcpu)->exit_reason;
Paolo Bonzinifede8072020-04-27 11:55:59 -04001493 unsigned long rip, orig_rip;
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001494 u32 instr_len;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001495
Sean Christopherson1957aa62019-08-27 14:40:39 -07001496 /*
1497 * Using VMCS.VM_EXIT_INSTRUCTION_LEN on EPT misconfig depends on
1498 * undefined behavior: Intel's SDM doesn't mandate the VMCS field be
1499 * set when EPT misconfig occurs. In practice, real hardware updates
1500 * VM_EXIT_INSTRUCTION_LEN on EPT misconfig, but other hypervisors
1501 * (namely Hyper-V) don't set it due to it being undefined behavior,
1502 * i.e. we end up advancing IP with some random value.
1503 */
1504 if (!static_cpu_has(X86_FEATURE_HYPERVISOR) ||
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001505 exit_reason.basic != EXIT_REASON_EPT_MISCONFIG) {
1506 instr_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
1507
1508 /*
1509 * Emulating an enclave's instructions isn't supported as KVM
1510 * cannot access the enclave's memory or its true RIP, e.g. the
1511 * vmcs.GUEST_RIP points at the exit point of the enclave, not
1512 * the RIP that actually triggered the VM-Exit. But, because
1513 * most instructions that cause VM-Exit will #UD in an enclave,
1514 * most instruction-based VM-Exits simply do not occur.
1515 *
1516 * There are a few exceptions, notably the debug instructions
1517 * INT1ICEBRK and INT3, as they are allowed in debug enclaves
1518 * and generate #DB/#BP as expected, which KVM might intercept.
1519 * But again, the CPU does the dirty work and saves an instr
1520 * length of zero so VMMs don't shoot themselves in the foot.
1521 * WARN if KVM tries to skip a non-zero length instruction on
1522 * a VM-Exit from an enclave.
1523 */
1524 if (!instr_len)
1525 goto rip_updated;
1526
1527 WARN(exit_reason.enclave_mode,
1528 "KVM: skipping instruction after SGX enclave VM-Exit");
1529
Paolo Bonzinifede8072020-04-27 11:55:59 -04001530 orig_rip = kvm_rip_read(vcpu);
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001531 rip = orig_rip + instr_len;
Paolo Bonzinifede8072020-04-27 11:55:59 -04001532#ifdef CONFIG_X86_64
1533 /*
1534 * We need to mask out the high 32 bits of RIP if not in 64-bit
1535 * mode, but just finding out that we are in 64-bit mode is
1536 * quite expensive. Only do it if there was a carry.
1537 */
1538 if (unlikely(((rip ^ orig_rip) >> 31) == 3) && !is_64_bit_mode(vcpu))
1539 rip = (u32)rip;
1540#endif
Sean Christopherson1957aa62019-08-27 14:40:39 -07001541 kvm_rip_write(vcpu, rip);
1542 } else {
1543 if (!kvm_emulate_instruction(vcpu, EMULTYPE_SKIP))
1544 return 0;
1545 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001546
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001547rip_updated:
Glauber Costa2809f5d2009-05-12 16:21:05 -04001548 /* skipping an emulated instruction also counts */
1549 vmx_set_interrupt_shadow(vcpu, 0);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02001550
Sean Christopherson60fc3d02019-08-27 14:40:38 -07001551 return 1;
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02001552}
1553
Vitaly Kuznetsov7a35e512020-06-05 13:59:05 +02001554/*
Oliver Upton5ef8acb2020-02-07 02:36:07 -08001555 * Recognizes a pending MTF VM-exit and records the nested state for later
1556 * delivery.
1557 */
1558static void vmx_update_emulated_instruction(struct kvm_vcpu *vcpu)
1559{
1560 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1561 struct vcpu_vmx *vmx = to_vmx(vcpu);
1562
1563 if (!is_guest_mode(vcpu))
1564 return;
1565
1566 /*
1567 * Per the SDM, MTF takes priority over debug-trap exceptions besides
1568 * T-bit traps. As instruction emulation is completed (i.e. at the
1569 * instruction boundary), any #DB exception pending delivery must be a
1570 * debug-trap. Record the pending MTF state to be delivered in
1571 * vmx_check_nested_events().
1572 */
1573 if (nested_cpu_has_mtf(vmcs12) &&
1574 (!vcpu->arch.exception.pending ||
1575 vcpu->arch.exception.nr == DB_VECTOR))
1576 vmx->nested.mtf_pending = true;
1577 else
1578 vmx->nested.mtf_pending = false;
1579}
1580
1581static int vmx_skip_emulated_instruction(struct kvm_vcpu *vcpu)
1582{
1583 vmx_update_emulated_instruction(vcpu);
1584 return skip_emulated_instruction(vcpu);
1585}
1586
Wanpeng Licaa057a2018-03-12 04:53:03 -07001587static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
1588{
1589 /*
1590 * Ensure that we clear the HLT state in the VMCS. We don't need to
1591 * explicitly skip the instruction because if the HLT state is set,
1592 * then the instruction is already executing and RIP has already been
1593 * advanced.
1594 */
1595 if (kvm_hlt_in_guest(vcpu->kvm) &&
1596 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
1597 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
1598}
1599
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001600static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02001601{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001602 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001603 unsigned nr = vcpu->arch.exception.nr;
1604 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001605 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001606 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001607
Jim Mattsonda998b42018-10-16 14:29:22 -07001608 kvm_deliver_exception_payload(vcpu);
1609
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001610 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001611 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001612 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
1613 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001614
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001615 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05001616 int inc_eip = 0;
1617 if (kvm_exception_is_soft(nr))
1618 inc_eip = vcpu->arch.event_exit_inst_len;
Sean Christopherson9497e1f2019-08-27 14:40:36 -07001619 kvm_inject_realmode_interrupt(vcpu, nr, inc_eip);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001620 return;
1621 }
1622
Sean Christophersonadd5ff72018-03-23 09:34:00 -07001623 WARN_ON_ONCE(vmx->emulation_required);
1624
Gleb Natapov66fd3f72009-05-11 13:35:50 +03001625 if (kvm_exception_is_soft(nr)) {
1626 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
1627 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001628 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
1629 } else
1630 intr_info |= INTR_TYPE_HARD_EXCEPTION;
1631
1632 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Wanpeng Licaa057a2018-03-12 04:53:03 -07001633
1634 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02001635}
1636
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001637static void vmx_setup_uret_msr(struct vcpu_vmx *vmx, unsigned int msr,
1638 bool load_into_hardware)
Eddie Donga75beee2007-05-17 18:55:15 +03001639{
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001640 struct vmx_uret_msr *uret_msr;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001641
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001642 uret_msr = vmx_find_uret_msr(vmx, msr);
1643 if (!uret_msr)
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001644 return;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001645
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001646 uret_msr->load_into_hardware = load_into_hardware;
Eddie Donga75beee2007-05-17 18:55:15 +03001647}
1648
1649/*
Sean Christopherson400dd542021-07-13 09:33:11 -07001650 * Configuring user return MSRs to automatically save, load, and restore MSRs
1651 * that need to be shoved into hardware when running the guest. Note, omitting
1652 * an MSR here does _NOT_ mean it's not emulated, only that it will not be
1653 * loaded into hardware when running the guest.
Avi Kivitye38aea32007-04-19 13:22:48 +03001654 */
Sean Christopherson400dd542021-07-13 09:33:11 -07001655static void vmx_setup_uret_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03001656{
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001657#ifdef CONFIG_X86_64
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001658 bool load_syscall_msrs;
1659
Jim Mattson84c8c5b2018-12-05 15:29:01 -08001660 /*
1661 * The SYSCALL MSRs are only needed on long mode guests, and only
1662 * when EFER.SCE is set.
1663 */
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001664 load_syscall_msrs = is_long_mode(&vmx->vcpu) &&
1665 (vmx->vcpu.arch.efer & EFER_SCE);
1666
1667 vmx_setup_uret_msr(vmx, MSR_STAR, load_syscall_msrs);
1668 vmx_setup_uret_msr(vmx, MSR_LSTAR, load_syscall_msrs);
1669 vmx_setup_uret_msr(vmx, MSR_SYSCALL_MASK, load_syscall_msrs);
Eddie Donga75beee2007-05-17 18:55:15 +03001670#endif
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001671 vmx_setup_uret_msr(vmx, MSR_EFER, update_transition_efer(vmx));
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001672
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001673 vmx_setup_uret_msr(vmx, MSR_TSC_AUX,
1674 guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP) ||
1675 guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDPID));
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001676
Sean Christopherson5e17c622021-05-04 10:17:30 -07001677 /*
1678 * hle=0, rtm=0, tsx_ctrl=1 can be found with some combinations of new
1679 * kernel and old userspace. If those guests run on a tsx=off host, do
1680 * allow guests to use TSX_CTRL, but don't change the value in hardware
1681 * so that TSX remains always disabled.
1682 */
1683 vmx_setup_uret_msr(vmx, MSR_IA32_TSX_CTRL, boot_cpu_has(X86_FEATURE_RTM));
Avi Kivity58972972009-02-24 22:26:47 +02001684
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001685 /*
1686 * The set of MSRs to load may have changed, reload MSRs before the
1687 * next VM-Enter.
1688 */
1689 vmx->guest_uret_msrs_loaded = false;
Avi Kivitye38aea32007-04-19 13:22:48 +03001690}
1691
Ilias Stamatis307a94c2021-05-26 19:44:13 +01001692u64 vmx_get_l2_tsc_offset(struct kvm_vcpu *vcpu)
1693{
1694 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1695
1696 if (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETTING))
1697 return vmcs12->tsc_offset;
1698
1699 return 0;
1700}
1701
1702u64 vmx_get_l2_tsc_multiplier(struct kvm_vcpu *vcpu)
1703{
1704 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1705
1706 if (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETTING) &&
1707 nested_cpu_has2(vmcs12, SECONDARY_EXEC_TSC_SCALING))
1708 return vmcs12->tsc_multiplier;
1709
1710 return kvm_default_tsc_scaling_ratio;
1711}
1712
Ilias Stamatisedcfe542021-05-26 19:44:15 +01001713static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001714{
Ilias Stamatisedcfe542021-05-26 19:44:15 +01001715 vmcs_write64(TSC_OFFSET, offset);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001716}
1717
Ilias Stamatis1ab92872021-06-07 11:54:38 +01001718static void vmx_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 multiplier)
1719{
1720 vmcs_write64(TSC_MULTIPLIER, multiplier);
1721}
1722
Nadav Har'El801d3422011-05-25 23:02:23 +03001723/*
1724 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
1725 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
1726 * all guests if the "nested" module option is off, and can also be disabled
1727 * for a single guest by disabling its VMX cpuid bit.
1728 */
Sean Christopherson7c97fcb2018-12-03 13:53:17 -08001729bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
Nadav Har'El801d3422011-05-25 23:02:23 +03001730{
Radim Krčmářd6321d42017-08-05 00:12:49 +02001731 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03001732}
1733
Haozhong Zhang37e4c992016-06-22 14:59:55 +08001734static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
1735 uint64_t val)
1736{
1737 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
1738
1739 return !(val & ~valid_bits);
1740}
1741
Tom Lendacky801e4592018-02-21 13:39:51 -06001742static int vmx_get_msr_feature(struct kvm_msr_entry *msr)
1743{
Paolo Bonzini13893092018-02-26 13:40:09 +01001744 switch (msr->index) {
1745 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1746 if (!nested)
1747 return 1;
1748 return vmx_get_vmx_msr(&vmcs_config.nested, msr->index, &msr->data);
Like Xu27461da32020-05-29 15:43:45 +08001749 case MSR_IA32_PERF_CAPABILITIES:
1750 msr->data = vmx_get_perf_capabilities();
1751 return 0;
Paolo Bonzini13893092018-02-26 13:40:09 +01001752 default:
Peter Xu12bc2132020-06-22 18:04:42 -04001753 return KVM_MSR_RET_INVALID;
Paolo Bonzini13893092018-02-26 13:40:09 +01001754 }
Tom Lendacky801e4592018-02-21 13:39:51 -06001755}
1756
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001757/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001758 * Reads an msr value (of 'msr_index') into 'pdata'.
1759 * Returns 0 on success, non-0 otherwise.
1760 * Assumes vcpu_load() was already called.
1761 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001762static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001763{
Borislav Petkova6cb0992017-12-20 12:50:28 +01001764 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001765 struct vmx_uret_msr *msr;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001766 u32 index;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001767
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001768 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001769#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001770 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001771 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001772 break;
1773 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001774 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001775 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001776 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001777 msr_info->data = vmx_read_guest_kernel_gs_base(vmx);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001778 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03001779#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001780 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001781 return kvm_get_msr_common(vcpu, msr_info);
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05001782 case MSR_IA32_TSX_CTRL:
1783 if (!msr_info->host_initiated &&
1784 !(vcpu->arch.arch_capabilities & ARCH_CAP_TSX_CTRL_MSR))
1785 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001786 goto find_uret_msr;
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001787 case MSR_IA32_UMWAIT_CONTROL:
1788 if (!msr_info->host_initiated && !vmx_has_waitpkg(vmx))
1789 return 1;
1790
1791 msr_info->data = vmx->msr_ia32_umwait_control;
1792 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001793 case MSR_IA32_SPEC_CTRL:
1794 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05001795 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001796 return 1;
1797
1798 msr_info->data = to_vmx(vcpu)->spec_ctrl;
1799 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001800 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001801 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001802 break;
1803 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001804 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001805 break;
1806 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001807 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001808 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001809 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08001810 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02001811 (!msr_info->host_initiated &&
1812 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01001813 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001814 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001815 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001816 case MSR_IA32_MCG_EXT_CTL:
1817 if (!msr_info->host_initiated &&
Borislav Petkova6cb0992017-12-20 12:50:28 +01001818 !(vmx->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001819 FEAT_CTL_LMCE_ENABLED))
Jan Kiszkacae50132014-01-04 18:47:22 +01001820 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001821 msr_info->data = vcpu->arch.mcg_ext_ctl;
1822 break;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001823 case MSR_IA32_FEAT_CTL:
Borislav Petkova6cb0992017-12-20 12:50:28 +01001824 msr_info->data = vmx->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01001825 break;
Sean Christopherson8f102442021-04-12 16:21:40 +12001826 case MSR_IA32_SGXLEPUBKEYHASH0 ... MSR_IA32_SGXLEPUBKEYHASH3:
1827 if (!msr_info->host_initiated &&
1828 !guest_cpuid_has(vcpu, X86_FEATURE_SGX_LC))
1829 return 1;
1830 msr_info->data = to_vmx(vcpu)->msr_ia32_sgxlepubkeyhash
1831 [msr_info->index - MSR_IA32_SGXLEPUBKEYHASH0];
1832 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01001833 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1834 if (!nested_vmx_allowed(vcpu))
1835 return 1;
Vitaly Kuznetsov31de3d22020-02-05 13:30:33 +01001836 if (vmx_get_vmx_msr(&vmx->nested.msrs, msr_info->index,
1837 &msr_info->data))
1838 return 1;
1839 /*
1840 * Enlightened VMCS v1 doesn't have certain fields, but buggy
1841 * Hyper-V versions are still trying to use corresponding
1842 * features when they are exposed. Filter out the essential
1843 * minimum.
1844 */
1845 if (!msr_info->host_initiated &&
1846 vmx->nested.enlightened_vmcs_enabled)
1847 nested_evmcs_filter_control_msr(msr_info->index,
1848 &msr_info->data);
1849 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001850 case MSR_IA32_RTIT_CTL:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001851 if (!vmx_pt_mode_is_host_guest())
Chao Pengbf8c55d2018-10-24 16:05:14 +08001852 return 1;
1853 msr_info->data = vmx->pt_desc.guest.ctl;
1854 break;
1855 case MSR_IA32_RTIT_STATUS:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001856 if (!vmx_pt_mode_is_host_guest())
Chao Pengbf8c55d2018-10-24 16:05:14 +08001857 return 1;
1858 msr_info->data = vmx->pt_desc.guest.status;
1859 break;
1860 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001861 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001862 !intel_pt_validate_cap(vmx->pt_desc.caps,
1863 PT_CAP_cr3_filtering))
1864 return 1;
1865 msr_info->data = vmx->pt_desc.guest.cr3_match;
1866 break;
1867 case MSR_IA32_RTIT_OUTPUT_BASE:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001868 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001869 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1870 PT_CAP_topa_output) &&
1871 !intel_pt_validate_cap(vmx->pt_desc.caps,
1872 PT_CAP_single_range_output)))
1873 return 1;
1874 msr_info->data = vmx->pt_desc.guest.output_base;
1875 break;
1876 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001877 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001878 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1879 PT_CAP_topa_output) &&
1880 !intel_pt_validate_cap(vmx->pt_desc.caps,
1881 PT_CAP_single_range_output)))
1882 return 1;
1883 msr_info->data = vmx->pt_desc.guest.output_mask;
1884 break;
1885 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
1886 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
Sean Christopherson2ef76192020-03-02 15:56:22 -08001887 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001888 (index >= 2 * intel_pt_validate_cap(vmx->pt_desc.caps,
1889 PT_CAP_num_address_ranges)))
1890 return 1;
1891 if (index % 2)
1892 msr_info->data = vmx->pt_desc.guest.addr_b[index / 2];
1893 else
1894 msr_info->data = vmx->pt_desc.guest.addr_a[index / 2];
1895 break;
Like Xud8550662021-01-08 09:36:55 +08001896 case MSR_IA32_DEBUGCTLMSR:
1897 msr_info->data = vmcs_read64(GUEST_IA32_DEBUGCTL);
1898 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001899 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001900 find_uret_msr:
Sean Christophersond85a8032020-09-23 11:04:06 -07001901 msr = vmx_find_uret_msr(vmx, msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001902 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001903 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001904 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001905 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001906 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001907 }
1908
Avi Kivity6aa8b732006-12-10 02:21:36 -08001909 return 0;
1910}
1911
Sean Christopherson24085002020-04-28 16:10:24 -07001912static u64 nested_vmx_truncate_sysenter_addr(struct kvm_vcpu *vcpu,
1913 u64 data)
1914{
1915#ifdef CONFIG_X86_64
1916 if (!guest_cpuid_has(vcpu, X86_FEATURE_LM))
1917 return (u32)data;
1918#endif
1919 return (unsigned long)data;
1920}
1921
Like Xuc6462362021-02-01 13:10:31 +08001922static u64 vcpu_supported_debugctl(struct kvm_vcpu *vcpu)
1923{
1924 u64 debugctl = vmx_supported_debugctl();
1925
1926 if (!intel_pmu_lbr_is_enabled(vcpu))
Like Xue6209a32021-02-01 13:10:36 +08001927 debugctl &= ~DEBUGCTLMSR_LBR_MASK;
Like Xuc6462362021-02-01 13:10:31 +08001928
Paolo Bonzini76ea4382021-05-06 06:30:04 -04001929 if (!guest_cpuid_has(vcpu, X86_FEATURE_BUS_LOCK_DETECT))
1930 debugctl &= ~DEBUGCTLMSR_BUS_LOCK_DETECT;
1931
Like Xuc6462362021-02-01 13:10:31 +08001932 return debugctl;
1933}
1934
Avi Kivity6aa8b732006-12-10 02:21:36 -08001935/*
Miaohe Lin311497e2019-12-11 14:26:25 +08001936 * Writes msr value into the appropriate "register".
Avi Kivity6aa8b732006-12-10 02:21:36 -08001937 * Returns 0 on success, non-0 otherwise.
1938 * Assumes vcpu_load() was already called.
1939 */
Will Auld8fe8ab42012-11-29 12:42:12 -08001940static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001941{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001942 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001943 struct vmx_uret_msr *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03001944 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08001945 u32 msr_index = msr_info->index;
1946 u64 data = msr_info->data;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001947 u32 index;
Eddie Dong2cc51562007-05-21 07:28:09 +03001948
Avi Kivity6aa8b732006-12-10 02:21:36 -08001949 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001950 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08001951 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03001952 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001953#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001954 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001955 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001956 vmcs_writel(GUEST_FS_BASE, data);
1957 break;
1958 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001959 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001960 vmcs_writel(GUEST_GS_BASE, data);
1961 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001962 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001963 vmx_write_guest_kernel_gs_base(vmx, data);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001964 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001965#endif
1966 case MSR_IA32_SYSENTER_CS:
Sean Christophersonde70d272019-05-07 09:06:36 -07001967 if (is_guest_mode(vcpu))
1968 get_vmcs12(vcpu)->guest_sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001969 vmcs_write32(GUEST_SYSENTER_CS, data);
1970 break;
1971 case MSR_IA32_SYSENTER_EIP:
Sean Christopherson24085002020-04-28 16:10:24 -07001972 if (is_guest_mode(vcpu)) {
1973 data = nested_vmx_truncate_sysenter_addr(vcpu, data);
Sean Christophersonde70d272019-05-07 09:06:36 -07001974 get_vmcs12(vcpu)->guest_sysenter_eip = data;
Sean Christopherson24085002020-04-28 16:10:24 -07001975 }
Avi Kivityf5b42c32007-03-06 12:05:53 +02001976 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001977 break;
1978 case MSR_IA32_SYSENTER_ESP:
Sean Christopherson24085002020-04-28 16:10:24 -07001979 if (is_guest_mode(vcpu)) {
1980 data = nested_vmx_truncate_sysenter_addr(vcpu, data);
Sean Christophersonde70d272019-05-07 09:06:36 -07001981 get_vmcs12(vcpu)->guest_sysenter_esp = data;
Sean Christopherson24085002020-04-28 16:10:24 -07001982 }
Avi Kivityf5b42c32007-03-06 12:05:53 +02001983 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001984 break;
Like Xud8550662021-01-08 09:36:55 +08001985 case MSR_IA32_DEBUGCTLMSR: {
Like Xuc6462362021-02-01 13:10:31 +08001986 u64 invalid = data & ~vcpu_supported_debugctl(vcpu);
Like Xud8550662021-01-08 09:36:55 +08001987 if (invalid & (DEBUGCTLMSR_BTF|DEBUGCTLMSR_LBR)) {
1988 if (report_ignored_msrs)
1989 vcpu_unimpl(vcpu, "%s: BTF|LBR in IA32_DEBUGCTLMSR 0x%llx, nop\n",
1990 __func__, data);
1991 data &= ~(DEBUGCTLMSR_BTF|DEBUGCTLMSR_LBR);
1992 invalid &= ~(DEBUGCTLMSR_BTF|DEBUGCTLMSR_LBR);
1993 }
1994
1995 if (invalid)
1996 return 1;
1997
Sean Christopherson699a1ac2019-05-07 09:06:37 -07001998 if (is_guest_mode(vcpu) && get_vmcs12(vcpu)->vm_exit_controls &
1999 VM_EXIT_SAVE_DEBUG_CONTROLS)
2000 get_vmcs12(vcpu)->guest_ia32_debugctl = data;
2001
Like Xud8550662021-01-08 09:36:55 +08002002 vmcs_write64(GUEST_IA32_DEBUGCTL, data);
Like Xu8e129112021-02-01 13:10:33 +08002003 if (intel_pmu_lbr_is_enabled(vcpu) && !to_vmx(vcpu)->lbr_desc.event &&
2004 (data & DEBUGCTLMSR_LBR))
2005 intel_pmu_create_guest_lbr_event(vcpu);
Like Xud8550662021-01-08 09:36:55 +08002006 return 0;
2007 }
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002008 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08002009 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02002010 (!msr_info->host_initiated &&
2011 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002012 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08002013 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07002014 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002015 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08002016 vmcs_write64(GUEST_BNDCFGS, data);
2017 break;
Tao Xu6e3ba4a2019-07-16 14:55:50 +08002018 case MSR_IA32_UMWAIT_CONTROL:
2019 if (!msr_info->host_initiated && !vmx_has_waitpkg(vmx))
2020 return 1;
2021
2022 /* The reserved bit 1 and non-32 bit [63:32] should be zero */
2023 if (data & (BIT_ULL(1) | GENMASK_ULL(63, 32)))
2024 return 1;
2025
2026 vmx->msr_ia32_umwait_control = data;
2027 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002028 case MSR_IA32_SPEC_CTRL:
2029 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002030 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002031 return 1;
2032
Maxim Levitsky841c2be2020-07-08 14:57:31 +03002033 if (kvm_spec_ctrl_test_value(data))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002034 return 1;
2035
2036 vmx->spec_ctrl = data;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002037 if (!data)
2038 break;
2039
2040 /*
2041 * For non-nested:
2042 * When it's written (to non-zero) for the first time, pass
2043 * it through.
2044 *
2045 * For nested:
2046 * The handling of the MSR bitmap for L2 guests is done in
Miaohe Lin4d516fe2019-12-11 14:26:21 +08002047 * nested_vmx_prepare_msr_bitmap. We should not touch the
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002048 * vmcs02.msr_bitmap here since it gets completely overwritten
2049 * in the merging. We update the vmcs01 here for L1 as well
2050 * since it will end up touching the MSR anyway now.
2051 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002052 vmx_disable_intercept_for_msr(vcpu,
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002053 MSR_IA32_SPEC_CTRL,
2054 MSR_TYPE_RW);
2055 break;
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05002056 case MSR_IA32_TSX_CTRL:
2057 if (!msr_info->host_initiated &&
2058 !(vcpu->arch.arch_capabilities & ARCH_CAP_TSX_CTRL_MSR))
2059 return 1;
2060 if (data & ~(TSX_CTRL_RTM_DISABLE | TSX_CTRL_CPUID_CLEAR))
2061 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002062 goto find_uret_msr;
Ashok Raj15d45072018-02-01 22:59:43 +01002063 case MSR_IA32_PRED_CMD:
2064 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002065 !guest_has_pred_cmd_msr(vcpu))
Ashok Raj15d45072018-02-01 22:59:43 +01002066 return 1;
2067
2068 if (data & ~PRED_CMD_IBPB)
2069 return 1;
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002070 if (!boot_cpu_has(X86_FEATURE_IBPB))
Paolo Bonzini6441fa62020-01-20 16:33:06 +01002071 return 1;
Ashok Raj15d45072018-02-01 22:59:43 +01002072 if (!data)
2073 break;
2074
2075 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
2076
2077 /*
2078 * For non-nested:
2079 * When it's written (to non-zero) for the first time, pass
2080 * it through.
2081 *
2082 * For nested:
2083 * The handling of the MSR bitmap for L2 guests is done in
Miaohe Lin4d516fe2019-12-11 14:26:21 +08002084 * nested_vmx_prepare_msr_bitmap. We should not touch the
Ashok Raj15d45072018-02-01 22:59:43 +01002085 * vmcs02.msr_bitmap here since it gets completely overwritten
2086 * in the merging.
2087 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002088 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_PRED_CMD, MSR_TYPE_W);
Ashok Raj15d45072018-02-01 22:59:43 +01002089 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002090 case MSR_IA32_CR_PAT:
Sean Christophersond28f4292019-05-07 09:06:27 -07002091 if (!kvm_pat_valid(data))
2092 return 1;
2093
Sean Christopherson142e4be2019-05-07 09:06:35 -07002094 if (is_guest_mode(vcpu) &&
2095 get_vmcs12(vcpu)->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
2096 get_vmcs12(vcpu)->guest_ia32_pat = data;
2097
Sheng Yang468d4722008-10-09 16:01:55 +08002098 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2099 vmcs_write64(GUEST_IA32_PAT, data);
2100 vcpu->arch.pat = data;
2101 break;
2102 }
Will Auld8fe8ab42012-11-29 12:42:12 -08002103 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002104 break;
Will Auldba904632012-11-29 12:42:50 -08002105 case MSR_IA32_TSC_ADJUST:
2106 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002107 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002108 case MSR_IA32_MCG_EXT_CTL:
2109 if ((!msr_info->host_initiated &&
2110 !(to_vmx(vcpu)->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002111 FEAT_CTL_LMCE_ENABLED)) ||
Ashok Rajc45dcc72016-06-22 14:59:56 +08002112 (data & ~MCG_EXT_CTL_LMCE_EN))
2113 return 1;
2114 vcpu->arch.mcg_ext_ctl = data;
2115 break;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002116 case MSR_IA32_FEAT_CTL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08002117 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08002118 (to_vmx(vcpu)->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002119 FEAT_CTL_LOCKED && !msr_info->host_initiated))
Jan Kiszkacae50132014-01-04 18:47:22 +01002120 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08002121 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01002122 if (msr_info->host_initiated && data == 0)
2123 vmx_leave_nested(vcpu);
Sean Christopherson72add912021-04-12 16:21:42 +12002124
2125 /* SGX may be enabled/disabled by guest's firmware */
2126 vmx_write_encls_bitmap(vcpu, NULL);
Jan Kiszkacae50132014-01-04 18:47:22 +01002127 break;
Sean Christopherson8f102442021-04-12 16:21:40 +12002128 case MSR_IA32_SGXLEPUBKEYHASH0 ... MSR_IA32_SGXLEPUBKEYHASH3:
2129 /*
2130 * On real hardware, the LE hash MSRs are writable before
2131 * the firmware sets bit 0 in MSR 0x7a ("activating" SGX),
2132 * at which point SGX related bits in IA32_FEATURE_CONTROL
2133 * become writable.
2134 *
2135 * KVM does not emulate SGX activation for simplicity, so
2136 * allow writes to the LE hash MSRs if IA32_FEATURE_CONTROL
2137 * is unlocked. This is technically not architectural
2138 * behavior, but it's close enough.
2139 */
2140 if (!msr_info->host_initiated &&
2141 (!guest_cpuid_has(vcpu, X86_FEATURE_SGX_LC) ||
2142 ((vmx->msr_ia32_feature_control & FEAT_CTL_LOCKED) &&
2143 !(vmx->msr_ia32_feature_control & FEAT_CTL_SGX_LC_ENABLED))))
2144 return 1;
2145 vmx->msr_ia32_sgxlepubkeyhash
2146 [msr_index - MSR_IA32_SGXLEPUBKEYHASH0] = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01002147 break;
2148 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08002149 if (!msr_info->host_initiated)
2150 return 1; /* they are read-only */
2151 if (!nested_vmx_allowed(vcpu))
2152 return 1;
2153 return vmx_set_vmx_msr(vcpu, msr_index, data);
Chao Pengbf8c55d2018-10-24 16:05:14 +08002154 case MSR_IA32_RTIT_CTL:
Sean Christopherson2ef76192020-03-02 15:56:22 -08002155 if (!vmx_pt_mode_is_host_guest() ||
Luwei Kangee85dec2018-10-24 16:05:16 +08002156 vmx_rtit_ctl_check(vcpu, data) ||
2157 vmx->nested.vmxon)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002158 return 1;
2159 vmcs_write64(GUEST_IA32_RTIT_CTL, data);
2160 vmx->pt_desc.guest.ctl = data;
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002161 pt_update_intercept_for_msr(vcpu);
Chao Pengbf8c55d2018-10-24 16:05:14 +08002162 break;
2163 case MSR_IA32_RTIT_STATUS:
Sean Christophersone348ac72019-12-10 15:24:33 -08002164 if (!pt_can_write_msr(vmx))
2165 return 1;
2166 if (data & MSR_IA32_RTIT_STATUS_MASK)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002167 return 1;
2168 vmx->pt_desc.guest.status = data;
2169 break;
2170 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christophersone348ac72019-12-10 15:24:33 -08002171 if (!pt_can_write_msr(vmx))
2172 return 1;
2173 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2174 PT_CAP_cr3_filtering))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002175 return 1;
2176 vmx->pt_desc.guest.cr3_match = data;
2177 break;
2178 case MSR_IA32_RTIT_OUTPUT_BASE:
Sean Christophersone348ac72019-12-10 15:24:33 -08002179 if (!pt_can_write_msr(vmx))
2180 return 1;
2181 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2182 PT_CAP_topa_output) &&
2183 !intel_pt_validate_cap(vmx->pt_desc.caps,
2184 PT_CAP_single_range_output))
2185 return 1;
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07002186 if (!pt_output_base_valid(vcpu, data))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002187 return 1;
2188 vmx->pt_desc.guest.output_base = data;
2189 break;
2190 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christophersone348ac72019-12-10 15:24:33 -08002191 if (!pt_can_write_msr(vmx))
2192 return 1;
2193 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2194 PT_CAP_topa_output) &&
2195 !intel_pt_validate_cap(vmx->pt_desc.caps,
2196 PT_CAP_single_range_output))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002197 return 1;
2198 vmx->pt_desc.guest.output_mask = data;
2199 break;
2200 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christophersone348ac72019-12-10 15:24:33 -08002201 if (!pt_can_write_msr(vmx))
2202 return 1;
Chao Pengbf8c55d2018-10-24 16:05:14 +08002203 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
Sean Christophersone348ac72019-12-10 15:24:33 -08002204 if (index >= 2 * intel_pt_validate_cap(vmx->pt_desc.caps,
2205 PT_CAP_num_address_ranges))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002206 return 1;
Sean Christophersonfe6ed362019-12-10 15:24:32 -08002207 if (is_noncanonical_address(data, vcpu))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002208 return 1;
2209 if (index % 2)
2210 vmx->pt_desc.guest.addr_b[index / 2] = data;
2211 else
2212 vmx->pt_desc.guest.addr_a[index / 2] = data;
2213 break;
Paolo Bonzini9c9520c2021-02-02 09:36:08 -05002214 case MSR_IA32_PERF_CAPABILITIES:
2215 if (data && !vcpu_to_pmu(vcpu)->version)
2216 return 1;
2217 if (data & PMU_CAP_LBR_FMT) {
2218 if ((data & PMU_CAP_LBR_FMT) !=
2219 (vmx_get_perf_capabilities() & PMU_CAP_LBR_FMT))
2220 return 1;
2221 if (!intel_pmu_lbr_is_compatible(vcpu))
2222 return 1;
2223 }
2224 ret = kvm_set_msr_common(vcpu, msr_info);
2225 break;
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05002226
Avi Kivity6aa8b732006-12-10 02:21:36 -08002227 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002228 find_uret_msr:
Sean Christophersond85a8032020-09-23 11:04:06 -07002229 msr = vmx_find_uret_msr(vmx, msr_index);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05002230 if (msr)
Sean Christopherson7bf662b2020-09-23 11:04:07 -07002231 ret = vmx_set_guest_uret_msr(vmx, msr, data);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05002232 else
2233 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002234 }
2235
Eddie Dong2cc51562007-05-21 07:28:09 +03002236 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002237}
2238
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002239static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002240{
Sean Christophersonf98c1e72020-05-01 21:32:30 -07002241 unsigned long guest_owned_bits;
2242
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002243 kvm_register_mark_available(vcpu, reg);
2244
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002245 switch (reg) {
2246 case VCPU_REGS_RSP:
2247 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
2248 break;
2249 case VCPU_REGS_RIP:
2250 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
2251 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002252 case VCPU_EXREG_PDPTR:
2253 if (enable_ept)
2254 ept_save_pdptrs(vcpu);
2255 break;
Sean Christophersonbd31fe42020-05-01 21:32:31 -07002256 case VCPU_EXREG_CR0:
2257 guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
2258
2259 vcpu->arch.cr0 &= ~guest_owned_bits;
2260 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & guest_owned_bits;
2261 break;
Sean Christopherson34059c22019-09-27 14:45:23 -07002262 case VCPU_EXREG_CR3:
Sean Christopherson81ca0e72021-07-13 09:33:03 -07002263 /*
2264 * When intercepting CR3 loads, e.g. for shadowing paging, KVM's
2265 * CR3 is loaded into hardware, not the guest's CR3.
2266 */
2267 if (!(exec_controls_get(to_vmx(vcpu)) & CPU_BASED_CR3_LOAD_EXITING))
Sean Christopherson34059c22019-09-27 14:45:23 -07002268 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2269 break;
Sean Christophersonf98c1e72020-05-01 21:32:30 -07002270 case VCPU_EXREG_CR4:
2271 guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
2272
2273 vcpu->arch.cr4 &= ~guest_owned_bits;
2274 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & guest_owned_bits;
2275 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002276 default:
Sean Christopherson67369272021-07-02 15:04:25 -07002277 KVM_BUG_ON(1, vcpu->kvm);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002278 break;
2279 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002280}
2281
Avi Kivity6aa8b732006-12-10 02:21:36 -08002282static __init int cpu_has_kvm_support(void)
2283{
Eduardo Habkost6210e372008-11-17 19:03:16 -02002284 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002285}
2286
2287static __init int vmx_disabled_by_bios(void)
2288{
Sean Christophersona4d0b2f2019-12-20 20:45:09 -08002289 return !boot_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
2290 !boot_cpu_has(X86_FEATURE_VMX);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002291}
2292
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002293static int kvm_cpu_vmxon(u64 vmxon_pointer)
Dongxiao Xu7725b892010-05-11 18:29:38 +08002294{
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002295 u64 msr;
2296
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002297 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03002298
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002299 asm_volatile_goto("1: vmxon %[vmxon_pointer]\n\t"
2300 _ASM_EXTABLE(1b, %l[fault])
2301 : : [vmxon_pointer] "m"(vmxon_pointer)
2302 : : fault);
2303 return 0;
2304
2305fault:
2306 WARN_ONCE(1, "VMXON faulted, MSR_IA32_FEAT_CTL (0x3a) = 0x%llx\n",
2307 rdmsrl_safe(MSR_IA32_FEAT_CTL, &msr) ? 0xdeadbeef : msr);
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002308 cr4_clear_bits(X86_CR4_VMXE);
2309
2310 return -EFAULT;
Dongxiao Xu7725b892010-05-11 18:29:38 +08002311}
2312
Radim Krčmář13a34e02014-08-28 15:13:03 +02002313static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002314{
2315 int cpu = raw_smp_processor_id();
2316 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002317 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002318
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002319 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02002320 return -EBUSY;
2321
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002322 /*
2323 * This can happen if we hot-added a CPU but failed to allocate
2324 * VP assist page for it.
2325 */
2326 if (static_branch_unlikely(&enable_evmcs) &&
2327 !hv_get_vp_assist_page(cpu))
2328 return -EFAULT;
2329
Sean Christopherson5ef940b2020-12-30 16:26:58 -08002330 intel_pt_handle_vmx(1);
2331
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002332 r = kvm_cpu_vmxon(phys_addr);
Sean Christopherson5ef940b2020-12-30 16:26:58 -08002333 if (r) {
2334 intel_pt_handle_vmx(0);
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002335 return r;
Sean Christopherson5ef940b2020-12-30 16:26:58 -08002336 }
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002337
David Hildenbrandfdf288b2017-08-24 20:51:29 +02002338 if (enable_ept)
2339 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02002340
2341 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002342}
2343
Nadav Har'Eld462b812011-05-24 15:26:10 +03002344static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03002345{
2346 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03002347 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03002348
Nadav Har'Eld462b812011-05-24 15:26:10 +03002349 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
2350 loaded_vmcss_on_cpu_link)
2351 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03002352}
2353
Radim Krčmář13a34e02014-08-28 15:13:03 +02002354static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002355{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002356 vmclear_local_loaded_vmcss();
Sean Christopherson6a289132020-12-30 16:26:59 -08002357
2358 if (cpu_vmxoff())
2359 kvm_spurious_fault();
Sean Christopherson5ef940b2020-12-30 16:26:58 -08002360
2361 intel_pt_handle_vmx(0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002362}
2363
Sean Christopherson7a57c092020-03-12 11:04:16 -07002364/*
2365 * There is no X86_FEATURE for SGX yet, but anyway we need to query CPUID
2366 * directly instead of going through cpu_has(), to ensure KVM is trapping
2367 * ENCLS whenever it's supported in hardware. It does not matter whether
2368 * the host OS supports or has enabled SGX.
2369 */
2370static bool cpu_has_sgx(void)
2371{
2372 return cpuid_eax(0) >= 0x12 && (cpuid_eax(0x12) & BIT(0));
2373}
2374
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002375static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04002376 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002377{
2378 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002379 u32 ctl = ctl_min | ctl_opt;
2380
2381 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2382
2383 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
2384 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
2385
2386 /* Ensure minimum (required) set of control bits are supported. */
2387 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002388 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002389
2390 *result = ctl;
2391 return 0;
2392}
2393
Sean Christopherson7caaa712018-12-03 13:53:01 -08002394static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf,
2395 struct vmx_capability *vmx_cap)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002396{
2397 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08002398 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002399 u32 _pin_based_exec_control = 0;
2400 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002401 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002402 u32 _vmexit_control = 0;
2403 u32 _vmentry_control = 0;
2404
Paolo Bonzini13893092018-02-26 13:40:09 +01002405 memset(vmcs_conf, 0, sizeof(*vmcs_conf));
Raghavendra K T10166742012-02-07 23:19:20 +05302406 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002407#ifdef CONFIG_X86_64
2408 CPU_BASED_CR8_LOAD_EXITING |
2409 CPU_BASED_CR8_STORE_EXITING |
2410#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002411 CPU_BASED_CR3_LOAD_EXITING |
2412 CPU_BASED_CR3_STORE_EXITING |
Quan Xu8eb73e2d2017-12-12 16:44:21 +08002413 CPU_BASED_UNCOND_IO_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002414 CPU_BASED_MOV_DR_EXITING |
Xiaoyao Li5e3d3942019-12-06 16:45:26 +08002415 CPU_BASED_USE_TSC_OFFSETTING |
Wanpeng Li4d5422c2018-03-12 04:53:02 -07002416 CPU_BASED_MWAIT_EXITING |
2417 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02002418 CPU_BASED_INVLPG_EXITING |
2419 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06002420
Sheng Yangf78e0e22007-10-29 09:40:42 +08002421 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08002422 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08002423 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002424 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
2425 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002426 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002427#ifdef CONFIG_X86_64
2428 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2429 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
2430 ~CPU_BASED_CR8_STORE_EXITING;
2431#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08002432 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002433 min2 = 0;
2434 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08002435 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08002436 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08002437 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002438 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002439 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002440 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Paolo Bonzini0367f202016-07-12 10:44:55 +02002441 SECONDARY_EXEC_DESC |
Sean Christopherson7f3603b2020-09-23 09:50:47 -07002442 SECONDARY_EXEC_ENABLE_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08002443 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002444 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03002445 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08002446 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08002447 SECONDARY_EXEC_XSAVES |
David Hildenbrand736fdf72017-08-24 20:51:37 +02002448 SECONDARY_EXEC_RDSEED_EXITING |
2449 SECONDARY_EXEC_RDRAND_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08002450 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04002451 SECONDARY_EXEC_TSC_SCALING |
Tao Xue69e72fa2019-07-16 14:55:49 +08002452 SECONDARY_EXEC_ENABLE_USR_WAIT_PAUSE |
Chao Pengf99e3da2018-10-24 16:05:10 +08002453 SECONDARY_EXEC_PT_USE_GPA |
2454 SECONDARY_EXEC_PT_CONCEAL_VMX |
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08002455 SECONDARY_EXEC_ENABLE_VMFUNC |
2456 SECONDARY_EXEC_BUS_LOCK_DETECTION;
Sean Christopherson7a57c092020-03-12 11:04:16 -07002457 if (cpu_has_sgx())
2458 opt2 |= SECONDARY_EXEC_ENCLS_EXITING;
Sheng Yangd56f5462008-04-25 10:13:16 +08002459 if (adjust_vmx_controls(min2, opt2,
2460 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002461 &_cpu_based_2nd_exec_control) < 0)
2462 return -EIO;
2463 }
2464#ifndef CONFIG_X86_64
2465 if (!(_cpu_based_2nd_exec_control &
2466 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
2467 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
2468#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08002469
2470 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2471 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08002472 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002473 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
2474 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08002475
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002476 rdmsr_safe(MSR_IA32_VMX_EPT_VPID_CAP,
Sean Christopherson7caaa712018-12-03 13:53:01 -08002477 &vmx_cap->ept, &vmx_cap->vpid);
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002478
Sheng Yangd56f5462008-04-25 10:13:16 +08002479 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03002480 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
2481 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03002482 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
2483 CPU_BASED_CR3_STORE_EXITING |
2484 CPU_BASED_INVLPG_EXITING);
Sean Christopherson7caaa712018-12-03 13:53:01 -08002485 } else if (vmx_cap->ept) {
2486 vmx_cap->ept = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002487 pr_warn_once("EPT CAP should not exist if not support "
2488 "1-setting enable EPT VM-execution control\n");
2489 }
2490 if (!(_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_VPID) &&
Sean Christopherson7caaa712018-12-03 13:53:01 -08002491 vmx_cap->vpid) {
2492 vmx_cap->vpid = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002493 pr_warn_once("VPID CAP should not exist if not support "
2494 "1-setting enable VPID VM-execution control\n");
Sheng Yangd56f5462008-04-25 10:13:16 +08002495 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002496
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002497 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002498#ifdef CONFIG_X86_64
2499 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
2500#endif
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002501 opt = VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL |
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002502 VM_EXIT_LOAD_IA32_PAT |
2503 VM_EXIT_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002504 VM_EXIT_CLEAR_BNDCFGS |
2505 VM_EXIT_PT_CONCEAL_PIP |
2506 VM_EXIT_CLEAR_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002507 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
2508 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002509 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002510
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01002511 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
2512 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
2513 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002514 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
2515 &_pin_based_exec_control) < 0)
2516 return -EIO;
2517
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02002518 if (cpu_has_broken_vmx_preemption_timer())
2519 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002520 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002521 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08002522 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
2523
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01002524 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002525 opt = VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL |
2526 VM_ENTRY_LOAD_IA32_PAT |
2527 VM_ENTRY_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002528 VM_ENTRY_LOAD_BNDCFGS |
2529 VM_ENTRY_PT_CONCEAL_PIP |
2530 VM_ENTRY_LOAD_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002531 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
2532 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002533 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002534
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002535 /*
2536 * Some cpus support VM_{ENTRY,EXIT}_IA32_PERF_GLOBAL_CTRL but they
2537 * can't be used due to an errata where VM Exit may incorrectly clear
2538 * IA32_PERF_GLOBAL_CTRL[34:32]. Workaround the errata by using the
2539 * MSR load mechanism to switch IA32_PERF_GLOBAL_CTRL.
2540 */
2541 if (boot_cpu_data.x86 == 0x6) {
2542 switch (boot_cpu_data.x86_model) {
2543 case 26: /* AAK155 */
2544 case 30: /* AAP115 */
2545 case 37: /* AAT100 */
2546 case 44: /* BC86,AAY89,BD102 */
2547 case 46: /* BA97 */
Sean Christopherson85ba2b12019-01-14 12:12:02 -08002548 _vmentry_control &= ~VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002549 _vmexit_control &= ~VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL;
2550 pr_warn_once("kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
2551 "does not work properly. Using workaround\n");
2552 break;
2553 default:
2554 break;
2555 }
2556 }
2557
2558
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002559 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002560
2561 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
2562 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002563 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002564
2565#ifdef CONFIG_X86_64
2566 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
2567 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03002568 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002569#endif
2570
2571 /* Require Write-Back (WB) memory type for VMCS accesses. */
2572 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002573 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002574
Yang, Sheng002c7f72007-07-31 14:23:01 +03002575 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02002576 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03002577 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002578
Liran Alon2307af12018-06-29 22:59:04 +03002579 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002580
Yang, Sheng002c7f72007-07-31 14:23:01 +03002581 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
2582 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002583 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002584 vmcs_conf->vmexit_ctrl = _vmexit_control;
2585 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002586
Vitaly Kuznetsov064eedf2020-10-14 16:33:46 +02002587#if IS_ENABLED(CONFIG_HYPERV)
2588 if (enlightened_vmcs)
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002589 evmcs_sanitize_exec_ctrls(vmcs_conf);
Vitaly Kuznetsov064eedf2020-10-14 16:33:46 +02002590#endif
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002591
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002592 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002593}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002594
Ben Gardon41836832019-02-11 11:02:52 -08002595struct vmcs *alloc_vmcs_cpu(bool shadow, int cpu, gfp_t flags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002596{
2597 int node = cpu_to_node(cpu);
2598 struct page *pages;
2599 struct vmcs *vmcs;
2600
Ben Gardon41836832019-02-11 11:02:52 -08002601 pages = __alloc_pages_node(node, flags, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002602 if (!pages)
2603 return NULL;
2604 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002605 memset(vmcs, 0, vmcs_config.size);
Liran Alon2307af12018-06-29 22:59:04 +03002606
2607 /* KVM supports Enlightened VMCS v1 only */
2608 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002609 vmcs->hdr.revision_id = KVM_EVMCS_VERSION;
Liran Alon2307af12018-06-29 22:59:04 +03002610 else
Liran Alon392b2f22018-06-23 02:35:01 +03002611 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002612
Liran Alon491a6032018-06-23 02:35:12 +03002613 if (shadow)
2614 vmcs->hdr.shadow_vmcs = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002615 return vmcs;
2616}
2617
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002618void free_vmcs(struct vmcs *vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002619{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002620 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002621}
2622
Nadav Har'Eld462b812011-05-24 15:26:10 +03002623/*
2624 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
2625 */
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002626void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Nadav Har'Eld462b812011-05-24 15:26:10 +03002627{
2628 if (!loaded_vmcs->vmcs)
2629 return;
2630 loaded_vmcs_clear(loaded_vmcs);
2631 free_vmcs(loaded_vmcs->vmcs);
2632 loaded_vmcs->vmcs = NULL;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002633 if (loaded_vmcs->msr_bitmap)
2634 free_page((unsigned long)loaded_vmcs->msr_bitmap);
Jim Mattson355f4fb2016-10-28 08:29:39 -07002635 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002636}
2637
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002638int alloc_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002639{
Liran Alon491a6032018-06-23 02:35:12 +03002640 loaded_vmcs->vmcs = alloc_vmcs(false);
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002641 if (!loaded_vmcs->vmcs)
2642 return -ENOMEM;
2643
Sean Christophersond260f9e2020-03-21 12:37:50 -07002644 vmcs_clear(loaded_vmcs->vmcs);
2645
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002646 loaded_vmcs->shadow_vmcs = NULL;
Sean Christopherson804939e2019-05-07 12:18:05 -07002647 loaded_vmcs->hv_timer_soft_disabled = false;
Sean Christophersond260f9e2020-03-21 12:37:50 -07002648 loaded_vmcs->cpu = -1;
2649 loaded_vmcs->launched = 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002650
2651 if (cpu_has_vmx_msr_bitmap()) {
Ben Gardon41836832019-02-11 11:02:52 -08002652 loaded_vmcs->msr_bitmap = (unsigned long *)
2653 __get_free_page(GFP_KERNEL_ACCOUNT);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002654 if (!loaded_vmcs->msr_bitmap)
2655 goto out_vmcs;
2656 memset(loaded_vmcs->msr_bitmap, 0xff, PAGE_SIZE);
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02002657
Arnd Bergmann1f008e12018-05-25 17:36:17 +02002658 if (IS_ENABLED(CONFIG_HYPERV) &&
2659 static_branch_unlikely(&enable_evmcs) &&
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02002660 (ms_hyperv.nested_features & HV_X64_NESTED_MSR_BITMAP)) {
2661 struct hv_enlightened_vmcs *evmcs =
2662 (struct hv_enlightened_vmcs *)loaded_vmcs->vmcs;
2663
2664 evmcs->hv_enlightenments_control.msr_bitmap = 1;
2665 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002666 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07002667
2668 memset(&loaded_vmcs->host_state, 0, sizeof(struct vmcs_host_state));
Sean Christopherson3af80fe2019-05-07 12:18:00 -07002669 memset(&loaded_vmcs->controls_shadow, 0,
2670 sizeof(struct vmcs_controls_shadow));
Sean Christophersond7ee0392018-07-23 12:32:47 -07002671
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002672 return 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002673
2674out_vmcs:
2675 free_loaded_vmcs(loaded_vmcs);
2676 return -ENOMEM;
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002677}
2678
Sam Ravnborg39959582007-06-01 00:47:13 -07002679static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002680{
2681 int cpu;
2682
Zachary Amsden3230bb42009-09-29 11:38:37 -10002683 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002684 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10002685 per_cpu(vmxarea, cpu) = NULL;
2686 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002687}
2688
Avi Kivity6aa8b732006-12-10 02:21:36 -08002689static __init int alloc_kvm_area(void)
2690{
2691 int cpu;
2692
Zachary Amsden3230bb42009-09-29 11:38:37 -10002693 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002694 struct vmcs *vmcs;
2695
Ben Gardon41836832019-02-11 11:02:52 -08002696 vmcs = alloc_vmcs_cpu(false, cpu, GFP_KERNEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002697 if (!vmcs) {
2698 free_kvm_area();
2699 return -ENOMEM;
2700 }
2701
Liran Alon2307af12018-06-29 22:59:04 +03002702 /*
2703 * When eVMCS is enabled, alloc_vmcs_cpu() sets
2704 * vmcs->revision_id to KVM_EVMCS_VERSION instead of
2705 * revision_id reported by MSR_IA32_VMX_BASIC.
2706 *
Linus Torvalds312a4662018-12-26 17:03:51 -08002707 * However, even though not explicitly documented by
Liran Alon2307af12018-06-29 22:59:04 +03002708 * TLFS, VMXArea passed as VMXON argument should
2709 * still be marked with revision_id reported by
2710 * physical CPU.
2711 */
2712 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002713 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002714
Avi Kivity6aa8b732006-12-10 02:21:36 -08002715 per_cpu(vmxarea, cpu) = vmcs;
2716 }
2717 return 0;
2718}
2719
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002720static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02002721 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002722{
Gleb Natapovd99e4152012-12-20 16:57:45 +02002723 if (!emulate_invalid_guest_state) {
2724 /*
2725 * CS and SS RPL should be equal during guest entry according
2726 * to VMX spec, but in reality it is not always so. Since vcpu
2727 * is in the middle of the transition from real mode to
2728 * protected mode it is safe to assume that RPL 0 is a good
2729 * default value.
2730 */
2731 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03002732 save->selector &= ~SEGMENT_RPL_MASK;
2733 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02002734 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002735 }
Sean Christopherson1dd7a4f2021-07-13 09:33:06 -07002736 __vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002737}
2738
2739static void enter_pmode(struct kvm_vcpu *vcpu)
2740{
2741 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002742 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002743
Gleb Natapovd99e4152012-12-20 16:57:45 +02002744 /*
Ingo Molnard9f6e122021-03-18 15:28:01 +01002745 * Update real mode segment cache. It may be not up-to-date if segment
Gleb Natapovd99e4152012-12-20 16:57:45 +02002746 * register was written while vcpu was in a guest mode.
2747 */
2748 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2749 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2750 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2751 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
2752 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2753 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
2754
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002755 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002756
Sean Christopherson1dd7a4f2021-07-13 09:33:06 -07002757 __vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002758
2759 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002760 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2761 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002762 vmcs_writel(GUEST_RFLAGS, flags);
2763
Rusty Russell66aee912007-07-17 23:34:16 +10002764 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
2765 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002766
Jason Baronb6a7cc32021-01-14 22:27:54 -05002767 vmx_update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002768
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002769 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2770 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2771 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2772 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2773 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
2774 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002775}
2776
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002777static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002778{
Mathias Krause772e0312012-08-30 01:30:19 +02002779 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02002780 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002781
Gleb Natapovd99e4152012-12-20 16:57:45 +02002782 var.dpl = 0x3;
2783 if (seg == VCPU_SREG_CS)
2784 var.type = 0x3;
2785
2786 if (!emulate_invalid_guest_state) {
2787 var.selector = var.base >> 4;
2788 var.base = var.base & 0xffff0;
2789 var.limit = 0xffff;
2790 var.g = 0;
2791 var.db = 0;
2792 var.present = 1;
2793 var.s = 1;
2794 var.l = 0;
2795 var.unusable = 0;
2796 var.type = 0x3;
2797 var.avl = 0;
2798 if (save->base & 0xf)
2799 printk_once(KERN_WARNING "kvm: segment base is not "
2800 "paragraph aligned when entering "
2801 "protected mode (seg=%d)", seg);
2802 }
2803
2804 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05002805 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02002806 vmcs_write32(sf->limit, var.limit);
2807 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002808}
2809
2810static void enter_rmode(struct kvm_vcpu *vcpu)
2811{
2812 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002813 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002814 struct kvm_vmx *kvm_vmx = to_kvm_vmx(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002815
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002816 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
2817 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2818 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2819 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2820 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02002821 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2822 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002823
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002824 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002825
Gleb Natapov776e58e2011-03-13 12:34:27 +02002826 /*
2827 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01002828 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02002829 */
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002830 if (!kvm_vmx->tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02002831 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
2832 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02002833
Avi Kivity2fb92db2011-04-27 19:42:18 +03002834 vmx_segment_cache_clear(vmx);
2835
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002836 vmcs_writel(GUEST_TR_BASE, kvm_vmx->tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002837 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002838 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2839
2840 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002841 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002842
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002843 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002844
2845 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10002846 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Jason Baronb6a7cc32021-01-14 22:27:54 -05002847 vmx_update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002848
Gleb Natapovd99e4152012-12-20 16:57:45 +02002849 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2850 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2851 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2852 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2853 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
2854 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002855}
2856
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002857int vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
Amit Shah401d10d2009-02-20 22:53:37 +05302858{
2859 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond85a8032020-09-23 11:04:06 -07002860 struct vmx_uret_msr *msr = vmx_find_uret_msr(vmx, MSR_EFER);
Avi Kivity26bb0982009-09-07 11:14:12 +03002861
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002862 /* Nothing to do if hardware doesn't support EFER. */
Avi Kivity26bb0982009-09-07 11:14:12 +03002863 if (!msr)
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002864 return 0;
Amit Shah401d10d2009-02-20 22:53:37 +05302865
Avi Kivityf6801df2010-01-21 15:31:50 +02002866 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05302867 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002868 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302869 msr->data = efer;
2870 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002871 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302872
2873 msr->data = efer & ~EFER_LME;
2874 }
Sean Christopherson400dd542021-07-13 09:33:11 -07002875 vmx_setup_uret_msrs(vmx);
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002876 return 0;
Amit Shah401d10d2009-02-20 22:53:37 +05302877}
2878
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002879#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002880
2881static void enter_lmode(struct kvm_vcpu *vcpu)
2882{
2883 u32 guest_tr_ar;
2884
Avi Kivity2fb92db2011-04-27 19:42:18 +03002885 vmx_segment_cache_clear(to_vmx(vcpu));
2886
Avi Kivity6aa8b732006-12-10 02:21:36 -08002887 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002888 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02002889 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
2890 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002891 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002892 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
2893 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002894 }
Avi Kivityda38f432010-07-06 11:30:49 +03002895 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002896}
2897
2898static void exit_lmode(struct kvm_vcpu *vcpu)
2899{
Gleb Natapov2961e8762013-11-25 15:37:13 +02002900 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03002901 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002902}
2903
2904#endif
2905
Sean Christopherson77809382020-03-20 14:28:18 -07002906static void vmx_flush_tlb_all(struct kvm_vcpu *vcpu)
Sean Christopherson5058b692020-03-20 14:28:14 -07002907{
2908 struct vcpu_vmx *vmx = to_vmx(vcpu);
2909
2910 /*
Sean Christopherson77809382020-03-20 14:28:18 -07002911 * INVEPT must be issued when EPT is enabled, irrespective of VPID, as
2912 * the CPU is not required to invalidate guest-physical mappings on
2913 * VM-Entry, even if VPID is disabled. Guest-physical mappings are
2914 * associated with the root EPT structure and not any particular VPID
2915 * (INVVPID also isn't required to invalidate guest-physical mappings).
Sean Christopherson5058b692020-03-20 14:28:14 -07002916 */
2917 if (enable_ept) {
2918 ept_sync_global();
2919 } else if (enable_vpid) {
2920 if (cpu_has_vmx_invvpid_global()) {
2921 vpid_sync_vcpu_global();
2922 } else {
2923 vpid_sync_vcpu_single(vmx->vpid);
2924 vpid_sync_vcpu_single(vmx->nested.vpid02);
2925 }
2926 }
2927}
2928
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002929static void vmx_flush_tlb_current(struct kvm_vcpu *vcpu)
2930{
Sean Christopherson2a40b902020-07-15 20:41:18 -07002931 struct kvm_mmu *mmu = vcpu->arch.mmu;
2932 u64 root_hpa = mmu->root_hpa;
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002933
2934 /* No flush required if the current context is invalid. */
2935 if (!VALID_PAGE(root_hpa))
2936 return;
2937
2938 if (enable_ept)
Sean Christopherson2a40b902020-07-15 20:41:18 -07002939 ept_sync_context(construct_eptp(vcpu, root_hpa,
2940 mmu->shadow_root_level));
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002941 else if (!is_guest_mode(vcpu))
2942 vpid_sync_context(to_vmx(vcpu)->vpid);
2943 else
2944 vpid_sync_context(nested_get_vpid02(vcpu));
2945}
2946
Junaid Shahidfaff8752018-06-29 13:10:05 -07002947static void vmx_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t addr)
2948{
Junaid Shahidfaff8752018-06-29 13:10:05 -07002949 /*
Sean Christophersonad104b52020-03-20 14:28:11 -07002950 * vpid_sync_vcpu_addr() is a nop if vmx->vpid==0, see the comment in
2951 * vmx_flush_tlb_guest() for an explanation of why this is ok.
Junaid Shahidfaff8752018-06-29 13:10:05 -07002952 */
Sean Christophersonad104b52020-03-20 14:28:11 -07002953 vpid_sync_vcpu_addr(to_vmx(vcpu)->vpid, addr);
Junaid Shahidfaff8752018-06-29 13:10:05 -07002954}
2955
Sean Christophersone64419d2020-03-20 14:28:10 -07002956static void vmx_flush_tlb_guest(struct kvm_vcpu *vcpu)
2957{
2958 /*
2959 * vpid_sync_context() is a nop if vmx->vpid==0, e.g. if enable_vpid==0
2960 * or a vpid couldn't be allocated for this vCPU. VM-Enter and VM-Exit
2961 * are required to flush GVA->{G,H}PA mappings from the TLB if vpid is
2962 * disabled (VM-Enter with vpid enabled and vpid==0 is disallowed),
2963 * i.e. no explicit INVVPID is necessary.
2964 */
2965 vpid_sync_context(to_vmx(vcpu)->vpid);
2966}
2967
Peter Shier43fea4e2020-08-20 16:05:45 -07002968void vmx_ept_load_pdptrs(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08002969{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002970 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
2971
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002972 if (!kvm_register_is_dirty(vcpu, VCPU_EXREG_PDPTR))
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002973 return;
2974
Paolo Bonzinibf03d4f2019-06-06 18:52:44 +02002975 if (is_pae_paging(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002976 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
2977 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
2978 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
2979 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08002980 }
2981}
2982
Sean Christopherson97b7ead2018-12-03 13:53:16 -08002983void ept_save_pdptrs(struct kvm_vcpu *vcpu)
Avi Kivity8f5d5492009-05-31 18:41:29 +03002984{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002985 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
2986
Sean Christopherson9932b492020-04-15 13:34:50 -07002987 if (WARN_ON_ONCE(!is_pae_paging(vcpu)))
2988 return;
2989
2990 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
2991 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
2992 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
2993 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002994
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002995 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002996}
2997
Sean Christopherson470750b2021-07-13 09:33:02 -07002998#define CR3_EXITING_BITS (CPU_BASED_CR3_LOAD_EXITING | \
2999 CPU_BASED_CR3_STORE_EXITING)
3000
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003001void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003002{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003003 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson32437c22021-07-13 09:33:05 -07003004 unsigned long hw_cr0, old_cr0_pg;
Sean Christopherson470750b2021-07-13 09:33:02 -07003005 u32 tmp;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003006
Sean Christopherson32437c22021-07-13 09:33:05 -07003007 old_cr0_pg = kvm_read_cr0_bits(vcpu, X86_CR0_PG);
3008
Sean Christopherson3de63472018-07-13 08:42:30 -07003009 hw_cr0 = (cr0 & ~KVM_VM_CR0_ALWAYS_OFF);
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003010 if (is_unrestricted_guest(vcpu))
Gleb Natapov50378782013-02-04 16:00:28 +02003011 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02003012 else {
Gleb Natapov50378782013-02-04 16:00:28 +02003013 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sean Christophersonee5a5582021-07-13 09:32:59 -07003014 if (!enable_ept)
3015 hw_cr0 |= X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08003016
Gleb Natapov218e7632013-01-21 15:36:45 +02003017 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
3018 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003019
Gleb Natapov218e7632013-01-21 15:36:45 +02003020 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
3021 enter_rmode(vcpu);
3022 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003023
Sean Christopherson32437c22021-07-13 09:33:05 -07003024 vmcs_writel(CR0_READ_SHADOW, cr0);
3025 vmcs_writel(GUEST_CR0, hw_cr0);
3026 vcpu->arch.cr0 = cr0;
3027 kvm_register_mark_available(vcpu, VCPU_EXREG_CR0);
3028
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003029#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02003030 if (vcpu->arch.efer & EFER_LME) {
Sean Christopherson32437c22021-07-13 09:33:05 -07003031 if (!old_cr0_pg && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003032 enter_lmode(vcpu);
Sean Christopherson32437c22021-07-13 09:33:05 -07003033 else if (old_cr0_pg && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003034 exit_lmode(vcpu);
3035 }
3036#endif
3037
Sean Christophersonc834fd72021-07-13 09:33:01 -07003038 if (enable_ept && !is_unrestricted_guest(vcpu)) {
Sean Christopherson470750b2021-07-13 09:33:02 -07003039 /*
3040 * Ensure KVM has an up-to-date snapshot of the guest's CR3. If
3041 * the below code _enables_ CR3 exiting, vmx_cache_reg() will
3042 * (correctly) stop reading vmcs.GUEST_CR3 because it thinks
3043 * KVM's CR3 is installed.
3044 */
Sean Christophersonc834fd72021-07-13 09:33:01 -07003045 if (!kvm_register_is_available(vcpu, VCPU_EXREG_CR3))
3046 vmx_cache_reg(vcpu, VCPU_EXREG_CR3);
Sean Christopherson470750b2021-07-13 09:33:02 -07003047
3048 /*
3049 * When running with EPT but not unrestricted guest, KVM must
3050 * intercept CR3 accesses when paging is _disabled_. This is
3051 * necessary because restricted guests can't actually run with
3052 * paging disabled, and so KVM stuffs its own CR3 in order to
3053 * run the guest when identity mapped page tables.
3054 *
3055 * Do _NOT_ check the old CR0.PG, e.g. to optimize away the
3056 * update, it may be stale with respect to CR3 interception,
3057 * e.g. after nested VM-Enter.
3058 *
3059 * Lastly, honor L1's desires, i.e. intercept CR3 loads and/or
3060 * stores to forward them to L1, even if KVM does not need to
3061 * intercept them to preserve its identity mapped page tables.
3062 */
Sean Christophersonc834fd72021-07-13 09:33:01 -07003063 if (!(cr0 & X86_CR0_PG)) {
Sean Christopherson470750b2021-07-13 09:33:02 -07003064 exec_controls_setbit(vmx, CR3_EXITING_BITS);
3065 } else if (!is_guest_mode(vcpu)) {
3066 exec_controls_clearbit(vmx, CR3_EXITING_BITS);
3067 } else {
3068 tmp = exec_controls_get(vmx);
3069 tmp &= ~CR3_EXITING_BITS;
3070 tmp |= get_vmcs12(vcpu)->cpu_based_vm_exec_control & CR3_EXITING_BITS;
3071 exec_controls_set(vmx, tmp);
3072 }
3073
Sean Christopherson32437c22021-07-13 09:33:05 -07003074 /* Note, vmx_set_cr4() consumes the new vcpu->arch.cr0. */
3075 if ((old_cr0_pg ^ cr0) & X86_CR0_PG)
Sean Christophersonc834fd72021-07-13 09:33:01 -07003076 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sean Christophersonc834fd72021-07-13 09:33:01 -07003077 }
Sheng Yang14394422008-04-28 12:24:45 +08003078
Gleb Natapov14168782013-01-21 15:36:49 +02003079 /* depends on vcpu->arch.cr0 to be set to a new value */
3080 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003081}
3082
Sean Christophersond468d942020-07-15 20:41:20 -07003083static int vmx_get_max_tdp_level(void)
Sean Christopherson0047fca2020-05-01 21:32:33 -07003084{
Sean Christophersond468d942020-07-15 20:41:20 -07003085 if (cpu_has_vmx_ept_5levels())
Sean Christopherson0047fca2020-05-01 21:32:33 -07003086 return 5;
3087 return 4;
3088}
3089
Sean Christophersone83bc092021-03-05 10:31:13 -08003090u64 construct_eptp(struct kvm_vcpu *vcpu, hpa_t root_hpa, int root_level)
Sheng Yang14394422008-04-28 12:24:45 +08003091{
Yu Zhang855feb62017-08-24 20:27:55 +08003092 u64 eptp = VMX_EPTP_MT_WB;
Sheng Yang14394422008-04-28 12:24:45 +08003093
Sean Christopherson2a40b902020-07-15 20:41:18 -07003094 eptp |= (root_level == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08003095
Peter Feiner995f00a2017-06-30 17:26:32 -07003096 if (enable_ept_ad_bits &&
3097 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02003098 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sean Christophersone83bc092021-03-05 10:31:13 -08003099 eptp |= root_hpa;
Sheng Yang14394422008-04-28 12:24:45 +08003100
3101 return eptp;
3102}
3103
Sean Christophersone83bc092021-03-05 10:31:13 -08003104static void vmx_load_mmu_pgd(struct kvm_vcpu *vcpu, hpa_t root_hpa,
3105 int root_level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003106{
Tianyu Lan877ad952018-07-19 08:40:23 +00003107 struct kvm *kvm = vcpu->kvm;
Sean Christopherson04f11ef2019-09-27 14:45:16 -07003108 bool update_guest_cr3 = true;
Sheng Yang14394422008-04-28 12:24:45 +08003109 unsigned long guest_cr3;
3110 u64 eptp;
3111
Avi Kivity089d0342009-03-23 18:26:32 +02003112 if (enable_ept) {
Sean Christophersone83bc092021-03-05 10:31:13 -08003113 eptp = construct_eptp(vcpu, root_hpa, root_level);
Sheng Yang14394422008-04-28 12:24:45 +08003114 vmcs_write64(EPT_POINTER, eptp);
Tianyu Lan877ad952018-07-19 08:40:23 +00003115
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +00003116 hv_track_root_tdp(vcpu, root_hpa);
Tianyu Lan877ad952018-07-19 08:40:23 +00003117
Paolo Bonzinidf7e0682020-05-20 08:37:37 -04003118 if (!enable_unrestricted_guest && !is_paging(vcpu))
Tianyu Lan877ad952018-07-19 08:40:23 +00003119 guest_cr3 = to_kvm_vmx(kvm)->ept_identity_map_addr;
Sean Christophersonb17b7432019-09-27 14:45:17 -07003120 else if (test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3121 guest_cr3 = vcpu->arch.cr3;
3122 else /* vmcs01.GUEST_CR3 is already up-to-date. */
3123 update_guest_cr3 = false;
Peter Shier43fea4e2020-08-20 16:05:45 -07003124 vmx_ept_load_pdptrs(vcpu);
Sean Christophersonbe100ef2020-03-20 14:28:33 -07003125 } else {
Sean Christophersone83bc092021-03-05 10:31:13 -08003126 guest_cr3 = root_hpa | kvm_get_active_pcid(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003127 }
3128
Sean Christopherson04f11ef2019-09-27 14:45:16 -07003129 if (update_guest_cr3)
3130 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003131}
3132
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07003133static bool vmx_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
3134{
3135 /*
3136 * We operate under the default treatment of SMM, so VMX cannot be
3137 * enabled under SMM. Note, whether or not VMXE is allowed at all is
Sean Christophersonee69c922020-10-06 18:44:16 -07003138 * handled by kvm_is_valid_cr4().
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07003139 */
3140 if ((cr4 & X86_CR4_VMXE) && is_smm(vcpu))
3141 return false;
3142
3143 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
3144 return false;
3145
3146 return true;
3147}
3148
3149void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003150{
Jim Mattson2259c172020-10-29 10:06:48 -07003151 unsigned long old_cr4 = vcpu->arch.cr4;
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003152 struct vcpu_vmx *vmx = to_vmx(vcpu);
Ben Serebrin085e68e2015-04-16 11:58:05 -07003153 /*
3154 * Pass through host's Machine Check Enable value to hw_cr4, which
3155 * is in force while we are in guest mode. Do not let guests control
3156 * this bit, even if host CR4.MCE == 0.
3157 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003158 unsigned long hw_cr4;
3159
3160 hw_cr4 = (cr4_read_shadow() & X86_CR4_MCE) | (cr4 & ~X86_CR4_MCE);
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003161 if (is_unrestricted_guest(vcpu))
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003162 hw_cr4 |= KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST;
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003163 else if (vmx->rmode.vm86_active)
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003164 hw_cr4 |= KVM_RMODE_VM_CR4_ALWAYS_ON;
3165 else
3166 hw_cr4 |= KVM_PMODE_VM_CR4_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003167
Sean Christopherson64f7a112018-04-30 10:01:06 -07003168 if (!boot_cpu_has(X86_FEATURE_UMIP) && vmx_umip_emulated()) {
3169 if (cr4 & X86_CR4_UMIP) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003170 secondary_exec_controls_setbit(vmx, SECONDARY_EXEC_DESC);
Sean Christopherson64f7a112018-04-30 10:01:06 -07003171 hw_cr4 &= ~X86_CR4_UMIP;
3172 } else if (!is_guest_mode(vcpu) ||
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003173 !nested_cpu_has2(get_vmcs12(vcpu), SECONDARY_EXEC_DESC)) {
3174 secondary_exec_controls_clearbit(vmx, SECONDARY_EXEC_DESC);
3175 }
Sean Christopherson64f7a112018-04-30 10:01:06 -07003176 }
Paolo Bonzini0367f202016-07-12 10:44:55 +02003177
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003178 vcpu->arch.cr4 = cr4;
Sean Christophersonf98c1e72020-05-01 21:32:30 -07003179 kvm_register_mark_available(vcpu, VCPU_EXREG_CR4);
Sheng Yang14394422008-04-28 12:24:45 +08003180
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003181 if (!is_unrestricted_guest(vcpu)) {
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003182 if (enable_ept) {
3183 if (!is_paging(vcpu)) {
3184 hw_cr4 &= ~X86_CR4_PAE;
3185 hw_cr4 |= X86_CR4_PSE;
3186 } else if (!(cr4 & X86_CR4_PAE)) {
3187 hw_cr4 &= ~X86_CR4_PAE;
3188 }
3189 }
3190
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003191 /*
Huaitong Handdba2622016-03-22 16:51:15 +08003192 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
3193 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
3194 * to be manually disabled when guest switches to non-paging
3195 * mode.
3196 *
3197 * If !enable_unrestricted_guest, the CPU is always running
3198 * with CR0.PG=1 and CR4 needs to be modified.
3199 * If enable_unrestricted_guest, the CPU automatically
3200 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003201 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003202 if (!is_paging(vcpu))
3203 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
3204 }
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003205
Sheng Yang14394422008-04-28 12:24:45 +08003206 vmcs_writel(CR4_READ_SHADOW, cr4);
3207 vmcs_writel(GUEST_CR4, hw_cr4);
Jim Mattson2259c172020-10-29 10:06:48 -07003208
3209 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
3210 kvm_update_cpuid_runtime(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003211}
3212
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003213void vmx_get_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003214{
Avi Kivitya9179492011-01-03 14:28:52 +02003215 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003216 u32 ar;
3217
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003218 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003219 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02003220 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03003221 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003222 return;
Avi Kivity1390a282012-08-21 17:07:08 +03003223 var->base = vmx_read_guest_seg_base(vmx, seg);
3224 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3225 return;
Avi Kivitya9179492011-01-03 14:28:52 +02003226 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003227 var->base = vmx_read_guest_seg_base(vmx, seg);
3228 var->limit = vmx_read_guest_seg_limit(vmx, seg);
3229 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3230 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03003231 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003232 var->type = ar & 15;
3233 var->s = (ar >> 4) & 1;
3234 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03003235 /*
3236 * Some userspaces do not preserve unusable property. Since usable
3237 * segment has to be present according to VMX spec we can use present
3238 * property to amend userspace bug by making unusable segment always
3239 * nonpresent. vmx_segment_access_rights() already marks nonpresent
3240 * segment as unusable.
3241 */
3242 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003243 var->avl = (ar >> 12) & 1;
3244 var->l = (ar >> 13) & 1;
3245 var->db = (ar >> 14) & 1;
3246 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003247}
3248
Avi Kivitya9179492011-01-03 14:28:52 +02003249static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
3250{
Avi Kivitya9179492011-01-03 14:28:52 +02003251 struct kvm_segment s;
3252
3253 if (to_vmx(vcpu)->rmode.vm86_active) {
3254 vmx_get_segment(vcpu, &s, seg);
3255 return s.base;
3256 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003257 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003258}
3259
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003260int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02003261{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003262 struct vcpu_vmx *vmx = to_vmx(vcpu);
3263
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003264 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02003265 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003266 else {
3267 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003268 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003269 }
Avi Kivity69c73022011-03-07 15:26:44 +02003270}
3271
Avi Kivity653e3102007-05-07 10:55:37 +03003272static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003273{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003274 u32 ar;
3275
Avi Kivityf0495f92012-06-07 17:06:10 +03003276 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003277 ar = 1 << 16;
3278 else {
3279 ar = var->type & 15;
3280 ar |= (var->s & 1) << 4;
3281 ar |= (var->dpl & 3) << 5;
3282 ar |= (var->present & 1) << 7;
3283 ar |= (var->avl & 1) << 12;
3284 ar |= (var->l & 1) << 13;
3285 ar |= (var->db & 1) << 14;
3286 ar |= (var->g & 1) << 15;
3287 }
Avi Kivity653e3102007-05-07 10:55:37 +03003288
3289 return ar;
3290}
3291
Sean Christopherson816be9e2021-07-13 09:33:07 -07003292void __vmx_set_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity653e3102007-05-07 10:55:37 +03003293{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003294 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02003295 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03003296
Avi Kivity2fb92db2011-04-27 19:42:18 +03003297 vmx_segment_cache_clear(vmx);
3298
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003299 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
3300 vmx->rmode.segs[seg] = *var;
3301 if (seg == VCPU_SREG_TR)
3302 vmcs_write16(sf->selector, var->selector);
3303 else if (var->s)
3304 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Sean Christopherson1dd7a4f2021-07-13 09:33:06 -07003305 return;
Avi Kivity653e3102007-05-07 10:55:37 +03003306 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003307
Avi Kivity653e3102007-05-07 10:55:37 +03003308 vmcs_writel(sf->base, var->base);
3309 vmcs_write32(sf->limit, var->limit);
3310 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003311
3312 /*
3313 * Fix the "Accessed" bit in AR field of segment registers for older
3314 * qemu binaries.
3315 * IA32 arch specifies that at the time of processor reset the
3316 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08003317 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003318 * state vmexit when "unrestricted guest" mode is turned on.
3319 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3320 * tree. Newer qemu binaries with that qemu fix would not need this
3321 * kvm hack.
3322 */
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003323 if (is_unrestricted_guest(vcpu) && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02003324 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003325
Gleb Natapovf924d662012-12-12 19:10:55 +02003326 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Sean Christopherson1dd7a4f2021-07-13 09:33:06 -07003327}
Gleb Natapovd99e4152012-12-20 16:57:45 +02003328
Sean Christopherson816be9e2021-07-13 09:33:07 -07003329static void vmx_set_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Sean Christopherson1dd7a4f2021-07-13 09:33:06 -07003330{
3331 __vmx_set_segment(vcpu, var, seg);
3332
3333 to_vmx(vcpu)->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003334}
3335
Avi Kivity6aa8b732006-12-10 02:21:36 -08003336static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
3337{
Avi Kivity2fb92db2011-04-27 19:42:18 +03003338 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003339
3340 *db = (ar >> 14) & 1;
3341 *l = (ar >> 13) & 1;
3342}
3343
Gleb Natapov89a27f42010-02-16 10:51:48 +02003344static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003345{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003346 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
3347 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003348}
3349
Gleb Natapov89a27f42010-02-16 10:51:48 +02003350static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003351{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003352 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
3353 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003354}
3355
Gleb Natapov89a27f42010-02-16 10:51:48 +02003356static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003357{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003358 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
3359 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003360}
3361
Gleb Natapov89a27f42010-02-16 10:51:48 +02003362static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003363{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003364 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
3365 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003366}
3367
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003368static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
3369{
3370 struct kvm_segment var;
3371 u32 ar;
3372
3373 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02003374 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02003375 if (seg == VCPU_SREG_CS)
3376 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003377 ar = vmx_segment_access_rights(&var);
3378
3379 if (var.base != (var.selector << 4))
3380 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02003381 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003382 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02003383 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003384 return false;
3385
3386 return true;
3387}
3388
3389static bool code_segment_valid(struct kvm_vcpu *vcpu)
3390{
3391 struct kvm_segment cs;
3392 unsigned int cs_rpl;
3393
3394 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003395 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003396
Avi Kivity1872a3f2009-01-04 23:26:52 +02003397 if (cs.unusable)
3398 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003399 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003400 return false;
3401 if (!cs.s)
3402 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003403 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003404 if (cs.dpl > cs_rpl)
3405 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003406 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003407 if (cs.dpl != cs_rpl)
3408 return false;
3409 }
3410 if (!cs.present)
3411 return false;
3412
3413 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
3414 return true;
3415}
3416
3417static bool stack_segment_valid(struct kvm_vcpu *vcpu)
3418{
3419 struct kvm_segment ss;
3420 unsigned int ss_rpl;
3421
3422 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003423 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003424
Avi Kivity1872a3f2009-01-04 23:26:52 +02003425 if (ss.unusable)
3426 return true;
3427 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003428 return false;
3429 if (!ss.s)
3430 return false;
3431 if (ss.dpl != ss_rpl) /* DPL != RPL */
3432 return false;
3433 if (!ss.present)
3434 return false;
3435
3436 return true;
3437}
3438
3439static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
3440{
3441 struct kvm_segment var;
3442 unsigned int rpl;
3443
3444 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03003445 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003446
Avi Kivity1872a3f2009-01-04 23:26:52 +02003447 if (var.unusable)
3448 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003449 if (!var.s)
3450 return false;
3451 if (!var.present)
3452 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003453 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003454 if (var.dpl < rpl) /* DPL < RPL */
3455 return false;
3456 }
3457
3458 /* TODO: Add other members to kvm_segment_field to allow checking for other access
3459 * rights flags
3460 */
3461 return true;
3462}
3463
3464static bool tr_valid(struct kvm_vcpu *vcpu)
3465{
3466 struct kvm_segment tr;
3467
3468 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
3469
Avi Kivity1872a3f2009-01-04 23:26:52 +02003470 if (tr.unusable)
3471 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03003472 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003473 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003474 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003475 return false;
3476 if (!tr.present)
3477 return false;
3478
3479 return true;
3480}
3481
3482static bool ldtr_valid(struct kvm_vcpu *vcpu)
3483{
3484 struct kvm_segment ldtr;
3485
3486 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
3487
Avi Kivity1872a3f2009-01-04 23:26:52 +02003488 if (ldtr.unusable)
3489 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03003490 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003491 return false;
3492 if (ldtr.type != 2)
3493 return false;
3494 if (!ldtr.present)
3495 return false;
3496
3497 return true;
3498}
3499
3500static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
3501{
3502 struct kvm_segment cs, ss;
3503
3504 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3505 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3506
Nadav Amitb32a9912015-03-29 16:33:04 +03003507 return ((cs.selector & SEGMENT_RPL_MASK) ==
3508 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003509}
3510
3511/*
3512 * Check if guest state is valid. Returns true if valid, false if
3513 * not.
3514 * We assume that registers are always usable
3515 */
Sean Christopherson2ba44932020-09-23 11:44:48 -07003516bool __vmx_guest_state_valid(struct kvm_vcpu *vcpu)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003517{
3518 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03003519 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003520 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
3521 return false;
3522 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
3523 return false;
3524 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
3525 return false;
3526 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
3527 return false;
3528 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
3529 return false;
3530 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
3531 return false;
3532 } else {
3533 /* protected mode guest state checks */
3534 if (!cs_ss_rpl_check(vcpu))
3535 return false;
3536 if (!code_segment_valid(vcpu))
3537 return false;
3538 if (!stack_segment_valid(vcpu))
3539 return false;
3540 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
3541 return false;
3542 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
3543 return false;
3544 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
3545 return false;
3546 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
3547 return false;
3548 if (!tr_valid(vcpu))
3549 return false;
3550 if (!ldtr_valid(vcpu))
3551 return false;
3552 }
3553 /* TODO:
3554 * - Add checks on RIP
3555 * - Add checks on RFLAGS
3556 */
3557
3558 return true;
3559}
3560
Peter Xuff5a9832020-09-30 21:20:33 -04003561static int init_rmode_tss(struct kvm *kvm, void __user *ua)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003562{
Peter Xuff5a9832020-09-30 21:20:33 -04003563 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
3564 u16 data;
3565 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003566
Peter Xuff5a9832020-09-30 21:20:33 -04003567 for (i = 0; i < 3; i++) {
3568 if (__copy_to_user(ua + PAGE_SIZE * i, zero_page, PAGE_SIZE))
3569 return -EFAULT;
3570 }
3571
Izik Eidus195aefd2007-10-01 22:14:18 +02003572 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Peter Xuff5a9832020-09-30 21:20:33 -04003573 if (__copy_to_user(ua + TSS_IOPB_BASE_OFFSET, &data, sizeof(u16)))
3574 return -EFAULT;
3575
Izik Eidus195aefd2007-10-01 22:14:18 +02003576 data = ~0;
Peter Xuff5a9832020-09-30 21:20:33 -04003577 if (__copy_to_user(ua + RMODE_TSS_SIZE - 1, &data, sizeof(u8)))
3578 return -EFAULT;
3579
3580 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003581}
3582
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003583static int init_rmode_identity_map(struct kvm *kvm)
3584{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003585 struct kvm_vmx *kvm_vmx = to_kvm_vmx(kvm);
Peter Xu2a5755b2020-01-09 09:57:14 -05003586 int i, r = 0;
Peter Xuff5a9832020-09-30 21:20:33 -04003587 void __user *uaddr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003588 u32 tmp;
3589
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003590 /* Protect kvm_vmx->ept_identity_pagetable_done. */
Tang Chena255d472014-09-16 18:41:58 +08003591 mutex_lock(&kvm->slots_lock);
3592
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003593 if (likely(kvm_vmx->ept_identity_pagetable_done))
Peter Xu2a5755b2020-01-09 09:57:14 -05003594 goto out;
Tang Chena255d472014-09-16 18:41:58 +08003595
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003596 if (!kvm_vmx->ept_identity_map_addr)
3597 kvm_vmx->ept_identity_map_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chena255d472014-09-16 18:41:58 +08003598
Peter Xuff5a9832020-09-30 21:20:33 -04003599 uaddr = __x86_set_memory_region(kvm,
3600 IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
3601 kvm_vmx->ept_identity_map_addr,
3602 PAGE_SIZE);
3603 if (IS_ERR(uaddr)) {
3604 r = PTR_ERR(uaddr);
Peter Xu2a5755b2020-01-09 09:57:14 -05003605 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003606 }
Tang Chena255d472014-09-16 18:41:58 +08003607
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003608 /* Set up identity-mapping pagetable for EPT in real mode */
3609 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
3610 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
3611 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
Peter Xuff5a9832020-09-30 21:20:33 -04003612 if (__copy_to_user(uaddr + i * sizeof(tmp), &tmp, sizeof(tmp))) {
3613 r = -EFAULT;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003614 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003615 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003616 }
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003617 kvm_vmx->ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08003618
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003619out:
Tang Chena255d472014-09-16 18:41:58 +08003620 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08003621 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003622}
3623
Avi Kivity6aa8b732006-12-10 02:21:36 -08003624static void seg_setup(int seg)
3625{
Mathias Krause772e0312012-08-30 01:30:19 +02003626 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003627 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003628
3629 vmcs_write16(sf->selector, 0);
3630 vmcs_writel(sf->base, 0);
3631 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02003632 ar = 0x93;
3633 if (seg == VCPU_SREG_CS)
3634 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003635
3636 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003637}
3638
Sheng Yangf78e0e22007-10-29 09:40:42 +08003639static int alloc_apic_access_page(struct kvm *kvm)
3640{
Xiao Guangrong44841412012-09-07 14:14:20 +08003641 struct page *page;
Peter Xuff5a9832020-09-30 21:20:33 -04003642 void __user *hva;
3643 int ret = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003644
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003645 mutex_lock(&kvm->slots_lock);
Maxim Levitskya01b45e2021-06-23 14:29:55 +03003646 if (kvm->arch.apic_access_memslot_enabled)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003647 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003648 hva = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
3649 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
3650 if (IS_ERR(hva)) {
3651 ret = PTR_ERR(hva);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003652 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003653 }
Izik Eidus72dc67a2008-02-10 18:04:15 +02003654
Tang Chen73a6d942014-09-11 13:38:00 +08003655 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08003656 if (is_error_page(page)) {
Peter Xuff5a9832020-09-30 21:20:33 -04003657 ret = -EFAULT;
Xiao Guangrong44841412012-09-07 14:14:20 +08003658 goto out;
3659 }
3660
Tang Chenc24ae0d2014-09-24 15:57:58 +08003661 /*
3662 * Do not pin the page in memory, so that memory hot-unplug
3663 * is able to migrate it.
3664 */
3665 put_page(page);
Maxim Levitskya01b45e2021-06-23 14:29:55 +03003666 kvm->arch.apic_access_memslot_enabled = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003667out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003668 mutex_unlock(&kvm->slots_lock);
Peter Xuff5a9832020-09-30 21:20:33 -04003669 return ret;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003670}
3671
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003672int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003673{
3674 int vpid;
3675
Avi Kivity919818a2009-03-23 18:01:29 +02003676 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08003677 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003678 spin_lock(&vmx_vpid_lock);
3679 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003680 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003681 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003682 else
3683 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003684 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003685 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003686}
3687
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003688void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003689{
Wanpeng Li991e7a02015-09-16 17:30:05 +08003690 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003691 return;
3692 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003693 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003694 spin_unlock(&vmx_vpid_lock);
3695}
3696
Alexander Graf3eb90012020-09-25 16:34:20 +02003697static void vmx_clear_msr_bitmap_read(ulong *msr_bitmap, u32 msr)
3698{
3699 int f = sizeof(unsigned long);
3700
3701 if (msr <= 0x1fff)
3702 __clear_bit(msr, msr_bitmap + 0x000 / f);
3703 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3704 __clear_bit(msr & 0x1fff, msr_bitmap + 0x400 / f);
3705}
3706
3707static void vmx_clear_msr_bitmap_write(ulong *msr_bitmap, u32 msr)
3708{
3709 int f = sizeof(unsigned long);
3710
3711 if (msr <= 0x1fff)
3712 __clear_bit(msr, msr_bitmap + 0x800 / f);
3713 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3714 __clear_bit(msr & 0x1fff, msr_bitmap + 0xc00 / f);
3715}
3716
3717static void vmx_set_msr_bitmap_read(ulong *msr_bitmap, u32 msr)
3718{
3719 int f = sizeof(unsigned long);
3720
3721 if (msr <= 0x1fff)
3722 __set_bit(msr, msr_bitmap + 0x000 / f);
3723 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3724 __set_bit(msr & 0x1fff, msr_bitmap + 0x400 / f);
3725}
3726
3727static void vmx_set_msr_bitmap_write(ulong *msr_bitmap, u32 msr)
3728{
3729 int f = sizeof(unsigned long);
3730
3731 if (msr <= 0x1fff)
3732 __set_bit(msr, msr_bitmap + 0x800 / f);
3733 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3734 __set_bit(msr & 0x1fff, msr_bitmap + 0xc00 / f);
3735}
3736
Sean Christophersone23f6d42021-04-23 15:19:12 -07003737void vmx_disable_intercept_for_msr(struct kvm_vcpu *vcpu, u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08003738{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003739 struct vcpu_vmx *vmx = to_vmx(vcpu);
3740 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
Sheng Yang25c5f222008-03-28 13:18:56 +08003741
3742 if (!cpu_has_vmx_msr_bitmap())
3743 return;
3744
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003745 if (static_branch_unlikely(&enable_evmcs))
3746 evmcs_touch_msr_bitmap();
3747
Sheng Yang25c5f222008-03-28 13:18:56 +08003748 /*
Alexander Graf3eb90012020-09-25 16:34:20 +02003749 * Mark the desired intercept state in shadow bitmap, this is needed
3750 * for resync when the MSR filters change.
3751 */
3752 if (is_valid_passthrough_msr(msr)) {
3753 int idx = possible_passthrough_msr_slot(msr);
Yang Zhang8d146952013-01-25 10:18:50 +08003754
Alexander Graf3eb90012020-09-25 16:34:20 +02003755 if (idx != -ENOENT) {
3756 if (type & MSR_TYPE_R)
3757 clear_bit(idx, vmx->shadow_msr_intercept.read);
3758 if (type & MSR_TYPE_W)
3759 clear_bit(idx, vmx->shadow_msr_intercept.write);
3760 }
Yang Zhang8d146952013-01-25 10:18:50 +08003761 }
Alexander Graf3eb90012020-09-25 16:34:20 +02003762
3763 if ((type & MSR_TYPE_R) &&
3764 !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_READ)) {
3765 vmx_set_msr_bitmap_read(msr_bitmap, msr);
3766 type &= ~MSR_TYPE_R;
3767 }
3768
3769 if ((type & MSR_TYPE_W) &&
3770 !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_WRITE)) {
3771 vmx_set_msr_bitmap_write(msr_bitmap, msr);
3772 type &= ~MSR_TYPE_W;
3773 }
3774
3775 if (type & MSR_TYPE_R)
3776 vmx_clear_msr_bitmap_read(msr_bitmap, msr);
3777
3778 if (type & MSR_TYPE_W)
3779 vmx_clear_msr_bitmap_write(msr_bitmap, msr);
Yang Zhang8d146952013-01-25 10:18:50 +08003780}
3781
Sean Christophersone23f6d42021-04-23 15:19:12 -07003782void vmx_enable_intercept_for_msr(struct kvm_vcpu *vcpu, u32 msr, int type)
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003783{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003784 struct vcpu_vmx *vmx = to_vmx(vcpu);
3785 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003786
3787 if (!cpu_has_vmx_msr_bitmap())
3788 return;
3789
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003790 if (static_branch_unlikely(&enable_evmcs))
3791 evmcs_touch_msr_bitmap();
3792
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003793 /*
Alexander Graf3eb90012020-09-25 16:34:20 +02003794 * Mark the desired intercept state in shadow bitmap, this is needed
3795 * for resync when the MSR filter changes.
3796 */
3797 if (is_valid_passthrough_msr(msr)) {
3798 int idx = possible_passthrough_msr_slot(msr);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003799
Alexander Graf3eb90012020-09-25 16:34:20 +02003800 if (idx != -ENOENT) {
3801 if (type & MSR_TYPE_R)
3802 set_bit(idx, vmx->shadow_msr_intercept.read);
3803 if (type & MSR_TYPE_W)
3804 set_bit(idx, vmx->shadow_msr_intercept.write);
3805 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003806 }
Alexander Graf3eb90012020-09-25 16:34:20 +02003807
3808 if (type & MSR_TYPE_R)
3809 vmx_set_msr_bitmap_read(msr_bitmap, msr);
3810
3811 if (type & MSR_TYPE_W)
3812 vmx_set_msr_bitmap_write(msr_bitmap, msr);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003813}
3814
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003815static void vmx_reset_x2apic_msrs(struct kvm_vcpu *vcpu, u8 mode)
Yang Zhang8d146952013-01-25 10:18:50 +08003816{
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003817 unsigned long *msr_bitmap = to_vmx(vcpu)->vmcs01.msr_bitmap;
3818 unsigned long read_intercept;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003819 int msr;
3820
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003821 read_intercept = (mode & MSR_BITMAP_MODE_X2APIC_APICV) ? 0 : ~0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003822
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003823 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
3824 unsigned int read_idx = msr / BITS_PER_LONG;
3825 unsigned int write_idx = read_idx + (0x800 / sizeof(long));
3826
3827 msr_bitmap[read_idx] = read_intercept;
3828 msr_bitmap[write_idx] = ~0ul;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08003829 }
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003830}
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003831
Sean Christopherson84ec8d22021-07-13 09:33:19 -07003832static void vmx_update_msr_bitmap_x2apic(struct kvm_vcpu *vcpu)
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003833{
Sean Christopherson84ec8d22021-07-13 09:33:19 -07003834 struct vcpu_vmx *vmx = to_vmx(vcpu);
3835 u8 mode;
3836
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003837 if (!cpu_has_vmx_msr_bitmap())
3838 return;
3839
Sean Christopherson84ec8d22021-07-13 09:33:19 -07003840 if (cpu_has_secondary_exec_ctrls() &&
3841 (secondary_exec_controls_get(vmx) &
3842 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
3843 mode = MSR_BITMAP_MODE_X2APIC;
3844 if (enable_apicv && kvm_vcpu_apicv_active(vcpu))
3845 mode |= MSR_BITMAP_MODE_X2APIC_APICV;
3846 } else {
3847 mode = 0;
3848 }
3849
3850 if (mode == vmx->x2apic_msr_bitmap_mode)
3851 return;
3852
3853 vmx->x2apic_msr_bitmap_mode = mode;
3854
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003855 vmx_reset_x2apic_msrs(vcpu, mode);
3856
3857 /*
3858 * TPR reads and writes can be virtualized even if virtual interrupt
3859 * delivery is not in use.
3860 */
3861 vmx_set_intercept_for_msr(vcpu, X2APIC_MSR(APIC_TASKPRI), MSR_TYPE_RW,
3862 !(mode & MSR_BITMAP_MODE_X2APIC));
3863
3864 if (mode & MSR_BITMAP_MODE_X2APIC_APICV) {
3865 vmx_enable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_TMCCT), MSR_TYPE_RW);
3866 vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_EOI), MSR_TYPE_W);
3867 vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_SELF_IPI), MSR_TYPE_W);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003868 }
3869}
3870
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003871void pt_update_intercept_for_msr(struct kvm_vcpu *vcpu)
Chao Pengb08c2892018-10-24 16:05:15 +08003872{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003873 struct vcpu_vmx *vmx = to_vmx(vcpu);
Chao Pengb08c2892018-10-24 16:05:15 +08003874 bool flag = !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
3875 u32 i;
3876
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003877 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_STATUS, MSR_TYPE_RW, flag);
3878 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_OUTPUT_BASE, MSR_TYPE_RW, flag);
3879 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_OUTPUT_MASK, MSR_TYPE_RW, flag);
3880 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_CR3_MATCH, MSR_TYPE_RW, flag);
Chao Pengb08c2892018-10-24 16:05:15 +08003881 for (i = 0; i < vmx->pt_desc.addr_range; i++) {
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003882 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_ADDR0_A + i * 2, MSR_TYPE_RW, flag);
3883 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_ADDR0_B + i * 2, MSR_TYPE_RW, flag);
Chao Pengb08c2892018-10-24 16:05:15 +08003884 }
3885}
3886
Liran Alone6c67d82018-09-04 10:56:52 +03003887static bool vmx_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
3888{
3889 struct vcpu_vmx *vmx = to_vmx(vcpu);
3890 void *vapic_page;
3891 u32 vppr;
3892 int rvi;
3893
3894 if (WARN_ON_ONCE(!is_guest_mode(vcpu)) ||
3895 !nested_cpu_has_vid(get_vmcs12(vcpu)) ||
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003896 WARN_ON_ONCE(!vmx->nested.virtual_apic_map.gfn))
Liran Alone6c67d82018-09-04 10:56:52 +03003897 return false;
3898
Paolo Bonzini7e712682018-10-03 13:44:26 +02003899 rvi = vmx_get_rvi();
Liran Alone6c67d82018-09-04 10:56:52 +03003900
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003901 vapic_page = vmx->nested.virtual_apic_map.hva;
Liran Alone6c67d82018-09-04 10:56:52 +03003902 vppr = *((u32 *)(vapic_page + APIC_PROCPRI));
Liran Alone6c67d82018-09-04 10:56:52 +03003903
3904 return ((rvi & 0xf0) > (vppr & 0xf0));
3905}
3906
Alexander Graf3eb90012020-09-25 16:34:20 +02003907static void vmx_msr_filter_changed(struct kvm_vcpu *vcpu)
3908{
3909 struct vcpu_vmx *vmx = to_vmx(vcpu);
3910 u32 i;
3911
3912 /*
3913 * Set intercept permissions for all potentially passed through MSRs
3914 * again. They will automatically get filtered through the MSR filter,
3915 * so we are back in sync after this.
3916 */
3917 for (i = 0; i < ARRAY_SIZE(vmx_possible_passthrough_msrs); i++) {
3918 u32 msr = vmx_possible_passthrough_msrs[i];
3919 bool read = test_bit(i, vmx->shadow_msr_intercept.read);
3920 bool write = test_bit(i, vmx->shadow_msr_intercept.write);
3921
3922 vmx_set_intercept_for_msr(vcpu, msr, MSR_TYPE_R, read);
3923 vmx_set_intercept_for_msr(vcpu, msr, MSR_TYPE_W, write);
3924 }
3925
3926 pt_update_intercept_for_msr(vcpu);
Alexander Graf3eb90012020-09-25 16:34:20 +02003927}
3928
Wincy Van06a55242017-04-28 13:13:59 +08003929static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
3930 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003931{
3932#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08003933 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
3934
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003935 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08003936 /*
Haozhong Zhang5753743f2017-09-18 09:56:50 +08003937 * The vector of interrupt to be delivered to vcpu had
3938 * been set in PIR before this function.
Feng Wu28b835d2015-09-18 22:29:54 +08003939 *
Haozhong Zhang5753743f2017-09-18 09:56:50 +08003940 * Following cases will be reached in this block, and
3941 * we always send a notification event in all cases as
3942 * explained below.
3943 *
3944 * Case 1: vcpu keeps in non-root mode. Sending a
3945 * notification event posts the interrupt to vcpu.
3946 *
3947 * Case 2: vcpu exits to root mode and is still
3948 * runnable. PIR will be synced to vIRR before the
3949 * next vcpu entry. Sending a notification event in
3950 * this case has no effect, as vcpu is not in root
3951 * mode.
3952 *
3953 * Case 3: vcpu exits to root mode and is blocked.
3954 * vcpu_block() has already synced PIR to vIRR and
3955 * never blocks vcpu if vIRR is not cleared. Therefore,
3956 * a blocked vcpu here does not wait for any requested
3957 * interrupts in PIR, and sending a notification event
3958 * which has no effect is safe here.
Feng Wu28b835d2015-09-18 22:29:54 +08003959 */
Feng Wu28b835d2015-09-18 22:29:54 +08003960
Wincy Van06a55242017-04-28 13:13:59 +08003961 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003962 return true;
3963 }
3964#endif
3965 return false;
3966}
3967
Wincy Van705699a2015-02-03 23:58:17 +08003968static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
3969 int vector)
3970{
3971 struct vcpu_vmx *vmx = to_vmx(vcpu);
3972
3973 if (is_guest_mode(vcpu) &&
3974 vector == vmx->nested.posted_intr_nv) {
Wincy Van705699a2015-02-03 23:58:17 +08003975 /*
3976 * If a posted intr is not recognized by hardware,
3977 * we will accomplish it in the next vmentry.
3978 */
3979 vmx->nested.pi_pending = true;
3980 kvm_make_request(KVM_REQ_EVENT, vcpu);
Liran Alon6b697712017-11-09 20:27:20 +02003981 /* the PIR and ON have been set by L1. */
3982 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, true))
3983 kvm_vcpu_kick(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08003984 return 0;
3985 }
3986 return -1;
3987}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003988/*
Yang Zhanga20ed542013-04-11 19:25:15 +08003989 * Send interrupt to vcpu via posted interrupt way.
3990 * 1. If target vcpu is running(non-root mode), send posted interrupt
3991 * notification to vcpu and hardware will sync PIR to vIRR atomically.
3992 * 2. If target vcpu isn't running(root mode), kick it to pick up the
3993 * interrupt from PIR in next vmentry.
3994 */
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003995static int vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
Yang Zhanga20ed542013-04-11 19:25:15 +08003996{
3997 struct vcpu_vmx *vmx = to_vmx(vcpu);
3998 int r;
3999
Wincy Van705699a2015-02-03 23:58:17 +08004000 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
4001 if (!r)
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004002 return 0;
4003
4004 if (!vcpu->arch.apicv_active)
4005 return -1;
Wincy Van705699a2015-02-03 23:58:17 +08004006
Yang Zhanga20ed542013-04-11 19:25:15 +08004007 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004008 return 0;
Yang Zhanga20ed542013-04-11 19:25:15 +08004009
Paolo Bonzinib95234c2016-12-19 13:57:33 +01004010 /* If a previous notification has sent the IPI, nothing to do. */
4011 if (pi_test_and_set_on(&vmx->pi_desc))
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004012 return 0;
Paolo Bonzinib95234c2016-12-19 13:57:33 +01004013
Wanpeng Li379a3c82020-04-28 14:23:27 +08004014 if (vcpu != kvm_get_running_vcpu() &&
4015 !kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08004016 kvm_vcpu_kick(vcpu);
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004017
4018 return 0;
Yang Zhanga20ed542013-04-11 19:25:15 +08004019}
4020
Avi Kivity6aa8b732006-12-10 02:21:36 -08004021/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004022 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
4023 * will not change in the lifetime of the guest.
4024 * Note that host-state that does change is set elsewhere. E.g., host-state
4025 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
4026 */
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004027void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004028{
4029 u32 low32, high32;
4030 unsigned long tmpl;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07004031 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004032
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07004033 cr0 = read_cr0();
4034 WARN_ON(cr0 & X86_CR0_TS);
4035 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07004036
4037 /*
4038 * Save the most likely value for this task's CR3 in the VMCS.
4039 * We can't use __get_current_cr3_fast() because we're not atomic.
4040 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07004041 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07004042 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
Sean Christophersond7ee0392018-07-23 12:32:47 -07004043 vmx->loaded_vmcs->host_state.cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004044
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004045 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07004046 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004047 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07004048 vmx->loaded_vmcs->host_state.cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004049
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004050 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004051#ifdef CONFIG_X86_64
4052 /*
4053 * Load null selectors, so we can avoid reloading them in
Sean Christopherson6d6095b2018-07-23 12:32:44 -07004054 * vmx_prepare_switch_to_host(), in case userspace uses
4055 * the null selectors too (the expected case).
Avi Kivityb2da15a2012-05-13 19:53:24 +03004056 */
4057 vmcs_write16(HOST_DS_SELECTOR, 0);
4058 vmcs_write16(HOST_ES_SELECTOR, 0);
4059#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004060 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4061 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004062#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004063 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4064 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
4065
Sean Christopherson23420802019-04-19 22:50:57 -07004066 vmcs_writel(HOST_IDTR_BASE, host_idt_base); /* 22.2.4 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004067
Sean Christopherson453eafb2018-12-20 12:25:17 -08004068 vmcs_writel(HOST_RIP, (unsigned long)vmx_vmexit); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004069
4070 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
4071 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
4072 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
4073 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
4074
4075 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
4076 rdmsr(MSR_IA32_CR_PAT, low32, high32);
4077 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
4078 }
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07004079
Sean Christophersonc73da3f2018-12-03 13:53:00 -08004080 if (cpu_has_load_ia32_efer())
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07004081 vmcs_write64(HOST_IA32_EFER, host_efer);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004082}
4083
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004084void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004085{
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004086 struct kvm_vcpu *vcpu = &vmx->vcpu;
4087
4088 vcpu->arch.cr4_guest_owned_bits = KVM_POSSIBLE_CR4_GUEST_BITS &
4089 ~vcpu->arch.cr4_guest_rsvd_bits;
Sean Christophersonfa71e952020-07-02 21:04:22 -07004090 if (!enable_ept)
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004091 vcpu->arch.cr4_guest_owned_bits &= ~X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03004092 if (is_guest_mode(&vmx->vcpu))
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004093 vcpu->arch.cr4_guest_owned_bits &=
4094 ~get_vmcs12(vcpu)->cr4_guest_host_mask;
4095 vmcs_writel(CR4_GUEST_HOST_MASK, ~vcpu->arch.cr4_guest_owned_bits);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004096}
4097
Sean Christophersonc075c3e2019-05-07 12:17:53 -07004098u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
Yang Zhang01e439b2013-04-11 19:25:12 +08004099{
4100 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
4101
Andrey Smetanind62caab2015-11-10 15:36:33 +03004102 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08004103 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004104
4105 if (!enable_vnmi)
4106 pin_based_exec_ctrl &= ~PIN_BASED_VIRTUAL_NMIS;
4107
Sean Christopherson804939e2019-05-07 12:18:05 -07004108 if (!enable_preemption_timer)
4109 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
4110
Yang Zhang01e439b2013-04-11 19:25:12 +08004111 return pin_based_exec_ctrl;
4112}
4113
Andrey Smetanind62caab2015-11-10 15:36:33 +03004114static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
4115{
4116 struct vcpu_vmx *vmx = to_vmx(vcpu);
4117
Sean Christophersonc5f2c762019-05-07 12:17:55 -07004118 pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03004119 if (cpu_has_secondary_exec_ctrls()) {
4120 if (kvm_vcpu_apicv_active(vcpu))
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07004121 secondary_exec_controls_setbit(vmx,
Roman Kagan3ce424e2016-05-18 17:48:20 +03004122 SECONDARY_EXEC_APIC_REGISTER_VIRT |
4123 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
4124 else
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07004125 secondary_exec_controls_clearbit(vmx,
Roman Kagan3ce424e2016-05-18 17:48:20 +03004126 SECONDARY_EXEC_APIC_REGISTER_VIRT |
4127 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
4128 }
4129
Sean Christopherson84ec8d22021-07-13 09:33:19 -07004130 vmx_update_msr_bitmap_x2apic(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004131}
4132
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08004133u32 vmx_exec_control(struct vcpu_vmx *vmx)
4134{
4135 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
4136
4137 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
4138 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
4139
4140 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
4141 exec_control &= ~CPU_BASED_TPR_SHADOW;
4142#ifdef CONFIG_X86_64
4143 exec_control |= CPU_BASED_CR8_STORE_EXITING |
4144 CPU_BASED_CR8_LOAD_EXITING;
4145#endif
4146 }
4147 if (!enable_ept)
4148 exec_control |= CPU_BASED_CR3_STORE_EXITING |
4149 CPU_BASED_CR3_LOAD_EXITING |
4150 CPU_BASED_INVLPG_EXITING;
4151 if (kvm_mwait_in_guest(vmx->vcpu.kvm))
4152 exec_control &= ~(CPU_BASED_MWAIT_EXITING |
4153 CPU_BASED_MONITOR_EXITING);
4154 if (kvm_hlt_in_guest(vmx->vcpu.kvm))
4155 exec_control &= ~CPU_BASED_HLT_EXITING;
4156 return exec_control;
4157}
4158
Sean Christopherson8b50b922020-09-24 17:30:11 -07004159/*
4160 * Adjust a single secondary execution control bit to intercept/allow an
4161 * instruction in the guest. This is usually done based on whether or not a
4162 * feature has been exposed to the guest in order to correctly emulate faults.
4163 */
4164static inline void
4165vmx_adjust_secondary_exec_control(struct vcpu_vmx *vmx, u32 *exec_control,
4166 u32 control, bool enabled, bool exiting)
4167{
4168 /*
4169 * If the control is for an opt-in feature, clear the control if the
4170 * feature is not exposed to the guest, i.e. not enabled. If the
4171 * control is opt-out, i.e. an exiting control, clear the control if
4172 * the feature _is_ exposed to the guest, i.e. exiting/interception is
4173 * disabled for the associated instruction. Note, the caller is
4174 * responsible presetting exec_control to set all supported bits.
4175 */
4176 if (enabled == exiting)
4177 *exec_control &= ~control;
4178
4179 /*
4180 * Update the nested MSR settings so that a nested VMM can/can't set
4181 * controls for features that are/aren't exposed to the guest.
4182 */
4183 if (nested) {
4184 if (enabled)
4185 vmx->nested.msrs.secondary_ctls_high |= control;
4186 else
4187 vmx->nested.msrs.secondary_ctls_high &= ~control;
4188 }
4189}
4190
4191/*
4192 * Wrapper macro for the common case of adjusting a secondary execution control
4193 * based on a single guest CPUID bit, with a dedicated feature bit. This also
4194 * verifies that the control is actually supported by KVM and hardware.
4195 */
4196#define vmx_adjust_sec_exec_control(vmx, exec_control, name, feat_name, ctrl_name, exiting) \
4197({ \
4198 bool __enabled; \
4199 \
4200 if (cpu_has_vmx_##name()) { \
4201 __enabled = guest_cpuid_has(&(vmx)->vcpu, \
4202 X86_FEATURE_##feat_name); \
4203 vmx_adjust_secondary_exec_control(vmx, exec_control, \
4204 SECONDARY_EXEC_##ctrl_name, __enabled, exiting); \
4205 } \
4206})
4207
4208/* More macro magic for ENABLE_/opt-in versus _EXITING/opt-out controls. */
4209#define vmx_adjust_sec_exec_feature(vmx, exec_control, lname, uname) \
4210 vmx_adjust_sec_exec_control(vmx, exec_control, lname, uname, ENABLE_##uname, false)
4211
4212#define vmx_adjust_sec_exec_exiting(vmx, exec_control, lname, uname) \
4213 vmx_adjust_sec_exec_control(vmx, exec_control, lname, uname, uname##_EXITING, true)
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08004214
Paolo Bonzini80154d72017-08-24 13:55:35 +02004215static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004216{
Paolo Bonzini80154d72017-08-24 13:55:35 +02004217 struct kvm_vcpu *vcpu = &vmx->vcpu;
4218
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004219 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004220
Sean Christopherson2ef76192020-03-02 15:56:22 -08004221 if (vmx_pt_mode_is_system())
Chao Pengf99e3da2018-10-24 16:05:10 +08004222 exec_control &= ~(SECONDARY_EXEC_PT_USE_GPA | SECONDARY_EXEC_PT_CONCEAL_VMX);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004223 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004224 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
4225 if (vmx->vpid == 0)
4226 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
4227 if (!enable_ept) {
4228 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
4229 enable_unrestricted_guest = 0;
4230 }
4231 if (!enable_unrestricted_guest)
4232 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Wanpeng Lib31c1142018-03-12 04:53:04 -07004233 if (kvm_pause_in_guest(vmx->vcpu.kvm))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004234 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02004235 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08004236 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
4237 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08004238 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004239
4240 /* SECONDARY_EXEC_DESC is enabled/disabled on writes to CR4.UMIP,
4241 * in vmx_set_cr4. */
4242 exec_control &= ~SECONDARY_EXEC_DESC;
4243
Abel Gordonabc4fc52013-04-18 14:35:25 +03004244 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
4245 (handle_vmptrld).
4246 We can NOT enable shadow_vmcs here because we don't have yet
4247 a current VMCS12
4248 */
4249 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08004250
Makarand Sonarea85863c2021-02-12 16:50:12 -08004251 /*
4252 * PML is enabled/disabled when dirty logging of memsmlots changes, but
4253 * it needs to be set here when dirty logging is already active, e.g.
4254 * if this vCPU was created after dirty logging was enabled.
4255 */
4256 if (!vcpu->kvm->arch.cpu_dirty_logging_count)
Kai Huanga3eaa862015-11-04 13:46:05 +08004257 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08004258
Sean Christophersonbecdad82020-09-23 09:50:45 -07004259 if (cpu_has_vmx_xsaves()) {
Paolo Bonzini3db13482017-08-24 14:48:03 +02004260 /* Exposing XSAVES only when XSAVE is exposed */
4261 bool xsaves_enabled =
Sean Christopherson96be4e02019-12-10 14:44:15 -08004262 boot_cpu_has(X86_FEATURE_XSAVE) &&
Paolo Bonzini3db13482017-08-24 14:48:03 +02004263 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
4264 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
4265
Aaron Lewis72041602019-10-21 16:30:20 -07004266 vcpu->arch.xsaves_enabled = xsaves_enabled;
4267
Sean Christopherson8b50b922020-09-24 17:30:11 -07004268 vmx_adjust_secondary_exec_control(vmx, &exec_control,
4269 SECONDARY_EXEC_XSAVES,
4270 xsaves_enabled, false);
Paolo Bonzini3db13482017-08-24 14:48:03 +02004271 }
4272
Sean Christopherson36fa06f2021-05-04 10:17:26 -07004273 /*
4274 * RDPID is also gated by ENABLE_RDTSCP, turn on the control if either
4275 * feature is exposed to the guest. This creates a virtualization hole
4276 * if both are supported in hardware but only one is exposed to the
4277 * guest, but letting the guest execute RDTSCP or RDPID when either one
4278 * is advertised is preferable to emulating the advertised instruction
4279 * in KVM on #UD, and obviously better than incorrectly injecting #UD.
4280 */
4281 if (cpu_has_vmx_rdtscp()) {
4282 bool rdpid_or_rdtscp_enabled =
4283 guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) ||
4284 guest_cpuid_has(vcpu, X86_FEATURE_RDPID);
4285
4286 vmx_adjust_secondary_exec_control(vmx, &exec_control,
4287 SECONDARY_EXEC_ENABLE_RDTSCP,
4288 rdpid_or_rdtscp_enabled, false);
4289 }
Sean Christopherson8b50b922020-09-24 17:30:11 -07004290 vmx_adjust_sec_exec_feature(vmx, &exec_control, invpcid, INVPCID);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004291
Sean Christopherson8b50b922020-09-24 17:30:11 -07004292 vmx_adjust_sec_exec_exiting(vmx, &exec_control, rdrand, RDRAND);
4293 vmx_adjust_sec_exec_exiting(vmx, &exec_control, rdseed, RDSEED);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004294
Sean Christopherson8b50b922020-09-24 17:30:11 -07004295 vmx_adjust_sec_exec_control(vmx, &exec_control, waitpkg, WAITPKG,
4296 ENABLE_USR_WAIT_PAUSE, false);
Tao Xue69e72fa2019-07-16 14:55:49 +08004297
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08004298 if (!vcpu->kvm->arch.bus_lock_detection_enabled)
4299 exec_control &= ~SECONDARY_EXEC_BUS_LOCK_DETECTION;
4300
Paolo Bonzini80154d72017-08-24 13:55:35 +02004301 vmx->secondary_exec_control = exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004302}
4303
Wanpeng Lif53cd632014-12-02 19:14:58 +08004304#define VMX_XSS_EXIT_BITMAP 0
Avi Kivity6aa8b732006-12-10 02:21:36 -08004305
Sean Christopherson944c3462018-12-03 13:53:09 -08004306/*
Xiaoyao Li1b842922019-10-20 17:11:01 +08004307 * Noting that the initialization of Guest-state Area of VMCS is in
4308 * vmx_vcpu_reset().
Sean Christopherson944c3462018-12-03 13:53:09 -08004309 */
Xiaoyao Li1b842922019-10-20 17:11:01 +08004310static void init_vmcs(struct vcpu_vmx *vmx)
Sean Christopherson944c3462018-12-03 13:53:09 -08004311{
Sean Christopherson944c3462018-12-03 13:53:09 -08004312 if (nested)
Xiaoyao Li1b842922019-10-20 17:11:01 +08004313 nested_vmx_set_vmcs_shadowing_bitmap();
Sean Christopherson944c3462018-12-03 13:53:09 -08004314
Sheng Yang25c5f222008-03-28 13:18:56 +08004315 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004316 vmcs_write64(MSR_BITMAP, __pa(vmx->vmcs01.msr_bitmap));
Sheng Yang25c5f222008-03-28 13:18:56 +08004317
Avi Kivity6aa8b732006-12-10 02:21:36 -08004318 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
4319
Avi Kivity6aa8b732006-12-10 02:21:36 -08004320 /* Control */
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004321 pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004322
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004323 exec_controls_set(vmx, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004324
Dan Williamsdfa169b2016-06-02 11:17:24 -07004325 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +02004326 vmx_compute_secondary_exec_control(vmx);
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004327 secondary_exec_controls_set(vmx, vmx->secondary_exec_control);
Dan Williamsdfa169b2016-06-02 11:17:24 -07004328 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08004329
Andrey Smetanind62caab2015-11-10 15:36:33 +03004330 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08004331 vmcs_write64(EOI_EXIT_BITMAP0, 0);
4332 vmcs_write64(EOI_EXIT_BITMAP1, 0);
4333 vmcs_write64(EOI_EXIT_BITMAP2, 0);
4334 vmcs_write64(EOI_EXIT_BITMAP3, 0);
4335
4336 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08004337
Li RongQing0bcf2612015-12-03 13:29:34 +08004338 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08004339 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08004340 }
4341
Wanpeng Lib31c1142018-03-12 04:53:04 -07004342 if (!kvm_pause_in_guest(vmx->vcpu.kvm)) {
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004343 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02004344 vmx->ple_window = ple_window;
4345 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004346 }
4347
Xiao Guangrongc3707952011-07-12 03:28:04 +08004348 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
4349 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004350 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
4351
Avi Kivity9581d442010-10-19 16:46:55 +02004352 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
4353 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004354 vmx_set_constant_host_state(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004355 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
4356 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004357
Bandan Das2a499e42017-08-03 15:54:41 -04004358 if (cpu_has_vmx_vmfunc())
4359 vmcs_write64(VM_FUNCTION_CONTROL, 0);
4360
Eddie Dong2cc51562007-05-21 07:28:09 +03004361 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
4362 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004363 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host.val));
Eddie Dong2cc51562007-05-21 07:28:09 +03004364 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004365 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest.val));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004366
Radim Krčmář74545702015-04-27 15:11:25 +02004367 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
4368 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08004369
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004370 vm_exit_controls_set(vmx, vmx_vmexit_ctrl());
Avi Kivity6aa8b732006-12-10 02:21:36 -08004371
4372 /* 22.2.1, 20.8.1 */
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004373 vm_entry_controls_set(vmx, vmx_vmentry_ctrl());
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004374
Sean Christophersonfa71e952020-07-02 21:04:22 -07004375 vmx->vcpu.arch.cr0_guest_owned_bits = KVM_POSSIBLE_CR0_GUEST_BITS;
4376 vmcs_writel(CR0_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr0_guest_owned_bits);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004377
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004378 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004379
Xiaoyao Li35fbe0d2019-10-20 17:10:58 +08004380 if (vmx->vpid != 0)
4381 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
4382
Sean Christophersonbecdad82020-09-23 09:50:45 -07004383 if (cpu_has_vmx_xsaves())
Wanpeng Lif53cd632014-12-02 19:14:58 +08004384 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
4385
Peter Feiner4e595162016-07-07 14:49:58 -07004386 if (enable_pml) {
Peter Feiner4e595162016-07-07 14:49:58 -07004387 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
4388 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
4389 }
Sean Christopherson0b665d32018-08-14 09:33:34 -07004390
Sean Christopherson72add912021-04-12 16:21:42 +12004391 vmx_write_encls_bitmap(&vmx->vcpu, NULL);
Chao Peng2ef444f2018-10-24 16:05:12 +08004392
Sean Christopherson2ef76192020-03-02 15:56:22 -08004393 if (vmx_pt_mode_is_host_guest()) {
Chao Peng2ef444f2018-10-24 16:05:12 +08004394 memset(&vmx->pt_desc, 0, sizeof(vmx->pt_desc));
4395 /* Bit[6~0] are forced to 1, writes are ignored. */
4396 vmx->pt_desc.guest.output_mask = 0x7F;
4397 vmcs_write64(GUEST_IA32_RTIT_CTL, 0);
4398 }
Sean Christophersonc5c9f922021-07-13 09:33:13 -07004399
Sean Christophersone5494942021-07-13 09:33:21 -07004400 vmcs_write32(GUEST_SYSENTER_CS, 0);
4401 vmcs_writel(GUEST_SYSENTER_ESP, 0);
4402 vmcs_writel(GUEST_SYSENTER_EIP, 0);
4403 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
4404
4405 if (cpu_has_vmx_tpr_shadow()) {
4406 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
4407 if (cpu_need_tpr_shadow(&vmx->vcpu))
4408 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
4409 __pa(vmx->vcpu.arch.apic->regs));
4410 vmcs_write32(TPR_THRESHOLD, 0);
4411 }
4412
Sean Christophersonc5c9f922021-07-13 09:33:13 -07004413 vmx_setup_uret_msrs(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004414}
4415
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004416static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004417{
4418 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004419
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004420 vmx->rmode.vm86_active = 0;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004421 vmx->spec_ctrl = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004422
Tao Xu6e3ba4a2019-07-16 14:55:50 +08004423 vmx->msr_ia32_umwait_control = 0;
4424
Wanpeng Li95c06542019-09-05 14:26:28 +08004425 vmx->hv_deadline_tsc = -1;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004426 kvm_set_cr8(vcpu, 0);
4427
Avi Kivity2fb92db2011-04-27 19:42:18 +03004428 vmx_segment_cache_clear(vmx);
4429
Avi Kivity5706be02008-08-20 15:07:31 +03004430 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01004431 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004432 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004433
4434 seg_setup(VCPU_SREG_DS);
4435 seg_setup(VCPU_SREG_ES);
4436 seg_setup(VCPU_SREG_FS);
4437 seg_setup(VCPU_SREG_GS);
4438 seg_setup(VCPU_SREG_SS);
4439
4440 vmcs_write16(GUEST_TR_SELECTOR, 0);
4441 vmcs_writel(GUEST_TR_BASE, 0);
4442 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
4443 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4444
4445 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
4446 vmcs_writel(GUEST_LDTR_BASE, 0);
4447 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
4448 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
4449
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004450 vmcs_writel(GUEST_GDTR_BASE, 0);
4451 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
4452
4453 vmcs_writel(GUEST_IDTR_BASE, 0);
4454 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
4455
Anthony Liguori443381a2010-12-06 10:53:38 -06004456 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004457 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004458 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Wanpeng Lia554d202017-10-11 05:10:19 -07004459 if (kvm_mpx_supported())
4460 vmcs_write64(GUEST_BNDCFGS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004461
Avi Kivity6aa8b732006-12-10 02:21:36 -08004462 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
4463
Paolo Bonzinia73896c2014-11-02 07:54:30 +01004464 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004465
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004466 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004467}
4468
Jason Baronb6a7cc32021-01-14 22:27:54 -05004469static void vmx_enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004470{
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08004471 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_INTR_WINDOW_EXITING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004472}
4473
Jason Baronb6a7cc32021-01-14 22:27:54 -05004474static void vmx_enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004475{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004476 if (!enable_vnmi ||
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004477 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jason Baronb6a7cc32021-01-14 22:27:54 -05004478 vmx_enable_irq_window(vcpu);
Jan Kiszkac9a79532014-03-07 20:03:15 +01004479 return;
4480 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02004481
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08004482 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_NMI_WINDOW_EXITING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004483}
4484
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004485static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03004486{
Avi Kivity9c8cba32007-11-22 11:42:59 +02004487 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004488 uint32_t intr;
4489 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02004490
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004491 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004492
Avi Kivityfa89a812008-09-01 15:57:51 +03004493 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004494 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05004495 int inc_eip = 0;
4496 if (vcpu->arch.interrupt.soft)
4497 inc_eip = vcpu->arch.event_exit_inst_len;
Sean Christopherson9497e1f2019-08-27 14:40:36 -07004498 kvm_inject_realmode_interrupt(vcpu, irq, inc_eip);
Eddie Dong85f455f2007-07-06 12:20:49 +03004499 return;
4500 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004501 intr = irq | INTR_INFO_VALID_MASK;
4502 if (vcpu->arch.interrupt.soft) {
4503 intr |= INTR_TYPE_SOFT_INTR;
4504 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
4505 vmx->vcpu.arch.event_exit_inst_len);
4506 } else
4507 intr |= INTR_TYPE_EXT_INTR;
4508 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004509
4510 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03004511}
4512
Sheng Yangf08864b2008-05-15 18:23:25 +08004513static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
4514{
Jan Kiszka66a5a342008-09-26 09:30:51 +02004515 struct vcpu_vmx *vmx = to_vmx(vcpu);
4516
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004517 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004518 /*
4519 * Tracking the NMI-blocked state in software is built upon
4520 * finding the next open IRQ window. This, in turn, depends on
4521 * well-behaving guests: They have to keep IRQs disabled at
4522 * least as long as the NMI handler runs. Otherwise we may
4523 * cause NMI nesting, maybe breaking the guest. But as this is
4524 * highly unlikely, we can live with the residual risk.
4525 */
4526 vmx->loaded_vmcs->soft_vnmi_blocked = 1;
4527 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4528 }
4529
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004530 ++vcpu->stat.nmi_injections;
4531 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004532
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004533 if (vmx->rmode.vm86_active) {
Sean Christopherson9497e1f2019-08-27 14:40:36 -07004534 kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0);
Jan Kiszka66a5a342008-09-26 09:30:51 +02004535 return;
4536 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08004537
Sheng Yangf08864b2008-05-15 18:23:25 +08004538 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
4539 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004540
4541 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08004542}
4543
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004544bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004545{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004546 struct vcpu_vmx *vmx = to_vmx(vcpu);
4547 bool masked;
4548
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004549 if (!enable_vnmi)
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004550 return vmx->loaded_vmcs->soft_vnmi_blocked;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004551 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02004552 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004553 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
4554 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4555 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004556}
4557
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004558void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004559{
4560 struct vcpu_vmx *vmx = to_vmx(vcpu);
4561
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004562 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004563 if (vmx->loaded_vmcs->soft_vnmi_blocked != masked) {
4564 vmx->loaded_vmcs->soft_vnmi_blocked = masked;
4565 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4566 }
4567 } else {
4568 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4569 if (masked)
4570 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
4571 GUEST_INTR_STATE_NMI);
4572 else
4573 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
4574 GUEST_INTR_STATE_NMI);
4575 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004576}
4577
Sean Christopherson1b660b62020-04-22 19:25:44 -07004578bool vmx_nmi_blocked(struct kvm_vcpu *vcpu)
4579{
4580 if (is_guest_mode(vcpu) && nested_exit_on_nmi(vcpu))
4581 return false;
4582
4583 if (!enable_vnmi && to_vmx(vcpu)->loaded_vmcs->soft_vnmi_blocked)
4584 return true;
4585
4586 return (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4587 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI |
4588 GUEST_INTR_STATE_NMI));
4589}
4590
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004591static int vmx_nmi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Jan Kiszka2505dc92013-04-14 12:12:47 +02004592{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01004593 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004594 return -EBUSY;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02004595
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004596 /* An NMI must not be injected into L2 if it's supposed to VM-Exit. */
4597 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_nmi(vcpu))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004598 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004599
Sean Christopherson1b660b62020-04-22 19:25:44 -07004600 return !vmx_nmi_blocked(vcpu);
4601}
Sean Christopherson429ab572020-04-22 19:25:42 -07004602
Sean Christopherson1b660b62020-04-22 19:25:44 -07004603bool vmx_interrupt_blocked(struct kvm_vcpu *vcpu)
4604{
4605 if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
Sean Christopherson88c604b2020-04-22 19:25:41 -07004606 return false;
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004607
Sean Christopherson7ab0abd2020-04-22 19:25:50 -07004608 return !(vmx_get_rflags(vcpu) & X86_EFLAGS_IF) ||
Sean Christopherson1b660b62020-04-22 19:25:44 -07004609 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4610 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Jan Kiszka2505dc92013-04-14 12:12:47 +02004611}
4612
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004613static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Gleb Natapov78646122009-03-23 12:12:11 +02004614{
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004615 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004616 return -EBUSY;
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004617
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004618 /*
4619 * An IRQ must not be injected into L2 if it's supposed to VM-Exit,
4620 * e.g. if the IRQ arrived asynchronously after checking nested events.
4621 */
4622 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004623 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004624
Sean Christopherson1b660b62020-04-22 19:25:44 -07004625 return !vmx_interrupt_blocked(vcpu);
Gleb Natapov78646122009-03-23 12:12:11 +02004626}
4627
Izik Eiduscbc94022007-10-25 00:29:55 +02004628static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
4629{
Peter Xuff5a9832020-09-30 21:20:33 -04004630 void __user *ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02004631
Sean Christophersonf7eaeb02018-03-05 12:04:36 -08004632 if (enable_unrestricted_guest)
4633 return 0;
4634
Peter Xu6a3c6232020-01-09 09:57:16 -05004635 mutex_lock(&kvm->slots_lock);
4636 ret = __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
4637 PAGE_SIZE * 3);
4638 mutex_unlock(&kvm->slots_lock);
4639
Peter Xuff5a9832020-09-30 21:20:33 -04004640 if (IS_ERR(ret))
4641 return PTR_ERR(ret);
4642
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004643 to_kvm_vmx(kvm)->tss_addr = addr;
Peter Xuff5a9832020-09-30 21:20:33 -04004644
4645 return init_rmode_tss(kvm, ret);
Izik Eiduscbc94022007-10-25 00:29:55 +02004646}
4647
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004648static int vmx_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
4649{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004650 to_kvm_vmx(kvm)->ept_identity_map_addr = ident_addr;
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004651 return 0;
4652}
4653
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004654static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004655{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004656 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004657 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01004658 /*
4659 * Update instruction length as we may reinject the exception
4660 * from user space while in guest debugging mode.
4661 */
4662 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
4663 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004664 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004665 return false;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004666 fallthrough;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004667 case DB_VECTOR:
Miaohe Lina8cfbae2020-02-19 10:45:48 +08004668 return !(vcpu->guest_debug &
4669 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP));
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004670 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004671 case OF_VECTOR:
4672 case BR_VECTOR:
4673 case UD_VECTOR:
4674 case DF_VECTOR:
4675 case SS_VECTOR:
4676 case GP_VECTOR:
4677 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004678 return true;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004679 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004680 return false;
4681}
4682
4683static int handle_rmode_exception(struct kvm_vcpu *vcpu,
4684 int vec, u32 err_code)
4685{
4686 /*
4687 * Instruction with address size override prefix opcode 0x67
4688 * Cause the #SS fault with 0 error code in VM86 mode.
4689 */
4690 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004691 if (kvm_emulate_instruction(vcpu, 0)) {
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004692 if (vcpu->arch.halt_request) {
4693 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06004694 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004695 }
4696 return 1;
4697 }
4698 return 0;
4699 }
4700
4701 /*
4702 * Forward all other exceptions that are valid in real mode.
4703 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
4704 * the required debugging infrastructure rework.
4705 */
4706 kvm_queue_exception(vcpu, vec);
4707 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004708}
4709
Avi Kivity851ba692009-08-24 11:10:17 +03004710static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08004711{
Sean Christopherson95b5a482019-04-19 22:50:59 -07004712 /* handled by vmx_vcpu_run() */
Andi Kleena0861c02009-06-08 17:37:09 +08004713 return 1;
4714}
4715
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004716/*
4717 * If the host has split lock detection disabled, then #AC is
4718 * unconditionally injected into the guest, which is the pre split lock
4719 * detection behaviour.
4720 *
4721 * If the host has split lock detection enabled then #AC is
4722 * only injected into the guest when:
4723 * - Guest CPL == 3 (user mode)
4724 * - Guest has #AC detection enabled in CR0
4725 * - Guest EFLAGS has AC bit set
4726 */
Sean Christophersonb33bb782021-06-22 10:22:44 -07004727bool vmx_guest_inject_ac(struct kvm_vcpu *vcpu)
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004728{
4729 if (!boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
4730 return true;
4731
4732 return vmx_get_cpl(vcpu) == 3 && kvm_read_cr0_bits(vcpu, X86_CR0_AM) &&
4733 (kvm_get_rflags(vcpu) & X86_EFLAGS_AC);
4734}
4735
Sean Christopherson95b5a482019-04-19 22:50:59 -07004736static int handle_exception_nmi(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004737{
Avi Kivity1155f762007-11-22 11:30:47 +02004738 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004739 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004740 u32 intr_info, ex_no, error_code;
Yuan Yaoe87e46d2021-05-26 14:38:28 +08004741 unsigned long cr2, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004742 u32 vect_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004743
Avi Kivity1155f762007-11-22 11:30:47 +02004744 vect_info = vmx->idt_vectoring_info;
Sean Christophersonf27ad732020-04-27 10:18:37 -07004745 intr_info = vmx_get_intr_info(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004746
Paolo Bonzini2ea72032019-06-06 14:57:25 +02004747 if (is_machine_check(intr_info) || is_nmi(intr_info))
Sean Christopherson95b5a482019-04-19 22:50:59 -07004748 return 1; /* handled by handle_exception_nmi_irqoff() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03004749
Wanpeng Li082d06e2018-04-03 16:28:48 -07004750 if (is_invalid_opcode(intr_info))
4751 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004752
Avi Kivity6aa8b732006-12-10 02:21:36 -08004753 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06004754 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004755 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004756
Liran Alon9e869482018-03-12 13:12:51 +02004757 if (!vmx->rmode.vm86_active && is_gp_fault(intr_info)) {
4758 WARN_ON_ONCE(!enable_vmware_backdoor);
Sean Christophersona6c6ed12019-08-27 14:40:30 -07004759
4760 /*
4761 * VMware backdoor emulation on #GP interception only handles
4762 * IN{S}, OUT{S}, and RDPMC, none of which generate a non-zero
4763 * error code on #GP.
4764 */
4765 if (error_code) {
4766 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
4767 return 1;
4768 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004769 return kvm_emulate_instruction(vcpu, EMULTYPE_VMWARE_GP);
Liran Alon9e869482018-03-12 13:12:51 +02004770 }
4771
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004772 /*
4773 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
4774 * MMIO, it is better to report an internal error.
4775 * See the comments in vmx_handle_exit.
4776 */
4777 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
4778 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
4779 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4780 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Jim Mattson1aa561b2020-06-03 16:56:21 -07004781 vcpu->run->internal.ndata = 4;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004782 vcpu->run->internal.data[0] = vect_info;
4783 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02004784 vcpu->run->internal.data[2] = error_code;
Jim Mattson8a14fe42020-06-03 16:56:22 -07004785 vcpu->run->internal.data[3] = vcpu->arch.last_vmentry_cpu;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004786 return 0;
4787 }
4788
Avi Kivity6aa8b732006-12-10 02:21:36 -08004789 if (is_page_fault(intr_info)) {
Sean Christopherson5addc232020-04-15 13:34:53 -07004790 cr2 = vmx_get_exit_qual(vcpu);
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02004791 if (enable_ept && !vcpu->arch.apf.host_apf_flags) {
4792 /*
4793 * EPT will cause page fault only if we need to
4794 * detect illegal GPAs.
4795 */
Mohammed Gamalb96e6502020-09-03 16:11:22 +02004796 WARN_ON_ONCE(!allow_smaller_maxphyaddr);
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02004797 kvm_fixup_and_inject_pf_error(vcpu, cr2, error_code);
4798 return 1;
4799 } else
4800 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004801 }
4802
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004803 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004804
4805 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
4806 return handle_rmode_exception(vcpu, ex_no, error_code);
4807
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004808 switch (ex_no) {
4809 case DB_VECTOR:
Sean Christopherson5addc232020-04-15 13:34:53 -07004810 dr6 = vmx_get_exit_qual(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004811 if (!(vcpu->guest_debug &
4812 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Linus Torvalds32d43cd2018-03-20 12:16:59 -07004813 if (is_icebp(intr_info))
Sean Christopherson1957aa62019-08-27 14:40:39 -07004814 WARN_ON(!skip_emulated_instruction(vcpu));
Huw Daviesfd2a4452014-04-16 10:02:51 +01004815
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04004816 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004817 return 1;
4818 }
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08004819 kvm_run->debug.arch.dr6 = dr6 | DR6_ACTIVE_LOW;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004820 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004821 fallthrough;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004822 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01004823 /*
4824 * Update instruction length as we may reinject #BP from
4825 * user space while in guest debugging mode. Reading it for
4826 * #DB as well causes no harm, it is not used in that case.
4827 */
4828 vmx->vcpu.arch.event_exit_inst_len =
4829 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004830 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Yuan Yaoe87e46d2021-05-26 14:38:28 +08004831 kvm_run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004832 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004833 break;
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004834 case AC_VECTOR:
Sean Christophersonb33bb782021-06-22 10:22:44 -07004835 if (vmx_guest_inject_ac(vcpu)) {
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004836 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
4837 return 1;
4838 }
4839
4840 /*
4841 * Handle split lock. Depending on detection mode this will
4842 * either warn and disable split lock detection for this
4843 * task or force SIGBUS on it.
4844 */
4845 if (handle_guest_split_lock(kvm_rip_read(vcpu)))
4846 return 1;
4847 fallthrough;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004848 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004849 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
4850 kvm_run->ex.exception = ex_no;
4851 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004852 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004853 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004854 return 0;
4855}
4856
Andrea Arcangelif399e602019-11-04 17:59:58 -05004857static __always_inline int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004858{
Avi Kivity1165f5f2007-04-19 17:27:43 +03004859 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004860 return 1;
4861}
4862
Avi Kivity851ba692009-08-24 11:10:17 +03004863static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08004864{
Avi Kivity851ba692009-08-24 11:10:17 +03004865 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07004866 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08004867 return 0;
4868}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004869
Avi Kivity851ba692009-08-24 11:10:17 +03004870static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004871{
He, Qingbfdaab02007-09-12 14:18:28 +08004872 unsigned long exit_qualification;
Sean Christophersondca7f122018-03-08 08:57:27 -08004873 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02004874 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004875
Sean Christopherson5addc232020-04-15 13:34:53 -07004876 exit_qualification = vmx_get_exit_qual(vcpu);
Avi Kivity039576c2007-03-20 12:46:50 +02004877 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004878
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004879 ++vcpu->stat.io_exits;
4880
Sean Christopherson432baf62018-03-08 08:57:26 -08004881 if (string)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004882 return kvm_emulate_instruction(vcpu, 0);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004883
4884 port = exit_qualification >> 16;
4885 size = (exit_qualification & 7) + 1;
Sean Christopherson432baf62018-03-08 08:57:26 -08004886 in = (exit_qualification & 8) != 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004887
Sean Christophersondca7f122018-03-08 08:57:27 -08004888 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004889}
4890
Ingo Molnar102d8322007-02-19 14:37:47 +02004891static void
4892vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
4893{
4894 /*
4895 * Patch in the VMCALL instruction:
4896 */
4897 hypercall[0] = 0x0f;
4898 hypercall[1] = 0x01;
4899 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02004900}
4901
Guo Chao0fa06072012-06-28 15:16:19 +08004902/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004903static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
4904{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004905 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004906 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4907 unsigned long orig_val = val;
4908
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004909 /*
4910 * We get here when L2 changed cr0 in a way that did not change
4911 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004912 * but did change L0 shadowed bits. So we first calculate the
4913 * effective cr0 value that L1 would like to write into the
4914 * hardware. It consists of the L2-owned bits from the new
4915 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004916 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004917 val = (val & ~vmcs12->cr0_guest_host_mask) |
4918 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
4919
David Matlack38991522016-11-29 18:14:08 -08004920 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004921 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004922
4923 if (kvm_set_cr0(vcpu, val))
4924 return 1;
4925 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004926 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004927 } else {
4928 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08004929 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004930 return 1;
David Matlack38991522016-11-29 18:14:08 -08004931
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004932 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004933 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004934}
4935
4936static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
4937{
4938 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004939 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4940 unsigned long orig_val = val;
4941
4942 /* analogously to handle_set_cr0 */
4943 val = (val & ~vmcs12->cr4_guest_host_mask) |
4944 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
4945 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004946 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004947 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004948 return 0;
4949 } else
4950 return kvm_set_cr4(vcpu, val);
4951}
4952
Paolo Bonzini0367f202016-07-12 10:44:55 +02004953static int handle_desc(struct kvm_vcpu *vcpu)
4954{
4955 WARN_ON(!(vcpu->arch.cr4 & X86_CR4_UMIP));
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004956 return kvm_emulate_instruction(vcpu, 0);
Paolo Bonzini0367f202016-07-12 10:44:55 +02004957}
4958
Avi Kivity851ba692009-08-24 11:10:17 +03004959static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004960{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004961 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004962 int cr;
4963 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03004964 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08004965 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004966
Sean Christopherson5addc232020-04-15 13:34:53 -07004967 exit_qualification = vmx_get_exit_qual(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004968 cr = exit_qualification & 15;
4969 reg = (exit_qualification >> 8) & 15;
4970 switch ((exit_qualification >> 4) & 3) {
4971 case 0: /* mov to cr */
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07004972 val = kvm_register_read(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004973 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004974 switch (cr) {
4975 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004976 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004977 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004978 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08004979 WARN_ON_ONCE(enable_unrestricted_guest);
Sean Christopherson67369272021-07-02 15:04:25 -07004980
Avi Kivity23902182010-06-10 17:02:16 +03004981 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004982 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004983 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004984 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004985 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004986 case 8: {
4987 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03004988 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004989 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004990 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004991 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08004992 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004993 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08004994 return ret;
4995 /*
4996 * TODO: we might be squashing a
4997 * KVM_GUESTDBG_SINGLESTEP-triggered
4998 * KVM_EXIT_DEBUG here.
4999 */
Avi Kivity851ba692009-08-24 11:10:17 +03005000 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005001 return 0;
5002 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02005003 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005004 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03005005 case 2: /* clts */
Sean Christopherson67369272021-07-02 15:04:25 -07005006 KVM_BUG(1, vcpu->kvm, "Guest always owns CR0.TS");
5007 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005008 case 1: /*mov from cr*/
5009 switch (cr) {
5010 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08005011 WARN_ON_ONCE(enable_unrestricted_guest);
Sean Christopherson67369272021-07-02 15:04:25 -07005012
Avi Kivity9f8fe502010-12-05 17:30:00 +02005013 val = kvm_read_cr3(vcpu);
5014 kvm_register_write(vcpu, reg, val);
5015 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005016 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005017 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005018 val = kvm_get_cr8(vcpu);
5019 kvm_register_write(vcpu, reg, val);
5020 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005021 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005022 }
5023 break;
5024 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02005025 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02005026 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02005027 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005028
Kyle Huey6affcbe2016-11-29 12:40:40 -08005029 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005030 default:
5031 break;
5032 }
Avi Kivity851ba692009-08-24 11:10:17 +03005033 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03005034 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08005035 (int)(exit_qualification >> 4) & 3, cr);
5036 return 0;
5037}
5038
Avi Kivity851ba692009-08-24 11:10:17 +03005039static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005040{
He, Qingbfdaab02007-09-12 14:18:28 +08005041 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005042 int dr, dr7, reg;
Paolo Bonzini996ff542020-12-14 07:49:54 -05005043 int err = 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005044
Sean Christopherson5addc232020-04-15 13:34:53 -07005045 exit_qualification = vmx_get_exit_qual(vcpu);
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005046 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
5047
5048 /* First, if DR does not exist, trigger UD */
5049 if (!kvm_require_dr(vcpu, dr))
5050 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005051
Paolo Bonzini996ff542020-12-14 07:49:54 -05005052 if (kvm_x86_ops.get_cpl(vcpu) > 0)
5053 goto out;
5054
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005055 dr7 = vmcs_readl(GUEST_DR7);
5056 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005057 /*
5058 * As the vm-exit takes precedence over the debug trap, we
5059 * need to emulate the latter, either for the host or the
5060 * guest debugging itself.
5061 */
5062 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08005063 vcpu->run->debug.arch.dr6 = DR6_BD | DR6_ACTIVE_LOW;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005064 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02005065 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005066 vcpu->run->debug.arch.exception = DB_VECTOR;
5067 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005068 return 0;
5069 } else {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04005070 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BD);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005071 return 1;
5072 }
5073 }
5074
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005075 if (vcpu->guest_debug == 0) {
Sean Christopherson2183f562019-05-07 12:17:56 -07005076 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005077
5078 /*
5079 * No more DR vmexits; force a reload of the debug registers
5080 * and reenter on this instruction. The next vmexit will
5081 * retrieve the full state of the debug registers.
5082 */
5083 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
5084 return 1;
5085 }
5086
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005087 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
5088 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03005089 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005090
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05005091 kvm_get_dr(vcpu, dr, &val);
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005092 kvm_register_write(vcpu, reg, val);
Paolo Bonzini996ff542020-12-14 07:49:54 -05005093 err = 0;
5094 } else {
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07005095 err = kvm_set_dr(vcpu, dr, kvm_register_read(vcpu, reg));
Paolo Bonzini996ff542020-12-14 07:49:54 -05005096 }
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005097
Paolo Bonzini996ff542020-12-14 07:49:54 -05005098out:
5099 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005100}
5101
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005102static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
5103{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005104 get_debugreg(vcpu->arch.db[0], 0);
5105 get_debugreg(vcpu->arch.db[1], 1);
5106 get_debugreg(vcpu->arch.db[2], 2);
5107 get_debugreg(vcpu->arch.db[3], 3);
5108 get_debugreg(vcpu->arch.dr6, 6);
5109 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
5110
5111 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Sean Christopherson2183f562019-05-07 12:17:56 -07005112 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005113}
5114
Gleb Natapov020df072010-04-13 10:05:23 +03005115static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
5116{
5117 vmcs_writel(GUEST_DR7, val);
5118}
5119
Avi Kivity851ba692009-08-24 11:10:17 +03005120static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005121{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01005122 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005123 return 1;
5124}
5125
Avi Kivity851ba692009-08-24 11:10:17 +03005126static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005127{
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005128 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_INTR_WINDOW_EXITING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005129
Avi Kivity3842d132010-07-27 12:30:24 +03005130 kvm_make_request(KVM_REQ_EVENT, vcpu);
5131
Jan Kiszkaa26bf122008-09-26 09:30:45 +02005132 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005133 return 1;
5134}
5135
Avi Kivity851ba692009-08-24 11:10:17 +03005136static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03005137{
Sean Christopherson5addc232020-04-15 13:34:53 -07005138 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005139
5140 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005141 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005142}
5143
Avi Kivity851ba692009-08-24 11:10:17 +03005144static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005145{
Kevin Tian58fbbf22011-08-30 13:56:17 +03005146 if (likely(fasteoi)) {
Sean Christopherson5addc232020-04-15 13:34:53 -07005147 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03005148 int access_type, offset;
5149
5150 access_type = exit_qualification & APIC_ACCESS_TYPE;
5151 offset = exit_qualification & APIC_ACCESS_OFFSET;
5152 /*
5153 * Sane guest uses MOV to write EOI, with written value
5154 * not cared. So make a short-circuit here by avoiding
5155 * heavy instruction emulation.
5156 */
5157 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
5158 (offset == APIC_EOI)) {
5159 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005160 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03005161 }
5162 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005163 return kvm_emulate_instruction(vcpu, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08005164}
5165
Yang Zhangc7c9c562013-01-25 10:18:51 +08005166static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
5167{
Sean Christopherson5addc232020-04-15 13:34:53 -07005168 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005169 int vector = exit_qualification & 0xff;
5170
5171 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
5172 kvm_apic_set_eoi_accelerated(vcpu, vector);
5173 return 1;
5174}
5175
Yang Zhang83d4c282013-01-25 10:18:49 +08005176static int handle_apic_write(struct kvm_vcpu *vcpu)
5177{
Sean Christopherson5addc232020-04-15 13:34:53 -07005178 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Yang Zhang83d4c282013-01-25 10:18:49 +08005179 u32 offset = exit_qualification & 0xfff;
5180
5181 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
5182 kvm_apic_write_nodecode(vcpu, offset);
5183 return 1;
5184}
5185
Avi Kivity851ba692009-08-24 11:10:17 +03005186static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02005187{
Jan Kiszka60637aa2008-09-26 09:30:47 +02005188 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005189 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02005190 bool has_error_code = false;
5191 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02005192 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005193 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005194
5195 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005196 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005197 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02005198
Sean Christopherson5addc232020-04-15 13:34:53 -07005199 exit_qualification = vmx_get_exit_qual(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005200
5201 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005202 if (reason == TASK_SWITCH_GATE && idt_v) {
5203 switch (type) {
5204 case INTR_TYPE_NMI_INTR:
5205 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02005206 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005207 break;
5208 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005209 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005210 kvm_clear_interrupt_queue(vcpu);
5211 break;
5212 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02005213 if (vmx->idt_vectoring_info &
5214 VECTORING_INFO_DELIVER_CODE_MASK) {
5215 has_error_code = true;
5216 error_code =
5217 vmcs_read32(IDT_VECTORING_ERROR_CODE);
5218 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05005219 fallthrough;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005220 case INTR_TYPE_SOFT_EXCEPTION:
5221 kvm_clear_exception_queue(vcpu);
5222 break;
5223 default:
5224 break;
5225 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02005226 }
Izik Eidus37817f22008-03-24 23:14:53 +02005227 tss_selector = exit_qualification;
5228
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005229 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
5230 type != INTR_TYPE_EXT_INTR &&
5231 type != INTR_TYPE_NMI_INTR))
Sean Christopherson1957aa62019-08-27 14:40:39 -07005232 WARN_ON(!skip_emulated_instruction(vcpu));
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005233
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005234 /*
5235 * TODO: What about debug traps on tss switch?
5236 * Are we supposed to inject them and update dr6?
5237 */
Sean Christopherson10517782019-08-27 14:40:35 -07005238 return kvm_task_switch(vcpu, tss_selector,
5239 type == INTR_TYPE_SOFT_INTR ? idt_index : -1,
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005240 reason, has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02005241}
5242
Avi Kivity851ba692009-08-24 11:10:17 +03005243static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08005244{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005245 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08005246 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01005247 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08005248
Sean Christopherson5addc232020-04-15 13:34:53 -07005249 exit_qualification = vmx_get_exit_qual(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08005250
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005251 /*
5252 * EPT violation happened while executing iret from NMI,
5253 * "blocked by NMI" bit has to be set before next VM entry.
5254 * There are errata that may cause this bit to not be set:
5255 * AAK134, BY25.
5256 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005257 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005258 enable_vnmi &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005259 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005260 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
5261
Sheng Yang14394422008-04-28 12:24:45 +08005262 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005263 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005264
Junaid Shahid27959a42016-12-06 16:46:10 -08005265 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005266 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08005267 ? PFERR_USER_MASK : 0;
5268 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005269 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08005270 ? PFERR_WRITE_MASK : 0;
5271 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005272 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08005273 ? PFERR_FETCH_MASK : 0;
5274 /* ept page table entry is present? */
5275 error_code |= (exit_qualification &
5276 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
5277 EPT_VIOLATION_EXECUTABLE))
5278 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005279
Isaku Yamahata108356022021-04-22 17:22:29 -07005280 error_code |= (exit_qualification & EPT_VIOLATION_GVA_TRANSLATED) != 0 ?
Paolo Bonzinieebed242016-11-28 14:39:58 +01005281 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03005282
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005283 vcpu->arch.exit_qualification = exit_qualification;
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02005284
5285 /*
5286 * Check that the GPA doesn't exceed physical memory limits, as that is
5287 * a guest page fault. We have to emulate the instruction here, because
5288 * if the illegal address is that of a paging structure, then
5289 * EPT_VIOLATION_ACC_WRITE bit is set. Alternatively, if supported we
5290 * would also use advanced VM-exit information for EPT violations to
5291 * reconstruct the page fault error code.
5292 */
Paolo Bonzinic0623f52020-10-21 18:05:58 -04005293 if (unlikely(allow_smaller_maxphyaddr && kvm_vcpu_is_illegal_gpa(vcpu, gpa)))
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02005294 return kvm_emulate_instruction(vcpu, 0);
5295
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005296 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08005297}
5298
Avi Kivity851ba692009-08-24 11:10:17 +03005299static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005300{
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005301 gpa_t gpa;
5302
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12005303 if (!vmx_can_emulate_instruction(vcpu, NULL, 0))
5304 return 1;
5305
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005306 /*
5307 * A nested guest cannot optimize MMIO vmexits, because we have an
5308 * nGPA here instead of the required GPA.
5309 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005310 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005311 if (!is_guest_mode(vcpu) &&
5312 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08005313 trace_kvm_fast_mmio(gpa);
Sean Christopherson1957aa62019-08-27 14:40:39 -07005314 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03005315 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005316
Sean Christophersonc75d0edc2018-03-29 14:48:31 -07005317 return kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005318}
5319
Avi Kivity851ba692009-08-24 11:10:17 +03005320static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08005321{
Sean Christopherson67369272021-07-02 15:04:25 -07005322 if (KVM_BUG_ON(!enable_vnmi, vcpu->kvm))
5323 return -EIO;
5324
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08005325 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_NMI_WINDOW_EXITING);
Sheng Yangf08864b2008-05-15 18:23:25 +08005326 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03005327 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08005328
5329 return 1;
5330}
5331
Mohammed Gamal80ced182009-09-01 12:48:18 +02005332static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005333{
Avi Kivity8b3079a2009-01-05 12:10:54 +02005334 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity49e9d552010-09-19 14:34:08 +02005335 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03005336 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02005337
Sean Christopherson2183f562019-05-07 12:17:56 -07005338 intr_window_requested = exec_controls_get(vmx) &
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005339 CPU_BASED_INTR_WINDOW_EXITING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005340
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01005341 while (vmx->emulation_required && count-- != 0) {
Sean Christophersondb438592020-04-22 19:25:48 -07005342 if (intr_window_requested && !vmx_interrupt_blocked(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02005343 return handle_interrupt_window(&vmx->vcpu);
5344
Radim Krčmář72875d82017-04-26 22:32:19 +02005345 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03005346 return 1;
5347
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005348 if (!kvm_emulate_instruction(vcpu, 0))
Sean Christopherson8fff2712019-08-27 14:40:37 -07005349 return 0;
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005350
Sean Christophersonadd5ff72018-03-23 09:34:00 -07005351 if (vmx->emulation_required && !vmx->rmode.vm86_active &&
Sean Christopherson8fff2712019-08-27 14:40:37 -07005352 vcpu->arch.exception.pending) {
5353 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5354 vcpu->run->internal.suberror =
5355 KVM_INTERNAL_ERROR_EMULATION;
5356 vcpu->run->internal.ndata = 0;
5357 return 0;
5358 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005359
Gleb Natapov8d76c492013-05-08 18:38:44 +03005360 if (vcpu->arch.halt_request) {
5361 vcpu->arch.halt_request = 0;
Sean Christopherson8fff2712019-08-27 14:40:37 -07005362 return kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03005363 }
5364
Sean Christopherson8fff2712019-08-27 14:40:37 -07005365 /*
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02005366 * Note, return 1 and not 0, vcpu_run() will invoke
5367 * xfer_to_guest_mode() which will create a proper return
5368 * code.
Sean Christopherson8fff2712019-08-27 14:40:37 -07005369 */
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02005370 if (__xfer_to_guest_mode_work_pending())
Sean Christopherson8fff2712019-08-27 14:40:37 -07005371 return 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005372 }
5373
Sean Christopherson8fff2712019-08-27 14:40:37 -07005374 return 1;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005375}
5376
5377static void grow_ple_window(struct kvm_vcpu *vcpu)
5378{
5379 struct vcpu_vmx *vmx = to_vmx(vcpu);
Peter Xuc5c5d6f2019-09-06 10:17:21 +08005380 unsigned int old = vmx->ple_window;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005381
Babu Mogerc8e88712018-03-16 16:37:24 -04005382 vmx->ple_window = __grow_ple_window(old, ple_window,
5383 ple_window_grow,
5384 ple_window_max);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005385
Peter Xu4f75bcc2019-09-06 10:17:22 +08005386 if (vmx->ple_window != old) {
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005387 vmx->ple_window_dirty = true;
Peter Xu4f75bcc2019-09-06 10:17:22 +08005388 trace_kvm_ple_window_update(vcpu->vcpu_id,
5389 vmx->ple_window, old);
5390 }
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005391}
5392
5393static void shrink_ple_window(struct kvm_vcpu *vcpu)
5394{
5395 struct vcpu_vmx *vmx = to_vmx(vcpu);
Peter Xuc5c5d6f2019-09-06 10:17:21 +08005396 unsigned int old = vmx->ple_window;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005397
Babu Mogerc8e88712018-03-16 16:37:24 -04005398 vmx->ple_window = __shrink_ple_window(old, ple_window,
5399 ple_window_shrink,
5400 ple_window);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005401
Peter Xu4f75bcc2019-09-06 10:17:22 +08005402 if (vmx->ple_window != old) {
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005403 vmx->ple_window_dirty = true;
Peter Xu4f75bcc2019-09-06 10:17:22 +08005404 trace_kvm_ple_window_update(vcpu->vcpu_id,
5405 vmx->ple_window, old);
5406 }
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005407}
5408
Avi Kivity6aa8b732006-12-10 02:21:36 -08005409/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005410 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
5411 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
5412 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03005413static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005414{
Wanpeng Lib31c1142018-03-12 04:53:04 -07005415 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005416 grow_ple_window(vcpu);
5417
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08005418 /*
5419 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
5420 * VM-execution control is ignored if CPL > 0. OTOH, KVM
5421 * never set PAUSE_EXITING and just set PLE if supported,
5422 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
5423 */
5424 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005425 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005426}
5427
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005428static int handle_monitor_trap(struct kvm_vcpu *vcpu)
5429{
5430 return 1;
5431}
5432
Junaid Shahideb4b2482018-06-27 14:59:14 -07005433static int handle_invpcid(struct kvm_vcpu *vcpu)
5434{
5435 u32 vmx_instruction_info;
5436 unsigned long type;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005437 gva_t gva;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005438 struct {
5439 u64 pcid;
5440 u64 gla;
5441 } operand;
5442
5443 if (!guest_cpuid_has(vcpu, X86_FEATURE_INVPCID)) {
5444 kvm_queue_exception(vcpu, UD_VECTOR);
5445 return 1;
5446 }
5447
5448 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07005449 type = kvm_register_read(vcpu, (vmx_instruction_info >> 28) & 0xf);
Junaid Shahideb4b2482018-06-27 14:59:14 -07005450
5451 if (type > 3) {
5452 kvm_inject_gp(vcpu, 0);
5453 return 1;
5454 }
5455
5456 /* According to the Intel instruction reference, the memory operand
5457 * is read even if it isn't needed (e.g., for type==all)
5458 */
Sean Christopherson5addc232020-04-15 13:34:53 -07005459 if (get_vmx_mem_address(vcpu, vmx_get_exit_qual(vcpu),
Eugene Korenevskyfdb28612019-06-06 00:19:16 +03005460 vmx_instruction_info, false,
5461 sizeof(operand), &gva))
Junaid Shahideb4b2482018-06-27 14:59:14 -07005462 return 1;
5463
Babu Moger97150922020-09-11 14:29:12 -05005464 return kvm_handle_invpcid(vcpu, type, gva);
Junaid Shahideb4b2482018-06-27 14:59:14 -07005465}
5466
Kai Huang843e4332015-01-28 10:54:28 +08005467static int handle_pml_full(struct kvm_vcpu *vcpu)
5468{
5469 unsigned long exit_qualification;
5470
5471 trace_kvm_pml_full(vcpu->vcpu_id);
5472
Sean Christopherson5addc232020-04-15 13:34:53 -07005473 exit_qualification = vmx_get_exit_qual(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005474
5475 /*
5476 * PML buffer FULL happened while executing iret from NMI,
5477 * "blocked by NMI" bit has to be set before next VM entry.
5478 */
5479 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005480 enable_vnmi &&
Kai Huang843e4332015-01-28 10:54:28 +08005481 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
5482 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5483 GUEST_INTR_STATE_NMI);
5484
5485 /*
5486 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
5487 * here.., and there's no userspace involvement needed for PML.
5488 */
5489 return 1;
5490}
5491
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005492static fastpath_t handle_fastpath_preemption_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07005493{
Sean Christopherson804939e2019-05-07 12:18:05 -07005494 struct vcpu_vmx *vmx = to_vmx(vcpu);
5495
5496 if (!vmx->req_immediate_exit &&
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005497 !unlikely(vmx->loaded_vmcs->hv_timer_soft_disabled)) {
Sean Christophersond264ee02018-08-27 15:21:12 -07005498 kvm_lapic_expired_hv_timer(vcpu);
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005499 return EXIT_FASTPATH_REENTER_GUEST;
5500 }
Sean Christopherson804939e2019-05-07 12:18:05 -07005501
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005502 return EXIT_FASTPATH_NONE;
5503}
5504
5505static int handle_preemption_timer(struct kvm_vcpu *vcpu)
5506{
5507 handle_fastpath_preemption_timer(vcpu);
Yunhong Jiang64672c92016-06-13 14:19:59 -07005508 return 1;
5509}
5510
Sean Christophersone4027cf2018-12-03 13:53:12 -08005511/*
5512 * When nested=0, all VMX instruction VM Exits filter here. The handlers
5513 * are overwritten by nested_vmx_setup() when nested=1.
5514 */
5515static int handle_vmx_instruction(struct kvm_vcpu *vcpu)
5516{
5517 kvm_queue_exception(vcpu, UD_VECTOR);
5518 return 1;
5519}
5520
Sean Christopherson9798adb2021-04-12 16:21:38 +12005521#ifndef CONFIG_X86_SGX_KVM
Sean Christopherson0b665d32018-08-14 09:33:34 -07005522static int handle_encls(struct kvm_vcpu *vcpu)
5523{
5524 /*
Sean Christopherson9798adb2021-04-12 16:21:38 +12005525 * SGX virtualization is disabled. There is no software enable bit for
5526 * SGX, so KVM intercepts all ENCLS leafs and injects a #UD to prevent
5527 * the guest from executing ENCLS (when SGX is supported by hardware).
Sean Christopherson0b665d32018-08-14 09:33:34 -07005528 */
5529 kvm_queue_exception(vcpu, UD_VECTOR);
5530 return 1;
5531}
Sean Christopherson9798adb2021-04-12 16:21:38 +12005532#endif /* CONFIG_X86_SGX_KVM */
Sean Christopherson0b665d32018-08-14 09:33:34 -07005533
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005534static int handle_bus_lock_vmexit(struct kvm_vcpu *vcpu)
5535{
5536 vcpu->run->exit_reason = KVM_EXIT_X86_BUS_LOCK;
5537 vcpu->run->flags |= KVM_RUN_X86_BUS_LOCK;
5538 return 0;
5539}
5540
Nadav Har'El0140cae2011-05-25 23:06:28 +03005541/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005542 * The exit handlers return 1 if the exit was handled fully and guest execution
5543 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
5544 * to be done to userspace and return 0.
5545 */
Sean Christophersone4027cf2018-12-03 13:53:12 -08005546static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Sean Christopherson95b5a482019-04-19 22:50:59 -07005547 [EXIT_REASON_EXCEPTION_NMI] = handle_exception_nmi,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005548 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08005549 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08005550 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005551 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005552 [EXIT_REASON_CR_ACCESS] = handle_cr,
5553 [EXIT_REASON_DR_ACCESS] = handle_dr,
Andrea Arcangelif399e602019-11-04 17:59:58 -05005554 [EXIT_REASON_CPUID] = kvm_emulate_cpuid,
5555 [EXIT_REASON_MSR_READ] = kvm_emulate_rdmsr,
5556 [EXIT_REASON_MSR_WRITE] = kvm_emulate_wrmsr,
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005557 [EXIT_REASON_INTERRUPT_WINDOW] = handle_interrupt_window,
Andrea Arcangelif399e602019-11-04 17:59:58 -05005558 [EXIT_REASON_HLT] = kvm_emulate_halt,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005559 [EXIT_REASON_INVD] = kvm_emulate_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03005560 [EXIT_REASON_INVLPG] = handle_invlpg,
Sean Christophersonc483c452021-02-04 16:57:48 -08005561 [EXIT_REASON_RDPMC] = kvm_emulate_rdpmc,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005562 [EXIT_REASON_VMCALL] = kvm_emulate_hypercall,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005563 [EXIT_REASON_VMCLEAR] = handle_vmx_instruction,
5564 [EXIT_REASON_VMLAUNCH] = handle_vmx_instruction,
5565 [EXIT_REASON_VMPTRLD] = handle_vmx_instruction,
5566 [EXIT_REASON_VMPTRST] = handle_vmx_instruction,
5567 [EXIT_REASON_VMREAD] = handle_vmx_instruction,
5568 [EXIT_REASON_VMRESUME] = handle_vmx_instruction,
5569 [EXIT_REASON_VMWRITE] = handle_vmx_instruction,
5570 [EXIT_REASON_VMOFF] = handle_vmx_instruction,
5571 [EXIT_REASON_VMON] = handle_vmx_instruction,
Sheng Yangf78e0e22007-10-29 09:40:42 +08005572 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
5573 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08005574 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08005575 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005576 [EXIT_REASON_WBINVD] = kvm_emulate_wbinvd,
Sean Christopherson92f98952021-02-04 16:57:46 -08005577 [EXIT_REASON_XSETBV] = kvm_emulate_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02005578 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08005579 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Paolo Bonzini0367f202016-07-12 10:44:55 +02005580 [EXIT_REASON_GDTR_IDTR] = handle_desc,
5581 [EXIT_REASON_LDTR_TR] = handle_desc,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005582 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
5583 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005584 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005585 [EXIT_REASON_MWAIT_INSTRUCTION] = kvm_emulate_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005586 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005587 [EXIT_REASON_MONITOR_INSTRUCTION] = kvm_emulate_monitor,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005588 [EXIT_REASON_INVEPT] = handle_vmx_instruction,
5589 [EXIT_REASON_INVVPID] = handle_vmx_instruction,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005590 [EXIT_REASON_RDRAND] = kvm_handle_invalid_op,
5591 [EXIT_REASON_RDSEED] = kvm_handle_invalid_op,
Kai Huang843e4332015-01-28 10:54:28 +08005592 [EXIT_REASON_PML_FULL] = handle_pml_full,
Junaid Shahideb4b2482018-06-27 14:59:14 -07005593 [EXIT_REASON_INVPCID] = handle_invpcid,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005594 [EXIT_REASON_VMFUNC] = handle_vmx_instruction,
Yunhong Jiang64672c92016-06-13 14:19:59 -07005595 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Sean Christopherson0b665d32018-08-14 09:33:34 -07005596 [EXIT_REASON_ENCLS] = handle_encls,
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005597 [EXIT_REASON_BUS_LOCK] = handle_bus_lock_vmexit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005598};
5599
5600static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04005601 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005602
Sean Christopherson235ba742020-09-23 13:13:46 -07005603static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2,
5604 u32 *intr_info, u32 *error_code)
Avi Kivity586f9602010-11-18 13:09:54 +02005605{
Sean Christopherson235ba742020-09-23 13:13:46 -07005606 struct vcpu_vmx *vmx = to_vmx(vcpu);
5607
Sean Christopherson5addc232020-04-15 13:34:53 -07005608 *info1 = vmx_get_exit_qual(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08005609 if (!(vmx->exit_reason.failed_vmentry)) {
Sean Christopherson235ba742020-09-23 13:13:46 -07005610 *info2 = vmx->idt_vectoring_info;
5611 *intr_info = vmx_get_intr_info(vcpu);
5612 if (is_exception_with_error_code(*intr_info))
5613 *error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
5614 else
5615 *error_code = 0;
5616 } else {
5617 *info2 = 0;
5618 *intr_info = 0;
5619 *error_code = 0;
5620 }
Avi Kivity586f9602010-11-18 13:09:54 +02005621}
5622
Kai Huanga3eaa862015-11-04 13:46:05 +08005623static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08005624{
Kai Huanga3eaa862015-11-04 13:46:05 +08005625 if (vmx->pml_pg) {
5626 __free_page(vmx->pml_pg);
5627 vmx->pml_pg = NULL;
5628 }
Kai Huang843e4332015-01-28 10:54:28 +08005629}
5630
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005631static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08005632{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005633 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005634 u64 *pml_buf;
5635 u16 pml_idx;
5636
5637 pml_idx = vmcs_read16(GUEST_PML_INDEX);
5638
5639 /* Do nothing if PML buffer is empty */
5640 if (pml_idx == (PML_ENTITY_NUM - 1))
5641 return;
5642
5643 /* PML index always points to next available PML buffer entity */
5644 if (pml_idx >= PML_ENTITY_NUM)
5645 pml_idx = 0;
5646 else
5647 pml_idx++;
5648
5649 pml_buf = page_address(vmx->pml_pg);
5650 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
5651 u64 gpa;
5652
5653 gpa = pml_buf[pml_idx];
5654 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005655 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08005656 }
5657
5658 /* reset PML index */
5659 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5660}
5661
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005662static void vmx_dump_sel(char *name, uint32_t sel)
5663{
5664 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05005665 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005666 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
5667 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
5668 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
5669}
5670
5671static void vmx_dump_dtsel(char *name, uint32_t limit)
5672{
5673 pr_err("%s limit=0x%08x, base=0x%016lx\n",
5674 name, vmcs_read32(limit),
5675 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
5676}
5677
David Edmondson84860392021-03-18 12:08:41 +00005678static void vmx_dump_msrs(char *name, struct vmx_msrs *m)
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005679{
David Edmondson84860392021-03-18 12:08:41 +00005680 unsigned int i;
5681 struct vmx_msr_entry *e;
5682
5683 pr_err("MSR %s:\n", name);
5684 for (i = 0, e = m->val; i < m->nr; ++i, ++e)
5685 pr_err(" %2d: msr=0x%08x value=0x%016llx\n", i, e->index, e->value);
5686}
5687
David Edmondson0702a3c2021-03-18 12:08:40 +00005688void dump_vmcs(struct kvm_vcpu *vcpu)
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005689{
David Edmondson0702a3c2021-03-18 12:08:40 +00005690 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005691 u32 vmentry_ctl, vmexit_ctl;
5692 u32 cpu_based_exec_ctrl, pin_based_exec_ctrl, secondary_exec_control;
5693 unsigned long cr4;
David Edmondson0702a3c2021-03-18 12:08:40 +00005694 int efer_slot;
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005695
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005696 if (!dump_invalid_vmcs) {
5697 pr_warn_ratelimited("set kvm_intel.dump_invalid_vmcs=1 to dump internal KVM state.\n");
5698 return;
5699 }
5700
5701 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
5702 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
5703 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5704 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
5705 cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005706 secondary_exec_control = 0;
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005707 if (cpu_has_secondary_exec_ctrls())
5708 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
5709
Jim Mattson18f63b12021-06-21 15:16:48 -07005710 pr_err("VMCS %p, last attempted VM-entry on CPU %d\n",
5711 vmx->loaded_vmcs->vmcs, vcpu->arch.last_vmentry_cpu);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005712 pr_err("*** Guest State ***\n");
5713 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5714 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
5715 vmcs_readl(CR0_GUEST_HOST_MASK));
5716 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5717 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
5718 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
David Edmondsond9e46d32021-03-18 12:08:37 +00005719 if (cpu_has_vmx_ept()) {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005720 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
5721 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
5722 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
5723 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005724 }
5725 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
5726 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
5727 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
5728 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
5729 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5730 vmcs_readl(GUEST_SYSENTER_ESP),
5731 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
5732 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
5733 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
5734 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
5735 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
5736 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
5737 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
5738 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
5739 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
5740 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
5741 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
David Edmondson0702a3c2021-03-18 12:08:40 +00005742 efer_slot = vmx_find_loadstore_msr_slot(&vmx->msr_autoload.guest, MSR_EFER);
David Edmondson5518da62021-03-18 12:08:39 +00005743 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_EFER)
David Edmondson699e1b22021-03-18 12:08:38 +00005744 pr_err("EFER= 0x%016llx\n", vmcs_read64(GUEST_IA32_EFER));
David Edmondson0702a3c2021-03-18 12:08:40 +00005745 else if (efer_slot >= 0)
5746 pr_err("EFER= 0x%016llx (autoload)\n",
5747 vmx->msr_autoload.guest.val[efer_slot].value);
5748 else if (vmentry_ctl & VM_ENTRY_IA32E_MODE)
5749 pr_err("EFER= 0x%016llx (effective)\n",
5750 vcpu->arch.efer | (EFER_LMA | EFER_LME));
5751 else
5752 pr_err("EFER= 0x%016llx (effective)\n",
5753 vcpu->arch.efer & ~(EFER_LMA | EFER_LME));
David Edmondson5518da62021-03-18 12:08:39 +00005754 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PAT)
David Edmondson699e1b22021-03-18 12:08:38 +00005755 pr_err("PAT = 0x%016llx\n", vmcs_read64(GUEST_IA32_PAT));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005756 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
5757 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005758 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005759 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005760 vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005761 pr_err("PerfGlobCtl = 0x%016llx\n",
5762 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005763 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005764 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005765 pr_err("Interruptibility = %08x ActivityState = %08x\n",
5766 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
5767 vmcs_read32(GUEST_ACTIVITY_STATE));
5768 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
5769 pr_err("InterruptStatus = %04x\n",
5770 vmcs_read16(GUEST_INTR_STATUS));
David Edmondson84860392021-03-18 12:08:41 +00005771 if (vmcs_read32(VM_ENTRY_MSR_LOAD_COUNT) > 0)
5772 vmx_dump_msrs("guest autoload", &vmx->msr_autoload.guest);
5773 if (vmcs_read32(VM_EXIT_MSR_STORE_COUNT) > 0)
5774 vmx_dump_msrs("guest autostore", &vmx->msr_autostore.guest);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005775
5776 pr_err("*** Host State ***\n");
5777 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
5778 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
5779 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
5780 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
5781 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
5782 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
5783 vmcs_read16(HOST_TR_SELECTOR));
5784 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
5785 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
5786 vmcs_readl(HOST_TR_BASE));
5787 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
5788 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
5789 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
5790 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
5791 vmcs_readl(HOST_CR4));
5792 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5793 vmcs_readl(HOST_IA32_SYSENTER_ESP),
5794 vmcs_read32(HOST_IA32_SYSENTER_CS),
5795 vmcs_readl(HOST_IA32_SYSENTER_EIP));
David Edmondson699e1b22021-03-18 12:08:38 +00005796 if (vmexit_ctl & VM_EXIT_LOAD_IA32_EFER)
5797 pr_err("EFER= 0x%016llx\n", vmcs_read64(HOST_IA32_EFER));
5798 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PAT)
5799 pr_err("PAT = 0x%016llx\n", vmcs_read64(HOST_IA32_PAT));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005800 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005801 vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005802 pr_err("PerfGlobCtl = 0x%016llx\n",
5803 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
David Edmondson84860392021-03-18 12:08:41 +00005804 if (vmcs_read32(VM_EXIT_MSR_LOAD_COUNT) > 0)
5805 vmx_dump_msrs("host autoload", &vmx->msr_autoload.host);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005806
5807 pr_err("*** Control State ***\n");
5808 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
5809 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
5810 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
5811 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
5812 vmcs_read32(EXCEPTION_BITMAP),
5813 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
5814 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
5815 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
5816 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
5817 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
5818 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
5819 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
5820 vmcs_read32(VM_EXIT_INTR_INFO),
5821 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
5822 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
5823 pr_err(" reason=%08x qualification=%016lx\n",
5824 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
5825 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
5826 vmcs_read32(IDT_VECTORING_INFO_FIELD),
5827 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005828 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08005829 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005830 pr_err("TSC Multiplier = 0x%016llx\n",
5831 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005832 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW) {
5833 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
5834 u16 status = vmcs_read16(GUEST_INTR_STATUS);
5835 pr_err("SVI|RVI = %02x|%02x ", status >> 8, status & 0xff);
5836 }
Dan Carpenterd6a85c32019-04-24 13:15:08 +03005837 pr_cont("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005838 if (secondary_exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
5839 pr_err("APIC-access addr = 0x%016llx ", vmcs_read64(APIC_ACCESS_ADDR));
Dan Carpenterd6a85c32019-04-24 13:15:08 +03005840 pr_cont("virt-APIC addr = 0x%016llx\n", vmcs_read64(VIRTUAL_APIC_PAGE_ADDR));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005841 }
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005842 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
5843 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
5844 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005845 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005846 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
5847 pr_err("PLE Gap=%08x Window=%08x\n",
5848 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
5849 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
5850 pr_err("Virtual processor ID = 0x%04x\n",
5851 vmcs_read16(VIRTUAL_PROCESSOR_ID));
5852}
5853
Avi Kivity6aa8b732006-12-10 02:21:36 -08005854/*
5855 * The guest has exited. See if we can fix it or if we need userspace
5856 * assistance.
5857 */
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005858static int __vmx_handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005859{
Avi Kivity29bd8a72007-09-10 17:27:03 +03005860 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08005861 union vmx_exit_reason exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02005862 u32 vectoring_info = vmx->idt_vectoring_info;
Sean Christopherson8e533242020-11-06 17:03:12 +08005863 u16 exit_handler_index;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005864
Kai Huang843e4332015-01-28 10:54:28 +08005865 /*
5866 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
5867 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
5868 * querying dirty_bitmap, we only need to kick all vcpus out of guest
5869 * mode as if vcpus is in root mode, the PML buffer must has been
Sean Christophersonc3bb9a22021-02-12 16:50:07 -08005870 * flushed already. Note, PML is never enabled in hardware while
5871 * running L2.
Kai Huang843e4332015-01-28 10:54:28 +08005872 */
Sean Christophersonc3bb9a22021-02-12 16:50:07 -08005873 if (enable_pml && !is_guest_mode(vcpu))
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005874 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005875
Sean Christophersondb438592020-04-22 19:25:48 -07005876 /*
5877 * We should never reach this point with a pending nested VM-Enter, and
5878 * more specifically emulation of L2 due to invalid guest state (see
5879 * below) should never happen as that means we incorrectly allowed a
5880 * nested VM-Enter with an invalid vmcs12.
5881 */
Sean Christopherson67369272021-07-02 15:04:25 -07005882 if (KVM_BUG_ON(vmx->nested.nested_run_pending, vcpu->kvm))
5883 return -EIO;
Sean Christophersondb438592020-04-22 19:25:48 -07005884
Mohammed Gamal80ced182009-09-01 12:48:18 +02005885 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02005886 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02005887 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005888
Paolo Bonzini96b100c2020-03-17 18:32:50 +01005889 if (is_guest_mode(vcpu)) {
5890 /*
Sean Christophersonc3bb9a22021-02-12 16:50:07 -08005891 * PML is never enabled when running L2, bail immediately if a
5892 * PML full exit occurs as something is horribly wrong.
5893 */
5894 if (exit_reason.basic == EXIT_REASON_PML_FULL)
5895 goto unexpected_vmexit;
5896
5897 /*
Paolo Bonzini96b100c2020-03-17 18:32:50 +01005898 * The host physical addresses of some pages of guest memory
5899 * are loaded into the vmcs02 (e.g. vmcs12's Virtual APIC
5900 * Page). The CPU may write to these pages via their host
5901 * physical address while L2 is running, bypassing any
5902 * address-translation-based dirty tracking (e.g. EPT write
5903 * protection).
5904 *
5905 * Mark them dirty on every exit from L2 to prevent them from
5906 * getting out of sync with dirty tracking.
5907 */
5908 nested_mark_vmcs12_pages_dirty(vcpu);
5909
Sean Christophersonf47baae2020-04-15 10:55:16 -07005910 if (nested_vmx_reflect_vmexit(vcpu))
Sean Christopherson789afc52020-04-15 10:55:10 -07005911 return 1;
Paolo Bonzini96b100c2020-03-17 18:32:50 +01005912 }
Nadav Har'El644d7112011-05-25 23:12:35 +03005913
Sean Christopherson8e533242020-11-06 17:03:12 +08005914 if (exit_reason.failed_vmentry) {
David Edmondson0702a3c2021-03-18 12:08:40 +00005915 dump_vmcs(vcpu);
Mohammed Gamal51207022010-05-31 22:40:54 +03005916 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5917 vcpu->run->fail_entry.hardware_entry_failure_reason
Sean Christopherson8e533242020-11-06 17:03:12 +08005918 = exit_reason.full;
Jim Mattson8a14fe42020-06-03 16:56:22 -07005919 vcpu->run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Mohammed Gamal51207022010-05-31 22:40:54 +03005920 return 0;
5921 }
5922
Avi Kivity29bd8a72007-09-10 17:27:03 +03005923 if (unlikely(vmx->fail)) {
David Edmondson0702a3c2021-03-18 12:08:40 +00005924 dump_vmcs(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005925 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5926 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03005927 = vmcs_read32(VM_INSTRUCTION_ERROR);
Jim Mattson8a14fe42020-06-03 16:56:22 -07005928 vcpu->run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005929 return 0;
5930 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005931
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005932 /*
5933 * Note:
5934 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
5935 * delivery event since it indicates guest is accessing MMIO.
5936 * The vm-exit can be triggered again after return to guest that
5937 * will cause infinite loop.
5938 */
Mike Dayd77c26f2007-10-08 09:02:08 -04005939 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sean Christopherson8e533242020-11-06 17:03:12 +08005940 (exit_reason.basic != EXIT_REASON_EXCEPTION_NMI &&
5941 exit_reason.basic != EXIT_REASON_EPT_VIOLATION &&
5942 exit_reason.basic != EXIT_REASON_PML_FULL &&
5943 exit_reason.basic != EXIT_REASON_APIC_ACCESS &&
5944 exit_reason.basic != EXIT_REASON_TASK_SWITCH)) {
Reiji Watanabe04c4f2e2021-04-13 15:47:40 +00005945 int ndata = 3;
5946
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005947 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5948 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005949 vcpu->run->internal.data[0] = vectoring_info;
Sean Christopherson8e533242020-11-06 17:03:12 +08005950 vcpu->run->internal.data[1] = exit_reason.full;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02005951 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
Sean Christopherson8e533242020-11-06 17:03:12 +08005952 if (exit_reason.basic == EXIT_REASON_EPT_MISCONFIG) {
Reiji Watanabe04c4f2e2021-04-13 15:47:40 +00005953 vcpu->run->internal.data[ndata++] =
Paolo Bonzini70bcd702017-07-05 12:38:06 +02005954 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
5955 }
Reiji Watanabe04c4f2e2021-04-13 15:47:40 +00005956 vcpu->run->internal.data[ndata++] = vcpu->arch.last_vmentry_cpu;
5957 vcpu->run->internal.ndata = ndata;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005958 return 0;
5959 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005960
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005961 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01005962 vmx->loaded_vmcs->soft_vnmi_blocked)) {
Sean Christophersondb438592020-04-22 19:25:48 -07005963 if (!vmx_interrupt_blocked(vcpu)) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01005964 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
5965 } else if (vmx->loaded_vmcs->vnmi_blocked_time > 1000000000LL &&
5966 vcpu->arch.nmi_pending) {
5967 /*
5968 * This CPU don't support us in finding the end of an
5969 * NMI-blocked window if the guest runs with IRQs
5970 * disabled. So we pull the trigger after 1 s of
5971 * futile waiting, but inform the user about this.
5972 */
5973 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
5974 "state on VCPU %d after 1 s timeout\n",
5975 __func__, vcpu->vcpu_id);
5976 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
5977 }
5978 }
5979
Wanpeng Li404d5d72020-04-28 14:23:25 +08005980 if (exit_fastpath != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08005981 return 1;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08005982
Sean Christopherson8e533242020-11-06 17:03:12 +08005983 if (exit_reason.basic >= kvm_vmx_max_exit_handlers)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08005984 goto unexpected_vmexit;
5985#ifdef CONFIG_RETPOLINE
Sean Christopherson8e533242020-11-06 17:03:12 +08005986 if (exit_reason.basic == EXIT_REASON_MSR_WRITE)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08005987 return kvm_emulate_wrmsr(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08005988 else if (exit_reason.basic == EXIT_REASON_PREEMPTION_TIMER)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08005989 return handle_preemption_timer(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08005990 else if (exit_reason.basic == EXIT_REASON_INTERRUPT_WINDOW)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08005991 return handle_interrupt_window(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08005992 else if (exit_reason.basic == EXIT_REASON_EXTERNAL_INTERRUPT)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08005993 return handle_external_interrupt(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08005994 else if (exit_reason.basic == EXIT_REASON_HLT)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08005995 return kvm_emulate_halt(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08005996 else if (exit_reason.basic == EXIT_REASON_EPT_MISCONFIG)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08005997 return handle_ept_misconfig(vcpu);
5998#endif
5999
Sean Christopherson8e533242020-11-06 17:03:12 +08006000 exit_handler_index = array_index_nospec((u16)exit_reason.basic,
6001 kvm_vmx_max_exit_handlers);
6002 if (!kvm_vmx_exit_handlers[exit_handler_index])
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006003 goto unexpected_vmexit;
6004
Sean Christopherson8e533242020-11-06 17:03:12 +08006005 return kvm_vmx_exit_handlers[exit_handler_index](vcpu);
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006006
6007unexpected_vmexit:
Sean Christopherson8e533242020-11-06 17:03:12 +08006008 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
6009 exit_reason.full);
David Edmondson0702a3c2021-03-18 12:08:40 +00006010 dump_vmcs(vcpu);
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006011 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6012 vcpu->run->internal.suberror =
6013 KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
Jim Mattson1aa561b2020-06-03 16:56:21 -07006014 vcpu->run->internal.ndata = 2;
Sean Christopherson8e533242020-11-06 17:03:12 +08006015 vcpu->run->internal.data[0] = exit_reason.full;
Jim Mattson8a14fe42020-06-03 16:56:22 -07006016 vcpu->run->internal.data[1] = vcpu->arch.last_vmentry_cpu;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006017 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006018}
6019
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08006020static int vmx_handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
6021{
6022 int ret = __vmx_handle_exit(vcpu, exit_fastpath);
6023
6024 /*
6025 * Even when current exit reason is handled by KVM internally, we
6026 * still need to exit to user space when bus lock detected to inform
6027 * that there is a bus lock in guest.
6028 */
6029 if (to_vmx(vcpu)->exit_reason.bus_lock_detected) {
6030 if (ret > 0)
6031 vcpu->run->exit_reason = KVM_EXIT_X86_BUS_LOCK;
6032
6033 vcpu->run->flags |= KVM_RUN_X86_BUS_LOCK;
6034 return 0;
6035 }
6036 return ret;
6037}
6038
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006039/*
6040 * Software based L1D cache flush which is used when microcode providing
6041 * the cache control MSR is not loaded.
6042 *
6043 * The L1D cache is 32 KiB on Nehalem and later microarchitectures, but to
6044 * flush it is required to read in 64 KiB because the replacement algorithm
6045 * is not exactly LRU. This could be sized at runtime via topology
6046 * information but as all relevant affected CPUs have 32KiB L1D cache size
6047 * there is no point in doing so.
6048 */
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006049static noinstr void vmx_l1d_flush(struct kvm_vcpu *vcpu)
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006050{
6051 int size = PAGE_SIZE << L1D_CACHE_ORDER;
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006052
6053 /*
Thomas Gleixner2f055942018-07-13 16:23:17 +02006054 * This code is only executed when the the flush mode is 'cond' or
6055 * 'always'
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006056 */
Nicolai Stange427362a2018-07-21 22:25:00 +02006057 if (static_branch_likely(&vmx_l1d_flush_cond)) {
Nicolai Stange45b575c2018-07-27 13:22:16 +02006058 bool flush_l1d;
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02006059
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006060 /*
Nicolai Stange45b575c2018-07-27 13:22:16 +02006061 * Clear the per-vcpu flush bit, it gets set again
6062 * either from vcpu_run() or from one of the unsafe
6063 * VMEXIT handlers.
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006064 */
Nicolai Stange45b575c2018-07-27 13:22:16 +02006065 flush_l1d = vcpu->arch.l1tf_flush_l1d;
Thomas Gleixner4c6523e2018-07-13 16:23:20 +02006066 vcpu->arch.l1tf_flush_l1d = false;
Nicolai Stange45b575c2018-07-27 13:22:16 +02006067
6068 /*
6069 * Clear the per-cpu flush bit, it gets set again from
6070 * the interrupt handlers.
6071 */
6072 flush_l1d |= kvm_get_cpu_l1tf_flush_l1d();
6073 kvm_clear_cpu_l1tf_flush_l1d();
6074
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02006075 if (!flush_l1d)
6076 return;
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006077 }
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006078
6079 vcpu->stat.l1d_flush++;
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006080
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02006081 if (static_cpu_has(X86_FEATURE_FLUSH_L1D)) {
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006082 native_wrmsrl(MSR_IA32_FLUSH_CMD, L1D_FLUSH);
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02006083 return;
6084 }
6085
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006086 asm volatile(
6087 /* First ensure the pages are in the TLB */
6088 "xorl %%eax, %%eax\n"
6089 ".Lpopulate_tlb:\n\t"
Nicolai Stange288d1522018-07-18 19:07:38 +02006090 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006091 "addl $4096, %%eax\n\t"
6092 "cmpl %%eax, %[size]\n\t"
6093 "jne .Lpopulate_tlb\n\t"
6094 "xorl %%eax, %%eax\n\t"
6095 "cpuid\n\t"
6096 /* Now fill the cache */
6097 "xorl %%eax, %%eax\n"
6098 ".Lfill_cache:\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02006099 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006100 "addl $64, %%eax\n\t"
6101 "cmpl %%eax, %[size]\n\t"
6102 "jne .Lfill_cache\n\t"
6103 "lfence\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02006104 :: [flush_pages] "r" (vmx_l1d_flush_pages),
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006105 [size] "r" (size)
6106 : "eax", "ebx", "ecx", "edx");
6107}
6108
Jason Baronb6a7cc32021-01-14 22:27:54 -05006109static void vmx_update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006110{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006111 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Liran Alon132f4f72019-11-11 14:30:54 +02006112 int tpr_threshold;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006113
6114 if (is_guest_mode(vcpu) &&
6115 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
6116 return;
6117
Liran Alon132f4f72019-11-11 14:30:54 +02006118 tpr_threshold = (irr == -1 || tpr < irr) ? 0 : irr;
Liran Alon02d496cf2019-11-11 14:30:55 +02006119 if (is_guest_mode(vcpu))
6120 to_vmx(vcpu)->nested.l1_tpr_threshold = tpr_threshold;
6121 else
6122 vmcs_write32(TPR_THRESHOLD, tpr_threshold);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006123}
6124
Sean Christopherson97b7ead2018-12-03 13:53:16 -08006125void vmx_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08006126{
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006127 struct vcpu_vmx *vmx = to_vmx(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08006128 u32 sec_exec_control;
6129
Jim Mattson8d860bb2018-05-09 16:56:05 -04006130 if (!lapic_in_kernel(vcpu))
6131 return;
6132
Sean Christophersonfd6b6d92018-10-01 14:25:34 -07006133 if (!flexpriority_enabled &&
6134 !cpu_has_vmx_virtualize_x2apic_mode())
6135 return;
6136
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02006137 /* Postpone execution until vmcs01 is the current VMCS. */
6138 if (is_guest_mode(vcpu)) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006139 vmx->nested.change_vmcs01_virtual_apic_mode = true;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02006140 return;
6141 }
6142
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006143 sec_exec_control = secondary_exec_controls_get(vmx);
Jim Mattson8d860bb2018-05-09 16:56:05 -04006144 sec_exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
6145 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
Yang Zhang8d146952013-01-25 10:18:50 +08006146
Jim Mattson8d860bb2018-05-09 16:56:05 -04006147 switch (kvm_get_apic_mode(vcpu)) {
6148 case LAPIC_MODE_INVALID:
6149 WARN_ONCE(true, "Invalid local APIC state");
Gustavo A. R. Silva551912d2021-05-28 15:07:56 -05006150 break;
Jim Mattson8d860bb2018-05-09 16:56:05 -04006151 case LAPIC_MODE_DISABLED:
6152 break;
6153 case LAPIC_MODE_XAPIC:
6154 if (flexpriority_enabled) {
6155 sec_exec_control |=
6156 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sean Christopherson4de1f9d2020-03-20 14:28:25 -07006157 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
6158
6159 /*
6160 * Flush the TLB, reloading the APIC access page will
6161 * only do so if its physical address has changed, but
6162 * the guest may have inserted a non-APIC mapping into
6163 * the TLB while the APIC access page was disabled.
6164 */
6165 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
Jim Mattson8d860bb2018-05-09 16:56:05 -04006166 }
6167 break;
6168 case LAPIC_MODE_X2APIC:
6169 if (cpu_has_vmx_virtualize_x2apic_mode())
6170 sec_exec_control |=
6171 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
6172 break;
Yang Zhang8d146952013-01-25 10:18:50 +08006173 }
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006174 secondary_exec_controls_set(vmx, sec_exec_control);
Yang Zhang8d146952013-01-25 10:18:50 +08006175
Sean Christopherson84ec8d22021-07-13 09:33:19 -07006176 vmx_update_msr_bitmap_x2apic(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08006177}
6178
Sean Christophersona4148b72020-03-20 14:28:24 -07006179static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu)
Tang Chen38b99172014-09-24 15:57:54 +08006180{
Sean Christophersona4148b72020-03-20 14:28:24 -07006181 struct page *page;
6182
Sean Christopherson1196cb92020-03-20 14:28:23 -07006183 /* Defer reload until vmcs01 is the current VMCS. */
6184 if (is_guest_mode(vcpu)) {
6185 to_vmx(vcpu)->nested.reload_vmcs01_apic_access_page = true;
6186 return;
Jim Mattsonfb6c8192017-03-16 13:53:59 -07006187 }
Sean Christopherson1196cb92020-03-20 14:28:23 -07006188
Sean Christopherson4de1f9d2020-03-20 14:28:25 -07006189 if (!(secondary_exec_controls_get(to_vmx(vcpu)) &
6190 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
6191 return;
6192
Sean Christophersona4148b72020-03-20 14:28:24 -07006193 page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
6194 if (is_error_page(page))
6195 return;
6196
6197 vmcs_write64(APIC_ACCESS_ADDR, page_to_phys(page));
Sean Christopherson1196cb92020-03-20 14:28:23 -07006198 vmx_flush_tlb_current(vcpu);
Sean Christophersona4148b72020-03-20 14:28:24 -07006199
6200 /*
6201 * Do not pin apic access page in memory, the MMU notifier
6202 * will call us again if it is migrated or swapped out.
6203 */
6204 put_page(page);
Tang Chen38b99172014-09-24 15:57:54 +08006205}
6206
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006207static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006208{
6209 u16 status;
6210 u8 old;
6211
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006212 if (max_isr == -1)
6213 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006214
6215 status = vmcs_read16(GUEST_INTR_STATUS);
6216 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006217 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08006218 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006219 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006220 vmcs_write16(GUEST_INTR_STATUS, status);
6221 }
6222}
6223
6224static void vmx_set_rvi(int vector)
6225{
6226 u16 status;
6227 u8 old;
6228
Wei Wang4114c272014-11-05 10:53:43 +08006229 if (vector == -1)
6230 vector = 0;
6231
Yang Zhangc7c9c562013-01-25 10:18:51 +08006232 status = vmcs_read16(GUEST_INTR_STATUS);
6233 old = (u8)status & 0xff;
6234 if ((u8)vector != old) {
6235 status &= ~0xff;
6236 status |= (u8)vector;
6237 vmcs_write16(GUEST_INTR_STATUS, status);
6238 }
6239}
6240
6241static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
6242{
Liran Alon851c1a182017-12-24 18:12:56 +02006243 /*
6244 * When running L2, updating RVI is only relevant when
6245 * vmcs12 virtual-interrupt-delivery enabled.
6246 * However, it can be enabled only when L1 also
6247 * intercepts external-interrupts and in that case
6248 * we should not update vmcs02 RVI but instead intercept
6249 * interrupt. Therefore, do nothing when running L2.
6250 */
6251 if (!is_guest_mode(vcpu))
Wanpeng Li963fee12014-07-17 19:03:00 +08006252 vmx_set_rvi(max_irr);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006253}
6254
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006255static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006256{
6257 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006258 int max_irr;
Liran Alonf27a85c2017-12-24 18:12:55 +02006259 bool max_irr_updated;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006260
Sean Christopherson67369272021-07-02 15:04:25 -07006261 if (KVM_BUG_ON(!vcpu->arch.apicv_active, vcpu->kvm))
6262 return -EIO;
6263
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006264 if (pi_test_on(&vmx->pi_desc)) {
6265 pi_clear_on(&vmx->pi_desc);
6266 /*
Liran Alond9ff2742019-11-11 14:25:25 +02006267 * IOMMU can write to PID.ON, so the barrier matters even on UP.
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006268 * But on x86 this is just a compiler barrier anyway.
6269 */
6270 smp_mb__after_atomic();
Liran Alonf27a85c2017-12-24 18:12:55 +02006271 max_irr_updated =
6272 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir, &max_irr);
6273
6274 /*
6275 * If we are running L2 and L1 has a new pending interrupt
6276 * which can be injected, we should re-evaluate
6277 * what should be done with this new L1 interrupt.
Liran Alon851c1a182017-12-24 18:12:56 +02006278 * If L1 intercepts external-interrupts, we should
6279 * exit from L2 to L1. Otherwise, interrupt should be
6280 * delivered directly to L2.
Liran Alonf27a85c2017-12-24 18:12:55 +02006281 */
Liran Alon851c1a182017-12-24 18:12:56 +02006282 if (is_guest_mode(vcpu) && max_irr_updated) {
6283 if (nested_exit_on_intr(vcpu))
6284 kvm_vcpu_exiting_guest_mode(vcpu);
6285 else
6286 kvm_make_request(KVM_REQ_EVENT, vcpu);
6287 }
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006288 } else {
6289 max_irr = kvm_lapic_find_highest_irr(vcpu);
6290 }
6291 vmx_hwapic_irr_update(vcpu, max_irr);
6292 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006293}
6294
Andrey Smetanin63086302015-11-10 15:36:32 +03006295static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006296{
Andrey Smetanind62caab2015-11-10 15:36:33 +03006297 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08006298 return;
6299
Yang Zhangc7c9c562013-01-25 10:18:51 +08006300 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
6301 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
6302 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
6303 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
6304}
6305
Paolo Bonzini967235d2016-12-19 14:03:45 +01006306static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
6307{
6308 struct vcpu_vmx *vmx = to_vmx(vcpu);
6309
6310 pi_clear_on(&vmx->pi_desc);
6311 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
6312}
6313
Sean Christopherson535f7ef2020-09-15 12:15:04 -07006314void vmx_do_interrupt_nmi_irqoff(unsigned long entry);
6315
Lai Jiangshana217a652021-05-04 21:50:14 +02006316static void handle_interrupt_nmi_irqoff(struct kvm_vcpu *vcpu,
6317 unsigned long entry)
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006318{
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006319 kvm_before_interrupt(vcpu);
Lai Jiangshana217a652021-05-04 21:50:14 +02006320 vmx_do_interrupt_nmi_irqoff(entry);
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006321 kvm_after_interrupt(vcpu);
6322}
6323
Sean Christopherson95b5a482019-04-19 22:50:59 -07006324static void handle_exception_nmi_irqoff(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03006325{
Lai Jiangshana217a652021-05-04 21:50:14 +02006326 const unsigned long nmi_entry = (unsigned long)asm_exc_nmi_noist;
Sean Christopherson87915852020-04-15 13:34:54 -07006327 u32 intr_info = vmx_get_intr_info(&vmx->vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08006328
Wanpeng Li1261bfa2017-07-13 18:30:40 -07006329 /* if exit due to PF check for async PF */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006330 if (is_page_fault(intr_info))
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02006331 vmx->vcpu.arch.apf.host_apf_flags = kvm_read_and_reset_apf_flags();
Andi Kleena0861c02009-06-08 17:37:09 +08006332 /* Handle machine checks before interrupts are enabled */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006333 else if (is_machine_check(intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08006334 kvm_machine_check();
Gleb Natapov20f65982009-05-11 13:35:55 +03006335 /* We need to handle NMIs before interrupts are enabled */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006336 else if (is_nmi(intr_info))
Lai Jiangshana217a652021-05-04 21:50:14 +02006337 handle_interrupt_nmi_irqoff(&vmx->vcpu, nmi_entry);
Avi Kivity51aa01d2010-07-20 14:31:20 +03006338}
Gleb Natapov20f65982009-05-11 13:35:55 +03006339
Sean Christopherson95b5a482019-04-19 22:50:59 -07006340static void handle_external_interrupt_irqoff(struct kvm_vcpu *vcpu)
Yang Zhanga547c6d2013-04-11 19:25:10 +08006341{
Sean Christopherson87915852020-04-15 13:34:54 -07006342 u32 intr_info = vmx_get_intr_info(vcpu);
Lai Jiangshana217a652021-05-04 21:50:14 +02006343 unsigned int vector = intr_info & INTR_INFO_VECTOR_MASK;
6344 gate_desc *desc = (gate_desc *)host_idt_base + vector;
Yang Zhanga547c6d2013-04-11 19:25:10 +08006345
Sean Christopherson67369272021-07-02 15:04:25 -07006346 if (KVM_BUG(!is_external_intr(intr_info), vcpu->kvm,
Sean Christopherson49def502019-04-19 22:50:56 -07006347 "KVM: unexpected VM-Exit interrupt info: 0x%x", intr_info))
6348 return;
6349
Lai Jiangshana217a652021-05-04 21:50:14 +02006350 handle_interrupt_nmi_irqoff(vcpu, gate_offset(desc));
Yang Zhanga547c6d2013-04-11 19:25:10 +08006351}
Sean Christopherson95b5a482019-04-19 22:50:59 -07006352
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006353static void vmx_handle_exit_irqoff(struct kvm_vcpu *vcpu)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006354{
6355 struct vcpu_vmx *vmx = to_vmx(vcpu);
6356
Sean Christopherson8e533242020-11-06 17:03:12 +08006357 if (vmx->exit_reason.basic == EXIT_REASON_EXTERNAL_INTERRUPT)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006358 handle_external_interrupt_irqoff(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006359 else if (vmx->exit_reason.basic == EXIT_REASON_EXCEPTION_NMI)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006360 handle_exception_nmi_irqoff(vmx);
6361}
Yang Zhanga547c6d2013-04-11 19:25:10 +08006362
Tom Lendacky57194552020-12-10 11:10:00 -06006363/*
6364 * The kvm parameter can be NULL (module initialization, or invocation before
6365 * VM creation). Be sure to check the kvm parameter before using it.
6366 */
6367static bool vmx_has_emulated_msr(struct kvm *kvm, u32 index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006368{
Tom Lendackybc226f02018-05-10 22:06:39 +02006369 switch (index) {
6370 case MSR_IA32_SMBASE:
6371 /*
6372 * We cannot do SMM unless we can run the guest in big
6373 * real mode.
6374 */
6375 return enable_unrestricted_guest || emulate_invalid_guest_state;
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02006376 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
6377 return nested;
Tom Lendackybc226f02018-05-10 22:06:39 +02006378 case MSR_AMD64_VIRT_SPEC_CTRL:
6379 /* This is AMD only. */
6380 return false;
6381 default:
6382 return true;
6383 }
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006384}
6385
Avi Kivity51aa01d2010-07-20 14:31:20 +03006386static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
6387{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02006388 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03006389 bool unblock_nmi;
6390 u8 vector;
6391 bool idtv_info_valid;
6392
6393 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03006394
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006395 if (enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006396 if (vmx->loaded_vmcs->nmi_known_unmasked)
6397 return;
Sean Christopherson87915852020-04-15 13:34:54 -07006398
6399 exit_intr_info = vmx_get_intr_info(&vmx->vcpu);
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006400 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
6401 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
6402 /*
6403 * SDM 3: 27.7.1.2 (September 2008)
6404 * Re-set bit "block by NMI" before VM entry if vmexit caused by
6405 * a guest IRET fault.
6406 * SDM 3: 23.2.2 (September 2008)
6407 * Bit 12 is undefined in any of the following cases:
6408 * If the VM exit sets the valid bit in the IDT-vectoring
6409 * information field.
6410 * If the VM exit is due to a double fault.
6411 */
6412 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
6413 vector != DF_VECTOR && !idtv_info_valid)
6414 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
6415 GUEST_INTR_STATE_NMI);
6416 else
6417 vmx->loaded_vmcs->nmi_known_unmasked =
6418 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
6419 & GUEST_INTR_STATE_NMI);
6420 } else if (unlikely(vmx->loaded_vmcs->soft_vnmi_blocked))
6421 vmx->loaded_vmcs->vnmi_blocked_time +=
6422 ktime_to_ns(ktime_sub(ktime_get(),
6423 vmx->loaded_vmcs->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03006424}
6425
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006426static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03006427 u32 idt_vectoring_info,
6428 int instr_len_field,
6429 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03006430{
Avi Kivity51aa01d2010-07-20 14:31:20 +03006431 u8 vector;
6432 int type;
6433 bool idtv_info_valid;
6434
6435 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03006436
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006437 vcpu->arch.nmi_injected = false;
6438 kvm_clear_exception_queue(vcpu);
6439 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006440
6441 if (!idtv_info_valid)
6442 return;
6443
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006444 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03006445
Avi Kivity668f6122008-07-02 09:28:55 +03006446 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
6447 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006448
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006449 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03006450 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006451 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03006452 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03006453 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03006454 * Clear bit "block by NMI" before VM entry if a NMI
6455 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03006456 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006457 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006458 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006459 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006460 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05006461 fallthrough;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006462 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03006463 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03006464 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03006465 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03006466 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03006467 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006468 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006469 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006470 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05006471 fallthrough;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006472 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006473 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006474 break;
6475 default:
6476 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03006477 }
Avi Kivitycf393f72008-07-01 16:20:21 +03006478}
6479
Avi Kivity83422e12010-07-20 14:43:23 +03006480static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
6481{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006482 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03006483 VM_EXIT_INSTRUCTION_LEN,
6484 IDT_VECTORING_ERROR_CODE);
6485}
6486
Avi Kivityb463a6f2010-07-20 15:06:17 +03006487static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
6488{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006489 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03006490 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
6491 VM_ENTRY_INSTRUCTION_LEN,
6492 VM_ENTRY_EXCEPTION_ERROR_CODE);
6493
6494 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
6495}
6496
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006497static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
6498{
6499 int i, nr_msrs;
6500 struct perf_guest_switch_msr *msrs;
6501
Sean Christophersonc8e2fe12021-03-09 09:10:19 -08006502 /* Note, nr_msrs may be garbage if perf_guest_get_msrs() returns NULL. */
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006503 msrs = perf_guest_get_msrs(&nr_msrs);
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006504 if (!msrs)
6505 return;
6506
6507 for (i = 0; i < nr_msrs; i++)
6508 if (msrs[i].host == msrs[i].guest)
6509 clear_atomic_switch_msr(vmx, msrs[i].msr);
6510 else
6511 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04006512 msrs[i].host, false);
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006513}
6514
Sean Christophersonf459a702018-08-27 15:21:11 -07006515static void vmx_update_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07006516{
6517 struct vcpu_vmx *vmx = to_vmx(vcpu);
6518 u64 tscl;
6519 u32 delta_tsc;
6520
Sean Christophersond264ee02018-08-27 15:21:12 -07006521 if (vmx->req_immediate_exit) {
Sean Christopherson804939e2019-05-07 12:18:05 -07006522 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, 0);
6523 vmx->loaded_vmcs->hv_timer_soft_disabled = false;
6524 } else if (vmx->hv_deadline_tsc != -1) {
Sean Christophersonf459a702018-08-27 15:21:11 -07006525 tscl = rdtsc();
6526 if (vmx->hv_deadline_tsc > tscl)
6527 /* set_hv_timer ensures the delta fits in 32-bits */
6528 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
6529 cpu_preemption_timer_multi);
6530 else
6531 delta_tsc = 0;
6532
Sean Christopherson804939e2019-05-07 12:18:05 -07006533 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
6534 vmx->loaded_vmcs->hv_timer_soft_disabled = false;
6535 } else if (!vmx->loaded_vmcs->hv_timer_soft_disabled) {
6536 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, -1);
6537 vmx->loaded_vmcs->hv_timer_soft_disabled = true;
Sean Christophersonf459a702018-08-27 15:21:11 -07006538 }
Yunhong Jiang64672c92016-06-13 14:19:59 -07006539}
6540
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006541void noinstr vmx_update_host_rsp(struct vcpu_vmx *vmx, unsigned long host_rsp)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006542{
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006543 if (unlikely(host_rsp != vmx->loaded_vmcs->host_state.rsp)) {
6544 vmx->loaded_vmcs->host_state.rsp = host_rsp;
6545 vmcs_writel(HOST_RSP, host_rsp);
6546 }
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006547}
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006548
Wanpeng Li404d5d72020-04-28 14:23:25 +08006549static fastpath_t vmx_exit_handlers_fastpath(struct kvm_vcpu *vcpu)
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006550{
Sean Christopherson8e533242020-11-06 17:03:12 +08006551 switch (to_vmx(vcpu)->exit_reason.basic) {
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006552 case EXIT_REASON_MSR_WRITE:
6553 return handle_fastpath_set_msr_irqoff(vcpu);
Wanpeng Li26efe2f2020-05-06 11:44:01 -04006554 case EXIT_REASON_PREEMPTION_TIMER:
6555 return handle_fastpath_preemption_timer(vcpu);
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006556 default:
6557 return EXIT_FASTPATH_NONE;
6558 }
6559}
6560
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006561static noinstr void vmx_vcpu_enter_exit(struct kvm_vcpu *vcpu,
6562 struct vcpu_vmx *vmx)
6563{
Sean Christophersonbc908e02021-05-04 17:27:35 -07006564 kvm_guest_enter_irqoff();
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006565
6566 /* L1D Flush includes CPU buffer clear to mitigate MDS */
6567 if (static_branch_unlikely(&vmx_l1d_should_flush))
6568 vmx_l1d_flush(vcpu);
6569 else if (static_branch_unlikely(&mds_user_clear))
6570 mds_clear_cpu_buffers();
6571
Thomas Gleixner2245d392020-07-08 21:52:00 +02006572 if (vcpu->arch.cr2 != native_read_cr2())
6573 native_write_cr2(vcpu->arch.cr2);
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006574
6575 vmx->fail = __vmx_vcpu_run(vmx, (unsigned long *)&vcpu->arch.regs,
6576 vmx->loaded_vmcs->launched);
6577
Thomas Gleixner2245d392020-07-08 21:52:00 +02006578 vcpu->arch.cr2 = native_read_cr2();
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006579
Sean Christophersonbc908e02021-05-04 17:27:35 -07006580 kvm_guest_exit_irqoff();
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006581}
6582
Wanpeng Li404d5d72020-04-28 14:23:25 +08006583static fastpath_t vmx_vcpu_run(struct kvm_vcpu *vcpu)
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006584{
6585 struct vcpu_vmx *vmx = to_vmx(vcpu);
6586 unsigned long cr3, cr4;
6587
6588 /* Record the guest's net vcpu time for enforced NMI injections. */
6589 if (unlikely(!enable_vnmi &&
6590 vmx->loaded_vmcs->soft_vnmi_blocked))
6591 vmx->loaded_vmcs->entry_time = ktime_get();
6592
6593 /* Don't enter VMX if guest state is invalid, let the exit handler
6594 start emulation until we arrive back to a valid state */
6595 if (vmx->emulation_required)
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006596 return EXIT_FASTPATH_NONE;
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006597
Lorenzo Bresciad95df952020-12-23 14:45:07 +00006598 trace_kvm_entry(vcpu);
6599
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006600 if (vmx->ple_window_dirty) {
6601 vmx->ple_window_dirty = false;
6602 vmcs_write32(PLE_WINDOW, vmx->ple_window);
6603 }
6604
wanpeng lic9dfd3f2020-02-17 18:37:43 +08006605 /*
6606 * We did this in prepare_switch_to_guest, because it needs to
6607 * be within srcu_read_lock.
6608 */
6609 WARN_ON_ONCE(vmx->nested.need_vmcs12_to_shadow_sync);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006610
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07006611 if (kvm_register_is_dirty(vcpu, VCPU_REGS_RSP))
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006612 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07006613 if (kvm_register_is_dirty(vcpu, VCPU_REGS_RIP))
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006614 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
6615
6616 cr3 = __get_current_cr3_fast();
6617 if (unlikely(cr3 != vmx->loaded_vmcs->host_state.cr3)) {
6618 vmcs_writel(HOST_CR3, cr3);
6619 vmx->loaded_vmcs->host_state.cr3 = cr3;
6620 }
6621
6622 cr4 = cr4_read_shadow();
6623 if (unlikely(cr4 != vmx->loaded_vmcs->host_state.cr4)) {
6624 vmcs_writel(HOST_CR4, cr4);
6625 vmx->loaded_vmcs->host_state.cr4 = cr4;
6626 }
6627
Paolo Bonzini375e28f2021-08-10 06:07:06 -04006628 /* When KVM_DEBUGREG_WONT_EXIT, dr6 is accessible in guest. */
6629 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT))
6630 set_debugreg(vcpu->arch.dr6, 6);
6631
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006632 /* When single-stepping over STI and MOV SS, we must clear the
6633 * corresponding interruptibility bits in the guest state. Otherwise
6634 * vmentry fails as it then expects bit 14 (BS) in pending debug
6635 * exceptions being set, but that's not correct for the guest debugging
6636 * case. */
6637 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
6638 vmx_set_interrupt_shadow(vcpu, 0);
6639
Aaron Lewis139a12c2019-10-21 16:30:25 -07006640 kvm_load_guest_xsave_state(vcpu);
WANG Chao1811d972019-04-12 15:55:39 +08006641
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006642 pt_guest_enter(vmx);
6643
Vitaly Kuznetsov49097762020-06-19 11:40:46 +02006644 atomic_switch_perf_msrs(vmx);
Like Xu1b5ac3222021-02-01 13:10:34 +08006645 if (intel_pmu_lbr_is_enabled(vcpu))
6646 vmx_passthrough_lbr_msrs(vcpu);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006647
Sean Christopherson804939e2019-05-07 12:18:05 -07006648 if (enable_preemption_timer)
6649 vmx_update_hv_timer(vcpu);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006650
Wanpeng Li010fd372020-09-10 17:50:41 +08006651 kvm_wait_lapic_expire(vcpu);
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08006652
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006653 /*
6654 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
6655 * it's non-zero. Since vmentry is serialising on affected CPUs, there
6656 * is no need to worry about the conditional branch over the wrmsr
6657 * being speculatively taken.
6658 */
6659 x86_spec_ctrl_set_guest(vmx->spec_ctrl, 0);
6660
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006661 /* The actual VMENTER/EXIT is in the .noinstr.text section. */
6662 vmx_vcpu_enter_exit(vcpu, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006663
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006664 /*
6665 * We do not use IBRS in the kernel. If this vCPU has used the
6666 * SPEC_CTRL MSR it may have left it on; save the value and
6667 * turn it off. This is much more efficient than blindly adding
6668 * it to the atomic save/restore list. Especially as the former
6669 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
6670 *
6671 * For non-nested case:
6672 * If the L01 MSR bitmap does not intercept the MSR, then we need to
6673 * save it.
6674 *
6675 * For nested case:
6676 * If the L02 MSR bitmap does not intercept the MSR, then we need to
6677 * save it.
6678 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01006679 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01006680 vmx->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006681
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02006682 x86_spec_ctrl_restore_host(vmx->spec_ctrl, 0);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006683
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01006684 /* All fields are clean at this point */
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01006685 if (static_branch_unlikely(&enable_evmcs)) {
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01006686 current_evmcs->hv_clean_fields |=
6687 HV_VMX_ENLIGHTENED_CLEAN_FIELD_ALL;
6688
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01006689 current_evmcs->hv_vp_id = kvm_hv_get_vpindex(vcpu);
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01006690 }
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08006691
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006692 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
Wanpeng Li74c55932017-11-29 01:31:20 -08006693 if (vmx->host_debugctlmsr)
6694 update_debugctlmsr(vmx->host_debugctlmsr);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006695
Avi Kivityaa67f602012-08-01 16:48:03 +03006696#ifndef CONFIG_X86_64
6697 /*
6698 * The sysexit path does not restore ds/es, so we must set them to
6699 * a reasonable value ourselves.
6700 *
Sean Christopherson6d6095b2018-07-23 12:32:44 -07006701 * We can't defer this to vmx_prepare_switch_to_host() since that
6702 * function may be executed in interrupt context, which saves and
6703 * restore segments around it, nullifying its effect.
Avi Kivityaa67f602012-08-01 16:48:03 +03006704 */
6705 loadsegment(ds, __USER_DS);
6706 loadsegment(es, __USER_DS);
6707#endif
6708
Sean Christophersone5d03de2020-04-15 13:34:51 -07006709 vmx_register_cache_reset(vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006710
Chao Peng2ef444f2018-10-24 16:05:12 +08006711 pt_guest_exit(vmx);
6712
Aaron Lewis139a12c2019-10-21 16:30:25 -07006713 kvm_load_host_xsave_state(vcpu);
WANG Chao1811d972019-04-12 15:55:39 +08006714
Krish Sadhukhanb93af022021-06-09 14:03:38 -04006715 if (is_guest_mode(vcpu)) {
6716 /*
6717 * Track VMLAUNCH/VMRESUME that have made past guest state
6718 * checking.
6719 */
6720 if (vmx->nested.nested_run_pending &&
6721 !vmx->exit_reason.failed_vmentry)
6722 ++vcpu->stat.nested_run;
6723
6724 vmx->nested.nested_run_pending = 0;
6725 }
6726
Jim Mattsonb060ca32017-09-14 16:31:42 -07006727 vmx->idt_vectoring_info = 0;
6728
Sean Christopherson873e1da2020-04-10 10:47:02 -07006729 if (unlikely(vmx->fail)) {
Sean Christopherson8e533242020-11-06 17:03:12 +08006730 vmx->exit_reason.full = 0xdead;
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006731 return EXIT_FASTPATH_NONE;
Sean Christopherson873e1da2020-04-10 10:47:02 -07006732 }
6733
Sean Christopherson8e533242020-11-06 17:03:12 +08006734 vmx->exit_reason.full = vmcs_read32(VM_EXIT_REASON);
6735 if (unlikely((u16)vmx->exit_reason.basic == EXIT_REASON_MCE_DURING_VMENTRY))
Sean Christophersonbeb8d932019-04-19 22:50:55 -07006736 kvm_machine_check();
6737
Maxim Levitskyf5c59b52021-02-17 16:57:12 +02006738 if (likely(!vmx->exit_reason.failed_vmentry))
6739 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
6740
Sean Christopherson8e533242020-11-06 17:03:12 +08006741 trace_kvm_exit(vmx->exit_reason.full, vcpu, KVM_ISA_VMX);
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006742
Sean Christopherson8e533242020-11-06 17:03:12 +08006743 if (unlikely(vmx->exit_reason.failed_vmentry))
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006744 return EXIT_FASTPATH_NONE;
6745
Jim Mattsonb060ca32017-09-14 16:31:42 -07006746 vmx->loaded_vmcs->launched = 1;
Gleb Natapove0b890d2013-09-25 12:51:33 +03006747
Avi Kivity51aa01d2010-07-20 14:31:20 +03006748 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03006749 vmx_complete_interrupts(vmx);
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006750
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006751 if (is_guest_mode(vcpu))
6752 return EXIT_FASTPATH_NONE;
6753
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05006754 return vmx_exit_handlers_fastpath(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006755}
6756
Avi Kivity6aa8b732006-12-10 02:21:36 -08006757static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
6758{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006759 struct vcpu_vmx *vmx = to_vmx(vcpu);
6760
Kai Huang843e4332015-01-28 10:54:28 +08006761 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08006762 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08006763 free_vpid(vmx->vpid);
Sean Christopherson55d23752018-12-03 13:53:18 -08006764 nested_vmx_free_vcpu(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006765 free_loaded_vmcs(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006766}
6767
Sean Christopherson987b2592019-12-18 13:54:55 -08006768static int vmx_create_vcpu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006769{
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006770 struct vmx_uret_msr *tsx_ctrl;
Ben Gardon41836832019-02-11 11:02:52 -08006771 struct vcpu_vmx *vmx;
Sean Christopherson34109c02019-12-18 13:54:50 -08006772 int i, cpu, err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006773
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006774 BUILD_BUG_ON(offsetof(struct vcpu_vmx, vcpu) != 0);
6775 vmx = to_vmx(vcpu);
Ingo Molnar965b58a2007-01-05 16:36:23 -08006776
Peter Feiner4e595162016-07-07 14:49:58 -07006777 err = -ENOMEM;
6778
Sean Christopherson034d8e22019-12-18 13:54:49 -08006779 vmx->vpid = allocate_vpid();
6780
Peter Feiner4e595162016-07-07 14:49:58 -07006781 /*
6782 * If PML is turned on, failure on enabling PML just results in failure
6783 * of creating the vcpu, therefore we can simplify PML logic (by
6784 * avoiding dealing with cases, such as enabling PML partially on vcpus
Miaohe Lin67b0ae42019-12-11 14:26:22 +08006785 * for the guest), etc.
Peter Feiner4e595162016-07-07 14:49:58 -07006786 */
6787 if (enable_pml) {
Ben Gardon41836832019-02-11 11:02:52 -08006788 vmx->pml_pg = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Peter Feiner4e595162016-07-07 14:49:58 -07006789 if (!vmx->pml_pg)
Sean Christopherson987b2592019-12-18 13:54:55 -08006790 goto free_vpid;
Peter Feiner4e595162016-07-07 14:49:58 -07006791 }
6792
Sean Christophersone5fda4b2021-05-04 10:17:32 -07006793 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
Sean Christophersonb6194b92021-05-04 10:17:27 -07006794 vmx->guest_uret_msrs[i].data = 0;
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006795 vmx->guest_uret_msrs[i].mask = -1ull;
6796 }
Sean Christopherson5e17c622021-05-04 10:17:30 -07006797 if (boot_cpu_has(X86_FEATURE_RTM)) {
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006798 /*
6799 * TSX_CTRL_CPUID_CLEAR is handled in the CPUID interception.
6800 * Keep the host value unchanged to avoid changing CPUID bits
6801 * under the host kernel's feet.
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006802 */
Sean Christopherson5e17c622021-05-04 10:17:30 -07006803 tsx_ctrl = vmx_find_uret_msr(vmx, MSR_IA32_TSX_CTRL);
6804 if (tsx_ctrl)
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006805 vmx->guest_uret_msrs[i].mask = ~(u64)TSX_CTRL_CPUID_CLEAR;
Xiaoyao Li4be53412019-10-20 17:11:00 +08006806 }
6807
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006808 err = alloc_loaded_vmcs(&vmx->vmcs01);
6809 if (err < 0)
Jim Mattson7d737102019-12-03 16:24:42 -08006810 goto free_pml;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006811
Alexander Graf3eb90012020-09-25 16:34:20 +02006812 /* The MSR bitmap starts with all ones */
6813 bitmap_fill(vmx->shadow_msr_intercept.read, MAX_POSSIBLE_PASSTHROUGH_MSRS);
6814 bitmap_fill(vmx->shadow_msr_intercept.write, MAX_POSSIBLE_PASSTHROUGH_MSRS);
6815
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006816 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_TSC, MSR_TYPE_R);
Sean Christophersondbdd0962021-04-21 19:38:31 -07006817#ifdef CONFIG_X86_64
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006818 vmx_disable_intercept_for_msr(vcpu, MSR_FS_BASE, MSR_TYPE_RW);
6819 vmx_disable_intercept_for_msr(vcpu, MSR_GS_BASE, MSR_TYPE_RW);
6820 vmx_disable_intercept_for_msr(vcpu, MSR_KERNEL_GS_BASE, MSR_TYPE_RW);
Sean Christophersondbdd0962021-04-21 19:38:31 -07006821#endif
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006822 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_CS, MSR_TYPE_RW);
6823 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_ESP, MSR_TYPE_RW);
6824 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_EIP, MSR_TYPE_RW);
Sean Christopherson987b2592019-12-18 13:54:55 -08006825 if (kvm_cstate_in_guest(vcpu->kvm)) {
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006826 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C1_RES, MSR_TYPE_R);
6827 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C3_RESIDENCY, MSR_TYPE_R);
6828 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C6_RESIDENCY, MSR_TYPE_R);
6829 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C7_RESIDENCY, MSR_TYPE_R);
Wanpeng Lib5170062019-05-21 14:06:53 +08006830 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006831
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006832 vmx->loaded_vmcs = &vmx->vmcs01;
Avi Kivity15ad7142007-07-11 18:17:21 +03006833 cpu = get_cpu();
Sean Christopherson34109c02019-12-18 13:54:50 -08006834 vmx_vcpu_load(vcpu, cpu);
6835 vcpu->cpu = cpu;
Xiaoyao Li1b842922019-10-20 17:11:01 +08006836 init_vmcs(vmx);
Sean Christopherson34109c02019-12-18 13:54:50 -08006837 vmx_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03006838 put_cpu();
Sean Christopherson34109c02019-12-18 13:54:50 -08006839 if (cpu_need_virtualize_apic_accesses(vcpu)) {
Sean Christopherson987b2592019-12-18 13:54:55 -08006840 err = alloc_apic_access_page(vcpu->kvm);
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02006841 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02006842 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02006843 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08006844
Sean Christophersone90008d2018-03-05 12:04:37 -08006845 if (enable_ept && !enable_unrestricted_guest) {
Sean Christopherson987b2592019-12-18 13:54:55 -08006846 err = init_rmode_identity_map(vcpu->kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08006847 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02006848 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006849 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08006850
Roman Kagan63aff652018-07-19 21:59:07 +03006851 if (nested)
Chenyi Qiangb9757a42020-08-28 16:56:22 +08006852 memcpy(&vmx->nested.msrs, &vmcs_config.nested, sizeof(vmx->nested.msrs));
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08006853 else
6854 memset(&vmx->nested.msrs, 0, sizeof(vmx->nested.msrs));
Wincy Vanb9c237b2015-02-03 23:56:30 +08006855
Sean Christopherson8f102442021-04-12 16:21:40 +12006856 vcpu_setup_sgx_lepubkeyhash(vcpu);
6857
Wincy Van705699a2015-02-03 23:58:17 +08006858 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03006859 vmx->nested.current_vmptr = -1ull;
Vitaly Kuznetsov1e9dfbd2021-05-26 15:20:16 +02006860 vmx->nested.hv_evmcs_vmptr = EVMPTR_INVALID;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03006861
Paolo Bonzinibab0c312020-02-11 18:40:58 +01006862 vcpu->arch.microcode_version = 0x100000000ULL;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08006863 vmx->msr_ia32_feature_control_valid_bits = FEAT_CTL_LOCKED;
Haozhong Zhang37e4c992016-06-22 14:59:55 +08006864
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02006865 /*
6866 * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR
6867 * or POSTED_INTR_WAKEUP_VECTOR.
6868 */
6869 vmx->pi_desc.nv = POSTED_INTR_VECTOR;
6870 vmx->pi_desc.sn = 1;
6871
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006872 return 0;
Ingo Molnar965b58a2007-01-05 16:36:23 -08006873
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006874free_vmcs:
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08006875 free_loaded_vmcs(vmx->loaded_vmcs);
Peter Feiner4e595162016-07-07 14:49:58 -07006876free_pml:
6877 vmx_destroy_pml_buffer(vmx);
Sean Christopherson987b2592019-12-18 13:54:55 -08006878free_vpid:
Wanpeng Li991e7a02015-09-16 17:30:05 +08006879 free_vpid(vmx->vpid);
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006880 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006881}
6882
Thomas Gleixner65fd4cb2019-02-19 11:10:49 +01006883#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"
6884#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 -04006885
Wanpeng Lib31c1142018-03-12 04:53:04 -07006886static int vmx_vm_init(struct kvm *kvm)
6887{
6888 if (!ple_gap)
6889 kvm->arch.pause_in_guest = true;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006890
Jiri Kosinad90a7a02018-07-13 16:23:25 +02006891 if (boot_cpu_has(X86_BUG_L1TF) && enable_ept) {
6892 switch (l1tf_mitigation) {
6893 case L1TF_MITIGATION_OFF:
6894 case L1TF_MITIGATION_FLUSH_NOWARN:
6895 /* 'I explicitly don't care' is set */
6896 break;
6897 case L1TF_MITIGATION_FLUSH:
6898 case L1TF_MITIGATION_FLUSH_NOSMT:
6899 case L1TF_MITIGATION_FULL:
6900 /*
6901 * Warn upon starting the first VM in a potentially
6902 * insecure environment.
6903 */
Josh Poimboeufb2849092019-01-30 07:13:58 -06006904 if (sched_smt_active())
Jiri Kosinad90a7a02018-07-13 16:23:25 +02006905 pr_warn_once(L1TF_MSG_SMT);
6906 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_NEVER)
6907 pr_warn_once(L1TF_MSG_L1D);
6908 break;
6909 case L1TF_MITIGATION_FULL_FORCE:
6910 /* Flush is enforced */
6911 break;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006912 }
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006913 }
Wanpeng Lib31c1142018-03-12 04:53:04 -07006914 return 0;
6915}
6916
Sean Christophersonf257d6d2019-04-19 22:18:17 -07006917static int __init vmx_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03006918{
6919 struct vmcs_config vmcs_conf;
Sean Christopherson7caaa712018-12-03 13:53:01 -08006920 struct vmx_capability vmx_cap;
Yang, Sheng002c7f72007-07-31 14:23:01 +03006921
Sean Christophersonff10e222019-12-20 20:45:10 -08006922 if (!this_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
6923 !this_cpu_has(X86_FEATURE_VMX)) {
6924 pr_err("kvm: VMX is disabled on CPU %d\n", smp_processor_id());
6925 return -EIO;
6926 }
6927
Sean Christopherson7caaa712018-12-03 13:53:01 -08006928 if (setup_vmcs_config(&vmcs_conf, &vmx_cap) < 0)
Sean Christophersonf257d6d2019-04-19 22:18:17 -07006929 return -EIO;
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08006930 if (nested)
Vitaly Kuznetsova4443262020-02-20 18:22:04 +01006931 nested_vmx_setup_ctls_msrs(&vmcs_conf.nested, vmx_cap.ept);
Yang, Sheng002c7f72007-07-31 14:23:01 +03006932 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
6933 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
6934 smp_processor_id());
Sean Christophersonf257d6d2019-04-19 22:18:17 -07006935 return -EIO;
Yang, Sheng002c7f72007-07-31 14:23:01 +03006936 }
Sean Christophersonf257d6d2019-04-19 22:18:17 -07006937 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03006938}
6939
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006940static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08006941{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08006942 u8 cache;
6943 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006944
Chia-I Wu222f06e2020-02-13 13:30:34 -08006945 /* We wanted to honor guest CD/MTRR/PAT, but doing so could result in
6946 * memory aliases with conflicting memory types and sometimes MCEs.
6947 * We have to be careful as to what are honored and when.
6948 *
6949 * For MMIO, guest CD/MTRR are ignored. The EPT memory type is set to
6950 * UC. The effective memory type is UC or WC depending on guest PAT.
6951 * This was historically the source of MCEs and we want to be
6952 * conservative.
6953 *
6954 * When there is no need to deal with noncoherent DMA (e.g., no VT-d
6955 * or VT-d has snoop control), guest CD/MTRR/PAT are all ignored. The
6956 * EPT memory type is set to WB. The effective memory type is forced
6957 * WB.
6958 *
6959 * Otherwise, we trust guest. Guest CD/MTRR/PAT are all honored. The
6960 * EPT memory type is used to emulate guest CD/MTRR.
Sheng Yang522c68c2009-04-27 20:35:43 +08006961 */
Chia-I Wu222f06e2020-02-13 13:30:34 -08006962
Paolo Bonzini606decd2015-10-01 13:12:47 +02006963 if (is_mmio) {
6964 cache = MTRR_TYPE_UNCACHABLE;
6965 goto exit;
6966 }
6967
6968 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08006969 ipat = VMX_EPT_IPAT_BIT;
6970 cache = MTRR_TYPE_WRBACK;
6971 goto exit;
6972 }
6973
6974 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
6975 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02006976 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08006977 cache = MTRR_TYPE_WRBACK;
6978 else
6979 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08006980 goto exit;
6981 }
6982
Xiao Guangrongff536042015-06-15 16:55:22 +08006983 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08006984
6985exit:
6986 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08006987}
6988
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006989static void vmcs_set_secondary_exec_control(struct vcpu_vmx *vmx)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08006990{
6991 /*
6992 * These bits in the secondary execution controls field
6993 * are dynamic, the others are mostly based on the hypervisor
6994 * architecture and the guest's CPUID. Do not touch the
6995 * dynamic bits.
6996 */
6997 u32 mask =
6998 SECONDARY_EXEC_SHADOW_VMCS |
6999 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Paolo Bonzini0367f202016-07-12 10:44:55 +02007000 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
7001 SECONDARY_EXEC_DESC;
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007002
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007003 u32 new_ctl = vmx->secondary_exec_control;
7004 u32 cur_ctl = secondary_exec_controls_get(vmx);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007005
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007006 secondary_exec_controls_set(vmx, (new_ctl & ~mask) | (cur_ctl & mask));
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007007}
7008
David Matlack8322ebb2016-11-29 18:14:09 -08007009/*
7010 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
7011 * (indicating "allowed-1") if they are supported in the guest's CPUID.
7012 */
7013static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
7014{
7015 struct vcpu_vmx *vmx = to_vmx(vcpu);
7016 struct kvm_cpuid_entry2 *entry;
7017
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01007018 vmx->nested.msrs.cr0_fixed1 = 0xffffffff;
7019 vmx->nested.msrs.cr4_fixed1 = X86_CR4_PCE;
David Matlack8322ebb2016-11-29 18:14:09 -08007020
7021#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
7022 if (entry && (entry->_reg & (_cpuid_mask))) \
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01007023 vmx->nested.msrs.cr4_fixed1 |= (_cr4_mask); \
David Matlack8322ebb2016-11-29 18:14:09 -08007024} while (0)
7025
7026 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
Sean Christopherson87382002019-12-17 13:32:42 -08007027 cr4_fixed1_update(X86_CR4_VME, edx, feature_bit(VME));
7028 cr4_fixed1_update(X86_CR4_PVI, edx, feature_bit(VME));
7029 cr4_fixed1_update(X86_CR4_TSD, edx, feature_bit(TSC));
7030 cr4_fixed1_update(X86_CR4_DE, edx, feature_bit(DE));
7031 cr4_fixed1_update(X86_CR4_PSE, edx, feature_bit(PSE));
7032 cr4_fixed1_update(X86_CR4_PAE, edx, feature_bit(PAE));
7033 cr4_fixed1_update(X86_CR4_MCE, edx, feature_bit(MCE));
7034 cr4_fixed1_update(X86_CR4_PGE, edx, feature_bit(PGE));
7035 cr4_fixed1_update(X86_CR4_OSFXSR, edx, feature_bit(FXSR));
7036 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, feature_bit(XMM));
7037 cr4_fixed1_update(X86_CR4_VMXE, ecx, feature_bit(VMX));
7038 cr4_fixed1_update(X86_CR4_SMXE, ecx, feature_bit(SMX));
7039 cr4_fixed1_update(X86_CR4_PCIDE, ecx, feature_bit(PCID));
7040 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, feature_bit(XSAVE));
David Matlack8322ebb2016-11-29 18:14:09 -08007041
7042 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
Sean Christopherson87382002019-12-17 13:32:42 -08007043 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, feature_bit(FSGSBASE));
7044 cr4_fixed1_update(X86_CR4_SMEP, ebx, feature_bit(SMEP));
7045 cr4_fixed1_update(X86_CR4_SMAP, ebx, feature_bit(SMAP));
7046 cr4_fixed1_update(X86_CR4_PKE, ecx, feature_bit(PKU));
7047 cr4_fixed1_update(X86_CR4_UMIP, ecx, feature_bit(UMIP));
7048 cr4_fixed1_update(X86_CR4_LA57, ecx, feature_bit(LA57));
David Matlack8322ebb2016-11-29 18:14:09 -08007049
7050#undef cr4_fixed1_update
7051}
7052
Liran Alon5f76f6f2018-09-14 03:25:52 +03007053static void nested_vmx_entry_exit_ctls_update(struct kvm_vcpu *vcpu)
7054{
7055 struct vcpu_vmx *vmx = to_vmx(vcpu);
7056
7057 if (kvm_mpx_supported()) {
7058 bool mpx_enabled = guest_cpuid_has(vcpu, X86_FEATURE_MPX);
7059
7060 if (mpx_enabled) {
7061 vmx->nested.msrs.entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
7062 vmx->nested.msrs.exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
7063 } else {
7064 vmx->nested.msrs.entry_ctls_high &= ~VM_ENTRY_LOAD_BNDCFGS;
7065 vmx->nested.msrs.exit_ctls_high &= ~VM_EXIT_CLEAR_BNDCFGS;
7066 }
7067 }
7068}
7069
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007070static void update_intel_pt_cfg(struct kvm_vcpu *vcpu)
7071{
7072 struct vcpu_vmx *vmx = to_vmx(vcpu);
7073 struct kvm_cpuid_entry2 *best = NULL;
7074 int i;
7075
7076 for (i = 0; i < PT_CPUID_LEAVES; i++) {
7077 best = kvm_find_cpuid_entry(vcpu, 0x14, i);
7078 if (!best)
7079 return;
7080 vmx->pt_desc.caps[CPUID_EAX + i*PT_CPUID_REGS_NUM] = best->eax;
7081 vmx->pt_desc.caps[CPUID_EBX + i*PT_CPUID_REGS_NUM] = best->ebx;
7082 vmx->pt_desc.caps[CPUID_ECX + i*PT_CPUID_REGS_NUM] = best->ecx;
7083 vmx->pt_desc.caps[CPUID_EDX + i*PT_CPUID_REGS_NUM] = best->edx;
7084 }
7085
7086 /* Get the number of configurable Address Ranges for filtering */
7087 vmx->pt_desc.addr_range = intel_pt_validate_cap(vmx->pt_desc.caps,
7088 PT_CAP_num_address_ranges);
7089
7090 /* Initialize and clear the no dependency bits */
7091 vmx->pt_desc.ctl_bitmask = ~(RTIT_CTL_TRACEEN | RTIT_CTL_OS |
7092 RTIT_CTL_USR | RTIT_CTL_TSC_EN | RTIT_CTL_DISRETC);
7093
7094 /*
7095 * If CPUID.(EAX=14H,ECX=0):EBX[0]=1 CR3Filter can be set otherwise
7096 * will inject an #GP
7097 */
7098 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_cr3_filtering))
7099 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_CR3EN;
7100
7101 /*
7102 * If CPUID.(EAX=14H,ECX=0):EBX[1]=1 CYCEn, CycThresh and
7103 * PSBFreq can be set
7104 */
7105 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc))
7106 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_CYCLEACC |
7107 RTIT_CTL_CYC_THRESH | RTIT_CTL_PSB_FREQ);
7108
7109 /*
7110 * If CPUID.(EAX=14H,ECX=0):EBX[3]=1 MTCEn BranchEn and
7111 * MTCFreq can be set
7112 */
7113 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc))
7114 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_MTC_EN |
7115 RTIT_CTL_BRANCH_EN | RTIT_CTL_MTC_RANGE);
7116
7117 /* If CPUID.(EAX=14H,ECX=0):EBX[4]=1 FUPonPTW and PTWEn can be set */
7118 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_ptwrite))
7119 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_FUP_ON_PTW |
7120 RTIT_CTL_PTW_EN);
7121
7122 /* If CPUID.(EAX=14H,ECX=0):EBX[5]=1 PwrEvEn can be set */
7123 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_power_event_trace))
7124 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_PWR_EVT_EN;
7125
7126 /* If CPUID.(EAX=14H,ECX=0):ECX[0]=1 ToPA can be set */
7127 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_topa_output))
7128 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_TOPA;
7129
Ingo Molnard9f6e122021-03-18 15:28:01 +01007130 /* If CPUID.(EAX=14H,ECX=0):ECX[3]=1 FabricEn can be set */
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007131 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_output_subsys))
7132 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_FABRIC_EN;
7133
7134 /* unmask address range configure area */
7135 for (i = 0; i < vmx->pt_desc.addr_range; i++)
Gustavo A. R. Silvad14eff12018-12-26 14:40:59 -06007136 vmx->pt_desc.ctl_bitmask &= ~(0xfULL << (32 + i * 4));
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007137}
7138
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08007139static void vmx_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
Sheng Yang0e851882009-12-18 16:48:46 +08007140{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007141 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007142
Aaron Lewis72041602019-10-21 16:30:20 -07007143 /* xsaves_enabled is recomputed in vmx_compute_secondary_exec_control(). */
7144 vcpu->arch.xsaves_enabled = false;
7145
Sean Christopherson432979b2021-07-13 09:33:12 -07007146 vmx_setup_uret_msrs(vmx);
7147
Paolo Bonzini80154d72017-08-24 13:55:35 +02007148 if (cpu_has_secondary_exec_ctrls()) {
7149 vmx_compute_secondary_exec_control(vmx);
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007150 vmcs_set_secondary_exec_control(vmx);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007151 }
Mao, Junjiead756a12012-07-02 01:18:48 +00007152
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007153 if (nested_vmx_allowed(vcpu))
7154 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007155 FEAT_CTL_VMX_ENABLED_INSIDE_SMX |
7156 FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX;
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007157 else
7158 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007159 ~(FEAT_CTL_VMX_ENABLED_INSIDE_SMX |
7160 FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX);
David Matlack8322ebb2016-11-29 18:14:09 -08007161
Liran Alon5f76f6f2018-09-14 03:25:52 +03007162 if (nested_vmx_allowed(vcpu)) {
David Matlack8322ebb2016-11-29 18:14:09 -08007163 nested_vmx_cr_fixed1_bits_update(vcpu);
Liran Alon5f76f6f2018-09-14 03:25:52 +03007164 nested_vmx_entry_exit_ctls_update(vcpu);
7165 }
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007166
7167 if (boot_cpu_has(X86_FEATURE_INTEL_PT) &&
7168 guest_cpuid_has(vcpu, X86_FEATURE_INTEL_PT))
7169 update_intel_pt_cfg(vcpu);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007170
7171 if (boot_cpu_has(X86_FEATURE_RTM)) {
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07007172 struct vmx_uret_msr *msr;
Sean Christophersond85a8032020-09-23 11:04:06 -07007173 msr = vmx_find_uret_msr(vmx, MSR_IA32_TSX_CTRL);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007174 if (msr) {
7175 bool enabled = guest_cpuid_has(vcpu, X86_FEATURE_RTM);
Sean Christopherson7bf662b2020-09-23 11:04:07 -07007176 vmx_set_guest_uret_msr(vmx, msr, enabled ? 0 : TSX_CTRL_RTM_DISABLE);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007177 }
7178 }
Sean Christophersona6337a32020-09-29 21:16:57 -07007179
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07007180 set_cr4_guest_host_mask(vmx);
7181
Sean Christopherson72add912021-04-12 16:21:42 +12007182 vmx_write_encls_bitmap(vcpu, NULL);
7183 if (guest_cpuid_has(vcpu, X86_FEATURE_SGX))
7184 vmx->msr_ia32_feature_control_valid_bits |= FEAT_CTL_SGX_ENABLED;
7185 else
7186 vmx->msr_ia32_feature_control_valid_bits &= ~FEAT_CTL_SGX_ENABLED;
7187
7188 if (guest_cpuid_has(vcpu, X86_FEATURE_SGX_LC))
7189 vmx->msr_ia32_feature_control_valid_bits |=
7190 FEAT_CTL_SGX_LC_ENABLED;
7191 else
7192 vmx->msr_ia32_feature_control_valid_bits &=
7193 ~FEAT_CTL_SGX_LC_ENABLED;
7194
Sean Christophersona6337a32020-09-29 21:16:57 -07007195 /* Refresh #PF interception to account for MAXPHYADDR changes. */
Jason Baronb6a7cc32021-01-14 22:27:54 -05007196 vmx_update_exception_bitmap(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08007197}
7198
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007199static __init void vmx_set_cpu_caps(void)
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007200{
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007201 kvm_set_cpu_caps();
7202
7203 /* CPUID 0x1 */
7204 if (nested)
7205 kvm_cpu_cap_set(X86_FEATURE_VMX);
7206
7207 /* CPUID 0x7 */
Sean Christopherson8721f5b2020-03-02 15:56:45 -08007208 if (kvm_mpx_supported())
7209 kvm_cpu_cap_check_and_set(X86_FEATURE_MPX);
Sean Christophersone4203332021-02-11 16:34:10 -08007210 if (!cpu_has_vmx_invpcid())
7211 kvm_cpu_cap_clear(X86_FEATURE_INVPCID);
Sean Christopherson8721f5b2020-03-02 15:56:45 -08007212 if (vmx_pt_mode_is_host_guest())
7213 kvm_cpu_cap_check_and_set(X86_FEATURE_INTEL_PT);
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007214
Sean Christopherson72add912021-04-12 16:21:42 +12007215 if (!enable_sgx) {
7216 kvm_cpu_cap_clear(X86_FEATURE_SGX);
7217 kvm_cpu_cap_clear(X86_FEATURE_SGX_LC);
7218 kvm_cpu_cap_clear(X86_FEATURE_SGX1);
7219 kvm_cpu_cap_clear(X86_FEATURE_SGX2);
7220 }
7221
Sean Christopherson90d2f602020-03-02 15:56:47 -08007222 if (vmx_umip_emulated())
7223 kvm_cpu_cap_set(X86_FEATURE_UMIP);
7224
Sean Christophersonb3d895d52020-03-02 15:56:44 -08007225 /* CPUID 0xD.1 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01007226 supported_xss = 0;
Sean Christophersonbecdad82020-09-23 09:50:45 -07007227 if (!cpu_has_vmx_xsaves())
Sean Christophersonb3d895d52020-03-02 15:56:44 -08007228 kvm_cpu_cap_clear(X86_FEATURE_XSAVES);
7229
Sean Christopherson8aec21c2021-05-04 10:17:20 -07007230 /* CPUID 0x80000001 and 0x7 (RDPID) */
7231 if (!cpu_has_vmx_rdtscp()) {
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007232 kvm_cpu_cap_clear(X86_FEATURE_RDTSCP);
Sean Christopherson8aec21c2021-05-04 10:17:20 -07007233 kvm_cpu_cap_clear(X86_FEATURE_RDPID);
7234 }
Maxim Levitsky0abcc8f2020-05-23 19:14:54 +03007235
Sean Christophersonbecdad82020-09-23 09:50:45 -07007236 if (cpu_has_vmx_waitpkg())
Maxim Levitsky0abcc8f2020-05-23 19:14:54 +03007237 kvm_cpu_cap_check_and_set(X86_FEATURE_WAITPKG);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007238}
7239
Sean Christophersond264ee02018-08-27 15:21:12 -07007240static void vmx_request_immediate_exit(struct kvm_vcpu *vcpu)
7241{
7242 to_vmx(vcpu)->req_immediate_exit = true;
7243}
7244
Oliver Upton35a57132020-02-04 15:26:31 -08007245static int vmx_check_intercept_io(struct kvm_vcpu *vcpu,
7246 struct x86_instruction_info *info)
7247{
7248 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7249 unsigned short port;
7250 bool intercept;
7251 int size;
7252
7253 if (info->intercept == x86_intercept_in ||
7254 info->intercept == x86_intercept_ins) {
7255 port = info->src_val;
7256 size = info->dst_bytes;
7257 } else {
7258 port = info->dst_val;
7259 size = info->src_bytes;
7260 }
7261
7262 /*
7263 * If the 'use IO bitmaps' VM-execution control is 0, IO instruction
7264 * VM-exits depend on the 'unconditional IO exiting' VM-execution
7265 * control.
7266 *
7267 * Otherwise, IO instruction VM-exits are controlled by the IO bitmaps.
7268 */
7269 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
7270 intercept = nested_cpu_has(vmcs12,
7271 CPU_BASED_UNCOND_IO_EXITING);
7272 else
7273 intercept = nested_vmx_check_io_bitmaps(vcpu, port, size);
7274
Oliver Upton86f7e902020-02-29 11:30:14 -08007275 /* FIXME: produce nested vmexit and return X86EMUL_INTERCEPTED. */
Oliver Upton35a57132020-02-04 15:26:31 -08007276 return intercept ? X86EMUL_UNHANDLEABLE : X86EMUL_CONTINUE;
7277}
7278
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007279static int vmx_check_intercept(struct kvm_vcpu *vcpu,
7280 struct x86_instruction_info *info,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007281 enum x86_intercept_stage stage,
7282 struct x86_exception *exception)
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007283{
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007284 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007285
Oliver Upton35a57132020-02-04 15:26:31 -08007286 switch (info->intercept) {
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007287 /*
7288 * RDPID causes #UD if disabled through secondary execution controls.
7289 * Because it is marked as EmulateOnUD, we need to intercept it here.
Sean Christopherson2183de42021-05-04 10:17:23 -07007290 * Note, RDPID is hidden behind ENABLE_RDTSCP.
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007291 */
Sean Christopherson2183de42021-05-04 10:17:23 -07007292 case x86_intercept_rdpid:
Sean Christopherson7f3603b2020-09-23 09:50:47 -07007293 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_RDTSCP)) {
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007294 exception->vector = UD_VECTOR;
7295 exception->error_code_valid = false;
Oliver Upton35a57132020-02-04 15:26:31 -08007296 return X86EMUL_PROPAGATE_FAULT;
7297 }
7298 break;
7299
7300 case x86_intercept_in:
7301 case x86_intercept_ins:
7302 case x86_intercept_out:
7303 case x86_intercept_outs:
7304 return vmx_check_intercept_io(vcpu, info);
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007305
Oliver Upton86f7e902020-02-29 11:30:14 -08007306 case x86_intercept_lgdt:
7307 case x86_intercept_lidt:
7308 case x86_intercept_lldt:
7309 case x86_intercept_ltr:
7310 case x86_intercept_sgdt:
7311 case x86_intercept_sidt:
7312 case x86_intercept_sldt:
7313 case x86_intercept_str:
7314 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC))
7315 return X86EMUL_CONTINUE;
7316
7317 /* FIXME: produce nested vmexit and return X86EMUL_INTERCEPTED. */
7318 break;
7319
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007320 /* TODO: check more intercepts... */
Oliver Upton35a57132020-02-04 15:26:31 -08007321 default:
7322 break;
7323 }
7324
Paolo Bonzini07721fe2020-02-04 15:26:29 -08007325 return X86EMUL_UNHANDLEABLE;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007326}
7327
Yunhong Jiang64672c92016-06-13 14:19:59 -07007328#ifdef CONFIG_X86_64
7329/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
7330static inline int u64_shl_div_u64(u64 a, unsigned int shift,
7331 u64 divisor, u64 *result)
7332{
7333 u64 low = a << shift, high = a >> (64 - shift);
7334
7335 /* To avoid the overflow on divq */
7336 if (high >= divisor)
7337 return 1;
7338
7339 /* Low hold the result, high hold rem which is discarded */
7340 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
7341 "rm" (divisor), "0" (low), "1" (high));
7342 *result = low;
7343
7344 return 0;
7345}
7346
Sean Christophersonf9927982019-04-16 13:32:46 -07007347static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc,
7348 bool *expired)
Yunhong Jiang64672c92016-06-13 14:19:59 -07007349{
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007350 struct vcpu_vmx *vmx;
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007351 u64 tscl, guest_tscl, delta_tsc, lapic_timer_advance_cycles;
Sean Christopherson39497d72019-04-17 10:15:32 -07007352 struct kvm_timer *ktimer = &vcpu->arch.apic->lapic_timer;
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007353
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007354 vmx = to_vmx(vcpu);
7355 tscl = rdtsc();
7356 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
7357 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Sean Christopherson39497d72019-04-17 10:15:32 -07007358 lapic_timer_advance_cycles = nsec_to_cycles(vcpu,
7359 ktimer->timer_advance_ns);
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007360
7361 if (delta_tsc > lapic_timer_advance_cycles)
7362 delta_tsc -= lapic_timer_advance_cycles;
7363 else
7364 delta_tsc = 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007365
7366 /* Convert to host delta tsc if tsc scaling is enabled */
Ilias Stamatis805d7052021-05-26 19:44:09 +01007367 if (vcpu->arch.l1_tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
Sean Christopherson0967fa12019-04-16 13:32:48 -07007368 delta_tsc && u64_shl_div_u64(delta_tsc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007369 kvm_tsc_scaling_ratio_frac_bits,
Ilias Stamatis805d7052021-05-26 19:44:09 +01007370 vcpu->arch.l1_tsc_scaling_ratio, &delta_tsc))
Yunhong Jiang64672c92016-06-13 14:19:59 -07007371 return -ERANGE;
7372
7373 /*
7374 * If the delta tsc can't fit in the 32 bit after the multi shift,
7375 * we can't use the preemption timer.
7376 * It's possible that it fits on later vmentries, but checking
7377 * on every vmentry is costly so we just use an hrtimer.
7378 */
7379 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
7380 return -ERANGE;
7381
7382 vmx->hv_deadline_tsc = tscl + delta_tsc;
Sean Christophersonf9927982019-04-16 13:32:46 -07007383 *expired = !delta_tsc;
7384 return 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007385}
7386
7387static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
7388{
Sean Christophersonf459a702018-08-27 15:21:11 -07007389 to_vmx(vcpu)->hv_deadline_tsc = -1;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007390}
7391#endif
7392
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007393static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007394{
Wanpeng Lib31c1142018-03-12 04:53:04 -07007395 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007396 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007397}
7398
Makarand Sonarea85863c2021-02-12 16:50:12 -08007399void vmx_update_cpu_dirty_logging(struct kvm_vcpu *vcpu)
7400{
7401 struct vcpu_vmx *vmx = to_vmx(vcpu);
7402
7403 if (is_guest_mode(vcpu)) {
7404 vmx->nested.update_vmcs01_cpu_dirty_logging = true;
7405 return;
7406 }
7407
7408 /*
7409 * Note, cpu_dirty_logging_count can be changed concurrent with this
7410 * code, but in that case another update request will be made and so
7411 * the guest will never run with a stale PML value.
7412 */
7413 if (vcpu->kvm->arch.cpu_dirty_logging_count)
7414 secondary_exec_controls_setbit(vmx, SECONDARY_EXEC_ENABLE_PML);
7415 else
7416 secondary_exec_controls_clearbit(vmx, SECONDARY_EXEC_ENABLE_PML);
7417}
7418
Yunhong Jiangbc225122016-06-13 14:19:58 -07007419static int vmx_pre_block(struct kvm_vcpu *vcpu)
7420{
7421 if (pi_pre_block(vcpu))
7422 return 1;
7423
Yunhong Jiang64672c92016-06-13 14:19:59 -07007424 if (kvm_lapic_hv_timer_in_use(vcpu))
7425 kvm_lapic_switch_to_sw_timer(vcpu);
7426
Yunhong Jiangbc225122016-06-13 14:19:58 -07007427 return 0;
7428}
7429
Yunhong Jiangbc225122016-06-13 14:19:58 -07007430static void vmx_post_block(struct kvm_vcpu *vcpu)
7431{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007432 if (kvm_x86_ops.set_hv_timer)
Yunhong Jiang64672c92016-06-13 14:19:59 -07007433 kvm_lapic_switch_to_hv_timer(vcpu);
7434
Yunhong Jiangbc225122016-06-13 14:19:58 -07007435 pi_post_block(vcpu);
7436}
7437
Ashok Rajc45dcc72016-06-22 14:59:56 +08007438static void vmx_setup_mce(struct kvm_vcpu *vcpu)
7439{
7440 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
7441 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007442 FEAT_CTL_LMCE_ENABLED;
Ashok Rajc45dcc72016-06-22 14:59:56 +08007443 else
7444 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007445 ~FEAT_CTL_LMCE_ENABLED;
Ashok Rajc45dcc72016-06-22 14:59:56 +08007446}
7447
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007448static int vmx_smi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Ladi Prosek72d7b372017-10-11 16:54:41 +02007449{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007450 /* we need a nested vmexit to enter SMM, postpone if run is pending */
7451 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007452 return -EBUSY;
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -04007453 return !is_smm(vcpu);
Ladi Prosek72d7b372017-10-11 16:54:41 +02007454}
7455
Sean Christophersonecc513e2021-06-09 11:56:19 -07007456static int vmx_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007457{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007458 struct vcpu_vmx *vmx = to_vmx(vcpu);
7459
7460 vmx->nested.smm.guest_mode = is_guest_mode(vcpu);
7461 if (vmx->nested.smm.guest_mode)
7462 nested_vmx_vmexit(vcpu, -1, 0, 0);
7463
7464 vmx->nested.smm.vmxon = vmx->nested.vmxon;
7465 vmx->nested.vmxon = false;
Wanpeng Licaa057a2018-03-12 04:53:03 -07007466 vmx_clear_hlt(vcpu);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007467 return 0;
7468}
7469
Sean Christophersonecc513e2021-06-09 11:56:19 -07007470static int vmx_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007471{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007472 struct vcpu_vmx *vmx = to_vmx(vcpu);
7473 int ret;
7474
7475 if (vmx->nested.smm.vmxon) {
7476 vmx->nested.vmxon = true;
7477 vmx->nested.smm.vmxon = false;
7478 }
7479
7480 if (vmx->nested.smm.guest_mode) {
Sean Christophersona633e412018-09-26 09:23:47 -07007481 ret = nested_vmx_enter_non_root_mode(vcpu, false);
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007482 if (ret)
7483 return ret;
7484
7485 vmx->nested.smm.guest_mode = false;
7486 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02007487 return 0;
7488}
7489
Jason Baronb6a7cc32021-01-14 22:27:54 -05007490static void vmx_enable_smi_window(struct kvm_vcpu *vcpu)
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007491{
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007492 /* RSM will cause a vmexit anyway. */
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007493}
7494
Liran Alon4b9852f2019-08-26 13:24:49 +03007495static bool vmx_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
7496{
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05007497 return to_vmx(vcpu)->nested.vmxon && !is_guest_mode(vcpu);
Liran Alon4b9852f2019-08-26 13:24:49 +03007498}
7499
Jim Mattson93dff2f2020-05-08 13:36:43 -07007500static void vmx_migrate_timers(struct kvm_vcpu *vcpu)
7501{
7502 if (is_guest_mode(vcpu)) {
7503 struct hrtimer *timer = &to_vmx(vcpu)->nested.preemption_timer;
7504
7505 if (hrtimer_try_to_cancel(timer) == 1)
7506 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
7507 }
7508}
7509
Sean Christopherson6e4fd062020-03-21 13:26:01 -07007510static void hardware_unsetup(void)
Sean Christophersona3203382018-12-03 13:53:11 -08007511{
7512 if (nested)
7513 nested_vmx_hardware_unsetup();
7514
7515 free_kvm_area();
7516}
7517
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007518static bool vmx_check_apicv_inhibit_reasons(ulong bit)
7519{
Suravee Suthikulpanitf4fdc0a2019-11-14 14:15:13 -06007520 ulong supported = BIT(APICV_INHIBIT_REASON_DISABLE) |
7521 BIT(APICV_INHIBIT_REASON_HYPERV);
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007522
7523 return supported & BIT(bit);
7524}
7525
Sean Christophersone286ac02020-03-21 13:26:02 -07007526static struct kvm_x86_ops vmx_x86_ops __initdata = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007527 .hardware_unsetup = hardware_unsetup,
Sean Christopherson484014f2020-03-21 13:25:57 -07007528
Avi Kivity6aa8b732006-12-10 02:21:36 -08007529 .hardware_enable = hardware_enable,
7530 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08007531 .cpu_has_accelerated_tpr = report_flexpriority,
Tom Lendackybc226f02018-05-10 22:06:39 +02007532 .has_emulated_msr = vmx_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007533
Sean Christopherson484014f2020-03-21 13:25:57 -07007534 .vm_size = sizeof(struct kvm_vmx),
Wanpeng Lib31c1142018-03-12 04:53:04 -07007535 .vm_init = vmx_vm_init,
7536
Avi Kivity6aa8b732006-12-10 02:21:36 -08007537 .vcpu_create = vmx_create_vcpu,
7538 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007539 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007540
Sean Christopherson6d6095b2018-07-23 12:32:44 -07007541 .prepare_guest_switch = vmx_prepare_switch_to_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007542 .vcpu_load = vmx_vcpu_load,
7543 .vcpu_put = vmx_vcpu_put,
7544
Jason Baronb6a7cc32021-01-14 22:27:54 -05007545 .update_exception_bitmap = vmx_update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -06007546 .get_msr_feature = vmx_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007547 .get_msr = vmx_get_msr,
7548 .set_msr = vmx_set_msr,
7549 .get_segment_base = vmx_get_segment_base,
7550 .get_segment = vmx_get_segment,
7551 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007552 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007553 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
7554 .set_cr0 = vmx_set_cr0,
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07007555 .is_valid_cr4 = vmx_is_valid_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007556 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007557 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007558 .get_idt = vmx_get_idt,
7559 .set_idt = vmx_set_idt,
7560 .get_gdt = vmx_get_gdt,
7561 .set_gdt = vmx_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03007562 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007563 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007564 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007565 .get_rflags = vmx_get_rflags,
7566 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007567
Sean Christopherson77809382020-03-20 14:28:18 -07007568 .tlb_flush_all = vmx_flush_tlb_all,
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07007569 .tlb_flush_current = vmx_flush_tlb_current,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007570 .tlb_flush_gva = vmx_flush_tlb_gva,
Sean Christophersone64419d2020-03-20 14:28:10 -07007571 .tlb_flush_guest = vmx_flush_tlb_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007572
Avi Kivity6aa8b732006-12-10 02:21:36 -08007573 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02007574 .handle_exit = vmx_handle_exit,
Oliver Upton5ef8acb2020-02-07 02:36:07 -08007575 .skip_emulated_instruction = vmx_skip_emulated_instruction,
7576 .update_emulated_instruction = vmx_update_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007577 .set_interrupt_shadow = vmx_set_interrupt_shadow,
7578 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007579 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007580 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007581 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007582 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007583 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007584 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007585 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007586 .get_nmi_mask = vmx_get_nmi_mask,
7587 .set_nmi_mask = vmx_set_nmi_mask,
Jason Baronb6a7cc32021-01-14 22:27:54 -05007588 .enable_nmi_window = vmx_enable_nmi_window,
7589 .enable_irq_window = vmx_enable_irq_window,
7590 .update_cr8_intercept = vmx_update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007591 .set_virtual_apic_mode = vmx_set_virtual_apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +08007592 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007593 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007594 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +01007595 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007596 .check_apicv_inhibit_reasons = vmx_check_apicv_inhibit_reasons,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007597 .hwapic_irr_update = vmx_hwapic_irr_update,
7598 .hwapic_isr_update = vmx_hwapic_isr_update,
Liran Alone6c67d82018-09-04 10:56:52 +03007599 .guest_apic_has_interrupt = vmx_guest_apic_has_interrupt,
Yang Zhanga20ed542013-04-11 19:25:15 +08007600 .sync_pir_to_irr = vmx_sync_pir_to_irr,
7601 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007602 .dy_apicv_has_pending_interrupt = pi_has_pending_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007603
Izik Eiduscbc94022007-10-25 00:29:55 +02007604 .set_tss_addr = vmx_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007605 .set_identity_map_addr = vmx_set_identity_map_addr,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007606 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007607
Avi Kivity586f9602010-11-18 13:09:54 +02007608 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007609
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08007610 .vcpu_after_set_cpuid = vmx_vcpu_after_set_cpuid,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007611
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007612 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007613
Ilias Stamatis307a94c2021-05-26 19:44:13 +01007614 .get_l2_tsc_offset = vmx_get_l2_tsc_offset,
7615 .get_l2_tsc_multiplier = vmx_get_l2_tsc_multiplier,
Ilias Stamatisedcfe542021-05-26 19:44:15 +01007616 .write_tsc_offset = vmx_write_tsc_offset,
Ilias Stamatis1ab92872021-06-07 11:54:38 +01007617 .write_tsc_multiplier = vmx_write_tsc_multiplier,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007618
Sean Christopherson484014f2020-03-21 13:25:57 -07007619 .load_mmu_pgd = vmx_load_mmu_pgd,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007620
7621 .check_intercept = vmx_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07007622 .handle_exit_irqoff = vmx_handle_exit_irqoff,
Jan Kiszkab6b8a142014-03-07 20:03:12 +01007623
Sean Christophersond264ee02018-08-27 15:21:12 -07007624 .request_immediate_exit = vmx_request_immediate_exit,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007625
7626 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +08007627
Sean Christopherson6dd03802021-02-12 16:50:09 -08007628 .cpu_dirty_log_size = PML_ENTITY_NUM,
Makarand Sonarea85863c2021-02-12 16:50:12 -08007629 .update_cpu_dirty_logging = vmx_update_cpu_dirty_logging,
Wei Huang25462f72015-06-19 15:45:05 +02007630
Feng Wubf9f6ac2015-09-18 22:29:55 +08007631 .pre_block = vmx_pre_block,
7632 .post_block = vmx_post_block,
7633
Wei Huang25462f72015-06-19 15:45:05 +02007634 .pmu_ops = &intel_pmu_ops,
Paolo Bonzini33b22172020-04-17 10:24:18 -04007635 .nested_ops = &vmx_nested_ops,
Feng Wuefc64402015-09-18 22:29:51 +08007636
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007637 .update_pi_irte = pi_update_irte,
Marcelo Tosattia2486022021-05-26 14:20:14 -03007638 .start_assignment = vmx_pi_start_assignment,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007639
7640#ifdef CONFIG_X86_64
7641 .set_hv_timer = vmx_set_hv_timer,
7642 .cancel_hv_timer = vmx_cancel_hv_timer,
7643#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +08007644
7645 .setup_mce = vmx_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007646
Ladi Prosek72d7b372017-10-11 16:54:41 +02007647 .smi_allowed = vmx_smi_allowed,
Sean Christophersonecc513e2021-06-09 11:56:19 -07007648 .enter_smm = vmx_enter_smm,
7649 .leave_smm = vmx_leave_smm,
Jason Baronb6a7cc32021-01-14 22:27:54 -05007650 .enable_smi_window = vmx_enable_smi_window,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007651
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007652 .can_emulate_instruction = vmx_can_emulate_instruction,
Liran Alon4b9852f2019-08-26 13:24:49 +03007653 .apic_init_signal_blocked = vmx_apic_init_signal_blocked,
Jim Mattson93dff2f2020-05-08 13:36:43 -07007654 .migrate_timers = vmx_migrate_timers,
Alexander Graf3eb90012020-09-25 16:34:20 +02007655
7656 .msr_filter_changed = vmx_msr_filter_changed,
Paolo Bonzinif9a4d622020-12-14 10:26:51 -05007657 .complete_emulated_msr = kvm_complete_insn_gp,
Tom Lendacky647daca2021-01-04 14:20:01 -06007658
7659 .vcpu_deliver_sipi_vector = kvm_vcpu_deliver_sipi_vector,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007660};
7661
Sean Christophersonb6194b92021-05-04 10:17:27 -07007662static __init void vmx_setup_user_return_msrs(void)
7663{
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07007664
7665 /*
7666 * Though SYSCALL is only supported in 64-bit mode on Intel CPUs, kvm
7667 * will emulate SYSCALL in legacy mode if the vendor string in guest
7668 * CPUID.0:{EBX,ECX,EDX} is "AuthenticAMD" or "AMDisbetter!" To
7669 * support this emulation, MSR_STAR is included in the list for i386,
7670 * but is never loaded into hardware. MSR_CSTAR is also never loaded
7671 * into hardware and is here purely for emulation purposes.
7672 */
7673 const u32 vmx_uret_msrs_list[] = {
7674 #ifdef CONFIG_X86_64
7675 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
7676 #endif
7677 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
7678 MSR_IA32_TSX_CTRL,
7679 };
Sean Christophersonb6194b92021-05-04 10:17:27 -07007680 int i;
7681
7682 BUILD_BUG_ON(ARRAY_SIZE(vmx_uret_msrs_list) != MAX_NR_USER_RETURN_MSRS);
7683
Sean Christophersone5fda4b2021-05-04 10:17:32 -07007684 for (i = 0; i < ARRAY_SIZE(vmx_uret_msrs_list); ++i)
7685 kvm_add_user_return_msr(vmx_uret_msrs_list[i]);
Sean Christophersonb6194b92021-05-04 10:17:27 -07007686}
7687
Avi Kivity6aa8b732006-12-10 02:21:36 -08007688static __init int hardware_setup(void)
7689{
7690 unsigned long host_bndcfgs;
7691 struct desc_ptr dt;
Sean Christophersonb6194b92021-05-04 10:17:27 -07007692 int r, ept_lpage_level;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007693
Avi Kivity6aa8b732006-12-10 02:21:36 -08007694 store_idt(&dt);
7695 host_idt_base = dt.address;
7696
Sean Christophersonb6194b92021-05-04 10:17:27 -07007697 vmx_setup_user_return_msrs();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007698
7699 if (setup_vmcs_config(&vmcs_config, &vmx_capability) < 0)
7700 return -EIO;
7701
7702 if (boot_cpu_has(X86_FEATURE_NX))
7703 kvm_enable_efer_bits(EFER_NX);
7704
7705 if (boot_cpu_has(X86_FEATURE_MPX)) {
7706 rdmsrl(MSR_IA32_BNDCFGS, host_bndcfgs);
7707 WARN_ONCE(host_bndcfgs, "KVM: BNDCFGS in host will be lost");
7708 }
7709
Sean Christopherson7f5581f2020-03-02 15:56:24 -08007710 if (!cpu_has_vmx_mpx())
Sean Christophersoncfc48182020-03-02 15:56:23 -08007711 supported_xcr0 &= ~(XFEATURE_MASK_BNDREGS |
7712 XFEATURE_MASK_BNDCSR);
7713
Avi Kivity6aa8b732006-12-10 02:21:36 -08007714 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
7715 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
7716 enable_vpid = 0;
7717
7718 if (!cpu_has_vmx_ept() ||
7719 !cpu_has_vmx_ept_4levels() ||
7720 !cpu_has_vmx_ept_mt_wb() ||
7721 !cpu_has_vmx_invept_global())
7722 enable_ept = 0;
7723
Sean Christopherson23f079c2021-06-15 09:45:32 -07007724 /* NX support is required for shadow paging. */
7725 if (!enable_ept && !boot_cpu_has(X86_FEATURE_NX)) {
7726 pr_err_ratelimited("kvm: NX (Execute Disable) not supported\n");
7727 return -EOPNOTSUPP;
7728 }
7729
Avi Kivity6aa8b732006-12-10 02:21:36 -08007730 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
7731 enable_ept_ad_bits = 0;
7732
7733 if (!cpu_has_vmx_unrestricted_guest() || !enable_ept)
7734 enable_unrestricted_guest = 0;
7735
7736 if (!cpu_has_vmx_flexpriority())
7737 flexpriority_enabled = 0;
7738
7739 if (!cpu_has_virtual_nmis())
7740 enable_vnmi = 0;
7741
7742 /*
7743 * set_apic_access_page_addr() is used to reload apic access
Avi Kivity873a7c42006-12-13 00:34:14 -08007744 * page upon invalidation. No need to do anything if not
Avi Kivity6aa8b732006-12-10 02:21:36 -08007745 * using the APIC_ACCESS_ADDR VMCS field.
7746 */
7747 if (!flexpriority_enabled)
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007748 vmx_x86_ops.set_apic_access_page_addr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007749
7750 if (!cpu_has_vmx_tpr_shadow())
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007751 vmx_x86_ops.update_cr8_intercept = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007752
Avi Kivity6aa8b732006-12-10 02:21:36 -08007753#if IS_ENABLED(CONFIG_HYPERV)
7754 if (ms_hyperv.nested_features & HV_X64_NESTED_GUEST_MAPPING_FLUSH
7755 && enable_ept) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007756 vmx_x86_ops.tlb_remote_flush = hv_remote_flush_tlb;
7757 vmx_x86_ops.tlb_remote_flush_with_range =
Avi Kivity6aa8b732006-12-10 02:21:36 -08007758 hv_remote_flush_tlb_with_range;
7759 }
7760#endif
7761
7762 if (!cpu_has_vmx_ple()) {
7763 ple_gap = 0;
7764 ple_window = 0;
7765 ple_window_grow = 0;
7766 ple_window_max = 0;
7767 ple_window_shrink = 0;
7768 }
7769
7770 if (!cpu_has_vmx_apicv()) {
7771 enable_apicv = 0;
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007772 vmx_x86_ops.sync_pir_to_irr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007773 }
7774
7775 if (cpu_has_vmx_tsc_scaling()) {
7776 kvm_has_tsc_control = true;
7777 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
7778 kvm_tsc_scaling_ratio_frac_bits = 48;
7779 }
7780
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08007781 kvm_has_bus_lock_exit = cpu_has_vmx_bus_lock_detection();
7782
Avi Kivity6aa8b732006-12-10 02:21:36 -08007783 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
7784
7785 if (enable_ept)
Sean Christophersone7b7bde2021-02-25 12:47:42 -08007786 kvm_mmu_set_ept_masks(enable_ept_ad_bits,
7787 cpu_has_vmx_ept_execute_only());
Sean Christopherson703c3352020-03-02 15:57:03 -08007788
7789 if (!enable_ept)
7790 ept_lpage_level = 0;
7791 else if (cpu_has_vmx_ept_1g_page())
Sean Christopherson3bae0452020-04-27 17:54:22 -07007792 ept_lpage_level = PG_LEVEL_1G;
Sean Christopherson703c3352020-03-02 15:57:03 -08007793 else if (cpu_has_vmx_ept_2m_page())
Sean Christopherson3bae0452020-04-27 17:54:22 -07007794 ept_lpage_level = PG_LEVEL_2M;
Sean Christopherson703c3352020-03-02 15:57:03 -08007795 else
Sean Christopherson3bae0452020-04-27 17:54:22 -07007796 ept_lpage_level = PG_LEVEL_4K;
Sean Christopherson83013052020-07-15 20:41:22 -07007797 kvm_configure_mmu(enable_ept, vmx_get_max_tdp_level(), ept_lpage_level);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007798
7799 /*
7800 * Only enable PML when hardware supports PML feature, and both EPT
7801 * and EPT A/D bit features are enabled -- PML depends on them to work.
7802 */
7803 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
7804 enable_pml = 0;
7805
Sean Christophersona018eba2021-02-12 16:50:10 -08007806 if (!enable_pml)
Sean Christopherson6dd03802021-02-12 16:50:09 -08007807 vmx_x86_ops.cpu_dirty_log_size = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007808
7809 if (!cpu_has_vmx_preemption_timer())
7810 enable_preemption_timer = false;
7811
7812 if (enable_preemption_timer) {
7813 u64 use_timer_freq = 5000ULL * 1000 * 1000;
7814 u64 vmx_msr;
7815
7816 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
7817 cpu_preemption_timer_multi =
7818 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
7819
7820 if (tsc_khz)
7821 use_timer_freq = (u64)tsc_khz * 1000;
7822 use_timer_freq >>= cpu_preemption_timer_multi;
7823
7824 /*
7825 * KVM "disables" the preemption timer by setting it to its max
7826 * value. Don't use the timer if it might cause spurious exits
7827 * at a rate faster than 0.1 Hz (of uninterrupted guest time).
7828 */
7829 if (use_timer_freq > 0xffffffffu / 10)
7830 enable_preemption_timer = false;
7831 }
7832
7833 if (!enable_preemption_timer) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007834 vmx_x86_ops.set_hv_timer = NULL;
7835 vmx_x86_ops.cancel_hv_timer = NULL;
7836 vmx_x86_ops.request_immediate_exit = __kvm_request_immediate_exit;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007837 }
7838
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007839 kvm_set_posted_intr_wakeup_handler(pi_wakeup_handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007840
7841 kvm_mce_cap_supported |= MCG_LMCE_P;
7842
7843 if (pt_mode != PT_MODE_SYSTEM && pt_mode != PT_MODE_HOST_GUEST)
7844 return -EINVAL;
7845 if (!enable_ept || !cpu_has_vmx_intel_pt())
7846 pt_mode = PT_MODE_SYSTEM;
7847
Sean Christopherson8f102442021-04-12 16:21:40 +12007848 setup_default_sgx_lepubkeyhash();
7849
Avi Kivity6aa8b732006-12-10 02:21:36 -08007850 if (nested) {
7851 nested_vmx_setup_ctls_msrs(&vmcs_config.nested,
7852 vmx_capability.ept);
7853
Sean Christopherson6c1c6e52020-05-06 13:46:53 -07007854 r = nested_vmx_hardware_setup(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007855 if (r)
7856 return r;
7857 }
7858
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007859 vmx_set_cpu_caps();
Sean Christopherson66a69502020-03-02 15:56:41 -08007860
Avi Kivity6aa8b732006-12-10 02:21:36 -08007861 r = alloc_kvm_area();
7862 if (r)
7863 nested_vmx_hardware_unsetup();
7864 return r;
7865}
7866
Sean Christophersond008dfd2020-03-21 13:25:56 -07007867static struct kvm_x86_init_ops vmx_init_ops __initdata = {
7868 .cpu_has_kvm_support = cpu_has_kvm_support,
7869 .disabled_by_bios = vmx_disabled_by_bios,
7870 .check_processor_compatibility = vmx_check_processor_compat,
7871 .hardware_setup = hardware_setup,
7872
7873 .runtime_ops = &vmx_x86_ops,
7874};
7875
Avi Kivity6aa8b732006-12-10 02:21:36 -08007876static void vmx_cleanup_l1d_flush(void)
7877{
7878 if (vmx_l1d_flush_pages) {
7879 free_pages((unsigned long)vmx_l1d_flush_pages, L1D_CACHE_ORDER);
7880 vmx_l1d_flush_pages = NULL;
7881 }
7882 /* Restore state so sysfs ignores VMX */
7883 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO;
7884}
7885
7886static void vmx_exit(void)
7887{
7888#ifdef CONFIG_KEXEC_CORE
7889 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
7890 synchronize_rcu();
7891#endif
7892
7893 kvm_exit();
7894
7895#if IS_ENABLED(CONFIG_HYPERV)
7896 if (static_branch_unlikely(&enable_evmcs)) {
7897 int cpu;
7898 struct hv_vp_assist_page *vp_ap;
7899 /*
7900 * Reset everything to support using non-enlightened VMCS
7901 * access later (e.g. when we reload the module with
7902 * enlightened_vmcs=0)
7903 */
7904 for_each_online_cpu(cpu) {
7905 vp_ap = hv_get_vp_assist_page(cpu);
7906
7907 if (!vp_ap)
7908 continue;
7909
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08007910 vp_ap->nested_control.features.directhypercall = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007911 vp_ap->current_nested_vmcs = 0;
7912 vp_ap->enlighten_vmentry = 0;
7913 }
7914
7915 static_branch_disable(&enable_evmcs);
7916 }
7917#endif
7918 vmx_cleanup_l1d_flush();
Aaron Lewis88213da2021-06-23 20:34:27 +00007919
7920 allow_smaller_maxphyaddr = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007921}
7922module_exit(vmx_exit);
7923
7924static int __init vmx_init(void)
7925{
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02007926 int r, cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007927
7928#if IS_ENABLED(CONFIG_HYPERV)
7929 /*
7930 * Enlightened VMCS usage should be recommended and the host needs
7931 * to support eVMCS v1 or above. We can also disable eVMCS support
7932 * with module parameter.
7933 */
7934 if (enlightened_vmcs &&
7935 ms_hyperv.hints & HV_X64_ENLIGHTENED_VMCS_RECOMMENDED &&
7936 (ms_hyperv.nested_features & HV_X64_ENLIGHTENED_VMCS_VERSION) >=
7937 KVM_EVMCS_VERSION) {
7938 int cpu;
7939
7940 /* Check that we have assist pages on all online CPUs */
7941 for_each_online_cpu(cpu) {
7942 if (!hv_get_vp_assist_page(cpu)) {
7943 enlightened_vmcs = false;
7944 break;
7945 }
7946 }
7947
7948 if (enlightened_vmcs) {
7949 pr_info("KVM: vmx: using Hyper-V Enlightened VMCS\n");
7950 static_branch_enable(&enable_evmcs);
7951 }
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08007952
7953 if (ms_hyperv.nested_features & HV_X64_NESTED_DIRECT_FLUSH)
7954 vmx_x86_ops.enable_direct_tlbflush
7955 = hv_enable_direct_tlbflush;
7956
Avi Kivity6aa8b732006-12-10 02:21:36 -08007957 } else {
7958 enlightened_vmcs = false;
7959 }
7960#endif
7961
Sean Christophersond008dfd2020-03-21 13:25:56 -07007962 r = kvm_init(&vmx_init_ops, sizeof(struct vcpu_vmx),
Avi Kivity6aa8b732006-12-10 02:21:36 -08007963 __alignof__(struct vcpu_vmx), THIS_MODULE);
7964 if (r)
7965 return r;
7966
7967 /*
7968 * Must be called after kvm_init() so enable_ept is properly set
7969 * up. Hand the parameter mitigation value in which was stored in
7970 * the pre module init parser. If no parameter was given, it will
7971 * contain 'auto' which will be turned into the default 'cond'
7972 * mitigation mode.
7973 */
Waiman Long19a36d32019-08-26 15:30:23 -04007974 r = vmx_setup_l1d_flush(vmentry_l1d_flush_param);
7975 if (r) {
7976 vmx_exit();
7977 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007978 }
7979
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02007980 for_each_possible_cpu(cpu) {
7981 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007982
Paolo Bonzinia3ff25f2020-10-24 04:08:37 -04007983 pi_init_cpu(cpu);
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02007984 }
7985
Avi Kivity6aa8b732006-12-10 02:21:36 -08007986#ifdef CONFIG_KEXEC_CORE
7987 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
7988 crash_vmclear_local_loaded_vmcss);
7989#endif
7990 vmx_check_vmcs12_offsets();
7991
Mohammed Gamal3edd6832020-07-10 17:48:11 +02007992 /*
Mohammed Gamalb96e6502020-09-03 16:11:22 +02007993 * Shadow paging doesn't have a (further) performance penalty
7994 * from GUEST_MAXPHYADDR < HOST_MAXPHYADDR so enable it
7995 * by default
Mohammed Gamal3edd6832020-07-10 17:48:11 +02007996 */
Mohammed Gamalb96e6502020-09-03 16:11:22 +02007997 if (!enable_ept)
7998 allow_smaller_maxphyaddr = true;
Mohammed Gamal3edd6832020-07-10 17:48:11 +02007999
Avi Kivity6aa8b732006-12-10 02:21:36 -08008000 return 0;
8001}
8002module_init(vmx_init);