blob: 18971cfadd4f1559557dab9f8725a0dfa17e637f [file] [log] [blame]
Thomas Gleixner20c8ccb2019-06-04 10:11:32 +02001// SPDX-License-Identifier: GPL-2.0-only
Avi Kivity6aa8b732006-12-10 02:21:36 -08002/*
3 * Kernel-based Virtual Machine driver for Linux
4 *
5 * This module enables machines with Intel VT-x extensions to run virtual
6 * machines without emulation or binary translation.
7 *
8 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02009 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -080010 *
11 * Authors:
12 * Avi Kivity <avi@qumranet.com>
13 * Yaniv Kamay <yaniv@qumranet.com>
Avi Kivity6aa8b732006-12-10 02:21:36 -080014 */
15
Sean Christopherson199b1182018-12-03 13:52:53 -080016#include <linux/highmem.h>
17#include <linux/hrtimer.h>
18#include <linux/kernel.h>
Avi Kivityedf88412007-12-16 11:02:48 +020019#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080020#include <linux/module.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020021#include <linux/moduleparam.h>
Josh Triplette9bda3b2012-03-20 23:33:51 -070022#include <linux/mod_devicetable.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080023#include <linux/mm.h>
Julien Thierry00089c02020-09-04 16:30:25 +010024#include <linux/objtool.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080025#include <linux/sched.h>
Josh Poimboeufb2849092019-01-30 07:13:58 -060026#include <linux/sched/smt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040028#include <linux/tboot.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080029#include <linux/trace_events.h>
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +020030#include <linux/entry-kvm.h>
Avi Kivitye4956062007-06-28 14:15:57 -040031
Sean Christopherson199b1182018-12-03 13:52:53 -080032#include <asm/apic.h>
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +020033#include <asm/asm.h>
Feng Wu28b835d2015-09-18 22:29:54 +080034#include <asm/cpu.h>
Thomas Gleixnerba5bade2020-03-20 14:13:46 +010035#include <asm/cpu_device_id.h>
Paolo Bonzini81908bf2014-02-21 10:32:27 +010036#include <asm/debugreg.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080037#include <asm/desc.h>
Thomas Gleixnerb56d2792021-10-15 03:16:39 +020038#include <asm/fpu/api.h>
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 */
Sean Christopherson7dfbc622021-11-09 01:30:44 +0000772static bool msr_write_intercepted(struct vcpu_vmx *vmx, u32 msr)
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100773{
Sean Christopherson7dfbc622021-11-09 01:30:44 +0000774 if (!(exec_controls_get(vmx) & CPU_BASED_USE_MSR_BITMAPS))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100775 return true;
776
Sean Christopherson67f4b992021-11-09 01:30:45 +0000777 return vmx_test_msr_bitmap_write(vmx->loaded_vmcs->msr_bitmap,
778 MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100779}
780
Gleb Natapov2961e8762013-11-25 15:37:13 +0200781static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
782 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200783{
Gleb Natapov2961e8762013-11-25 15:37:13 +0200784 vm_entry_controls_clearbit(vmx, entry);
785 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200786}
787
Sean Christophersona128a932020-09-23 11:03:57 -0700788int vmx_find_loadstore_msr_slot(struct vmx_msrs *m, u32 msr)
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400789{
790 unsigned int i;
791
792 for (i = 0; i < m->nr; ++i) {
793 if (m->val[i].index == msr)
794 return i;
795 }
796 return -ENOENT;
797}
798
Avi Kivity61d2ef22010-04-28 16:40:38 +0300799static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
800{
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400801 int i;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300802 struct msr_autoload *m = &vmx->msr_autoload;
803
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200804 switch (msr) {
805 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800806 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200807 clear_atomic_switch_msr_special(vmx,
808 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200809 VM_EXIT_LOAD_IA32_EFER);
810 return;
811 }
812 break;
813 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800814 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200815 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200816 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
817 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
818 return;
819 }
820 break;
Avi Kivity110312c2010-12-21 12:54:20 +0200821 }
Sean Christophersona128a932020-09-23 11:03:57 -0700822 i = vmx_find_loadstore_msr_slot(&m->guest, msr);
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400823 if (i < 0)
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400824 goto skip_guest;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400825 --m->guest.nr;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400826 m->guest.val[i] = m->guest.val[m->guest.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400827 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Avi Kivity110312c2010-12-21 12:54:20 +0200828
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400829skip_guest:
Sean Christophersona128a932020-09-23 11:03:57 -0700830 i = vmx_find_loadstore_msr_slot(&m->host, msr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400831 if (i < 0)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300832 return;
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400833
834 --m->host.nr;
835 m->host.val[i] = m->host.val[m->host.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400836 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300837}
838
Gleb Natapov2961e8762013-11-25 15:37:13 +0200839static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
840 unsigned long entry, unsigned long exit,
841 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
842 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200843{
844 vmcs_write64(guest_val_vmcs, guest_val);
Sean Christopherson5a5e8a12018-09-26 09:23:56 -0700845 if (host_val_vmcs != HOST_IA32_EFER)
846 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +0200847 vm_entry_controls_setbit(vmx, entry);
848 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200849}
850
Avi Kivity61d2ef22010-04-28 16:40:38 +0300851static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400852 u64 guest_val, u64 host_val, bool entry_only)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300853{
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400854 int i, j = 0;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300855 struct msr_autoload *m = &vmx->msr_autoload;
856
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200857 switch (msr) {
858 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800859 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200860 add_atomic_switch_msr_special(vmx,
861 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200862 VM_EXIT_LOAD_IA32_EFER,
863 GUEST_IA32_EFER,
864 HOST_IA32_EFER,
865 guest_val, host_val);
866 return;
867 }
868 break;
869 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800870 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200871 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200872 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
873 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
874 GUEST_IA32_PERF_GLOBAL_CTRL,
875 HOST_IA32_PERF_GLOBAL_CTRL,
876 guest_val, host_val);
877 return;
878 }
879 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +0100880 case MSR_IA32_PEBS_ENABLE:
881 /* PEBS needs a quiescent period after being disabled (to write
882 * a record). Disabling PEBS through VMX MSR swapping doesn't
883 * provide that period, so a CPU could write host's record into
884 * guest's memory.
885 */
886 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +0200887 }
888
Sean Christophersona128a932020-09-23 11:03:57 -0700889 i = vmx_find_loadstore_msr_slot(&m->guest, msr);
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400890 if (!entry_only)
Sean Christophersona128a932020-09-23 11:03:57 -0700891 j = vmx_find_loadstore_msr_slot(&m->host, msr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300892
Sean Christophersonce833b22020-09-23 11:03:56 -0700893 if ((i < 0 && m->guest.nr == MAX_NR_LOADSTORE_MSRS) ||
894 (j < 0 && m->host.nr == MAX_NR_LOADSTORE_MSRS)) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +0200895 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +0200896 "Can't add msr %x\n", msr);
897 return;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300898 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400899 if (i < 0) {
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400900 i = m->guest.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400901 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400902 }
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400903 m->guest.val[i].index = msr;
904 m->guest.val[i].value = guest_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300905
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400906 if (entry_only)
907 return;
908
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400909 if (j < 0) {
910 j = m->host.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400911 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300912 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400913 m->host.val[j].index = msr;
914 m->host.val[j].value = host_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300915}
916
Sean Christopherson86e3e492020-09-23 11:04:04 -0700917static bool update_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +0300918{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100919 u64 guest_efer = vmx->vcpu.arch.efer;
920 u64 ignore_bits = 0;
Sean Christopherson86e3e492020-09-23 11:04:04 -0700921 int i;
Eddie Dong2cc51562007-05-21 07:28:09 +0300922
Paolo Bonzini9167ab72019-10-27 16:23:23 +0100923 /* Shadow paging assumes NX to be available. */
924 if (!enable_ept)
925 guest_efer |= EFER_NX;
Roel Kluin3a34a882009-08-04 02:08:45 -0700926
Avi Kivity51c6cf62007-08-29 03:48:05 +0300927 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100928 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +0300929 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100930 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300931#ifdef CONFIG_X86_64
932 ignore_bits |= EFER_LMA | EFER_LME;
933 /* SCE is meaningful only in long mode on Intel */
934 if (guest_efer & EFER_LMA)
935 ignore_bits &= ~(u64)EFER_SCE;
936#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +0300937
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -0800938 /*
939 * On EPT, we can't emulate NX, so we must switch EFER atomically.
940 * On CPUs that support "load IA32_EFER", always switch EFER
941 * atomically, since it's faster than switching it manually.
942 */
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800943 if (cpu_has_load_ia32_efer() ||
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -0800944 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +0300945 if (!(guest_efer & EFER_LMA))
946 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -0800947 if (guest_efer != host_efer)
948 add_atomic_switch_msr(vmx, MSR_EFER,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400949 guest_efer, host_efer, false);
Sean Christopherson02343cf2018-09-26 09:23:43 -0700950 else
951 clear_atomic_switch_msr(vmx, MSR_EFER);
Avi Kivity84ad33e2010-04-28 16:42:29 +0300952 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100953 }
Sean Christopherson86e3e492020-09-23 11:04:04 -0700954
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700955 i = kvm_find_user_return_msr(MSR_EFER);
Sean Christopherson86e3e492020-09-23 11:04:04 -0700956 if (i < 0)
957 return false;
958
959 clear_atomic_switch_msr(vmx, MSR_EFER);
960
961 guest_efer &= ~ignore_bits;
962 guest_efer |= host_efer & ignore_bits;
963
964 vmx->guest_uret_msrs[i].data = guest_efer;
965 vmx->guest_uret_msrs[i].mask = ~ignore_bits;
966
967 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300968}
969
Andy Lutomirskie28baea2017-02-20 08:56:11 -0800970#ifdef CONFIG_X86_32
971/*
972 * On 32-bit kernels, VM exits still load the FS and GS bases from the
973 * VMCS rather than the segment table. KVM uses this helper to figure
974 * out the current bases to poke them into the VMCS before entry.
975 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200976static unsigned long segment_base(u16 selector)
977{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800978 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200979 unsigned long v;
980
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800981 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200982 return 0;
983
Thomas Garnier45fc8752017-03-14 10:05:08 -0700984 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200985
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800986 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200987 u16 ldt_selector = kvm_read_ldt();
988
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800989 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200990 return 0;
991
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800992 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200993 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -0800994 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200995 return v;
996}
Andy Lutomirskie28baea2017-02-20 08:56:11 -0800997#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200998
Sean Christophersone348ac72019-12-10 15:24:33 -0800999static inline bool pt_can_write_msr(struct vcpu_vmx *vmx)
1000{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001001 return vmx_pt_mode_is_host_guest() &&
Sean Christophersone348ac72019-12-10 15:24:33 -08001002 !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
1003}
1004
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07001005static inline bool pt_output_base_valid(struct kvm_vcpu *vcpu, u64 base)
1006{
1007 /* The base must be 128-byte aligned and a legal physical address. */
Sean Christopherson636e8b72021-02-03 16:01:10 -08001008 return kvm_vcpu_is_legal_aligned_gpa(vcpu, base, 128);
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07001009}
1010
Chao Peng2ef444f2018-10-24 16:05:12 +08001011static inline void pt_load_msr(struct pt_ctx *ctx, u32 addr_range)
1012{
1013 u32 i;
1014
1015 wrmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
1016 wrmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
1017 wrmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1018 wrmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1019 for (i = 0; i < addr_range; i++) {
1020 wrmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1021 wrmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1022 }
1023}
1024
1025static inline void pt_save_msr(struct pt_ctx *ctx, u32 addr_range)
1026{
1027 u32 i;
1028
1029 rdmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
1030 rdmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
1031 rdmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1032 rdmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1033 for (i = 0; i < addr_range; i++) {
1034 rdmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1035 rdmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1036 }
1037}
1038
1039static void pt_guest_enter(struct vcpu_vmx *vmx)
1040{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001041 if (vmx_pt_mode_is_system())
Chao Peng2ef444f2018-10-24 16:05:12 +08001042 return;
1043
Chao Peng2ef444f2018-10-24 16:05:12 +08001044 /*
Chao Pengb08c2892018-10-24 16:05:15 +08001045 * GUEST_IA32_RTIT_CTL is already set in the VMCS.
1046 * Save host state before VM entry.
Chao Peng2ef444f2018-10-24 16:05:12 +08001047 */
Chao Pengb08c2892018-10-24 16:05:15 +08001048 rdmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
Chao Peng2ef444f2018-10-24 16:05:12 +08001049 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
1050 wrmsrl(MSR_IA32_RTIT_CTL, 0);
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08001051 pt_save_msr(&vmx->pt_desc.host, vmx->pt_desc.num_address_ranges);
1052 pt_load_msr(&vmx->pt_desc.guest, vmx->pt_desc.num_address_ranges);
Chao Peng2ef444f2018-10-24 16:05:12 +08001053 }
1054}
1055
1056static void pt_guest_exit(struct vcpu_vmx *vmx)
1057{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001058 if (vmx_pt_mode_is_system())
Chao Peng2ef444f2018-10-24 16:05:12 +08001059 return;
1060
1061 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08001062 pt_save_msr(&vmx->pt_desc.guest, vmx->pt_desc.num_address_ranges);
1063 pt_load_msr(&vmx->pt_desc.host, vmx->pt_desc.num_address_ranges);
Chao Peng2ef444f2018-10-24 16:05:12 +08001064 }
1065
Xiaoyao Li2e6e0d62021-08-27 15:02:43 +08001066 /*
1067 * KVM requires VM_EXIT_CLEAR_IA32_RTIT_CTL to expose PT to the guest,
1068 * i.e. RTIT_CTL is always cleared on VM-Exit. Restore it if necessary.
1069 */
1070 if (vmx->pt_desc.host.ctl)
1071 wrmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
Chao Peng2ef444f2018-10-24 16:05:12 +08001072}
1073
Sean Christopherson13b964a2019-05-07 09:06:31 -07001074void vmx_set_host_fs_gs(struct vmcs_host_state *host, u16 fs_sel, u16 gs_sel,
1075 unsigned long fs_base, unsigned long gs_base)
1076{
1077 if (unlikely(fs_sel != host->fs_sel)) {
1078 if (!(fs_sel & 7))
1079 vmcs_write16(HOST_FS_SELECTOR, fs_sel);
1080 else
1081 vmcs_write16(HOST_FS_SELECTOR, 0);
1082 host->fs_sel = fs_sel;
1083 }
1084 if (unlikely(gs_sel != host->gs_sel)) {
1085 if (!(gs_sel & 7))
1086 vmcs_write16(HOST_GS_SELECTOR, gs_sel);
1087 else
1088 vmcs_write16(HOST_GS_SELECTOR, 0);
1089 host->gs_sel = gs_sel;
1090 }
1091 if (unlikely(fs_base != host->fs_base)) {
1092 vmcs_writel(HOST_FS_BASE, fs_base);
1093 host->fs_base = fs_base;
1094 }
1095 if (unlikely(gs_base != host->gs_base)) {
1096 vmcs_writel(HOST_GS_BASE, gs_base);
1097 host->gs_base = gs_base;
1098 }
1099}
1100
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001101void vmx_prepare_switch_to_guest(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001102{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001103 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond7ee0392018-07-23 12:32:47 -07001104 struct vmcs_host_state *host_state;
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001105#ifdef CONFIG_X86_64
Vitaly Kuznetsov35060ed2018-03-13 18:48:05 +01001106 int cpu = raw_smp_processor_id();
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001107#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001108 unsigned long fs_base, gs_base;
1109 u16 fs_sel, gs_sel;
Avi Kivity26bb0982009-09-07 11:14:12 +03001110 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001111
Sean Christophersond264ee02018-08-27 15:21:12 -07001112 vmx->req_immediate_exit = false;
1113
Liran Alonf48b4712018-11-20 18:03:25 +02001114 /*
1115 * Note that guest MSRs to be saved/restored can also be changed
1116 * when guest state is loaded. This happens when guest transitions
1117 * to/from long-mode by setting MSR_EFER.LMA.
1118 */
Sean Christopherson658ece82020-09-23 11:04:01 -07001119 if (!vmx->guest_uret_msrs_loaded) {
1120 vmx->guest_uret_msrs_loaded = true;
Sean Christophersone5fda4b2021-05-04 10:17:32 -07001121 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001122 if (!vmx->guest_uret_msrs[i].load_into_hardware)
1123 continue;
1124
1125 kvm_set_user_return_msr(i,
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001126 vmx->guest_uret_msrs[i].data,
1127 vmx->guest_uret_msrs[i].mask);
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001128 }
Liran Alonf48b4712018-11-20 18:03:25 +02001129 }
wanpeng lic9dfd3f2020-02-17 18:37:43 +08001130
1131 if (vmx->nested.need_vmcs12_to_shadow_sync)
1132 nested_sync_vmcs12_to_shadow(vcpu);
1133
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001134 if (vmx->guest_state_loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001135 return;
1136
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001137 host_state = &vmx->loaded_vmcs->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001138
Avi Kivity33ed6322007-05-02 16:54:03 +03001139 /*
1140 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1141 * allow segment selectors with cpl > 0 or ti == 1.
1142 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07001143 host_state->ldt_sel = kvm_read_ldt();
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01001144
1145#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001146 savesegment(ds, host_state->ds_sel);
1147 savesegment(es, host_state->es_sel);
Sean Christophersone368b872018-07-23 12:32:41 -07001148
1149 gs_base = cpu_kernelmode_gs_base(cpu);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001150 if (likely(is_64bit_mm(current->mm))) {
Thomas Gleixner67580342020-05-28 16:13:52 -04001151 current_save_fsgs();
Sean Christophersone368b872018-07-23 12:32:41 -07001152 fs_sel = current->thread.fsindex;
1153 gs_sel = current->thread.gsindex;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001154 fs_base = current->thread.fsbase;
Sean Christophersone368b872018-07-23 12:32:41 -07001155 vmx->msr_host_kernel_gs_base = current->thread.gsbase;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001156 } else {
Sean Christophersone368b872018-07-23 12:32:41 -07001157 savesegment(fs, fs_sel);
1158 savesegment(gs, gs_sel);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001159 fs_base = read_msr(MSR_FS_BASE);
Sean Christophersone368b872018-07-23 12:32:41 -07001160 vmx->msr_host_kernel_gs_base = read_msr(MSR_KERNEL_GS_BASE);
Avi Kivity33ed6322007-05-02 16:54:03 +03001161 }
1162
Paolo Bonzini4679b612018-09-24 17:23:01 +02001163 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity33ed6322007-05-02 16:54:03 +03001164#else
Sean Christophersone368b872018-07-23 12:32:41 -07001165 savesegment(fs, fs_sel);
1166 savesegment(gs, gs_sel);
1167 fs_base = segment_base(fs_sel);
1168 gs_base = segment_base(gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001169#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001170
Sean Christopherson13b964a2019-05-07 09:06:31 -07001171 vmx_set_host_fs_gs(host_state, fs_sel, gs_sel, fs_base, gs_base);
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001172 vmx->guest_state_loaded = true;
Avi Kivity33ed6322007-05-02 16:54:03 +03001173}
1174
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001175static void vmx_prepare_switch_to_host(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001176{
Sean Christophersond7ee0392018-07-23 12:32:47 -07001177 struct vmcs_host_state *host_state;
1178
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001179 if (!vmx->guest_state_loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001180 return;
1181
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001182 host_state = &vmx->loaded_vmcs->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001183
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001184 ++vmx->vcpu.stat.host_state_reload;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001185
Avi Kivityc8770e72010-11-11 12:37:26 +02001186#ifdef CONFIG_X86_64
Paolo Bonzini4679b612018-09-24 17:23:01 +02001187 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivityc8770e72010-11-11 12:37:26 +02001188#endif
Sean Christophersond7ee0392018-07-23 12:32:47 -07001189 if (host_state->ldt_sel || (host_state->gs_sel & 7)) {
1190 kvm_load_ldt(host_state->ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001191#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001192 load_gs_index(host_state->gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02001193#else
Sean Christophersond7ee0392018-07-23 12:32:47 -07001194 loadsegment(gs, host_state->gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001195#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03001196 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07001197 if (host_state->fs_sel & 7)
1198 loadsegment(fs, host_state->fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001199#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001200 if (unlikely(host_state->ds_sel | host_state->es_sel)) {
1201 loadsegment(ds, host_state->ds_sel);
1202 loadsegment(es, host_state->es_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001203 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03001204#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08001205 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03001206#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001207 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001208#endif
Thomas Garnier45fc8752017-03-14 10:05:08 -07001209 load_fixmap_gdt(raw_smp_processor_id());
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001210 vmx->guest_state_loaded = false;
Sean Christopherson658ece82020-09-23 11:04:01 -07001211 vmx->guest_uret_msrs_loaded = false;
Avi Kivity33ed6322007-05-02 16:54:03 +03001212}
1213
Sean Christopherson678e3152018-07-23 12:32:43 -07001214#ifdef CONFIG_X86_64
1215static u64 vmx_read_guest_kernel_gs_base(struct vcpu_vmx *vmx)
Avi Kivitya9b21b62008-06-24 11:48:49 +03001216{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001217 preempt_disable();
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001218 if (vmx->guest_state_loaded)
Paolo Bonzini4679b612018-09-24 17:23:01 +02001219 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1220 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001221 return vmx->msr_guest_kernel_gs_base;
Avi Kivitya9b21b62008-06-24 11:48:49 +03001222}
1223
Sean Christopherson678e3152018-07-23 12:32:43 -07001224static void vmx_write_guest_kernel_gs_base(struct vcpu_vmx *vmx, u64 data)
1225{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001226 preempt_disable();
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001227 if (vmx->guest_state_loaded)
Paolo Bonzini4679b612018-09-24 17:23:01 +02001228 wrmsrl(MSR_KERNEL_GS_BASE, data);
1229 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001230 vmx->msr_guest_kernel_gs_base = data;
1231}
1232#endif
1233
Sean Christopherson5c911be2020-05-01 09:31:17 -07001234void vmx_vcpu_load_vmcs(struct kvm_vcpu *vcpu, int cpu,
1235 struct loaded_vmcs *buddy)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001236{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001237 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001238 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Sean Christopherson5c911be2020-05-01 09:31:17 -07001239 struct vmcs *prev;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001240
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001241 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01001242 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001243 local_irq_disable();
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001244
1245 /*
Sean Christopherson31603d42020-03-21 12:37:49 -07001246 * Ensure loaded_vmcs->cpu is read before adding loaded_vmcs to
1247 * this cpu's percpu list, otherwise it may not yet be deleted
1248 * from its previous cpu's percpu list. Pairs with the
1249 * smb_wmb() in __loaded_vmcs_clear().
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001250 */
1251 smp_rmb();
1252
Nadav Har'Eld462b812011-05-24 15:26:10 +03001253 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
1254 &per_cpu(loaded_vmcss_on_cpu, cpu));
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001255 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001256 }
1257
Sean Christopherson5c911be2020-05-01 09:31:17 -07001258 prev = per_cpu(current_vmcs, cpu);
1259 if (prev != vmx->loaded_vmcs->vmcs) {
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001260 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
1261 vmcs_load(vmx->loaded_vmcs->vmcs);
Sean Christopherson5c911be2020-05-01 09:31:17 -07001262
1263 /*
1264 * No indirect branch prediction barrier needed when switching
1265 * the active VMCS within a guest, e.g. on nested VM-Enter.
1266 * The L1 VMM can protect itself with retpolines, IBPB or IBRS.
1267 */
1268 if (!buddy || WARN_ON_ONCE(buddy->vmcs != prev))
1269 indirect_branch_prediction_barrier();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001270 }
1271
1272 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001273 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001274 unsigned long sysenter_esp;
1275
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07001276 /*
1277 * Flush all EPTP/VPID contexts, the new pCPU may have stale
1278 * TLB entries from its previous association with the vCPU.
1279 */
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001280 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001281
Avi Kivity6aa8b732006-12-10 02:21:36 -08001282 /*
1283 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001284 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001285 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001286 vmcs_writel(HOST_TR_BASE,
Andy Lutomirski72f5e082017-12-04 15:07:20 +01001287 (unsigned long)&get_cpu_entry_area(cpu)->tss.x86_tss);
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001288 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001289
1290 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
1291 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08001292
Nadav Har'Eld462b812011-05-24 15:26:10 +03001293 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001294 }
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001295}
1296
1297/*
1298 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
1299 * vcpu mutex is already taken.
1300 */
Sean Christopherson1af1bb02020-05-06 16:58:50 -07001301static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001302{
1303 struct vcpu_vmx *vmx = to_vmx(vcpu);
1304
Sean Christopherson5c911be2020-05-01 09:31:17 -07001305 vmx_vcpu_load_vmcs(vcpu, cpu, NULL);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001306
Feng Wu28b835d2015-09-18 22:29:54 +08001307 vmx_vcpu_pi_load(vcpu, cpu);
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001308
Wanpeng Li74c55932017-11-29 01:31:20 -08001309 vmx->host_debugctlmsr = get_debugctlmsr();
Feng Wu28b835d2015-09-18 22:29:54 +08001310}
1311
Sean Christopherson13b964a2019-05-07 09:06:31 -07001312static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001313{
Feng Wu28b835d2015-09-18 22:29:54 +08001314 vmx_vcpu_pi_put(vcpu);
1315
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001316 vmx_prepare_switch_to_host(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001317}
1318
Maxim Levitskydbab6102021-09-13 17:09:54 +03001319bool vmx_emulation_required(struct kvm_vcpu *vcpu)
Wanpeng Lif244dee2017-07-20 01:11:54 -07001320{
Sean Christopherson2ba44932020-09-23 11:44:48 -07001321 return emulate_invalid_guest_state && !vmx_guest_state_valid(vcpu);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001322}
1323
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001324unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001325{
Sean Christophersone7bddc52019-09-27 14:45:18 -07001326 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity78ac8b42010-04-08 18:19:35 +03001327 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03001328
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001329 if (!kvm_register_is_available(vcpu, VCPU_EXREG_RFLAGS)) {
1330 kvm_register_mark_available(vcpu, VCPU_EXREG_RFLAGS);
Avi Kivity6de12732011-03-07 12:51:22 +02001331 rflags = vmcs_readl(GUEST_RFLAGS);
Sean Christophersone7bddc52019-09-27 14:45:18 -07001332 if (vmx->rmode.vm86_active) {
Avi Kivity6de12732011-03-07 12:51:22 +02001333 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
Sean Christophersone7bddc52019-09-27 14:45:18 -07001334 save_rflags = vmx->rmode.save_rflags;
Avi Kivity6de12732011-03-07 12:51:22 +02001335 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
1336 }
Sean Christophersone7bddc52019-09-27 14:45:18 -07001337 vmx->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001338 }
Sean Christophersone7bddc52019-09-27 14:45:18 -07001339 return vmx->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001340}
1341
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001342void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001343{
Sean Christophersone7bddc52019-09-27 14:45:18 -07001344 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson491c1ad2019-09-27 14:45:19 -07001345 unsigned long old_rflags;
Wanpeng Lif244dee2017-07-20 01:11:54 -07001346
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00001347 if (is_unrestricted_guest(vcpu)) {
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001348 kvm_register_mark_available(vcpu, VCPU_EXREG_RFLAGS);
Sean Christopherson491c1ad2019-09-27 14:45:19 -07001349 vmx->rflags = rflags;
1350 vmcs_writel(GUEST_RFLAGS, rflags);
1351 return;
1352 }
1353
1354 old_rflags = vmx_get_rflags(vcpu);
Sean Christophersone7bddc52019-09-27 14:45:18 -07001355 vmx->rflags = rflags;
1356 if (vmx->rmode.vm86_active) {
1357 vmx->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001358 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001359 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001360 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001361
Sean Christophersone7bddc52019-09-27 14:45:18 -07001362 if ((old_rflags ^ vmx->rflags) & X86_EFLAGS_VM)
Maxim Levitskydbab6102021-09-13 17:09:54 +03001363 vmx->emulation_required = vmx_emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001364}
1365
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001366u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001367{
1368 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1369 int ret = 0;
1370
1371 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01001372 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001373 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01001374 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001375
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02001376 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001377}
1378
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001379void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001380{
1381 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1382 u32 interruptibility = interruptibility_old;
1383
1384 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
1385
Jan Kiszka48005f62010-02-19 19:38:07 +01001386 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001387 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01001388 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001389 interruptibility |= GUEST_INTR_STATE_STI;
1390
1391 if ((interruptibility != interruptibility_old))
1392 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
1393}
1394
Chao Pengbf8c55d2018-10-24 16:05:14 +08001395static int vmx_rtit_ctl_check(struct kvm_vcpu *vcpu, u64 data)
1396{
1397 struct vcpu_vmx *vmx = to_vmx(vcpu);
1398 unsigned long value;
1399
1400 /*
1401 * Any MSR write that attempts to change bits marked reserved will
1402 * case a #GP fault.
1403 */
1404 if (data & vmx->pt_desc.ctl_bitmask)
1405 return 1;
1406
1407 /*
1408 * Any attempt to modify IA32_RTIT_CTL while TraceEn is set will
1409 * result in a #GP unless the same write also clears TraceEn.
1410 */
1411 if ((vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) &&
1412 ((vmx->pt_desc.guest.ctl ^ data) & ~RTIT_CTL_TRACEEN))
1413 return 1;
1414
1415 /*
1416 * WRMSR to IA32_RTIT_CTL that sets TraceEn but clears this bit
1417 * and FabricEn would cause #GP, if
1418 * CPUID.(EAX=14H, ECX=0):ECX.SNGLRGNOUT[bit 2] = 0
1419 */
1420 if ((data & RTIT_CTL_TRACEEN) && !(data & RTIT_CTL_TOPA) &&
1421 !(data & RTIT_CTL_FABRIC_EN) &&
1422 !intel_pt_validate_cap(vmx->pt_desc.caps,
1423 PT_CAP_single_range_output))
1424 return 1;
1425
1426 /*
1427 * MTCFreq, CycThresh and PSBFreq encodings check, any MSR write that
Ingo Molnard9f6e122021-03-18 15:28:01 +01001428 * utilize encodings marked reserved will cause a #GP fault.
Chao Pengbf8c55d2018-10-24 16:05:14 +08001429 */
1430 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc_periods);
1431 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc) &&
1432 !test_bit((data & RTIT_CTL_MTC_RANGE) >>
1433 RTIT_CTL_MTC_RANGE_OFFSET, &value))
1434 return 1;
1435 value = intel_pt_validate_cap(vmx->pt_desc.caps,
1436 PT_CAP_cycle_thresholds);
1437 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1438 !test_bit((data & RTIT_CTL_CYC_THRESH) >>
1439 RTIT_CTL_CYC_THRESH_OFFSET, &value))
1440 return 1;
1441 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_periods);
1442 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1443 !test_bit((data & RTIT_CTL_PSB_FREQ) >>
1444 RTIT_CTL_PSB_FREQ_OFFSET, &value))
1445 return 1;
1446
1447 /*
1448 * If ADDRx_CFG is reserved or the encodings is >2 will
1449 * cause a #GP fault.
1450 */
1451 value = (data & RTIT_CTL_ADDR0) >> RTIT_CTL_ADDR0_OFFSET;
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08001452 if ((value && (vmx->pt_desc.num_address_ranges < 1)) || (value > 2))
Chao Pengbf8c55d2018-10-24 16:05:14 +08001453 return 1;
1454 value = (data & RTIT_CTL_ADDR1) >> RTIT_CTL_ADDR1_OFFSET;
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08001455 if ((value && (vmx->pt_desc.num_address_ranges < 2)) || (value > 2))
Chao Pengbf8c55d2018-10-24 16:05:14 +08001456 return 1;
1457 value = (data & RTIT_CTL_ADDR2) >> RTIT_CTL_ADDR2_OFFSET;
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08001458 if ((value && (vmx->pt_desc.num_address_ranges < 3)) || (value > 2))
Chao Pengbf8c55d2018-10-24 16:05:14 +08001459 return 1;
1460 value = (data & RTIT_CTL_ADDR3) >> RTIT_CTL_ADDR3_OFFSET;
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08001461 if ((value && (vmx->pt_desc.num_address_ranges < 4)) || (value > 2))
Chao Pengbf8c55d2018-10-24 16:05:14 +08001462 return 1;
1463
1464 return 0;
1465}
1466
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07001467static bool vmx_can_emulate_instruction(struct kvm_vcpu *vcpu, void *insn, int insn_len)
1468{
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001469 /*
1470 * Emulation of instructions in SGX enclaves is impossible as RIP does
1471 * not point tthe failing instruction, and even if it did, the code
1472 * stream is inaccessible. Inject #UD instead of exiting to userspace
1473 * so that guest userspace can't DoS the guest simply by triggering
1474 * emulation (enclaves are CPL3 only).
1475 */
1476 if (to_vmx(vcpu)->exit_reason.enclave_mode) {
1477 kvm_queue_exception(vcpu, UD_VECTOR);
1478 return false;
1479 }
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07001480 return true;
1481}
1482
Sean Christopherson1957aa62019-08-27 14:40:39 -07001483static int skip_emulated_instruction(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001484{
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001485 union vmx_exit_reason exit_reason = to_vmx(vcpu)->exit_reason;
Paolo Bonzinifede8072020-04-27 11:55:59 -04001486 unsigned long rip, orig_rip;
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001487 u32 instr_len;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001488
Sean Christopherson1957aa62019-08-27 14:40:39 -07001489 /*
1490 * Using VMCS.VM_EXIT_INSTRUCTION_LEN on EPT misconfig depends on
1491 * undefined behavior: Intel's SDM doesn't mandate the VMCS field be
1492 * set when EPT misconfig occurs. In practice, real hardware updates
1493 * VM_EXIT_INSTRUCTION_LEN on EPT misconfig, but other hypervisors
1494 * (namely Hyper-V) don't set it due to it being undefined behavior,
1495 * i.e. we end up advancing IP with some random value.
1496 */
1497 if (!static_cpu_has(X86_FEATURE_HYPERVISOR) ||
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001498 exit_reason.basic != EXIT_REASON_EPT_MISCONFIG) {
1499 instr_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
1500
1501 /*
1502 * Emulating an enclave's instructions isn't supported as KVM
1503 * cannot access the enclave's memory or its true RIP, e.g. the
1504 * vmcs.GUEST_RIP points at the exit point of the enclave, not
1505 * the RIP that actually triggered the VM-Exit. But, because
1506 * most instructions that cause VM-Exit will #UD in an enclave,
1507 * most instruction-based VM-Exits simply do not occur.
1508 *
1509 * There are a few exceptions, notably the debug instructions
1510 * INT1ICEBRK and INT3, as they are allowed in debug enclaves
1511 * and generate #DB/#BP as expected, which KVM might intercept.
1512 * But again, the CPU does the dirty work and saves an instr
1513 * length of zero so VMMs don't shoot themselves in the foot.
1514 * WARN if KVM tries to skip a non-zero length instruction on
1515 * a VM-Exit from an enclave.
1516 */
1517 if (!instr_len)
1518 goto rip_updated;
1519
1520 WARN(exit_reason.enclave_mode,
1521 "KVM: skipping instruction after SGX enclave VM-Exit");
1522
Paolo Bonzinifede8072020-04-27 11:55:59 -04001523 orig_rip = kvm_rip_read(vcpu);
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001524 rip = orig_rip + instr_len;
Paolo Bonzinifede8072020-04-27 11:55:59 -04001525#ifdef CONFIG_X86_64
1526 /*
1527 * We need to mask out the high 32 bits of RIP if not in 64-bit
1528 * mode, but just finding out that we are in 64-bit mode is
1529 * quite expensive. Only do it if there was a carry.
1530 */
1531 if (unlikely(((rip ^ orig_rip) >> 31) == 3) && !is_64_bit_mode(vcpu))
1532 rip = (u32)rip;
1533#endif
Sean Christopherson1957aa62019-08-27 14:40:39 -07001534 kvm_rip_write(vcpu, rip);
1535 } else {
1536 if (!kvm_emulate_instruction(vcpu, EMULTYPE_SKIP))
1537 return 0;
1538 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001539
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12001540rip_updated:
Glauber Costa2809f5d2009-05-12 16:21:05 -04001541 /* skipping an emulated instruction also counts */
1542 vmx_set_interrupt_shadow(vcpu, 0);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02001543
Sean Christopherson60fc3d02019-08-27 14:40:38 -07001544 return 1;
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02001545}
1546
Vitaly Kuznetsov7a35e512020-06-05 13:59:05 +02001547/*
Oliver Upton5ef8acb2020-02-07 02:36:07 -08001548 * Recognizes a pending MTF VM-exit and records the nested state for later
1549 * delivery.
1550 */
1551static void vmx_update_emulated_instruction(struct kvm_vcpu *vcpu)
1552{
1553 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1554 struct vcpu_vmx *vmx = to_vmx(vcpu);
1555
1556 if (!is_guest_mode(vcpu))
1557 return;
1558
1559 /*
1560 * Per the SDM, MTF takes priority over debug-trap exceptions besides
1561 * T-bit traps. As instruction emulation is completed (i.e. at the
1562 * instruction boundary), any #DB exception pending delivery must be a
1563 * debug-trap. Record the pending MTF state to be delivered in
1564 * vmx_check_nested_events().
1565 */
1566 if (nested_cpu_has_mtf(vmcs12) &&
1567 (!vcpu->arch.exception.pending ||
1568 vcpu->arch.exception.nr == DB_VECTOR))
1569 vmx->nested.mtf_pending = true;
1570 else
1571 vmx->nested.mtf_pending = false;
1572}
1573
1574static int vmx_skip_emulated_instruction(struct kvm_vcpu *vcpu)
1575{
1576 vmx_update_emulated_instruction(vcpu);
1577 return skip_emulated_instruction(vcpu);
1578}
1579
Wanpeng Licaa057a2018-03-12 04:53:03 -07001580static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
1581{
1582 /*
1583 * Ensure that we clear the HLT state in the VMCS. We don't need to
1584 * explicitly skip the instruction because if the HLT state is set,
1585 * then the instruction is already executing and RIP has already been
1586 * advanced.
1587 */
1588 if (kvm_hlt_in_guest(vcpu->kvm) &&
1589 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
1590 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
1591}
1592
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001593static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02001594{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001595 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001596 unsigned nr = vcpu->arch.exception.nr;
1597 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001598 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001599 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001600
Jim Mattsonda998b42018-10-16 14:29:22 -07001601 kvm_deliver_exception_payload(vcpu);
1602
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001603 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001604 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001605 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
1606 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001607
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001608 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05001609 int inc_eip = 0;
1610 if (kvm_exception_is_soft(nr))
1611 inc_eip = vcpu->arch.event_exit_inst_len;
Sean Christopherson9497e1f2019-08-27 14:40:36 -07001612 kvm_inject_realmode_interrupt(vcpu, nr, inc_eip);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001613 return;
1614 }
1615
Sean Christophersonadd5ff72018-03-23 09:34:00 -07001616 WARN_ON_ONCE(vmx->emulation_required);
1617
Gleb Natapov66fd3f72009-05-11 13:35:50 +03001618 if (kvm_exception_is_soft(nr)) {
1619 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
1620 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001621 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
1622 } else
1623 intr_info |= INTR_TYPE_HARD_EXCEPTION;
1624
1625 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Wanpeng Licaa057a2018-03-12 04:53:03 -07001626
1627 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02001628}
1629
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001630static void vmx_setup_uret_msr(struct vcpu_vmx *vmx, unsigned int msr,
1631 bool load_into_hardware)
Eddie Donga75beee2007-05-17 18:55:15 +03001632{
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001633 struct vmx_uret_msr *uret_msr;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001634
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001635 uret_msr = vmx_find_uret_msr(vmx, msr);
1636 if (!uret_msr)
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001637 return;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001638
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001639 uret_msr->load_into_hardware = load_into_hardware;
Eddie Donga75beee2007-05-17 18:55:15 +03001640}
1641
1642/*
Sean Christopherson400dd542021-07-13 09:33:11 -07001643 * Configuring user return MSRs to automatically save, load, and restore MSRs
1644 * that need to be shoved into hardware when running the guest. Note, omitting
1645 * an MSR here does _NOT_ mean it's not emulated, only that it will not be
1646 * loaded into hardware when running the guest.
Avi Kivitye38aea32007-04-19 13:22:48 +03001647 */
Sean Christopherson400dd542021-07-13 09:33:11 -07001648static void vmx_setup_uret_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03001649{
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001650#ifdef CONFIG_X86_64
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001651 bool load_syscall_msrs;
1652
Jim Mattson84c8c5b2018-12-05 15:29:01 -08001653 /*
1654 * The SYSCALL MSRs are only needed on long mode guests, and only
1655 * when EFER.SCE is set.
1656 */
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001657 load_syscall_msrs = is_long_mode(&vmx->vcpu) &&
1658 (vmx->vcpu.arch.efer & EFER_SCE);
1659
1660 vmx_setup_uret_msr(vmx, MSR_STAR, load_syscall_msrs);
1661 vmx_setup_uret_msr(vmx, MSR_LSTAR, load_syscall_msrs);
1662 vmx_setup_uret_msr(vmx, MSR_SYSCALL_MASK, load_syscall_msrs);
Eddie Donga75beee2007-05-17 18:55:15 +03001663#endif
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001664 vmx_setup_uret_msr(vmx, MSR_EFER, update_transition_efer(vmx));
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001665
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001666 vmx_setup_uret_msr(vmx, MSR_TSC_AUX,
1667 guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP) ||
1668 guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDPID));
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001669
Sean Christopherson5e17c622021-05-04 10:17:30 -07001670 /*
1671 * hle=0, rtm=0, tsx_ctrl=1 can be found with some combinations of new
1672 * kernel and old userspace. If those guests run on a tsx=off host, do
1673 * allow guests to use TSX_CTRL, but don't change the value in hardware
1674 * so that TSX remains always disabled.
1675 */
1676 vmx_setup_uret_msr(vmx, MSR_IA32_TSX_CTRL, boot_cpu_has(X86_FEATURE_RTM));
Avi Kivity58972972009-02-24 22:26:47 +02001677
Sean Christophersonee9d22e2021-05-04 10:17:28 -07001678 /*
1679 * The set of MSRs to load may have changed, reload MSRs before the
1680 * next VM-Enter.
1681 */
1682 vmx->guest_uret_msrs_loaded = false;
Avi Kivitye38aea32007-04-19 13:22:48 +03001683}
1684
Ilias Stamatis307a94c2021-05-26 19:44:13 +01001685u64 vmx_get_l2_tsc_offset(struct kvm_vcpu *vcpu)
1686{
1687 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1688
1689 if (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETTING))
1690 return vmcs12->tsc_offset;
1691
1692 return 0;
1693}
1694
1695u64 vmx_get_l2_tsc_multiplier(struct kvm_vcpu *vcpu)
1696{
1697 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1698
1699 if (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETTING) &&
1700 nested_cpu_has2(vmcs12, SECONDARY_EXEC_TSC_SCALING))
1701 return vmcs12->tsc_multiplier;
1702
1703 return kvm_default_tsc_scaling_ratio;
1704}
1705
Ilias Stamatisedcfe542021-05-26 19:44:15 +01001706static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001707{
Ilias Stamatisedcfe542021-05-26 19:44:15 +01001708 vmcs_write64(TSC_OFFSET, offset);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001709}
1710
Ilias Stamatis1ab92872021-06-07 11:54:38 +01001711static void vmx_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 multiplier)
1712{
1713 vmcs_write64(TSC_MULTIPLIER, multiplier);
1714}
1715
Nadav Har'El801d3422011-05-25 23:02:23 +03001716/*
1717 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
1718 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
1719 * all guests if the "nested" module option is off, and can also be disabled
1720 * for a single guest by disabling its VMX cpuid bit.
1721 */
Sean Christopherson7c97fcb2018-12-03 13:53:17 -08001722bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
Nadav Har'El801d3422011-05-25 23:02:23 +03001723{
Radim Krčmářd6321d42017-08-05 00:12:49 +02001724 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03001725}
1726
Haozhong Zhang37e4c992016-06-22 14:59:55 +08001727static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
1728 uint64_t val)
1729{
1730 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
1731
1732 return !(val & ~valid_bits);
1733}
1734
Tom Lendacky801e4592018-02-21 13:39:51 -06001735static int vmx_get_msr_feature(struct kvm_msr_entry *msr)
1736{
Paolo Bonzini13893092018-02-26 13:40:09 +01001737 switch (msr->index) {
1738 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1739 if (!nested)
1740 return 1;
1741 return vmx_get_vmx_msr(&vmcs_config.nested, msr->index, &msr->data);
Like Xu27461da32020-05-29 15:43:45 +08001742 case MSR_IA32_PERF_CAPABILITIES:
1743 msr->data = vmx_get_perf_capabilities();
1744 return 0;
Paolo Bonzini13893092018-02-26 13:40:09 +01001745 default:
Peter Xu12bc2132020-06-22 18:04:42 -04001746 return KVM_MSR_RET_INVALID;
Paolo Bonzini13893092018-02-26 13:40:09 +01001747 }
Tom Lendacky801e4592018-02-21 13:39:51 -06001748}
1749
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001750/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001751 * Reads an msr value (of 'msr_index') into 'pdata'.
1752 * Returns 0 on success, non-0 otherwise.
1753 * Assumes vcpu_load() was already called.
1754 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001755static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001756{
Borislav Petkova6cb0992017-12-20 12:50:28 +01001757 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001758 struct vmx_uret_msr *msr;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001759 u32 index;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001760
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001761 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001762#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001763 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001764 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001765 break;
1766 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001767 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001768 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001769 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001770 msr_info->data = vmx_read_guest_kernel_gs_base(vmx);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001771 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03001772#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001773 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001774 return kvm_get_msr_common(vcpu, msr_info);
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05001775 case MSR_IA32_TSX_CTRL:
1776 if (!msr_info->host_initiated &&
1777 !(vcpu->arch.arch_capabilities & ARCH_CAP_TSX_CTRL_MSR))
1778 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001779 goto find_uret_msr;
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001780 case MSR_IA32_UMWAIT_CONTROL:
1781 if (!msr_info->host_initiated && !vmx_has_waitpkg(vmx))
1782 return 1;
1783
1784 msr_info->data = vmx->msr_ia32_umwait_control;
1785 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001786 case MSR_IA32_SPEC_CTRL:
1787 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05001788 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001789 return 1;
1790
1791 msr_info->data = to_vmx(vcpu)->spec_ctrl;
1792 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001793 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001794 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001795 break;
1796 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001797 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001798 break;
1799 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001800 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001801 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001802 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08001803 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02001804 (!msr_info->host_initiated &&
1805 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01001806 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001807 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001808 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001809 case MSR_IA32_MCG_EXT_CTL:
1810 if (!msr_info->host_initiated &&
Borislav Petkova6cb0992017-12-20 12:50:28 +01001811 !(vmx->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001812 FEAT_CTL_LMCE_ENABLED))
Jan Kiszkacae50132014-01-04 18:47:22 +01001813 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001814 msr_info->data = vcpu->arch.mcg_ext_ctl;
1815 break;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001816 case MSR_IA32_FEAT_CTL:
Borislav Petkova6cb0992017-12-20 12:50:28 +01001817 msr_info->data = vmx->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01001818 break;
Sean Christopherson8f102442021-04-12 16:21:40 +12001819 case MSR_IA32_SGXLEPUBKEYHASH0 ... MSR_IA32_SGXLEPUBKEYHASH3:
1820 if (!msr_info->host_initiated &&
1821 !guest_cpuid_has(vcpu, X86_FEATURE_SGX_LC))
1822 return 1;
1823 msr_info->data = to_vmx(vcpu)->msr_ia32_sgxlepubkeyhash
1824 [msr_info->index - MSR_IA32_SGXLEPUBKEYHASH0];
1825 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01001826 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1827 if (!nested_vmx_allowed(vcpu))
1828 return 1;
Vitaly Kuznetsov31de3d22020-02-05 13:30:33 +01001829 if (vmx_get_vmx_msr(&vmx->nested.msrs, msr_info->index,
1830 &msr_info->data))
1831 return 1;
1832 /*
Vitaly Kuznetsov8d68bad2021-09-07 18:35:30 +02001833 * Enlightened VMCS v1 doesn't have certain VMCS fields but
1834 * instead of just ignoring the features, different Hyper-V
1835 * versions are either trying to use them and fail or do some
1836 * sanity checking and refuse to boot. Filter all unsupported
1837 * features out.
Vitaly Kuznetsov31de3d22020-02-05 13:30:33 +01001838 */
1839 if (!msr_info->host_initiated &&
1840 vmx->nested.enlightened_vmcs_enabled)
1841 nested_evmcs_filter_control_msr(msr_info->index,
1842 &msr_info->data);
1843 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001844 case MSR_IA32_RTIT_CTL:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001845 if (!vmx_pt_mode_is_host_guest())
Chao Pengbf8c55d2018-10-24 16:05:14 +08001846 return 1;
1847 msr_info->data = vmx->pt_desc.guest.ctl;
1848 break;
1849 case MSR_IA32_RTIT_STATUS:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001850 if (!vmx_pt_mode_is_host_guest())
Chao Pengbf8c55d2018-10-24 16:05:14 +08001851 return 1;
1852 msr_info->data = vmx->pt_desc.guest.status;
1853 break;
1854 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001855 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001856 !intel_pt_validate_cap(vmx->pt_desc.caps,
1857 PT_CAP_cr3_filtering))
1858 return 1;
1859 msr_info->data = vmx->pt_desc.guest.cr3_match;
1860 break;
1861 case MSR_IA32_RTIT_OUTPUT_BASE:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001862 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001863 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1864 PT_CAP_topa_output) &&
1865 !intel_pt_validate_cap(vmx->pt_desc.caps,
1866 PT_CAP_single_range_output)))
1867 return 1;
1868 msr_info->data = vmx->pt_desc.guest.output_base;
1869 break;
1870 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001871 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001872 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1873 PT_CAP_topa_output) &&
1874 !intel_pt_validate_cap(vmx->pt_desc.caps,
1875 PT_CAP_single_range_output)))
1876 return 1;
1877 msr_info->data = vmx->pt_desc.guest.output_mask;
1878 break;
1879 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
1880 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
Sean Christopherson2ef76192020-03-02 15:56:22 -08001881 if (!vmx_pt_mode_is_host_guest() ||
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08001882 (index >= 2 * vmx->pt_desc.num_address_ranges))
Chao Pengbf8c55d2018-10-24 16:05:14 +08001883 return 1;
1884 if (index % 2)
1885 msr_info->data = vmx->pt_desc.guest.addr_b[index / 2];
1886 else
1887 msr_info->data = vmx->pt_desc.guest.addr_a[index / 2];
1888 break;
Like Xud8550662021-01-08 09:36:55 +08001889 case MSR_IA32_DEBUGCTLMSR:
1890 msr_info->data = vmcs_read64(GUEST_IA32_DEBUGCTL);
1891 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001892 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001893 find_uret_msr:
Sean Christophersond85a8032020-09-23 11:04:06 -07001894 msr = vmx_find_uret_msr(vmx, msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001895 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001896 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001897 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001898 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001899 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001900 }
1901
Avi Kivity6aa8b732006-12-10 02:21:36 -08001902 return 0;
1903}
1904
Sean Christopherson24085002020-04-28 16:10:24 -07001905static u64 nested_vmx_truncate_sysenter_addr(struct kvm_vcpu *vcpu,
1906 u64 data)
1907{
1908#ifdef CONFIG_X86_64
1909 if (!guest_cpuid_has(vcpu, X86_FEATURE_LM))
1910 return (u32)data;
1911#endif
1912 return (unsigned long)data;
1913}
1914
Like Xuc6462362021-02-01 13:10:31 +08001915static u64 vcpu_supported_debugctl(struct kvm_vcpu *vcpu)
1916{
1917 u64 debugctl = vmx_supported_debugctl();
1918
1919 if (!intel_pmu_lbr_is_enabled(vcpu))
Like Xue6209a32021-02-01 13:10:36 +08001920 debugctl &= ~DEBUGCTLMSR_LBR_MASK;
Like Xuc6462362021-02-01 13:10:31 +08001921
Paolo Bonzini76ea4382021-05-06 06:30:04 -04001922 if (!guest_cpuid_has(vcpu, X86_FEATURE_BUS_LOCK_DETECT))
1923 debugctl &= ~DEBUGCTLMSR_BUS_LOCK_DETECT;
1924
Like Xuc6462362021-02-01 13:10:31 +08001925 return debugctl;
1926}
1927
Avi Kivity6aa8b732006-12-10 02:21:36 -08001928/*
Miaohe Lin311497e2019-12-11 14:26:25 +08001929 * Writes msr value into the appropriate "register".
Avi Kivity6aa8b732006-12-10 02:21:36 -08001930 * Returns 0 on success, non-0 otherwise.
1931 * Assumes vcpu_load() was already called.
1932 */
Will Auld8fe8ab42012-11-29 12:42:12 -08001933static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001934{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001935 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001936 struct vmx_uret_msr *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03001937 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08001938 u32 msr_index = msr_info->index;
1939 u64 data = msr_info->data;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001940 u32 index;
Eddie Dong2cc51562007-05-21 07:28:09 +03001941
Avi Kivity6aa8b732006-12-10 02:21:36 -08001942 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001943 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08001944 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03001945 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001946#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001947 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001948 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001949 vmcs_writel(GUEST_FS_BASE, data);
1950 break;
1951 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001952 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001953 vmcs_writel(GUEST_GS_BASE, data);
1954 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001955 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001956 vmx_write_guest_kernel_gs_base(vmx, data);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001957 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001958#endif
1959 case MSR_IA32_SYSENTER_CS:
Sean Christophersonde70d272019-05-07 09:06:36 -07001960 if (is_guest_mode(vcpu))
1961 get_vmcs12(vcpu)->guest_sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001962 vmcs_write32(GUEST_SYSENTER_CS, data);
1963 break;
1964 case MSR_IA32_SYSENTER_EIP:
Sean Christopherson24085002020-04-28 16:10:24 -07001965 if (is_guest_mode(vcpu)) {
1966 data = nested_vmx_truncate_sysenter_addr(vcpu, data);
Sean Christophersonde70d272019-05-07 09:06:36 -07001967 get_vmcs12(vcpu)->guest_sysenter_eip = data;
Sean Christopherson24085002020-04-28 16:10:24 -07001968 }
Avi Kivityf5b42c32007-03-06 12:05:53 +02001969 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001970 break;
1971 case MSR_IA32_SYSENTER_ESP:
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_esp = data;
Sean Christopherson24085002020-04-28 16:10:24 -07001975 }
Avi Kivityf5b42c32007-03-06 12:05:53 +02001976 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001977 break;
Like Xud8550662021-01-08 09:36:55 +08001978 case MSR_IA32_DEBUGCTLMSR: {
Like Xuc6462362021-02-01 13:10:31 +08001979 u64 invalid = data & ~vcpu_supported_debugctl(vcpu);
Like Xud8550662021-01-08 09:36:55 +08001980 if (invalid & (DEBUGCTLMSR_BTF|DEBUGCTLMSR_LBR)) {
1981 if (report_ignored_msrs)
1982 vcpu_unimpl(vcpu, "%s: BTF|LBR in IA32_DEBUGCTLMSR 0x%llx, nop\n",
1983 __func__, data);
1984 data &= ~(DEBUGCTLMSR_BTF|DEBUGCTLMSR_LBR);
1985 invalid &= ~(DEBUGCTLMSR_BTF|DEBUGCTLMSR_LBR);
1986 }
1987
1988 if (invalid)
1989 return 1;
1990
Sean Christopherson699a1ac2019-05-07 09:06:37 -07001991 if (is_guest_mode(vcpu) && get_vmcs12(vcpu)->vm_exit_controls &
1992 VM_EXIT_SAVE_DEBUG_CONTROLS)
1993 get_vmcs12(vcpu)->guest_ia32_debugctl = data;
1994
Like Xud8550662021-01-08 09:36:55 +08001995 vmcs_write64(GUEST_IA32_DEBUGCTL, data);
Like Xu8e129112021-02-01 13:10:33 +08001996 if (intel_pmu_lbr_is_enabled(vcpu) && !to_vmx(vcpu)->lbr_desc.event &&
1997 (data & DEBUGCTLMSR_LBR))
1998 intel_pmu_create_guest_lbr_event(vcpu);
Like Xud8550662021-01-08 09:36:55 +08001999 return 0;
2000 }
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002001 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08002002 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02002003 (!msr_info->host_initiated &&
2004 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002005 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08002006 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07002007 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002008 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08002009 vmcs_write64(GUEST_BNDCFGS, data);
2010 break;
Tao Xu6e3ba4a2019-07-16 14:55:50 +08002011 case MSR_IA32_UMWAIT_CONTROL:
2012 if (!msr_info->host_initiated && !vmx_has_waitpkg(vmx))
2013 return 1;
2014
2015 /* The reserved bit 1 and non-32 bit [63:32] should be zero */
2016 if (data & (BIT_ULL(1) | GENMASK_ULL(63, 32)))
2017 return 1;
2018
2019 vmx->msr_ia32_umwait_control = data;
2020 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002021 case MSR_IA32_SPEC_CTRL:
2022 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002023 !guest_has_spec_ctrl_msr(vcpu))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002024 return 1;
2025
Maxim Levitsky841c2be2020-07-08 14:57:31 +03002026 if (kvm_spec_ctrl_test_value(data))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002027 return 1;
2028
2029 vmx->spec_ctrl = data;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002030 if (!data)
2031 break;
2032
2033 /*
2034 * For non-nested:
2035 * When it's written (to non-zero) for the first time, pass
2036 * it through.
2037 *
2038 * For nested:
2039 * The handling of the MSR bitmap for L2 guests is done in
Miaohe Lin4d516fe2019-12-11 14:26:21 +08002040 * nested_vmx_prepare_msr_bitmap. We should not touch the
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002041 * vmcs02.msr_bitmap here since it gets completely overwritten
2042 * in the merging. We update the vmcs01 here for L1 as well
2043 * since it will end up touching the MSR anyway now.
2044 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002045 vmx_disable_intercept_for_msr(vcpu,
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002046 MSR_IA32_SPEC_CTRL,
2047 MSR_TYPE_RW);
2048 break;
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05002049 case MSR_IA32_TSX_CTRL:
2050 if (!msr_info->host_initiated &&
2051 !(vcpu->arch.arch_capabilities & ARCH_CAP_TSX_CTRL_MSR))
2052 return 1;
2053 if (data & ~(TSX_CTRL_RTM_DISABLE | TSX_CTRL_CPUID_CLEAR))
2054 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002055 goto find_uret_msr;
Ashok Raj15d45072018-02-01 22:59:43 +01002056 case MSR_IA32_PRED_CMD:
2057 if (!msr_info->host_initiated &&
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002058 !guest_has_pred_cmd_msr(vcpu))
Ashok Raj15d45072018-02-01 22:59:43 +01002059 return 1;
2060
2061 if (data & ~PRED_CMD_IBPB)
2062 return 1;
Paolo Bonzini39485ed2020-12-03 09:40:15 -05002063 if (!boot_cpu_has(X86_FEATURE_IBPB))
Paolo Bonzini6441fa62020-01-20 16:33:06 +01002064 return 1;
Ashok Raj15d45072018-02-01 22:59:43 +01002065 if (!data)
2066 break;
2067
2068 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
2069
2070 /*
2071 * For non-nested:
2072 * When it's written (to non-zero) for the first time, pass
2073 * it through.
2074 *
2075 * For nested:
2076 * The handling of the MSR bitmap for L2 guests is done in
Miaohe Lin4d516fe2019-12-11 14:26:21 +08002077 * nested_vmx_prepare_msr_bitmap. We should not touch the
Ashok Raj15d45072018-02-01 22:59:43 +01002078 * vmcs02.msr_bitmap here since it gets completely overwritten
2079 * in the merging.
2080 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002081 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_PRED_CMD, MSR_TYPE_W);
Ashok Raj15d45072018-02-01 22:59:43 +01002082 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002083 case MSR_IA32_CR_PAT:
Sean Christophersond28f4292019-05-07 09:06:27 -07002084 if (!kvm_pat_valid(data))
2085 return 1;
2086
Sean Christopherson142e4be2019-05-07 09:06:35 -07002087 if (is_guest_mode(vcpu) &&
2088 get_vmcs12(vcpu)->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
2089 get_vmcs12(vcpu)->guest_ia32_pat = data;
2090
Sheng Yang468d4722008-10-09 16:01:55 +08002091 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2092 vmcs_write64(GUEST_IA32_PAT, data);
2093 vcpu->arch.pat = data;
2094 break;
2095 }
Will Auld8fe8ab42012-11-29 12:42:12 -08002096 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002097 break;
Will Auldba904632012-11-29 12:42:50 -08002098 case MSR_IA32_TSC_ADJUST:
2099 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002100 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002101 case MSR_IA32_MCG_EXT_CTL:
2102 if ((!msr_info->host_initiated &&
2103 !(to_vmx(vcpu)->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002104 FEAT_CTL_LMCE_ENABLED)) ||
Ashok Rajc45dcc72016-06-22 14:59:56 +08002105 (data & ~MCG_EXT_CTL_LMCE_EN))
2106 return 1;
2107 vcpu->arch.mcg_ext_ctl = data;
2108 break;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002109 case MSR_IA32_FEAT_CTL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08002110 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08002111 (to_vmx(vcpu)->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002112 FEAT_CTL_LOCKED && !msr_info->host_initiated))
Jan Kiszkacae50132014-01-04 18:47:22 +01002113 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08002114 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01002115 if (msr_info->host_initiated && data == 0)
2116 vmx_leave_nested(vcpu);
Sean Christopherson72add912021-04-12 16:21:42 +12002117
2118 /* SGX may be enabled/disabled by guest's firmware */
2119 vmx_write_encls_bitmap(vcpu, NULL);
Jan Kiszkacae50132014-01-04 18:47:22 +01002120 break;
Sean Christopherson8f102442021-04-12 16:21:40 +12002121 case MSR_IA32_SGXLEPUBKEYHASH0 ... MSR_IA32_SGXLEPUBKEYHASH3:
2122 /*
2123 * On real hardware, the LE hash MSRs are writable before
2124 * the firmware sets bit 0 in MSR 0x7a ("activating" SGX),
2125 * at which point SGX related bits in IA32_FEATURE_CONTROL
2126 * become writable.
2127 *
2128 * KVM does not emulate SGX activation for simplicity, so
2129 * allow writes to the LE hash MSRs if IA32_FEATURE_CONTROL
2130 * is unlocked. This is technically not architectural
2131 * behavior, but it's close enough.
2132 */
2133 if (!msr_info->host_initiated &&
2134 (!guest_cpuid_has(vcpu, X86_FEATURE_SGX_LC) ||
2135 ((vmx->msr_ia32_feature_control & FEAT_CTL_LOCKED) &&
2136 !(vmx->msr_ia32_feature_control & FEAT_CTL_SGX_LC_ENABLED))))
2137 return 1;
2138 vmx->msr_ia32_sgxlepubkeyhash
2139 [msr_index - MSR_IA32_SGXLEPUBKEYHASH0] = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01002140 break;
2141 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08002142 if (!msr_info->host_initiated)
2143 return 1; /* they are read-only */
2144 if (!nested_vmx_allowed(vcpu))
2145 return 1;
2146 return vmx_set_vmx_msr(vcpu, msr_index, data);
Chao Pengbf8c55d2018-10-24 16:05:14 +08002147 case MSR_IA32_RTIT_CTL:
Sean Christopherson2ef76192020-03-02 15:56:22 -08002148 if (!vmx_pt_mode_is_host_guest() ||
Luwei Kangee85dec2018-10-24 16:05:16 +08002149 vmx_rtit_ctl_check(vcpu, data) ||
2150 vmx->nested.vmxon)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002151 return 1;
2152 vmcs_write64(GUEST_IA32_RTIT_CTL, data);
2153 vmx->pt_desc.guest.ctl = data;
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002154 pt_update_intercept_for_msr(vcpu);
Chao Pengbf8c55d2018-10-24 16:05:14 +08002155 break;
2156 case MSR_IA32_RTIT_STATUS:
Sean Christophersone348ac72019-12-10 15:24:33 -08002157 if (!pt_can_write_msr(vmx))
2158 return 1;
2159 if (data & MSR_IA32_RTIT_STATUS_MASK)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002160 return 1;
2161 vmx->pt_desc.guest.status = data;
2162 break;
2163 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christophersone348ac72019-12-10 15:24:33 -08002164 if (!pt_can_write_msr(vmx))
2165 return 1;
2166 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2167 PT_CAP_cr3_filtering))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002168 return 1;
2169 vmx->pt_desc.guest.cr3_match = data;
2170 break;
2171 case MSR_IA32_RTIT_OUTPUT_BASE:
Sean Christophersone348ac72019-12-10 15:24:33 -08002172 if (!pt_can_write_msr(vmx))
2173 return 1;
2174 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2175 PT_CAP_topa_output) &&
2176 !intel_pt_validate_cap(vmx->pt_desc.caps,
2177 PT_CAP_single_range_output))
2178 return 1;
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07002179 if (!pt_output_base_valid(vcpu, data))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002180 return 1;
2181 vmx->pt_desc.guest.output_base = data;
2182 break;
2183 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christophersone348ac72019-12-10 15:24:33 -08002184 if (!pt_can_write_msr(vmx))
2185 return 1;
2186 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2187 PT_CAP_topa_output) &&
2188 !intel_pt_validate_cap(vmx->pt_desc.caps,
2189 PT_CAP_single_range_output))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002190 return 1;
2191 vmx->pt_desc.guest.output_mask = data;
2192 break;
2193 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christophersone348ac72019-12-10 15:24:33 -08002194 if (!pt_can_write_msr(vmx))
2195 return 1;
Chao Pengbf8c55d2018-10-24 16:05:14 +08002196 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08002197 if (index >= 2 * vmx->pt_desc.num_address_ranges)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002198 return 1;
Sean Christophersonfe6ed362019-12-10 15:24:32 -08002199 if (is_noncanonical_address(data, vcpu))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002200 return 1;
2201 if (index % 2)
2202 vmx->pt_desc.guest.addr_b[index / 2] = data;
2203 else
2204 vmx->pt_desc.guest.addr_a[index / 2] = data;
2205 break;
Paolo Bonzini9c9520c2021-02-02 09:36:08 -05002206 case MSR_IA32_PERF_CAPABILITIES:
2207 if (data && !vcpu_to_pmu(vcpu)->version)
2208 return 1;
2209 if (data & PMU_CAP_LBR_FMT) {
2210 if ((data & PMU_CAP_LBR_FMT) !=
2211 (vmx_get_perf_capabilities() & PMU_CAP_LBR_FMT))
2212 return 1;
2213 if (!intel_pmu_lbr_is_compatible(vcpu))
2214 return 1;
2215 }
2216 ret = kvm_set_msr_common(vcpu, msr_info);
2217 break;
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05002218
Avi Kivity6aa8b732006-12-10 02:21:36 -08002219 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002220 find_uret_msr:
Sean Christophersond85a8032020-09-23 11:04:06 -07002221 msr = vmx_find_uret_msr(vmx, msr_index);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05002222 if (msr)
Sean Christopherson7bf662b2020-09-23 11:04:07 -07002223 ret = vmx_set_guest_uret_msr(vmx, msr, data);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05002224 else
2225 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002226 }
2227
Eddie Dong2cc51562007-05-21 07:28:09 +03002228 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002229}
2230
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002231static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002232{
Sean Christophersonf98c1e72020-05-01 21:32:30 -07002233 unsigned long guest_owned_bits;
2234
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002235 kvm_register_mark_available(vcpu, reg);
2236
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002237 switch (reg) {
2238 case VCPU_REGS_RSP:
2239 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
2240 break;
2241 case VCPU_REGS_RIP:
2242 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
2243 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002244 case VCPU_EXREG_PDPTR:
2245 if (enable_ept)
2246 ept_save_pdptrs(vcpu);
2247 break;
Sean Christophersonbd31fe42020-05-01 21:32:31 -07002248 case VCPU_EXREG_CR0:
2249 guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
2250
2251 vcpu->arch.cr0 &= ~guest_owned_bits;
2252 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & guest_owned_bits;
2253 break;
Sean Christopherson34059c22019-09-27 14:45:23 -07002254 case VCPU_EXREG_CR3:
Sean Christopherson81ca0e72021-07-13 09:33:03 -07002255 /*
2256 * When intercepting CR3 loads, e.g. for shadowing paging, KVM's
2257 * CR3 is loaded into hardware, not the guest's CR3.
2258 */
2259 if (!(exec_controls_get(to_vmx(vcpu)) & CPU_BASED_CR3_LOAD_EXITING))
Sean Christopherson34059c22019-09-27 14:45:23 -07002260 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2261 break;
Sean Christophersonf98c1e72020-05-01 21:32:30 -07002262 case VCPU_EXREG_CR4:
2263 guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
2264
2265 vcpu->arch.cr4 &= ~guest_owned_bits;
2266 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & guest_owned_bits;
2267 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002268 default:
Sean Christopherson67369272021-07-02 15:04:25 -07002269 KVM_BUG_ON(1, vcpu->kvm);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002270 break;
2271 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002272}
2273
Avi Kivity6aa8b732006-12-10 02:21:36 -08002274static __init int cpu_has_kvm_support(void)
2275{
Eduardo Habkost6210e372008-11-17 19:03:16 -02002276 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002277}
2278
2279static __init int vmx_disabled_by_bios(void)
2280{
Sean Christophersona4d0b2f2019-12-20 20:45:09 -08002281 return !boot_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
2282 !boot_cpu_has(X86_FEATURE_VMX);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002283}
2284
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002285static int kvm_cpu_vmxon(u64 vmxon_pointer)
Dongxiao Xu7725b892010-05-11 18:29:38 +08002286{
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002287 u64 msr;
2288
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002289 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03002290
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002291 asm_volatile_goto("1: vmxon %[vmxon_pointer]\n\t"
2292 _ASM_EXTABLE(1b, %l[fault])
2293 : : [vmxon_pointer] "m"(vmxon_pointer)
2294 : : fault);
2295 return 0;
2296
2297fault:
2298 WARN_ONCE(1, "VMXON faulted, MSR_IA32_FEAT_CTL (0x3a) = 0x%llx\n",
2299 rdmsrl_safe(MSR_IA32_FEAT_CTL, &msr) ? 0xdeadbeef : msr);
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002300 cr4_clear_bits(X86_CR4_VMXE);
2301
2302 return -EFAULT;
Dongxiao Xu7725b892010-05-11 18:29:38 +08002303}
2304
Radim Krčmář13a34e02014-08-28 15:13:03 +02002305static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002306{
2307 int cpu = raw_smp_processor_id();
2308 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002309 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002310
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002311 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02002312 return -EBUSY;
2313
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002314 /*
2315 * This can happen if we hot-added a CPU but failed to allocate
2316 * VP assist page for it.
2317 */
2318 if (static_branch_unlikely(&enable_evmcs) &&
2319 !hv_get_vp_assist_page(cpu))
2320 return -EFAULT;
2321
Sean Christopherson5ef940b2020-12-30 16:26:58 -08002322 intel_pt_handle_vmx(1);
2323
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002324 r = kvm_cpu_vmxon(phys_addr);
Sean Christopherson5ef940b2020-12-30 16:26:58 -08002325 if (r) {
2326 intel_pt_handle_vmx(0);
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002327 return r;
Sean Christopherson5ef940b2020-12-30 16:26:58 -08002328 }
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002329
David Hildenbrandfdf288b2017-08-24 20:51:29 +02002330 if (enable_ept)
2331 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02002332
2333 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002334}
2335
Nadav Har'Eld462b812011-05-24 15:26:10 +03002336static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03002337{
2338 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03002339 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03002340
Nadav Har'Eld462b812011-05-24 15:26:10 +03002341 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
2342 loaded_vmcss_on_cpu_link)
2343 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03002344}
2345
Radim Krčmář13a34e02014-08-28 15:13:03 +02002346static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002347{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002348 vmclear_local_loaded_vmcss();
Sean Christopherson6a289132020-12-30 16:26:59 -08002349
2350 if (cpu_vmxoff())
2351 kvm_spurious_fault();
Sean Christopherson5ef940b2020-12-30 16:26:58 -08002352
2353 intel_pt_handle_vmx(0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002354}
2355
Sean Christopherson7a57c092020-03-12 11:04:16 -07002356/*
2357 * There is no X86_FEATURE for SGX yet, but anyway we need to query CPUID
2358 * directly instead of going through cpu_has(), to ensure KVM is trapping
2359 * ENCLS whenever it's supported in hardware. It does not matter whether
2360 * the host OS supports or has enabled SGX.
2361 */
2362static bool cpu_has_sgx(void)
2363{
2364 return cpuid_eax(0) >= 0x12 && (cpuid_eax(0x12) & BIT(0));
2365}
2366
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002367static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04002368 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002369{
2370 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002371 u32 ctl = ctl_min | ctl_opt;
2372
2373 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2374
2375 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
2376 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
2377
2378 /* Ensure minimum (required) set of control bits are supported. */
2379 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002380 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002381
2382 *result = ctl;
2383 return 0;
2384}
2385
Sean Christopherson7caaa712018-12-03 13:53:01 -08002386static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf,
2387 struct vmx_capability *vmx_cap)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002388{
2389 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08002390 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002391 u32 _pin_based_exec_control = 0;
2392 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002393 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002394 u32 _vmexit_control = 0;
2395 u32 _vmentry_control = 0;
2396
Paolo Bonzini13893092018-02-26 13:40:09 +01002397 memset(vmcs_conf, 0, sizeof(*vmcs_conf));
Raghavendra K T10166742012-02-07 23:19:20 +05302398 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002399#ifdef CONFIG_X86_64
2400 CPU_BASED_CR8_LOAD_EXITING |
2401 CPU_BASED_CR8_STORE_EXITING |
2402#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002403 CPU_BASED_CR3_LOAD_EXITING |
2404 CPU_BASED_CR3_STORE_EXITING |
Quan Xu8eb73e2d2017-12-12 16:44:21 +08002405 CPU_BASED_UNCOND_IO_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002406 CPU_BASED_MOV_DR_EXITING |
Xiaoyao Li5e3d3942019-12-06 16:45:26 +08002407 CPU_BASED_USE_TSC_OFFSETTING |
Wanpeng Li4d5422c2018-03-12 04:53:02 -07002408 CPU_BASED_MWAIT_EXITING |
2409 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02002410 CPU_BASED_INVLPG_EXITING |
2411 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06002412
Sheng Yangf78e0e22007-10-29 09:40:42 +08002413 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08002414 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08002415 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002416 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
2417 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002418 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002419#ifdef CONFIG_X86_64
2420 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2421 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
2422 ~CPU_BASED_CR8_STORE_EXITING;
2423#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08002424 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002425 min2 = 0;
2426 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08002427 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08002428 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08002429 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002430 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002431 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002432 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Paolo Bonzini0367f202016-07-12 10:44:55 +02002433 SECONDARY_EXEC_DESC |
Sean Christopherson7f3603b2020-09-23 09:50:47 -07002434 SECONDARY_EXEC_ENABLE_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08002435 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002436 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03002437 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08002438 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08002439 SECONDARY_EXEC_XSAVES |
David Hildenbrand736fdf72017-08-24 20:51:37 +02002440 SECONDARY_EXEC_RDSEED_EXITING |
2441 SECONDARY_EXEC_RDRAND_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08002442 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04002443 SECONDARY_EXEC_TSC_SCALING |
Tao Xue69e72fa2019-07-16 14:55:49 +08002444 SECONDARY_EXEC_ENABLE_USR_WAIT_PAUSE |
Chao Pengf99e3da2018-10-24 16:05:10 +08002445 SECONDARY_EXEC_PT_USE_GPA |
2446 SECONDARY_EXEC_PT_CONCEAL_VMX |
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08002447 SECONDARY_EXEC_ENABLE_VMFUNC |
2448 SECONDARY_EXEC_BUS_LOCK_DETECTION;
Sean Christopherson7a57c092020-03-12 11:04:16 -07002449 if (cpu_has_sgx())
2450 opt2 |= SECONDARY_EXEC_ENCLS_EXITING;
Sheng Yangd56f5462008-04-25 10:13:16 +08002451 if (adjust_vmx_controls(min2, opt2,
2452 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002453 &_cpu_based_2nd_exec_control) < 0)
2454 return -EIO;
2455 }
2456#ifndef CONFIG_X86_64
2457 if (!(_cpu_based_2nd_exec_control &
2458 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
2459 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
2460#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08002461
2462 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2463 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08002464 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002465 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
2466 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08002467
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002468 rdmsr_safe(MSR_IA32_VMX_EPT_VPID_CAP,
Sean Christopherson7caaa712018-12-03 13:53:01 -08002469 &vmx_cap->ept, &vmx_cap->vpid);
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002470
Sheng Yangd56f5462008-04-25 10:13:16 +08002471 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03002472 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
2473 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03002474 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
2475 CPU_BASED_CR3_STORE_EXITING |
2476 CPU_BASED_INVLPG_EXITING);
Sean Christopherson7caaa712018-12-03 13:53:01 -08002477 } else if (vmx_cap->ept) {
2478 vmx_cap->ept = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002479 pr_warn_once("EPT CAP should not exist if not support "
2480 "1-setting enable EPT VM-execution control\n");
2481 }
2482 if (!(_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_VPID) &&
Sean Christopherson7caaa712018-12-03 13:53:01 -08002483 vmx_cap->vpid) {
2484 vmx_cap->vpid = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002485 pr_warn_once("VPID CAP should not exist if not support "
2486 "1-setting enable VPID VM-execution control\n");
Sheng Yangd56f5462008-04-25 10:13:16 +08002487 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002488
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002489 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002490#ifdef CONFIG_X86_64
2491 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
2492#endif
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002493 opt = VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL |
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002494 VM_EXIT_LOAD_IA32_PAT |
2495 VM_EXIT_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002496 VM_EXIT_CLEAR_BNDCFGS |
2497 VM_EXIT_PT_CONCEAL_PIP |
2498 VM_EXIT_CLEAR_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002499 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
2500 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002501 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002502
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01002503 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
2504 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
2505 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002506 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
2507 &_pin_based_exec_control) < 0)
2508 return -EIO;
2509
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02002510 if (cpu_has_broken_vmx_preemption_timer())
2511 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002512 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002513 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08002514 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
2515
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01002516 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002517 opt = VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL |
2518 VM_ENTRY_LOAD_IA32_PAT |
2519 VM_ENTRY_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002520 VM_ENTRY_LOAD_BNDCFGS |
2521 VM_ENTRY_PT_CONCEAL_PIP |
2522 VM_ENTRY_LOAD_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002523 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
2524 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002525 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002526
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002527 /*
2528 * Some cpus support VM_{ENTRY,EXIT}_IA32_PERF_GLOBAL_CTRL but they
2529 * can't be used due to an errata where VM Exit may incorrectly clear
2530 * IA32_PERF_GLOBAL_CTRL[34:32]. Workaround the errata by using the
2531 * MSR load mechanism to switch IA32_PERF_GLOBAL_CTRL.
2532 */
2533 if (boot_cpu_data.x86 == 0x6) {
2534 switch (boot_cpu_data.x86_model) {
2535 case 26: /* AAK155 */
2536 case 30: /* AAP115 */
2537 case 37: /* AAT100 */
2538 case 44: /* BC86,AAY89,BD102 */
2539 case 46: /* BA97 */
Sean Christopherson85ba2b12019-01-14 12:12:02 -08002540 _vmentry_control &= ~VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002541 _vmexit_control &= ~VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL;
2542 pr_warn_once("kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
2543 "does not work properly. Using workaround\n");
2544 break;
2545 default:
2546 break;
2547 }
2548 }
2549
2550
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002551 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002552
2553 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
2554 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002555 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002556
2557#ifdef CONFIG_X86_64
2558 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
2559 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03002560 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002561#endif
2562
2563 /* Require Write-Back (WB) memory type for VMCS accesses. */
2564 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002565 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002566
Yang, Sheng002c7f72007-07-31 14:23:01 +03002567 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02002568 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03002569 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002570
Liran Alon2307af12018-06-29 22:59:04 +03002571 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002572
Yang, Sheng002c7f72007-07-31 14:23:01 +03002573 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
2574 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002575 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002576 vmcs_conf->vmexit_ctrl = _vmexit_control;
2577 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002578
Vitaly Kuznetsov064eedf2020-10-14 16:33:46 +02002579#if IS_ENABLED(CONFIG_HYPERV)
2580 if (enlightened_vmcs)
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002581 evmcs_sanitize_exec_ctrls(vmcs_conf);
Vitaly Kuznetsov064eedf2020-10-14 16:33:46 +02002582#endif
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002583
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002584 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002585}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002586
Ben Gardon41836832019-02-11 11:02:52 -08002587struct vmcs *alloc_vmcs_cpu(bool shadow, int cpu, gfp_t flags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002588{
2589 int node = cpu_to_node(cpu);
2590 struct page *pages;
2591 struct vmcs *vmcs;
2592
Ben Gardon41836832019-02-11 11:02:52 -08002593 pages = __alloc_pages_node(node, flags, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002594 if (!pages)
2595 return NULL;
2596 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002597 memset(vmcs, 0, vmcs_config.size);
Liran Alon2307af12018-06-29 22:59:04 +03002598
2599 /* KVM supports Enlightened VMCS v1 only */
2600 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002601 vmcs->hdr.revision_id = KVM_EVMCS_VERSION;
Liran Alon2307af12018-06-29 22:59:04 +03002602 else
Liran Alon392b2f22018-06-23 02:35:01 +03002603 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002604
Liran Alon491a6032018-06-23 02:35:12 +03002605 if (shadow)
2606 vmcs->hdr.shadow_vmcs = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002607 return vmcs;
2608}
2609
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002610void free_vmcs(struct vmcs *vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002611{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002612 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002613}
2614
Nadav Har'Eld462b812011-05-24 15:26:10 +03002615/*
2616 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
2617 */
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002618void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Nadav Har'Eld462b812011-05-24 15:26:10 +03002619{
2620 if (!loaded_vmcs->vmcs)
2621 return;
2622 loaded_vmcs_clear(loaded_vmcs);
2623 free_vmcs(loaded_vmcs->vmcs);
2624 loaded_vmcs->vmcs = NULL;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002625 if (loaded_vmcs->msr_bitmap)
2626 free_page((unsigned long)loaded_vmcs->msr_bitmap);
Jim Mattson355f4fb2016-10-28 08:29:39 -07002627 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002628}
2629
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002630int alloc_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002631{
Liran Alon491a6032018-06-23 02:35:12 +03002632 loaded_vmcs->vmcs = alloc_vmcs(false);
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002633 if (!loaded_vmcs->vmcs)
2634 return -ENOMEM;
2635
Sean Christophersond260f9e2020-03-21 12:37:50 -07002636 vmcs_clear(loaded_vmcs->vmcs);
2637
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002638 loaded_vmcs->shadow_vmcs = NULL;
Sean Christopherson804939e2019-05-07 12:18:05 -07002639 loaded_vmcs->hv_timer_soft_disabled = false;
Sean Christophersond260f9e2020-03-21 12:37:50 -07002640 loaded_vmcs->cpu = -1;
2641 loaded_vmcs->launched = 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002642
2643 if (cpu_has_vmx_msr_bitmap()) {
Ben Gardon41836832019-02-11 11:02:52 -08002644 loaded_vmcs->msr_bitmap = (unsigned long *)
2645 __get_free_page(GFP_KERNEL_ACCOUNT);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002646 if (!loaded_vmcs->msr_bitmap)
2647 goto out_vmcs;
2648 memset(loaded_vmcs->msr_bitmap, 0xff, PAGE_SIZE);
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02002649
Arnd Bergmann1f008e12018-05-25 17:36:17 +02002650 if (IS_ENABLED(CONFIG_HYPERV) &&
2651 static_branch_unlikely(&enable_evmcs) &&
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02002652 (ms_hyperv.nested_features & HV_X64_NESTED_MSR_BITMAP)) {
2653 struct hv_enlightened_vmcs *evmcs =
2654 (struct hv_enlightened_vmcs *)loaded_vmcs->vmcs;
2655
2656 evmcs->hv_enlightenments_control.msr_bitmap = 1;
2657 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002658 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07002659
2660 memset(&loaded_vmcs->host_state, 0, sizeof(struct vmcs_host_state));
Sean Christopherson3af80fe2019-05-07 12:18:00 -07002661 memset(&loaded_vmcs->controls_shadow, 0,
2662 sizeof(struct vmcs_controls_shadow));
Sean Christophersond7ee0392018-07-23 12:32:47 -07002663
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002664 return 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002665
2666out_vmcs:
2667 free_loaded_vmcs(loaded_vmcs);
2668 return -ENOMEM;
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002669}
2670
Sam Ravnborg39959582007-06-01 00:47:13 -07002671static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002672{
2673 int cpu;
2674
Zachary Amsden3230bb42009-09-29 11:38:37 -10002675 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002676 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10002677 per_cpu(vmxarea, cpu) = NULL;
2678 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002679}
2680
Avi Kivity6aa8b732006-12-10 02:21:36 -08002681static __init int alloc_kvm_area(void)
2682{
2683 int cpu;
2684
Zachary Amsden3230bb42009-09-29 11:38:37 -10002685 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002686 struct vmcs *vmcs;
2687
Ben Gardon41836832019-02-11 11:02:52 -08002688 vmcs = alloc_vmcs_cpu(false, cpu, GFP_KERNEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002689 if (!vmcs) {
2690 free_kvm_area();
2691 return -ENOMEM;
2692 }
2693
Liran Alon2307af12018-06-29 22:59:04 +03002694 /*
2695 * When eVMCS is enabled, alloc_vmcs_cpu() sets
2696 * vmcs->revision_id to KVM_EVMCS_VERSION instead of
2697 * revision_id reported by MSR_IA32_VMX_BASIC.
2698 *
Linus Torvalds312a4662018-12-26 17:03:51 -08002699 * However, even though not explicitly documented by
Liran Alon2307af12018-06-29 22:59:04 +03002700 * TLFS, VMXArea passed as VMXON argument should
2701 * still be marked with revision_id reported by
2702 * physical CPU.
2703 */
2704 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002705 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002706
Avi Kivity6aa8b732006-12-10 02:21:36 -08002707 per_cpu(vmxarea, cpu) = vmcs;
2708 }
2709 return 0;
2710}
2711
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002712static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02002713 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002714{
Gleb Natapovd99e4152012-12-20 16:57:45 +02002715 if (!emulate_invalid_guest_state) {
2716 /*
2717 * CS and SS RPL should be equal during guest entry according
2718 * to VMX spec, but in reality it is not always so. Since vcpu
2719 * is in the middle of the transition from real mode to
2720 * protected mode it is safe to assume that RPL 0 is a good
2721 * default value.
2722 */
2723 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03002724 save->selector &= ~SEGMENT_RPL_MASK;
2725 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02002726 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002727 }
Sean Christopherson1dd7a4f2021-07-13 09:33:06 -07002728 __vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002729}
2730
2731static void enter_pmode(struct kvm_vcpu *vcpu)
2732{
2733 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002734 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002735
Gleb Natapovd99e4152012-12-20 16:57:45 +02002736 /*
Ingo Molnard9f6e122021-03-18 15:28:01 +01002737 * Update real mode segment cache. It may be not up-to-date if segment
Gleb Natapovd99e4152012-12-20 16:57:45 +02002738 * register was written while vcpu was in a guest mode.
2739 */
2740 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2741 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2742 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2743 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
2744 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2745 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
2746
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002747 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002748
Sean Christopherson1dd7a4f2021-07-13 09:33:06 -07002749 __vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002750
2751 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002752 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2753 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002754 vmcs_writel(GUEST_RFLAGS, flags);
2755
Rusty Russell66aee912007-07-17 23:34:16 +10002756 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
2757 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002758
Jason Baronb6a7cc32021-01-14 22:27:54 -05002759 vmx_update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002760
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002761 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2762 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2763 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2764 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2765 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
2766 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002767}
2768
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002769static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002770{
Mathias Krause772e0312012-08-30 01:30:19 +02002771 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02002772 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002773
Gleb Natapovd99e4152012-12-20 16:57:45 +02002774 var.dpl = 0x3;
2775 if (seg == VCPU_SREG_CS)
2776 var.type = 0x3;
2777
2778 if (!emulate_invalid_guest_state) {
2779 var.selector = var.base >> 4;
2780 var.base = var.base & 0xffff0;
2781 var.limit = 0xffff;
2782 var.g = 0;
2783 var.db = 0;
2784 var.present = 1;
2785 var.s = 1;
2786 var.l = 0;
2787 var.unusable = 0;
2788 var.type = 0x3;
2789 var.avl = 0;
2790 if (save->base & 0xf)
2791 printk_once(KERN_WARNING "kvm: segment base is not "
2792 "paragraph aligned when entering "
2793 "protected mode (seg=%d)", seg);
2794 }
2795
2796 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05002797 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02002798 vmcs_write32(sf->limit, var.limit);
2799 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002800}
2801
2802static void enter_rmode(struct kvm_vcpu *vcpu)
2803{
2804 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002805 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002806 struct kvm_vmx *kvm_vmx = to_kvm_vmx(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002807
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002808 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
2809 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2810 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2811 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2812 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02002813 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2814 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002815
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002816 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002817
Gleb Natapov776e58e2011-03-13 12:34:27 +02002818 /*
2819 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01002820 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02002821 */
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002822 if (!kvm_vmx->tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02002823 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
2824 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02002825
Avi Kivity2fb92db2011-04-27 19:42:18 +03002826 vmx_segment_cache_clear(vmx);
2827
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002828 vmcs_writel(GUEST_TR_BASE, kvm_vmx->tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002829 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002830 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2831
2832 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002833 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002834
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002835 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002836
2837 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10002838 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Jason Baronb6a7cc32021-01-14 22:27:54 -05002839 vmx_update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002840
Gleb Natapovd99e4152012-12-20 16:57:45 +02002841 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2842 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2843 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2844 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2845 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
2846 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002847}
2848
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002849int vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
Amit Shah401d10d2009-02-20 22:53:37 +05302850{
2851 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond85a8032020-09-23 11:04:06 -07002852 struct vmx_uret_msr *msr = vmx_find_uret_msr(vmx, MSR_EFER);
Avi Kivity26bb0982009-09-07 11:14:12 +03002853
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002854 /* Nothing to do if hardware doesn't support EFER. */
Avi Kivity26bb0982009-09-07 11:14:12 +03002855 if (!msr)
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002856 return 0;
Amit Shah401d10d2009-02-20 22:53:37 +05302857
Avi Kivityf6801df2010-01-21 15:31:50 +02002858 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05302859 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002860 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302861 msr->data = efer;
2862 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002863 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302864
2865 msr->data = efer & ~EFER_LME;
2866 }
Sean Christopherson400dd542021-07-13 09:33:11 -07002867 vmx_setup_uret_msrs(vmx);
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002868 return 0;
Amit Shah401d10d2009-02-20 22:53:37 +05302869}
2870
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002871#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002872
2873static void enter_lmode(struct kvm_vcpu *vcpu)
2874{
2875 u32 guest_tr_ar;
2876
Avi Kivity2fb92db2011-04-27 19:42:18 +03002877 vmx_segment_cache_clear(to_vmx(vcpu));
2878
Avi Kivity6aa8b732006-12-10 02:21:36 -08002879 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002880 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02002881 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
2882 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002883 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002884 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
2885 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002886 }
Avi Kivityda38f432010-07-06 11:30:49 +03002887 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002888}
2889
2890static void exit_lmode(struct kvm_vcpu *vcpu)
2891{
Gleb Natapov2961e8762013-11-25 15:37:13 +02002892 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03002893 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002894}
2895
2896#endif
2897
Sean Christopherson77809382020-03-20 14:28:18 -07002898static void vmx_flush_tlb_all(struct kvm_vcpu *vcpu)
Sean Christopherson5058b692020-03-20 14:28:14 -07002899{
2900 struct vcpu_vmx *vmx = to_vmx(vcpu);
2901
2902 /*
Sean Christopherson77809382020-03-20 14:28:18 -07002903 * INVEPT must be issued when EPT is enabled, irrespective of VPID, as
2904 * the CPU is not required to invalidate guest-physical mappings on
2905 * VM-Entry, even if VPID is disabled. Guest-physical mappings are
2906 * associated with the root EPT structure and not any particular VPID
2907 * (INVVPID also isn't required to invalidate guest-physical mappings).
Sean Christopherson5058b692020-03-20 14:28:14 -07002908 */
2909 if (enable_ept) {
2910 ept_sync_global();
2911 } else if (enable_vpid) {
2912 if (cpu_has_vmx_invvpid_global()) {
2913 vpid_sync_vcpu_global();
2914 } else {
2915 vpid_sync_vcpu_single(vmx->vpid);
2916 vpid_sync_vcpu_single(vmx->nested.vpid02);
2917 }
2918 }
2919}
2920
Sean Christopherson2b4a5a52021-11-25 01:49:43 +00002921static inline int vmx_get_current_vpid(struct kvm_vcpu *vcpu)
2922{
2923 if (is_guest_mode(vcpu))
2924 return nested_get_vpid02(vcpu);
2925 return to_vmx(vcpu)->vpid;
2926}
2927
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002928static void vmx_flush_tlb_current(struct kvm_vcpu *vcpu)
2929{
Sean Christopherson2a40b902020-07-15 20:41:18 -07002930 struct kvm_mmu *mmu = vcpu->arch.mmu;
2931 u64 root_hpa = mmu->root_hpa;
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002932
2933 /* No flush required if the current context is invalid. */
2934 if (!VALID_PAGE(root_hpa))
2935 return;
2936
2937 if (enable_ept)
Sean Christopherson2a40b902020-07-15 20:41:18 -07002938 ept_sync_context(construct_eptp(vcpu, root_hpa,
2939 mmu->shadow_root_level));
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002940 else
Sean Christopherson2b4a5a52021-11-25 01:49:43 +00002941 vpid_sync_context(vmx_get_current_vpid(vcpu));
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002942}
2943
Junaid Shahidfaff8752018-06-29 13:10:05 -07002944static void vmx_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t addr)
2945{
Junaid Shahidfaff8752018-06-29 13:10:05 -07002946 /*
Sean Christopherson2b4a5a52021-11-25 01:49:43 +00002947 * vpid_sync_vcpu_addr() is a nop if vpid==0, see the comment in
Sean Christophersonad104b52020-03-20 14:28:11 -07002948 * vmx_flush_tlb_guest() for an explanation of why this is ok.
Junaid Shahidfaff8752018-06-29 13:10:05 -07002949 */
Sean Christopherson2b4a5a52021-11-25 01:49:43 +00002950 vpid_sync_vcpu_addr(vmx_get_current_vpid(vcpu), addr);
Junaid Shahidfaff8752018-06-29 13:10:05 -07002951}
2952
Sean Christophersone64419d2020-03-20 14:28:10 -07002953static void vmx_flush_tlb_guest(struct kvm_vcpu *vcpu)
2954{
2955 /*
Sean Christopherson2b4a5a52021-11-25 01:49:43 +00002956 * vpid_sync_context() is a nop if vpid==0, e.g. if enable_vpid==0 or a
2957 * vpid couldn't be allocated for this vCPU. VM-Enter and VM-Exit are
2958 * required to flush GVA->{G,H}PA mappings from the TLB if vpid is
Sean Christophersone64419d2020-03-20 14:28:10 -07002959 * disabled (VM-Enter with vpid enabled and vpid==0 is disallowed),
2960 * i.e. no explicit INVVPID is necessary.
2961 */
Sean Christopherson2b4a5a52021-11-25 01:49:43 +00002962 vpid_sync_context(vmx_get_current_vpid(vcpu));
Sean Christophersone64419d2020-03-20 14:28:10 -07002963}
2964
Peter Shier43fea4e2020-08-20 16:05:45 -07002965void vmx_ept_load_pdptrs(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08002966{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002967 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
2968
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002969 if (!kvm_register_is_dirty(vcpu, VCPU_EXREG_PDPTR))
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002970 return;
2971
Paolo Bonzinibf03d4f2019-06-06 18:52:44 +02002972 if (is_pae_paging(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002973 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
2974 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
2975 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
2976 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08002977 }
2978}
2979
Sean Christopherson97b7ead2018-12-03 13:53:16 -08002980void ept_save_pdptrs(struct kvm_vcpu *vcpu)
Avi Kivity8f5d5492009-05-31 18:41:29 +03002981{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002982 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
2983
Sean Christopherson9932b492020-04-15 13:34:50 -07002984 if (WARN_ON_ONCE(!is_pae_paging(vcpu)))
2985 return;
2986
2987 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
2988 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
2989 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
2990 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002991
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002992 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002993}
2994
Sean Christopherson470750b2021-07-13 09:33:02 -07002995#define CR3_EXITING_BITS (CPU_BASED_CR3_LOAD_EXITING | \
2996 CPU_BASED_CR3_STORE_EXITING)
2997
Sean Christopherson97b7ead2018-12-03 13:53:16 -08002998void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002999{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003000 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson32437c22021-07-13 09:33:05 -07003001 unsigned long hw_cr0, old_cr0_pg;
Sean Christopherson470750b2021-07-13 09:33:02 -07003002 u32 tmp;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003003
Sean Christopherson32437c22021-07-13 09:33:05 -07003004 old_cr0_pg = kvm_read_cr0_bits(vcpu, X86_CR0_PG);
3005
Sean Christopherson3de63472018-07-13 08:42:30 -07003006 hw_cr0 = (cr0 & ~KVM_VM_CR0_ALWAYS_OFF);
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003007 if (is_unrestricted_guest(vcpu))
Gleb Natapov50378782013-02-04 16:00:28 +02003008 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02003009 else {
Gleb Natapov50378782013-02-04 16:00:28 +02003010 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sean Christophersonee5a5582021-07-13 09:32:59 -07003011 if (!enable_ept)
3012 hw_cr0 |= X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08003013
Gleb Natapov218e7632013-01-21 15:36:45 +02003014 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
3015 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003016
Gleb Natapov218e7632013-01-21 15:36:45 +02003017 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
3018 enter_rmode(vcpu);
3019 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003020
Sean Christopherson32437c22021-07-13 09:33:05 -07003021 vmcs_writel(CR0_READ_SHADOW, cr0);
3022 vmcs_writel(GUEST_CR0, hw_cr0);
3023 vcpu->arch.cr0 = cr0;
3024 kvm_register_mark_available(vcpu, VCPU_EXREG_CR0);
3025
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003026#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02003027 if (vcpu->arch.efer & EFER_LME) {
Sean Christopherson32437c22021-07-13 09:33:05 -07003028 if (!old_cr0_pg && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003029 enter_lmode(vcpu);
Sean Christopherson32437c22021-07-13 09:33:05 -07003030 else if (old_cr0_pg && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003031 exit_lmode(vcpu);
3032 }
3033#endif
3034
Sean Christophersonc834fd72021-07-13 09:33:01 -07003035 if (enable_ept && !is_unrestricted_guest(vcpu)) {
Sean Christopherson470750b2021-07-13 09:33:02 -07003036 /*
3037 * Ensure KVM has an up-to-date snapshot of the guest's CR3. If
3038 * the below code _enables_ CR3 exiting, vmx_cache_reg() will
3039 * (correctly) stop reading vmcs.GUEST_CR3 because it thinks
3040 * KVM's CR3 is installed.
3041 */
Sean Christophersonc834fd72021-07-13 09:33:01 -07003042 if (!kvm_register_is_available(vcpu, VCPU_EXREG_CR3))
3043 vmx_cache_reg(vcpu, VCPU_EXREG_CR3);
Sean Christopherson470750b2021-07-13 09:33:02 -07003044
3045 /*
3046 * When running with EPT but not unrestricted guest, KVM must
3047 * intercept CR3 accesses when paging is _disabled_. This is
3048 * necessary because restricted guests can't actually run with
3049 * paging disabled, and so KVM stuffs its own CR3 in order to
3050 * run the guest when identity mapped page tables.
3051 *
3052 * Do _NOT_ check the old CR0.PG, e.g. to optimize away the
3053 * update, it may be stale with respect to CR3 interception,
3054 * e.g. after nested VM-Enter.
3055 *
3056 * Lastly, honor L1's desires, i.e. intercept CR3 loads and/or
3057 * stores to forward them to L1, even if KVM does not need to
3058 * intercept them to preserve its identity mapped page tables.
3059 */
Sean Christophersonc834fd72021-07-13 09:33:01 -07003060 if (!(cr0 & X86_CR0_PG)) {
Sean Christopherson470750b2021-07-13 09:33:02 -07003061 exec_controls_setbit(vmx, CR3_EXITING_BITS);
3062 } else if (!is_guest_mode(vcpu)) {
3063 exec_controls_clearbit(vmx, CR3_EXITING_BITS);
3064 } else {
3065 tmp = exec_controls_get(vmx);
3066 tmp &= ~CR3_EXITING_BITS;
3067 tmp |= get_vmcs12(vcpu)->cpu_based_vm_exec_control & CR3_EXITING_BITS;
3068 exec_controls_set(vmx, tmp);
3069 }
3070
Sean Christopherson32437c22021-07-13 09:33:05 -07003071 /* Note, vmx_set_cr4() consumes the new vcpu->arch.cr0. */
3072 if ((old_cr0_pg ^ cr0) & X86_CR0_PG)
Sean Christophersonc834fd72021-07-13 09:33:01 -07003073 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sean Christophersonc834fd72021-07-13 09:33:01 -07003074 }
Sheng Yang14394422008-04-28 12:24:45 +08003075
Gleb Natapov14168782013-01-21 15:36:49 +02003076 /* depends on vcpu->arch.cr0 to be set to a new value */
Maxim Levitskydbab6102021-09-13 17:09:54 +03003077 vmx->emulation_required = vmx_emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003078}
3079
Sean Christophersond468d942020-07-15 20:41:20 -07003080static int vmx_get_max_tdp_level(void)
Sean Christopherson0047fca2020-05-01 21:32:33 -07003081{
Sean Christophersond468d942020-07-15 20:41:20 -07003082 if (cpu_has_vmx_ept_5levels())
Sean Christopherson0047fca2020-05-01 21:32:33 -07003083 return 5;
3084 return 4;
3085}
3086
Sean Christophersone83bc092021-03-05 10:31:13 -08003087u64 construct_eptp(struct kvm_vcpu *vcpu, hpa_t root_hpa, int root_level)
Sheng Yang14394422008-04-28 12:24:45 +08003088{
Yu Zhang855feb62017-08-24 20:27:55 +08003089 u64 eptp = VMX_EPTP_MT_WB;
Sheng Yang14394422008-04-28 12:24:45 +08003090
Sean Christopherson2a40b902020-07-15 20:41:18 -07003091 eptp |= (root_level == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08003092
Peter Feiner995f00a2017-06-30 17:26:32 -07003093 if (enable_ept_ad_bits &&
3094 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02003095 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sean Christophersone83bc092021-03-05 10:31:13 -08003096 eptp |= root_hpa;
Sheng Yang14394422008-04-28 12:24:45 +08003097
3098 return eptp;
3099}
3100
Sean Christophersone83bc092021-03-05 10:31:13 -08003101static void vmx_load_mmu_pgd(struct kvm_vcpu *vcpu, hpa_t root_hpa,
3102 int root_level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003103{
Tianyu Lan877ad952018-07-19 08:40:23 +00003104 struct kvm *kvm = vcpu->kvm;
Sean Christopherson04f11ef2019-09-27 14:45:16 -07003105 bool update_guest_cr3 = true;
Sheng Yang14394422008-04-28 12:24:45 +08003106 unsigned long guest_cr3;
3107 u64 eptp;
3108
Avi Kivity089d0342009-03-23 18:26:32 +02003109 if (enable_ept) {
Sean Christophersone83bc092021-03-05 10:31:13 -08003110 eptp = construct_eptp(vcpu, root_hpa, root_level);
Sheng Yang14394422008-04-28 12:24:45 +08003111 vmcs_write64(EPT_POINTER, eptp);
Tianyu Lan877ad952018-07-19 08:40:23 +00003112
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +00003113 hv_track_root_tdp(vcpu, root_hpa);
Tianyu Lan877ad952018-07-19 08:40:23 +00003114
Paolo Bonzinidf7e0682020-05-20 08:37:37 -04003115 if (!enable_unrestricted_guest && !is_paging(vcpu))
Tianyu Lan877ad952018-07-19 08:40:23 +00003116 guest_cr3 = to_kvm_vmx(kvm)->ept_identity_map_addr;
Sean Christophersonb17b7432019-09-27 14:45:17 -07003117 else if (test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3118 guest_cr3 = vcpu->arch.cr3;
3119 else /* vmcs01.GUEST_CR3 is already up-to-date. */
3120 update_guest_cr3 = false;
Peter Shier43fea4e2020-08-20 16:05:45 -07003121 vmx_ept_load_pdptrs(vcpu);
Sean Christophersonbe100ef2020-03-20 14:28:33 -07003122 } else {
Sean Christophersone83bc092021-03-05 10:31:13 -08003123 guest_cr3 = root_hpa | kvm_get_active_pcid(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003124 }
3125
Sean Christopherson04f11ef2019-09-27 14:45:16 -07003126 if (update_guest_cr3)
3127 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003128}
3129
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07003130static bool vmx_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
3131{
3132 /*
3133 * We operate under the default treatment of SMM, so VMX cannot be
3134 * enabled under SMM. Note, whether or not VMXE is allowed at all is
Sean Christophersonee69c922020-10-06 18:44:16 -07003135 * handled by kvm_is_valid_cr4().
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07003136 */
3137 if ((cr4 & X86_CR4_VMXE) && is_smm(vcpu))
3138 return false;
3139
3140 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
3141 return false;
3142
3143 return true;
3144}
3145
3146void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003147{
Jim Mattson2259c172020-10-29 10:06:48 -07003148 unsigned long old_cr4 = vcpu->arch.cr4;
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003149 struct vcpu_vmx *vmx = to_vmx(vcpu);
Ben Serebrin085e68e2015-04-16 11:58:05 -07003150 /*
3151 * Pass through host's Machine Check Enable value to hw_cr4, which
3152 * is in force while we are in guest mode. Do not let guests control
3153 * this bit, even if host CR4.MCE == 0.
3154 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003155 unsigned long hw_cr4;
3156
3157 hw_cr4 = (cr4_read_shadow() & X86_CR4_MCE) | (cr4 & ~X86_CR4_MCE);
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003158 if (is_unrestricted_guest(vcpu))
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003159 hw_cr4 |= KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST;
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003160 else if (vmx->rmode.vm86_active)
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003161 hw_cr4 |= KVM_RMODE_VM_CR4_ALWAYS_ON;
3162 else
3163 hw_cr4 |= KVM_PMODE_VM_CR4_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003164
Sean Christopherson64f7a112018-04-30 10:01:06 -07003165 if (!boot_cpu_has(X86_FEATURE_UMIP) && vmx_umip_emulated()) {
3166 if (cr4 & X86_CR4_UMIP) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003167 secondary_exec_controls_setbit(vmx, SECONDARY_EXEC_DESC);
Sean Christopherson64f7a112018-04-30 10:01:06 -07003168 hw_cr4 &= ~X86_CR4_UMIP;
3169 } else if (!is_guest_mode(vcpu) ||
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003170 !nested_cpu_has2(get_vmcs12(vcpu), SECONDARY_EXEC_DESC)) {
3171 secondary_exec_controls_clearbit(vmx, SECONDARY_EXEC_DESC);
3172 }
Sean Christopherson64f7a112018-04-30 10:01:06 -07003173 }
Paolo Bonzini0367f202016-07-12 10:44:55 +02003174
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003175 vcpu->arch.cr4 = cr4;
Sean Christophersonf98c1e72020-05-01 21:32:30 -07003176 kvm_register_mark_available(vcpu, VCPU_EXREG_CR4);
Sheng Yang14394422008-04-28 12:24:45 +08003177
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003178 if (!is_unrestricted_guest(vcpu)) {
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003179 if (enable_ept) {
3180 if (!is_paging(vcpu)) {
3181 hw_cr4 &= ~X86_CR4_PAE;
3182 hw_cr4 |= X86_CR4_PSE;
3183 } else if (!(cr4 & X86_CR4_PAE)) {
3184 hw_cr4 &= ~X86_CR4_PAE;
3185 }
3186 }
3187
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003188 /*
Huaitong Handdba2622016-03-22 16:51:15 +08003189 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
3190 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
3191 * to be manually disabled when guest switches to non-paging
3192 * mode.
3193 *
3194 * If !enable_unrestricted_guest, the CPU is always running
3195 * with CR0.PG=1 and CR4 needs to be modified.
3196 * If enable_unrestricted_guest, the CPU automatically
3197 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003198 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003199 if (!is_paging(vcpu))
3200 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
3201 }
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003202
Sheng Yang14394422008-04-28 12:24:45 +08003203 vmcs_writel(CR4_READ_SHADOW, cr4);
3204 vmcs_writel(GUEST_CR4, hw_cr4);
Jim Mattson2259c172020-10-29 10:06:48 -07003205
3206 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
3207 kvm_update_cpuid_runtime(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003208}
3209
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003210void vmx_get_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003211{
Avi Kivitya9179492011-01-03 14:28:52 +02003212 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003213 u32 ar;
3214
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003215 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003216 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02003217 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03003218 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003219 return;
Avi Kivity1390a282012-08-21 17:07:08 +03003220 var->base = vmx_read_guest_seg_base(vmx, seg);
3221 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3222 return;
Avi Kivitya9179492011-01-03 14:28:52 +02003223 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003224 var->base = vmx_read_guest_seg_base(vmx, seg);
3225 var->limit = vmx_read_guest_seg_limit(vmx, seg);
3226 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3227 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03003228 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003229 var->type = ar & 15;
3230 var->s = (ar >> 4) & 1;
3231 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03003232 /*
3233 * Some userspaces do not preserve unusable property. Since usable
3234 * segment has to be present according to VMX spec we can use present
3235 * property to amend userspace bug by making unusable segment always
3236 * nonpresent. vmx_segment_access_rights() already marks nonpresent
3237 * segment as unusable.
3238 */
3239 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003240 var->avl = (ar >> 12) & 1;
3241 var->l = (ar >> 13) & 1;
3242 var->db = (ar >> 14) & 1;
3243 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003244}
3245
Avi Kivitya9179492011-01-03 14:28:52 +02003246static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
3247{
Avi Kivitya9179492011-01-03 14:28:52 +02003248 struct kvm_segment s;
3249
3250 if (to_vmx(vcpu)->rmode.vm86_active) {
3251 vmx_get_segment(vcpu, &s, seg);
3252 return s.base;
3253 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003254 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003255}
3256
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003257int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02003258{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003259 struct vcpu_vmx *vmx = to_vmx(vcpu);
3260
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003261 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02003262 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003263 else {
3264 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003265 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003266 }
Avi Kivity69c73022011-03-07 15:26:44 +02003267}
3268
Avi Kivity653e3102007-05-07 10:55:37 +03003269static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003270{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003271 u32 ar;
3272
Avi Kivityf0495f92012-06-07 17:06:10 +03003273 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003274 ar = 1 << 16;
3275 else {
3276 ar = var->type & 15;
3277 ar |= (var->s & 1) << 4;
3278 ar |= (var->dpl & 3) << 5;
3279 ar |= (var->present & 1) << 7;
3280 ar |= (var->avl & 1) << 12;
3281 ar |= (var->l & 1) << 13;
3282 ar |= (var->db & 1) << 14;
3283 ar |= (var->g & 1) << 15;
3284 }
Avi Kivity653e3102007-05-07 10:55:37 +03003285
3286 return ar;
3287}
3288
Sean Christopherson816be9e2021-07-13 09:33:07 -07003289void __vmx_set_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity653e3102007-05-07 10:55:37 +03003290{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003291 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02003292 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03003293
Avi Kivity2fb92db2011-04-27 19:42:18 +03003294 vmx_segment_cache_clear(vmx);
3295
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003296 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
3297 vmx->rmode.segs[seg] = *var;
3298 if (seg == VCPU_SREG_TR)
3299 vmcs_write16(sf->selector, var->selector);
3300 else if (var->s)
3301 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Sean Christopherson1dd7a4f2021-07-13 09:33:06 -07003302 return;
Avi Kivity653e3102007-05-07 10:55:37 +03003303 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003304
Avi Kivity653e3102007-05-07 10:55:37 +03003305 vmcs_writel(sf->base, var->base);
3306 vmcs_write32(sf->limit, var->limit);
3307 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003308
3309 /*
3310 * Fix the "Accessed" bit in AR field of segment registers for older
3311 * qemu binaries.
3312 * IA32 arch specifies that at the time of processor reset the
3313 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08003314 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003315 * state vmexit when "unrestricted guest" mode is turned on.
3316 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3317 * tree. Newer qemu binaries with that qemu fix would not need this
3318 * kvm hack.
3319 */
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003320 if (is_unrestricted_guest(vcpu) && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02003321 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003322
Gleb Natapovf924d662012-12-12 19:10:55 +02003323 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Sean Christopherson1dd7a4f2021-07-13 09:33:06 -07003324}
Gleb Natapovd99e4152012-12-20 16:57:45 +02003325
Sean Christopherson816be9e2021-07-13 09:33:07 -07003326static void vmx_set_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Sean Christopherson1dd7a4f2021-07-13 09:33:06 -07003327{
3328 __vmx_set_segment(vcpu, var, seg);
3329
Maxim Levitskydbab6102021-09-13 17:09:54 +03003330 to_vmx(vcpu)->emulation_required = vmx_emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003331}
3332
Avi Kivity6aa8b732006-12-10 02:21:36 -08003333static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
3334{
Avi Kivity2fb92db2011-04-27 19:42:18 +03003335 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003336
3337 *db = (ar >> 14) & 1;
3338 *l = (ar >> 13) & 1;
3339}
3340
Gleb Natapov89a27f42010-02-16 10:51:48 +02003341static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003342{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003343 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
3344 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003345}
3346
Gleb Natapov89a27f42010-02-16 10:51:48 +02003347static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003348{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003349 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
3350 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003351}
3352
Gleb Natapov89a27f42010-02-16 10:51:48 +02003353static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003354{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003355 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
3356 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003357}
3358
Gleb Natapov89a27f42010-02-16 10:51:48 +02003359static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003360{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003361 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
3362 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003363}
3364
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003365static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
3366{
3367 struct kvm_segment var;
3368 u32 ar;
3369
3370 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02003371 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02003372 if (seg == VCPU_SREG_CS)
3373 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003374 ar = vmx_segment_access_rights(&var);
3375
3376 if (var.base != (var.selector << 4))
3377 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02003378 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003379 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02003380 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003381 return false;
3382
3383 return true;
3384}
3385
3386static bool code_segment_valid(struct kvm_vcpu *vcpu)
3387{
3388 struct kvm_segment cs;
3389 unsigned int cs_rpl;
3390
3391 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003392 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003393
Avi Kivity1872a3f2009-01-04 23:26:52 +02003394 if (cs.unusable)
3395 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003396 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003397 return false;
3398 if (!cs.s)
3399 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003400 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003401 if (cs.dpl > cs_rpl)
3402 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003403 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003404 if (cs.dpl != cs_rpl)
3405 return false;
3406 }
3407 if (!cs.present)
3408 return false;
3409
3410 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
3411 return true;
3412}
3413
3414static bool stack_segment_valid(struct kvm_vcpu *vcpu)
3415{
3416 struct kvm_segment ss;
3417 unsigned int ss_rpl;
3418
3419 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003420 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003421
Avi Kivity1872a3f2009-01-04 23:26:52 +02003422 if (ss.unusable)
3423 return true;
3424 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003425 return false;
3426 if (!ss.s)
3427 return false;
3428 if (ss.dpl != ss_rpl) /* DPL != RPL */
3429 return false;
3430 if (!ss.present)
3431 return false;
3432
3433 return true;
3434}
3435
3436static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
3437{
3438 struct kvm_segment var;
3439 unsigned int rpl;
3440
3441 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03003442 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003443
Avi Kivity1872a3f2009-01-04 23:26:52 +02003444 if (var.unusable)
3445 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003446 if (!var.s)
3447 return false;
3448 if (!var.present)
3449 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003450 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003451 if (var.dpl < rpl) /* DPL < RPL */
3452 return false;
3453 }
3454
3455 /* TODO: Add other members to kvm_segment_field to allow checking for other access
3456 * rights flags
3457 */
3458 return true;
3459}
3460
3461static bool tr_valid(struct kvm_vcpu *vcpu)
3462{
3463 struct kvm_segment tr;
3464
3465 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
3466
Avi Kivity1872a3f2009-01-04 23:26:52 +02003467 if (tr.unusable)
3468 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03003469 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003470 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003471 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003472 return false;
3473 if (!tr.present)
3474 return false;
3475
3476 return true;
3477}
3478
3479static bool ldtr_valid(struct kvm_vcpu *vcpu)
3480{
3481 struct kvm_segment ldtr;
3482
3483 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
3484
Avi Kivity1872a3f2009-01-04 23:26:52 +02003485 if (ldtr.unusable)
3486 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03003487 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003488 return false;
3489 if (ldtr.type != 2)
3490 return false;
3491 if (!ldtr.present)
3492 return false;
3493
3494 return true;
3495}
3496
3497static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
3498{
3499 struct kvm_segment cs, ss;
3500
3501 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3502 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3503
Nadav Amitb32a9912015-03-29 16:33:04 +03003504 return ((cs.selector & SEGMENT_RPL_MASK) ==
3505 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003506}
3507
3508/*
3509 * Check if guest state is valid. Returns true if valid, false if
3510 * not.
3511 * We assume that registers are always usable
3512 */
Sean Christopherson2ba44932020-09-23 11:44:48 -07003513bool __vmx_guest_state_valid(struct kvm_vcpu *vcpu)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003514{
3515 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03003516 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003517 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
3518 return false;
3519 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
3520 return false;
3521 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
3522 return false;
3523 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
3524 return false;
3525 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
3526 return false;
3527 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
3528 return false;
3529 } else {
3530 /* protected mode guest state checks */
3531 if (!cs_ss_rpl_check(vcpu))
3532 return false;
3533 if (!code_segment_valid(vcpu))
3534 return false;
3535 if (!stack_segment_valid(vcpu))
3536 return false;
3537 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
3538 return false;
3539 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
3540 return false;
3541 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
3542 return false;
3543 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
3544 return false;
3545 if (!tr_valid(vcpu))
3546 return false;
3547 if (!ldtr_valid(vcpu))
3548 return false;
3549 }
3550 /* TODO:
3551 * - Add checks on RIP
3552 * - Add checks on RFLAGS
3553 */
3554
3555 return true;
3556}
3557
Peter Xuff5a9832020-09-30 21:20:33 -04003558static int init_rmode_tss(struct kvm *kvm, void __user *ua)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003559{
Peter Xuff5a9832020-09-30 21:20:33 -04003560 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
3561 u16 data;
3562 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003563
Peter Xuff5a9832020-09-30 21:20:33 -04003564 for (i = 0; i < 3; i++) {
3565 if (__copy_to_user(ua + PAGE_SIZE * i, zero_page, PAGE_SIZE))
3566 return -EFAULT;
3567 }
3568
Izik Eidus195aefd2007-10-01 22:14:18 +02003569 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Peter Xuff5a9832020-09-30 21:20:33 -04003570 if (__copy_to_user(ua + TSS_IOPB_BASE_OFFSET, &data, sizeof(u16)))
3571 return -EFAULT;
3572
Izik Eidus195aefd2007-10-01 22:14:18 +02003573 data = ~0;
Peter Xuff5a9832020-09-30 21:20:33 -04003574 if (__copy_to_user(ua + RMODE_TSS_SIZE - 1, &data, sizeof(u8)))
3575 return -EFAULT;
3576
3577 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003578}
3579
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003580static int init_rmode_identity_map(struct kvm *kvm)
3581{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003582 struct kvm_vmx *kvm_vmx = to_kvm_vmx(kvm);
Peter Xu2a5755b2020-01-09 09:57:14 -05003583 int i, r = 0;
Peter Xuff5a9832020-09-30 21:20:33 -04003584 void __user *uaddr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003585 u32 tmp;
3586
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003587 /* Protect kvm_vmx->ept_identity_pagetable_done. */
Tang Chena255d472014-09-16 18:41:58 +08003588 mutex_lock(&kvm->slots_lock);
3589
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003590 if (likely(kvm_vmx->ept_identity_pagetable_done))
Peter Xu2a5755b2020-01-09 09:57:14 -05003591 goto out;
Tang Chena255d472014-09-16 18:41:58 +08003592
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003593 if (!kvm_vmx->ept_identity_map_addr)
3594 kvm_vmx->ept_identity_map_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chena255d472014-09-16 18:41:58 +08003595
Peter Xuff5a9832020-09-30 21:20:33 -04003596 uaddr = __x86_set_memory_region(kvm,
3597 IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
3598 kvm_vmx->ept_identity_map_addr,
3599 PAGE_SIZE);
3600 if (IS_ERR(uaddr)) {
3601 r = PTR_ERR(uaddr);
Peter Xu2a5755b2020-01-09 09:57:14 -05003602 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003603 }
Tang Chena255d472014-09-16 18:41:58 +08003604
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003605 /* Set up identity-mapping pagetable for EPT in real mode */
3606 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
3607 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
3608 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
Peter Xuff5a9832020-09-30 21:20:33 -04003609 if (__copy_to_user(uaddr + i * sizeof(tmp), &tmp, sizeof(tmp))) {
3610 r = -EFAULT;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003611 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003612 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003613 }
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003614 kvm_vmx->ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08003615
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003616out:
Tang Chena255d472014-09-16 18:41:58 +08003617 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08003618 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003619}
3620
Avi Kivity6aa8b732006-12-10 02:21:36 -08003621static void seg_setup(int seg)
3622{
Mathias Krause772e0312012-08-30 01:30:19 +02003623 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003624 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003625
3626 vmcs_write16(sf->selector, 0);
3627 vmcs_writel(sf->base, 0);
3628 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02003629 ar = 0x93;
3630 if (seg == VCPU_SREG_CS)
3631 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003632
3633 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003634}
3635
Sheng Yangf78e0e22007-10-29 09:40:42 +08003636static int alloc_apic_access_page(struct kvm *kvm)
3637{
Xiao Guangrong44841412012-09-07 14:14:20 +08003638 struct page *page;
Peter Xuff5a9832020-09-30 21:20:33 -04003639 void __user *hva;
3640 int ret = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003641
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003642 mutex_lock(&kvm->slots_lock);
Maxim Levitskya01b45e2021-06-23 14:29:55 +03003643 if (kvm->arch.apic_access_memslot_enabled)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003644 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003645 hva = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
3646 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
3647 if (IS_ERR(hva)) {
3648 ret = PTR_ERR(hva);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003649 goto out;
Peter Xuff5a9832020-09-30 21:20:33 -04003650 }
Izik Eidus72dc67a2008-02-10 18:04:15 +02003651
Tang Chen73a6d942014-09-11 13:38:00 +08003652 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08003653 if (is_error_page(page)) {
Peter Xuff5a9832020-09-30 21:20:33 -04003654 ret = -EFAULT;
Xiao Guangrong44841412012-09-07 14:14:20 +08003655 goto out;
3656 }
3657
Tang Chenc24ae0d2014-09-24 15:57:58 +08003658 /*
3659 * Do not pin the page in memory, so that memory hot-unplug
3660 * is able to migrate it.
3661 */
3662 put_page(page);
Maxim Levitskya01b45e2021-06-23 14:29:55 +03003663 kvm->arch.apic_access_memslot_enabled = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003664out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003665 mutex_unlock(&kvm->slots_lock);
Peter Xuff5a9832020-09-30 21:20:33 -04003666 return ret;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003667}
3668
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003669int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003670{
3671 int vpid;
3672
Avi Kivity919818a2009-03-23 18:01:29 +02003673 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08003674 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003675 spin_lock(&vmx_vpid_lock);
3676 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003677 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003678 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003679 else
3680 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003681 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003682 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003683}
3684
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003685void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003686{
Wanpeng Li991e7a02015-09-16 17:30:05 +08003687 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003688 return;
3689 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003690 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003691 spin_unlock(&vmx_vpid_lock);
3692}
3693
Sean Christophersone23f6d42021-04-23 15:19:12 -07003694void vmx_disable_intercept_for_msr(struct kvm_vcpu *vcpu, u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08003695{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003696 struct vcpu_vmx *vmx = to_vmx(vcpu);
3697 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
Sheng Yang25c5f222008-03-28 13:18:56 +08003698
3699 if (!cpu_has_vmx_msr_bitmap())
3700 return;
3701
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003702 if (static_branch_unlikely(&enable_evmcs))
3703 evmcs_touch_msr_bitmap();
3704
Sheng Yang25c5f222008-03-28 13:18:56 +08003705 /*
Alexander Graf3eb90012020-09-25 16:34:20 +02003706 * Mark the desired intercept state in shadow bitmap, this is needed
3707 * for resync when the MSR filters change.
3708 */
3709 if (is_valid_passthrough_msr(msr)) {
3710 int idx = possible_passthrough_msr_slot(msr);
Yang Zhang8d146952013-01-25 10:18:50 +08003711
Alexander Graf3eb90012020-09-25 16:34:20 +02003712 if (idx != -ENOENT) {
3713 if (type & MSR_TYPE_R)
3714 clear_bit(idx, vmx->shadow_msr_intercept.read);
3715 if (type & MSR_TYPE_W)
3716 clear_bit(idx, vmx->shadow_msr_intercept.write);
3717 }
Yang Zhang8d146952013-01-25 10:18:50 +08003718 }
Alexander Graf3eb90012020-09-25 16:34:20 +02003719
3720 if ((type & MSR_TYPE_R) &&
3721 !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_READ)) {
3722 vmx_set_msr_bitmap_read(msr_bitmap, msr);
3723 type &= ~MSR_TYPE_R;
3724 }
3725
3726 if ((type & MSR_TYPE_W) &&
3727 !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_WRITE)) {
3728 vmx_set_msr_bitmap_write(msr_bitmap, msr);
3729 type &= ~MSR_TYPE_W;
3730 }
3731
3732 if (type & MSR_TYPE_R)
3733 vmx_clear_msr_bitmap_read(msr_bitmap, msr);
3734
3735 if (type & MSR_TYPE_W)
3736 vmx_clear_msr_bitmap_write(msr_bitmap, msr);
Yang Zhang8d146952013-01-25 10:18:50 +08003737}
3738
Sean Christophersone23f6d42021-04-23 15:19:12 -07003739void vmx_enable_intercept_for_msr(struct kvm_vcpu *vcpu, u32 msr, int type)
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003740{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003741 struct vcpu_vmx *vmx = to_vmx(vcpu);
3742 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003743
3744 if (!cpu_has_vmx_msr_bitmap())
3745 return;
3746
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003747 if (static_branch_unlikely(&enable_evmcs))
3748 evmcs_touch_msr_bitmap();
3749
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003750 /*
Alexander Graf3eb90012020-09-25 16:34:20 +02003751 * Mark the desired intercept state in shadow bitmap, this is needed
3752 * for resync when the MSR filter changes.
3753 */
3754 if (is_valid_passthrough_msr(msr)) {
3755 int idx = possible_passthrough_msr_slot(msr);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003756
Alexander Graf3eb90012020-09-25 16:34:20 +02003757 if (idx != -ENOENT) {
3758 if (type & MSR_TYPE_R)
3759 set_bit(idx, vmx->shadow_msr_intercept.read);
3760 if (type & MSR_TYPE_W)
3761 set_bit(idx, vmx->shadow_msr_intercept.write);
3762 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003763 }
Alexander Graf3eb90012020-09-25 16:34:20 +02003764
3765 if (type & MSR_TYPE_R)
3766 vmx_set_msr_bitmap_read(msr_bitmap, msr);
3767
3768 if (type & MSR_TYPE_W)
3769 vmx_set_msr_bitmap_write(msr_bitmap, msr);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003770}
3771
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003772static void vmx_reset_x2apic_msrs(struct kvm_vcpu *vcpu, u8 mode)
Yang Zhang8d146952013-01-25 10:18:50 +08003773{
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003774 unsigned long *msr_bitmap = to_vmx(vcpu)->vmcs01.msr_bitmap;
3775 unsigned long read_intercept;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003776 int msr;
3777
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003778 read_intercept = (mode & MSR_BITMAP_MODE_X2APIC_APICV) ? 0 : ~0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003779
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003780 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
3781 unsigned int read_idx = msr / BITS_PER_LONG;
3782 unsigned int write_idx = read_idx + (0x800 / sizeof(long));
3783
3784 msr_bitmap[read_idx] = read_intercept;
3785 msr_bitmap[write_idx] = ~0ul;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08003786 }
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003787}
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003788
Sean Christopherson84ec8d22021-07-13 09:33:19 -07003789static void vmx_update_msr_bitmap_x2apic(struct kvm_vcpu *vcpu)
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003790{
Sean Christopherson84ec8d22021-07-13 09:33:19 -07003791 struct vcpu_vmx *vmx = to_vmx(vcpu);
3792 u8 mode;
3793
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003794 if (!cpu_has_vmx_msr_bitmap())
3795 return;
3796
Sean Christopherson84ec8d22021-07-13 09:33:19 -07003797 if (cpu_has_secondary_exec_ctrls() &&
3798 (secondary_exec_controls_get(vmx) &
3799 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
3800 mode = MSR_BITMAP_MODE_X2APIC;
3801 if (enable_apicv && kvm_vcpu_apicv_active(vcpu))
3802 mode |= MSR_BITMAP_MODE_X2APIC_APICV;
3803 } else {
3804 mode = 0;
3805 }
3806
3807 if (mode == vmx->x2apic_msr_bitmap_mode)
3808 return;
3809
3810 vmx->x2apic_msr_bitmap_mode = mode;
3811
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003812 vmx_reset_x2apic_msrs(vcpu, mode);
3813
3814 /*
3815 * TPR reads and writes can be virtualized even if virtual interrupt
3816 * delivery is not in use.
3817 */
3818 vmx_set_intercept_for_msr(vcpu, X2APIC_MSR(APIC_TASKPRI), MSR_TYPE_RW,
3819 !(mode & MSR_BITMAP_MODE_X2APIC));
3820
3821 if (mode & MSR_BITMAP_MODE_X2APIC_APICV) {
3822 vmx_enable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_TMCCT), MSR_TYPE_RW);
3823 vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_EOI), MSR_TYPE_W);
3824 vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_SELF_IPI), MSR_TYPE_W);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003825 }
3826}
3827
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003828void pt_update_intercept_for_msr(struct kvm_vcpu *vcpu)
Chao Pengb08c2892018-10-24 16:05:15 +08003829{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003830 struct vcpu_vmx *vmx = to_vmx(vcpu);
Chao Pengb08c2892018-10-24 16:05:15 +08003831 bool flag = !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
3832 u32 i;
3833
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003834 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_STATUS, MSR_TYPE_RW, flag);
3835 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_OUTPUT_BASE, MSR_TYPE_RW, flag);
3836 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_OUTPUT_MASK, MSR_TYPE_RW, flag);
3837 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_CR3_MATCH, MSR_TYPE_RW, flag);
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08003838 for (i = 0; i < vmx->pt_desc.num_address_ranges; i++) {
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003839 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_ADDR0_A + i * 2, MSR_TYPE_RW, flag);
3840 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_ADDR0_B + i * 2, MSR_TYPE_RW, flag);
Chao Pengb08c2892018-10-24 16:05:15 +08003841 }
3842}
3843
Liran Alone6c67d82018-09-04 10:56:52 +03003844static bool vmx_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
3845{
3846 struct vcpu_vmx *vmx = to_vmx(vcpu);
3847 void *vapic_page;
3848 u32 vppr;
3849 int rvi;
3850
3851 if (WARN_ON_ONCE(!is_guest_mode(vcpu)) ||
3852 !nested_cpu_has_vid(get_vmcs12(vcpu)) ||
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003853 WARN_ON_ONCE(!vmx->nested.virtual_apic_map.gfn))
Liran Alone6c67d82018-09-04 10:56:52 +03003854 return false;
3855
Paolo Bonzini7e712682018-10-03 13:44:26 +02003856 rvi = vmx_get_rvi();
Liran Alone6c67d82018-09-04 10:56:52 +03003857
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003858 vapic_page = vmx->nested.virtual_apic_map.hva;
Liran Alone6c67d82018-09-04 10:56:52 +03003859 vppr = *((u32 *)(vapic_page + APIC_PROCPRI));
Liran Alone6c67d82018-09-04 10:56:52 +03003860
3861 return ((rvi & 0xf0) > (vppr & 0xf0));
3862}
3863
Alexander Graf3eb90012020-09-25 16:34:20 +02003864static void vmx_msr_filter_changed(struct kvm_vcpu *vcpu)
3865{
3866 struct vcpu_vmx *vmx = to_vmx(vcpu);
3867 u32 i;
3868
3869 /*
3870 * Set intercept permissions for all potentially passed through MSRs
3871 * again. They will automatically get filtered through the MSR filter,
3872 * so we are back in sync after this.
3873 */
3874 for (i = 0; i < ARRAY_SIZE(vmx_possible_passthrough_msrs); i++) {
3875 u32 msr = vmx_possible_passthrough_msrs[i];
3876 bool read = test_bit(i, vmx->shadow_msr_intercept.read);
3877 bool write = test_bit(i, vmx->shadow_msr_intercept.write);
3878
3879 vmx_set_intercept_for_msr(vcpu, msr, MSR_TYPE_R, read);
3880 vmx_set_intercept_for_msr(vcpu, msr, MSR_TYPE_W, write);
3881 }
3882
3883 pt_update_intercept_for_msr(vcpu);
Alexander Graf3eb90012020-09-25 16:34:20 +02003884}
3885
Wincy Van06a55242017-04-28 13:13:59 +08003886static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
3887 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003888{
3889#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08003890 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
3891
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003892 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08003893 /*
Haozhong Zhang5753743f2017-09-18 09:56:50 +08003894 * The vector of interrupt to be delivered to vcpu had
3895 * been set in PIR before this function.
Feng Wu28b835d2015-09-18 22:29:54 +08003896 *
Haozhong Zhang5753743f2017-09-18 09:56:50 +08003897 * Following cases will be reached in this block, and
3898 * we always send a notification event in all cases as
3899 * explained below.
3900 *
3901 * Case 1: vcpu keeps in non-root mode. Sending a
3902 * notification event posts the interrupt to vcpu.
3903 *
3904 * Case 2: vcpu exits to root mode and is still
3905 * runnable. PIR will be synced to vIRR before the
3906 * next vcpu entry. Sending a notification event in
3907 * this case has no effect, as vcpu is not in root
3908 * mode.
3909 *
3910 * Case 3: vcpu exits to root mode and is blocked.
3911 * vcpu_block() has already synced PIR to vIRR and
3912 * never blocks vcpu if vIRR is not cleared. Therefore,
3913 * a blocked vcpu here does not wait for any requested
3914 * interrupts in PIR, and sending a notification event
3915 * which has no effect is safe here.
Feng Wu28b835d2015-09-18 22:29:54 +08003916 */
Feng Wu28b835d2015-09-18 22:29:54 +08003917
Wincy Van06a55242017-04-28 13:13:59 +08003918 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003919 return true;
3920 }
3921#endif
3922 return false;
3923}
3924
Wincy Van705699a2015-02-03 23:58:17 +08003925static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
3926 int vector)
3927{
3928 struct vcpu_vmx *vmx = to_vmx(vcpu);
3929
3930 if (is_guest_mode(vcpu) &&
3931 vector == vmx->nested.posted_intr_nv) {
Wincy Van705699a2015-02-03 23:58:17 +08003932 /*
3933 * If a posted intr is not recognized by hardware,
3934 * we will accomplish it in the next vmentry.
3935 */
3936 vmx->nested.pi_pending = true;
3937 kvm_make_request(KVM_REQ_EVENT, vcpu);
Liran Alon6b697712017-11-09 20:27:20 +02003938 /* the PIR and ON have been set by L1. */
3939 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, true))
3940 kvm_vcpu_kick(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08003941 return 0;
3942 }
3943 return -1;
3944}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003945/*
Yang Zhanga20ed542013-04-11 19:25:15 +08003946 * Send interrupt to vcpu via posted interrupt way.
3947 * 1. If target vcpu is running(non-root mode), send posted interrupt
3948 * notification to vcpu and hardware will sync PIR to vIRR atomically.
3949 * 2. If target vcpu isn't running(root mode), kick it to pick up the
3950 * interrupt from PIR in next vmentry.
3951 */
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003952static int vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
Yang Zhanga20ed542013-04-11 19:25:15 +08003953{
3954 struct vcpu_vmx *vmx = to_vmx(vcpu);
3955 int r;
3956
Wincy Van705699a2015-02-03 23:58:17 +08003957 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
3958 if (!r)
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003959 return 0;
3960
3961 if (!vcpu->arch.apicv_active)
3962 return -1;
Wincy Van705699a2015-02-03 23:58:17 +08003963
Yang Zhanga20ed542013-04-11 19:25:15 +08003964 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003965 return 0;
Yang Zhanga20ed542013-04-11 19:25:15 +08003966
Paolo Bonzinib95234c2016-12-19 13:57:33 +01003967 /* If a previous notification has sent the IPI, nothing to do. */
3968 if (pi_test_and_set_on(&vmx->pi_desc))
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003969 return 0;
Paolo Bonzinib95234c2016-12-19 13:57:33 +01003970
Wanpeng Li379a3c82020-04-28 14:23:27 +08003971 if (vcpu != kvm_get_running_vcpu() &&
3972 !kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08003973 kvm_vcpu_kick(vcpu);
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003974
3975 return 0;
Yang Zhanga20ed542013-04-11 19:25:15 +08003976}
3977
Avi Kivity6aa8b732006-12-10 02:21:36 -08003978/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003979 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
3980 * will not change in the lifetime of the guest.
3981 * Note that host-state that does change is set elsewhere. E.g., host-state
3982 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
3983 */
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003984void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003985{
3986 u32 low32, high32;
3987 unsigned long tmpl;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07003988 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003989
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07003990 cr0 = read_cr0();
3991 WARN_ON(cr0 & X86_CR0_TS);
3992 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07003993
3994 /*
3995 * Save the most likely value for this task's CR3 in the VMCS.
3996 * We can't use __get_current_cr3_fast() because we're not atomic.
3997 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07003998 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07003999 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
Sean Christophersond7ee0392018-07-23 12:32:47 -07004000 vmx->loaded_vmcs->host_state.cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004001
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004002 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07004003 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004004 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07004005 vmx->loaded_vmcs->host_state.cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004006
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004007 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004008#ifdef CONFIG_X86_64
4009 /*
4010 * Load null selectors, so we can avoid reloading them in
Sean Christopherson6d6095b2018-07-23 12:32:44 -07004011 * vmx_prepare_switch_to_host(), in case userspace uses
4012 * the null selectors too (the expected case).
Avi Kivityb2da15a2012-05-13 19:53:24 +03004013 */
4014 vmcs_write16(HOST_DS_SELECTOR, 0);
4015 vmcs_write16(HOST_ES_SELECTOR, 0);
4016#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004017 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4018 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004019#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004020 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4021 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
4022
Sean Christopherson23420802019-04-19 22:50:57 -07004023 vmcs_writel(HOST_IDTR_BASE, host_idt_base); /* 22.2.4 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004024
Sean Christopherson453eafb2018-12-20 12:25:17 -08004025 vmcs_writel(HOST_RIP, (unsigned long)vmx_vmexit); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004026
4027 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
4028 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
4029 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
4030 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
4031
4032 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
4033 rdmsr(MSR_IA32_CR_PAT, low32, high32);
4034 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
4035 }
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07004036
Sean Christophersonc73da3f2018-12-03 13:53:00 -08004037 if (cpu_has_load_ia32_efer())
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07004038 vmcs_write64(HOST_IA32_EFER, host_efer);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004039}
4040
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004041void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004042{
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004043 struct kvm_vcpu *vcpu = &vmx->vcpu;
4044
4045 vcpu->arch.cr4_guest_owned_bits = KVM_POSSIBLE_CR4_GUEST_BITS &
4046 ~vcpu->arch.cr4_guest_rsvd_bits;
Sean Christophersonfa71e952020-07-02 21:04:22 -07004047 if (!enable_ept)
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004048 vcpu->arch.cr4_guest_owned_bits &= ~X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03004049 if (is_guest_mode(&vmx->vcpu))
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004050 vcpu->arch.cr4_guest_owned_bits &=
4051 ~get_vmcs12(vcpu)->cr4_guest_host_mask;
4052 vmcs_writel(CR4_GUEST_HOST_MASK, ~vcpu->arch.cr4_guest_owned_bits);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004053}
4054
Sean Christopherson2fba4fc2021-08-10 10:19:52 -07004055static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
Yang Zhang01e439b2013-04-11 19:25:12 +08004056{
4057 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
4058
Andrey Smetanind62caab2015-11-10 15:36:33 +03004059 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08004060 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004061
4062 if (!enable_vnmi)
4063 pin_based_exec_ctrl &= ~PIN_BASED_VIRTUAL_NMIS;
4064
Sean Christopherson804939e2019-05-07 12:18:05 -07004065 if (!enable_preemption_timer)
4066 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
4067
Yang Zhang01e439b2013-04-11 19:25:12 +08004068 return pin_based_exec_ctrl;
4069}
4070
Sean Christopherson2fba4fc2021-08-10 10:19:52 -07004071static u32 vmx_vmentry_ctrl(void)
4072{
4073 u32 vmentry_ctrl = vmcs_config.vmentry_ctrl;
4074
4075 if (vmx_pt_mode_is_system())
4076 vmentry_ctrl &= ~(VM_ENTRY_PT_CONCEAL_PIP |
4077 VM_ENTRY_LOAD_IA32_RTIT_CTL);
4078 /* Loading of EFER and PERF_GLOBAL_CTRL are toggled dynamically */
4079 return vmentry_ctrl &
4080 ~(VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL | VM_ENTRY_LOAD_IA32_EFER);
4081}
4082
4083static u32 vmx_vmexit_ctrl(void)
4084{
4085 u32 vmexit_ctrl = vmcs_config.vmexit_ctrl;
4086
4087 if (vmx_pt_mode_is_system())
4088 vmexit_ctrl &= ~(VM_EXIT_PT_CONCEAL_PIP |
4089 VM_EXIT_CLEAR_IA32_RTIT_CTL);
4090 /* Loading of EFER and PERF_GLOBAL_CTRL are toggled dynamically */
4091 return vmexit_ctrl &
4092 ~(VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL | VM_EXIT_LOAD_IA32_EFER);
4093}
4094
Andrey Smetanind62caab2015-11-10 15:36:33 +03004095static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
4096{
4097 struct vcpu_vmx *vmx = to_vmx(vcpu);
4098
Sean Christophersonc5f2c762019-05-07 12:17:55 -07004099 pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03004100 if (cpu_has_secondary_exec_ctrls()) {
4101 if (kvm_vcpu_apicv_active(vcpu))
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07004102 secondary_exec_controls_setbit(vmx,
Roman Kagan3ce424e2016-05-18 17:48:20 +03004103 SECONDARY_EXEC_APIC_REGISTER_VIRT |
4104 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
4105 else
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07004106 secondary_exec_controls_clearbit(vmx,
Roman Kagan3ce424e2016-05-18 17:48:20 +03004107 SECONDARY_EXEC_APIC_REGISTER_VIRT |
4108 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
4109 }
4110
Sean Christopherson84ec8d22021-07-13 09:33:19 -07004111 vmx_update_msr_bitmap_x2apic(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004112}
4113
Sean Christopherson2fba4fc2021-08-10 10:19:52 -07004114static u32 vmx_exec_control(struct vcpu_vmx *vmx)
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08004115{
4116 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
4117
4118 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
4119 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
4120
4121 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
4122 exec_control &= ~CPU_BASED_TPR_SHADOW;
4123#ifdef CONFIG_X86_64
4124 exec_control |= CPU_BASED_CR8_STORE_EXITING |
4125 CPU_BASED_CR8_LOAD_EXITING;
4126#endif
4127 }
4128 if (!enable_ept)
4129 exec_control |= CPU_BASED_CR3_STORE_EXITING |
4130 CPU_BASED_CR3_LOAD_EXITING |
4131 CPU_BASED_INVLPG_EXITING;
4132 if (kvm_mwait_in_guest(vmx->vcpu.kvm))
4133 exec_control &= ~(CPU_BASED_MWAIT_EXITING |
4134 CPU_BASED_MONITOR_EXITING);
4135 if (kvm_hlt_in_guest(vmx->vcpu.kvm))
4136 exec_control &= ~CPU_BASED_HLT_EXITING;
4137 return exec_control;
4138}
4139
Sean Christopherson8b50b922020-09-24 17:30:11 -07004140/*
4141 * Adjust a single secondary execution control bit to intercept/allow an
4142 * instruction in the guest. This is usually done based on whether or not a
4143 * feature has been exposed to the guest in order to correctly emulate faults.
4144 */
4145static inline void
4146vmx_adjust_secondary_exec_control(struct vcpu_vmx *vmx, u32 *exec_control,
4147 u32 control, bool enabled, bool exiting)
4148{
4149 /*
4150 * If the control is for an opt-in feature, clear the control if the
4151 * feature is not exposed to the guest, i.e. not enabled. If the
4152 * control is opt-out, i.e. an exiting control, clear the control if
4153 * the feature _is_ exposed to the guest, i.e. exiting/interception is
4154 * disabled for the associated instruction. Note, the caller is
4155 * responsible presetting exec_control to set all supported bits.
4156 */
4157 if (enabled == exiting)
4158 *exec_control &= ~control;
4159
4160 /*
4161 * Update the nested MSR settings so that a nested VMM can/can't set
4162 * controls for features that are/aren't exposed to the guest.
4163 */
4164 if (nested) {
4165 if (enabled)
4166 vmx->nested.msrs.secondary_ctls_high |= control;
4167 else
4168 vmx->nested.msrs.secondary_ctls_high &= ~control;
4169 }
4170}
4171
4172/*
4173 * Wrapper macro for the common case of adjusting a secondary execution control
4174 * based on a single guest CPUID bit, with a dedicated feature bit. This also
4175 * verifies that the control is actually supported by KVM and hardware.
4176 */
4177#define vmx_adjust_sec_exec_control(vmx, exec_control, name, feat_name, ctrl_name, exiting) \
4178({ \
4179 bool __enabled; \
4180 \
4181 if (cpu_has_vmx_##name()) { \
4182 __enabled = guest_cpuid_has(&(vmx)->vcpu, \
4183 X86_FEATURE_##feat_name); \
4184 vmx_adjust_secondary_exec_control(vmx, exec_control, \
4185 SECONDARY_EXEC_##ctrl_name, __enabled, exiting); \
4186 } \
4187})
4188
4189/* More macro magic for ENABLE_/opt-in versus _EXITING/opt-out controls. */
4190#define vmx_adjust_sec_exec_feature(vmx, exec_control, lname, uname) \
4191 vmx_adjust_sec_exec_control(vmx, exec_control, lname, uname, ENABLE_##uname, false)
4192
4193#define vmx_adjust_sec_exec_exiting(vmx, exec_control, lname, uname) \
4194 vmx_adjust_sec_exec_control(vmx, exec_control, lname, uname, uname##_EXITING, true)
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08004195
Sean Christopherson2fba4fc2021-08-10 10:19:52 -07004196static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004197{
Paolo Bonzini80154d72017-08-24 13:55:35 +02004198 struct kvm_vcpu *vcpu = &vmx->vcpu;
4199
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004200 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004201
Sean Christopherson2ef76192020-03-02 15:56:22 -08004202 if (vmx_pt_mode_is_system())
Chao Pengf99e3da2018-10-24 16:05:10 +08004203 exec_control &= ~(SECONDARY_EXEC_PT_USE_GPA | SECONDARY_EXEC_PT_CONCEAL_VMX);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004204 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004205 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
4206 if (vmx->vpid == 0)
4207 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
4208 if (!enable_ept) {
4209 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
4210 enable_unrestricted_guest = 0;
4211 }
4212 if (!enable_unrestricted_guest)
4213 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Wanpeng Lib31c1142018-03-12 04:53:04 -07004214 if (kvm_pause_in_guest(vmx->vcpu.kvm))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004215 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02004216 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08004217 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
4218 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08004219 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004220
4221 /* SECONDARY_EXEC_DESC is enabled/disabled on writes to CR4.UMIP,
4222 * in vmx_set_cr4. */
4223 exec_control &= ~SECONDARY_EXEC_DESC;
4224
Abel Gordonabc4fc52013-04-18 14:35:25 +03004225 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
4226 (handle_vmptrld).
4227 We can NOT enable shadow_vmcs here because we don't have yet
4228 a current VMCS12
4229 */
4230 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08004231
Makarand Sonarea85863c2021-02-12 16:50:12 -08004232 /*
4233 * PML is enabled/disabled when dirty logging of memsmlots changes, but
4234 * it needs to be set here when dirty logging is already active, e.g.
4235 * if this vCPU was created after dirty logging was enabled.
4236 */
4237 if (!vcpu->kvm->arch.cpu_dirty_logging_count)
Kai Huanga3eaa862015-11-04 13:46:05 +08004238 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08004239
Sean Christophersonbecdad82020-09-23 09:50:45 -07004240 if (cpu_has_vmx_xsaves()) {
Paolo Bonzini3db13482017-08-24 14:48:03 +02004241 /* Exposing XSAVES only when XSAVE is exposed */
4242 bool xsaves_enabled =
Sean Christopherson96be4e02019-12-10 14:44:15 -08004243 boot_cpu_has(X86_FEATURE_XSAVE) &&
Paolo Bonzini3db13482017-08-24 14:48:03 +02004244 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
4245 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
4246
Aaron Lewis72041602019-10-21 16:30:20 -07004247 vcpu->arch.xsaves_enabled = xsaves_enabled;
4248
Sean Christopherson8b50b922020-09-24 17:30:11 -07004249 vmx_adjust_secondary_exec_control(vmx, &exec_control,
4250 SECONDARY_EXEC_XSAVES,
4251 xsaves_enabled, false);
Paolo Bonzini3db13482017-08-24 14:48:03 +02004252 }
4253
Sean Christopherson36fa06f2021-05-04 10:17:26 -07004254 /*
4255 * RDPID is also gated by ENABLE_RDTSCP, turn on the control if either
4256 * feature is exposed to the guest. This creates a virtualization hole
4257 * if both are supported in hardware but only one is exposed to the
4258 * guest, but letting the guest execute RDTSCP or RDPID when either one
4259 * is advertised is preferable to emulating the advertised instruction
4260 * in KVM on #UD, and obviously better than incorrectly injecting #UD.
4261 */
4262 if (cpu_has_vmx_rdtscp()) {
4263 bool rdpid_or_rdtscp_enabled =
4264 guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) ||
4265 guest_cpuid_has(vcpu, X86_FEATURE_RDPID);
4266
4267 vmx_adjust_secondary_exec_control(vmx, &exec_control,
4268 SECONDARY_EXEC_ENABLE_RDTSCP,
4269 rdpid_or_rdtscp_enabled, false);
4270 }
Sean Christopherson8b50b922020-09-24 17:30:11 -07004271 vmx_adjust_sec_exec_feature(vmx, &exec_control, invpcid, INVPCID);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004272
Sean Christopherson8b50b922020-09-24 17:30:11 -07004273 vmx_adjust_sec_exec_exiting(vmx, &exec_control, rdrand, RDRAND);
4274 vmx_adjust_sec_exec_exiting(vmx, &exec_control, rdseed, RDSEED);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004275
Sean Christopherson8b50b922020-09-24 17:30:11 -07004276 vmx_adjust_sec_exec_control(vmx, &exec_control, waitpkg, WAITPKG,
4277 ENABLE_USR_WAIT_PAUSE, false);
Tao Xue69e72fa2019-07-16 14:55:49 +08004278
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08004279 if (!vcpu->kvm->arch.bus_lock_detection_enabled)
4280 exec_control &= ~SECONDARY_EXEC_BUS_LOCK_DETECTION;
4281
Sean Christophersonb6247682021-08-10 10:19:51 -07004282 return exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004283}
4284
Wanpeng Lif53cd632014-12-02 19:14:58 +08004285#define VMX_XSS_EXIT_BITMAP 0
Avi Kivity6aa8b732006-12-10 02:21:36 -08004286
Xiaoyao Li1b842922019-10-20 17:11:01 +08004287static void init_vmcs(struct vcpu_vmx *vmx)
Sean Christopherson944c3462018-12-03 13:53:09 -08004288{
Sean Christopherson944c3462018-12-03 13:53:09 -08004289 if (nested)
Xiaoyao Li1b842922019-10-20 17:11:01 +08004290 nested_vmx_set_vmcs_shadowing_bitmap();
Sean Christopherson944c3462018-12-03 13:53:09 -08004291
Sheng Yang25c5f222008-03-28 13:18:56 +08004292 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004293 vmcs_write64(MSR_BITMAP, __pa(vmx->vmcs01.msr_bitmap));
Sheng Yang25c5f222008-03-28 13:18:56 +08004294
Yu Zhang64c78502021-09-30 01:51:53 +08004295 vmcs_write64(VMCS_LINK_POINTER, INVALID_GPA); /* 22.3.1.5 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004296
Avi Kivity6aa8b732006-12-10 02:21:36 -08004297 /* Control */
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004298 pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004299
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004300 exec_controls_set(vmx, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004301
Sean Christophersonb6247682021-08-10 10:19:51 -07004302 if (cpu_has_secondary_exec_ctrls())
4303 secondary_exec_controls_set(vmx, vmx_secondary_exec_control(vmx));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004304
Andrey Smetanind62caab2015-11-10 15:36:33 +03004305 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08004306 vmcs_write64(EOI_EXIT_BITMAP0, 0);
4307 vmcs_write64(EOI_EXIT_BITMAP1, 0);
4308 vmcs_write64(EOI_EXIT_BITMAP2, 0);
4309 vmcs_write64(EOI_EXIT_BITMAP3, 0);
4310
4311 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08004312
Li RongQing0bcf2612015-12-03 13:29:34 +08004313 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08004314 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08004315 }
4316
Wanpeng Lib31c1142018-03-12 04:53:04 -07004317 if (!kvm_pause_in_guest(vmx->vcpu.kvm)) {
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004318 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02004319 vmx->ple_window = ple_window;
4320 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004321 }
4322
Xiao Guangrongc3707952011-07-12 03:28:04 +08004323 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
4324 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004325 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
4326
Avi Kivity9581d442010-10-19 16:46:55 +02004327 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
4328 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004329 vmx_set_constant_host_state(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004330 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
4331 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004332
Bandan Das2a499e42017-08-03 15:54:41 -04004333 if (cpu_has_vmx_vmfunc())
4334 vmcs_write64(VM_FUNCTION_CONTROL, 0);
4335
Eddie Dong2cc51562007-05-21 07:28:09 +03004336 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
4337 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004338 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host.val));
Eddie Dong2cc51562007-05-21 07:28:09 +03004339 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004340 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest.val));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004341
Radim Krčmář74545702015-04-27 15:11:25 +02004342 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
4343 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08004344
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004345 vm_exit_controls_set(vmx, vmx_vmexit_ctrl());
Avi Kivity6aa8b732006-12-10 02:21:36 -08004346
4347 /* 22.2.1, 20.8.1 */
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004348 vm_entry_controls_set(vmx, vmx_vmentry_ctrl());
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004349
Sean Christophersonfa71e952020-07-02 21:04:22 -07004350 vmx->vcpu.arch.cr0_guest_owned_bits = KVM_POSSIBLE_CR0_GUEST_BITS;
4351 vmcs_writel(CR0_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr0_guest_owned_bits);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004352
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004353 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004354
Xiaoyao Li35fbe0d2019-10-20 17:10:58 +08004355 if (vmx->vpid != 0)
4356 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
4357
Sean Christophersonbecdad82020-09-23 09:50:45 -07004358 if (cpu_has_vmx_xsaves())
Wanpeng Lif53cd632014-12-02 19:14:58 +08004359 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
4360
Peter Feiner4e595162016-07-07 14:49:58 -07004361 if (enable_pml) {
Peter Feiner4e595162016-07-07 14:49:58 -07004362 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
4363 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
4364 }
Sean Christopherson0b665d32018-08-14 09:33:34 -07004365
Sean Christopherson72add912021-04-12 16:21:42 +12004366 vmx_write_encls_bitmap(&vmx->vcpu, NULL);
Chao Peng2ef444f2018-10-24 16:05:12 +08004367
Sean Christopherson2ef76192020-03-02 15:56:22 -08004368 if (vmx_pt_mode_is_host_guest()) {
Chao Peng2ef444f2018-10-24 16:05:12 +08004369 memset(&vmx->pt_desc, 0, sizeof(vmx->pt_desc));
4370 /* Bit[6~0] are forced to 1, writes are ignored. */
4371 vmx->pt_desc.guest.output_mask = 0x7F;
4372 vmcs_write64(GUEST_IA32_RTIT_CTL, 0);
4373 }
Sean Christophersonc5c9f922021-07-13 09:33:13 -07004374
Sean Christophersone5494942021-07-13 09:33:21 -07004375 vmcs_write32(GUEST_SYSENTER_CS, 0);
4376 vmcs_writel(GUEST_SYSENTER_ESP, 0);
4377 vmcs_writel(GUEST_SYSENTER_EIP, 0);
4378 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
4379
4380 if (cpu_has_vmx_tpr_shadow()) {
4381 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
4382 if (cpu_need_tpr_shadow(&vmx->vcpu))
4383 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
4384 __pa(vmx->vcpu.arch.apic->regs));
4385 vmcs_write32(TPR_THRESHOLD, 0);
4386 }
4387
Sean Christophersonc5c9f922021-07-13 09:33:13 -07004388 vmx_setup_uret_msrs(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004389}
4390
Sean Christopherson06692e42021-09-20 17:03:01 -07004391static void __vmx_vcpu_reset(struct kvm_vcpu *vcpu)
4392{
4393 struct vcpu_vmx *vmx = to_vmx(vcpu);
4394
4395 init_vmcs(vmx);
4396
4397 if (nested)
4398 memcpy(&vmx->nested.msrs, &vmcs_config.nested, sizeof(vmx->nested.msrs));
4399
4400 vcpu_setup_sgx_lepubkeyhash(vcpu);
4401
4402 vmx->nested.posted_intr_nv = -1;
4403 vmx->nested.vmxon_ptr = INVALID_GPA;
4404 vmx->nested.current_vmptr = INVALID_GPA;
4405 vmx->nested.hv_evmcs_vmptr = EVMPTR_INVALID;
4406
4407 vcpu->arch.microcode_version = 0x100000000ULL;
4408 vmx->msr_ia32_feature_control_valid_bits = FEAT_CTL_LOCKED;
4409
4410 /*
4411 * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR
4412 * or POSTED_INTR_WAKEUP_VECTOR.
4413 */
4414 vmx->pi_desc.nv = POSTED_INTR_VECTOR;
4415 vmx->pi_desc.sn = 1;
4416}
4417
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004418static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004419{
4420 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004421
Sean Christopherson06692e42021-09-20 17:03:01 -07004422 if (!init_event)
4423 __vmx_vcpu_reset(vcpu);
4424
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004425 vmx->rmode.vm86_active = 0;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004426 vmx->spec_ctrl = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004427
Tao Xu6e3ba4a2019-07-16 14:55:50 +08004428 vmx->msr_ia32_umwait_control = 0;
4429
Wanpeng Li95c06542019-09-05 14:26:28 +08004430 vmx->hv_deadline_tsc = -1;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004431 kvm_set_cr8(vcpu, 0);
4432
Avi Kivity2fb92db2011-04-27 19:42:18 +03004433 vmx_segment_cache_clear(vmx);
Sean Christophersonff8828c2021-09-20 17:02:56 -07004434 kvm_register_mark_available(vcpu, VCPU_EXREG_SEGMENTS);
Avi Kivity2fb92db2011-04-27 19:42:18 +03004435
Avi Kivity5706be02008-08-20 15:07:31 +03004436 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01004437 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004438 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004439
4440 seg_setup(VCPU_SREG_DS);
4441 seg_setup(VCPU_SREG_ES);
4442 seg_setup(VCPU_SREG_FS);
4443 seg_setup(VCPU_SREG_GS);
4444 seg_setup(VCPU_SREG_SS);
4445
4446 vmcs_write16(GUEST_TR_SELECTOR, 0);
4447 vmcs_writel(GUEST_TR_BASE, 0);
4448 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
4449 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4450
4451 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
4452 vmcs_writel(GUEST_LDTR_BASE, 0);
4453 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
4454 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
4455
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004456 vmcs_writel(GUEST_GDTR_BASE, 0);
4457 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
4458
4459 vmcs_writel(GUEST_IDTR_BASE, 0);
4460 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
4461
Anthony Liguori443381a2010-12-06 10:53:38 -06004462 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004463 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004464 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Wanpeng Lia554d202017-10-11 05:10:19 -07004465 if (kvm_mpx_supported())
4466 vmcs_write64(GUEST_BNDCFGS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004467
Avi Kivity6aa8b732006-12-10 02:21:36 -08004468 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
4469
Paolo Bonzinia73896c2014-11-02 07:54:30 +01004470 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004471
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004472 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004473}
4474
Jason Baronb6a7cc32021-01-14 22:27:54 -05004475static void vmx_enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004476{
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08004477 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_INTR_WINDOW_EXITING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004478}
4479
Jason Baronb6a7cc32021-01-14 22:27:54 -05004480static void vmx_enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004481{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004482 if (!enable_vnmi ||
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004483 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jason Baronb6a7cc32021-01-14 22:27:54 -05004484 vmx_enable_irq_window(vcpu);
Jan Kiszkac9a79532014-03-07 20:03:15 +01004485 return;
4486 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02004487
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08004488 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_NMI_WINDOW_EXITING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004489}
4490
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004491static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03004492{
Avi Kivity9c8cba32007-11-22 11:42:59 +02004493 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004494 uint32_t intr;
4495 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02004496
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004497 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004498
Avi Kivityfa89a812008-09-01 15:57:51 +03004499 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004500 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05004501 int inc_eip = 0;
4502 if (vcpu->arch.interrupt.soft)
4503 inc_eip = vcpu->arch.event_exit_inst_len;
Sean Christopherson9497e1f2019-08-27 14:40:36 -07004504 kvm_inject_realmode_interrupt(vcpu, irq, inc_eip);
Eddie Dong85f455f2007-07-06 12:20:49 +03004505 return;
4506 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004507 intr = irq | INTR_INFO_VALID_MASK;
4508 if (vcpu->arch.interrupt.soft) {
4509 intr |= INTR_TYPE_SOFT_INTR;
4510 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
4511 vmx->vcpu.arch.event_exit_inst_len);
4512 } else
4513 intr |= INTR_TYPE_EXT_INTR;
4514 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004515
4516 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03004517}
4518
Sheng Yangf08864b2008-05-15 18:23:25 +08004519static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
4520{
Jan Kiszka66a5a342008-09-26 09:30:51 +02004521 struct vcpu_vmx *vmx = to_vmx(vcpu);
4522
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004523 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004524 /*
4525 * Tracking the NMI-blocked state in software is built upon
4526 * finding the next open IRQ window. This, in turn, depends on
4527 * well-behaving guests: They have to keep IRQs disabled at
4528 * least as long as the NMI handler runs. Otherwise we may
4529 * cause NMI nesting, maybe breaking the guest. But as this is
4530 * highly unlikely, we can live with the residual risk.
4531 */
4532 vmx->loaded_vmcs->soft_vnmi_blocked = 1;
4533 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4534 }
4535
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004536 ++vcpu->stat.nmi_injections;
4537 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004538
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004539 if (vmx->rmode.vm86_active) {
Sean Christopherson9497e1f2019-08-27 14:40:36 -07004540 kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0);
Jan Kiszka66a5a342008-09-26 09:30:51 +02004541 return;
4542 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08004543
Sheng Yangf08864b2008-05-15 18:23:25 +08004544 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
4545 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004546
4547 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08004548}
4549
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004550bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004551{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004552 struct vcpu_vmx *vmx = to_vmx(vcpu);
4553 bool masked;
4554
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004555 if (!enable_vnmi)
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004556 return vmx->loaded_vmcs->soft_vnmi_blocked;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004557 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02004558 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004559 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
4560 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4561 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004562}
4563
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004564void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004565{
4566 struct vcpu_vmx *vmx = to_vmx(vcpu);
4567
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004568 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004569 if (vmx->loaded_vmcs->soft_vnmi_blocked != masked) {
4570 vmx->loaded_vmcs->soft_vnmi_blocked = masked;
4571 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4572 }
4573 } else {
4574 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4575 if (masked)
4576 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
4577 GUEST_INTR_STATE_NMI);
4578 else
4579 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
4580 GUEST_INTR_STATE_NMI);
4581 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004582}
4583
Sean Christopherson1b660b62020-04-22 19:25:44 -07004584bool vmx_nmi_blocked(struct kvm_vcpu *vcpu)
4585{
4586 if (is_guest_mode(vcpu) && nested_exit_on_nmi(vcpu))
4587 return false;
4588
4589 if (!enable_vnmi && to_vmx(vcpu)->loaded_vmcs->soft_vnmi_blocked)
4590 return true;
4591
4592 return (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4593 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI |
4594 GUEST_INTR_STATE_NMI));
4595}
4596
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004597static int vmx_nmi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Jan Kiszka2505dc92013-04-14 12:12:47 +02004598{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01004599 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004600 return -EBUSY;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02004601
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004602 /* An NMI must not be injected into L2 if it's supposed to VM-Exit. */
4603 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_nmi(vcpu))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004604 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004605
Sean Christopherson1b660b62020-04-22 19:25:44 -07004606 return !vmx_nmi_blocked(vcpu);
4607}
Sean Christopherson429ab572020-04-22 19:25:42 -07004608
Sean Christopherson1b660b62020-04-22 19:25:44 -07004609bool vmx_interrupt_blocked(struct kvm_vcpu *vcpu)
4610{
4611 if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
Sean Christopherson88c604b2020-04-22 19:25:41 -07004612 return false;
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004613
Sean Christopherson7ab0abd2020-04-22 19:25:50 -07004614 return !(vmx_get_rflags(vcpu) & X86_EFLAGS_IF) ||
Sean Christopherson1b660b62020-04-22 19:25:44 -07004615 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4616 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Jan Kiszka2505dc92013-04-14 12:12:47 +02004617}
4618
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004619static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Gleb Natapov78646122009-03-23 12:12:11 +02004620{
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004621 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004622 return -EBUSY;
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004623
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004624 /*
4625 * An IRQ must not be injected into L2 if it's supposed to VM-Exit,
4626 * e.g. if the IRQ arrived asynchronously after checking nested events.
4627 */
4628 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004629 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004630
Sean Christopherson1b660b62020-04-22 19:25:44 -07004631 return !vmx_interrupt_blocked(vcpu);
Gleb Natapov78646122009-03-23 12:12:11 +02004632}
4633
Izik Eiduscbc94022007-10-25 00:29:55 +02004634static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
4635{
Peter Xuff5a9832020-09-30 21:20:33 -04004636 void __user *ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02004637
Sean Christophersonf7eaeb02018-03-05 12:04:36 -08004638 if (enable_unrestricted_guest)
4639 return 0;
4640
Peter Xu6a3c6232020-01-09 09:57:16 -05004641 mutex_lock(&kvm->slots_lock);
4642 ret = __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
4643 PAGE_SIZE * 3);
4644 mutex_unlock(&kvm->slots_lock);
4645
Peter Xuff5a9832020-09-30 21:20:33 -04004646 if (IS_ERR(ret))
4647 return PTR_ERR(ret);
4648
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004649 to_kvm_vmx(kvm)->tss_addr = addr;
Peter Xuff5a9832020-09-30 21:20:33 -04004650
4651 return init_rmode_tss(kvm, ret);
Izik Eiduscbc94022007-10-25 00:29:55 +02004652}
4653
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004654static int vmx_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
4655{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004656 to_kvm_vmx(kvm)->ept_identity_map_addr = ident_addr;
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004657 return 0;
4658}
4659
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004660static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004661{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004662 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004663 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01004664 /*
4665 * Update instruction length as we may reinject the exception
4666 * from user space while in guest debugging mode.
4667 */
4668 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
4669 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004670 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004671 return false;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004672 fallthrough;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004673 case DB_VECTOR:
Miaohe Lina8cfbae2020-02-19 10:45:48 +08004674 return !(vcpu->guest_debug &
4675 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP));
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004676 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004677 case OF_VECTOR:
4678 case BR_VECTOR:
4679 case UD_VECTOR:
4680 case DF_VECTOR:
4681 case SS_VECTOR:
4682 case GP_VECTOR:
4683 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004684 return true;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004685 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004686 return false;
4687}
4688
4689static int handle_rmode_exception(struct kvm_vcpu *vcpu,
4690 int vec, u32 err_code)
4691{
4692 /*
4693 * Instruction with address size override prefix opcode 0x67
4694 * Cause the #SS fault with 0 error code in VM86 mode.
4695 */
4696 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004697 if (kvm_emulate_instruction(vcpu, 0)) {
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004698 if (vcpu->arch.halt_request) {
4699 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06004700 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004701 }
4702 return 1;
4703 }
4704 return 0;
4705 }
4706
4707 /*
4708 * Forward all other exceptions that are valid in real mode.
4709 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
4710 * the required debugging infrastructure rework.
4711 */
4712 kvm_queue_exception(vcpu, vec);
4713 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004714}
4715
Avi Kivity851ba692009-08-24 11:10:17 +03004716static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08004717{
Sean Christopherson95b5a482019-04-19 22:50:59 -07004718 /* handled by vmx_vcpu_run() */
Andi Kleena0861c02009-06-08 17:37:09 +08004719 return 1;
4720}
4721
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004722/*
4723 * If the host has split lock detection disabled, then #AC is
4724 * unconditionally injected into the guest, which is the pre split lock
4725 * detection behaviour.
4726 *
4727 * If the host has split lock detection enabled then #AC is
4728 * only injected into the guest when:
4729 * - Guest CPL == 3 (user mode)
4730 * - Guest has #AC detection enabled in CR0
4731 * - Guest EFLAGS has AC bit set
4732 */
Sean Christophersonb33bb782021-06-22 10:22:44 -07004733bool vmx_guest_inject_ac(struct kvm_vcpu *vcpu)
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004734{
4735 if (!boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
4736 return true;
4737
4738 return vmx_get_cpl(vcpu) == 3 && kvm_read_cr0_bits(vcpu, X86_CR0_AM) &&
4739 (kvm_get_rflags(vcpu) & X86_EFLAGS_AC);
4740}
4741
Sean Christopherson95b5a482019-04-19 22:50:59 -07004742static int handle_exception_nmi(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004743{
Avi Kivity1155f762007-11-22 11:30:47 +02004744 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004745 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004746 u32 intr_info, ex_no, error_code;
Yuan Yaoe87e46d2021-05-26 14:38:28 +08004747 unsigned long cr2, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004748 u32 vect_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004749
Avi Kivity1155f762007-11-22 11:30:47 +02004750 vect_info = vmx->idt_vectoring_info;
Sean Christophersonf27ad732020-04-27 10:18:37 -07004751 intr_info = vmx_get_intr_info(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004752
Paolo Bonzini2ea72032019-06-06 14:57:25 +02004753 if (is_machine_check(intr_info) || is_nmi(intr_info))
Sean Christopherson95b5a482019-04-19 22:50:59 -07004754 return 1; /* handled by handle_exception_nmi_irqoff() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03004755
Wanpeng Li082d06e2018-04-03 16:28:48 -07004756 if (is_invalid_opcode(intr_info))
4757 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004758
Avi Kivity6aa8b732006-12-10 02:21:36 -08004759 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06004760 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004761 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004762
Liran Alon9e869482018-03-12 13:12:51 +02004763 if (!vmx->rmode.vm86_active && is_gp_fault(intr_info)) {
4764 WARN_ON_ONCE(!enable_vmware_backdoor);
Sean Christophersona6c6ed12019-08-27 14:40:30 -07004765
4766 /*
4767 * VMware backdoor emulation on #GP interception only handles
4768 * IN{S}, OUT{S}, and RDPMC, none of which generate a non-zero
4769 * error code on #GP.
4770 */
4771 if (error_code) {
4772 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
4773 return 1;
4774 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004775 return kvm_emulate_instruction(vcpu, EMULTYPE_VMWARE_GP);
Liran Alon9e869482018-03-12 13:12:51 +02004776 }
4777
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004778 /*
4779 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
4780 * MMIO, it is better to report an internal error.
4781 * See the comments in vmx_handle_exit.
4782 */
4783 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
4784 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
4785 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4786 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Jim Mattson1aa561b2020-06-03 16:56:21 -07004787 vcpu->run->internal.ndata = 4;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004788 vcpu->run->internal.data[0] = vect_info;
4789 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02004790 vcpu->run->internal.data[2] = error_code;
Jim Mattson8a14fe42020-06-03 16:56:22 -07004791 vcpu->run->internal.data[3] = vcpu->arch.last_vmentry_cpu;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004792 return 0;
4793 }
4794
Avi Kivity6aa8b732006-12-10 02:21:36 -08004795 if (is_page_fault(intr_info)) {
Sean Christopherson5addc232020-04-15 13:34:53 -07004796 cr2 = vmx_get_exit_qual(vcpu);
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02004797 if (enable_ept && !vcpu->arch.apf.host_apf_flags) {
4798 /*
4799 * EPT will cause page fault only if we need to
4800 * detect illegal GPAs.
4801 */
Mohammed Gamalb96e6502020-09-03 16:11:22 +02004802 WARN_ON_ONCE(!allow_smaller_maxphyaddr);
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02004803 kvm_fixup_and_inject_pf_error(vcpu, cr2, error_code);
4804 return 1;
4805 } else
4806 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004807 }
4808
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004809 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004810
4811 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
4812 return handle_rmode_exception(vcpu, ex_no, error_code);
4813
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004814 switch (ex_no) {
4815 case DB_VECTOR:
Sean Christopherson5addc232020-04-15 13:34:53 -07004816 dr6 = vmx_get_exit_qual(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004817 if (!(vcpu->guest_debug &
4818 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Linus Torvalds32d43cd2018-03-20 12:16:59 -07004819 if (is_icebp(intr_info))
Sean Christopherson1957aa62019-08-27 14:40:39 -07004820 WARN_ON(!skip_emulated_instruction(vcpu));
Huw Daviesfd2a4452014-04-16 10:02:51 +01004821
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04004822 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004823 return 1;
4824 }
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08004825 kvm_run->debug.arch.dr6 = dr6 | DR6_ACTIVE_LOW;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004826 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004827 fallthrough;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004828 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01004829 /*
4830 * Update instruction length as we may reinject #BP from
4831 * user space while in guest debugging mode. Reading it for
4832 * #DB as well causes no harm, it is not used in that case.
4833 */
4834 vmx->vcpu.arch.event_exit_inst_len =
4835 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004836 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Yuan Yaoe87e46d2021-05-26 14:38:28 +08004837 kvm_run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004838 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004839 break;
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004840 case AC_VECTOR:
Sean Christophersonb33bb782021-06-22 10:22:44 -07004841 if (vmx_guest_inject_ac(vcpu)) {
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004842 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
4843 return 1;
4844 }
4845
4846 /*
4847 * Handle split lock. Depending on detection mode this will
4848 * either warn and disable split lock detection for this
4849 * task or force SIGBUS on it.
4850 */
4851 if (handle_guest_split_lock(kvm_rip_read(vcpu)))
4852 return 1;
4853 fallthrough;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004854 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004855 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
4856 kvm_run->ex.exception = ex_no;
4857 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004858 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004859 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004860 return 0;
4861}
4862
Andrea Arcangelif399e602019-11-04 17:59:58 -05004863static __always_inline int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004864{
Avi Kivity1165f5f2007-04-19 17:27:43 +03004865 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004866 return 1;
4867}
4868
Avi Kivity851ba692009-08-24 11:10:17 +03004869static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08004870{
Avi Kivity851ba692009-08-24 11:10:17 +03004871 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07004872 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08004873 return 0;
4874}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004875
Avi Kivity851ba692009-08-24 11:10:17 +03004876static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004877{
He, Qingbfdaab02007-09-12 14:18:28 +08004878 unsigned long exit_qualification;
Sean Christophersondca7f122018-03-08 08:57:27 -08004879 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02004880 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004881
Sean Christopherson5addc232020-04-15 13:34:53 -07004882 exit_qualification = vmx_get_exit_qual(vcpu);
Avi Kivity039576c2007-03-20 12:46:50 +02004883 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004884
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004885 ++vcpu->stat.io_exits;
4886
Sean Christopherson432baf62018-03-08 08:57:26 -08004887 if (string)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004888 return kvm_emulate_instruction(vcpu, 0);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004889
4890 port = exit_qualification >> 16;
4891 size = (exit_qualification & 7) + 1;
Sean Christopherson432baf62018-03-08 08:57:26 -08004892 in = (exit_qualification & 8) != 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004893
Sean Christophersondca7f122018-03-08 08:57:27 -08004894 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004895}
4896
Ingo Molnar102d8322007-02-19 14:37:47 +02004897static void
4898vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
4899{
4900 /*
4901 * Patch in the VMCALL instruction:
4902 */
4903 hypercall[0] = 0x0f;
4904 hypercall[1] = 0x01;
4905 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02004906}
4907
Guo Chao0fa06072012-06-28 15:16:19 +08004908/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004909static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
4910{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004911 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004912 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4913 unsigned long orig_val = val;
4914
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004915 /*
4916 * We get here when L2 changed cr0 in a way that did not change
4917 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004918 * but did change L0 shadowed bits. So we first calculate the
4919 * effective cr0 value that L1 would like to write into the
4920 * hardware. It consists of the L2-owned bits from the new
4921 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004922 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004923 val = (val & ~vmcs12->cr0_guest_host_mask) |
4924 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
4925
David Matlack38991522016-11-29 18:14:08 -08004926 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004927 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004928
4929 if (kvm_set_cr0(vcpu, val))
4930 return 1;
4931 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004932 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004933 } else {
4934 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08004935 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004936 return 1;
David Matlack38991522016-11-29 18:14:08 -08004937
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004938 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004939 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004940}
4941
4942static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
4943{
4944 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004945 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4946 unsigned long orig_val = val;
4947
4948 /* analogously to handle_set_cr0 */
4949 val = (val & ~vmcs12->cr4_guest_host_mask) |
4950 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
4951 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004952 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004953 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004954 return 0;
4955 } else
4956 return kvm_set_cr4(vcpu, val);
4957}
4958
Paolo Bonzini0367f202016-07-12 10:44:55 +02004959static int handle_desc(struct kvm_vcpu *vcpu)
4960{
4961 WARN_ON(!(vcpu->arch.cr4 & X86_CR4_UMIP));
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004962 return kvm_emulate_instruction(vcpu, 0);
Paolo Bonzini0367f202016-07-12 10:44:55 +02004963}
4964
Avi Kivity851ba692009-08-24 11:10:17 +03004965static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004966{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004967 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004968 int cr;
4969 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03004970 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08004971 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004972
Sean Christopherson5addc232020-04-15 13:34:53 -07004973 exit_qualification = vmx_get_exit_qual(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004974 cr = exit_qualification & 15;
4975 reg = (exit_qualification >> 8) & 15;
4976 switch ((exit_qualification >> 4) & 3) {
4977 case 0: /* mov to cr */
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07004978 val = kvm_register_read(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004979 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004980 switch (cr) {
4981 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004982 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004983 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004984 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08004985 WARN_ON_ONCE(enable_unrestricted_guest);
Sean Christopherson67369272021-07-02 15:04:25 -07004986
Avi Kivity23902182010-06-10 17:02:16 +03004987 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004988 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004989 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004990 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004991 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004992 case 8: {
4993 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03004994 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004995 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004996 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004997 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08004998 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004999 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08005000 return ret;
5001 /*
5002 * TODO: we might be squashing a
5003 * KVM_GUESTDBG_SINGLESTEP-triggered
5004 * KVM_EXIT_DEBUG here.
5005 */
Avi Kivity851ba692009-08-24 11:10:17 +03005006 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005007 return 0;
5008 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02005009 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005010 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03005011 case 2: /* clts */
Sean Christopherson67369272021-07-02 15:04:25 -07005012 KVM_BUG(1, vcpu->kvm, "Guest always owns CR0.TS");
5013 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005014 case 1: /*mov from cr*/
5015 switch (cr) {
5016 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08005017 WARN_ON_ONCE(enable_unrestricted_guest);
Sean Christopherson67369272021-07-02 15:04:25 -07005018
Avi Kivity9f8fe502010-12-05 17:30:00 +02005019 val = kvm_read_cr3(vcpu);
5020 kvm_register_write(vcpu, reg, val);
5021 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005022 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005023 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005024 val = kvm_get_cr8(vcpu);
5025 kvm_register_write(vcpu, reg, val);
5026 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005027 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005028 }
5029 break;
5030 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02005031 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02005032 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02005033 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005034
Kyle Huey6affcbe2016-11-29 12:40:40 -08005035 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005036 default:
5037 break;
5038 }
Avi Kivity851ba692009-08-24 11:10:17 +03005039 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03005040 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08005041 (int)(exit_qualification >> 4) & 3, cr);
5042 return 0;
5043}
5044
Avi Kivity851ba692009-08-24 11:10:17 +03005045static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005046{
He, Qingbfdaab02007-09-12 14:18:28 +08005047 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005048 int dr, dr7, reg;
Paolo Bonzini996ff542020-12-14 07:49:54 -05005049 int err = 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005050
Sean Christopherson5addc232020-04-15 13:34:53 -07005051 exit_qualification = vmx_get_exit_qual(vcpu);
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005052 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
5053
5054 /* First, if DR does not exist, trigger UD */
5055 if (!kvm_require_dr(vcpu, dr))
5056 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005057
Paolo Bonzini996ff542020-12-14 07:49:54 -05005058 if (kvm_x86_ops.get_cpl(vcpu) > 0)
5059 goto out;
5060
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005061 dr7 = vmcs_readl(GUEST_DR7);
5062 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005063 /*
5064 * As the vm-exit takes precedence over the debug trap, we
5065 * need to emulate the latter, either for the host or the
5066 * guest debugging itself.
5067 */
5068 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08005069 vcpu->run->debug.arch.dr6 = DR6_BD | DR6_ACTIVE_LOW;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005070 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02005071 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005072 vcpu->run->debug.arch.exception = DB_VECTOR;
5073 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005074 return 0;
5075 } else {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04005076 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BD);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005077 return 1;
5078 }
5079 }
5080
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005081 if (vcpu->guest_debug == 0) {
Sean Christopherson2183f562019-05-07 12:17:56 -07005082 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005083
5084 /*
5085 * No more DR vmexits; force a reload of the debug registers
5086 * and reenter on this instruction. The next vmexit will
5087 * retrieve the full state of the debug registers.
5088 */
5089 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
5090 return 1;
5091 }
5092
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005093 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
5094 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03005095 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005096
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05005097 kvm_get_dr(vcpu, dr, &val);
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005098 kvm_register_write(vcpu, reg, val);
Paolo Bonzini996ff542020-12-14 07:49:54 -05005099 err = 0;
5100 } else {
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07005101 err = kvm_set_dr(vcpu, dr, kvm_register_read(vcpu, reg));
Paolo Bonzini996ff542020-12-14 07:49:54 -05005102 }
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005103
Paolo Bonzini996ff542020-12-14 07:49:54 -05005104out:
5105 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005106}
5107
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005108static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
5109{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005110 get_debugreg(vcpu->arch.db[0], 0);
5111 get_debugreg(vcpu->arch.db[1], 1);
5112 get_debugreg(vcpu->arch.db[2], 2);
5113 get_debugreg(vcpu->arch.db[3], 3);
5114 get_debugreg(vcpu->arch.dr6, 6);
5115 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
5116
5117 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Sean Christopherson2183f562019-05-07 12:17:56 -07005118 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini1ccb6f92021-08-10 06:11:35 -04005119
5120 /*
5121 * exc_debug expects dr6 to be cleared after it runs, avoid that it sees
5122 * a stale dr6 from the guest.
5123 */
5124 set_debugreg(DR6_RESERVED, 6);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005125}
5126
Gleb Natapov020df072010-04-13 10:05:23 +03005127static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
5128{
5129 vmcs_writel(GUEST_DR7, val);
5130}
5131
Avi Kivity851ba692009-08-24 11:10:17 +03005132static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005133{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01005134 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005135 return 1;
5136}
5137
Avi Kivity851ba692009-08-24 11:10:17 +03005138static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005139{
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005140 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_INTR_WINDOW_EXITING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005141
Avi Kivity3842d132010-07-27 12:30:24 +03005142 kvm_make_request(KVM_REQ_EVENT, vcpu);
5143
Jan Kiszkaa26bf122008-09-26 09:30:45 +02005144 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005145 return 1;
5146}
5147
Avi Kivity851ba692009-08-24 11:10:17 +03005148static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03005149{
Sean Christopherson5addc232020-04-15 13:34:53 -07005150 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005151
5152 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005153 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005154}
5155
Avi Kivity851ba692009-08-24 11:10:17 +03005156static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005157{
Kevin Tian58fbbf22011-08-30 13:56:17 +03005158 if (likely(fasteoi)) {
Sean Christopherson5addc232020-04-15 13:34:53 -07005159 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03005160 int access_type, offset;
5161
5162 access_type = exit_qualification & APIC_ACCESS_TYPE;
5163 offset = exit_qualification & APIC_ACCESS_OFFSET;
5164 /*
5165 * Sane guest uses MOV to write EOI, with written value
5166 * not cared. So make a short-circuit here by avoiding
5167 * heavy instruction emulation.
5168 */
5169 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
5170 (offset == APIC_EOI)) {
5171 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005172 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03005173 }
5174 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005175 return kvm_emulate_instruction(vcpu, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08005176}
5177
Yang Zhangc7c9c562013-01-25 10:18:51 +08005178static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
5179{
Sean Christopherson5addc232020-04-15 13:34:53 -07005180 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005181 int vector = exit_qualification & 0xff;
5182
5183 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
5184 kvm_apic_set_eoi_accelerated(vcpu, vector);
5185 return 1;
5186}
5187
Yang Zhang83d4c282013-01-25 10:18:49 +08005188static int handle_apic_write(struct kvm_vcpu *vcpu)
5189{
Sean Christopherson5addc232020-04-15 13:34:53 -07005190 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Yang Zhang83d4c282013-01-25 10:18:49 +08005191 u32 offset = exit_qualification & 0xfff;
5192
5193 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
5194 kvm_apic_write_nodecode(vcpu, offset);
5195 return 1;
5196}
5197
Avi Kivity851ba692009-08-24 11:10:17 +03005198static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02005199{
Jan Kiszka60637aa2008-09-26 09:30:47 +02005200 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005201 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02005202 bool has_error_code = false;
5203 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02005204 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005205 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005206
5207 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005208 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005209 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02005210
Sean Christopherson5addc232020-04-15 13:34:53 -07005211 exit_qualification = vmx_get_exit_qual(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005212
5213 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005214 if (reason == TASK_SWITCH_GATE && idt_v) {
5215 switch (type) {
5216 case INTR_TYPE_NMI_INTR:
5217 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02005218 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005219 break;
5220 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005221 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005222 kvm_clear_interrupt_queue(vcpu);
5223 break;
5224 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02005225 if (vmx->idt_vectoring_info &
5226 VECTORING_INFO_DELIVER_CODE_MASK) {
5227 has_error_code = true;
5228 error_code =
5229 vmcs_read32(IDT_VECTORING_ERROR_CODE);
5230 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05005231 fallthrough;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005232 case INTR_TYPE_SOFT_EXCEPTION:
5233 kvm_clear_exception_queue(vcpu);
5234 break;
5235 default:
5236 break;
5237 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02005238 }
Izik Eidus37817f22008-03-24 23:14:53 +02005239 tss_selector = exit_qualification;
5240
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005241 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
5242 type != INTR_TYPE_EXT_INTR &&
5243 type != INTR_TYPE_NMI_INTR))
Sean Christopherson1957aa62019-08-27 14:40:39 -07005244 WARN_ON(!skip_emulated_instruction(vcpu));
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005245
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005246 /*
5247 * TODO: What about debug traps on tss switch?
5248 * Are we supposed to inject them and update dr6?
5249 */
Sean Christopherson10517782019-08-27 14:40:35 -07005250 return kvm_task_switch(vcpu, tss_selector,
5251 type == INTR_TYPE_SOFT_INTR ? idt_index : -1,
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005252 reason, has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02005253}
5254
Avi Kivity851ba692009-08-24 11:10:17 +03005255static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08005256{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005257 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08005258 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01005259 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08005260
Sean Christopherson5addc232020-04-15 13:34:53 -07005261 exit_qualification = vmx_get_exit_qual(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08005262
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005263 /*
5264 * EPT violation happened while executing iret from NMI,
5265 * "blocked by NMI" bit has to be set before next VM entry.
5266 * There are errata that may cause this bit to not be set:
5267 * AAK134, BY25.
5268 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005269 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005270 enable_vnmi &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005271 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005272 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
5273
Sheng Yang14394422008-04-28 12:24:45 +08005274 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005275 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005276
Junaid Shahid27959a42016-12-06 16:46:10 -08005277 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005278 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08005279 ? PFERR_USER_MASK : 0;
5280 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005281 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08005282 ? PFERR_WRITE_MASK : 0;
5283 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005284 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08005285 ? PFERR_FETCH_MASK : 0;
5286 /* ept page table entry is present? */
5287 error_code |= (exit_qualification &
5288 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
5289 EPT_VIOLATION_EXECUTABLE))
5290 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005291
Isaku Yamahata108356022021-04-22 17:22:29 -07005292 error_code |= (exit_qualification & EPT_VIOLATION_GVA_TRANSLATED) != 0 ?
Paolo Bonzinieebed242016-11-28 14:39:58 +01005293 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03005294
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005295 vcpu->arch.exit_qualification = exit_qualification;
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02005296
5297 /*
5298 * Check that the GPA doesn't exceed physical memory limits, as that is
5299 * a guest page fault. We have to emulate the instruction here, because
5300 * if the illegal address is that of a paging structure, then
5301 * EPT_VIOLATION_ACC_WRITE bit is set. Alternatively, if supported we
5302 * would also use advanced VM-exit information for EPT violations to
5303 * reconstruct the page fault error code.
5304 */
Paolo Bonzinic0623f52020-10-21 18:05:58 -04005305 if (unlikely(allow_smaller_maxphyaddr && kvm_vcpu_is_illegal_gpa(vcpu, gpa)))
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02005306 return kvm_emulate_instruction(vcpu, 0);
5307
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005308 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08005309}
5310
Avi Kivity851ba692009-08-24 11:10:17 +03005311static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005312{
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005313 gpa_t gpa;
5314
Sean Christopherson3c0c2ad2021-04-12 16:21:37 +12005315 if (!vmx_can_emulate_instruction(vcpu, NULL, 0))
5316 return 1;
5317
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005318 /*
5319 * A nested guest cannot optimize MMIO vmexits, because we have an
5320 * nGPA here instead of the required GPA.
5321 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005322 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005323 if (!is_guest_mode(vcpu) &&
5324 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08005325 trace_kvm_fast_mmio(gpa);
Sean Christopherson1957aa62019-08-27 14:40:39 -07005326 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03005327 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005328
Sean Christophersonc75d0edc2018-03-29 14:48:31 -07005329 return kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005330}
5331
Avi Kivity851ba692009-08-24 11:10:17 +03005332static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08005333{
Sean Christopherson67369272021-07-02 15:04:25 -07005334 if (KVM_BUG_ON(!enable_vnmi, vcpu->kvm))
5335 return -EIO;
5336
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08005337 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_NMI_WINDOW_EXITING);
Sheng Yangf08864b2008-05-15 18:23:25 +08005338 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03005339 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08005340
5341 return 1;
5342}
5343
Mohammed Gamal80ced182009-09-01 12:48:18 +02005344static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005345{
Avi Kivity8b3079a2009-01-05 12:10:54 +02005346 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity49e9d552010-09-19 14:34:08 +02005347 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03005348 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02005349
Sean Christopherson2183f562019-05-07 12:17:56 -07005350 intr_window_requested = exec_controls_get(vmx) &
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005351 CPU_BASED_INTR_WINDOW_EXITING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005352
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01005353 while (vmx->emulation_required && count-- != 0) {
Sean Christophersondb438592020-04-22 19:25:48 -07005354 if (intr_window_requested && !vmx_interrupt_blocked(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02005355 return handle_interrupt_window(&vmx->vcpu);
5356
Radim Krčmář72875d82017-04-26 22:32:19 +02005357 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03005358 return 1;
5359
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005360 if (!kvm_emulate_instruction(vcpu, 0))
Sean Christopherson8fff2712019-08-27 14:40:37 -07005361 return 0;
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005362
Sean Christophersonadd5ff72018-03-23 09:34:00 -07005363 if (vmx->emulation_required && !vmx->rmode.vm86_active &&
Sean Christopherson8fff2712019-08-27 14:40:37 -07005364 vcpu->arch.exception.pending) {
David Edmondsone615e352021-09-20 11:37:36 +01005365 kvm_prepare_emulation_failure_exit(vcpu);
Sean Christopherson8fff2712019-08-27 14:40:37 -07005366 return 0;
5367 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005368
Gleb Natapov8d76c492013-05-08 18:38:44 +03005369 if (vcpu->arch.halt_request) {
5370 vcpu->arch.halt_request = 0;
Sean Christopherson8fff2712019-08-27 14:40:37 -07005371 return kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03005372 }
5373
Sean Christopherson8fff2712019-08-27 14:40:37 -07005374 /*
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02005375 * Note, return 1 and not 0, vcpu_run() will invoke
5376 * xfer_to_guest_mode() which will create a proper return
5377 * code.
Sean Christopherson8fff2712019-08-27 14:40:37 -07005378 */
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02005379 if (__xfer_to_guest_mode_work_pending())
Sean Christopherson8fff2712019-08-27 14:40:37 -07005380 return 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005381 }
5382
Sean Christopherson8fff2712019-08-27 14:40:37 -07005383 return 1;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005384}
5385
5386static void grow_ple_window(struct kvm_vcpu *vcpu)
5387{
5388 struct vcpu_vmx *vmx = to_vmx(vcpu);
Peter Xuc5c5d6f2019-09-06 10:17:21 +08005389 unsigned int old = vmx->ple_window;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005390
Babu Mogerc8e88712018-03-16 16:37:24 -04005391 vmx->ple_window = __grow_ple_window(old, ple_window,
5392 ple_window_grow,
5393 ple_window_max);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005394
Peter Xu4f75bcc2019-09-06 10:17:22 +08005395 if (vmx->ple_window != old) {
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005396 vmx->ple_window_dirty = true;
Peter Xu4f75bcc2019-09-06 10:17:22 +08005397 trace_kvm_ple_window_update(vcpu->vcpu_id,
5398 vmx->ple_window, old);
5399 }
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005400}
5401
5402static void shrink_ple_window(struct kvm_vcpu *vcpu)
5403{
5404 struct vcpu_vmx *vmx = to_vmx(vcpu);
Peter Xuc5c5d6f2019-09-06 10:17:21 +08005405 unsigned int old = vmx->ple_window;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005406
Babu Mogerc8e88712018-03-16 16:37:24 -04005407 vmx->ple_window = __shrink_ple_window(old, ple_window,
5408 ple_window_shrink,
5409 ple_window);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005410
Peter Xu4f75bcc2019-09-06 10:17:22 +08005411 if (vmx->ple_window != old) {
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005412 vmx->ple_window_dirty = true;
Peter Xu4f75bcc2019-09-06 10:17:22 +08005413 trace_kvm_ple_window_update(vcpu->vcpu_id,
5414 vmx->ple_window, old);
5415 }
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005416}
5417
Avi Kivity6aa8b732006-12-10 02:21:36 -08005418/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005419 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
5420 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
5421 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03005422static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005423{
Wanpeng Lib31c1142018-03-12 04:53:04 -07005424 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005425 grow_ple_window(vcpu);
5426
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08005427 /*
5428 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
5429 * VM-execution control is ignored if CPL > 0. OTOH, KVM
5430 * never set PAUSE_EXITING and just set PLE if supported,
5431 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
5432 */
5433 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005434 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005435}
5436
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005437static int handle_monitor_trap(struct kvm_vcpu *vcpu)
5438{
5439 return 1;
5440}
5441
Junaid Shahideb4b2482018-06-27 14:59:14 -07005442static int handle_invpcid(struct kvm_vcpu *vcpu)
5443{
5444 u32 vmx_instruction_info;
5445 unsigned long type;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005446 gva_t gva;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005447 struct {
5448 u64 pcid;
5449 u64 gla;
5450 } operand;
Vipin Sharma329bd562021-11-09 17:44:25 +00005451 int gpr_index;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005452
5453 if (!guest_cpuid_has(vcpu, X86_FEATURE_INVPCID)) {
5454 kvm_queue_exception(vcpu, UD_VECTOR);
5455 return 1;
5456 }
5457
5458 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Vipin Sharma329bd562021-11-09 17:44:25 +00005459 gpr_index = vmx_get_instr_info_reg2(vmx_instruction_info);
5460 type = kvm_register_read(vcpu, gpr_index);
Junaid Shahideb4b2482018-06-27 14:59:14 -07005461
5462 /* According to the Intel instruction reference, the memory operand
5463 * is read even if it isn't needed (e.g., for type==all)
5464 */
Sean Christopherson5addc232020-04-15 13:34:53 -07005465 if (get_vmx_mem_address(vcpu, vmx_get_exit_qual(vcpu),
Eugene Korenevskyfdb28612019-06-06 00:19:16 +03005466 vmx_instruction_info, false,
5467 sizeof(operand), &gva))
Junaid Shahideb4b2482018-06-27 14:59:14 -07005468 return 1;
5469
Babu Moger97150922020-09-11 14:29:12 -05005470 return kvm_handle_invpcid(vcpu, type, gva);
Junaid Shahideb4b2482018-06-27 14:59:14 -07005471}
5472
Kai Huang843e4332015-01-28 10:54:28 +08005473static int handle_pml_full(struct kvm_vcpu *vcpu)
5474{
5475 unsigned long exit_qualification;
5476
5477 trace_kvm_pml_full(vcpu->vcpu_id);
5478
Sean Christopherson5addc232020-04-15 13:34:53 -07005479 exit_qualification = vmx_get_exit_qual(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005480
5481 /*
5482 * PML buffer FULL happened while executing iret from NMI,
5483 * "blocked by NMI" bit has to be set before next VM entry.
5484 */
5485 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005486 enable_vnmi &&
Kai Huang843e4332015-01-28 10:54:28 +08005487 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
5488 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5489 GUEST_INTR_STATE_NMI);
5490
5491 /*
5492 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
5493 * here.., and there's no userspace involvement needed for PML.
5494 */
5495 return 1;
5496}
5497
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005498static fastpath_t handle_fastpath_preemption_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07005499{
Sean Christopherson804939e2019-05-07 12:18:05 -07005500 struct vcpu_vmx *vmx = to_vmx(vcpu);
5501
5502 if (!vmx->req_immediate_exit &&
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005503 !unlikely(vmx->loaded_vmcs->hv_timer_soft_disabled)) {
Sean Christophersond264ee02018-08-27 15:21:12 -07005504 kvm_lapic_expired_hv_timer(vcpu);
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005505 return EXIT_FASTPATH_REENTER_GUEST;
5506 }
Sean Christopherson804939e2019-05-07 12:18:05 -07005507
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005508 return EXIT_FASTPATH_NONE;
5509}
5510
5511static int handle_preemption_timer(struct kvm_vcpu *vcpu)
5512{
5513 handle_fastpath_preemption_timer(vcpu);
Yunhong Jiang64672c92016-06-13 14:19:59 -07005514 return 1;
5515}
5516
Sean Christophersone4027cf2018-12-03 13:53:12 -08005517/*
5518 * When nested=0, all VMX instruction VM Exits filter here. The handlers
5519 * are overwritten by nested_vmx_setup() when nested=1.
5520 */
5521static int handle_vmx_instruction(struct kvm_vcpu *vcpu)
5522{
5523 kvm_queue_exception(vcpu, UD_VECTOR);
5524 return 1;
5525}
5526
Sean Christopherson9798adb2021-04-12 16:21:38 +12005527#ifndef CONFIG_X86_SGX_KVM
Sean Christopherson0b665d32018-08-14 09:33:34 -07005528static int handle_encls(struct kvm_vcpu *vcpu)
5529{
5530 /*
Sean Christopherson9798adb2021-04-12 16:21:38 +12005531 * SGX virtualization is disabled. There is no software enable bit for
5532 * SGX, so KVM intercepts all ENCLS leafs and injects a #UD to prevent
5533 * the guest from executing ENCLS (when SGX is supported by hardware).
Sean Christopherson0b665d32018-08-14 09:33:34 -07005534 */
5535 kvm_queue_exception(vcpu, UD_VECTOR);
5536 return 1;
5537}
Sean Christopherson9798adb2021-04-12 16:21:38 +12005538#endif /* CONFIG_X86_SGX_KVM */
Sean Christopherson0b665d32018-08-14 09:33:34 -07005539
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005540static int handle_bus_lock_vmexit(struct kvm_vcpu *vcpu)
5541{
Hao Xiangd61863c2021-10-15 19:59:21 +08005542 /*
5543 * Hardware may or may not set the BUS_LOCK_DETECTED flag on BUS_LOCK
5544 * VM-Exits. Unconditionally set the flag here and leave the handling to
5545 * vmx_handle_exit().
5546 */
5547 to_vmx(vcpu)->exit_reason.bus_lock_detected = true;
5548 return 1;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005549}
5550
Nadav Har'El0140cae2011-05-25 23:06:28 +03005551/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005552 * The exit handlers return 1 if the exit was handled fully and guest execution
5553 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
5554 * to be done to userspace and return 0.
5555 */
Sean Christophersone4027cf2018-12-03 13:53:12 -08005556static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Sean Christopherson95b5a482019-04-19 22:50:59 -07005557 [EXIT_REASON_EXCEPTION_NMI] = handle_exception_nmi,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005558 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08005559 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08005560 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005561 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005562 [EXIT_REASON_CR_ACCESS] = handle_cr,
5563 [EXIT_REASON_DR_ACCESS] = handle_dr,
Andrea Arcangelif399e602019-11-04 17:59:58 -05005564 [EXIT_REASON_CPUID] = kvm_emulate_cpuid,
5565 [EXIT_REASON_MSR_READ] = kvm_emulate_rdmsr,
5566 [EXIT_REASON_MSR_WRITE] = kvm_emulate_wrmsr,
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005567 [EXIT_REASON_INTERRUPT_WINDOW] = handle_interrupt_window,
Andrea Arcangelif399e602019-11-04 17:59:58 -05005568 [EXIT_REASON_HLT] = kvm_emulate_halt,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005569 [EXIT_REASON_INVD] = kvm_emulate_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03005570 [EXIT_REASON_INVLPG] = handle_invlpg,
Sean Christophersonc483c452021-02-04 16:57:48 -08005571 [EXIT_REASON_RDPMC] = kvm_emulate_rdpmc,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005572 [EXIT_REASON_VMCALL] = kvm_emulate_hypercall,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005573 [EXIT_REASON_VMCLEAR] = handle_vmx_instruction,
5574 [EXIT_REASON_VMLAUNCH] = handle_vmx_instruction,
5575 [EXIT_REASON_VMPTRLD] = handle_vmx_instruction,
5576 [EXIT_REASON_VMPTRST] = handle_vmx_instruction,
5577 [EXIT_REASON_VMREAD] = handle_vmx_instruction,
5578 [EXIT_REASON_VMRESUME] = handle_vmx_instruction,
5579 [EXIT_REASON_VMWRITE] = handle_vmx_instruction,
5580 [EXIT_REASON_VMOFF] = handle_vmx_instruction,
5581 [EXIT_REASON_VMON] = handle_vmx_instruction,
Sheng Yangf78e0e22007-10-29 09:40:42 +08005582 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
5583 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08005584 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08005585 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005586 [EXIT_REASON_WBINVD] = kvm_emulate_wbinvd,
Sean Christopherson92f98952021-02-04 16:57:46 -08005587 [EXIT_REASON_XSETBV] = kvm_emulate_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02005588 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08005589 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Paolo Bonzini0367f202016-07-12 10:44:55 +02005590 [EXIT_REASON_GDTR_IDTR] = handle_desc,
5591 [EXIT_REASON_LDTR_TR] = handle_desc,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005592 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
5593 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005594 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005595 [EXIT_REASON_MWAIT_INSTRUCTION] = kvm_emulate_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005596 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005597 [EXIT_REASON_MONITOR_INSTRUCTION] = kvm_emulate_monitor,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005598 [EXIT_REASON_INVEPT] = handle_vmx_instruction,
5599 [EXIT_REASON_INVVPID] = handle_vmx_instruction,
Sean Christopherson5ff3a352021-02-04 16:57:47 -08005600 [EXIT_REASON_RDRAND] = kvm_handle_invalid_op,
5601 [EXIT_REASON_RDSEED] = kvm_handle_invalid_op,
Kai Huang843e4332015-01-28 10:54:28 +08005602 [EXIT_REASON_PML_FULL] = handle_pml_full,
Junaid Shahideb4b2482018-06-27 14:59:14 -07005603 [EXIT_REASON_INVPCID] = handle_invpcid,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005604 [EXIT_REASON_VMFUNC] = handle_vmx_instruction,
Yunhong Jiang64672c92016-06-13 14:19:59 -07005605 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Sean Christopherson0b665d32018-08-14 09:33:34 -07005606 [EXIT_REASON_ENCLS] = handle_encls,
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005607 [EXIT_REASON_BUS_LOCK] = handle_bus_lock_vmexit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005608};
5609
5610static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04005611 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005612
David Edmondson0a62a032021-09-20 11:37:35 +01005613static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u32 *reason,
5614 u64 *info1, u64 *info2,
Sean Christopherson235ba742020-09-23 13:13:46 -07005615 u32 *intr_info, u32 *error_code)
Avi Kivity586f9602010-11-18 13:09:54 +02005616{
Sean Christopherson235ba742020-09-23 13:13:46 -07005617 struct vcpu_vmx *vmx = to_vmx(vcpu);
5618
David Edmondson0a62a032021-09-20 11:37:35 +01005619 *reason = vmx->exit_reason.full;
Sean Christopherson5addc232020-04-15 13:34:53 -07005620 *info1 = vmx_get_exit_qual(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08005621 if (!(vmx->exit_reason.failed_vmentry)) {
Sean Christopherson235ba742020-09-23 13:13:46 -07005622 *info2 = vmx->idt_vectoring_info;
5623 *intr_info = vmx_get_intr_info(vcpu);
5624 if (is_exception_with_error_code(*intr_info))
5625 *error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
5626 else
5627 *error_code = 0;
5628 } else {
5629 *info2 = 0;
5630 *intr_info = 0;
5631 *error_code = 0;
5632 }
Avi Kivity586f9602010-11-18 13:09:54 +02005633}
5634
Kai Huanga3eaa862015-11-04 13:46:05 +08005635static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08005636{
Kai Huanga3eaa862015-11-04 13:46:05 +08005637 if (vmx->pml_pg) {
5638 __free_page(vmx->pml_pg);
5639 vmx->pml_pg = NULL;
5640 }
Kai Huang843e4332015-01-28 10:54:28 +08005641}
5642
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005643static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08005644{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005645 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005646 u64 *pml_buf;
5647 u16 pml_idx;
5648
5649 pml_idx = vmcs_read16(GUEST_PML_INDEX);
5650
5651 /* Do nothing if PML buffer is empty */
5652 if (pml_idx == (PML_ENTITY_NUM - 1))
5653 return;
5654
5655 /* PML index always points to next available PML buffer entity */
5656 if (pml_idx >= PML_ENTITY_NUM)
5657 pml_idx = 0;
5658 else
5659 pml_idx++;
5660
5661 pml_buf = page_address(vmx->pml_pg);
5662 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
5663 u64 gpa;
5664
5665 gpa = pml_buf[pml_idx];
5666 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005667 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08005668 }
5669
5670 /* reset PML index */
5671 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5672}
5673
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005674static void vmx_dump_sel(char *name, uint32_t sel)
5675{
5676 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05005677 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005678 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
5679 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
5680 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
5681}
5682
5683static void vmx_dump_dtsel(char *name, uint32_t limit)
5684{
5685 pr_err("%s limit=0x%08x, base=0x%016lx\n",
5686 name, vmcs_read32(limit),
5687 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
5688}
5689
David Edmondson84860392021-03-18 12:08:41 +00005690static void vmx_dump_msrs(char *name, struct vmx_msrs *m)
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005691{
David Edmondson84860392021-03-18 12:08:41 +00005692 unsigned int i;
5693 struct vmx_msr_entry *e;
5694
5695 pr_err("MSR %s:\n", name);
5696 for (i = 0, e = m->val; i < m->nr; ++i, ++e)
5697 pr_err(" %2d: msr=0x%08x value=0x%016llx\n", i, e->index, e->value);
5698}
5699
David Edmondson0702a3c2021-03-18 12:08:40 +00005700void dump_vmcs(struct kvm_vcpu *vcpu)
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005701{
David Edmondson0702a3c2021-03-18 12:08:40 +00005702 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005703 u32 vmentry_ctl, vmexit_ctl;
5704 u32 cpu_based_exec_ctrl, pin_based_exec_ctrl, secondary_exec_control;
5705 unsigned long cr4;
David Edmondson0702a3c2021-03-18 12:08:40 +00005706 int efer_slot;
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005707
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005708 if (!dump_invalid_vmcs) {
5709 pr_warn_ratelimited("set kvm_intel.dump_invalid_vmcs=1 to dump internal KVM state.\n");
5710 return;
5711 }
5712
5713 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
5714 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
5715 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5716 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
5717 cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005718 secondary_exec_control = 0;
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005719 if (cpu_has_secondary_exec_ctrls())
5720 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
5721
Jim Mattson18f63b12021-06-21 15:16:48 -07005722 pr_err("VMCS %p, last attempted VM-entry on CPU %d\n",
5723 vmx->loaded_vmcs->vmcs, vcpu->arch.last_vmentry_cpu);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005724 pr_err("*** Guest State ***\n");
5725 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5726 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
5727 vmcs_readl(CR0_GUEST_HOST_MASK));
5728 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5729 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
5730 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
David Edmondsond9e46d32021-03-18 12:08:37 +00005731 if (cpu_has_vmx_ept()) {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005732 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
5733 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
5734 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
5735 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005736 }
5737 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
5738 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
5739 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
5740 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
5741 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5742 vmcs_readl(GUEST_SYSENTER_ESP),
5743 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
5744 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
5745 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
5746 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
5747 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
5748 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
5749 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
5750 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
5751 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
5752 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
5753 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
David Edmondson0702a3c2021-03-18 12:08:40 +00005754 efer_slot = vmx_find_loadstore_msr_slot(&vmx->msr_autoload.guest, MSR_EFER);
David Edmondson5518da62021-03-18 12:08:39 +00005755 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_EFER)
David Edmondson699e1b22021-03-18 12:08:38 +00005756 pr_err("EFER= 0x%016llx\n", vmcs_read64(GUEST_IA32_EFER));
David Edmondson0702a3c2021-03-18 12:08:40 +00005757 else if (efer_slot >= 0)
5758 pr_err("EFER= 0x%016llx (autoload)\n",
5759 vmx->msr_autoload.guest.val[efer_slot].value);
5760 else if (vmentry_ctl & VM_ENTRY_IA32E_MODE)
5761 pr_err("EFER= 0x%016llx (effective)\n",
5762 vcpu->arch.efer | (EFER_LMA | EFER_LME));
5763 else
5764 pr_err("EFER= 0x%016llx (effective)\n",
5765 vcpu->arch.efer & ~(EFER_LMA | EFER_LME));
David Edmondson5518da62021-03-18 12:08:39 +00005766 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PAT)
David Edmondson699e1b22021-03-18 12:08:38 +00005767 pr_err("PAT = 0x%016llx\n", vmcs_read64(GUEST_IA32_PAT));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005768 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
5769 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005770 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005771 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005772 vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005773 pr_err("PerfGlobCtl = 0x%016llx\n",
5774 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005775 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005776 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005777 pr_err("Interruptibility = %08x ActivityState = %08x\n",
5778 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
5779 vmcs_read32(GUEST_ACTIVITY_STATE));
5780 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
5781 pr_err("InterruptStatus = %04x\n",
5782 vmcs_read16(GUEST_INTR_STATUS));
David Edmondson84860392021-03-18 12:08:41 +00005783 if (vmcs_read32(VM_ENTRY_MSR_LOAD_COUNT) > 0)
5784 vmx_dump_msrs("guest autoload", &vmx->msr_autoload.guest);
5785 if (vmcs_read32(VM_EXIT_MSR_STORE_COUNT) > 0)
5786 vmx_dump_msrs("guest autostore", &vmx->msr_autostore.guest);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005787
5788 pr_err("*** Host State ***\n");
5789 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
5790 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
5791 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
5792 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
5793 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
5794 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
5795 vmcs_read16(HOST_TR_SELECTOR));
5796 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
5797 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
5798 vmcs_readl(HOST_TR_BASE));
5799 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
5800 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
5801 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
5802 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
5803 vmcs_readl(HOST_CR4));
5804 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5805 vmcs_readl(HOST_IA32_SYSENTER_ESP),
5806 vmcs_read32(HOST_IA32_SYSENTER_CS),
5807 vmcs_readl(HOST_IA32_SYSENTER_EIP));
David Edmondson699e1b22021-03-18 12:08:38 +00005808 if (vmexit_ctl & VM_EXIT_LOAD_IA32_EFER)
5809 pr_err("EFER= 0x%016llx\n", vmcs_read64(HOST_IA32_EFER));
5810 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PAT)
5811 pr_err("PAT = 0x%016llx\n", vmcs_read64(HOST_IA32_PAT));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005812 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005813 vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005814 pr_err("PerfGlobCtl = 0x%016llx\n",
5815 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
David Edmondson84860392021-03-18 12:08:41 +00005816 if (vmcs_read32(VM_EXIT_MSR_LOAD_COUNT) > 0)
5817 vmx_dump_msrs("host autoload", &vmx->msr_autoload.host);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005818
5819 pr_err("*** Control State ***\n");
5820 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
5821 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
5822 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
5823 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
5824 vmcs_read32(EXCEPTION_BITMAP),
5825 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
5826 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
5827 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
5828 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
5829 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
5830 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
5831 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
5832 vmcs_read32(VM_EXIT_INTR_INFO),
5833 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
5834 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
5835 pr_err(" reason=%08x qualification=%016lx\n",
5836 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
5837 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
5838 vmcs_read32(IDT_VECTORING_INFO_FIELD),
5839 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005840 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08005841 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005842 pr_err("TSC Multiplier = 0x%016llx\n",
5843 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005844 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW) {
5845 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
5846 u16 status = vmcs_read16(GUEST_INTR_STATUS);
5847 pr_err("SVI|RVI = %02x|%02x ", status >> 8, status & 0xff);
5848 }
Dan Carpenterd6a85c32019-04-24 13:15:08 +03005849 pr_cont("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005850 if (secondary_exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
5851 pr_err("APIC-access addr = 0x%016llx ", vmcs_read64(APIC_ACCESS_ADDR));
Dan Carpenterd6a85c32019-04-24 13:15:08 +03005852 pr_cont("virt-APIC addr = 0x%016llx\n", vmcs_read64(VIRTUAL_APIC_PAGE_ADDR));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005853 }
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005854 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
5855 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
5856 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005857 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005858 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
5859 pr_err("PLE Gap=%08x Window=%08x\n",
5860 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
5861 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
5862 pr_err("Virtual processor ID = 0x%04x\n",
5863 vmcs_read16(VIRTUAL_PROCESSOR_ID));
5864}
5865
Avi Kivity6aa8b732006-12-10 02:21:36 -08005866/*
5867 * The guest has exited. See if we can fix it or if we need userspace
5868 * assistance.
5869 */
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005870static int __vmx_handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005871{
Avi Kivity29bd8a72007-09-10 17:27:03 +03005872 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08005873 union vmx_exit_reason exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02005874 u32 vectoring_info = vmx->idt_vectoring_info;
Sean Christopherson8e533242020-11-06 17:03:12 +08005875 u16 exit_handler_index;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005876
Kai Huang843e4332015-01-28 10:54:28 +08005877 /*
5878 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
5879 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
5880 * querying dirty_bitmap, we only need to kick all vcpus out of guest
5881 * mode as if vcpus is in root mode, the PML buffer must has been
Sean Christophersonc3bb9a22021-02-12 16:50:07 -08005882 * flushed already. Note, PML is never enabled in hardware while
5883 * running L2.
Kai Huang843e4332015-01-28 10:54:28 +08005884 */
Sean Christophersonc3bb9a22021-02-12 16:50:07 -08005885 if (enable_pml && !is_guest_mode(vcpu))
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005886 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005887
Sean Christophersondb438592020-04-22 19:25:48 -07005888 /*
5889 * We should never reach this point with a pending nested VM-Enter, and
5890 * more specifically emulation of L2 due to invalid guest state (see
5891 * below) should never happen as that means we incorrectly allowed a
5892 * nested VM-Enter with an invalid vmcs12.
5893 */
Sean Christopherson67369272021-07-02 15:04:25 -07005894 if (KVM_BUG_ON(vmx->nested.nested_run_pending, vcpu->kvm))
5895 return -EIO;
Sean Christophersondb438592020-04-22 19:25:48 -07005896
Mohammed Gamal80ced182009-09-01 12:48:18 +02005897 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02005898 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02005899 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005900
Paolo Bonzini96b100c2020-03-17 18:32:50 +01005901 if (is_guest_mode(vcpu)) {
5902 /*
Sean Christophersonc3bb9a22021-02-12 16:50:07 -08005903 * PML is never enabled when running L2, bail immediately if a
5904 * PML full exit occurs as something is horribly wrong.
5905 */
5906 if (exit_reason.basic == EXIT_REASON_PML_FULL)
5907 goto unexpected_vmexit;
5908
5909 /*
Paolo Bonzini96b100c2020-03-17 18:32:50 +01005910 * The host physical addresses of some pages of guest memory
5911 * are loaded into the vmcs02 (e.g. vmcs12's Virtual APIC
5912 * Page). The CPU may write to these pages via their host
5913 * physical address while L2 is running, bypassing any
5914 * address-translation-based dirty tracking (e.g. EPT write
5915 * protection).
5916 *
5917 * Mark them dirty on every exit from L2 to prevent them from
5918 * getting out of sync with dirty tracking.
5919 */
5920 nested_mark_vmcs12_pages_dirty(vcpu);
5921
Sean Christophersonf47baae2020-04-15 10:55:16 -07005922 if (nested_vmx_reflect_vmexit(vcpu))
Sean Christopherson789afc52020-04-15 10:55:10 -07005923 return 1;
Paolo Bonzini96b100c2020-03-17 18:32:50 +01005924 }
Nadav Har'El644d7112011-05-25 23:12:35 +03005925
Sean Christopherson8e533242020-11-06 17:03:12 +08005926 if (exit_reason.failed_vmentry) {
David Edmondson0702a3c2021-03-18 12:08:40 +00005927 dump_vmcs(vcpu);
Mohammed Gamal51207022010-05-31 22:40:54 +03005928 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5929 vcpu->run->fail_entry.hardware_entry_failure_reason
Sean Christopherson8e533242020-11-06 17:03:12 +08005930 = exit_reason.full;
Jim Mattson8a14fe42020-06-03 16:56:22 -07005931 vcpu->run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Mohammed Gamal51207022010-05-31 22:40:54 +03005932 return 0;
5933 }
5934
Avi Kivity29bd8a72007-09-10 17:27:03 +03005935 if (unlikely(vmx->fail)) {
David Edmondson0702a3c2021-03-18 12:08:40 +00005936 dump_vmcs(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005937 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5938 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03005939 = vmcs_read32(VM_INSTRUCTION_ERROR);
Jim Mattson8a14fe42020-06-03 16:56:22 -07005940 vcpu->run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005941 return 0;
5942 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005943
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005944 /*
5945 * Note:
5946 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
5947 * delivery event since it indicates guest is accessing MMIO.
5948 * The vm-exit can be triggered again after return to guest that
5949 * will cause infinite loop.
5950 */
Mike Dayd77c26f2007-10-08 09:02:08 -04005951 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sean Christopherson8e533242020-11-06 17:03:12 +08005952 (exit_reason.basic != EXIT_REASON_EXCEPTION_NMI &&
5953 exit_reason.basic != EXIT_REASON_EPT_VIOLATION &&
5954 exit_reason.basic != EXIT_REASON_PML_FULL &&
5955 exit_reason.basic != EXIT_REASON_APIC_ACCESS &&
5956 exit_reason.basic != EXIT_REASON_TASK_SWITCH)) {
Reiji Watanabe04c4f2e2021-04-13 15:47:40 +00005957 int ndata = 3;
5958
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005959 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5960 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005961 vcpu->run->internal.data[0] = vectoring_info;
Sean Christopherson8e533242020-11-06 17:03:12 +08005962 vcpu->run->internal.data[1] = exit_reason.full;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02005963 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
Sean Christopherson8e533242020-11-06 17:03:12 +08005964 if (exit_reason.basic == EXIT_REASON_EPT_MISCONFIG) {
Reiji Watanabe04c4f2e2021-04-13 15:47:40 +00005965 vcpu->run->internal.data[ndata++] =
Paolo Bonzini70bcd702017-07-05 12:38:06 +02005966 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
5967 }
Reiji Watanabe04c4f2e2021-04-13 15:47:40 +00005968 vcpu->run->internal.data[ndata++] = vcpu->arch.last_vmentry_cpu;
5969 vcpu->run->internal.ndata = ndata;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005970 return 0;
5971 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005972
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005973 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01005974 vmx->loaded_vmcs->soft_vnmi_blocked)) {
Sean Christophersondb438592020-04-22 19:25:48 -07005975 if (!vmx_interrupt_blocked(vcpu)) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01005976 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
5977 } else if (vmx->loaded_vmcs->vnmi_blocked_time > 1000000000LL &&
5978 vcpu->arch.nmi_pending) {
5979 /*
5980 * This CPU don't support us in finding the end of an
5981 * NMI-blocked window if the guest runs with IRQs
5982 * disabled. So we pull the trigger after 1 s of
5983 * futile waiting, but inform the user about this.
5984 */
5985 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
5986 "state on VCPU %d after 1 s timeout\n",
5987 __func__, vcpu->vcpu_id);
5988 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
5989 }
5990 }
5991
Wanpeng Li404d5d72020-04-28 14:23:25 +08005992 if (exit_fastpath != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08005993 return 1;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08005994
Sean Christopherson8e533242020-11-06 17:03:12 +08005995 if (exit_reason.basic >= kvm_vmx_max_exit_handlers)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08005996 goto unexpected_vmexit;
5997#ifdef CONFIG_RETPOLINE
Sean Christopherson8e533242020-11-06 17:03:12 +08005998 if (exit_reason.basic == EXIT_REASON_MSR_WRITE)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08005999 return kvm_emulate_wrmsr(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006000 else if (exit_reason.basic == EXIT_REASON_PREEMPTION_TIMER)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006001 return handle_preemption_timer(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006002 else if (exit_reason.basic == EXIT_REASON_INTERRUPT_WINDOW)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006003 return handle_interrupt_window(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006004 else if (exit_reason.basic == EXIT_REASON_EXTERNAL_INTERRUPT)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006005 return handle_external_interrupt(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006006 else if (exit_reason.basic == EXIT_REASON_HLT)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006007 return kvm_emulate_halt(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006008 else if (exit_reason.basic == EXIT_REASON_EPT_MISCONFIG)
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006009 return handle_ept_misconfig(vcpu);
6010#endif
6011
Sean Christopherson8e533242020-11-06 17:03:12 +08006012 exit_handler_index = array_index_nospec((u16)exit_reason.basic,
6013 kvm_vmx_max_exit_handlers);
6014 if (!kvm_vmx_exit_handlers[exit_handler_index])
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006015 goto unexpected_vmexit;
6016
Sean Christopherson8e533242020-11-06 17:03:12 +08006017 return kvm_vmx_exit_handlers[exit_handler_index](vcpu);
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006018
6019unexpected_vmexit:
Sean Christopherson8e533242020-11-06 17:03:12 +08006020 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
6021 exit_reason.full);
David Edmondson0702a3c2021-03-18 12:08:40 +00006022 dump_vmcs(vcpu);
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006023 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6024 vcpu->run->internal.suberror =
6025 KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
Jim Mattson1aa561b2020-06-03 16:56:21 -07006026 vcpu->run->internal.ndata = 2;
Sean Christopherson8e533242020-11-06 17:03:12 +08006027 vcpu->run->internal.data[0] = exit_reason.full;
Jim Mattson8a14fe42020-06-03 16:56:22 -07006028 vcpu->run->internal.data[1] = vcpu->arch.last_vmentry_cpu;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006029 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006030}
6031
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08006032static int vmx_handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
6033{
6034 int ret = __vmx_handle_exit(vcpu, exit_fastpath);
6035
6036 /*
Hao Xiangd61863c2021-10-15 19:59:21 +08006037 * Exit to user space when bus lock detected to inform that there is
6038 * a bus lock in guest.
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08006039 */
6040 if (to_vmx(vcpu)->exit_reason.bus_lock_detected) {
6041 if (ret > 0)
6042 vcpu->run->exit_reason = KVM_EXIT_X86_BUS_LOCK;
6043
6044 vcpu->run->flags |= KVM_RUN_X86_BUS_LOCK;
6045 return 0;
6046 }
6047 return ret;
6048}
6049
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006050/*
6051 * Software based L1D cache flush which is used when microcode providing
6052 * the cache control MSR is not loaded.
6053 *
6054 * The L1D cache is 32 KiB on Nehalem and later microarchitectures, but to
6055 * flush it is required to read in 64 KiB because the replacement algorithm
6056 * is not exactly LRU. This could be sized at runtime via topology
6057 * information but as all relevant affected CPUs have 32KiB L1D cache size
6058 * there is no point in doing so.
6059 */
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006060static noinstr void vmx_l1d_flush(struct kvm_vcpu *vcpu)
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006061{
6062 int size = PAGE_SIZE << L1D_CACHE_ORDER;
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006063
6064 /*
Thomas Gleixner2f055942018-07-13 16:23:17 +02006065 * This code is only executed when the the flush mode is 'cond' or
6066 * 'always'
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006067 */
Nicolai Stange427362a2018-07-21 22:25:00 +02006068 if (static_branch_likely(&vmx_l1d_flush_cond)) {
Nicolai Stange45b575c2018-07-27 13:22:16 +02006069 bool flush_l1d;
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02006070
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006071 /*
Nicolai Stange45b575c2018-07-27 13:22:16 +02006072 * Clear the per-vcpu flush bit, it gets set again
6073 * either from vcpu_run() or from one of the unsafe
6074 * VMEXIT handlers.
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006075 */
Nicolai Stange45b575c2018-07-27 13:22:16 +02006076 flush_l1d = vcpu->arch.l1tf_flush_l1d;
Thomas Gleixner4c6523e2018-07-13 16:23:20 +02006077 vcpu->arch.l1tf_flush_l1d = false;
Nicolai Stange45b575c2018-07-27 13:22:16 +02006078
6079 /*
6080 * Clear the per-cpu flush bit, it gets set again from
6081 * the interrupt handlers.
6082 */
6083 flush_l1d |= kvm_get_cpu_l1tf_flush_l1d();
6084 kvm_clear_cpu_l1tf_flush_l1d();
6085
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02006086 if (!flush_l1d)
6087 return;
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006088 }
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006089
6090 vcpu->stat.l1d_flush++;
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006091
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02006092 if (static_cpu_has(X86_FEATURE_FLUSH_L1D)) {
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006093 native_wrmsrl(MSR_IA32_FLUSH_CMD, L1D_FLUSH);
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02006094 return;
6095 }
6096
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006097 asm volatile(
6098 /* First ensure the pages are in the TLB */
6099 "xorl %%eax, %%eax\n"
6100 ".Lpopulate_tlb:\n\t"
Nicolai Stange288d1522018-07-18 19:07:38 +02006101 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006102 "addl $4096, %%eax\n\t"
6103 "cmpl %%eax, %[size]\n\t"
6104 "jne .Lpopulate_tlb\n\t"
6105 "xorl %%eax, %%eax\n\t"
6106 "cpuid\n\t"
6107 /* Now fill the cache */
6108 "xorl %%eax, %%eax\n"
6109 ".Lfill_cache:\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02006110 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006111 "addl $64, %%eax\n\t"
6112 "cmpl %%eax, %[size]\n\t"
6113 "jne .Lfill_cache\n\t"
6114 "lfence\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02006115 :: [flush_pages] "r" (vmx_l1d_flush_pages),
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006116 [size] "r" (size)
6117 : "eax", "ebx", "ecx", "edx");
6118}
6119
Jason Baronb6a7cc32021-01-14 22:27:54 -05006120static void vmx_update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006121{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006122 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Liran Alon132f4f72019-11-11 14:30:54 +02006123 int tpr_threshold;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006124
6125 if (is_guest_mode(vcpu) &&
6126 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
6127 return;
6128
Liran Alon132f4f72019-11-11 14:30:54 +02006129 tpr_threshold = (irr == -1 || tpr < irr) ? 0 : irr;
Liran Alon02d496cf2019-11-11 14:30:55 +02006130 if (is_guest_mode(vcpu))
6131 to_vmx(vcpu)->nested.l1_tpr_threshold = tpr_threshold;
6132 else
6133 vmcs_write32(TPR_THRESHOLD, tpr_threshold);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006134}
6135
Sean Christopherson97b7ead2018-12-03 13:53:16 -08006136void vmx_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08006137{
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006138 struct vcpu_vmx *vmx = to_vmx(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08006139 u32 sec_exec_control;
6140
Jim Mattson8d860bb2018-05-09 16:56:05 -04006141 if (!lapic_in_kernel(vcpu))
6142 return;
6143
Sean Christophersonfd6b6d92018-10-01 14:25:34 -07006144 if (!flexpriority_enabled &&
6145 !cpu_has_vmx_virtualize_x2apic_mode())
6146 return;
6147
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02006148 /* Postpone execution until vmcs01 is the current VMCS. */
6149 if (is_guest_mode(vcpu)) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006150 vmx->nested.change_vmcs01_virtual_apic_mode = true;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02006151 return;
6152 }
6153
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006154 sec_exec_control = secondary_exec_controls_get(vmx);
Jim Mattson8d860bb2018-05-09 16:56:05 -04006155 sec_exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
6156 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
Yang Zhang8d146952013-01-25 10:18:50 +08006157
Jim Mattson8d860bb2018-05-09 16:56:05 -04006158 switch (kvm_get_apic_mode(vcpu)) {
6159 case LAPIC_MODE_INVALID:
6160 WARN_ONCE(true, "Invalid local APIC state");
Gustavo A. R. Silva551912d2021-05-28 15:07:56 -05006161 break;
Jim Mattson8d860bb2018-05-09 16:56:05 -04006162 case LAPIC_MODE_DISABLED:
6163 break;
6164 case LAPIC_MODE_XAPIC:
6165 if (flexpriority_enabled) {
6166 sec_exec_control |=
6167 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sean Christopherson4de1f9d2020-03-20 14:28:25 -07006168 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
6169
6170 /*
6171 * Flush the TLB, reloading the APIC access page will
6172 * only do so if its physical address has changed, but
6173 * the guest may have inserted a non-APIC mapping into
6174 * the TLB while the APIC access page was disabled.
6175 */
6176 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
Jim Mattson8d860bb2018-05-09 16:56:05 -04006177 }
6178 break;
6179 case LAPIC_MODE_X2APIC:
6180 if (cpu_has_vmx_virtualize_x2apic_mode())
6181 sec_exec_control |=
6182 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
6183 break;
Yang Zhang8d146952013-01-25 10:18:50 +08006184 }
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006185 secondary_exec_controls_set(vmx, sec_exec_control);
Yang Zhang8d146952013-01-25 10:18:50 +08006186
Sean Christopherson84ec8d22021-07-13 09:33:19 -07006187 vmx_update_msr_bitmap_x2apic(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08006188}
6189
Sean Christophersona4148b72020-03-20 14:28:24 -07006190static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu)
Tang Chen38b99172014-09-24 15:57:54 +08006191{
Sean Christophersona4148b72020-03-20 14:28:24 -07006192 struct page *page;
6193
Sean Christopherson1196cb92020-03-20 14:28:23 -07006194 /* Defer reload until vmcs01 is the current VMCS. */
6195 if (is_guest_mode(vcpu)) {
6196 to_vmx(vcpu)->nested.reload_vmcs01_apic_access_page = true;
6197 return;
Jim Mattsonfb6c8192017-03-16 13:53:59 -07006198 }
Sean Christopherson1196cb92020-03-20 14:28:23 -07006199
Sean Christopherson4de1f9d2020-03-20 14:28:25 -07006200 if (!(secondary_exec_controls_get(to_vmx(vcpu)) &
6201 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
6202 return;
6203
Sean Christophersona4148b72020-03-20 14:28:24 -07006204 page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
6205 if (is_error_page(page))
6206 return;
6207
6208 vmcs_write64(APIC_ACCESS_ADDR, page_to_phys(page));
Sean Christopherson1196cb92020-03-20 14:28:23 -07006209 vmx_flush_tlb_current(vcpu);
Sean Christophersona4148b72020-03-20 14:28:24 -07006210
6211 /*
6212 * Do not pin apic access page in memory, the MMU notifier
6213 * will call us again if it is migrated or swapped out.
6214 */
6215 put_page(page);
Tang Chen38b99172014-09-24 15:57:54 +08006216}
6217
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006218static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006219{
6220 u16 status;
6221 u8 old;
6222
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006223 if (max_isr == -1)
6224 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006225
6226 status = vmcs_read16(GUEST_INTR_STATUS);
6227 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006228 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08006229 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006230 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006231 vmcs_write16(GUEST_INTR_STATUS, status);
6232 }
6233}
6234
6235static void vmx_set_rvi(int vector)
6236{
6237 u16 status;
6238 u8 old;
6239
Wei Wang4114c272014-11-05 10:53:43 +08006240 if (vector == -1)
6241 vector = 0;
6242
Yang Zhangc7c9c562013-01-25 10:18:51 +08006243 status = vmcs_read16(GUEST_INTR_STATUS);
6244 old = (u8)status & 0xff;
6245 if ((u8)vector != old) {
6246 status &= ~0xff;
6247 status |= (u8)vector;
6248 vmcs_write16(GUEST_INTR_STATUS, status);
6249 }
6250}
6251
6252static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
6253{
Liran Alon851c1a182017-12-24 18:12:56 +02006254 /*
6255 * When running L2, updating RVI is only relevant when
6256 * vmcs12 virtual-interrupt-delivery enabled.
6257 * However, it can be enabled only when L1 also
6258 * intercepts external-interrupts and in that case
6259 * we should not update vmcs02 RVI but instead intercept
6260 * interrupt. Therefore, do nothing when running L2.
6261 */
6262 if (!is_guest_mode(vcpu))
Wanpeng Li963fee12014-07-17 19:03:00 +08006263 vmx_set_rvi(max_irr);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006264}
6265
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006266static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006267{
6268 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006269 int max_irr;
Liran Alonf27a85c2017-12-24 18:12:55 +02006270 bool max_irr_updated;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006271
Sean Christopherson67369272021-07-02 15:04:25 -07006272 if (KVM_BUG_ON(!vcpu->arch.apicv_active, vcpu->kvm))
6273 return -EIO;
6274
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006275 if (pi_test_on(&vmx->pi_desc)) {
6276 pi_clear_on(&vmx->pi_desc);
6277 /*
Liran Alond9ff2742019-11-11 14:25:25 +02006278 * IOMMU can write to PID.ON, so the barrier matters even on UP.
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006279 * But on x86 this is just a compiler barrier anyway.
6280 */
6281 smp_mb__after_atomic();
Liran Alonf27a85c2017-12-24 18:12:55 +02006282 max_irr_updated =
6283 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir, &max_irr);
6284
6285 /*
6286 * If we are running L2 and L1 has a new pending interrupt
Paolo Bonzini3a25dfa2021-10-20 06:22:59 -04006287 * which can be injected, this may cause a vmexit or it may
6288 * be injected into L2. Either way, this interrupt will be
6289 * processed via KVM_REQ_EVENT, not RVI, because we do not use
6290 * virtual interrupt delivery to inject L1 interrupts into L2.
Liran Alonf27a85c2017-12-24 18:12:55 +02006291 */
Paolo Bonzini3a25dfa2021-10-20 06:22:59 -04006292 if (is_guest_mode(vcpu) && max_irr_updated)
6293 kvm_make_request(KVM_REQ_EVENT, vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006294 } else {
6295 max_irr = kvm_lapic_find_highest_irr(vcpu);
6296 }
6297 vmx_hwapic_irr_update(vcpu, max_irr);
6298 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006299}
6300
Andrey Smetanin63086302015-11-10 15:36:32 +03006301static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006302{
Andrey Smetanind62caab2015-11-10 15:36:33 +03006303 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08006304 return;
6305
Yang Zhangc7c9c562013-01-25 10:18:51 +08006306 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
6307 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
6308 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
6309 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
6310}
6311
Paolo Bonzini967235d2016-12-19 14:03:45 +01006312static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
6313{
6314 struct vcpu_vmx *vmx = to_vmx(vcpu);
6315
6316 pi_clear_on(&vmx->pi_desc);
6317 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
6318}
6319
Sean Christopherson535f7ef2020-09-15 12:15:04 -07006320void vmx_do_interrupt_nmi_irqoff(unsigned long entry);
6321
Lai Jiangshana217a652021-05-04 21:50:14 +02006322static void handle_interrupt_nmi_irqoff(struct kvm_vcpu *vcpu,
6323 unsigned long entry)
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006324{
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006325 kvm_before_interrupt(vcpu);
Lai Jiangshana217a652021-05-04 21:50:14 +02006326 vmx_do_interrupt_nmi_irqoff(entry);
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006327 kvm_after_interrupt(vcpu);
6328}
6329
Sean Christopherson95b5a482019-04-19 22:50:59 -07006330static void handle_exception_nmi_irqoff(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03006331{
Lai Jiangshana217a652021-05-04 21:50:14 +02006332 const unsigned long nmi_entry = (unsigned long)asm_exc_nmi_noist;
Sean Christopherson87915852020-04-15 13:34:54 -07006333 u32 intr_info = vmx_get_intr_info(&vmx->vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08006334
Wanpeng Li1261bfa2017-07-13 18:30:40 -07006335 /* if exit due to PF check for async PF */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006336 if (is_page_fault(intr_info))
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02006337 vmx->vcpu.arch.apf.host_apf_flags = kvm_read_and_reset_apf_flags();
Andi Kleena0861c02009-06-08 17:37:09 +08006338 /* Handle machine checks before interrupts are enabled */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006339 else if (is_machine_check(intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08006340 kvm_machine_check();
Gleb Natapov20f65982009-05-11 13:35:55 +03006341 /* We need to handle NMIs before interrupts are enabled */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006342 else if (is_nmi(intr_info))
Lai Jiangshana217a652021-05-04 21:50:14 +02006343 handle_interrupt_nmi_irqoff(&vmx->vcpu, nmi_entry);
Avi Kivity51aa01d2010-07-20 14:31:20 +03006344}
Gleb Natapov20f65982009-05-11 13:35:55 +03006345
Sean Christopherson95b5a482019-04-19 22:50:59 -07006346static void handle_external_interrupt_irqoff(struct kvm_vcpu *vcpu)
Yang Zhanga547c6d2013-04-11 19:25:10 +08006347{
Sean Christopherson87915852020-04-15 13:34:54 -07006348 u32 intr_info = vmx_get_intr_info(vcpu);
Lai Jiangshana217a652021-05-04 21:50:14 +02006349 unsigned int vector = intr_info & INTR_INFO_VECTOR_MASK;
6350 gate_desc *desc = (gate_desc *)host_idt_base + vector;
Yang Zhanga547c6d2013-04-11 19:25:10 +08006351
Sean Christopherson67369272021-07-02 15:04:25 -07006352 if (KVM_BUG(!is_external_intr(intr_info), vcpu->kvm,
Sean Christopherson49def502019-04-19 22:50:56 -07006353 "KVM: unexpected VM-Exit interrupt info: 0x%x", intr_info))
6354 return;
6355
Lai Jiangshana217a652021-05-04 21:50:14 +02006356 handle_interrupt_nmi_irqoff(vcpu, gate_offset(desc));
Yang Zhanga547c6d2013-04-11 19:25:10 +08006357}
Sean Christopherson95b5a482019-04-19 22:50:59 -07006358
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006359static void vmx_handle_exit_irqoff(struct kvm_vcpu *vcpu)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006360{
6361 struct vcpu_vmx *vmx = to_vmx(vcpu);
6362
Maxim Levitsky81b4b56d2021-08-26 12:57:49 +03006363 if (vmx->emulation_required)
6364 return;
6365
Sean Christopherson8e533242020-11-06 17:03:12 +08006366 if (vmx->exit_reason.basic == EXIT_REASON_EXTERNAL_INTERRUPT)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006367 handle_external_interrupt_irqoff(vcpu);
Sean Christopherson8e533242020-11-06 17:03:12 +08006368 else if (vmx->exit_reason.basic == EXIT_REASON_EXCEPTION_NMI)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006369 handle_exception_nmi_irqoff(vmx);
6370}
Yang Zhanga547c6d2013-04-11 19:25:10 +08006371
Tom Lendacky57194552020-12-10 11:10:00 -06006372/*
6373 * The kvm parameter can be NULL (module initialization, or invocation before
6374 * VM creation). Be sure to check the kvm parameter before using it.
6375 */
6376static bool vmx_has_emulated_msr(struct kvm *kvm, u32 index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006377{
Tom Lendackybc226f02018-05-10 22:06:39 +02006378 switch (index) {
6379 case MSR_IA32_SMBASE:
6380 /*
6381 * We cannot do SMM unless we can run the guest in big
6382 * real mode.
6383 */
6384 return enable_unrestricted_guest || emulate_invalid_guest_state;
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02006385 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
6386 return nested;
Tom Lendackybc226f02018-05-10 22:06:39 +02006387 case MSR_AMD64_VIRT_SPEC_CTRL:
Maxim Levitsky5228eb92021-09-14 18:48:24 +03006388 case MSR_AMD64_TSC_RATIO:
Tom Lendackybc226f02018-05-10 22:06:39 +02006389 /* This is AMD only. */
6390 return false;
6391 default:
6392 return true;
6393 }
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006394}
6395
Avi Kivity51aa01d2010-07-20 14:31:20 +03006396static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
6397{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02006398 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03006399 bool unblock_nmi;
6400 u8 vector;
6401 bool idtv_info_valid;
6402
6403 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03006404
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006405 if (enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006406 if (vmx->loaded_vmcs->nmi_known_unmasked)
6407 return;
Sean Christopherson87915852020-04-15 13:34:54 -07006408
6409 exit_intr_info = vmx_get_intr_info(&vmx->vcpu);
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006410 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
6411 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
6412 /*
6413 * SDM 3: 27.7.1.2 (September 2008)
6414 * Re-set bit "block by NMI" before VM entry if vmexit caused by
6415 * a guest IRET fault.
6416 * SDM 3: 23.2.2 (September 2008)
6417 * Bit 12 is undefined in any of the following cases:
6418 * If the VM exit sets the valid bit in the IDT-vectoring
6419 * information field.
6420 * If the VM exit is due to a double fault.
6421 */
6422 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
6423 vector != DF_VECTOR && !idtv_info_valid)
6424 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
6425 GUEST_INTR_STATE_NMI);
6426 else
6427 vmx->loaded_vmcs->nmi_known_unmasked =
6428 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
6429 & GUEST_INTR_STATE_NMI);
6430 } else if (unlikely(vmx->loaded_vmcs->soft_vnmi_blocked))
6431 vmx->loaded_vmcs->vnmi_blocked_time +=
6432 ktime_to_ns(ktime_sub(ktime_get(),
6433 vmx->loaded_vmcs->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03006434}
6435
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006436static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03006437 u32 idt_vectoring_info,
6438 int instr_len_field,
6439 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03006440{
Avi Kivity51aa01d2010-07-20 14:31:20 +03006441 u8 vector;
6442 int type;
6443 bool idtv_info_valid;
6444
6445 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03006446
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006447 vcpu->arch.nmi_injected = false;
6448 kvm_clear_exception_queue(vcpu);
6449 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006450
6451 if (!idtv_info_valid)
6452 return;
6453
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006454 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03006455
Avi Kivity668f6122008-07-02 09:28:55 +03006456 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
6457 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006458
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006459 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03006460 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006461 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03006462 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03006463 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03006464 * Clear bit "block by NMI" before VM entry if a NMI
6465 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03006466 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006467 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006468 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006469 case INTR_TYPE_SOFT_EXCEPTION:
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 Natapov66fd3f72009-05-11 13:35:50 +03006472 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03006473 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03006474 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03006475 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03006476 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03006477 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006478 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006479 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006480 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05006481 fallthrough;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006482 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006483 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006484 break;
6485 default:
6486 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03006487 }
Avi Kivitycf393f72008-07-01 16:20:21 +03006488}
6489
Avi Kivity83422e12010-07-20 14:43:23 +03006490static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
6491{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006492 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03006493 VM_EXIT_INSTRUCTION_LEN,
6494 IDT_VECTORING_ERROR_CODE);
6495}
6496
Avi Kivityb463a6f2010-07-20 15:06:17 +03006497static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
6498{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006499 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03006500 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
6501 VM_ENTRY_INSTRUCTION_LEN,
6502 VM_ENTRY_EXCEPTION_ERROR_CODE);
6503
6504 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
6505}
6506
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006507static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
6508{
6509 int i, nr_msrs;
6510 struct perf_guest_switch_msr *msrs;
6511
Sean Christophersonc8e2fe12021-03-09 09:10:19 -08006512 /* Note, nr_msrs may be garbage if perf_guest_get_msrs() returns NULL. */
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006513 msrs = perf_guest_get_msrs(&nr_msrs);
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006514 if (!msrs)
6515 return;
6516
6517 for (i = 0; i < nr_msrs; i++)
6518 if (msrs[i].host == msrs[i].guest)
6519 clear_atomic_switch_msr(vmx, msrs[i].msr);
6520 else
6521 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04006522 msrs[i].host, false);
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006523}
6524
Sean Christophersonf459a702018-08-27 15:21:11 -07006525static void vmx_update_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07006526{
6527 struct vcpu_vmx *vmx = to_vmx(vcpu);
6528 u64 tscl;
6529 u32 delta_tsc;
6530
Sean Christophersond264ee02018-08-27 15:21:12 -07006531 if (vmx->req_immediate_exit) {
Sean Christopherson804939e2019-05-07 12:18:05 -07006532 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, 0);
6533 vmx->loaded_vmcs->hv_timer_soft_disabled = false;
6534 } else if (vmx->hv_deadline_tsc != -1) {
Sean Christophersonf459a702018-08-27 15:21:11 -07006535 tscl = rdtsc();
6536 if (vmx->hv_deadline_tsc > tscl)
6537 /* set_hv_timer ensures the delta fits in 32-bits */
6538 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
6539 cpu_preemption_timer_multi);
6540 else
6541 delta_tsc = 0;
6542
Sean Christopherson804939e2019-05-07 12:18:05 -07006543 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
6544 vmx->loaded_vmcs->hv_timer_soft_disabled = false;
6545 } else if (!vmx->loaded_vmcs->hv_timer_soft_disabled) {
6546 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, -1);
6547 vmx->loaded_vmcs->hv_timer_soft_disabled = true;
Sean Christophersonf459a702018-08-27 15:21:11 -07006548 }
Yunhong Jiang64672c92016-06-13 14:19:59 -07006549}
6550
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006551void noinstr vmx_update_host_rsp(struct vcpu_vmx *vmx, unsigned long host_rsp)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006552{
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006553 if (unlikely(host_rsp != vmx->loaded_vmcs->host_state.rsp)) {
6554 vmx->loaded_vmcs->host_state.rsp = host_rsp;
6555 vmcs_writel(HOST_RSP, host_rsp);
6556 }
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006557}
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006558
Wanpeng Li404d5d72020-04-28 14:23:25 +08006559static fastpath_t vmx_exit_handlers_fastpath(struct kvm_vcpu *vcpu)
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006560{
Sean Christopherson8e533242020-11-06 17:03:12 +08006561 switch (to_vmx(vcpu)->exit_reason.basic) {
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006562 case EXIT_REASON_MSR_WRITE:
6563 return handle_fastpath_set_msr_irqoff(vcpu);
Wanpeng Li26efe2f2020-05-06 11:44:01 -04006564 case EXIT_REASON_PREEMPTION_TIMER:
6565 return handle_fastpath_preemption_timer(vcpu);
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006566 default:
6567 return EXIT_FASTPATH_NONE;
6568 }
6569}
6570
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006571static noinstr void vmx_vcpu_enter_exit(struct kvm_vcpu *vcpu,
6572 struct vcpu_vmx *vmx)
6573{
Sean Christophersonbc908e02021-05-04 17:27:35 -07006574 kvm_guest_enter_irqoff();
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006575
6576 /* L1D Flush includes CPU buffer clear to mitigate MDS */
6577 if (static_branch_unlikely(&vmx_l1d_should_flush))
6578 vmx_l1d_flush(vcpu);
6579 else if (static_branch_unlikely(&mds_user_clear))
6580 mds_clear_cpu_buffers();
6581
Thomas Gleixner2245d392020-07-08 21:52:00 +02006582 if (vcpu->arch.cr2 != native_read_cr2())
6583 native_write_cr2(vcpu->arch.cr2);
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006584
6585 vmx->fail = __vmx_vcpu_run(vmx, (unsigned long *)&vcpu->arch.regs,
6586 vmx->loaded_vmcs->launched);
6587
Thomas Gleixner2245d392020-07-08 21:52:00 +02006588 vcpu->arch.cr2 = native_read_cr2();
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006589
Sean Christophersonbc908e02021-05-04 17:27:35 -07006590 kvm_guest_exit_irqoff();
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006591}
6592
Wanpeng Li404d5d72020-04-28 14:23:25 +08006593static fastpath_t vmx_vcpu_run(struct kvm_vcpu *vcpu)
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006594{
6595 struct vcpu_vmx *vmx = to_vmx(vcpu);
6596 unsigned long cr3, cr4;
6597
6598 /* Record the guest's net vcpu time for enforced NMI injections. */
6599 if (unlikely(!enable_vnmi &&
6600 vmx->loaded_vmcs->soft_vnmi_blocked))
6601 vmx->loaded_vmcs->entry_time = ktime_get();
6602
Maxim Levitskyc42dec12021-09-13 17:09:52 +03006603 /*
6604 * Don't enter VMX if guest state is invalid, let the exit handler
6605 * start emulation until we arrive back to a valid state. Synthesize a
6606 * consistency check VM-Exit due to invalid guest state and bail.
6607 */
6608 if (unlikely(vmx->emulation_required)) {
Maxim Levitskyc8607e42021-09-13 17:09:53 +03006609
6610 /* We don't emulate invalid state of a nested guest */
6611 vmx->fail = is_guest_mode(vcpu);
6612
Maxim Levitskyc42dec12021-09-13 17:09:52 +03006613 vmx->exit_reason.full = EXIT_REASON_INVALID_STATE;
6614 vmx->exit_reason.failed_vmentry = 1;
6615 kvm_register_mark_available(vcpu, VCPU_EXREG_EXIT_INFO_1);
6616 vmx->exit_qualification = ENTRY_FAIL_DEFAULT;
6617 kvm_register_mark_available(vcpu, VCPU_EXREG_EXIT_INFO_2);
6618 vmx->exit_intr_info = 0;
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006619 return EXIT_FASTPATH_NONE;
Maxim Levitskyc42dec12021-09-13 17:09:52 +03006620 }
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006621
Lorenzo Bresciad95df952020-12-23 14:45:07 +00006622 trace_kvm_entry(vcpu);
6623
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006624 if (vmx->ple_window_dirty) {
6625 vmx->ple_window_dirty = false;
6626 vmcs_write32(PLE_WINDOW, vmx->ple_window);
6627 }
6628
wanpeng lic9dfd3f2020-02-17 18:37:43 +08006629 /*
6630 * We did this in prepare_switch_to_guest, because it needs to
6631 * be within srcu_read_lock.
6632 */
6633 WARN_ON_ONCE(vmx->nested.need_vmcs12_to_shadow_sync);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006634
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07006635 if (kvm_register_is_dirty(vcpu, VCPU_REGS_RSP))
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006636 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07006637 if (kvm_register_is_dirty(vcpu, VCPU_REGS_RIP))
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006638 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
6639
6640 cr3 = __get_current_cr3_fast();
6641 if (unlikely(cr3 != vmx->loaded_vmcs->host_state.cr3)) {
6642 vmcs_writel(HOST_CR3, cr3);
6643 vmx->loaded_vmcs->host_state.cr3 = cr3;
6644 }
6645
6646 cr4 = cr4_read_shadow();
6647 if (unlikely(cr4 != vmx->loaded_vmcs->host_state.cr4)) {
6648 vmcs_writel(HOST_CR4, cr4);
6649 vmx->loaded_vmcs->host_state.cr4 = cr4;
6650 }
6651
Paolo Bonzini375e28f2021-08-10 06:07:06 -04006652 /* When KVM_DEBUGREG_WONT_EXIT, dr6 is accessible in guest. */
6653 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT))
6654 set_debugreg(vcpu->arch.dr6, 6);
6655
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006656 /* When single-stepping over STI and MOV SS, we must clear the
6657 * corresponding interruptibility bits in the guest state. Otherwise
6658 * vmentry fails as it then expects bit 14 (BS) in pending debug
6659 * exceptions being set, but that's not correct for the guest debugging
6660 * case. */
6661 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
6662 vmx_set_interrupt_shadow(vcpu, 0);
6663
Aaron Lewis139a12c2019-10-21 16:30:25 -07006664 kvm_load_guest_xsave_state(vcpu);
WANG Chao1811d972019-04-12 15:55:39 +08006665
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006666 pt_guest_enter(vmx);
6667
Vitaly Kuznetsov49097762020-06-19 11:40:46 +02006668 atomic_switch_perf_msrs(vmx);
Like Xu1b5ac3222021-02-01 13:10:34 +08006669 if (intel_pmu_lbr_is_enabled(vcpu))
6670 vmx_passthrough_lbr_msrs(vcpu);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006671
Sean Christopherson804939e2019-05-07 12:18:05 -07006672 if (enable_preemption_timer)
6673 vmx_update_hv_timer(vcpu);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006674
Wanpeng Li010fd372020-09-10 17:50:41 +08006675 kvm_wait_lapic_expire(vcpu);
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08006676
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006677 /*
6678 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
6679 * it's non-zero. Since vmentry is serialising on affected CPUs, there
6680 * is no need to worry about the conditional branch over the wrmsr
6681 * being speculatively taken.
6682 */
6683 x86_spec_ctrl_set_guest(vmx->spec_ctrl, 0);
6684
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006685 /* The actual VMENTER/EXIT is in the .noinstr.text section. */
6686 vmx_vcpu_enter_exit(vcpu, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006687
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006688 /*
6689 * We do not use IBRS in the kernel. If this vCPU has used the
6690 * SPEC_CTRL MSR it may have left it on; save the value and
6691 * turn it off. This is much more efficient than blindly adding
6692 * it to the atomic save/restore list. Especially as the former
6693 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
6694 *
6695 * For non-nested case:
6696 * If the L01 MSR bitmap does not intercept the MSR, then we need to
6697 * save it.
6698 *
6699 * For nested case:
6700 * If the L02 MSR bitmap does not intercept the MSR, then we need to
6701 * save it.
6702 */
Sean Christopherson7dfbc622021-11-09 01:30:44 +00006703 if (unlikely(!msr_write_intercepted(vmx, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01006704 vmx->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006705
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02006706 x86_spec_ctrl_restore_host(vmx->spec_ctrl, 0);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006707
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01006708 /* All fields are clean at this point */
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01006709 if (static_branch_unlikely(&enable_evmcs)) {
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01006710 current_evmcs->hv_clean_fields |=
6711 HV_VMX_ENLIGHTENED_CLEAN_FIELD_ALL;
6712
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01006713 current_evmcs->hv_vp_id = kvm_hv_get_vpindex(vcpu);
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01006714 }
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08006715
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006716 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
Wanpeng Li74c55932017-11-29 01:31:20 -08006717 if (vmx->host_debugctlmsr)
6718 update_debugctlmsr(vmx->host_debugctlmsr);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006719
Avi Kivityaa67f602012-08-01 16:48:03 +03006720#ifndef CONFIG_X86_64
6721 /*
6722 * The sysexit path does not restore ds/es, so we must set them to
6723 * a reasonable value ourselves.
6724 *
Sean Christopherson6d6095b2018-07-23 12:32:44 -07006725 * We can't defer this to vmx_prepare_switch_to_host() since that
6726 * function may be executed in interrupt context, which saves and
6727 * restore segments around it, nullifying its effect.
Avi Kivityaa67f602012-08-01 16:48:03 +03006728 */
6729 loadsegment(ds, __USER_DS);
6730 loadsegment(es, __USER_DS);
6731#endif
6732
Sean Christophersone5d03de2020-04-15 13:34:51 -07006733 vmx_register_cache_reset(vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006734
Chao Peng2ef444f2018-10-24 16:05:12 +08006735 pt_guest_exit(vmx);
6736
Aaron Lewis139a12c2019-10-21 16:30:25 -07006737 kvm_load_host_xsave_state(vcpu);
WANG Chao1811d972019-04-12 15:55:39 +08006738
Krish Sadhukhanb93af022021-06-09 14:03:38 -04006739 if (is_guest_mode(vcpu)) {
6740 /*
6741 * Track VMLAUNCH/VMRESUME that have made past guest state
6742 * checking.
6743 */
6744 if (vmx->nested.nested_run_pending &&
6745 !vmx->exit_reason.failed_vmentry)
6746 ++vcpu->stat.nested_run;
6747
6748 vmx->nested.nested_run_pending = 0;
6749 }
6750
Jim Mattsonb060ca32017-09-14 16:31:42 -07006751 vmx->idt_vectoring_info = 0;
6752
Sean Christopherson873e1da2020-04-10 10:47:02 -07006753 if (unlikely(vmx->fail)) {
Sean Christopherson8e533242020-11-06 17:03:12 +08006754 vmx->exit_reason.full = 0xdead;
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006755 return EXIT_FASTPATH_NONE;
Sean Christopherson873e1da2020-04-10 10:47:02 -07006756 }
6757
Sean Christopherson8e533242020-11-06 17:03:12 +08006758 vmx->exit_reason.full = vmcs_read32(VM_EXIT_REASON);
6759 if (unlikely((u16)vmx->exit_reason.basic == EXIT_REASON_MCE_DURING_VMENTRY))
Sean Christophersonbeb8d932019-04-19 22:50:55 -07006760 kvm_machine_check();
6761
Maxim Levitskyf5c59b52021-02-17 16:57:12 +02006762 if (likely(!vmx->exit_reason.failed_vmentry))
6763 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
6764
David Edmondson0a62a032021-09-20 11:37:35 +01006765 trace_kvm_exit(vcpu, KVM_ISA_VMX);
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006766
Sean Christopherson8e533242020-11-06 17:03:12 +08006767 if (unlikely(vmx->exit_reason.failed_vmentry))
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006768 return EXIT_FASTPATH_NONE;
6769
Jim Mattsonb060ca32017-09-14 16:31:42 -07006770 vmx->loaded_vmcs->launched = 1;
Gleb Natapove0b890d2013-09-25 12:51:33 +03006771
Avi Kivity51aa01d2010-07-20 14:31:20 +03006772 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03006773 vmx_complete_interrupts(vmx);
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006774
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006775 if (is_guest_mode(vcpu))
6776 return EXIT_FASTPATH_NONE;
6777
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05006778 return vmx_exit_handlers_fastpath(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006779}
6780
Avi Kivity6aa8b732006-12-10 02:21:36 -08006781static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
6782{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006783 struct vcpu_vmx *vmx = to_vmx(vcpu);
6784
Kai Huang843e4332015-01-28 10:54:28 +08006785 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08006786 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08006787 free_vpid(vmx->vpid);
Sean Christopherson55d23752018-12-03 13:53:18 -08006788 nested_vmx_free_vcpu(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006789 free_loaded_vmcs(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006790}
6791
Sean Christopherson987b2592019-12-18 13:54:55 -08006792static int vmx_create_vcpu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006793{
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006794 struct vmx_uret_msr *tsx_ctrl;
Ben Gardon41836832019-02-11 11:02:52 -08006795 struct vcpu_vmx *vmx;
Sean Christopherson06692e42021-09-20 17:03:01 -07006796 int i, err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006797
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006798 BUILD_BUG_ON(offsetof(struct vcpu_vmx, vcpu) != 0);
6799 vmx = to_vmx(vcpu);
Ingo Molnar965b58a2007-01-05 16:36:23 -08006800
Peter Feiner4e595162016-07-07 14:49:58 -07006801 err = -ENOMEM;
6802
Sean Christopherson034d8e22019-12-18 13:54:49 -08006803 vmx->vpid = allocate_vpid();
6804
Peter Feiner4e595162016-07-07 14:49:58 -07006805 /*
6806 * If PML is turned on, failure on enabling PML just results in failure
6807 * of creating the vcpu, therefore we can simplify PML logic (by
6808 * avoiding dealing with cases, such as enabling PML partially on vcpus
Miaohe Lin67b0ae42019-12-11 14:26:22 +08006809 * for the guest), etc.
Peter Feiner4e595162016-07-07 14:49:58 -07006810 */
6811 if (enable_pml) {
Ben Gardon41836832019-02-11 11:02:52 -08006812 vmx->pml_pg = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Peter Feiner4e595162016-07-07 14:49:58 -07006813 if (!vmx->pml_pg)
Sean Christopherson987b2592019-12-18 13:54:55 -08006814 goto free_vpid;
Peter Feiner4e595162016-07-07 14:49:58 -07006815 }
6816
Sean Christophersond0656732021-09-20 17:03:00 -07006817 for (i = 0; i < kvm_nr_uret_msrs; ++i)
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006818 vmx->guest_uret_msrs[i].mask = -1ull;
Sean Christopherson5e17c622021-05-04 10:17:30 -07006819 if (boot_cpu_has(X86_FEATURE_RTM)) {
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006820 /*
6821 * TSX_CTRL_CPUID_CLEAR is handled in the CPUID interception.
6822 * Keep the host value unchanged to avoid changing CPUID bits
6823 * under the host kernel's feet.
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07006824 */
Sean Christopherson5e17c622021-05-04 10:17:30 -07006825 tsx_ctrl = vmx_find_uret_msr(vmx, MSR_IA32_TSX_CTRL);
6826 if (tsx_ctrl)
Zhenzhong Duan5c49d182021-09-26 09:55:45 +08006827 tsx_ctrl->mask = ~(u64)TSX_CTRL_CPUID_CLEAR;
Xiaoyao Li4be53412019-10-20 17:11:00 +08006828 }
6829
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006830 err = alloc_loaded_vmcs(&vmx->vmcs01);
6831 if (err < 0)
Jim Mattson7d737102019-12-03 16:24:42 -08006832 goto free_pml;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006833
Alexander Graf3eb90012020-09-25 16:34:20 +02006834 /* The MSR bitmap starts with all ones */
6835 bitmap_fill(vmx->shadow_msr_intercept.read, MAX_POSSIBLE_PASSTHROUGH_MSRS);
6836 bitmap_fill(vmx->shadow_msr_intercept.write, MAX_POSSIBLE_PASSTHROUGH_MSRS);
6837
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006838 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_TSC, MSR_TYPE_R);
Sean Christophersondbdd0962021-04-21 19:38:31 -07006839#ifdef CONFIG_X86_64
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006840 vmx_disable_intercept_for_msr(vcpu, MSR_FS_BASE, MSR_TYPE_RW);
6841 vmx_disable_intercept_for_msr(vcpu, MSR_GS_BASE, MSR_TYPE_RW);
6842 vmx_disable_intercept_for_msr(vcpu, MSR_KERNEL_GS_BASE, MSR_TYPE_RW);
Sean Christophersondbdd0962021-04-21 19:38:31 -07006843#endif
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006844 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_CS, MSR_TYPE_RW);
6845 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_ESP, MSR_TYPE_RW);
6846 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_EIP, MSR_TYPE_RW);
Sean Christopherson987b2592019-12-18 13:54:55 -08006847 if (kvm_cstate_in_guest(vcpu->kvm)) {
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006848 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C1_RES, MSR_TYPE_R);
6849 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C3_RESIDENCY, MSR_TYPE_R);
6850 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C6_RESIDENCY, MSR_TYPE_R);
6851 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C7_RESIDENCY, MSR_TYPE_R);
Wanpeng Lib5170062019-05-21 14:06:53 +08006852 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006853
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006854 vmx->loaded_vmcs = &vmx->vmcs01;
Sean Christopherson06692e42021-09-20 17:03:01 -07006855
Sean Christopherson34109c02019-12-18 13:54:50 -08006856 if (cpu_need_virtualize_apic_accesses(vcpu)) {
Sean Christopherson987b2592019-12-18 13:54:55 -08006857 err = alloc_apic_access_page(vcpu->kvm);
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02006858 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02006859 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02006860 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08006861
Sean Christophersone90008d2018-03-05 12:04:37 -08006862 if (enable_ept && !enable_unrestricted_guest) {
Sean Christopherson987b2592019-12-18 13:54:55 -08006863 err = init_rmode_identity_map(vcpu->kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08006864 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02006865 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006866 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08006867
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006868 return 0;
Ingo Molnar965b58a2007-01-05 16:36:23 -08006869
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006870free_vmcs:
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08006871 free_loaded_vmcs(vmx->loaded_vmcs);
Peter Feiner4e595162016-07-07 14:49:58 -07006872free_pml:
6873 vmx_destroy_pml_buffer(vmx);
Sean Christopherson987b2592019-12-18 13:54:55 -08006874free_vpid:
Wanpeng Li991e7a02015-09-16 17:30:05 +08006875 free_vpid(vmx->vpid);
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006876 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006877}
6878
Thomas Gleixner65fd4cb2019-02-19 11:10:49 +01006879#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"
6880#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 -04006881
Wanpeng Lib31c1142018-03-12 04:53:04 -07006882static int vmx_vm_init(struct kvm *kvm)
6883{
6884 if (!ple_gap)
6885 kvm->arch.pause_in_guest = true;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006886
Jiri Kosinad90a7a02018-07-13 16:23:25 +02006887 if (boot_cpu_has(X86_BUG_L1TF) && enable_ept) {
6888 switch (l1tf_mitigation) {
6889 case L1TF_MITIGATION_OFF:
6890 case L1TF_MITIGATION_FLUSH_NOWARN:
6891 /* 'I explicitly don't care' is set */
6892 break;
6893 case L1TF_MITIGATION_FLUSH:
6894 case L1TF_MITIGATION_FLUSH_NOSMT:
6895 case L1TF_MITIGATION_FULL:
6896 /*
6897 * Warn upon starting the first VM in a potentially
6898 * insecure environment.
6899 */
Josh Poimboeufb2849092019-01-30 07:13:58 -06006900 if (sched_smt_active())
Jiri Kosinad90a7a02018-07-13 16:23:25 +02006901 pr_warn_once(L1TF_MSG_SMT);
6902 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_NEVER)
6903 pr_warn_once(L1TF_MSG_L1D);
6904 break;
6905 case L1TF_MITIGATION_FULL_FORCE:
6906 /* Flush is enforced */
6907 break;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006908 }
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006909 }
Wanpeng Lib31c1142018-03-12 04:53:04 -07006910 return 0;
6911}
6912
Sean Christophersonf257d6d2019-04-19 22:18:17 -07006913static int __init vmx_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03006914{
6915 struct vmcs_config vmcs_conf;
Sean Christopherson7caaa712018-12-03 13:53:01 -08006916 struct vmx_capability vmx_cap;
Yang, Sheng002c7f72007-07-31 14:23:01 +03006917
Sean Christophersonff10e222019-12-20 20:45:10 -08006918 if (!this_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
6919 !this_cpu_has(X86_FEATURE_VMX)) {
6920 pr_err("kvm: VMX is disabled on CPU %d\n", smp_processor_id());
6921 return -EIO;
6922 }
6923
Sean Christopherson7caaa712018-12-03 13:53:01 -08006924 if (setup_vmcs_config(&vmcs_conf, &vmx_cap) < 0)
Sean Christophersonf257d6d2019-04-19 22:18:17 -07006925 return -EIO;
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08006926 if (nested)
Vitaly Kuznetsova4443262020-02-20 18:22:04 +01006927 nested_vmx_setup_ctls_msrs(&vmcs_conf.nested, vmx_cap.ept);
Yang, Sheng002c7f72007-07-31 14:23:01 +03006928 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
6929 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
6930 smp_processor_id());
Sean Christophersonf257d6d2019-04-19 22:18:17 -07006931 return -EIO;
Yang, Sheng002c7f72007-07-31 14:23:01 +03006932 }
Sean Christophersonf257d6d2019-04-19 22:18:17 -07006933 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03006934}
6935
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006936static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08006937{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08006938 u8 cache;
6939 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006940
Chia-I Wu222f06e2020-02-13 13:30:34 -08006941 /* We wanted to honor guest CD/MTRR/PAT, but doing so could result in
6942 * memory aliases with conflicting memory types and sometimes MCEs.
6943 * We have to be careful as to what are honored and when.
6944 *
6945 * For MMIO, guest CD/MTRR are ignored. The EPT memory type is set to
6946 * UC. The effective memory type is UC or WC depending on guest PAT.
6947 * This was historically the source of MCEs and we want to be
6948 * conservative.
6949 *
6950 * When there is no need to deal with noncoherent DMA (e.g., no VT-d
6951 * or VT-d has snoop control), guest CD/MTRR/PAT are all ignored. The
6952 * EPT memory type is set to WB. The effective memory type is forced
6953 * WB.
6954 *
6955 * Otherwise, we trust guest. Guest CD/MTRR/PAT are all honored. The
6956 * EPT memory type is used to emulate guest CD/MTRR.
Sheng Yang522c68c2009-04-27 20:35:43 +08006957 */
Chia-I Wu222f06e2020-02-13 13:30:34 -08006958
Paolo Bonzini606decd2015-10-01 13:12:47 +02006959 if (is_mmio) {
6960 cache = MTRR_TYPE_UNCACHABLE;
6961 goto exit;
6962 }
6963
6964 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08006965 ipat = VMX_EPT_IPAT_BIT;
6966 cache = MTRR_TYPE_WRBACK;
6967 goto exit;
6968 }
6969
6970 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
6971 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02006972 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08006973 cache = MTRR_TYPE_WRBACK;
6974 else
6975 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08006976 goto exit;
6977 }
6978
Xiao Guangrongff536042015-06-15 16:55:22 +08006979 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08006980
6981exit:
6982 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08006983}
6984
Sean Christophersonb6247682021-08-10 10:19:51 -07006985static void vmcs_set_secondary_exec_control(struct vcpu_vmx *vmx, u32 new_ctl)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08006986{
6987 /*
6988 * These bits in the secondary execution controls field
6989 * are dynamic, the others are mostly based on the hypervisor
6990 * architecture and the guest's CPUID. Do not touch the
6991 * dynamic bits.
6992 */
6993 u32 mask =
6994 SECONDARY_EXEC_SHADOW_VMCS |
6995 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Paolo Bonzini0367f202016-07-12 10:44:55 +02006996 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
6997 SECONDARY_EXEC_DESC;
Xiao Guangrongfeda8052015-09-09 14:05:55 +08006998
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006999 u32 cur_ctl = secondary_exec_controls_get(vmx);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007000
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007001 secondary_exec_controls_set(vmx, (new_ctl & ~mask) | (cur_ctl & mask));
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007002}
7003
David Matlack8322ebb2016-11-29 18:14:09 -08007004/*
7005 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
7006 * (indicating "allowed-1") if they are supported in the guest's CPUID.
7007 */
7008static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
7009{
7010 struct vcpu_vmx *vmx = to_vmx(vcpu);
7011 struct kvm_cpuid_entry2 *entry;
7012
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01007013 vmx->nested.msrs.cr0_fixed1 = 0xffffffff;
7014 vmx->nested.msrs.cr4_fixed1 = X86_CR4_PCE;
David Matlack8322ebb2016-11-29 18:14:09 -08007015
7016#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
7017 if (entry && (entry->_reg & (_cpuid_mask))) \
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01007018 vmx->nested.msrs.cr4_fixed1 |= (_cr4_mask); \
David Matlack8322ebb2016-11-29 18:14:09 -08007019} while (0)
7020
7021 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
Sean Christopherson87382002019-12-17 13:32:42 -08007022 cr4_fixed1_update(X86_CR4_VME, edx, feature_bit(VME));
7023 cr4_fixed1_update(X86_CR4_PVI, edx, feature_bit(VME));
7024 cr4_fixed1_update(X86_CR4_TSD, edx, feature_bit(TSC));
7025 cr4_fixed1_update(X86_CR4_DE, edx, feature_bit(DE));
7026 cr4_fixed1_update(X86_CR4_PSE, edx, feature_bit(PSE));
7027 cr4_fixed1_update(X86_CR4_PAE, edx, feature_bit(PAE));
7028 cr4_fixed1_update(X86_CR4_MCE, edx, feature_bit(MCE));
7029 cr4_fixed1_update(X86_CR4_PGE, edx, feature_bit(PGE));
7030 cr4_fixed1_update(X86_CR4_OSFXSR, edx, feature_bit(FXSR));
7031 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, feature_bit(XMM));
7032 cr4_fixed1_update(X86_CR4_VMXE, ecx, feature_bit(VMX));
7033 cr4_fixed1_update(X86_CR4_SMXE, ecx, feature_bit(SMX));
7034 cr4_fixed1_update(X86_CR4_PCIDE, ecx, feature_bit(PCID));
7035 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, feature_bit(XSAVE));
David Matlack8322ebb2016-11-29 18:14:09 -08007036
7037 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
Sean Christopherson87382002019-12-17 13:32:42 -08007038 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, feature_bit(FSGSBASE));
7039 cr4_fixed1_update(X86_CR4_SMEP, ebx, feature_bit(SMEP));
7040 cr4_fixed1_update(X86_CR4_SMAP, ebx, feature_bit(SMAP));
7041 cr4_fixed1_update(X86_CR4_PKE, ecx, feature_bit(PKU));
7042 cr4_fixed1_update(X86_CR4_UMIP, ecx, feature_bit(UMIP));
7043 cr4_fixed1_update(X86_CR4_LA57, ecx, feature_bit(LA57));
David Matlack8322ebb2016-11-29 18:14:09 -08007044
7045#undef cr4_fixed1_update
7046}
7047
Liran Alon5f76f6f2018-09-14 03:25:52 +03007048static void nested_vmx_entry_exit_ctls_update(struct kvm_vcpu *vcpu)
7049{
7050 struct vcpu_vmx *vmx = to_vmx(vcpu);
7051
7052 if (kvm_mpx_supported()) {
7053 bool mpx_enabled = guest_cpuid_has(vcpu, X86_FEATURE_MPX);
7054
7055 if (mpx_enabled) {
7056 vmx->nested.msrs.entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
7057 vmx->nested.msrs.exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
7058 } else {
7059 vmx->nested.msrs.entry_ctls_high &= ~VM_ENTRY_LOAD_BNDCFGS;
7060 vmx->nested.msrs.exit_ctls_high &= ~VM_EXIT_CLEAR_BNDCFGS;
7061 }
7062 }
7063}
7064
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007065static void update_intel_pt_cfg(struct kvm_vcpu *vcpu)
7066{
7067 struct vcpu_vmx *vmx = to_vmx(vcpu);
7068 struct kvm_cpuid_entry2 *best = NULL;
7069 int i;
7070
7071 for (i = 0; i < PT_CPUID_LEAVES; i++) {
7072 best = kvm_find_cpuid_entry(vcpu, 0x14, i);
7073 if (!best)
7074 return;
7075 vmx->pt_desc.caps[CPUID_EAX + i*PT_CPUID_REGS_NUM] = best->eax;
7076 vmx->pt_desc.caps[CPUID_EBX + i*PT_CPUID_REGS_NUM] = best->ebx;
7077 vmx->pt_desc.caps[CPUID_ECX + i*PT_CPUID_REGS_NUM] = best->ecx;
7078 vmx->pt_desc.caps[CPUID_EDX + i*PT_CPUID_REGS_NUM] = best->edx;
7079 }
7080
7081 /* Get the number of configurable Address Ranges for filtering */
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08007082 vmx->pt_desc.num_address_ranges = intel_pt_validate_cap(vmx->pt_desc.caps,
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007083 PT_CAP_num_address_ranges);
7084
7085 /* Initialize and clear the no dependency bits */
7086 vmx->pt_desc.ctl_bitmask = ~(RTIT_CTL_TRACEEN | RTIT_CTL_OS |
Xiaoyao Lie099f3eb2021-08-27 15:02:46 +08007087 RTIT_CTL_USR | RTIT_CTL_TSC_EN | RTIT_CTL_DISRETC |
7088 RTIT_CTL_BRANCH_EN);
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007089
7090 /*
7091 * If CPUID.(EAX=14H,ECX=0):EBX[0]=1 CR3Filter can be set otherwise
7092 * will inject an #GP
7093 */
7094 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_cr3_filtering))
7095 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_CR3EN;
7096
7097 /*
7098 * If CPUID.(EAX=14H,ECX=0):EBX[1]=1 CYCEn, CycThresh and
7099 * PSBFreq can be set
7100 */
7101 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc))
7102 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_CYCLEACC |
7103 RTIT_CTL_CYC_THRESH | RTIT_CTL_PSB_FREQ);
7104
7105 /*
Xiaoyao Lie099f3eb2021-08-27 15:02:46 +08007106 * If CPUID.(EAX=14H,ECX=0):EBX[3]=1 MTCEn and MTCFreq can be set
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007107 */
7108 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc))
7109 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_MTC_EN |
Xiaoyao Lie099f3eb2021-08-27 15:02:46 +08007110 RTIT_CTL_MTC_RANGE);
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007111
7112 /* If CPUID.(EAX=14H,ECX=0):EBX[4]=1 FUPonPTW and PTWEn can be set */
7113 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_ptwrite))
7114 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_FUP_ON_PTW |
7115 RTIT_CTL_PTW_EN);
7116
7117 /* If CPUID.(EAX=14H,ECX=0):EBX[5]=1 PwrEvEn can be set */
7118 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_power_event_trace))
7119 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_PWR_EVT_EN;
7120
7121 /* If CPUID.(EAX=14H,ECX=0):ECX[0]=1 ToPA can be set */
7122 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_topa_output))
7123 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_TOPA;
7124
Ingo Molnard9f6e122021-03-18 15:28:01 +01007125 /* If CPUID.(EAX=14H,ECX=0):ECX[3]=1 FabricEn can be set */
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007126 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_output_subsys))
7127 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_FABRIC_EN;
7128
7129 /* unmask address range configure area */
Xiaoyao Lif4d3a902021-08-27 15:02:45 +08007130 for (i = 0; i < vmx->pt_desc.num_address_ranges; i++)
Gustavo A. R. Silvad14eff12018-12-26 14:40:59 -06007131 vmx->pt_desc.ctl_bitmask &= ~(0xfULL << (32 + i * 4));
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007132}
7133
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08007134static void vmx_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
Sheng Yang0e851882009-12-18 16:48:46 +08007135{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007136 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007137
Aaron Lewis72041602019-10-21 16:30:20 -07007138 /* xsaves_enabled is recomputed in vmx_compute_secondary_exec_control(). */
7139 vcpu->arch.xsaves_enabled = false;
7140
Sean Christopherson432979b2021-07-13 09:33:12 -07007141 vmx_setup_uret_msrs(vmx);
7142
Sean Christophersonb6247682021-08-10 10:19:51 -07007143 if (cpu_has_secondary_exec_ctrls())
7144 vmcs_set_secondary_exec_control(vmx,
7145 vmx_secondary_exec_control(vmx));
Mao, Junjiead756a12012-07-02 01:18:48 +00007146
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007147 if (nested_vmx_allowed(vcpu))
7148 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007149 FEAT_CTL_VMX_ENABLED_INSIDE_SMX |
7150 FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX;
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007151 else
7152 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007153 ~(FEAT_CTL_VMX_ENABLED_INSIDE_SMX |
7154 FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX);
David Matlack8322ebb2016-11-29 18:14:09 -08007155
Liran Alon5f76f6f2018-09-14 03:25:52 +03007156 if (nested_vmx_allowed(vcpu)) {
David Matlack8322ebb2016-11-29 18:14:09 -08007157 nested_vmx_cr_fixed1_bits_update(vcpu);
Liran Alon5f76f6f2018-09-14 03:25:52 +03007158 nested_vmx_entry_exit_ctls_update(vcpu);
7159 }
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007160
7161 if (boot_cpu_has(X86_FEATURE_INTEL_PT) &&
7162 guest_cpuid_has(vcpu, X86_FEATURE_INTEL_PT))
7163 update_intel_pt_cfg(vcpu);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007164
7165 if (boot_cpu_has(X86_FEATURE_RTM)) {
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07007166 struct vmx_uret_msr *msr;
Sean Christophersond85a8032020-09-23 11:04:06 -07007167 msr = vmx_find_uret_msr(vmx, MSR_IA32_TSX_CTRL);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007168 if (msr) {
7169 bool enabled = guest_cpuid_has(vcpu, X86_FEATURE_RTM);
Sean Christopherson7bf662b2020-09-23 11:04:07 -07007170 vmx_set_guest_uret_msr(vmx, msr, enabled ? 0 : TSX_CTRL_RTM_DISABLE);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007171 }
7172 }
Sean Christophersona6337a32020-09-29 21:16:57 -07007173
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07007174 set_cr4_guest_host_mask(vmx);
7175
Sean Christopherson72add912021-04-12 16:21:42 +12007176 vmx_write_encls_bitmap(vcpu, NULL);
7177 if (guest_cpuid_has(vcpu, X86_FEATURE_SGX))
7178 vmx->msr_ia32_feature_control_valid_bits |= FEAT_CTL_SGX_ENABLED;
7179 else
7180 vmx->msr_ia32_feature_control_valid_bits &= ~FEAT_CTL_SGX_ENABLED;
7181
7182 if (guest_cpuid_has(vcpu, X86_FEATURE_SGX_LC))
7183 vmx->msr_ia32_feature_control_valid_bits |=
7184 FEAT_CTL_SGX_LC_ENABLED;
7185 else
7186 vmx->msr_ia32_feature_control_valid_bits &=
7187 ~FEAT_CTL_SGX_LC_ENABLED;
7188
Sean Christophersona6337a32020-09-29 21:16:57 -07007189 /* Refresh #PF interception to account for MAXPHYADDR changes. */
Jason Baronb6a7cc32021-01-14 22:27:54 -05007190 vmx_update_exception_bitmap(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08007191}
7192
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007193static __init void vmx_set_cpu_caps(void)
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007194{
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007195 kvm_set_cpu_caps();
7196
7197 /* CPUID 0x1 */
7198 if (nested)
7199 kvm_cpu_cap_set(X86_FEATURE_VMX);
7200
7201 /* CPUID 0x7 */
Sean Christopherson8721f5b2020-03-02 15:56:45 -08007202 if (kvm_mpx_supported())
7203 kvm_cpu_cap_check_and_set(X86_FEATURE_MPX);
Sean Christophersone4203332021-02-11 16:34:10 -08007204 if (!cpu_has_vmx_invpcid())
7205 kvm_cpu_cap_clear(X86_FEATURE_INVPCID);
Sean Christopherson8721f5b2020-03-02 15:56:45 -08007206 if (vmx_pt_mode_is_host_guest())
7207 kvm_cpu_cap_check_and_set(X86_FEATURE_INTEL_PT);
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007208
Sean Christopherson72add912021-04-12 16:21:42 +12007209 if (!enable_sgx) {
7210 kvm_cpu_cap_clear(X86_FEATURE_SGX);
7211 kvm_cpu_cap_clear(X86_FEATURE_SGX_LC);
7212 kvm_cpu_cap_clear(X86_FEATURE_SGX1);
7213 kvm_cpu_cap_clear(X86_FEATURE_SGX2);
7214 }
7215
Sean Christopherson90d2f602020-03-02 15:56:47 -08007216 if (vmx_umip_emulated())
7217 kvm_cpu_cap_set(X86_FEATURE_UMIP);
7218
Sean Christophersonb3d895d52020-03-02 15:56:44 -08007219 /* CPUID 0xD.1 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01007220 supported_xss = 0;
Sean Christophersonbecdad82020-09-23 09:50:45 -07007221 if (!cpu_has_vmx_xsaves())
Sean Christophersonb3d895d52020-03-02 15:56:44 -08007222 kvm_cpu_cap_clear(X86_FEATURE_XSAVES);
7223
Sean Christopherson8aec21c2021-05-04 10:17:20 -07007224 /* CPUID 0x80000001 and 0x7 (RDPID) */
7225 if (!cpu_has_vmx_rdtscp()) {
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007226 kvm_cpu_cap_clear(X86_FEATURE_RDTSCP);
Sean Christopherson8aec21c2021-05-04 10:17:20 -07007227 kvm_cpu_cap_clear(X86_FEATURE_RDPID);
7228 }
Maxim Levitsky0abcc8f2020-05-23 19:14:54 +03007229
Sean Christophersonbecdad82020-09-23 09:50:45 -07007230 if (cpu_has_vmx_waitpkg())
Maxim Levitsky0abcc8f2020-05-23 19:14:54 +03007231 kvm_cpu_cap_check_and_set(X86_FEATURE_WAITPKG);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007232}
7233
Sean Christophersond264ee02018-08-27 15:21:12 -07007234static void vmx_request_immediate_exit(struct kvm_vcpu *vcpu)
7235{
7236 to_vmx(vcpu)->req_immediate_exit = true;
7237}
7238
Oliver Upton35a57132020-02-04 15:26:31 -08007239static int vmx_check_intercept_io(struct kvm_vcpu *vcpu,
7240 struct x86_instruction_info *info)
7241{
7242 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7243 unsigned short port;
7244 bool intercept;
7245 int size;
7246
7247 if (info->intercept == x86_intercept_in ||
7248 info->intercept == x86_intercept_ins) {
7249 port = info->src_val;
7250 size = info->dst_bytes;
7251 } else {
7252 port = info->dst_val;
7253 size = info->src_bytes;
7254 }
7255
7256 /*
7257 * If the 'use IO bitmaps' VM-execution control is 0, IO instruction
7258 * VM-exits depend on the 'unconditional IO exiting' VM-execution
7259 * control.
7260 *
7261 * Otherwise, IO instruction VM-exits are controlled by the IO bitmaps.
7262 */
7263 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
7264 intercept = nested_cpu_has(vmcs12,
7265 CPU_BASED_UNCOND_IO_EXITING);
7266 else
7267 intercept = nested_vmx_check_io_bitmaps(vcpu, port, size);
7268
Oliver Upton86f7e902020-02-29 11:30:14 -08007269 /* FIXME: produce nested vmexit and return X86EMUL_INTERCEPTED. */
Oliver Upton35a57132020-02-04 15:26:31 -08007270 return intercept ? X86EMUL_UNHANDLEABLE : X86EMUL_CONTINUE;
7271}
7272
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007273static int vmx_check_intercept(struct kvm_vcpu *vcpu,
7274 struct x86_instruction_info *info,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007275 enum x86_intercept_stage stage,
7276 struct x86_exception *exception)
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007277{
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007278 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007279
Oliver Upton35a57132020-02-04 15:26:31 -08007280 switch (info->intercept) {
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007281 /*
7282 * RDPID causes #UD if disabled through secondary execution controls.
7283 * Because it is marked as EmulateOnUD, we need to intercept it here.
Sean Christopherson2183de42021-05-04 10:17:23 -07007284 * Note, RDPID is hidden behind ENABLE_RDTSCP.
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007285 */
Sean Christopherson2183de42021-05-04 10:17:23 -07007286 case x86_intercept_rdpid:
Sean Christopherson7f3603b2020-09-23 09:50:47 -07007287 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_RDTSCP)) {
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007288 exception->vector = UD_VECTOR;
7289 exception->error_code_valid = false;
Oliver Upton35a57132020-02-04 15:26:31 -08007290 return X86EMUL_PROPAGATE_FAULT;
7291 }
7292 break;
7293
7294 case x86_intercept_in:
7295 case x86_intercept_ins:
7296 case x86_intercept_out:
7297 case x86_intercept_outs:
7298 return vmx_check_intercept_io(vcpu, info);
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007299
Oliver Upton86f7e902020-02-29 11:30:14 -08007300 case x86_intercept_lgdt:
7301 case x86_intercept_lidt:
7302 case x86_intercept_lldt:
7303 case x86_intercept_ltr:
7304 case x86_intercept_sgdt:
7305 case x86_intercept_sidt:
7306 case x86_intercept_sldt:
7307 case x86_intercept_str:
7308 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC))
7309 return X86EMUL_CONTINUE;
7310
7311 /* FIXME: produce nested vmexit and return X86EMUL_INTERCEPTED. */
7312 break;
7313
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007314 /* TODO: check more intercepts... */
Oliver Upton35a57132020-02-04 15:26:31 -08007315 default:
7316 break;
7317 }
7318
Paolo Bonzini07721fe2020-02-04 15:26:29 -08007319 return X86EMUL_UNHANDLEABLE;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007320}
7321
Yunhong Jiang64672c92016-06-13 14:19:59 -07007322#ifdef CONFIG_X86_64
7323/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
7324static inline int u64_shl_div_u64(u64 a, unsigned int shift,
7325 u64 divisor, u64 *result)
7326{
7327 u64 low = a << shift, high = a >> (64 - shift);
7328
7329 /* To avoid the overflow on divq */
7330 if (high >= divisor)
7331 return 1;
7332
7333 /* Low hold the result, high hold rem which is discarded */
7334 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
7335 "rm" (divisor), "0" (low), "1" (high));
7336 *result = low;
7337
7338 return 0;
7339}
7340
Sean Christophersonf9927982019-04-16 13:32:46 -07007341static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc,
7342 bool *expired)
Yunhong Jiang64672c92016-06-13 14:19:59 -07007343{
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007344 struct vcpu_vmx *vmx;
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007345 u64 tscl, guest_tscl, delta_tsc, lapic_timer_advance_cycles;
Sean Christopherson39497d72019-04-17 10:15:32 -07007346 struct kvm_timer *ktimer = &vcpu->arch.apic->lapic_timer;
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007347
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007348 vmx = to_vmx(vcpu);
7349 tscl = rdtsc();
7350 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
7351 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Sean Christopherson39497d72019-04-17 10:15:32 -07007352 lapic_timer_advance_cycles = nsec_to_cycles(vcpu,
7353 ktimer->timer_advance_ns);
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007354
7355 if (delta_tsc > lapic_timer_advance_cycles)
7356 delta_tsc -= lapic_timer_advance_cycles;
7357 else
7358 delta_tsc = 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007359
7360 /* Convert to host delta tsc if tsc scaling is enabled */
Ilias Stamatis805d7052021-05-26 19:44:09 +01007361 if (vcpu->arch.l1_tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
Sean Christopherson0967fa12019-04-16 13:32:48 -07007362 delta_tsc && u64_shl_div_u64(delta_tsc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007363 kvm_tsc_scaling_ratio_frac_bits,
Ilias Stamatis805d7052021-05-26 19:44:09 +01007364 vcpu->arch.l1_tsc_scaling_ratio, &delta_tsc))
Yunhong Jiang64672c92016-06-13 14:19:59 -07007365 return -ERANGE;
7366
7367 /*
7368 * If the delta tsc can't fit in the 32 bit after the multi shift,
7369 * we can't use the preemption timer.
7370 * It's possible that it fits on later vmentries, but checking
7371 * on every vmentry is costly so we just use an hrtimer.
7372 */
7373 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
7374 return -ERANGE;
7375
7376 vmx->hv_deadline_tsc = tscl + delta_tsc;
Sean Christophersonf9927982019-04-16 13:32:46 -07007377 *expired = !delta_tsc;
7378 return 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007379}
7380
7381static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
7382{
Sean Christophersonf459a702018-08-27 15:21:11 -07007383 to_vmx(vcpu)->hv_deadline_tsc = -1;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007384}
7385#endif
7386
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007387static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007388{
Wanpeng Lib31c1142018-03-12 04:53:04 -07007389 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007390 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007391}
7392
Makarand Sonarea85863c2021-02-12 16:50:12 -08007393void vmx_update_cpu_dirty_logging(struct kvm_vcpu *vcpu)
7394{
7395 struct vcpu_vmx *vmx = to_vmx(vcpu);
7396
7397 if (is_guest_mode(vcpu)) {
7398 vmx->nested.update_vmcs01_cpu_dirty_logging = true;
7399 return;
7400 }
7401
7402 /*
7403 * Note, cpu_dirty_logging_count can be changed concurrent with this
7404 * code, but in that case another update request will be made and so
7405 * the guest will never run with a stale PML value.
7406 */
7407 if (vcpu->kvm->arch.cpu_dirty_logging_count)
7408 secondary_exec_controls_setbit(vmx, SECONDARY_EXEC_ENABLE_PML);
7409 else
7410 secondary_exec_controls_clearbit(vmx, SECONDARY_EXEC_ENABLE_PML);
7411}
7412
Yunhong Jiangbc225122016-06-13 14:19:58 -07007413static int vmx_pre_block(struct kvm_vcpu *vcpu)
7414{
7415 if (pi_pre_block(vcpu))
7416 return 1;
7417
Yunhong Jiang64672c92016-06-13 14:19:59 -07007418 if (kvm_lapic_hv_timer_in_use(vcpu))
7419 kvm_lapic_switch_to_sw_timer(vcpu);
7420
Yunhong Jiangbc225122016-06-13 14:19:58 -07007421 return 0;
7422}
7423
Yunhong Jiangbc225122016-06-13 14:19:58 -07007424static void vmx_post_block(struct kvm_vcpu *vcpu)
7425{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007426 if (kvm_x86_ops.set_hv_timer)
Yunhong Jiang64672c92016-06-13 14:19:59 -07007427 kvm_lapic_switch_to_hv_timer(vcpu);
7428
Yunhong Jiangbc225122016-06-13 14:19:58 -07007429 pi_post_block(vcpu);
7430}
7431
Ashok Rajc45dcc72016-06-22 14:59:56 +08007432static void vmx_setup_mce(struct kvm_vcpu *vcpu)
7433{
7434 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
7435 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007436 FEAT_CTL_LMCE_ENABLED;
Ashok Rajc45dcc72016-06-22 14:59:56 +08007437 else
7438 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007439 ~FEAT_CTL_LMCE_ENABLED;
Ashok Rajc45dcc72016-06-22 14:59:56 +08007440}
7441
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007442static int vmx_smi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Ladi Prosek72d7b372017-10-11 16:54:41 +02007443{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007444 /* we need a nested vmexit to enter SMM, postpone if run is pending */
7445 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007446 return -EBUSY;
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -04007447 return !is_smm(vcpu);
Ladi Prosek72d7b372017-10-11 16:54:41 +02007448}
7449
Sean Christophersonecc513e2021-06-09 11:56:19 -07007450static int vmx_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007451{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007452 struct vcpu_vmx *vmx = to_vmx(vcpu);
7453
7454 vmx->nested.smm.guest_mode = is_guest_mode(vcpu);
7455 if (vmx->nested.smm.guest_mode)
7456 nested_vmx_vmexit(vcpu, -1, 0, 0);
7457
7458 vmx->nested.smm.vmxon = vmx->nested.vmxon;
7459 vmx->nested.vmxon = false;
Wanpeng Licaa057a2018-03-12 04:53:03 -07007460 vmx_clear_hlt(vcpu);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007461 return 0;
7462}
7463
Sean Christophersonecc513e2021-06-09 11:56:19 -07007464static int vmx_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007465{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007466 struct vcpu_vmx *vmx = to_vmx(vcpu);
7467 int ret;
7468
7469 if (vmx->nested.smm.vmxon) {
7470 vmx->nested.vmxon = true;
7471 vmx->nested.smm.vmxon = false;
7472 }
7473
7474 if (vmx->nested.smm.guest_mode) {
Sean Christophersona633e412018-09-26 09:23:47 -07007475 ret = nested_vmx_enter_non_root_mode(vcpu, false);
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007476 if (ret)
7477 return ret;
7478
7479 vmx->nested.smm.guest_mode = false;
7480 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02007481 return 0;
7482}
7483
Jason Baronb6a7cc32021-01-14 22:27:54 -05007484static void vmx_enable_smi_window(struct kvm_vcpu *vcpu)
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007485{
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007486 /* RSM will cause a vmexit anyway. */
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007487}
7488
Liran Alon4b9852f2019-08-26 13:24:49 +03007489static bool vmx_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
7490{
Paolo Bonzini1c96dcc2020-11-05 11:20:49 -05007491 return to_vmx(vcpu)->nested.vmxon && !is_guest_mode(vcpu);
Liran Alon4b9852f2019-08-26 13:24:49 +03007492}
7493
Jim Mattson93dff2f2020-05-08 13:36:43 -07007494static void vmx_migrate_timers(struct kvm_vcpu *vcpu)
7495{
7496 if (is_guest_mode(vcpu)) {
7497 struct hrtimer *timer = &to_vmx(vcpu)->nested.preemption_timer;
7498
7499 if (hrtimer_try_to_cancel(timer) == 1)
7500 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
7501 }
7502}
7503
Sean Christopherson6e4fd062020-03-21 13:26:01 -07007504static void hardware_unsetup(void)
Sean Christophersona3203382018-12-03 13:53:11 -08007505{
Sean Christophersonec5a4912021-10-08 17:11:05 -07007506 kvm_set_posted_intr_wakeup_handler(NULL);
7507
Sean Christophersona3203382018-12-03 13:53:11 -08007508 if (nested)
7509 nested_vmx_hardware_unsetup();
7510
7511 free_kvm_area();
7512}
7513
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007514static bool vmx_check_apicv_inhibit_reasons(ulong bit)
7515{
Suravee Suthikulpanitf4fdc0a2019-11-14 14:15:13 -06007516 ulong supported = BIT(APICV_INHIBIT_REASON_DISABLE) |
Maxim Levitskycae72dc2021-11-08 11:02:45 +02007517 BIT(APICV_INHIBIT_REASON_HYPERV) |
7518 BIT(APICV_INHIBIT_REASON_BLOCKIRQ);
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007519
7520 return supported & BIT(bit);
7521}
7522
Sean Christophersone286ac02020-03-21 13:26:02 -07007523static struct kvm_x86_ops vmx_x86_ops __initdata = {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07007524 .name = "kvm_intel",
7525
Avi Kivity6aa8b732006-12-10 02:21:36 -08007526 .hardware_unsetup = hardware_unsetup,
Sean Christopherson484014f2020-03-21 13:25:57 -07007527
Avi Kivity6aa8b732006-12-10 02:21:36 -08007528 .hardware_enable = hardware_enable,
7529 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08007530 .cpu_has_accelerated_tpr = report_flexpriority,
Tom Lendackybc226f02018-05-10 22:06:39 +02007531 .has_emulated_msr = vmx_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007532
Sean Christopherson484014f2020-03-21 13:25:57 -07007533 .vm_size = sizeof(struct kvm_vmx),
Wanpeng Lib31c1142018-03-12 04:53:04 -07007534 .vm_init = vmx_vm_init,
7535
Avi Kivity6aa8b732006-12-10 02:21:36 -08007536 .vcpu_create = vmx_create_vcpu,
7537 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007538 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007539
Sean Christopherson6d6095b2018-07-23 12:32:44 -07007540 .prepare_guest_switch = vmx_prepare_switch_to_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007541 .vcpu_load = vmx_vcpu_load,
7542 .vcpu_put = vmx_vcpu_put,
7543
Jason Baronb6a7cc32021-01-14 22:27:54 -05007544 .update_exception_bitmap = vmx_update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -06007545 .get_msr_feature = vmx_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007546 .get_msr = vmx_get_msr,
7547 .set_msr = vmx_set_msr,
7548 .get_segment_base = vmx_get_segment_base,
7549 .get_segment = vmx_get_segment,
7550 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007551 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007552 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
7553 .set_cr0 = vmx_set_cr0,
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07007554 .is_valid_cr4 = vmx_is_valid_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007555 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007556 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007557 .get_idt = vmx_get_idt,
7558 .set_idt = vmx_set_idt,
7559 .get_gdt = vmx_get_gdt,
7560 .set_gdt = vmx_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03007561 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007562 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007563 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007564 .get_rflags = vmx_get_rflags,
7565 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007566
Sean Christopherson77809382020-03-20 14:28:18 -07007567 .tlb_flush_all = vmx_flush_tlb_all,
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07007568 .tlb_flush_current = vmx_flush_tlb_current,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007569 .tlb_flush_gva = vmx_flush_tlb_gva,
Sean Christophersone64419d2020-03-20 14:28:10 -07007570 .tlb_flush_guest = vmx_flush_tlb_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007571
Avi Kivity6aa8b732006-12-10 02:21:36 -08007572 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02007573 .handle_exit = vmx_handle_exit,
Oliver Upton5ef8acb2020-02-07 02:36:07 -08007574 .skip_emulated_instruction = vmx_skip_emulated_instruction,
7575 .update_emulated_instruction = vmx_update_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007576 .set_interrupt_shadow = vmx_set_interrupt_shadow,
7577 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007578 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007579 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007580 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007581 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007582 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007583 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007584 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007585 .get_nmi_mask = vmx_get_nmi_mask,
7586 .set_nmi_mask = vmx_set_nmi_mask,
Jason Baronb6a7cc32021-01-14 22:27:54 -05007587 .enable_nmi_window = vmx_enable_nmi_window,
7588 .enable_irq_window = vmx_enable_irq_window,
7589 .update_cr8_intercept = vmx_update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007590 .set_virtual_apic_mode = vmx_set_virtual_apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +08007591 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007592 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007593 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +01007594 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007595 .check_apicv_inhibit_reasons = vmx_check_apicv_inhibit_reasons,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007596 .hwapic_irr_update = vmx_hwapic_irr_update,
7597 .hwapic_isr_update = vmx_hwapic_isr_update,
Liran Alone6c67d82018-09-04 10:56:52 +03007598 .guest_apic_has_interrupt = vmx_guest_apic_has_interrupt,
Yang Zhanga20ed542013-04-11 19:25:15 +08007599 .sync_pir_to_irr = vmx_sync_pir_to_irr,
7600 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007601 .dy_apicv_has_pending_interrupt = pi_has_pending_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007602
Izik Eiduscbc94022007-10-25 00:29:55 +02007603 .set_tss_addr = vmx_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007604 .set_identity_map_addr = vmx_set_identity_map_addr,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007605 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007606
Avi Kivity586f9602010-11-18 13:09:54 +02007607 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007608
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08007609 .vcpu_after_set_cpuid = vmx_vcpu_after_set_cpuid,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007610
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007611 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007612
Ilias Stamatis307a94c2021-05-26 19:44:13 +01007613 .get_l2_tsc_offset = vmx_get_l2_tsc_offset,
7614 .get_l2_tsc_multiplier = vmx_get_l2_tsc_multiplier,
Ilias Stamatisedcfe542021-05-26 19:44:15 +01007615 .write_tsc_offset = vmx_write_tsc_offset,
Ilias Stamatis1ab92872021-06-07 11:54:38 +01007616 .write_tsc_multiplier = vmx_write_tsc_multiplier,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007617
Sean Christopherson484014f2020-03-21 13:25:57 -07007618 .load_mmu_pgd = vmx_load_mmu_pgd,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007619
7620 .check_intercept = vmx_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07007621 .handle_exit_irqoff = vmx_handle_exit_irqoff,
Jan Kiszkab6b8a142014-03-07 20:03:12 +01007622
Sean Christophersond264ee02018-08-27 15:21:12 -07007623 .request_immediate_exit = vmx_request_immediate_exit,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007624
7625 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +08007626
Sean Christopherson6dd03802021-02-12 16:50:09 -08007627 .cpu_dirty_log_size = PML_ENTITY_NUM,
Makarand Sonarea85863c2021-02-12 16:50:12 -08007628 .update_cpu_dirty_logging = vmx_update_cpu_dirty_logging,
Wei Huang25462f72015-06-19 15:45:05 +02007629
Feng Wubf9f6ac2015-09-18 22:29:55 +08007630 .pre_block = vmx_pre_block,
7631 .post_block = vmx_post_block,
7632
Wei Huang25462f72015-06-19 15:45:05 +02007633 .pmu_ops = &intel_pmu_ops,
Paolo Bonzini33b22172020-04-17 10:24:18 -04007634 .nested_ops = &vmx_nested_ops,
Feng Wuefc64402015-09-18 22:29:51 +08007635
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007636 .update_pi_irte = pi_update_irte,
Marcelo Tosattia2486022021-05-26 14:20:14 -03007637 .start_assignment = vmx_pi_start_assignment,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007638
7639#ifdef CONFIG_X86_64
7640 .set_hv_timer = vmx_set_hv_timer,
7641 .cancel_hv_timer = vmx_cancel_hv_timer,
7642#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +08007643
7644 .setup_mce = vmx_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007645
Ladi Prosek72d7b372017-10-11 16:54:41 +02007646 .smi_allowed = vmx_smi_allowed,
Sean Christophersonecc513e2021-06-09 11:56:19 -07007647 .enter_smm = vmx_enter_smm,
7648 .leave_smm = vmx_leave_smm,
Jason Baronb6a7cc32021-01-14 22:27:54 -05007649 .enable_smi_window = vmx_enable_smi_window,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007650
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007651 .can_emulate_instruction = vmx_can_emulate_instruction,
Liran Alon4b9852f2019-08-26 13:24:49 +03007652 .apic_init_signal_blocked = vmx_apic_init_signal_blocked,
Jim Mattson93dff2f2020-05-08 13:36:43 -07007653 .migrate_timers = vmx_migrate_timers,
Alexander Graf3eb90012020-09-25 16:34:20 +02007654
7655 .msr_filter_changed = vmx_msr_filter_changed,
Paolo Bonzinif9a4d622020-12-14 10:26:51 -05007656 .complete_emulated_msr = kvm_complete_insn_gp,
Tom Lendacky647daca2021-01-04 14:20:01 -06007657
7658 .vcpu_deliver_sipi_vector = kvm_vcpu_deliver_sipi_vector,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007659};
7660
Sean Christophersonb6194b92021-05-04 10:17:27 -07007661static __init void vmx_setup_user_return_msrs(void)
7662{
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -07007663
7664 /*
7665 * Though SYSCALL is only supported in 64-bit mode on Intel CPUs, kvm
7666 * will emulate SYSCALL in legacy mode if the vendor string in guest
7667 * CPUID.0:{EBX,ECX,EDX} is "AuthenticAMD" or "AMDisbetter!" To
7668 * support this emulation, MSR_STAR is included in the list for i386,
7669 * but is never loaded into hardware. MSR_CSTAR is also never loaded
7670 * into hardware and is here purely for emulation purposes.
7671 */
7672 const u32 vmx_uret_msrs_list[] = {
7673 #ifdef CONFIG_X86_64
7674 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
7675 #endif
7676 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
7677 MSR_IA32_TSX_CTRL,
7678 };
Sean Christophersonb6194b92021-05-04 10:17:27 -07007679 int i;
7680
7681 BUILD_BUG_ON(ARRAY_SIZE(vmx_uret_msrs_list) != MAX_NR_USER_RETURN_MSRS);
7682
Sean Christophersone5fda4b2021-05-04 10:17:32 -07007683 for (i = 0; i < ARRAY_SIZE(vmx_uret_msrs_list); ++i)
7684 kvm_add_user_return_msr(vmx_uret_msrs_list[i]);
Sean Christophersonb6194b92021-05-04 10:17:27 -07007685}
7686
Avi Kivity6aa8b732006-12-10 02:21:36 -08007687static __init int hardware_setup(void)
7688{
7689 unsigned long host_bndcfgs;
7690 struct desc_ptr dt;
Sean Christophersonb6194b92021-05-04 10:17:27 -07007691 int r, ept_lpage_level;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007692
Avi Kivity6aa8b732006-12-10 02:21:36 -08007693 store_idt(&dt);
7694 host_idt_base = dt.address;
7695
Sean Christophersonb6194b92021-05-04 10:17:27 -07007696 vmx_setup_user_return_msrs();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007697
7698 if (setup_vmcs_config(&vmcs_config, &vmx_capability) < 0)
7699 return -EIO;
7700
7701 if (boot_cpu_has(X86_FEATURE_NX))
7702 kvm_enable_efer_bits(EFER_NX);
7703
7704 if (boot_cpu_has(X86_FEATURE_MPX)) {
7705 rdmsrl(MSR_IA32_BNDCFGS, host_bndcfgs);
7706 WARN_ONCE(host_bndcfgs, "KVM: BNDCFGS in host will be lost");
7707 }
7708
Sean Christopherson7f5581f2020-03-02 15:56:24 -08007709 if (!cpu_has_vmx_mpx())
Sean Christophersoncfc48182020-03-02 15:56:23 -08007710 supported_xcr0 &= ~(XFEATURE_MASK_BNDREGS |
7711 XFEATURE_MASK_BNDCSR);
7712
Avi Kivity6aa8b732006-12-10 02:21:36 -08007713 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
7714 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
7715 enable_vpid = 0;
7716
7717 if (!cpu_has_vmx_ept() ||
7718 !cpu_has_vmx_ept_4levels() ||
7719 !cpu_has_vmx_ept_mt_wb() ||
7720 !cpu_has_vmx_invept_global())
7721 enable_ept = 0;
7722
Sean Christopherson23f079c2021-06-15 09:45:32 -07007723 /* NX support is required for shadow paging. */
7724 if (!enable_ept && !boot_cpu_has(X86_FEATURE_NX)) {
7725 pr_err_ratelimited("kvm: NX (Execute Disable) not supported\n");
7726 return -EOPNOTSUPP;
7727 }
7728
Avi Kivity6aa8b732006-12-10 02:21:36 -08007729 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
7730 enable_ept_ad_bits = 0;
7731
7732 if (!cpu_has_vmx_unrestricted_guest() || !enable_ept)
7733 enable_unrestricted_guest = 0;
7734
7735 if (!cpu_has_vmx_flexpriority())
7736 flexpriority_enabled = 0;
7737
7738 if (!cpu_has_virtual_nmis())
7739 enable_vnmi = 0;
7740
7741 /*
7742 * set_apic_access_page_addr() is used to reload apic access
Avi Kivity873a7c42006-12-13 00:34:14 -08007743 * page upon invalidation. No need to do anything if not
Avi Kivity6aa8b732006-12-10 02:21:36 -08007744 * using the APIC_ACCESS_ADDR VMCS field.
7745 */
7746 if (!flexpriority_enabled)
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007747 vmx_x86_ops.set_apic_access_page_addr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007748
7749 if (!cpu_has_vmx_tpr_shadow())
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007750 vmx_x86_ops.update_cr8_intercept = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007751
Avi Kivity6aa8b732006-12-10 02:21:36 -08007752#if IS_ENABLED(CONFIG_HYPERV)
7753 if (ms_hyperv.nested_features & HV_X64_NESTED_GUEST_MAPPING_FLUSH
7754 && enable_ept) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007755 vmx_x86_ops.tlb_remote_flush = hv_remote_flush_tlb;
7756 vmx_x86_ops.tlb_remote_flush_with_range =
Avi Kivity6aa8b732006-12-10 02:21:36 -08007757 hv_remote_flush_tlb_with_range;
7758 }
7759#endif
7760
7761 if (!cpu_has_vmx_ple()) {
7762 ple_gap = 0;
7763 ple_window = 0;
7764 ple_window_grow = 0;
7765 ple_window_max = 0;
7766 ple_window_shrink = 0;
7767 }
7768
7769 if (!cpu_has_vmx_apicv()) {
7770 enable_apicv = 0;
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007771 vmx_x86_ops.sync_pir_to_irr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007772 }
7773
7774 if (cpu_has_vmx_tsc_scaling()) {
7775 kvm_has_tsc_control = true;
7776 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
7777 kvm_tsc_scaling_ratio_frac_bits = 48;
7778 }
7779
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08007780 kvm_has_bus_lock_exit = cpu_has_vmx_bus_lock_detection();
7781
Avi Kivity6aa8b732006-12-10 02:21:36 -08007782 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
7783
7784 if (enable_ept)
Sean Christophersone7b7bde2021-02-25 12:47:42 -08007785 kvm_mmu_set_ept_masks(enable_ept_ad_bits,
7786 cpu_has_vmx_ept_execute_only());
Sean Christopherson703c3352020-03-02 15:57:03 -08007787
7788 if (!enable_ept)
7789 ept_lpage_level = 0;
7790 else if (cpu_has_vmx_ept_1g_page())
Sean Christopherson3bae0452020-04-27 17:54:22 -07007791 ept_lpage_level = PG_LEVEL_1G;
Sean Christopherson703c3352020-03-02 15:57:03 -08007792 else if (cpu_has_vmx_ept_2m_page())
Sean Christopherson3bae0452020-04-27 17:54:22 -07007793 ept_lpage_level = PG_LEVEL_2M;
Sean Christopherson703c3352020-03-02 15:57:03 -08007794 else
Sean Christopherson3bae0452020-04-27 17:54:22 -07007795 ept_lpage_level = PG_LEVEL_4K;
Wei Huang746700d2021-08-18 11:55:47 -05007796 kvm_configure_mmu(enable_ept, 0, vmx_get_max_tdp_level(),
7797 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
Avi Kivity6aa8b732006-12-10 02:21:36 -08007839 kvm_mce_cap_supported |= MCG_LMCE_P;
7840
7841 if (pt_mode != PT_MODE_SYSTEM && pt_mode != PT_MODE_HOST_GUEST)
7842 return -EINVAL;
7843 if (!enable_ept || !cpu_has_vmx_intel_pt())
7844 pt_mode = PT_MODE_SYSTEM;
7845
Sean Christopherson8f102442021-04-12 16:21:40 +12007846 setup_default_sgx_lepubkeyhash();
7847
Avi Kivity6aa8b732006-12-10 02:21:36 -08007848 if (nested) {
7849 nested_vmx_setup_ctls_msrs(&vmcs_config.nested,
7850 vmx_capability.ept);
7851
Sean Christopherson6c1c6e52020-05-06 13:46:53 -07007852 r = nested_vmx_hardware_setup(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007853 if (r)
7854 return r;
7855 }
7856
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007857 vmx_set_cpu_caps();
Sean Christopherson66a69502020-03-02 15:56:41 -08007858
Avi Kivity6aa8b732006-12-10 02:21:36 -08007859 r = alloc_kvm_area();
7860 if (r)
7861 nested_vmx_hardware_unsetup();
Sean Christophersonec5a4912021-10-08 17:11:05 -07007862
7863 kvm_set_posted_intr_wakeup_handler(pi_wakeup_handler);
7864
Avi Kivity6aa8b732006-12-10 02:21:36 -08007865 return r;
7866}
7867
Sean Christophersond008dfd2020-03-21 13:25:56 -07007868static struct kvm_x86_init_ops vmx_init_ops __initdata = {
7869 .cpu_has_kvm_support = cpu_has_kvm_support,
7870 .disabled_by_bios = vmx_disabled_by_bios,
7871 .check_processor_compatibility = vmx_check_processor_compat,
7872 .hardware_setup = hardware_setup,
7873
7874 .runtime_ops = &vmx_x86_ops,
7875};
7876
Avi Kivity6aa8b732006-12-10 02:21:36 -08007877static void vmx_cleanup_l1d_flush(void)
7878{
7879 if (vmx_l1d_flush_pages) {
7880 free_pages((unsigned long)vmx_l1d_flush_pages, L1D_CACHE_ORDER);
7881 vmx_l1d_flush_pages = NULL;
7882 }
7883 /* Restore state so sysfs ignores VMX */
7884 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO;
7885}
7886
7887static void vmx_exit(void)
7888{
7889#ifdef CONFIG_KEXEC_CORE
7890 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
7891 synchronize_rcu();
7892#endif
7893
7894 kvm_exit();
7895
7896#if IS_ENABLED(CONFIG_HYPERV)
7897 if (static_branch_unlikely(&enable_evmcs)) {
7898 int cpu;
7899 struct hv_vp_assist_page *vp_ap;
7900 /*
7901 * Reset everything to support using non-enlightened VMCS
7902 * access later (e.g. when we reload the module with
7903 * enlightened_vmcs=0)
7904 */
7905 for_each_online_cpu(cpu) {
7906 vp_ap = hv_get_vp_assist_page(cpu);
7907
7908 if (!vp_ap)
7909 continue;
7910
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08007911 vp_ap->nested_control.features.directhypercall = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007912 vp_ap->current_nested_vmcs = 0;
7913 vp_ap->enlighten_vmentry = 0;
7914 }
7915
7916 static_branch_disable(&enable_evmcs);
7917 }
7918#endif
7919 vmx_cleanup_l1d_flush();
Aaron Lewis88213da2021-06-23 20:34:27 +00007920
7921 allow_smaller_maxphyaddr = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007922}
7923module_exit(vmx_exit);
7924
7925static int __init vmx_init(void)
7926{
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02007927 int r, cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007928
7929#if IS_ENABLED(CONFIG_HYPERV)
7930 /*
7931 * Enlightened VMCS usage should be recommended and the host needs
7932 * to support eVMCS v1 or above. We can also disable eVMCS support
7933 * with module parameter.
7934 */
7935 if (enlightened_vmcs &&
7936 ms_hyperv.hints & HV_X64_ENLIGHTENED_VMCS_RECOMMENDED &&
7937 (ms_hyperv.nested_features & HV_X64_ENLIGHTENED_VMCS_VERSION) >=
7938 KVM_EVMCS_VERSION) {
7939 int cpu;
7940
7941 /* Check that we have assist pages on all online CPUs */
7942 for_each_online_cpu(cpu) {
7943 if (!hv_get_vp_assist_page(cpu)) {
7944 enlightened_vmcs = false;
7945 break;
7946 }
7947 }
7948
7949 if (enlightened_vmcs) {
7950 pr_info("KVM: vmx: using Hyper-V Enlightened VMCS\n");
7951 static_branch_enable(&enable_evmcs);
7952 }
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08007953
7954 if (ms_hyperv.nested_features & HV_X64_NESTED_DIRECT_FLUSH)
7955 vmx_x86_ops.enable_direct_tlbflush
7956 = hv_enable_direct_tlbflush;
7957
Avi Kivity6aa8b732006-12-10 02:21:36 -08007958 } else {
7959 enlightened_vmcs = false;
7960 }
7961#endif
7962
Sean Christophersond008dfd2020-03-21 13:25:56 -07007963 r = kvm_init(&vmx_init_ops, sizeof(struct vcpu_vmx),
Avi Kivity6aa8b732006-12-10 02:21:36 -08007964 __alignof__(struct vcpu_vmx), THIS_MODULE);
7965 if (r)
7966 return r;
7967
7968 /*
7969 * Must be called after kvm_init() so enable_ept is properly set
7970 * up. Hand the parameter mitigation value in which was stored in
7971 * the pre module init parser. If no parameter was given, it will
7972 * contain 'auto' which will be turned into the default 'cond'
7973 * mitigation mode.
7974 */
Waiman Long19a36d32019-08-26 15:30:23 -04007975 r = vmx_setup_l1d_flush(vmentry_l1d_flush_param);
7976 if (r) {
7977 vmx_exit();
7978 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007979 }
7980
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02007981 for_each_possible_cpu(cpu) {
7982 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007983
Paolo Bonzinia3ff25f2020-10-24 04:08:37 -04007984 pi_init_cpu(cpu);
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02007985 }
7986
Avi Kivity6aa8b732006-12-10 02:21:36 -08007987#ifdef CONFIG_KEXEC_CORE
7988 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
7989 crash_vmclear_local_loaded_vmcss);
7990#endif
7991 vmx_check_vmcs12_offsets();
7992
Mohammed Gamal3edd6832020-07-10 17:48:11 +02007993 /*
Mohammed Gamalb96e6502020-09-03 16:11:22 +02007994 * Shadow paging doesn't have a (further) performance penalty
7995 * from GUEST_MAXPHYADDR < HOST_MAXPHYADDR so enable it
7996 * by default
Mohammed Gamal3edd6832020-07-10 17:48:11 +02007997 */
Mohammed Gamalb96e6502020-09-03 16:11:22 +02007998 if (!enable_ept)
7999 allow_smaller_maxphyaddr = true;
Mohammed Gamal3edd6832020-07-10 17:48:11 +02008000
Avi Kivity6aa8b732006-12-10 02:21:36 -08008001 return 0;
8002}
8003module_init(vmx_init);