blob: 39ff7600b0affd510766b9609be3356565dcfa1f [file] [log] [blame]
Thomas Gleixner20c8ccb2019-06-04 10:11:32 +02001// SPDX-License-Identifier: GPL-2.0-only
Avi Kivity6aa8b732006-12-10 02:21:36 -08002/*
3 * Kernel-based Virtual Machine driver for Linux
4 *
5 * This module enables machines with Intel VT-x extensions to run virtual
6 * machines without emulation or binary translation.
7 *
8 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02009 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -080010 *
11 * Authors:
12 * Avi Kivity <avi@qumranet.com>
13 * Yaniv Kamay <yaniv@qumranet.com>
Avi Kivity6aa8b732006-12-10 02:21:36 -080014 */
15
Sean Christopherson199b1182018-12-03 13:52:53 -080016#include <linux/highmem.h>
17#include <linux/hrtimer.h>
18#include <linux/kernel.h>
Avi Kivityedf88412007-12-16 11:02:48 +020019#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080020#include <linux/module.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020021#include <linux/moduleparam.h>
Josh Triplette9bda3b2012-03-20 23:33:51 -070022#include <linux/mod_devicetable.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080023#include <linux/mm.h>
Julien Thierry00089c02020-09-04 16:30:25 +010024#include <linux/objtool.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080025#include <linux/sched.h>
Josh Poimboeufb2849092019-01-30 07:13:58 -060026#include <linux/sched/smt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040028#include <linux/tboot.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080029#include <linux/trace_events.h>
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +020030#include <linux/entry-kvm.h>
Avi Kivitye4956062007-06-28 14:15:57 -040031
Sean Christopherson199b1182018-12-03 13:52:53 -080032#include <asm/apic.h>
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +020033#include <asm/asm.h>
Feng Wu28b835d2015-09-18 22:29:54 +080034#include <asm/cpu.h>
Thomas Gleixnerba5bade2020-03-20 14:13:46 +010035#include <asm/cpu_device_id.h>
Paolo Bonzini81908bf2014-02-21 10:32:27 +010036#include <asm/debugreg.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080037#include <asm/desc.h>
38#include <asm/fpu/internal.h>
39#include <asm/io.h>
Feng Wuefc64402015-09-18 22:29:51 +080040#include <asm/irq_remapping.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080041#include <asm/kexec.h>
42#include <asm/perf_event.h>
43#include <asm/mce.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"
Sean Christopherson199b1182018-12-03 13:52:53 -080054#include "irq.h"
55#include "kvm_cache_regs.h"
56#include "lapic.h"
57#include "mmu.h"
Sean Christopherson55d23752018-12-03 13:53:18 -080058#include "nested.h"
Wei Huang25462f72015-06-19 15:45:05 +020059#include "pmu.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080060#include "trace.h"
Sean Christophersoncb1d4742018-12-03 13:53:04 -080061#include "vmcs.h"
Sean Christopherson609363c2018-12-03 13:53:05 -080062#include "vmcs12.h"
Sean Christopherson89b0c9f2018-12-03 13:53:07 -080063#include "vmx.h"
Sean Christopherson199b1182018-12-03 13:52:53 -080064#include "x86.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030065
Avi Kivity6aa8b732006-12-10 02:21:36 -080066MODULE_AUTHOR("Qumranet");
67MODULE_LICENSE("GPL");
68
Valdis Klētnieks575b2552020-02-27 21:49:52 -050069#ifdef MODULE
Josh Triplette9bda3b2012-03-20 23:33:51 -070070static const struct x86_cpu_id vmx_cpu_id[] = {
Thomas Gleixner320debe2020-03-20 14:13:50 +010071 X86_MATCH_FEATURE(X86_FEATURE_VMX, NULL),
Josh Triplette9bda3b2012-03-20 23:33:51 -070072 {}
73};
74MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
Valdis Klētnieks575b2552020-02-27 21:49:52 -050075#endif
Josh Triplette9bda3b2012-03-20 23:33:51 -070076
Sean Christopherson2c4fd912018-12-03 13:53:03 -080077bool __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020078module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080079
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010080static bool __read_mostly enable_vnmi = 1;
81module_param_named(vnmi, enable_vnmi, bool, S_IRUGO);
82
Sean Christopherson2c4fd912018-12-03 13:53:03 -080083bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020084module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020085
Sean Christopherson2c4fd912018-12-03 13:53:03 -080086bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020087module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080088
Sean Christopherson2c4fd912018-12-03 13:53:03 -080089bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070090module_param_named(unrestricted_guest,
91 enable_unrestricted_guest, bool, S_IRUGO);
92
Sean Christopherson2c4fd912018-12-03 13:53:03 -080093bool __read_mostly enable_ept_ad_bits = 1;
Xudong Hao83c3a332012-05-28 19:33:35 +080094module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
95
Avi Kivitya27685c2012-06-12 20:30:18 +030096static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020097module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030098
Rusty Russell476bc002012-01-13 09:32:18 +103099static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +0300100module_param(fasteoi, bool, S_IRUGO);
101
Vitaly Kuznetsova4443262020-02-20 18:22:04 +0100102bool __read_mostly enable_apicv = 1;
Yang Zhang01e439b2013-04-11 19:25:12 +0800103module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +0800104
Nadav Har'El801d3422011-05-25 23:02:23 +0300105/*
106 * If nested=1, nested virtualization is supported, i.e., guests may use
107 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
108 * use VMX instructions.
109 */
Paolo Bonzini1e58e5e2018-10-17 00:55:22 +0200110static bool __read_mostly nested = 1;
Nadav Har'El801d3422011-05-25 23:02:23 +0300111module_param(nested, bool, S_IRUGO);
112
Sean Christopherson2c4fd912018-12-03 13:53:03 -0800113bool __read_mostly enable_pml = 1;
Kai Huang843e4332015-01-28 10:54:28 +0800114module_param_named(pml, enable_pml, bool, S_IRUGO);
115
Paolo Bonzini6f2f8452019-05-20 15:34:35 +0200116static bool __read_mostly dump_invalid_vmcs = 0;
117module_param(dump_invalid_vmcs, bool, 0644);
118
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100119#define MSR_BITMAP_MODE_X2APIC 1
120#define MSR_BITMAP_MODE_X2APIC_APICV 2
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100121
Haozhong Zhang64903d62015-10-20 15:39:09 +0800122#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
123
Yunhong Jiang64672c92016-06-13 14:19:59 -0700124/* Guest_tsc -> host_tsc conversion requires 64-bit division. */
125static int __read_mostly cpu_preemption_timer_multi;
126static bool __read_mostly enable_preemption_timer = 1;
127#ifdef CONFIG_X86_64
128module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
129#endif
130
Mohammed Gamalb96e6502020-09-03 16:11:22 +0200131extern bool __read_mostly allow_smaller_maxphyaddr;
132module_param(allow_smaller_maxphyaddr, bool, S_IRUGO);
133
Sean Christopherson3de63472018-07-13 08:42:30 -0700134#define KVM_VM_CR0_ALWAYS_OFF (X86_CR0_NW | X86_CR0_CD)
Sean Christopherson1706bd02018-03-05 12:04:38 -0800135#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR0_NE
136#define KVM_VM_CR0_ALWAYS_ON \
137 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | \
138 X86_CR0_WP | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200139
Sean Christopherson5dc1f042018-03-05 12:04:39 -0800140#define KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR4_VMXE
Avi Kivitycdc0e242009-12-06 17:21:14 +0200141#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
142#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
143
Avi Kivity78ac8b42010-04-08 18:19:35 +0300144#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
145
Chao Pengbf8c55d2018-10-24 16:05:14 +0800146#define MSR_IA32_RTIT_STATUS_MASK (~(RTIT_STATUS_FILTEREN | \
147 RTIT_STATUS_CONTEXTEN | RTIT_STATUS_TRIGGEREN | \
148 RTIT_STATUS_ERROR | RTIT_STATUS_STOPPED | \
149 RTIT_STATUS_BYTECNT))
150
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800151/*
Alexander Graf3eb90012020-09-25 16:34:20 +0200152 * List of MSRs that can be directly passed to the guest.
153 * In addition to these x2apic and PT MSRs are handled specially.
154 */
155static u32 vmx_possible_passthrough_msrs[MAX_POSSIBLE_PASSTHROUGH_MSRS] = {
156 MSR_IA32_SPEC_CTRL,
157 MSR_IA32_PRED_CMD,
158 MSR_IA32_TSC,
159 MSR_FS_BASE,
160 MSR_GS_BASE,
161 MSR_KERNEL_GS_BASE,
162 MSR_IA32_SYSENTER_CS,
163 MSR_IA32_SYSENTER_ESP,
164 MSR_IA32_SYSENTER_EIP,
165 MSR_CORE_C1_RES,
166 MSR_CORE_C3_RESIDENCY,
167 MSR_CORE_C6_RESIDENCY,
168 MSR_CORE_C7_RESIDENCY,
169};
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800170
171/*
172 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
173 * ple_gap: upper bound on the amount of time between two successive
174 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500175 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800176 * ple_window: upper bound on the amount of time a guest is allowed to execute
177 * in a PAUSE loop. Tests indicate that most spinlocks are held for
178 * less than 2^12 cycles
179 * Time is measured based on a counter that runs at the same rate as the TSC,
180 * refer SDM volume 3b section 21.6.13 & 22.1.3.
181 */
Babu Mogerc8e88712018-03-16 16:37:24 -0400182static unsigned int ple_gap = KVM_DEFAULT_PLE_GAP;
Luiz Capitulinoa87c99e2018-11-23 12:02:14 -0500183module_param(ple_gap, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200184
Babu Moger7fbc85a2018-03-16 16:37:22 -0400185static unsigned int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
186module_param(ple_window, uint, 0444);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800187
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200188/* Default doubles per-vcpu window every exit. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400189static unsigned int ple_window_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400190module_param(ple_window_grow, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200191
192/* Default resets per-vcpu window every exit to ple_window. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400193static unsigned int ple_window_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400194module_param(ple_window_shrink, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200195
196/* Default is to compute the maximum so we can never overflow. */
Babu Moger7fbc85a2018-03-16 16:37:22 -0400197static unsigned int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
198module_param(ple_window_max, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200199
Chao Pengf99e3da2018-10-24 16:05:10 +0800200/* Default is SYSTEM mode, 1 for host-guest mode */
201int __read_mostly pt_mode = PT_MODE_SYSTEM;
202module_param(pt_mode, int, S_IRUGO);
203
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200204static DEFINE_STATIC_KEY_FALSE(vmx_l1d_should_flush);
Nicolai Stange427362a2018-07-21 22:25:00 +0200205static DEFINE_STATIC_KEY_FALSE(vmx_l1d_flush_cond);
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200206static DEFINE_MUTEX(vmx_l1d_flush_mutex);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200207
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200208/* Storage for pre module init parameter parsing */
209static enum vmx_l1d_flush_state __read_mostly vmentry_l1d_flush_param = VMENTER_L1D_FLUSH_AUTO;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200210
211static const struct {
212 const char *option;
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200213 bool for_parse;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200214} vmentry_l1d_param[] = {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200215 [VMENTER_L1D_FLUSH_AUTO] = {"auto", true},
216 [VMENTER_L1D_FLUSH_NEVER] = {"never", true},
217 [VMENTER_L1D_FLUSH_COND] = {"cond", true},
218 [VMENTER_L1D_FLUSH_ALWAYS] = {"always", true},
219 [VMENTER_L1D_FLUSH_EPT_DISABLED] = {"EPT disabled", false},
220 [VMENTER_L1D_FLUSH_NOT_REQUIRED] = {"not required", false},
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200221};
222
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200223#define L1D_CACHE_ORDER 4
224static void *vmx_l1d_flush_pages;
225
226static int vmx_setup_l1d_flush(enum vmx_l1d_flush_state l1tf)
227{
228 struct page *page;
Nicolai Stange288d1522018-07-18 19:07:38 +0200229 unsigned int i;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200230
Waiman Long19a36d32019-08-26 15:30:23 -0400231 if (!boot_cpu_has_bug(X86_BUG_L1TF)) {
232 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_NOT_REQUIRED;
233 return 0;
234 }
235
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200236 if (!enable_ept) {
237 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_EPT_DISABLED;
238 return 0;
239 }
240
Yi Wangd806afa2018-08-16 13:42:39 +0800241 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES)) {
242 u64 msr;
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200243
Yi Wangd806afa2018-08-16 13:42:39 +0800244 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, msr);
245 if (msr & ARCH_CAP_SKIP_VMENTRY_L1DFLUSH) {
246 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_NOT_REQUIRED;
247 return 0;
248 }
249 }
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200250
Jiri Kosinad90a7a02018-07-13 16:23:25 +0200251 /* If set to auto use the default l1tf mitigation method */
252 if (l1tf == VMENTER_L1D_FLUSH_AUTO) {
253 switch (l1tf_mitigation) {
254 case L1TF_MITIGATION_OFF:
255 l1tf = VMENTER_L1D_FLUSH_NEVER;
256 break;
257 case L1TF_MITIGATION_FLUSH_NOWARN:
258 case L1TF_MITIGATION_FLUSH:
259 case L1TF_MITIGATION_FLUSH_NOSMT:
260 l1tf = VMENTER_L1D_FLUSH_COND;
261 break;
262 case L1TF_MITIGATION_FULL:
263 case L1TF_MITIGATION_FULL_FORCE:
264 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
265 break;
266 }
267 } else if (l1tf_mitigation == L1TF_MITIGATION_FULL_FORCE) {
268 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
269 }
270
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200271 if (l1tf != VMENTER_L1D_FLUSH_NEVER && !vmx_l1d_flush_pages &&
272 !boot_cpu_has(X86_FEATURE_FLUSH_L1D)) {
Ben Gardon41836832019-02-11 11:02:52 -0800273 /*
274 * This allocation for vmx_l1d_flush_pages is not tied to a VM
275 * lifetime and so should not be charged to a memcg.
276 */
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200277 page = alloc_pages(GFP_KERNEL, L1D_CACHE_ORDER);
278 if (!page)
279 return -ENOMEM;
280 vmx_l1d_flush_pages = page_address(page);
Nicolai Stange288d1522018-07-18 19:07:38 +0200281
282 /*
283 * Initialize each page with a different pattern in
284 * order to protect against KSM in the nested
285 * virtualization case.
286 */
287 for (i = 0; i < 1u << L1D_CACHE_ORDER; ++i) {
288 memset(vmx_l1d_flush_pages + i * PAGE_SIZE, i + 1,
289 PAGE_SIZE);
290 }
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200291 }
292
293 l1tf_vmx_mitigation = l1tf;
294
Thomas Gleixner895ae472018-07-13 16:23:22 +0200295 if (l1tf != VMENTER_L1D_FLUSH_NEVER)
296 static_branch_enable(&vmx_l1d_should_flush);
297 else
298 static_branch_disable(&vmx_l1d_should_flush);
Thomas Gleixner4c6523e2018-07-13 16:23:20 +0200299
Nicolai Stange427362a2018-07-21 22:25:00 +0200300 if (l1tf == VMENTER_L1D_FLUSH_COND)
301 static_branch_enable(&vmx_l1d_flush_cond);
Thomas Gleixner895ae472018-07-13 16:23:22 +0200302 else
Nicolai Stange427362a2018-07-21 22:25:00 +0200303 static_branch_disable(&vmx_l1d_flush_cond);
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200304 return 0;
305}
306
307static int vmentry_l1d_flush_parse(const char *s)
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200308{
309 unsigned int i;
310
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200311 if (s) {
312 for (i = 0; i < ARRAY_SIZE(vmentry_l1d_param); i++) {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200313 if (vmentry_l1d_param[i].for_parse &&
314 sysfs_streq(s, vmentry_l1d_param[i].option))
315 return i;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200316 }
317 }
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200318 return -EINVAL;
319}
320
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200321static int vmentry_l1d_flush_set(const char *s, const struct kernel_param *kp)
322{
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200323 int l1tf, ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200324
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200325 l1tf = vmentry_l1d_flush_parse(s);
326 if (l1tf < 0)
327 return l1tf;
328
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200329 if (!boot_cpu_has(X86_BUG_L1TF))
330 return 0;
331
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200332 /*
333 * Has vmx_init() run already? If not then this is the pre init
334 * parameter parsing. In that case just store the value and let
335 * vmx_init() do the proper setup after enable_ept has been
336 * established.
337 */
338 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_AUTO) {
339 vmentry_l1d_flush_param = l1tf;
340 return 0;
341 }
342
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200343 mutex_lock(&vmx_l1d_flush_mutex);
344 ret = vmx_setup_l1d_flush(l1tf);
345 mutex_unlock(&vmx_l1d_flush_mutex);
346 return ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200347}
348
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200349static int vmentry_l1d_flush_get(char *s, const struct kernel_param *kp)
350{
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200351 if (WARN_ON_ONCE(l1tf_vmx_mitigation >= ARRAY_SIZE(vmentry_l1d_param)))
352 return sprintf(s, "???\n");
353
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200354 return sprintf(s, "%s\n", vmentry_l1d_param[l1tf_vmx_mitigation].option);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200355}
356
357static const struct kernel_param_ops vmentry_l1d_flush_ops = {
358 .set = vmentry_l1d_flush_set,
359 .get = vmentry_l1d_flush_get,
360};
Thomas Gleixner895ae472018-07-13 16:23:22 +0200361module_param_cb(vmentry_l1d_flush, &vmentry_l1d_flush_ops, NULL, 0644);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200362
Gleb Natapovd99e4152012-12-20 16:57:45 +0200363static u32 vmx_segment_access_rights(struct kvm_segment *var);
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200364static __always_inline void vmx_disable_intercept_for_msr(struct kvm_vcpu *vcpu,
Ashok Raj15d45072018-02-01 22:59:43 +0100365 u32 msr, int type);
Avi Kivity75880a02007-06-20 11:20:04 +0300366
Sean Christopherson453eafb2018-12-20 12:25:17 -0800367void vmx_vmexit(void);
368
Sean Christopherson52a9fcb2019-07-19 13:41:07 -0700369#define vmx_insn_failed(fmt...) \
370do { \
371 WARN_ONCE(1, fmt); \
372 pr_warn_ratelimited(fmt); \
373} while (0)
374
Sean Christopherson6e202092019-07-19 13:41:08 -0700375asmlinkage void vmread_error(unsigned long field, bool fault)
376{
377 if (fault)
378 kvm_spurious_fault();
379 else
380 vmx_insn_failed("kvm: vmread failed: field=%lx\n", field);
381}
382
Sean Christopherson52a9fcb2019-07-19 13:41:07 -0700383noinline void vmwrite_error(unsigned long field, unsigned long value)
384{
385 vmx_insn_failed("kvm: vmwrite failed: field=%lx val=%lx err=%d\n",
386 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
387}
388
389noinline void vmclear_error(struct vmcs *vmcs, u64 phys_addr)
390{
391 vmx_insn_failed("kvm: vmclear failed: %p/%llx\n", vmcs, phys_addr);
392}
393
394noinline void vmptrld_error(struct vmcs *vmcs, u64 phys_addr)
395{
396 vmx_insn_failed("kvm: vmptrld failed: %p/%llx\n", vmcs, phys_addr);
397}
398
399noinline void invvpid_error(unsigned long ext, u16 vpid, gva_t gva)
400{
401 vmx_insn_failed("kvm: invvpid failed: ext=0x%lx vpid=%u gva=0x%lx\n",
402 ext, vpid, gva);
403}
404
405noinline void invept_error(unsigned long ext, u64 eptp, gpa_t gpa)
406{
407 vmx_insn_failed("kvm: invept failed: ext=0x%lx eptp=%llx gpa=0x%llx\n",
408 ext, eptp, gpa);
409}
410
Avi Kivity6aa8b732006-12-10 02:21:36 -0800411static DEFINE_PER_CPU(struct vmcs *, vmxarea);
Sean Christopherson75edce82018-12-03 13:53:06 -0800412DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300413/*
414 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
415 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
416 */
417static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800418
Sheng Yang2384d2b2008-01-17 15:14:33 +0800419static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
420static DEFINE_SPINLOCK(vmx_vpid_lock);
421
Sean Christopherson3077c192018-12-03 13:53:02 -0800422struct vmcs_config vmcs_config;
423struct vmx_capability vmx_capability;
Sheng Yangd56f5462008-04-25 10:13:16 +0800424
Avi Kivity6aa8b732006-12-10 02:21:36 -0800425#define VMX_SEGMENT_FIELD(seg) \
426 [VCPU_SREG_##seg] = { \
427 .selector = GUEST_##seg##_SELECTOR, \
428 .base = GUEST_##seg##_BASE, \
429 .limit = GUEST_##seg##_LIMIT, \
430 .ar_bytes = GUEST_##seg##_AR_BYTES, \
431 }
432
Mathias Krause772e0312012-08-30 01:30:19 +0200433static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800434 unsigned selector;
435 unsigned base;
436 unsigned limit;
437 unsigned ar_bytes;
438} kvm_vmx_segment_fields[] = {
439 VMX_SEGMENT_FIELD(CS),
440 VMX_SEGMENT_FIELD(DS),
441 VMX_SEGMENT_FIELD(ES),
442 VMX_SEGMENT_FIELD(FS),
443 VMX_SEGMENT_FIELD(GS),
444 VMX_SEGMENT_FIELD(SS),
445 VMX_SEGMENT_FIELD(TR),
446 VMX_SEGMENT_FIELD(LDTR),
447};
448
Sean Christophersonec0241f2020-04-15 13:34:52 -0700449static inline void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
450{
451 vmx->segment_cache.bitmask = 0;
452}
453
Sean Christopherson23420802019-04-19 22:50:57 -0700454static unsigned long host_idt_base;
Avi Kivity26bb0982009-09-07 11:14:12 +0300455
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300456/*
Jim Mattson898a8112018-12-05 15:28:59 -0800457 * Though SYSCALL is only supported in 64-bit mode on Intel CPUs, kvm
458 * will emulate SYSCALL in legacy mode if the vendor string in guest
459 * CPUID.0:{EBX,ECX,EDX} is "AuthenticAMD" or "AMDisbetter!" To
460 * support this emulation, IA32_STAR must always be included in
Sean Christopherson14a61b62020-09-23 11:04:08 -0700461 * vmx_uret_msrs_list[], even in i386 builds.
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300462 */
kernel test robot6a2e0922020-09-28 23:37:14 +0800463static const u32 vmx_uret_msrs_list[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800464#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300465 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800466#endif
Brian Gerst8c065852010-07-17 09:03:26 -0400467 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Paolo Bonzinic11f83e2019-11-18 12:23:00 -0500468 MSR_IA32_TSX_CTRL,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800469};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800470
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +0100471#if IS_ENABLED(CONFIG_HYPERV)
472static bool __read_mostly enlightened_vmcs = true;
473module_param(enlightened_vmcs, bool, 0444);
474
Tianyu Lan877ad952018-07-19 08:40:23 +0000475/* check_ept_pointer() should be under protection of ept_pointer_lock. */
476static void check_ept_pointer_match(struct kvm *kvm)
477{
478 struct kvm_vcpu *vcpu;
479 u64 tmp_eptp = INVALID_PAGE;
480 int i;
481
482 kvm_for_each_vcpu(i, vcpu, kvm) {
483 if (!VALID_PAGE(tmp_eptp)) {
484 tmp_eptp = to_vmx(vcpu)->ept_pointer;
485 } else if (tmp_eptp != to_vmx(vcpu)->ept_pointer) {
486 to_kvm_vmx(kvm)->ept_pointers_match
487 = EPT_POINTERS_MISMATCH;
488 return;
489 }
490 }
491
492 to_kvm_vmx(kvm)->ept_pointers_match = EPT_POINTERS_MATCH;
493}
494
Yi Wang8997f652019-01-21 15:27:05 +0800495static int kvm_fill_hv_flush_list_func(struct hv_guest_mapping_flush_list *flush,
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800496 void *data)
497{
498 struct kvm_tlb_range *range = data;
499
500 return hyperv_fill_flush_guest_mapping_list(flush, range->start_gfn,
501 range->pages);
502}
503
504static inline int __hv_remote_flush_tlb_with_range(struct kvm *kvm,
505 struct kvm_vcpu *vcpu, struct kvm_tlb_range *range)
506{
507 u64 ept_pointer = to_vmx(vcpu)->ept_pointer;
508
509 /*
510 * FLUSH_GUEST_PHYSICAL_ADDRESS_SPACE hypercall needs address
511 * of the base of EPT PML4 table, strip off EPT configuration
512 * information.
513 */
514 if (range)
515 return hyperv_flush_guest_mapping_range(ept_pointer & PAGE_MASK,
516 kvm_fill_hv_flush_list_func, (void *)range);
517 else
518 return hyperv_flush_guest_mapping(ept_pointer & PAGE_MASK);
519}
520
521static int hv_remote_flush_tlb_with_range(struct kvm *kvm,
522 struct kvm_tlb_range *range)
Tianyu Lan877ad952018-07-19 08:40:23 +0000523{
Lan Tianyua5c214d2018-10-13 22:54:05 +0800524 struct kvm_vcpu *vcpu;
Lan Tianyub7c1c222019-01-04 15:20:44 +0800525 int ret = 0, i;
Tianyu Lan877ad952018-07-19 08:40:23 +0000526
527 spin_lock(&to_kvm_vmx(kvm)->ept_pointer_lock);
528
529 if (to_kvm_vmx(kvm)->ept_pointers_match == EPT_POINTERS_CHECK)
530 check_ept_pointer_match(kvm);
531
532 if (to_kvm_vmx(kvm)->ept_pointers_match != EPT_POINTERS_MATCH) {
Lan Tianyu53963a72018-12-06 15:34:36 +0800533 kvm_for_each_vcpu(i, vcpu, kvm) {
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800534 /* If ept_pointer is invalid pointer, bypass flush request. */
535 if (VALID_PAGE(to_vmx(vcpu)->ept_pointer))
536 ret |= __hv_remote_flush_tlb_with_range(
537 kvm, vcpu, range);
Lan Tianyu53963a72018-12-06 15:34:36 +0800538 }
Lan Tianyua5c214d2018-10-13 22:54:05 +0800539 } else {
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800540 ret = __hv_remote_flush_tlb_with_range(kvm,
541 kvm_get_vcpu(kvm, 0), range);
Tianyu Lan877ad952018-07-19 08:40:23 +0000542 }
Tianyu Lan877ad952018-07-19 08:40:23 +0000543
Tianyu Lan877ad952018-07-19 08:40:23 +0000544 spin_unlock(&to_kvm_vmx(kvm)->ept_pointer_lock);
545 return ret;
546}
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800547static int hv_remote_flush_tlb(struct kvm *kvm)
548{
549 return hv_remote_flush_tlb_with_range(kvm, NULL);
550}
551
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800552static int hv_enable_direct_tlbflush(struct kvm_vcpu *vcpu)
553{
554 struct hv_enlightened_vmcs *evmcs;
555 struct hv_partition_assist_pg **p_hv_pa_pg =
556 &vcpu->kvm->arch.hyperv.hv_pa_pg;
557 /*
558 * Synthetic VM-Exit is not enabled in current code and so All
559 * evmcs in singe VM shares same assist page.
560 */
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200561 if (!*p_hv_pa_pg)
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800562 *p_hv_pa_pg = kzalloc(PAGE_SIZE, GFP_KERNEL);
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200563
564 if (!*p_hv_pa_pg)
565 return -ENOMEM;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800566
567 evmcs = (struct hv_enlightened_vmcs *)to_vmx(vcpu)->loaded_vmcs->vmcs;
568
569 evmcs->partition_assist_page =
570 __pa(*p_hv_pa_pg);
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200571 evmcs->hv_vm_id = (unsigned long)vcpu->kvm;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800572 evmcs->hv_enlightenments_control.nested_flush_hypercall = 1;
573
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800574 return 0;
575}
576
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +0100577#endif /* IS_ENABLED(CONFIG_HYPERV) */
578
Yunhong Jiang64672c92016-06-13 14:19:59 -0700579/*
580 * Comment's format: document - errata name - stepping - processor name.
581 * Refer from
582 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
583 */
584static u32 vmx_preemption_cpu_tfms[] = {
585/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
5860x000206E6,
587/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
588/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
589/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
5900x00020652,
591/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
5920x00020655,
593/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
594/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
595/*
596 * 320767.pdf - AAP86 - B1 -
597 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
598 */
5990x000106E5,
600/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
6010x000106A0,
602/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
6030x000106A1,
604/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
6050x000106A4,
606 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
607 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
608 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
6090x000106A5,
Wei Huang3d82c562018-12-03 14:13:32 -0600610 /* Xeon E3-1220 V2 */
6110x000306A8,
Yunhong Jiang64672c92016-06-13 14:19:59 -0700612};
613
614static inline bool cpu_has_broken_vmx_preemption_timer(void)
615{
616 u32 eax = cpuid_eax(0x00000001), i;
617
618 /* Clear the reserved bits */
619 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +0000620 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -0700621 if (eax == vmx_preemption_cpu_tfms[i])
622 return true;
623
624 return false;
625}
626
Paolo Bonzini35754c92015-07-29 12:05:37 +0200627static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800628{
Paolo Bonzini35754c92015-07-29 12:05:37 +0200629 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800630}
631
Sheng Yang04547152009-04-01 15:52:31 +0800632static inline bool report_flexpriority(void)
633{
634 return flexpriority_enabled;
635}
636
Alexander Graf3eb90012020-09-25 16:34:20 +0200637static int possible_passthrough_msr_slot(u32 msr)
638{
639 u32 i;
640
641 for (i = 0; i < ARRAY_SIZE(vmx_possible_passthrough_msrs); i++)
642 if (vmx_possible_passthrough_msrs[i] == msr)
643 return i;
644
645 return -ENOENT;
646}
647
648static bool is_valid_passthrough_msr(u32 msr)
649{
650 bool r;
651
652 switch (msr) {
653 case 0x800 ... 0x8ff:
654 /* x2APIC MSRs. These are handled in vmx_update_msr_bitmap_x2apic() */
655 return true;
656 case MSR_IA32_RTIT_STATUS:
657 case MSR_IA32_RTIT_OUTPUT_BASE:
658 case MSR_IA32_RTIT_OUTPUT_MASK:
659 case MSR_IA32_RTIT_CR3_MATCH:
660 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
661 /* PT MSRs. These are handled in pt_update_intercept_for_msr() */
662 return true;
663 }
664
665 r = possible_passthrough_msr_slot(msr) != -ENOENT;
666
667 WARN(!r, "Invalid MSR %x, please adapt vmx_possible_passthrough_msrs[]", msr);
668
669 return r;
670}
671
Sean Christopherson1e7a4832020-09-23 11:04:02 -0700672static inline int __vmx_find_uret_msr(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800673{
674 int i;
675
Sean Christophersonfbc18002020-09-23 11:03:59 -0700676 for (i = 0; i < vmx->nr_uret_msrs; ++i)
Sean Christopherson802145c2020-09-23 11:04:09 -0700677 if (vmx_uret_msrs_list[vmx->guest_uret_msrs[i].slot] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300678 return i;
679 return -1;
680}
681
Sean Christophersond85a8032020-09-23 11:04:06 -0700682struct vmx_uret_msr *vmx_find_uret_msr(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300683{
684 int i;
685
Sean Christopherson1e7a4832020-09-23 11:04:02 -0700686 i = __vmx_find_uret_msr(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300687 if (i >= 0)
Sean Christophersoneb3db1b2020-09-23 11:03:58 -0700688 return &vmx->guest_uret_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000689 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800690}
691
Sean Christopherson7bf662b2020-09-23 11:04:07 -0700692static int vmx_set_guest_uret_msr(struct vcpu_vmx *vmx,
693 struct vmx_uret_msr *msr, u64 data)
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500694{
695 int ret = 0;
696
697 u64 old_msr_data = msr->data;
698 msr->data = data;
Sean Christophersone9bb1ae2020-09-23 11:04:00 -0700699 if (msr - vmx->guest_uret_msrs < vmx->nr_active_uret_msrs) {
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500700 preempt_disable();
Sean Christopherson802145c2020-09-23 11:04:09 -0700701 ret = kvm_set_user_return_msr(msr->slot, msr->data, msr->mask);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500702 preempt_enable();
703 if (ret)
704 msr->data = old_msr_data;
705 }
706 return ret;
707}
708
Dave Young2965faa2015-09-09 15:38:55 -0700709#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800710static void crash_vmclear_local_loaded_vmcss(void)
711{
712 int cpu = raw_smp_processor_id();
713 struct loaded_vmcs *v;
714
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800715 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
716 loaded_vmcss_on_cpu_link)
717 vmcs_clear(v->vmcs);
718}
Dave Young2965faa2015-09-09 15:38:55 -0700719#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800720
Nadav Har'Eld462b812011-05-24 15:26:10 +0300721static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800722{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300723 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800724 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800725
Nadav Har'Eld462b812011-05-24 15:26:10 +0300726 if (loaded_vmcs->cpu != cpu)
727 return; /* vcpu migration can race with cpu offline */
728 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800729 per_cpu(current_vmcs, cpu) = NULL;
Sean Christopherson31603d42020-03-21 12:37:49 -0700730
731 vmcs_clear(loaded_vmcs->vmcs);
732 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
733 vmcs_clear(loaded_vmcs->shadow_vmcs);
734
Nadav Har'Eld462b812011-05-24 15:26:10 +0300735 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +0800736
737 /*
Sean Christopherson31603d42020-03-21 12:37:49 -0700738 * Ensure all writes to loaded_vmcs, including deleting it from its
739 * current percpu list, complete before setting loaded_vmcs->vcpu to
740 * -1, otherwise a different cpu can see vcpu == -1 first and add
741 * loaded_vmcs to its percpu list before it's deleted from this cpu's
742 * list. Pairs with the smp_rmb() in vmx_vcpu_load_vmcs().
Xiao Guangrong5a560f82012-11-28 20:54:14 +0800743 */
744 smp_wmb();
745
Sean Christopherson31603d42020-03-21 12:37:49 -0700746 loaded_vmcs->cpu = -1;
747 loaded_vmcs->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800748}
749
Sean Christopherson89b0c9f2018-12-03 13:53:07 -0800750void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800751{
Xiao Guangronge6c7d322012-11-28 20:53:15 +0800752 int cpu = loaded_vmcs->cpu;
753
754 if (cpu != -1)
755 smp_call_function_single(cpu,
756 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800757}
758
Avi Kivity2fb92db2011-04-27 19:42:18 +0300759static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
760 unsigned field)
761{
762 bool ret;
763 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
764
Sean Christophersoncb3c1e22019-09-27 14:45:22 -0700765 if (!kvm_register_is_available(&vmx->vcpu, VCPU_EXREG_SEGMENTS)) {
766 kvm_register_mark_available(&vmx->vcpu, VCPU_EXREG_SEGMENTS);
Avi Kivity2fb92db2011-04-27 19:42:18 +0300767 vmx->segment_cache.bitmask = 0;
768 }
769 ret = vmx->segment_cache.bitmask & mask;
770 vmx->segment_cache.bitmask |= mask;
771 return ret;
772}
773
774static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
775{
776 u16 *p = &vmx->segment_cache.seg[seg].selector;
777
778 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
779 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
780 return *p;
781}
782
783static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
784{
785 ulong *p = &vmx->segment_cache.seg[seg].base;
786
787 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
788 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
789 return *p;
790}
791
792static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
793{
794 u32 *p = &vmx->segment_cache.seg[seg].limit;
795
796 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
797 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
798 return *p;
799}
800
801static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
802{
803 u32 *p = &vmx->segment_cache.seg[seg].ar;
804
805 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
806 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
807 return *p;
808}
809
Sean Christopherson97b7ead2018-12-03 13:53:16 -0800810void update_exception_bitmap(struct kvm_vcpu *vcpu)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300811{
812 u32 eb;
813
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100814 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -0800815 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Liran Alon9e869482018-03-12 13:12:51 +0200816 /*
817 * Guest access to VMware backdoor ports could legitimately
818 * trigger #GP because of TSS I/O permission bitmap.
819 * We intercept those #GP and allow access to them anyway
820 * as VMware does.
821 */
822 if (enable_vmware_backdoor)
823 eb |= (1u << GP_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100824 if ((vcpu->guest_debug &
825 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
826 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
827 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300828 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300829 eb = ~0;
Paolo Bonzinia0c13432020-07-10 17:48:08 +0200830 if (!vmx_need_pf_intercept(vcpu))
Miaohe Lin49f933d2020-02-27 11:20:54 +0800831 eb &= ~(1u << PF_VECTOR);
Nadav Har'El36cf24e2011-05-25 23:15:08 +0300832
833 /* When we are running a nested L2 guest and L1 specified for it a
834 * certain exception bitmap, we must trap the same exceptions and pass
835 * them to L1. When running L2, we will only handle the exceptions
836 * specified above if L1 did not want them.
837 */
838 if (is_guest_mode(vcpu))
839 eb |= get_vmcs12(vcpu)->exception_bitmap;
Paolo Bonzinib502e6e2020-09-29 08:31:32 -0400840 else {
841 /*
842 * If EPT is enabled, #PF is only trapped if MAXPHYADDR is mismatched
843 * between guest and host. In that case we only care about present
844 * faults. For vmcs02, however, PFEC_MASK and PFEC_MATCH are set in
845 * prepare_vmcs02_rare.
846 */
847 bool selective_pf_trap = enable_ept && (eb & (1u << PF_VECTOR));
848 int mask = selective_pf_trap ? PFERR_PRESENT_MASK : 0;
849 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, mask);
850 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, mask);
851 }
Nadav Har'El36cf24e2011-05-25 23:15:08 +0300852
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300853 vmcs_write32(EXCEPTION_BITMAP, eb);
854}
855
Ashok Raj15d45072018-02-01 22:59:43 +0100856/*
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100857 * Check if MSR is intercepted for currently loaded MSR bitmap.
858 */
859static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr)
860{
861 unsigned long *msr_bitmap;
862 int f = sizeof(unsigned long);
863
864 if (!cpu_has_vmx_msr_bitmap())
865 return true;
866
867 msr_bitmap = to_vmx(vcpu)->loaded_vmcs->msr_bitmap;
868
869 if (msr <= 0x1fff) {
870 return !!test_bit(msr, msr_bitmap + 0x800 / f);
871 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
872 msr &= 0x1fff;
873 return !!test_bit(msr, msr_bitmap + 0xc00 / f);
874 }
875
876 return true;
877}
878
Gleb Natapov2961e8762013-11-25 15:37:13 +0200879static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
880 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200881{
Gleb Natapov2961e8762013-11-25 15:37:13 +0200882 vm_entry_controls_clearbit(vmx, entry);
883 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200884}
885
Sean Christophersona128a932020-09-23 11:03:57 -0700886int vmx_find_loadstore_msr_slot(struct vmx_msrs *m, u32 msr)
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400887{
888 unsigned int i;
889
890 for (i = 0; i < m->nr; ++i) {
891 if (m->val[i].index == msr)
892 return i;
893 }
894 return -ENOENT;
895}
896
Avi Kivity61d2ef22010-04-28 16:40:38 +0300897static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
898{
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400899 int i;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300900 struct msr_autoload *m = &vmx->msr_autoload;
901
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200902 switch (msr) {
903 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800904 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200905 clear_atomic_switch_msr_special(vmx,
906 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200907 VM_EXIT_LOAD_IA32_EFER);
908 return;
909 }
910 break;
911 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800912 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200913 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200914 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
915 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
916 return;
917 }
918 break;
Avi Kivity110312c2010-12-21 12:54:20 +0200919 }
Sean Christophersona128a932020-09-23 11:03:57 -0700920 i = vmx_find_loadstore_msr_slot(&m->guest, msr);
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400921 if (i < 0)
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400922 goto skip_guest;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400923 --m->guest.nr;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400924 m->guest.val[i] = m->guest.val[m->guest.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400925 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Avi Kivity110312c2010-12-21 12:54:20 +0200926
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400927skip_guest:
Sean Christophersona128a932020-09-23 11:03:57 -0700928 i = vmx_find_loadstore_msr_slot(&m->host, msr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400929 if (i < 0)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300930 return;
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400931
932 --m->host.nr;
933 m->host.val[i] = m->host.val[m->host.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400934 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300935}
936
Gleb Natapov2961e8762013-11-25 15:37:13 +0200937static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
938 unsigned long entry, unsigned long exit,
939 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
940 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200941{
942 vmcs_write64(guest_val_vmcs, guest_val);
Sean Christopherson5a5e8a12018-09-26 09:23:56 -0700943 if (host_val_vmcs != HOST_IA32_EFER)
944 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +0200945 vm_entry_controls_setbit(vmx, entry);
946 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200947}
948
Avi Kivity61d2ef22010-04-28 16:40:38 +0300949static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400950 u64 guest_val, u64 host_val, bool entry_only)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300951{
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400952 int i, j = 0;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300953 struct msr_autoload *m = &vmx->msr_autoload;
954
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200955 switch (msr) {
956 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800957 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200958 add_atomic_switch_msr_special(vmx,
959 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200960 VM_EXIT_LOAD_IA32_EFER,
961 GUEST_IA32_EFER,
962 HOST_IA32_EFER,
963 guest_val, host_val);
964 return;
965 }
966 break;
967 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800968 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200969 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200970 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
971 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
972 GUEST_IA32_PERF_GLOBAL_CTRL,
973 HOST_IA32_PERF_GLOBAL_CTRL,
974 guest_val, host_val);
975 return;
976 }
977 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +0100978 case MSR_IA32_PEBS_ENABLE:
979 /* PEBS needs a quiescent period after being disabled (to write
980 * a record). Disabling PEBS through VMX MSR swapping doesn't
981 * provide that period, so a CPU could write host's record into
982 * guest's memory.
983 */
984 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +0200985 }
986
Sean Christophersona128a932020-09-23 11:03:57 -0700987 i = vmx_find_loadstore_msr_slot(&m->guest, msr);
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400988 if (!entry_only)
Sean Christophersona128a932020-09-23 11:03:57 -0700989 j = vmx_find_loadstore_msr_slot(&m->host, msr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300990
Sean Christophersonce833b22020-09-23 11:03:56 -0700991 if ((i < 0 && m->guest.nr == MAX_NR_LOADSTORE_MSRS) ||
992 (j < 0 && m->host.nr == MAX_NR_LOADSTORE_MSRS)) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +0200993 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +0200994 "Can't add msr %x\n", msr);
995 return;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300996 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400997 if (i < 0) {
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400998 i = m->guest.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400999 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04001000 }
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04001001 m->guest.val[i].index = msr;
1002 m->guest.val[i].value = guest_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +03001003
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04001004 if (entry_only)
1005 return;
1006
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04001007 if (j < 0) {
1008 j = m->host.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04001009 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +03001010 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04001011 m->host.val[j].index = msr;
1012 m->host.val[j].value = host_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +03001013}
1014
Sean Christopherson86e3e492020-09-23 11:04:04 -07001015static bool update_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +03001016{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001017 u64 guest_efer = vmx->vcpu.arch.efer;
1018 u64 ignore_bits = 0;
Sean Christopherson86e3e492020-09-23 11:04:04 -07001019 int i;
Eddie Dong2cc51562007-05-21 07:28:09 +03001020
Paolo Bonzini9167ab72019-10-27 16:23:23 +01001021 /* Shadow paging assumes NX to be available. */
1022 if (!enable_ept)
1023 guest_efer |= EFER_NX;
Roel Kluin3a34a882009-08-04 02:08:45 -07001024
Avi Kivity51c6cf62007-08-29 03:48:05 +03001025 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001026 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03001027 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001028 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001029#ifdef CONFIG_X86_64
1030 ignore_bits |= EFER_LMA | EFER_LME;
1031 /* SCE is meaningful only in long mode on Intel */
1032 if (guest_efer & EFER_LMA)
1033 ignore_bits &= ~(u64)EFER_SCE;
1034#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03001035
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08001036 /*
1037 * On EPT, we can't emulate NX, so we must switch EFER atomically.
1038 * On CPUs that support "load IA32_EFER", always switch EFER
1039 * atomically, since it's faster than switching it manually.
1040 */
Sean Christophersonc73da3f2018-12-03 13:53:00 -08001041 if (cpu_has_load_ia32_efer() ||
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08001042 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03001043 if (!(guest_efer & EFER_LMA))
1044 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08001045 if (guest_efer != host_efer)
1046 add_atomic_switch_msr(vmx, MSR_EFER,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04001047 guest_efer, host_efer, false);
Sean Christopherson02343cf2018-09-26 09:23:43 -07001048 else
1049 clear_atomic_switch_msr(vmx, MSR_EFER);
Avi Kivity84ad33e2010-04-28 16:42:29 +03001050 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001051 }
Sean Christopherson86e3e492020-09-23 11:04:04 -07001052
1053 i = __vmx_find_uret_msr(vmx, MSR_EFER);
1054 if (i < 0)
1055 return false;
1056
1057 clear_atomic_switch_msr(vmx, MSR_EFER);
1058
1059 guest_efer &= ~ignore_bits;
1060 guest_efer |= host_efer & ignore_bits;
1061
1062 vmx->guest_uret_msrs[i].data = guest_efer;
1063 vmx->guest_uret_msrs[i].mask = ~ignore_bits;
1064
1065 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001066}
1067
Andy Lutomirskie28baea2017-02-20 08:56:11 -08001068#ifdef CONFIG_X86_32
1069/*
1070 * On 32-bit kernels, VM exits still load the FS and GS bases from the
1071 * VMCS rather than the segment table. KVM uses this helper to figure
1072 * out the current bases to poke them into the VMCS before entry.
1073 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001074static unsigned long segment_base(u16 selector)
1075{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001076 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001077 unsigned long v;
1078
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001079 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001080 return 0;
1081
Thomas Garnier45fc8752017-03-14 10:05:08 -07001082 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001083
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001084 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001085 u16 ldt_selector = kvm_read_ldt();
1086
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001087 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001088 return 0;
1089
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001090 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001091 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001092 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001093 return v;
1094}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08001095#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001096
Sean Christophersone348ac72019-12-10 15:24:33 -08001097static inline bool pt_can_write_msr(struct vcpu_vmx *vmx)
1098{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001099 return vmx_pt_mode_is_host_guest() &&
Sean Christophersone348ac72019-12-10 15:24:33 -08001100 !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
1101}
1102
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07001103static inline bool pt_output_base_valid(struct kvm_vcpu *vcpu, u64 base)
1104{
1105 /* The base must be 128-byte aligned and a legal physical address. */
Sean Christopherson7096cbf2020-09-24 12:42:50 -07001106 return !kvm_vcpu_is_illegal_gpa(vcpu, base) && !(base & 0x7f);
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07001107}
1108
Chao Peng2ef444f2018-10-24 16:05:12 +08001109static inline void pt_load_msr(struct pt_ctx *ctx, u32 addr_range)
1110{
1111 u32 i;
1112
1113 wrmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
1114 wrmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
1115 wrmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1116 wrmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1117 for (i = 0; i < addr_range; i++) {
1118 wrmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1119 wrmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1120 }
1121}
1122
1123static inline void pt_save_msr(struct pt_ctx *ctx, u32 addr_range)
1124{
1125 u32 i;
1126
1127 rdmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
1128 rdmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
1129 rdmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1130 rdmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1131 for (i = 0; i < addr_range; i++) {
1132 rdmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1133 rdmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1134 }
1135}
1136
1137static void pt_guest_enter(struct vcpu_vmx *vmx)
1138{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001139 if (vmx_pt_mode_is_system())
Chao Peng2ef444f2018-10-24 16:05:12 +08001140 return;
1141
Chao Peng2ef444f2018-10-24 16:05:12 +08001142 /*
Chao Pengb08c2892018-10-24 16:05:15 +08001143 * GUEST_IA32_RTIT_CTL is already set in the VMCS.
1144 * Save host state before VM entry.
Chao Peng2ef444f2018-10-24 16:05:12 +08001145 */
Chao Pengb08c2892018-10-24 16:05:15 +08001146 rdmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
Chao Peng2ef444f2018-10-24 16:05:12 +08001147 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
1148 wrmsrl(MSR_IA32_RTIT_CTL, 0);
1149 pt_save_msr(&vmx->pt_desc.host, vmx->pt_desc.addr_range);
1150 pt_load_msr(&vmx->pt_desc.guest, vmx->pt_desc.addr_range);
1151 }
1152}
1153
1154static void pt_guest_exit(struct vcpu_vmx *vmx)
1155{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001156 if (vmx_pt_mode_is_system())
Chao Peng2ef444f2018-10-24 16:05:12 +08001157 return;
1158
1159 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
1160 pt_save_msr(&vmx->pt_desc.guest, vmx->pt_desc.addr_range);
1161 pt_load_msr(&vmx->pt_desc.host, vmx->pt_desc.addr_range);
1162 }
1163
1164 /* Reload host state (IA32_RTIT_CTL will be cleared on VM exit). */
1165 wrmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
1166}
1167
Sean Christopherson13b964a2019-05-07 09:06:31 -07001168void vmx_set_host_fs_gs(struct vmcs_host_state *host, u16 fs_sel, u16 gs_sel,
1169 unsigned long fs_base, unsigned long gs_base)
1170{
1171 if (unlikely(fs_sel != host->fs_sel)) {
1172 if (!(fs_sel & 7))
1173 vmcs_write16(HOST_FS_SELECTOR, fs_sel);
1174 else
1175 vmcs_write16(HOST_FS_SELECTOR, 0);
1176 host->fs_sel = fs_sel;
1177 }
1178 if (unlikely(gs_sel != host->gs_sel)) {
1179 if (!(gs_sel & 7))
1180 vmcs_write16(HOST_GS_SELECTOR, gs_sel);
1181 else
1182 vmcs_write16(HOST_GS_SELECTOR, 0);
1183 host->gs_sel = gs_sel;
1184 }
1185 if (unlikely(fs_base != host->fs_base)) {
1186 vmcs_writel(HOST_FS_BASE, fs_base);
1187 host->fs_base = fs_base;
1188 }
1189 if (unlikely(gs_base != host->gs_base)) {
1190 vmcs_writel(HOST_GS_BASE, gs_base);
1191 host->gs_base = gs_base;
1192 }
1193}
1194
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001195void vmx_prepare_switch_to_guest(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001196{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001197 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond7ee0392018-07-23 12:32:47 -07001198 struct vmcs_host_state *host_state;
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001199#ifdef CONFIG_X86_64
Vitaly Kuznetsov35060ed2018-03-13 18:48:05 +01001200 int cpu = raw_smp_processor_id();
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001201#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001202 unsigned long fs_base, gs_base;
1203 u16 fs_sel, gs_sel;
Avi Kivity26bb0982009-09-07 11:14:12 +03001204 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001205
Sean Christophersond264ee02018-08-27 15:21:12 -07001206 vmx->req_immediate_exit = false;
1207
Liran Alonf48b4712018-11-20 18:03:25 +02001208 /*
1209 * Note that guest MSRs to be saved/restored can also be changed
1210 * when guest state is loaded. This happens when guest transitions
1211 * to/from long-mode by setting MSR_EFER.LMA.
1212 */
Sean Christopherson658ece82020-09-23 11:04:01 -07001213 if (!vmx->guest_uret_msrs_loaded) {
1214 vmx->guest_uret_msrs_loaded = true;
Sean Christophersone9bb1ae2020-09-23 11:04:00 -07001215 for (i = 0; i < vmx->nr_active_uret_msrs; ++i)
Sean Christopherson802145c2020-09-23 11:04:09 -07001216 kvm_set_user_return_msr(vmx->guest_uret_msrs[i].slot,
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001217 vmx->guest_uret_msrs[i].data,
1218 vmx->guest_uret_msrs[i].mask);
Liran Alonf48b4712018-11-20 18:03:25 +02001219
1220 }
wanpeng lic9dfd3f2020-02-17 18:37:43 +08001221
1222 if (vmx->nested.need_vmcs12_to_shadow_sync)
1223 nested_sync_vmcs12_to_shadow(vcpu);
1224
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001225 if (vmx->guest_state_loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001226 return;
1227
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001228 host_state = &vmx->loaded_vmcs->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001229
Avi Kivity33ed6322007-05-02 16:54:03 +03001230 /*
1231 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1232 * allow segment selectors with cpl > 0 or ti == 1.
1233 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07001234 host_state->ldt_sel = kvm_read_ldt();
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01001235
1236#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001237 savesegment(ds, host_state->ds_sel);
1238 savesegment(es, host_state->es_sel);
Sean Christophersone368b872018-07-23 12:32:41 -07001239
1240 gs_base = cpu_kernelmode_gs_base(cpu);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001241 if (likely(is_64bit_mm(current->mm))) {
Thomas Gleixner67580342020-05-28 16:13:52 -04001242 current_save_fsgs();
Sean Christophersone368b872018-07-23 12:32:41 -07001243 fs_sel = current->thread.fsindex;
1244 gs_sel = current->thread.gsindex;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001245 fs_base = current->thread.fsbase;
Sean Christophersone368b872018-07-23 12:32:41 -07001246 vmx->msr_host_kernel_gs_base = current->thread.gsbase;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001247 } else {
Sean Christophersone368b872018-07-23 12:32:41 -07001248 savesegment(fs, fs_sel);
1249 savesegment(gs, gs_sel);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001250 fs_base = read_msr(MSR_FS_BASE);
Sean Christophersone368b872018-07-23 12:32:41 -07001251 vmx->msr_host_kernel_gs_base = read_msr(MSR_KERNEL_GS_BASE);
Avi Kivity33ed6322007-05-02 16:54:03 +03001252 }
1253
Paolo Bonzini4679b612018-09-24 17:23:01 +02001254 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity33ed6322007-05-02 16:54:03 +03001255#else
Sean Christophersone368b872018-07-23 12:32:41 -07001256 savesegment(fs, fs_sel);
1257 savesegment(gs, gs_sel);
1258 fs_base = segment_base(fs_sel);
1259 gs_base = segment_base(gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001260#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001261
Sean Christopherson13b964a2019-05-07 09:06:31 -07001262 vmx_set_host_fs_gs(host_state, fs_sel, gs_sel, fs_base, gs_base);
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001263 vmx->guest_state_loaded = true;
Avi Kivity33ed6322007-05-02 16:54:03 +03001264}
1265
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001266static void vmx_prepare_switch_to_host(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001267{
Sean Christophersond7ee0392018-07-23 12:32:47 -07001268 struct vmcs_host_state *host_state;
1269
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001270 if (!vmx->guest_state_loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001271 return;
1272
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001273 host_state = &vmx->loaded_vmcs->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001274
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001275 ++vmx->vcpu.stat.host_state_reload;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001276
Avi Kivityc8770e72010-11-11 12:37:26 +02001277#ifdef CONFIG_X86_64
Paolo Bonzini4679b612018-09-24 17:23:01 +02001278 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivityc8770e72010-11-11 12:37:26 +02001279#endif
Sean Christophersond7ee0392018-07-23 12:32:47 -07001280 if (host_state->ldt_sel || (host_state->gs_sel & 7)) {
1281 kvm_load_ldt(host_state->ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001282#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001283 load_gs_index(host_state->gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02001284#else
Sean Christophersond7ee0392018-07-23 12:32:47 -07001285 loadsegment(gs, host_state->gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001286#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03001287 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07001288 if (host_state->fs_sel & 7)
1289 loadsegment(fs, host_state->fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001290#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001291 if (unlikely(host_state->ds_sel | host_state->es_sel)) {
1292 loadsegment(ds, host_state->ds_sel);
1293 loadsegment(es, host_state->es_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001294 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03001295#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08001296 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03001297#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001298 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001299#endif
Thomas Garnier45fc8752017-03-14 10:05:08 -07001300 load_fixmap_gdt(raw_smp_processor_id());
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001301 vmx->guest_state_loaded = false;
Sean Christopherson658ece82020-09-23 11:04:01 -07001302 vmx->guest_uret_msrs_loaded = false;
Avi Kivity33ed6322007-05-02 16:54:03 +03001303}
1304
Sean Christopherson678e3152018-07-23 12:32:43 -07001305#ifdef CONFIG_X86_64
1306static u64 vmx_read_guest_kernel_gs_base(struct vcpu_vmx *vmx)
Avi Kivitya9b21b62008-06-24 11:48:49 +03001307{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001308 preempt_disable();
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001309 if (vmx->guest_state_loaded)
Paolo Bonzini4679b612018-09-24 17:23:01 +02001310 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1311 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001312 return vmx->msr_guest_kernel_gs_base;
Avi Kivitya9b21b62008-06-24 11:48:49 +03001313}
1314
Sean Christopherson678e3152018-07-23 12:32:43 -07001315static void vmx_write_guest_kernel_gs_base(struct vcpu_vmx *vmx, u64 data)
1316{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001317 preempt_disable();
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001318 if (vmx->guest_state_loaded)
Paolo Bonzini4679b612018-09-24 17:23:01 +02001319 wrmsrl(MSR_KERNEL_GS_BASE, data);
1320 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001321 vmx->msr_guest_kernel_gs_base = data;
1322}
1323#endif
1324
Sean Christopherson5c911be2020-05-01 09:31:17 -07001325void vmx_vcpu_load_vmcs(struct kvm_vcpu *vcpu, int cpu,
1326 struct loaded_vmcs *buddy)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001327{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001328 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001329 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Sean Christopherson5c911be2020-05-01 09:31:17 -07001330 struct vmcs *prev;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001331
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001332 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01001333 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001334 local_irq_disable();
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001335
1336 /*
Sean Christopherson31603d42020-03-21 12:37:49 -07001337 * Ensure loaded_vmcs->cpu is read before adding loaded_vmcs to
1338 * this cpu's percpu list, otherwise it may not yet be deleted
1339 * from its previous cpu's percpu list. Pairs with the
1340 * smb_wmb() in __loaded_vmcs_clear().
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001341 */
1342 smp_rmb();
1343
Nadav Har'Eld462b812011-05-24 15:26:10 +03001344 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
1345 &per_cpu(loaded_vmcss_on_cpu, cpu));
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001346 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001347 }
1348
Sean Christopherson5c911be2020-05-01 09:31:17 -07001349 prev = per_cpu(current_vmcs, cpu);
1350 if (prev != vmx->loaded_vmcs->vmcs) {
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001351 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
1352 vmcs_load(vmx->loaded_vmcs->vmcs);
Sean Christopherson5c911be2020-05-01 09:31:17 -07001353
1354 /*
1355 * No indirect branch prediction barrier needed when switching
1356 * the active VMCS within a guest, e.g. on nested VM-Enter.
1357 * The L1 VMM can protect itself with retpolines, IBPB or IBRS.
1358 */
1359 if (!buddy || WARN_ON_ONCE(buddy->vmcs != prev))
1360 indirect_branch_prediction_barrier();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001361 }
1362
1363 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001364 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001365 unsigned long sysenter_esp;
1366
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07001367 /*
1368 * Flush all EPTP/VPID contexts, the new pCPU may have stale
1369 * TLB entries from its previous association with the vCPU.
1370 */
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001371 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001372
Avi Kivity6aa8b732006-12-10 02:21:36 -08001373 /*
1374 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001375 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001376 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001377 vmcs_writel(HOST_TR_BASE,
Andy Lutomirski72f5e082017-12-04 15:07:20 +01001378 (unsigned long)&get_cpu_entry_area(cpu)->tss.x86_tss);
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001379 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001380
1381 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
1382 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08001383
Nadav Har'Eld462b812011-05-24 15:26:10 +03001384 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001385 }
Feng Wu28b835d2015-09-18 22:29:54 +08001386
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001387 /* Setup TSC multiplier */
1388 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07001389 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
1390 decache_tsc_multiplier(vmx);
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001391}
1392
1393/*
1394 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
1395 * vcpu mutex is already taken.
1396 */
Sean Christopherson1af1bb02020-05-06 16:58:50 -07001397static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001398{
1399 struct vcpu_vmx *vmx = to_vmx(vcpu);
1400
Sean Christopherson5c911be2020-05-01 09:31:17 -07001401 vmx_vcpu_load_vmcs(vcpu, cpu, NULL);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001402
Feng Wu28b835d2015-09-18 22:29:54 +08001403 vmx_vcpu_pi_load(vcpu, cpu);
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001404
Wanpeng Li74c55932017-11-29 01:31:20 -08001405 vmx->host_debugctlmsr = get_debugctlmsr();
Feng Wu28b835d2015-09-18 22:29:54 +08001406}
1407
Sean Christopherson13b964a2019-05-07 09:06:31 -07001408static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001409{
Feng Wu28b835d2015-09-18 22:29:54 +08001410 vmx_vcpu_pi_put(vcpu);
1411
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001412 vmx_prepare_switch_to_host(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001413}
1414
Wanpeng Lif244dee2017-07-20 01:11:54 -07001415static bool emulation_required(struct kvm_vcpu *vcpu)
1416{
Sean Christopherson2ba44932020-09-23 11:44:48 -07001417 return emulate_invalid_guest_state && !vmx_guest_state_valid(vcpu);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001418}
1419
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001420unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001421{
Sean Christophersone7bddc52019-09-27 14:45:18 -07001422 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity78ac8b42010-04-08 18:19:35 +03001423 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03001424
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001425 if (!kvm_register_is_available(vcpu, VCPU_EXREG_RFLAGS)) {
1426 kvm_register_mark_available(vcpu, VCPU_EXREG_RFLAGS);
Avi Kivity6de12732011-03-07 12:51:22 +02001427 rflags = vmcs_readl(GUEST_RFLAGS);
Sean Christophersone7bddc52019-09-27 14:45:18 -07001428 if (vmx->rmode.vm86_active) {
Avi Kivity6de12732011-03-07 12:51:22 +02001429 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
Sean Christophersone7bddc52019-09-27 14:45:18 -07001430 save_rflags = vmx->rmode.save_rflags;
Avi Kivity6de12732011-03-07 12:51:22 +02001431 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
1432 }
Sean Christophersone7bddc52019-09-27 14:45:18 -07001433 vmx->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001434 }
Sean Christophersone7bddc52019-09-27 14:45:18 -07001435 return vmx->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001436}
1437
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001438void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001439{
Sean Christophersone7bddc52019-09-27 14:45:18 -07001440 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson491c1ad2019-09-27 14:45:19 -07001441 unsigned long old_rflags;
Wanpeng Lif244dee2017-07-20 01:11:54 -07001442
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00001443 if (is_unrestricted_guest(vcpu)) {
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001444 kvm_register_mark_available(vcpu, VCPU_EXREG_RFLAGS);
Sean Christopherson491c1ad2019-09-27 14:45:19 -07001445 vmx->rflags = rflags;
1446 vmcs_writel(GUEST_RFLAGS, rflags);
1447 return;
1448 }
1449
1450 old_rflags = vmx_get_rflags(vcpu);
Sean Christophersone7bddc52019-09-27 14:45:18 -07001451 vmx->rflags = rflags;
1452 if (vmx->rmode.vm86_active) {
1453 vmx->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001454 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001455 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001456 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001457
Sean Christophersone7bddc52019-09-27 14:45:18 -07001458 if ((old_rflags ^ vmx->rflags) & X86_EFLAGS_VM)
1459 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001460}
1461
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001462u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001463{
1464 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1465 int ret = 0;
1466
1467 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01001468 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001469 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01001470 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001471
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02001472 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001473}
1474
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001475void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001476{
1477 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1478 u32 interruptibility = interruptibility_old;
1479
1480 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
1481
Jan Kiszka48005f62010-02-19 19:38:07 +01001482 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001483 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01001484 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001485 interruptibility |= GUEST_INTR_STATE_STI;
1486
1487 if ((interruptibility != interruptibility_old))
1488 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
1489}
1490
Chao Pengbf8c55d2018-10-24 16:05:14 +08001491static int vmx_rtit_ctl_check(struct kvm_vcpu *vcpu, u64 data)
1492{
1493 struct vcpu_vmx *vmx = to_vmx(vcpu);
1494 unsigned long value;
1495
1496 /*
1497 * Any MSR write that attempts to change bits marked reserved will
1498 * case a #GP fault.
1499 */
1500 if (data & vmx->pt_desc.ctl_bitmask)
1501 return 1;
1502
1503 /*
1504 * Any attempt to modify IA32_RTIT_CTL while TraceEn is set will
1505 * result in a #GP unless the same write also clears TraceEn.
1506 */
1507 if ((vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) &&
1508 ((vmx->pt_desc.guest.ctl ^ data) & ~RTIT_CTL_TRACEEN))
1509 return 1;
1510
1511 /*
1512 * WRMSR to IA32_RTIT_CTL that sets TraceEn but clears this bit
1513 * and FabricEn would cause #GP, if
1514 * CPUID.(EAX=14H, ECX=0):ECX.SNGLRGNOUT[bit 2] = 0
1515 */
1516 if ((data & RTIT_CTL_TRACEEN) && !(data & RTIT_CTL_TOPA) &&
1517 !(data & RTIT_CTL_FABRIC_EN) &&
1518 !intel_pt_validate_cap(vmx->pt_desc.caps,
1519 PT_CAP_single_range_output))
1520 return 1;
1521
1522 /*
1523 * MTCFreq, CycThresh and PSBFreq encodings check, any MSR write that
1524 * utilize encodings marked reserved will casue a #GP fault.
1525 */
1526 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc_periods);
1527 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc) &&
1528 !test_bit((data & RTIT_CTL_MTC_RANGE) >>
1529 RTIT_CTL_MTC_RANGE_OFFSET, &value))
1530 return 1;
1531 value = intel_pt_validate_cap(vmx->pt_desc.caps,
1532 PT_CAP_cycle_thresholds);
1533 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1534 !test_bit((data & RTIT_CTL_CYC_THRESH) >>
1535 RTIT_CTL_CYC_THRESH_OFFSET, &value))
1536 return 1;
1537 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_periods);
1538 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1539 !test_bit((data & RTIT_CTL_PSB_FREQ) >>
1540 RTIT_CTL_PSB_FREQ_OFFSET, &value))
1541 return 1;
1542
1543 /*
1544 * If ADDRx_CFG is reserved or the encodings is >2 will
1545 * cause a #GP fault.
1546 */
1547 value = (data & RTIT_CTL_ADDR0) >> RTIT_CTL_ADDR0_OFFSET;
1548 if ((value && (vmx->pt_desc.addr_range < 1)) || (value > 2))
1549 return 1;
1550 value = (data & RTIT_CTL_ADDR1) >> RTIT_CTL_ADDR1_OFFSET;
1551 if ((value && (vmx->pt_desc.addr_range < 2)) || (value > 2))
1552 return 1;
1553 value = (data & RTIT_CTL_ADDR2) >> RTIT_CTL_ADDR2_OFFSET;
1554 if ((value && (vmx->pt_desc.addr_range < 3)) || (value > 2))
1555 return 1;
1556 value = (data & RTIT_CTL_ADDR3) >> RTIT_CTL_ADDR3_OFFSET;
1557 if ((value && (vmx->pt_desc.addr_range < 4)) || (value > 2))
1558 return 1;
1559
1560 return 0;
1561}
1562
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07001563static bool vmx_can_emulate_instruction(struct kvm_vcpu *vcpu, void *insn, int insn_len)
1564{
1565 return true;
1566}
1567
Sean Christopherson1957aa62019-08-27 14:40:39 -07001568static int skip_emulated_instruction(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001569{
Paolo Bonzinifede8072020-04-27 11:55:59 -04001570 unsigned long rip, orig_rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001571
Sean Christopherson1957aa62019-08-27 14:40:39 -07001572 /*
1573 * Using VMCS.VM_EXIT_INSTRUCTION_LEN on EPT misconfig depends on
1574 * undefined behavior: Intel's SDM doesn't mandate the VMCS field be
1575 * set when EPT misconfig occurs. In practice, real hardware updates
1576 * VM_EXIT_INSTRUCTION_LEN on EPT misconfig, but other hypervisors
1577 * (namely Hyper-V) don't set it due to it being undefined behavior,
1578 * i.e. we end up advancing IP with some random value.
1579 */
1580 if (!static_cpu_has(X86_FEATURE_HYPERVISOR) ||
1581 to_vmx(vcpu)->exit_reason != EXIT_REASON_EPT_MISCONFIG) {
Paolo Bonzinifede8072020-04-27 11:55:59 -04001582 orig_rip = kvm_rip_read(vcpu);
1583 rip = orig_rip + vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
1584#ifdef CONFIG_X86_64
1585 /*
1586 * We need to mask out the high 32 bits of RIP if not in 64-bit
1587 * mode, but just finding out that we are in 64-bit mode is
1588 * quite expensive. Only do it if there was a carry.
1589 */
1590 if (unlikely(((rip ^ orig_rip) >> 31) == 3) && !is_64_bit_mode(vcpu))
1591 rip = (u32)rip;
1592#endif
Sean Christopherson1957aa62019-08-27 14:40:39 -07001593 kvm_rip_write(vcpu, rip);
1594 } else {
1595 if (!kvm_emulate_instruction(vcpu, EMULTYPE_SKIP))
1596 return 0;
1597 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001598
Glauber Costa2809f5d2009-05-12 16:21:05 -04001599 /* skipping an emulated instruction also counts */
1600 vmx_set_interrupt_shadow(vcpu, 0);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02001601
Sean Christopherson60fc3d02019-08-27 14:40:38 -07001602 return 1;
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02001603}
1604
Vitaly Kuznetsov7a35e512020-06-05 13:59:05 +02001605/*
Oliver Upton5ef8acb2020-02-07 02:36:07 -08001606 * Recognizes a pending MTF VM-exit and records the nested state for later
1607 * delivery.
1608 */
1609static void vmx_update_emulated_instruction(struct kvm_vcpu *vcpu)
1610{
1611 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1612 struct vcpu_vmx *vmx = to_vmx(vcpu);
1613
1614 if (!is_guest_mode(vcpu))
1615 return;
1616
1617 /*
1618 * Per the SDM, MTF takes priority over debug-trap exceptions besides
1619 * T-bit traps. As instruction emulation is completed (i.e. at the
1620 * instruction boundary), any #DB exception pending delivery must be a
1621 * debug-trap. Record the pending MTF state to be delivered in
1622 * vmx_check_nested_events().
1623 */
1624 if (nested_cpu_has_mtf(vmcs12) &&
1625 (!vcpu->arch.exception.pending ||
1626 vcpu->arch.exception.nr == DB_VECTOR))
1627 vmx->nested.mtf_pending = true;
1628 else
1629 vmx->nested.mtf_pending = false;
1630}
1631
1632static int vmx_skip_emulated_instruction(struct kvm_vcpu *vcpu)
1633{
1634 vmx_update_emulated_instruction(vcpu);
1635 return skip_emulated_instruction(vcpu);
1636}
1637
Wanpeng Licaa057a2018-03-12 04:53:03 -07001638static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
1639{
1640 /*
1641 * Ensure that we clear the HLT state in the VMCS. We don't need to
1642 * explicitly skip the instruction because if the HLT state is set,
1643 * then the instruction is already executing and RIP has already been
1644 * advanced.
1645 */
1646 if (kvm_hlt_in_guest(vcpu->kvm) &&
1647 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
1648 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
1649}
1650
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001651static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02001652{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001653 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001654 unsigned nr = vcpu->arch.exception.nr;
1655 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001656 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001657 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001658
Jim Mattsonda998b42018-10-16 14:29:22 -07001659 kvm_deliver_exception_payload(vcpu);
1660
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001661 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001662 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001663 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
1664 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001665
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001666 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05001667 int inc_eip = 0;
1668 if (kvm_exception_is_soft(nr))
1669 inc_eip = vcpu->arch.event_exit_inst_len;
Sean Christopherson9497e1f2019-08-27 14:40:36 -07001670 kvm_inject_realmode_interrupt(vcpu, nr, inc_eip);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001671 return;
1672 }
1673
Sean Christophersonadd5ff72018-03-23 09:34:00 -07001674 WARN_ON_ONCE(vmx->emulation_required);
1675
Gleb Natapov66fd3f72009-05-11 13:35:50 +03001676 if (kvm_exception_is_soft(nr)) {
1677 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
1678 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001679 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
1680 } else
1681 intr_info |= INTR_TYPE_HARD_EXCEPTION;
1682
1683 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Wanpeng Licaa057a2018-03-12 04:53:03 -07001684
1685 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02001686}
1687
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001688static void vmx_setup_uret_msr(struct vcpu_vmx *vmx, unsigned int msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001689{
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001690 struct vmx_uret_msr tmp;
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001691 int from, to;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001692
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001693 from = __vmx_find_uret_msr(vmx, msr);
1694 if (from < 0)
1695 return;
1696 to = vmx->nr_active_uret_msrs++;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001697
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001698 tmp = vmx->guest_uret_msrs[to];
1699 vmx->guest_uret_msrs[to] = vmx->guest_uret_msrs[from];
1700 vmx->guest_uret_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03001701}
1702
1703/*
Avi Kivitye38aea32007-04-19 13:22:48 +03001704 * Set up the vmcs to automatically save and restore system
1705 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
1706 * mode, as fiddling with msrs is very expensive.
1707 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001708static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03001709{
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001710 vmx->guest_uret_msrs_loaded = false;
1711 vmx->nr_active_uret_msrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001712#ifdef CONFIG_X86_64
Jim Mattson84c8c5b2018-12-05 15:29:01 -08001713 /*
1714 * The SYSCALL MSRs are only needed on long mode guests, and only
1715 * when EFER.SCE is set.
1716 */
1717 if (is_long_mode(&vmx->vcpu) && (vmx->vcpu.arch.efer & EFER_SCE)) {
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001718 vmx_setup_uret_msr(vmx, MSR_STAR);
1719 vmx_setup_uret_msr(vmx, MSR_LSTAR);
1720 vmx_setup_uret_msr(vmx, MSR_SYSCALL_MASK);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001721 }
Eddie Donga75beee2007-05-17 18:55:15 +03001722#endif
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001723 if (update_transition_efer(vmx))
1724 vmx_setup_uret_msr(vmx, MSR_EFER);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001725
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001726 if (guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP))
1727 vmx_setup_uret_msr(vmx, MSR_TSC_AUX);
1728
1729 vmx_setup_uret_msr(vmx, MSR_IA32_TSX_CTRL);
Avi Kivity58972972009-02-24 22:26:47 +02001730
Yang Zhang8d146952013-01-25 10:18:50 +08001731 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01001732 vmx_update_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03001733}
1734
Leonid Shatz326e7422018-11-06 12:14:25 +02001735static u64 vmx_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001736{
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001737 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1738 u64 g_tsc_offset = 0;
Leonid Shatz326e7422018-11-06 12:14:25 +02001739
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001740 /*
1741 * We're here if L1 chose not to trap WRMSR to TSC. According
1742 * to the spec, this should set L1's TSC; The offset that L1
1743 * set for L2 remains unchanged, and still needs to be added
1744 * to the newly set TSC to get L2's TSC.
1745 */
1746 if (is_guest_mode(vcpu) &&
Xiaoyao Li5e3d3942019-12-06 16:45:26 +08001747 (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETTING))
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001748 g_tsc_offset = vmcs12->tsc_offset;
1749
1750 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1751 vcpu->arch.tsc_offset - g_tsc_offset,
1752 offset);
1753 vmcs_write64(TSC_OFFSET, offset + g_tsc_offset);
1754 return offset + g_tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001755}
1756
Nadav Har'El801d3422011-05-25 23:02:23 +03001757/*
1758 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
1759 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
1760 * all guests if the "nested" module option is off, and can also be disabled
1761 * for a single guest by disabling its VMX cpuid bit.
1762 */
Sean Christopherson7c97fcb2018-12-03 13:53:17 -08001763bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
Nadav Har'El801d3422011-05-25 23:02:23 +03001764{
Radim Krčmářd6321d42017-08-05 00:12:49 +02001765 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03001766}
1767
Haozhong Zhang37e4c992016-06-22 14:59:55 +08001768static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
1769 uint64_t val)
1770{
1771 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
1772
1773 return !(val & ~valid_bits);
1774}
1775
Tom Lendacky801e4592018-02-21 13:39:51 -06001776static int vmx_get_msr_feature(struct kvm_msr_entry *msr)
1777{
Paolo Bonzini13893092018-02-26 13:40:09 +01001778 switch (msr->index) {
1779 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1780 if (!nested)
1781 return 1;
1782 return vmx_get_vmx_msr(&vmcs_config.nested, msr->index, &msr->data);
Like Xu27461da32020-05-29 15:43:45 +08001783 case MSR_IA32_PERF_CAPABILITIES:
1784 msr->data = vmx_get_perf_capabilities();
1785 return 0;
Paolo Bonzini13893092018-02-26 13:40:09 +01001786 default:
Peter Xu12bc2132020-06-22 18:04:42 -04001787 return KVM_MSR_RET_INVALID;
Paolo Bonzini13893092018-02-26 13:40:09 +01001788 }
Tom Lendacky801e4592018-02-21 13:39:51 -06001789}
1790
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001791/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001792 * Reads an msr value (of 'msr_index') into 'pdata'.
1793 * Returns 0 on success, non-0 otherwise.
1794 * Assumes vcpu_load() was already called.
1795 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001796static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001797{
Borislav Petkova6cb0992017-12-20 12:50:28 +01001798 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001799 struct vmx_uret_msr *msr;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001800 u32 index;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001801
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001802 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001803#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001804 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001805 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001806 break;
1807 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001808 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001809 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001810 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001811 msr_info->data = vmx_read_guest_kernel_gs_base(vmx);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001812 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03001813#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001814 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001815 return kvm_get_msr_common(vcpu, msr_info);
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05001816 case MSR_IA32_TSX_CTRL:
1817 if (!msr_info->host_initiated &&
1818 !(vcpu->arch.arch_capabilities & ARCH_CAP_TSX_CTRL_MSR))
1819 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001820 goto find_uret_msr;
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001821 case MSR_IA32_UMWAIT_CONTROL:
1822 if (!msr_info->host_initiated && !vmx_has_waitpkg(vmx))
1823 return 1;
1824
1825 msr_info->data = vmx->msr_ia32_umwait_control;
1826 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001827 case MSR_IA32_SPEC_CTRL:
1828 if (!msr_info->host_initiated &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001829 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
1830 return 1;
1831
1832 msr_info->data = to_vmx(vcpu)->spec_ctrl;
1833 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001834 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001835 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001836 break;
1837 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001838 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001839 break;
1840 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001841 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001842 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001843 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08001844 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02001845 (!msr_info->host_initiated &&
1846 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01001847 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001848 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001849 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001850 case MSR_IA32_MCG_EXT_CTL:
1851 if (!msr_info->host_initiated &&
Borislav Petkova6cb0992017-12-20 12:50:28 +01001852 !(vmx->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001853 FEAT_CTL_LMCE_ENABLED))
Jan Kiszkacae50132014-01-04 18:47:22 +01001854 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001855 msr_info->data = vcpu->arch.mcg_ext_ctl;
1856 break;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001857 case MSR_IA32_FEAT_CTL:
Borislav Petkova6cb0992017-12-20 12:50:28 +01001858 msr_info->data = vmx->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01001859 break;
1860 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1861 if (!nested_vmx_allowed(vcpu))
1862 return 1;
Vitaly Kuznetsov31de3d22020-02-05 13:30:33 +01001863 if (vmx_get_vmx_msr(&vmx->nested.msrs, msr_info->index,
1864 &msr_info->data))
1865 return 1;
1866 /*
1867 * Enlightened VMCS v1 doesn't have certain fields, but buggy
1868 * Hyper-V versions are still trying to use corresponding
1869 * features when they are exposed. Filter out the essential
1870 * minimum.
1871 */
1872 if (!msr_info->host_initiated &&
1873 vmx->nested.enlightened_vmcs_enabled)
1874 nested_evmcs_filter_control_msr(msr_info->index,
1875 &msr_info->data);
1876 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001877 case MSR_IA32_RTIT_CTL:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001878 if (!vmx_pt_mode_is_host_guest())
Chao Pengbf8c55d2018-10-24 16:05:14 +08001879 return 1;
1880 msr_info->data = vmx->pt_desc.guest.ctl;
1881 break;
1882 case MSR_IA32_RTIT_STATUS:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001883 if (!vmx_pt_mode_is_host_guest())
Chao Pengbf8c55d2018-10-24 16:05:14 +08001884 return 1;
1885 msr_info->data = vmx->pt_desc.guest.status;
1886 break;
1887 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001888 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001889 !intel_pt_validate_cap(vmx->pt_desc.caps,
1890 PT_CAP_cr3_filtering))
1891 return 1;
1892 msr_info->data = vmx->pt_desc.guest.cr3_match;
1893 break;
1894 case MSR_IA32_RTIT_OUTPUT_BASE:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001895 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001896 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1897 PT_CAP_topa_output) &&
1898 !intel_pt_validate_cap(vmx->pt_desc.caps,
1899 PT_CAP_single_range_output)))
1900 return 1;
1901 msr_info->data = vmx->pt_desc.guest.output_base;
1902 break;
1903 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001904 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001905 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1906 PT_CAP_topa_output) &&
1907 !intel_pt_validate_cap(vmx->pt_desc.caps,
1908 PT_CAP_single_range_output)))
1909 return 1;
1910 msr_info->data = vmx->pt_desc.guest.output_mask;
1911 break;
1912 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
1913 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
Sean Christopherson2ef76192020-03-02 15:56:22 -08001914 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001915 (index >= 2 * intel_pt_validate_cap(vmx->pt_desc.caps,
1916 PT_CAP_num_address_ranges)))
1917 return 1;
1918 if (index % 2)
1919 msr_info->data = vmx->pt_desc.guest.addr_b[index / 2];
1920 else
1921 msr_info->data = vmx->pt_desc.guest.addr_a[index / 2];
1922 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001923 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02001924 if (!msr_info->host_initiated &&
1925 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001926 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001927 goto find_uret_msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001928 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001929 find_uret_msr:
Sean Christophersond85a8032020-09-23 11:04:06 -07001930 msr = vmx_find_uret_msr(vmx, msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001931 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001932 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001933 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001934 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001935 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001936 }
1937
Avi Kivity6aa8b732006-12-10 02:21:36 -08001938 return 0;
1939}
1940
Sean Christopherson24085002020-04-28 16:10:24 -07001941static u64 nested_vmx_truncate_sysenter_addr(struct kvm_vcpu *vcpu,
1942 u64 data)
1943{
1944#ifdef CONFIG_X86_64
1945 if (!guest_cpuid_has(vcpu, X86_FEATURE_LM))
1946 return (u32)data;
1947#endif
1948 return (unsigned long)data;
1949}
1950
Avi Kivity6aa8b732006-12-10 02:21:36 -08001951/*
Miaohe Lin311497e2019-12-11 14:26:25 +08001952 * Writes msr value into the appropriate "register".
Avi Kivity6aa8b732006-12-10 02:21:36 -08001953 * Returns 0 on success, non-0 otherwise.
1954 * Assumes vcpu_load() was already called.
1955 */
Will Auld8fe8ab42012-11-29 12:42:12 -08001956static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001957{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001958 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001959 struct vmx_uret_msr *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03001960 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08001961 u32 msr_index = msr_info->index;
1962 u64 data = msr_info->data;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001963 u32 index;
Eddie Dong2cc51562007-05-21 07:28:09 +03001964
Avi Kivity6aa8b732006-12-10 02:21:36 -08001965 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001966 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08001967 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03001968 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001969#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001970 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001971 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001972 vmcs_writel(GUEST_FS_BASE, data);
1973 break;
1974 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001975 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001976 vmcs_writel(GUEST_GS_BASE, data);
1977 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001978 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001979 vmx_write_guest_kernel_gs_base(vmx, data);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001980 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001981#endif
1982 case MSR_IA32_SYSENTER_CS:
Sean Christophersonde70d272019-05-07 09:06:36 -07001983 if (is_guest_mode(vcpu))
1984 get_vmcs12(vcpu)->guest_sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001985 vmcs_write32(GUEST_SYSENTER_CS, data);
1986 break;
1987 case MSR_IA32_SYSENTER_EIP:
Sean Christopherson24085002020-04-28 16:10:24 -07001988 if (is_guest_mode(vcpu)) {
1989 data = nested_vmx_truncate_sysenter_addr(vcpu, data);
Sean Christophersonde70d272019-05-07 09:06:36 -07001990 get_vmcs12(vcpu)->guest_sysenter_eip = data;
Sean Christopherson24085002020-04-28 16:10:24 -07001991 }
Avi Kivityf5b42c32007-03-06 12:05:53 +02001992 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001993 break;
1994 case MSR_IA32_SYSENTER_ESP:
Sean Christopherson24085002020-04-28 16:10:24 -07001995 if (is_guest_mode(vcpu)) {
1996 data = nested_vmx_truncate_sysenter_addr(vcpu, data);
Sean Christophersonde70d272019-05-07 09:06:36 -07001997 get_vmcs12(vcpu)->guest_sysenter_esp = data;
Sean Christopherson24085002020-04-28 16:10:24 -07001998 }
Avi Kivityf5b42c32007-03-06 12:05:53 +02001999 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002000 break;
Sean Christopherson699a1ac2019-05-07 09:06:37 -07002001 case MSR_IA32_DEBUGCTLMSR:
2002 if (is_guest_mode(vcpu) && get_vmcs12(vcpu)->vm_exit_controls &
2003 VM_EXIT_SAVE_DEBUG_CONTROLS)
2004 get_vmcs12(vcpu)->guest_ia32_debugctl = data;
2005
2006 ret = kvm_set_msr_common(vcpu, msr_info);
2007 break;
2008
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002009 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08002010 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02002011 (!msr_info->host_initiated &&
2012 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002013 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08002014 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07002015 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002016 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08002017 vmcs_write64(GUEST_BNDCFGS, data);
2018 break;
Tao Xu6e3ba4a2019-07-16 14:55:50 +08002019 case MSR_IA32_UMWAIT_CONTROL:
2020 if (!msr_info->host_initiated && !vmx_has_waitpkg(vmx))
2021 return 1;
2022
2023 /* The reserved bit 1 and non-32 bit [63:32] should be zero */
2024 if (data & (BIT_ULL(1) | GENMASK_ULL(63, 32)))
2025 return 1;
2026
2027 vmx->msr_ia32_umwait_control = data;
2028 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002029 case MSR_IA32_SPEC_CTRL:
2030 if (!msr_info->host_initiated &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002031 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
2032 return 1;
2033
Maxim Levitsky841c2be2020-07-08 14:57:31 +03002034 if (kvm_spec_ctrl_test_value(data))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002035 return 1;
2036
2037 vmx->spec_ctrl = data;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002038 if (!data)
2039 break;
2040
2041 /*
2042 * For non-nested:
2043 * When it's written (to non-zero) for the first time, pass
2044 * it through.
2045 *
2046 * For nested:
2047 * The handling of the MSR bitmap for L2 guests is done in
Miaohe Lin4d516fe2019-12-11 14:26:21 +08002048 * nested_vmx_prepare_msr_bitmap. We should not touch the
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002049 * vmcs02.msr_bitmap here since it gets completely overwritten
2050 * in the merging. We update the vmcs01 here for L1 as well
2051 * since it will end up touching the MSR anyway now.
2052 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002053 vmx_disable_intercept_for_msr(vcpu,
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002054 MSR_IA32_SPEC_CTRL,
2055 MSR_TYPE_RW);
2056 break;
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05002057 case MSR_IA32_TSX_CTRL:
2058 if (!msr_info->host_initiated &&
2059 !(vcpu->arch.arch_capabilities & ARCH_CAP_TSX_CTRL_MSR))
2060 return 1;
2061 if (data & ~(TSX_CTRL_RTM_DISABLE | TSX_CTRL_CPUID_CLEAR))
2062 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002063 goto find_uret_msr;
Ashok Raj15d45072018-02-01 22:59:43 +01002064 case MSR_IA32_PRED_CMD:
2065 if (!msr_info->host_initiated &&
Ashok Raj15d45072018-02-01 22:59:43 +01002066 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
2067 return 1;
2068
2069 if (data & ~PRED_CMD_IBPB)
2070 return 1;
Paolo Bonzini6441fa62020-01-20 16:33:06 +01002071 if (!boot_cpu_has(X86_FEATURE_SPEC_CTRL))
2072 return 1;
Ashok Raj15d45072018-02-01 22:59:43 +01002073 if (!data)
2074 break;
2075
2076 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
2077
2078 /*
2079 * For non-nested:
2080 * When it's written (to non-zero) for the first time, pass
2081 * it through.
2082 *
2083 * For nested:
2084 * The handling of the MSR bitmap for L2 guests is done in
Miaohe Lin4d516fe2019-12-11 14:26:21 +08002085 * nested_vmx_prepare_msr_bitmap. We should not touch the
Ashok Raj15d45072018-02-01 22:59:43 +01002086 * vmcs02.msr_bitmap here since it gets completely overwritten
2087 * in the merging.
2088 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002089 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_PRED_CMD, MSR_TYPE_W);
Ashok Raj15d45072018-02-01 22:59:43 +01002090 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002091 case MSR_IA32_CR_PAT:
Sean Christophersond28f4292019-05-07 09:06:27 -07002092 if (!kvm_pat_valid(data))
2093 return 1;
2094
Sean Christopherson142e4be2019-05-07 09:06:35 -07002095 if (is_guest_mode(vcpu) &&
2096 get_vmcs12(vcpu)->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
2097 get_vmcs12(vcpu)->guest_ia32_pat = data;
2098
Sheng Yang468d4722008-10-09 16:01:55 +08002099 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2100 vmcs_write64(GUEST_IA32_PAT, data);
2101 vcpu->arch.pat = data;
2102 break;
2103 }
Will Auld8fe8ab42012-11-29 12:42:12 -08002104 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002105 break;
Will Auldba904632012-11-29 12:42:50 -08002106 case MSR_IA32_TSC_ADJUST:
2107 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002108 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002109 case MSR_IA32_MCG_EXT_CTL:
2110 if ((!msr_info->host_initiated &&
2111 !(to_vmx(vcpu)->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002112 FEAT_CTL_LMCE_ENABLED)) ||
Ashok Rajc45dcc72016-06-22 14:59:56 +08002113 (data & ~MCG_EXT_CTL_LMCE_EN))
2114 return 1;
2115 vcpu->arch.mcg_ext_ctl = data;
2116 break;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002117 case MSR_IA32_FEAT_CTL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08002118 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08002119 (to_vmx(vcpu)->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002120 FEAT_CTL_LOCKED && !msr_info->host_initiated))
Jan Kiszkacae50132014-01-04 18:47:22 +01002121 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08002122 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01002123 if (msr_info->host_initiated && data == 0)
2124 vmx_leave_nested(vcpu);
2125 break;
2126 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08002127 if (!msr_info->host_initiated)
2128 return 1; /* they are read-only */
2129 if (!nested_vmx_allowed(vcpu))
2130 return 1;
2131 return vmx_set_vmx_msr(vcpu, msr_index, data);
Chao Pengbf8c55d2018-10-24 16:05:14 +08002132 case MSR_IA32_RTIT_CTL:
Sean Christopherson2ef76192020-03-02 15:56:22 -08002133 if (!vmx_pt_mode_is_host_guest() ||
Luwei Kangee85dec2018-10-24 16:05:16 +08002134 vmx_rtit_ctl_check(vcpu, data) ||
2135 vmx->nested.vmxon)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002136 return 1;
2137 vmcs_write64(GUEST_IA32_RTIT_CTL, data);
2138 vmx->pt_desc.guest.ctl = data;
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002139 pt_update_intercept_for_msr(vcpu);
Chao Pengbf8c55d2018-10-24 16:05:14 +08002140 break;
2141 case MSR_IA32_RTIT_STATUS:
Sean Christophersone348ac72019-12-10 15:24:33 -08002142 if (!pt_can_write_msr(vmx))
2143 return 1;
2144 if (data & MSR_IA32_RTIT_STATUS_MASK)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002145 return 1;
2146 vmx->pt_desc.guest.status = data;
2147 break;
2148 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christophersone348ac72019-12-10 15:24:33 -08002149 if (!pt_can_write_msr(vmx))
2150 return 1;
2151 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2152 PT_CAP_cr3_filtering))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002153 return 1;
2154 vmx->pt_desc.guest.cr3_match = data;
2155 break;
2156 case MSR_IA32_RTIT_OUTPUT_BASE:
Sean Christophersone348ac72019-12-10 15:24:33 -08002157 if (!pt_can_write_msr(vmx))
2158 return 1;
2159 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2160 PT_CAP_topa_output) &&
2161 !intel_pt_validate_cap(vmx->pt_desc.caps,
2162 PT_CAP_single_range_output))
2163 return 1;
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07002164 if (!pt_output_base_valid(vcpu, data))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002165 return 1;
2166 vmx->pt_desc.guest.output_base = data;
2167 break;
2168 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christophersone348ac72019-12-10 15:24:33 -08002169 if (!pt_can_write_msr(vmx))
2170 return 1;
2171 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2172 PT_CAP_topa_output) &&
2173 !intel_pt_validate_cap(vmx->pt_desc.caps,
2174 PT_CAP_single_range_output))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002175 return 1;
2176 vmx->pt_desc.guest.output_mask = data;
2177 break;
2178 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christophersone348ac72019-12-10 15:24:33 -08002179 if (!pt_can_write_msr(vmx))
2180 return 1;
Chao Pengbf8c55d2018-10-24 16:05:14 +08002181 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
Sean Christophersone348ac72019-12-10 15:24:33 -08002182 if (index >= 2 * intel_pt_validate_cap(vmx->pt_desc.caps,
2183 PT_CAP_num_address_ranges))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002184 return 1;
Sean Christophersonfe6ed362019-12-10 15:24:32 -08002185 if (is_noncanonical_address(data, vcpu))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002186 return 1;
2187 if (index % 2)
2188 vmx->pt_desc.guest.addr_b[index / 2] = data;
2189 else
2190 vmx->pt_desc.guest.addr_a[index / 2] = data;
2191 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002192 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02002193 if (!msr_info->host_initiated &&
2194 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002195 return 1;
2196 /* Check reserved bit, higher 32 bits should be zero */
2197 if ((data >> 32) != 0)
2198 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002199 goto find_uret_msr;
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05002200
Avi Kivity6aa8b732006-12-10 02:21:36 -08002201 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002202 find_uret_msr:
Sean Christophersond85a8032020-09-23 11:04:06 -07002203 msr = vmx_find_uret_msr(vmx, msr_index);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05002204 if (msr)
Sean Christopherson7bf662b2020-09-23 11:04:07 -07002205 ret = vmx_set_guest_uret_msr(vmx, msr, data);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05002206 else
2207 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002208 }
2209
Eddie Dong2cc51562007-05-21 07:28:09 +03002210 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002211}
2212
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002213static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002214{
Sean Christophersonf98c1e72020-05-01 21:32:30 -07002215 unsigned long guest_owned_bits;
2216
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002217 kvm_register_mark_available(vcpu, reg);
2218
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002219 switch (reg) {
2220 case VCPU_REGS_RSP:
2221 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
2222 break;
2223 case VCPU_REGS_RIP:
2224 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
2225 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002226 case VCPU_EXREG_PDPTR:
2227 if (enable_ept)
2228 ept_save_pdptrs(vcpu);
2229 break;
Sean Christophersonbd31fe42020-05-01 21:32:31 -07002230 case VCPU_EXREG_CR0:
2231 guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
2232
2233 vcpu->arch.cr0 &= ~guest_owned_bits;
2234 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & guest_owned_bits;
2235 break;
Sean Christopherson34059c22019-09-27 14:45:23 -07002236 case VCPU_EXREG_CR3:
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00002237 if (is_unrestricted_guest(vcpu) ||
2238 (enable_ept && is_paging(vcpu)))
Sean Christopherson34059c22019-09-27 14:45:23 -07002239 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2240 break;
Sean Christophersonf98c1e72020-05-01 21:32:30 -07002241 case VCPU_EXREG_CR4:
2242 guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
2243
2244 vcpu->arch.cr4 &= ~guest_owned_bits;
2245 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & guest_owned_bits;
2246 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002247 default:
Sean Christopherson34059c22019-09-27 14:45:23 -07002248 WARN_ON_ONCE(1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002249 break;
2250 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002251}
2252
Avi Kivity6aa8b732006-12-10 02:21:36 -08002253static __init int cpu_has_kvm_support(void)
2254{
Eduardo Habkost6210e372008-11-17 19:03:16 -02002255 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002256}
2257
2258static __init int vmx_disabled_by_bios(void)
2259{
Sean Christophersona4d0b2f2019-12-20 20:45:09 -08002260 return !boot_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
2261 !boot_cpu_has(X86_FEATURE_VMX);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002262}
2263
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002264static int kvm_cpu_vmxon(u64 vmxon_pointer)
Dongxiao Xu7725b892010-05-11 18:29:38 +08002265{
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002266 u64 msr;
2267
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002268 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03002269 intel_pt_handle_vmx(1);
2270
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002271 asm_volatile_goto("1: vmxon %[vmxon_pointer]\n\t"
2272 _ASM_EXTABLE(1b, %l[fault])
2273 : : [vmxon_pointer] "m"(vmxon_pointer)
2274 : : fault);
2275 return 0;
2276
2277fault:
2278 WARN_ONCE(1, "VMXON faulted, MSR_IA32_FEAT_CTL (0x3a) = 0x%llx\n",
2279 rdmsrl_safe(MSR_IA32_FEAT_CTL, &msr) ? 0xdeadbeef : msr);
2280 intel_pt_handle_vmx(0);
2281 cr4_clear_bits(X86_CR4_VMXE);
2282
2283 return -EFAULT;
Dongxiao Xu7725b892010-05-11 18:29:38 +08002284}
2285
Radim Krčmář13a34e02014-08-28 15:13:03 +02002286static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002287{
2288 int cpu = raw_smp_processor_id();
2289 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002290 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002291
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002292 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02002293 return -EBUSY;
2294
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002295 /*
2296 * This can happen if we hot-added a CPU but failed to allocate
2297 * VP assist page for it.
2298 */
2299 if (static_branch_unlikely(&enable_evmcs) &&
2300 !hv_get_vp_assist_page(cpu))
2301 return -EFAULT;
2302
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002303 r = kvm_cpu_vmxon(phys_addr);
2304 if (r)
2305 return r;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002306
David Hildenbrandfdf288b2017-08-24 20:51:29 +02002307 if (enable_ept)
2308 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02002309
2310 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002311}
2312
Nadav Har'Eld462b812011-05-24 15:26:10 +03002313static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03002314{
2315 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03002316 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03002317
Nadav Har'Eld462b812011-05-24 15:26:10 +03002318 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
2319 loaded_vmcss_on_cpu_link)
2320 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03002321}
2322
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002323
2324/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
2325 * tricks.
2326 */
2327static void kvm_cpu_vmxoff(void)
2328{
Uros Bizjak4b1e5472018-10-11 19:40:44 +02002329 asm volatile (__ex("vmxoff"));
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03002330
2331 intel_pt_handle_vmx(0);
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002332 cr4_clear_bits(X86_CR4_VMXE);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002333}
2334
Radim Krčmář13a34e02014-08-28 15:13:03 +02002335static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002336{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002337 vmclear_local_loaded_vmcss();
2338 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002339}
2340
Sean Christopherson7a57c092020-03-12 11:04:16 -07002341/*
2342 * There is no X86_FEATURE for SGX yet, but anyway we need to query CPUID
2343 * directly instead of going through cpu_has(), to ensure KVM is trapping
2344 * ENCLS whenever it's supported in hardware. It does not matter whether
2345 * the host OS supports or has enabled SGX.
2346 */
2347static bool cpu_has_sgx(void)
2348{
2349 return cpuid_eax(0) >= 0x12 && (cpuid_eax(0x12) & BIT(0));
2350}
2351
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002352static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04002353 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002354{
2355 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002356 u32 ctl = ctl_min | ctl_opt;
2357
2358 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2359
2360 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
2361 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
2362
2363 /* Ensure minimum (required) set of control bits are supported. */
2364 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002365 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002366
2367 *result = ctl;
2368 return 0;
2369}
2370
Sean Christopherson7caaa712018-12-03 13:53:01 -08002371static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf,
2372 struct vmx_capability *vmx_cap)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002373{
2374 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08002375 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002376 u32 _pin_based_exec_control = 0;
2377 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002378 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002379 u32 _vmexit_control = 0;
2380 u32 _vmentry_control = 0;
2381
Paolo Bonzini13893092018-02-26 13:40:09 +01002382 memset(vmcs_conf, 0, sizeof(*vmcs_conf));
Raghavendra K T10166742012-02-07 23:19:20 +05302383 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002384#ifdef CONFIG_X86_64
2385 CPU_BASED_CR8_LOAD_EXITING |
2386 CPU_BASED_CR8_STORE_EXITING |
2387#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002388 CPU_BASED_CR3_LOAD_EXITING |
2389 CPU_BASED_CR3_STORE_EXITING |
Quan Xu8eb73e2d2017-12-12 16:44:21 +08002390 CPU_BASED_UNCOND_IO_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002391 CPU_BASED_MOV_DR_EXITING |
Xiaoyao Li5e3d3942019-12-06 16:45:26 +08002392 CPU_BASED_USE_TSC_OFFSETTING |
Wanpeng Li4d5422c2018-03-12 04:53:02 -07002393 CPU_BASED_MWAIT_EXITING |
2394 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02002395 CPU_BASED_INVLPG_EXITING |
2396 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06002397
Sheng Yangf78e0e22007-10-29 09:40:42 +08002398 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08002399 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08002400 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002401 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
2402 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002403 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002404#ifdef CONFIG_X86_64
2405 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2406 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
2407 ~CPU_BASED_CR8_STORE_EXITING;
2408#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08002409 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002410 min2 = 0;
2411 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08002412 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08002413 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08002414 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002415 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002416 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002417 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Paolo Bonzini0367f202016-07-12 10:44:55 +02002418 SECONDARY_EXEC_DESC |
Sean Christopherson7f3603b2020-09-23 09:50:47 -07002419 SECONDARY_EXEC_ENABLE_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08002420 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002421 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03002422 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08002423 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08002424 SECONDARY_EXEC_XSAVES |
David Hildenbrand736fdf72017-08-24 20:51:37 +02002425 SECONDARY_EXEC_RDSEED_EXITING |
2426 SECONDARY_EXEC_RDRAND_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08002427 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04002428 SECONDARY_EXEC_TSC_SCALING |
Tao Xue69e72fa2019-07-16 14:55:49 +08002429 SECONDARY_EXEC_ENABLE_USR_WAIT_PAUSE |
Chao Pengf99e3da2018-10-24 16:05:10 +08002430 SECONDARY_EXEC_PT_USE_GPA |
2431 SECONDARY_EXEC_PT_CONCEAL_VMX |
Sean Christopherson7a57c092020-03-12 11:04:16 -07002432 SECONDARY_EXEC_ENABLE_VMFUNC;
2433 if (cpu_has_sgx())
2434 opt2 |= SECONDARY_EXEC_ENCLS_EXITING;
Sheng Yangd56f5462008-04-25 10:13:16 +08002435 if (adjust_vmx_controls(min2, opt2,
2436 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002437 &_cpu_based_2nd_exec_control) < 0)
2438 return -EIO;
2439 }
2440#ifndef CONFIG_X86_64
2441 if (!(_cpu_based_2nd_exec_control &
2442 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
2443 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
2444#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08002445
2446 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2447 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08002448 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002449 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
2450 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08002451
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002452 rdmsr_safe(MSR_IA32_VMX_EPT_VPID_CAP,
Sean Christopherson7caaa712018-12-03 13:53:01 -08002453 &vmx_cap->ept, &vmx_cap->vpid);
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002454
Sheng Yangd56f5462008-04-25 10:13:16 +08002455 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03002456 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
2457 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03002458 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
2459 CPU_BASED_CR3_STORE_EXITING |
2460 CPU_BASED_INVLPG_EXITING);
Sean Christopherson7caaa712018-12-03 13:53:01 -08002461 } else if (vmx_cap->ept) {
2462 vmx_cap->ept = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002463 pr_warn_once("EPT CAP should not exist if not support "
2464 "1-setting enable EPT VM-execution control\n");
2465 }
2466 if (!(_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_VPID) &&
Sean Christopherson7caaa712018-12-03 13:53:01 -08002467 vmx_cap->vpid) {
2468 vmx_cap->vpid = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002469 pr_warn_once("VPID CAP should not exist if not support "
2470 "1-setting enable VPID VM-execution control\n");
Sheng Yangd56f5462008-04-25 10:13:16 +08002471 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002472
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002473 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002474#ifdef CONFIG_X86_64
2475 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
2476#endif
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002477 opt = VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL |
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002478 VM_EXIT_LOAD_IA32_PAT |
2479 VM_EXIT_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002480 VM_EXIT_CLEAR_BNDCFGS |
2481 VM_EXIT_PT_CONCEAL_PIP |
2482 VM_EXIT_CLEAR_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002483 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
2484 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002485 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002486
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01002487 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
2488 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
2489 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002490 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
2491 &_pin_based_exec_control) < 0)
2492 return -EIO;
2493
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02002494 if (cpu_has_broken_vmx_preemption_timer())
2495 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002496 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002497 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08002498 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
2499
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01002500 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002501 opt = VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL |
2502 VM_ENTRY_LOAD_IA32_PAT |
2503 VM_ENTRY_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002504 VM_ENTRY_LOAD_BNDCFGS |
2505 VM_ENTRY_PT_CONCEAL_PIP |
2506 VM_ENTRY_LOAD_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002507 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
2508 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002509 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002510
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002511 /*
2512 * Some cpus support VM_{ENTRY,EXIT}_IA32_PERF_GLOBAL_CTRL but they
2513 * can't be used due to an errata where VM Exit may incorrectly clear
2514 * IA32_PERF_GLOBAL_CTRL[34:32]. Workaround the errata by using the
2515 * MSR load mechanism to switch IA32_PERF_GLOBAL_CTRL.
2516 */
2517 if (boot_cpu_data.x86 == 0x6) {
2518 switch (boot_cpu_data.x86_model) {
2519 case 26: /* AAK155 */
2520 case 30: /* AAP115 */
2521 case 37: /* AAT100 */
2522 case 44: /* BC86,AAY89,BD102 */
2523 case 46: /* BA97 */
Sean Christopherson85ba2b12019-01-14 12:12:02 -08002524 _vmentry_control &= ~VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002525 _vmexit_control &= ~VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL;
2526 pr_warn_once("kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
2527 "does not work properly. Using workaround\n");
2528 break;
2529 default:
2530 break;
2531 }
2532 }
2533
2534
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002535 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002536
2537 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
2538 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002539 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002540
2541#ifdef CONFIG_X86_64
2542 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
2543 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03002544 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002545#endif
2546
2547 /* Require Write-Back (WB) memory type for VMCS accesses. */
2548 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002549 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002550
Yang, Sheng002c7f72007-07-31 14:23:01 +03002551 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02002552 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03002553 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002554
Liran Alon2307af12018-06-29 22:59:04 +03002555 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002556
Yang, Sheng002c7f72007-07-31 14:23:01 +03002557 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
2558 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002559 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002560 vmcs_conf->vmexit_ctrl = _vmexit_control;
2561 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002562
Vitaly Kuznetsov064eedf2020-10-14 16:33:46 +02002563#if IS_ENABLED(CONFIG_HYPERV)
2564 if (enlightened_vmcs)
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002565 evmcs_sanitize_exec_ctrls(vmcs_conf);
Vitaly Kuznetsov064eedf2020-10-14 16:33:46 +02002566#endif
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002567
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002568 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002569}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002570
Ben Gardon41836832019-02-11 11:02:52 -08002571struct vmcs *alloc_vmcs_cpu(bool shadow, int cpu, gfp_t flags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002572{
2573 int node = cpu_to_node(cpu);
2574 struct page *pages;
2575 struct vmcs *vmcs;
2576
Ben Gardon41836832019-02-11 11:02:52 -08002577 pages = __alloc_pages_node(node, flags, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002578 if (!pages)
2579 return NULL;
2580 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002581 memset(vmcs, 0, vmcs_config.size);
Liran Alon2307af12018-06-29 22:59:04 +03002582
2583 /* KVM supports Enlightened VMCS v1 only */
2584 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002585 vmcs->hdr.revision_id = KVM_EVMCS_VERSION;
Liran Alon2307af12018-06-29 22:59:04 +03002586 else
Liran Alon392b2f22018-06-23 02:35:01 +03002587 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002588
Liran Alon491a6032018-06-23 02:35:12 +03002589 if (shadow)
2590 vmcs->hdr.shadow_vmcs = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002591 return vmcs;
2592}
2593
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002594void free_vmcs(struct vmcs *vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002595{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002596 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002597}
2598
Nadav Har'Eld462b812011-05-24 15:26:10 +03002599/*
2600 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
2601 */
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002602void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Nadav Har'Eld462b812011-05-24 15:26:10 +03002603{
2604 if (!loaded_vmcs->vmcs)
2605 return;
2606 loaded_vmcs_clear(loaded_vmcs);
2607 free_vmcs(loaded_vmcs->vmcs);
2608 loaded_vmcs->vmcs = NULL;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002609 if (loaded_vmcs->msr_bitmap)
2610 free_page((unsigned long)loaded_vmcs->msr_bitmap);
Jim Mattson355f4fb2016-10-28 08:29:39 -07002611 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002612}
2613
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002614int alloc_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002615{
Liran Alon491a6032018-06-23 02:35:12 +03002616 loaded_vmcs->vmcs = alloc_vmcs(false);
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002617 if (!loaded_vmcs->vmcs)
2618 return -ENOMEM;
2619
Sean Christophersond260f9e2020-03-21 12:37:50 -07002620 vmcs_clear(loaded_vmcs->vmcs);
2621
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002622 loaded_vmcs->shadow_vmcs = NULL;
Sean Christopherson804939e2019-05-07 12:18:05 -07002623 loaded_vmcs->hv_timer_soft_disabled = false;
Sean Christophersond260f9e2020-03-21 12:37:50 -07002624 loaded_vmcs->cpu = -1;
2625 loaded_vmcs->launched = 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002626
2627 if (cpu_has_vmx_msr_bitmap()) {
Ben Gardon41836832019-02-11 11:02:52 -08002628 loaded_vmcs->msr_bitmap = (unsigned long *)
2629 __get_free_page(GFP_KERNEL_ACCOUNT);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002630 if (!loaded_vmcs->msr_bitmap)
2631 goto out_vmcs;
2632 memset(loaded_vmcs->msr_bitmap, 0xff, PAGE_SIZE);
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02002633
Arnd Bergmann1f008e12018-05-25 17:36:17 +02002634 if (IS_ENABLED(CONFIG_HYPERV) &&
2635 static_branch_unlikely(&enable_evmcs) &&
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02002636 (ms_hyperv.nested_features & HV_X64_NESTED_MSR_BITMAP)) {
2637 struct hv_enlightened_vmcs *evmcs =
2638 (struct hv_enlightened_vmcs *)loaded_vmcs->vmcs;
2639
2640 evmcs->hv_enlightenments_control.msr_bitmap = 1;
2641 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002642 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07002643
2644 memset(&loaded_vmcs->host_state, 0, sizeof(struct vmcs_host_state));
Sean Christopherson3af80fe2019-05-07 12:18:00 -07002645 memset(&loaded_vmcs->controls_shadow, 0,
2646 sizeof(struct vmcs_controls_shadow));
Sean Christophersond7ee0392018-07-23 12:32:47 -07002647
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002648 return 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002649
2650out_vmcs:
2651 free_loaded_vmcs(loaded_vmcs);
2652 return -ENOMEM;
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002653}
2654
Sam Ravnborg39959582007-06-01 00:47:13 -07002655static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002656{
2657 int cpu;
2658
Zachary Amsden3230bb42009-09-29 11:38:37 -10002659 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002660 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10002661 per_cpu(vmxarea, cpu) = NULL;
2662 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002663}
2664
Avi Kivity6aa8b732006-12-10 02:21:36 -08002665static __init int alloc_kvm_area(void)
2666{
2667 int cpu;
2668
Zachary Amsden3230bb42009-09-29 11:38:37 -10002669 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002670 struct vmcs *vmcs;
2671
Ben Gardon41836832019-02-11 11:02:52 -08002672 vmcs = alloc_vmcs_cpu(false, cpu, GFP_KERNEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002673 if (!vmcs) {
2674 free_kvm_area();
2675 return -ENOMEM;
2676 }
2677
Liran Alon2307af12018-06-29 22:59:04 +03002678 /*
2679 * When eVMCS is enabled, alloc_vmcs_cpu() sets
2680 * vmcs->revision_id to KVM_EVMCS_VERSION instead of
2681 * revision_id reported by MSR_IA32_VMX_BASIC.
2682 *
Linus Torvalds312a4662018-12-26 17:03:51 -08002683 * However, even though not explicitly documented by
Liran Alon2307af12018-06-29 22:59:04 +03002684 * TLFS, VMXArea passed as VMXON argument should
2685 * still be marked with revision_id reported by
2686 * physical CPU.
2687 */
2688 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002689 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002690
Avi Kivity6aa8b732006-12-10 02:21:36 -08002691 per_cpu(vmxarea, cpu) = vmcs;
2692 }
2693 return 0;
2694}
2695
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002696static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02002697 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002698{
Gleb Natapovd99e4152012-12-20 16:57:45 +02002699 if (!emulate_invalid_guest_state) {
2700 /*
2701 * CS and SS RPL should be equal during guest entry according
2702 * to VMX spec, but in reality it is not always so. Since vcpu
2703 * is in the middle of the transition from real mode to
2704 * protected mode it is safe to assume that RPL 0 is a good
2705 * default value.
2706 */
2707 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03002708 save->selector &= ~SEGMENT_RPL_MASK;
2709 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02002710 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002711 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02002712 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002713}
2714
2715static void enter_pmode(struct kvm_vcpu *vcpu)
2716{
2717 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002718 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002719
Gleb Natapovd99e4152012-12-20 16:57:45 +02002720 /*
2721 * Update real mode segment cache. It may be not up-to-date if sement
2722 * register was written while vcpu was in a guest mode.
2723 */
2724 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2725 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2726 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2727 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
2728 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2729 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
2730
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002731 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002732
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002733 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002734
2735 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002736 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2737 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002738 vmcs_writel(GUEST_RFLAGS, flags);
2739
Rusty Russell66aee912007-07-17 23:34:16 +10002740 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
2741 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002742
2743 update_exception_bitmap(vcpu);
2744
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002745 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2746 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2747 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2748 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2749 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
2750 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002751}
2752
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002753static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002754{
Mathias Krause772e0312012-08-30 01:30:19 +02002755 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02002756 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002757
Gleb Natapovd99e4152012-12-20 16:57:45 +02002758 var.dpl = 0x3;
2759 if (seg == VCPU_SREG_CS)
2760 var.type = 0x3;
2761
2762 if (!emulate_invalid_guest_state) {
2763 var.selector = var.base >> 4;
2764 var.base = var.base & 0xffff0;
2765 var.limit = 0xffff;
2766 var.g = 0;
2767 var.db = 0;
2768 var.present = 1;
2769 var.s = 1;
2770 var.l = 0;
2771 var.unusable = 0;
2772 var.type = 0x3;
2773 var.avl = 0;
2774 if (save->base & 0xf)
2775 printk_once(KERN_WARNING "kvm: segment base is not "
2776 "paragraph aligned when entering "
2777 "protected mode (seg=%d)", seg);
2778 }
2779
2780 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05002781 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02002782 vmcs_write32(sf->limit, var.limit);
2783 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002784}
2785
2786static void enter_rmode(struct kvm_vcpu *vcpu)
2787{
2788 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002789 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002790 struct kvm_vmx *kvm_vmx = to_kvm_vmx(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002791
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002792 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
2793 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2794 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2795 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2796 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02002797 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2798 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002799
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002800 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002801
Gleb Natapov776e58e2011-03-13 12:34:27 +02002802 /*
2803 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01002804 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02002805 */
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002806 if (!kvm_vmx->tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02002807 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
2808 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02002809
Avi Kivity2fb92db2011-04-27 19:42:18 +03002810 vmx_segment_cache_clear(vmx);
2811
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002812 vmcs_writel(GUEST_TR_BASE, kvm_vmx->tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002813 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002814 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2815
2816 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002817 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002818
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002819 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002820
2821 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10002822 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002823 update_exception_bitmap(vcpu);
2824
Gleb Natapovd99e4152012-12-20 16:57:45 +02002825 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2826 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2827 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2828 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2829 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
2830 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002831
Eddie Dong8668a3c2007-10-10 14:26:45 +08002832 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002833}
2834
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002835int vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
Amit Shah401d10d2009-02-20 22:53:37 +05302836{
2837 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond85a8032020-09-23 11:04:06 -07002838 struct vmx_uret_msr *msr = vmx_find_uret_msr(vmx, MSR_EFER);
Avi Kivity26bb0982009-09-07 11:14:12 +03002839
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002840 /* Nothing to do if hardware doesn't support EFER. */
Avi Kivity26bb0982009-09-07 11:14:12 +03002841 if (!msr)
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002842 return 0;
Amit Shah401d10d2009-02-20 22:53:37 +05302843
Avi Kivityf6801df2010-01-21 15:31:50 +02002844 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05302845 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002846 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302847 msr->data = efer;
2848 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002849 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302850
2851 msr->data = efer & ~EFER_LME;
2852 }
2853 setup_msrs(vmx);
Maxim Levitsky72f211e2020-10-01 14:29:53 +03002854 return 0;
Amit Shah401d10d2009-02-20 22:53:37 +05302855}
2856
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002857#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002858
2859static void enter_lmode(struct kvm_vcpu *vcpu)
2860{
2861 u32 guest_tr_ar;
2862
Avi Kivity2fb92db2011-04-27 19:42:18 +03002863 vmx_segment_cache_clear(to_vmx(vcpu));
2864
Avi Kivity6aa8b732006-12-10 02:21:36 -08002865 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002866 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02002867 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
2868 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002869 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002870 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
2871 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002872 }
Avi Kivityda38f432010-07-06 11:30:49 +03002873 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002874}
2875
2876static void exit_lmode(struct kvm_vcpu *vcpu)
2877{
Gleb Natapov2961e8762013-11-25 15:37:13 +02002878 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03002879 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002880}
2881
2882#endif
2883
Sean Christopherson77809382020-03-20 14:28:18 -07002884static void vmx_flush_tlb_all(struct kvm_vcpu *vcpu)
Sean Christopherson5058b692020-03-20 14:28:14 -07002885{
2886 struct vcpu_vmx *vmx = to_vmx(vcpu);
2887
2888 /*
Sean Christopherson77809382020-03-20 14:28:18 -07002889 * INVEPT must be issued when EPT is enabled, irrespective of VPID, as
2890 * the CPU is not required to invalidate guest-physical mappings on
2891 * VM-Entry, even if VPID is disabled. Guest-physical mappings are
2892 * associated with the root EPT structure and not any particular VPID
2893 * (INVVPID also isn't required to invalidate guest-physical mappings).
Sean Christopherson5058b692020-03-20 14:28:14 -07002894 */
2895 if (enable_ept) {
2896 ept_sync_global();
2897 } else if (enable_vpid) {
2898 if (cpu_has_vmx_invvpid_global()) {
2899 vpid_sync_vcpu_global();
2900 } else {
2901 vpid_sync_vcpu_single(vmx->vpid);
2902 vpid_sync_vcpu_single(vmx->nested.vpid02);
2903 }
2904 }
2905}
2906
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002907static void vmx_flush_tlb_current(struct kvm_vcpu *vcpu)
2908{
Sean Christopherson2a40b902020-07-15 20:41:18 -07002909 struct kvm_mmu *mmu = vcpu->arch.mmu;
2910 u64 root_hpa = mmu->root_hpa;
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002911
2912 /* No flush required if the current context is invalid. */
2913 if (!VALID_PAGE(root_hpa))
2914 return;
2915
2916 if (enable_ept)
Sean Christopherson2a40b902020-07-15 20:41:18 -07002917 ept_sync_context(construct_eptp(vcpu, root_hpa,
2918 mmu->shadow_root_level));
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002919 else if (!is_guest_mode(vcpu))
2920 vpid_sync_context(to_vmx(vcpu)->vpid);
2921 else
2922 vpid_sync_context(nested_get_vpid02(vcpu));
2923}
2924
Junaid Shahidfaff8752018-06-29 13:10:05 -07002925static void vmx_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t addr)
2926{
Junaid Shahidfaff8752018-06-29 13:10:05 -07002927 /*
Sean Christophersonad104b52020-03-20 14:28:11 -07002928 * vpid_sync_vcpu_addr() is a nop if vmx->vpid==0, see the comment in
2929 * vmx_flush_tlb_guest() for an explanation of why this is ok.
Junaid Shahidfaff8752018-06-29 13:10:05 -07002930 */
Sean Christophersonad104b52020-03-20 14:28:11 -07002931 vpid_sync_vcpu_addr(to_vmx(vcpu)->vpid, addr);
Junaid Shahidfaff8752018-06-29 13:10:05 -07002932}
2933
Sean Christophersone64419d2020-03-20 14:28:10 -07002934static void vmx_flush_tlb_guest(struct kvm_vcpu *vcpu)
2935{
2936 /*
2937 * vpid_sync_context() is a nop if vmx->vpid==0, e.g. if enable_vpid==0
2938 * or a vpid couldn't be allocated for this vCPU. VM-Enter and VM-Exit
2939 * are required to flush GVA->{G,H}PA mappings from the TLB if vpid is
2940 * disabled (VM-Enter with vpid enabled and vpid==0 is disallowed),
2941 * i.e. no explicit INVVPID is necessary.
2942 */
2943 vpid_sync_context(to_vmx(vcpu)->vpid);
2944}
2945
Peter Shier43fea4e2020-08-20 16:05:45 -07002946void vmx_ept_load_pdptrs(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08002947{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002948 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
2949
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002950 if (!kvm_register_is_dirty(vcpu, VCPU_EXREG_PDPTR))
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002951 return;
2952
Paolo Bonzinibf03d4f2019-06-06 18:52:44 +02002953 if (is_pae_paging(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002954 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
2955 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
2956 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
2957 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08002958 }
2959}
2960
Sean Christopherson97b7ead2018-12-03 13:53:16 -08002961void ept_save_pdptrs(struct kvm_vcpu *vcpu)
Avi Kivity8f5d5492009-05-31 18:41:29 +03002962{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002963 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
2964
Sean Christopherson9932b492020-04-15 13:34:50 -07002965 if (WARN_ON_ONCE(!is_pae_paging(vcpu)))
2966 return;
2967
2968 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
2969 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
2970 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
2971 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002972
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002973 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002974}
2975
Sheng Yang14394422008-04-28 12:24:45 +08002976static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
2977 unsigned long cr0,
2978 struct kvm_vcpu *vcpu)
2979{
Sean Christopherson2183f562019-05-07 12:17:56 -07002980 struct vcpu_vmx *vmx = to_vmx(vcpu);
2981
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002982 if (!kvm_register_is_available(vcpu, VCPU_EXREG_CR3))
Sean Christopherson34059c22019-09-27 14:45:23 -07002983 vmx_cache_reg(vcpu, VCPU_EXREG_CR3);
Sheng Yang14394422008-04-28 12:24:45 +08002984 if (!(cr0 & X86_CR0_PG)) {
2985 /* From paging/starting to nonpaging */
Sean Christopherson2183f562019-05-07 12:17:56 -07002986 exec_controls_setbit(vmx, CPU_BASED_CR3_LOAD_EXITING |
2987 CPU_BASED_CR3_STORE_EXITING);
Sheng Yang14394422008-04-28 12:24:45 +08002988 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002989 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002990 } else if (!is_paging(vcpu)) {
2991 /* From nonpaging to paging */
Sean Christopherson2183f562019-05-07 12:17:56 -07002992 exec_controls_clearbit(vmx, CPU_BASED_CR3_LOAD_EXITING |
2993 CPU_BASED_CR3_STORE_EXITING);
Sheng Yang14394422008-04-28 12:24:45 +08002994 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002995 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002996 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08002997
2998 if (!(cr0 & X86_CR0_WP))
2999 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08003000}
3001
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003002void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003003{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003004 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003005 unsigned long hw_cr0;
3006
Sean Christopherson3de63472018-07-13 08:42:30 -07003007 hw_cr0 = (cr0 & ~KVM_VM_CR0_ALWAYS_OFF);
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003008 if (is_unrestricted_guest(vcpu))
Gleb Natapov50378782013-02-04 16:00:28 +02003009 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02003010 else {
Gleb Natapov50378782013-02-04 16:00:28 +02003011 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003012
Gleb Natapov218e7632013-01-21 15:36:45 +02003013 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
3014 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003015
Gleb Natapov218e7632013-01-21 15:36:45 +02003016 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
3017 enter_rmode(vcpu);
3018 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003019
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003020#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02003021 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10003022 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003023 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10003024 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003025 exit_lmode(vcpu);
3026 }
3027#endif
3028
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003029 if (enable_ept && !is_unrestricted_guest(vcpu))
Sheng Yang14394422008-04-28 12:24:45 +08003030 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
3031
Avi Kivity6aa8b732006-12-10 02:21:36 -08003032 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08003033 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003034 vcpu->arch.cr0 = cr0;
Sean Christophersonbd31fe42020-05-01 21:32:31 -07003035 kvm_register_mark_available(vcpu, VCPU_EXREG_CR0);
Gleb Natapov14168782013-01-21 15:36:49 +02003036
3037 /* depends on vcpu->arch.cr0 to be set to a new value */
3038 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003039}
3040
Sean Christophersond468d942020-07-15 20:41:20 -07003041static int vmx_get_max_tdp_level(void)
Sean Christopherson0047fca2020-05-01 21:32:33 -07003042{
Sean Christophersond468d942020-07-15 20:41:20 -07003043 if (cpu_has_vmx_ept_5levels())
Sean Christopherson0047fca2020-05-01 21:32:33 -07003044 return 5;
3045 return 4;
3046}
3047
Sean Christopherson2a40b902020-07-15 20:41:18 -07003048u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa,
3049 int root_level)
Sheng Yang14394422008-04-28 12:24:45 +08003050{
Yu Zhang855feb62017-08-24 20:27:55 +08003051 u64 eptp = VMX_EPTP_MT_WB;
Sheng Yang14394422008-04-28 12:24:45 +08003052
Sean Christopherson2a40b902020-07-15 20:41:18 -07003053 eptp |= (root_level == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08003054
Peter Feiner995f00a2017-06-30 17:26:32 -07003055 if (enable_ept_ad_bits &&
3056 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02003057 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08003058 eptp |= (root_hpa & PAGE_MASK);
3059
3060 return eptp;
3061}
3062
Sean Christopherson2a40b902020-07-15 20:41:18 -07003063static void vmx_load_mmu_pgd(struct kvm_vcpu *vcpu, unsigned long pgd,
3064 int pgd_level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003065{
Tianyu Lan877ad952018-07-19 08:40:23 +00003066 struct kvm *kvm = vcpu->kvm;
Sean Christopherson04f11ef2019-09-27 14:45:16 -07003067 bool update_guest_cr3 = true;
Sheng Yang14394422008-04-28 12:24:45 +08003068 unsigned long guest_cr3;
3069 u64 eptp;
3070
Avi Kivity089d0342009-03-23 18:26:32 +02003071 if (enable_ept) {
Sean Christopherson2a40b902020-07-15 20:41:18 -07003072 eptp = construct_eptp(vcpu, pgd, pgd_level);
Sheng Yang14394422008-04-28 12:24:45 +08003073 vmcs_write64(EPT_POINTER, eptp);
Tianyu Lan877ad952018-07-19 08:40:23 +00003074
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003075 if (kvm_x86_ops.tlb_remote_flush) {
Tianyu Lan877ad952018-07-19 08:40:23 +00003076 spin_lock(&to_kvm_vmx(kvm)->ept_pointer_lock);
3077 to_vmx(vcpu)->ept_pointer = eptp;
3078 to_kvm_vmx(kvm)->ept_pointers_match
3079 = EPT_POINTERS_CHECK;
3080 spin_unlock(&to_kvm_vmx(kvm)->ept_pointer_lock);
3081 }
3082
Paolo Bonzinidf7e0682020-05-20 08:37:37 -04003083 if (!enable_unrestricted_guest && !is_paging(vcpu))
Tianyu Lan877ad952018-07-19 08:40:23 +00003084 guest_cr3 = to_kvm_vmx(kvm)->ept_identity_map_addr;
Sean Christophersonb17b7432019-09-27 14:45:17 -07003085 else if (test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3086 guest_cr3 = vcpu->arch.cr3;
3087 else /* vmcs01.GUEST_CR3 is already up-to-date. */
3088 update_guest_cr3 = false;
Peter Shier43fea4e2020-08-20 16:05:45 -07003089 vmx_ept_load_pdptrs(vcpu);
Sean Christophersonbe100ef2020-03-20 14:28:33 -07003090 } else {
3091 guest_cr3 = pgd;
Sheng Yang14394422008-04-28 12:24:45 +08003092 }
3093
Sean Christopherson04f11ef2019-09-27 14:45:16 -07003094 if (update_guest_cr3)
3095 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003096}
3097
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07003098static bool vmx_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
3099{
3100 /*
3101 * We operate under the default treatment of SMM, so VMX cannot be
3102 * enabled under SMM. Note, whether or not VMXE is allowed at all is
Sean Christophersonee69c922020-10-06 18:44:16 -07003103 * handled by kvm_is_valid_cr4().
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07003104 */
3105 if ((cr4 & X86_CR4_VMXE) && is_smm(vcpu))
3106 return false;
3107
3108 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
3109 return false;
3110
3111 return true;
3112}
3113
3114void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003115{
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003116 struct vcpu_vmx *vmx = to_vmx(vcpu);
Ben Serebrin085e68e2015-04-16 11:58:05 -07003117 /*
3118 * Pass through host's Machine Check Enable value to hw_cr4, which
3119 * is in force while we are in guest mode. Do not let guests control
3120 * this bit, even if host CR4.MCE == 0.
3121 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003122 unsigned long hw_cr4;
3123
3124 hw_cr4 = (cr4_read_shadow() & X86_CR4_MCE) | (cr4 & ~X86_CR4_MCE);
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003125 if (is_unrestricted_guest(vcpu))
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003126 hw_cr4 |= KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST;
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003127 else if (vmx->rmode.vm86_active)
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003128 hw_cr4 |= KVM_RMODE_VM_CR4_ALWAYS_ON;
3129 else
3130 hw_cr4 |= KVM_PMODE_VM_CR4_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003131
Sean Christopherson64f7a112018-04-30 10:01:06 -07003132 if (!boot_cpu_has(X86_FEATURE_UMIP) && vmx_umip_emulated()) {
3133 if (cr4 & X86_CR4_UMIP) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003134 secondary_exec_controls_setbit(vmx, SECONDARY_EXEC_DESC);
Sean Christopherson64f7a112018-04-30 10:01:06 -07003135 hw_cr4 &= ~X86_CR4_UMIP;
3136 } else if (!is_guest_mode(vcpu) ||
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003137 !nested_cpu_has2(get_vmcs12(vcpu), SECONDARY_EXEC_DESC)) {
3138 secondary_exec_controls_clearbit(vmx, SECONDARY_EXEC_DESC);
3139 }
Sean Christopherson64f7a112018-04-30 10:01:06 -07003140 }
Paolo Bonzini0367f202016-07-12 10:44:55 +02003141
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003142 vcpu->arch.cr4 = cr4;
Sean Christophersonf98c1e72020-05-01 21:32:30 -07003143 kvm_register_mark_available(vcpu, VCPU_EXREG_CR4);
Sheng Yang14394422008-04-28 12:24:45 +08003144
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003145 if (!is_unrestricted_guest(vcpu)) {
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003146 if (enable_ept) {
3147 if (!is_paging(vcpu)) {
3148 hw_cr4 &= ~X86_CR4_PAE;
3149 hw_cr4 |= X86_CR4_PSE;
3150 } else if (!(cr4 & X86_CR4_PAE)) {
3151 hw_cr4 &= ~X86_CR4_PAE;
3152 }
3153 }
3154
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003155 /*
Huaitong Handdba2622016-03-22 16:51:15 +08003156 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
3157 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
3158 * to be manually disabled when guest switches to non-paging
3159 * mode.
3160 *
3161 * If !enable_unrestricted_guest, the CPU is always running
3162 * with CR0.PG=1 and CR4 needs to be modified.
3163 * If enable_unrestricted_guest, the CPU automatically
3164 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003165 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003166 if (!is_paging(vcpu))
3167 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
3168 }
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003169
Sheng Yang14394422008-04-28 12:24:45 +08003170 vmcs_writel(CR4_READ_SHADOW, cr4);
3171 vmcs_writel(GUEST_CR4, hw_cr4);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003172}
3173
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003174void vmx_get_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003175{
Avi Kivitya9179492011-01-03 14:28:52 +02003176 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003177 u32 ar;
3178
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003179 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003180 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02003181 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03003182 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003183 return;
Avi Kivity1390a282012-08-21 17:07:08 +03003184 var->base = vmx_read_guest_seg_base(vmx, seg);
3185 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3186 return;
Avi Kivitya9179492011-01-03 14:28:52 +02003187 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003188 var->base = vmx_read_guest_seg_base(vmx, seg);
3189 var->limit = vmx_read_guest_seg_limit(vmx, seg);
3190 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3191 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03003192 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003193 var->type = ar & 15;
3194 var->s = (ar >> 4) & 1;
3195 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03003196 /*
3197 * Some userspaces do not preserve unusable property. Since usable
3198 * segment has to be present according to VMX spec we can use present
3199 * property to amend userspace bug by making unusable segment always
3200 * nonpresent. vmx_segment_access_rights() already marks nonpresent
3201 * segment as unusable.
3202 */
3203 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003204 var->avl = (ar >> 12) & 1;
3205 var->l = (ar >> 13) & 1;
3206 var->db = (ar >> 14) & 1;
3207 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003208}
3209
Avi Kivitya9179492011-01-03 14:28:52 +02003210static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
3211{
Avi Kivitya9179492011-01-03 14:28:52 +02003212 struct kvm_segment s;
3213
3214 if (to_vmx(vcpu)->rmode.vm86_active) {
3215 vmx_get_segment(vcpu, &s, seg);
3216 return s.base;
3217 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003218 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003219}
3220
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003221int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02003222{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003223 struct vcpu_vmx *vmx = to_vmx(vcpu);
3224
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003225 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02003226 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003227 else {
3228 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003229 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003230 }
Avi Kivity69c73022011-03-07 15:26:44 +02003231}
3232
Avi Kivity653e3102007-05-07 10:55:37 +03003233static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003234{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003235 u32 ar;
3236
Avi Kivityf0495f92012-06-07 17:06:10 +03003237 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003238 ar = 1 << 16;
3239 else {
3240 ar = var->type & 15;
3241 ar |= (var->s & 1) << 4;
3242 ar |= (var->dpl & 3) << 5;
3243 ar |= (var->present & 1) << 7;
3244 ar |= (var->avl & 1) << 12;
3245 ar |= (var->l & 1) << 13;
3246 ar |= (var->db & 1) << 14;
3247 ar |= (var->g & 1) << 15;
3248 }
Avi Kivity653e3102007-05-07 10:55:37 +03003249
3250 return ar;
3251}
3252
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003253void vmx_set_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity653e3102007-05-07 10:55:37 +03003254{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003255 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02003256 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03003257
Avi Kivity2fb92db2011-04-27 19:42:18 +03003258 vmx_segment_cache_clear(vmx);
3259
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003260 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
3261 vmx->rmode.segs[seg] = *var;
3262 if (seg == VCPU_SREG_TR)
3263 vmcs_write16(sf->selector, var->selector);
3264 else if (var->s)
3265 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02003266 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03003267 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003268
Avi Kivity653e3102007-05-07 10:55:37 +03003269 vmcs_writel(sf->base, var->base);
3270 vmcs_write32(sf->limit, var->limit);
3271 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003272
3273 /*
3274 * Fix the "Accessed" bit in AR field of segment registers for older
3275 * qemu binaries.
3276 * IA32 arch specifies that at the time of processor reset the
3277 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08003278 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003279 * state vmexit when "unrestricted guest" mode is turned on.
3280 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3281 * tree. Newer qemu binaries with that qemu fix would not need this
3282 * kvm hack.
3283 */
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003284 if (is_unrestricted_guest(vcpu) && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02003285 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003286
Gleb Natapovf924d662012-12-12 19:10:55 +02003287 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02003288
3289out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01003290 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003291}
3292
Avi Kivity6aa8b732006-12-10 02:21:36 -08003293static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
3294{
Avi Kivity2fb92db2011-04-27 19:42:18 +03003295 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003296
3297 *db = (ar >> 14) & 1;
3298 *l = (ar >> 13) & 1;
3299}
3300
Gleb Natapov89a27f42010-02-16 10:51:48 +02003301static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003302{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003303 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
3304 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003305}
3306
Gleb Natapov89a27f42010-02-16 10:51:48 +02003307static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003308{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003309 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
3310 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003311}
3312
Gleb Natapov89a27f42010-02-16 10:51:48 +02003313static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003314{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003315 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
3316 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003317}
3318
Gleb Natapov89a27f42010-02-16 10:51:48 +02003319static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003320{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003321 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
3322 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003323}
3324
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003325static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
3326{
3327 struct kvm_segment var;
3328 u32 ar;
3329
3330 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02003331 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02003332 if (seg == VCPU_SREG_CS)
3333 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003334 ar = vmx_segment_access_rights(&var);
3335
3336 if (var.base != (var.selector << 4))
3337 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02003338 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003339 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02003340 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003341 return false;
3342
3343 return true;
3344}
3345
3346static bool code_segment_valid(struct kvm_vcpu *vcpu)
3347{
3348 struct kvm_segment cs;
3349 unsigned int cs_rpl;
3350
3351 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003352 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003353
Avi Kivity1872a3f2009-01-04 23:26:52 +02003354 if (cs.unusable)
3355 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003356 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003357 return false;
3358 if (!cs.s)
3359 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003360 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003361 if (cs.dpl > cs_rpl)
3362 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003363 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003364 if (cs.dpl != cs_rpl)
3365 return false;
3366 }
3367 if (!cs.present)
3368 return false;
3369
3370 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
3371 return true;
3372}
3373
3374static bool stack_segment_valid(struct kvm_vcpu *vcpu)
3375{
3376 struct kvm_segment ss;
3377 unsigned int ss_rpl;
3378
3379 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003380 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003381
Avi Kivity1872a3f2009-01-04 23:26:52 +02003382 if (ss.unusable)
3383 return true;
3384 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003385 return false;
3386 if (!ss.s)
3387 return false;
3388 if (ss.dpl != ss_rpl) /* DPL != RPL */
3389 return false;
3390 if (!ss.present)
3391 return false;
3392
3393 return true;
3394}
3395
3396static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
3397{
3398 struct kvm_segment var;
3399 unsigned int rpl;
3400
3401 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03003402 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003403
Avi Kivity1872a3f2009-01-04 23:26:52 +02003404 if (var.unusable)
3405 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003406 if (!var.s)
3407 return false;
3408 if (!var.present)
3409 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003410 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003411 if (var.dpl < rpl) /* DPL < RPL */
3412 return false;
3413 }
3414
3415 /* TODO: Add other members to kvm_segment_field to allow checking for other access
3416 * rights flags
3417 */
3418 return true;
3419}
3420
3421static bool tr_valid(struct kvm_vcpu *vcpu)
3422{
3423 struct kvm_segment tr;
3424
3425 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
3426
Avi Kivity1872a3f2009-01-04 23:26:52 +02003427 if (tr.unusable)
3428 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03003429 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003430 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003431 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003432 return false;
3433 if (!tr.present)
3434 return false;
3435
3436 return true;
3437}
3438
3439static bool ldtr_valid(struct kvm_vcpu *vcpu)
3440{
3441 struct kvm_segment ldtr;
3442
3443 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
3444
Avi Kivity1872a3f2009-01-04 23:26:52 +02003445 if (ldtr.unusable)
3446 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03003447 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003448 return false;
3449 if (ldtr.type != 2)
3450 return false;
3451 if (!ldtr.present)
3452 return false;
3453
3454 return true;
3455}
3456
3457static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
3458{
3459 struct kvm_segment cs, ss;
3460
3461 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3462 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3463
Nadav Amitb32a9912015-03-29 16:33:04 +03003464 return ((cs.selector & SEGMENT_RPL_MASK) ==
3465 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003466}
3467
3468/*
3469 * Check if guest state is valid. Returns true if valid, false if
3470 * not.
3471 * We assume that registers are always usable
3472 */
Sean Christopherson2ba44932020-09-23 11:44:48 -07003473bool __vmx_guest_state_valid(struct kvm_vcpu *vcpu)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003474{
3475 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03003476 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003477 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
3478 return false;
3479 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
3480 return false;
3481 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
3482 return false;
3483 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
3484 return false;
3485 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
3486 return false;
3487 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
3488 return false;
3489 } else {
3490 /* protected mode guest state checks */
3491 if (!cs_ss_rpl_check(vcpu))
3492 return false;
3493 if (!code_segment_valid(vcpu))
3494 return false;
3495 if (!stack_segment_valid(vcpu))
3496 return false;
3497 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
3498 return false;
3499 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
3500 return false;
3501 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
3502 return false;
3503 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
3504 return false;
3505 if (!tr_valid(vcpu))
3506 return false;
3507 if (!ldtr_valid(vcpu))
3508 return false;
3509 }
3510 /* TODO:
3511 * - Add checks on RIP
3512 * - Add checks on RFLAGS
3513 */
3514
3515 return true;
3516}
3517
Mike Dayd77c26f2007-10-08 09:02:08 -04003518static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003519{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003520 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02003521 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02003522 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003523
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003524 idx = srcu_read_lock(&kvm->srcu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003525 fn = to_kvm_vmx(kvm)->tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02003526 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3527 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003528 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003529 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08003530 r = kvm_write_guest_page(kvm, fn++, &data,
3531 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02003532 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003533 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003534 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
3535 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003536 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003537 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3538 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003539 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003540 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003541 r = kvm_write_guest_page(kvm, fn, &data,
3542 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
3543 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003544out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003545 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02003546 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003547}
3548
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003549static int init_rmode_identity_map(struct kvm *kvm)
3550{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003551 struct kvm_vmx *kvm_vmx = to_kvm_vmx(kvm);
Peter Xu2a5755b2020-01-09 09:57:14 -05003552 int i, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08003553 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003554 u32 tmp;
3555
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003556 /* Protect kvm_vmx->ept_identity_pagetable_done. */
Tang Chena255d472014-09-16 18:41:58 +08003557 mutex_lock(&kvm->slots_lock);
3558
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003559 if (likely(kvm_vmx->ept_identity_pagetable_done))
Peter Xu2a5755b2020-01-09 09:57:14 -05003560 goto out;
Tang Chena255d472014-09-16 18:41:58 +08003561
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003562 if (!kvm_vmx->ept_identity_map_addr)
3563 kvm_vmx->ept_identity_map_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
3564 identity_map_pfn = kvm_vmx->ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08003565
David Hildenbrandd8a6e362017-08-24 20:51:34 +02003566 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003567 kvm_vmx->ept_identity_map_addr, PAGE_SIZE);
Tang Chenf51770e2014-09-16 18:41:59 +08003568 if (r < 0)
Peter Xu2a5755b2020-01-09 09:57:14 -05003569 goto out;
Tang Chena255d472014-09-16 18:41:58 +08003570
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003571 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
3572 if (r < 0)
3573 goto out;
3574 /* Set up identity-mapping pagetable for EPT in real mode */
3575 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
3576 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
3577 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
3578 r = kvm_write_guest_page(kvm, identity_map_pfn,
3579 &tmp, i * sizeof(tmp), sizeof(tmp));
3580 if (r < 0)
3581 goto out;
3582 }
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003583 kvm_vmx->ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08003584
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003585out:
Tang Chena255d472014-09-16 18:41:58 +08003586 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08003587 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003588}
3589
Avi Kivity6aa8b732006-12-10 02:21:36 -08003590static void seg_setup(int seg)
3591{
Mathias Krause772e0312012-08-30 01:30:19 +02003592 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003593 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003594
3595 vmcs_write16(sf->selector, 0);
3596 vmcs_writel(sf->base, 0);
3597 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02003598 ar = 0x93;
3599 if (seg == VCPU_SREG_CS)
3600 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003601
3602 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003603}
3604
Sheng Yangf78e0e22007-10-29 09:40:42 +08003605static int alloc_apic_access_page(struct kvm *kvm)
3606{
Xiao Guangrong44841412012-09-07 14:14:20 +08003607 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003608 int r = 0;
3609
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003610 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08003611 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003612 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02003613 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
3614 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003615 if (r)
3616 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02003617
Tang Chen73a6d942014-09-11 13:38:00 +08003618 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08003619 if (is_error_page(page)) {
3620 r = -EFAULT;
3621 goto out;
3622 }
3623
Tang Chenc24ae0d2014-09-24 15:57:58 +08003624 /*
3625 * Do not pin the page in memory, so that memory hot-unplug
3626 * is able to migrate it.
3627 */
3628 put_page(page);
3629 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003630out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003631 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003632 return r;
3633}
3634
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003635int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003636{
3637 int vpid;
3638
Avi Kivity919818a2009-03-23 18:01:29 +02003639 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08003640 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003641 spin_lock(&vmx_vpid_lock);
3642 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003643 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003644 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003645 else
3646 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003647 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003648 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003649}
3650
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003651void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003652{
Wanpeng Li991e7a02015-09-16 17:30:05 +08003653 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003654 return;
3655 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003656 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003657 spin_unlock(&vmx_vpid_lock);
3658}
3659
Alexander Graf3eb90012020-09-25 16:34:20 +02003660static void vmx_clear_msr_bitmap_read(ulong *msr_bitmap, u32 msr)
3661{
3662 int f = sizeof(unsigned long);
3663
3664 if (msr <= 0x1fff)
3665 __clear_bit(msr, msr_bitmap + 0x000 / f);
3666 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3667 __clear_bit(msr & 0x1fff, msr_bitmap + 0x400 / f);
3668}
3669
3670static void vmx_clear_msr_bitmap_write(ulong *msr_bitmap, u32 msr)
3671{
3672 int f = sizeof(unsigned long);
3673
3674 if (msr <= 0x1fff)
3675 __clear_bit(msr, msr_bitmap + 0x800 / f);
3676 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3677 __clear_bit(msr & 0x1fff, msr_bitmap + 0xc00 / f);
3678}
3679
3680static void vmx_set_msr_bitmap_read(ulong *msr_bitmap, u32 msr)
3681{
3682 int f = sizeof(unsigned long);
3683
3684 if (msr <= 0x1fff)
3685 __set_bit(msr, msr_bitmap + 0x000 / f);
3686 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3687 __set_bit(msr & 0x1fff, msr_bitmap + 0x400 / f);
3688}
3689
3690static void vmx_set_msr_bitmap_write(ulong *msr_bitmap, u32 msr)
3691{
3692 int f = sizeof(unsigned long);
3693
3694 if (msr <= 0x1fff)
3695 __set_bit(msr, msr_bitmap + 0x800 / f);
3696 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3697 __set_bit(msr & 0x1fff, msr_bitmap + 0xc00 / f);
3698}
3699
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003700static __always_inline void vmx_disable_intercept_for_msr(struct kvm_vcpu *vcpu,
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003701 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08003702{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003703 struct vcpu_vmx *vmx = to_vmx(vcpu);
3704 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
Sheng Yang25c5f222008-03-28 13:18:56 +08003705
3706 if (!cpu_has_vmx_msr_bitmap())
3707 return;
3708
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003709 if (static_branch_unlikely(&enable_evmcs))
3710 evmcs_touch_msr_bitmap();
3711
Sheng Yang25c5f222008-03-28 13:18:56 +08003712 /*
Alexander Graf3eb90012020-09-25 16:34:20 +02003713 * Mark the desired intercept state in shadow bitmap, this is needed
3714 * for resync when the MSR filters change.
3715 */
3716 if (is_valid_passthrough_msr(msr)) {
3717 int idx = possible_passthrough_msr_slot(msr);
Yang Zhang8d146952013-01-25 10:18:50 +08003718
Alexander Graf3eb90012020-09-25 16:34:20 +02003719 if (idx != -ENOENT) {
3720 if (type & MSR_TYPE_R)
3721 clear_bit(idx, vmx->shadow_msr_intercept.read);
3722 if (type & MSR_TYPE_W)
3723 clear_bit(idx, vmx->shadow_msr_intercept.write);
3724 }
Yang Zhang8d146952013-01-25 10:18:50 +08003725 }
Alexander Graf3eb90012020-09-25 16:34:20 +02003726
3727 if ((type & MSR_TYPE_R) &&
3728 !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_READ)) {
3729 vmx_set_msr_bitmap_read(msr_bitmap, msr);
3730 type &= ~MSR_TYPE_R;
3731 }
3732
3733 if ((type & MSR_TYPE_W) &&
3734 !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_WRITE)) {
3735 vmx_set_msr_bitmap_write(msr_bitmap, msr);
3736 type &= ~MSR_TYPE_W;
3737 }
3738
3739 if (type & MSR_TYPE_R)
3740 vmx_clear_msr_bitmap_read(msr_bitmap, msr);
3741
3742 if (type & MSR_TYPE_W)
3743 vmx_clear_msr_bitmap_write(msr_bitmap, msr);
Yang Zhang8d146952013-01-25 10:18:50 +08003744}
3745
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003746static __always_inline void vmx_enable_intercept_for_msr(struct kvm_vcpu *vcpu,
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003747 u32 msr, int type)
3748{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003749 struct vcpu_vmx *vmx = to_vmx(vcpu);
3750 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003751
3752 if (!cpu_has_vmx_msr_bitmap())
3753 return;
3754
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003755 if (static_branch_unlikely(&enable_evmcs))
3756 evmcs_touch_msr_bitmap();
3757
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003758 /*
Alexander Graf3eb90012020-09-25 16:34:20 +02003759 * Mark the desired intercept state in shadow bitmap, this is needed
3760 * for resync when the MSR filter changes.
3761 */
3762 if (is_valid_passthrough_msr(msr)) {
3763 int idx = possible_passthrough_msr_slot(msr);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003764
Alexander Graf3eb90012020-09-25 16:34:20 +02003765 if (idx != -ENOENT) {
3766 if (type & MSR_TYPE_R)
3767 set_bit(idx, vmx->shadow_msr_intercept.read);
3768 if (type & MSR_TYPE_W)
3769 set_bit(idx, vmx->shadow_msr_intercept.write);
3770 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003771 }
Alexander Graf3eb90012020-09-25 16:34:20 +02003772
3773 if (type & MSR_TYPE_R)
3774 vmx_set_msr_bitmap_read(msr_bitmap, msr);
3775
3776 if (type & MSR_TYPE_W)
3777 vmx_set_msr_bitmap_write(msr_bitmap, msr);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003778}
3779
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003780static __always_inline void vmx_set_intercept_for_msr(struct kvm_vcpu *vcpu,
3781 u32 msr, int type, bool value)
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003782{
3783 if (value)
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003784 vmx_enable_intercept_for_msr(vcpu, msr, type);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003785 else
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003786 vmx_disable_intercept_for_msr(vcpu, msr, type);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003787}
3788
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003789static u8 vmx_msr_bitmap_mode(struct kvm_vcpu *vcpu)
Avi Kivity58972972009-02-24 22:26:47 +02003790{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003791 u8 mode = 0;
3792
3793 if (cpu_has_secondary_exec_ctrls() &&
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003794 (secondary_exec_controls_get(to_vmx(vcpu)) &
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003795 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
3796 mode |= MSR_BITMAP_MODE_X2APIC;
3797 if (enable_apicv && kvm_vcpu_apicv_active(vcpu))
3798 mode |= MSR_BITMAP_MODE_X2APIC_APICV;
3799 }
3800
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003801 return mode;
Yang Zhang8d146952013-01-25 10:18:50 +08003802}
3803
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003804static void vmx_reset_x2apic_msrs(struct kvm_vcpu *vcpu, u8 mode)
Yang Zhang8d146952013-01-25 10:18:50 +08003805{
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003806 unsigned long *msr_bitmap = to_vmx(vcpu)->vmcs01.msr_bitmap;
3807 unsigned long read_intercept;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003808 int msr;
3809
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003810 read_intercept = (mode & MSR_BITMAP_MODE_X2APIC_APICV) ? 0 : ~0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003811
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003812 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
3813 unsigned int read_idx = msr / BITS_PER_LONG;
3814 unsigned int write_idx = read_idx + (0x800 / sizeof(long));
3815
3816 msr_bitmap[read_idx] = read_intercept;
3817 msr_bitmap[write_idx] = ~0ul;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08003818 }
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003819}
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003820
Sean Christopherson9389b9d2020-10-05 12:55:32 -07003821static void vmx_update_msr_bitmap_x2apic(struct kvm_vcpu *vcpu, u8 mode)
3822{
3823 if (!cpu_has_vmx_msr_bitmap())
3824 return;
3825
3826 vmx_reset_x2apic_msrs(vcpu, mode);
3827
3828 /*
3829 * TPR reads and writes can be virtualized even if virtual interrupt
3830 * delivery is not in use.
3831 */
3832 vmx_set_intercept_for_msr(vcpu, X2APIC_MSR(APIC_TASKPRI), MSR_TYPE_RW,
3833 !(mode & MSR_BITMAP_MODE_X2APIC));
3834
3835 if (mode & MSR_BITMAP_MODE_X2APIC_APICV) {
3836 vmx_enable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_TMCCT), MSR_TYPE_RW);
3837 vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_EOI), MSR_TYPE_W);
3838 vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_SELF_IPI), MSR_TYPE_W);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003839 }
3840}
3841
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003842void vmx_update_msr_bitmap(struct kvm_vcpu *vcpu)
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003843{
3844 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003845 u8 mode = vmx_msr_bitmap_mode(vcpu);
3846 u8 changed = mode ^ vmx->msr_bitmap_mode;
3847
3848 if (!changed)
3849 return;
3850
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003851 if (changed & (MSR_BITMAP_MODE_X2APIC | MSR_BITMAP_MODE_X2APIC_APICV))
Alexander Graf3eb90012020-09-25 16:34:20 +02003852 vmx_update_msr_bitmap_x2apic(vcpu, mode);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003853
3854 vmx->msr_bitmap_mode = mode;
Avi Kivity58972972009-02-24 22:26:47 +02003855}
3856
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003857void pt_update_intercept_for_msr(struct kvm_vcpu *vcpu)
Chao Pengb08c2892018-10-24 16:05:15 +08003858{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003859 struct vcpu_vmx *vmx = to_vmx(vcpu);
Chao Pengb08c2892018-10-24 16:05:15 +08003860 bool flag = !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
3861 u32 i;
3862
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003863 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_STATUS, MSR_TYPE_RW, flag);
3864 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_OUTPUT_BASE, MSR_TYPE_RW, flag);
3865 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_OUTPUT_MASK, MSR_TYPE_RW, flag);
3866 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_CR3_MATCH, MSR_TYPE_RW, flag);
Chao Pengb08c2892018-10-24 16:05:15 +08003867 for (i = 0; i < vmx->pt_desc.addr_range; i++) {
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003868 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_ADDR0_A + i * 2, MSR_TYPE_RW, flag);
3869 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_ADDR0_B + i * 2, MSR_TYPE_RW, flag);
Chao Pengb08c2892018-10-24 16:05:15 +08003870 }
3871}
3872
Liran Alone6c67d82018-09-04 10:56:52 +03003873static bool vmx_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
3874{
3875 struct vcpu_vmx *vmx = to_vmx(vcpu);
3876 void *vapic_page;
3877 u32 vppr;
3878 int rvi;
3879
3880 if (WARN_ON_ONCE(!is_guest_mode(vcpu)) ||
3881 !nested_cpu_has_vid(get_vmcs12(vcpu)) ||
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003882 WARN_ON_ONCE(!vmx->nested.virtual_apic_map.gfn))
Liran Alone6c67d82018-09-04 10:56:52 +03003883 return false;
3884
Paolo Bonzini7e712682018-10-03 13:44:26 +02003885 rvi = vmx_get_rvi();
Liran Alone6c67d82018-09-04 10:56:52 +03003886
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003887 vapic_page = vmx->nested.virtual_apic_map.hva;
Liran Alone6c67d82018-09-04 10:56:52 +03003888 vppr = *((u32 *)(vapic_page + APIC_PROCPRI));
Liran Alone6c67d82018-09-04 10:56:52 +03003889
3890 return ((rvi & 0xf0) > (vppr & 0xf0));
3891}
3892
Alexander Graf3eb90012020-09-25 16:34:20 +02003893static void vmx_msr_filter_changed(struct kvm_vcpu *vcpu)
3894{
3895 struct vcpu_vmx *vmx = to_vmx(vcpu);
3896 u32 i;
3897
3898 /*
3899 * Set intercept permissions for all potentially passed through MSRs
3900 * again. They will automatically get filtered through the MSR filter,
3901 * so we are back in sync after this.
3902 */
3903 for (i = 0; i < ARRAY_SIZE(vmx_possible_passthrough_msrs); i++) {
3904 u32 msr = vmx_possible_passthrough_msrs[i];
3905 bool read = test_bit(i, vmx->shadow_msr_intercept.read);
3906 bool write = test_bit(i, vmx->shadow_msr_intercept.write);
3907
3908 vmx_set_intercept_for_msr(vcpu, msr, MSR_TYPE_R, read);
3909 vmx_set_intercept_for_msr(vcpu, msr, MSR_TYPE_W, write);
3910 }
3911
3912 pt_update_intercept_for_msr(vcpu);
3913 vmx_update_msr_bitmap_x2apic(vcpu, vmx_msr_bitmap_mode(vcpu));
3914}
3915
Wincy Van06a55242017-04-28 13:13:59 +08003916static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
3917 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003918{
3919#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08003920 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
3921
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003922 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08003923 /*
Haozhong Zhang5753743f2017-09-18 09:56:50 +08003924 * The vector of interrupt to be delivered to vcpu had
3925 * been set in PIR before this function.
Feng Wu28b835d2015-09-18 22:29:54 +08003926 *
Haozhong Zhang5753743f2017-09-18 09:56:50 +08003927 * Following cases will be reached in this block, and
3928 * we always send a notification event in all cases as
3929 * explained below.
3930 *
3931 * Case 1: vcpu keeps in non-root mode. Sending a
3932 * notification event posts the interrupt to vcpu.
3933 *
3934 * Case 2: vcpu exits to root mode and is still
3935 * runnable. PIR will be synced to vIRR before the
3936 * next vcpu entry. Sending a notification event in
3937 * this case has no effect, as vcpu is not in root
3938 * mode.
3939 *
3940 * Case 3: vcpu exits to root mode and is blocked.
3941 * vcpu_block() has already synced PIR to vIRR and
3942 * never blocks vcpu if vIRR is not cleared. Therefore,
3943 * a blocked vcpu here does not wait for any requested
3944 * interrupts in PIR, and sending a notification event
3945 * which has no effect is safe here.
Feng Wu28b835d2015-09-18 22:29:54 +08003946 */
Feng Wu28b835d2015-09-18 22:29:54 +08003947
Wincy Van06a55242017-04-28 13:13:59 +08003948 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003949 return true;
3950 }
3951#endif
3952 return false;
3953}
3954
Wincy Van705699a2015-02-03 23:58:17 +08003955static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
3956 int vector)
3957{
3958 struct vcpu_vmx *vmx = to_vmx(vcpu);
3959
3960 if (is_guest_mode(vcpu) &&
3961 vector == vmx->nested.posted_intr_nv) {
Wincy Van705699a2015-02-03 23:58:17 +08003962 /*
3963 * If a posted intr is not recognized by hardware,
3964 * we will accomplish it in the next vmentry.
3965 */
3966 vmx->nested.pi_pending = true;
3967 kvm_make_request(KVM_REQ_EVENT, vcpu);
Liran Alon6b697712017-11-09 20:27:20 +02003968 /* the PIR and ON have been set by L1. */
3969 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, true))
3970 kvm_vcpu_kick(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08003971 return 0;
3972 }
3973 return -1;
3974}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003975/*
Yang Zhanga20ed542013-04-11 19:25:15 +08003976 * Send interrupt to vcpu via posted interrupt way.
3977 * 1. If target vcpu is running(non-root mode), send posted interrupt
3978 * notification to vcpu and hardware will sync PIR to vIRR atomically.
3979 * 2. If target vcpu isn't running(root mode), kick it to pick up the
3980 * interrupt from PIR in next vmentry.
3981 */
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003982static int vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
Yang Zhanga20ed542013-04-11 19:25:15 +08003983{
3984 struct vcpu_vmx *vmx = to_vmx(vcpu);
3985 int r;
3986
Wincy Van705699a2015-02-03 23:58:17 +08003987 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
3988 if (!r)
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003989 return 0;
3990
3991 if (!vcpu->arch.apicv_active)
3992 return -1;
Wincy Van705699a2015-02-03 23:58:17 +08003993
Yang Zhanga20ed542013-04-11 19:25:15 +08003994 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003995 return 0;
Yang Zhanga20ed542013-04-11 19:25:15 +08003996
Paolo Bonzinib95234c2016-12-19 13:57:33 +01003997 /* If a previous notification has sent the IPI, nothing to do. */
3998 if (pi_test_and_set_on(&vmx->pi_desc))
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003999 return 0;
Paolo Bonzinib95234c2016-12-19 13:57:33 +01004000
Wanpeng Li379a3c82020-04-28 14:23:27 +08004001 if (vcpu != kvm_get_running_vcpu() &&
4002 !kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08004003 kvm_vcpu_kick(vcpu);
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01004004
4005 return 0;
Yang Zhanga20ed542013-04-11 19:25:15 +08004006}
4007
Avi Kivity6aa8b732006-12-10 02:21:36 -08004008/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004009 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
4010 * will not change in the lifetime of the guest.
4011 * Note that host-state that does change is set elsewhere. E.g., host-state
4012 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
4013 */
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004014void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004015{
4016 u32 low32, high32;
4017 unsigned long tmpl;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07004018 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004019
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07004020 cr0 = read_cr0();
4021 WARN_ON(cr0 & X86_CR0_TS);
4022 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07004023
4024 /*
4025 * Save the most likely value for this task's CR3 in the VMCS.
4026 * We can't use __get_current_cr3_fast() because we're not atomic.
4027 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07004028 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07004029 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
Sean Christophersond7ee0392018-07-23 12:32:47 -07004030 vmx->loaded_vmcs->host_state.cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004031
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004032 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07004033 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004034 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07004035 vmx->loaded_vmcs->host_state.cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004036
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004037 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004038#ifdef CONFIG_X86_64
4039 /*
4040 * Load null selectors, so we can avoid reloading them in
Sean Christopherson6d6095b2018-07-23 12:32:44 -07004041 * vmx_prepare_switch_to_host(), in case userspace uses
4042 * the null selectors too (the expected case).
Avi Kivityb2da15a2012-05-13 19:53:24 +03004043 */
4044 vmcs_write16(HOST_DS_SELECTOR, 0);
4045 vmcs_write16(HOST_ES_SELECTOR, 0);
4046#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004047 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4048 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004049#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004050 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4051 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
4052
Sean Christopherson23420802019-04-19 22:50:57 -07004053 vmcs_writel(HOST_IDTR_BASE, host_idt_base); /* 22.2.4 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004054
Sean Christopherson453eafb2018-12-20 12:25:17 -08004055 vmcs_writel(HOST_RIP, (unsigned long)vmx_vmexit); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004056
4057 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
4058 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
4059 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
4060 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
4061
4062 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
4063 rdmsr(MSR_IA32_CR_PAT, low32, high32);
4064 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
4065 }
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07004066
Sean Christophersonc73da3f2018-12-03 13:53:00 -08004067 if (cpu_has_load_ia32_efer())
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07004068 vmcs_write64(HOST_IA32_EFER, host_efer);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004069}
4070
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004071void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004072{
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004073 struct kvm_vcpu *vcpu = &vmx->vcpu;
4074
4075 vcpu->arch.cr4_guest_owned_bits = KVM_POSSIBLE_CR4_GUEST_BITS &
4076 ~vcpu->arch.cr4_guest_rsvd_bits;
Sean Christophersonfa71e952020-07-02 21:04:22 -07004077 if (!enable_ept)
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004078 vcpu->arch.cr4_guest_owned_bits &= ~X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03004079 if (is_guest_mode(&vmx->vcpu))
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07004080 vcpu->arch.cr4_guest_owned_bits &=
4081 ~get_vmcs12(vcpu)->cr4_guest_host_mask;
4082 vmcs_writel(CR4_GUEST_HOST_MASK, ~vcpu->arch.cr4_guest_owned_bits);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004083}
4084
Sean Christophersonc075c3e2019-05-07 12:17:53 -07004085u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
Yang Zhang01e439b2013-04-11 19:25:12 +08004086{
4087 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
4088
Andrey Smetanind62caab2015-11-10 15:36:33 +03004089 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08004090 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004091
4092 if (!enable_vnmi)
4093 pin_based_exec_ctrl &= ~PIN_BASED_VIRTUAL_NMIS;
4094
Sean Christopherson804939e2019-05-07 12:18:05 -07004095 if (!enable_preemption_timer)
4096 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
4097
Yang Zhang01e439b2013-04-11 19:25:12 +08004098 return pin_based_exec_ctrl;
4099}
4100
Andrey Smetanind62caab2015-11-10 15:36:33 +03004101static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
4102{
4103 struct vcpu_vmx *vmx = to_vmx(vcpu);
4104
Sean Christophersonc5f2c762019-05-07 12:17:55 -07004105 pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03004106 if (cpu_has_secondary_exec_ctrls()) {
4107 if (kvm_vcpu_apicv_active(vcpu))
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07004108 secondary_exec_controls_setbit(vmx,
Roman Kagan3ce424e2016-05-18 17:48:20 +03004109 SECONDARY_EXEC_APIC_REGISTER_VIRT |
4110 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
4111 else
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07004112 secondary_exec_controls_clearbit(vmx,
Roman Kagan3ce424e2016-05-18 17:48:20 +03004113 SECONDARY_EXEC_APIC_REGISTER_VIRT |
4114 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
4115 }
4116
4117 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004118 vmx_update_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004119}
4120
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08004121u32 vmx_exec_control(struct vcpu_vmx *vmx)
4122{
4123 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
4124
4125 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
4126 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
4127
4128 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
4129 exec_control &= ~CPU_BASED_TPR_SHADOW;
4130#ifdef CONFIG_X86_64
4131 exec_control |= CPU_BASED_CR8_STORE_EXITING |
4132 CPU_BASED_CR8_LOAD_EXITING;
4133#endif
4134 }
4135 if (!enable_ept)
4136 exec_control |= CPU_BASED_CR3_STORE_EXITING |
4137 CPU_BASED_CR3_LOAD_EXITING |
4138 CPU_BASED_INVLPG_EXITING;
4139 if (kvm_mwait_in_guest(vmx->vcpu.kvm))
4140 exec_control &= ~(CPU_BASED_MWAIT_EXITING |
4141 CPU_BASED_MONITOR_EXITING);
4142 if (kvm_hlt_in_guest(vmx->vcpu.kvm))
4143 exec_control &= ~CPU_BASED_HLT_EXITING;
4144 return exec_control;
4145}
4146
Sean Christopherson8b50b922020-09-24 17:30:11 -07004147/*
4148 * Adjust a single secondary execution control bit to intercept/allow an
4149 * instruction in the guest. This is usually done based on whether or not a
4150 * feature has been exposed to the guest in order to correctly emulate faults.
4151 */
4152static inline void
4153vmx_adjust_secondary_exec_control(struct vcpu_vmx *vmx, u32 *exec_control,
4154 u32 control, bool enabled, bool exiting)
4155{
4156 /*
4157 * If the control is for an opt-in feature, clear the control if the
4158 * feature is not exposed to the guest, i.e. not enabled. If the
4159 * control is opt-out, i.e. an exiting control, clear the control if
4160 * the feature _is_ exposed to the guest, i.e. exiting/interception is
4161 * disabled for the associated instruction. Note, the caller is
4162 * responsible presetting exec_control to set all supported bits.
4163 */
4164 if (enabled == exiting)
4165 *exec_control &= ~control;
4166
4167 /*
4168 * Update the nested MSR settings so that a nested VMM can/can't set
4169 * controls for features that are/aren't exposed to the guest.
4170 */
4171 if (nested) {
4172 if (enabled)
4173 vmx->nested.msrs.secondary_ctls_high |= control;
4174 else
4175 vmx->nested.msrs.secondary_ctls_high &= ~control;
4176 }
4177}
4178
4179/*
4180 * Wrapper macro for the common case of adjusting a secondary execution control
4181 * based on a single guest CPUID bit, with a dedicated feature bit. This also
4182 * verifies that the control is actually supported by KVM and hardware.
4183 */
4184#define vmx_adjust_sec_exec_control(vmx, exec_control, name, feat_name, ctrl_name, exiting) \
4185({ \
4186 bool __enabled; \
4187 \
4188 if (cpu_has_vmx_##name()) { \
4189 __enabled = guest_cpuid_has(&(vmx)->vcpu, \
4190 X86_FEATURE_##feat_name); \
4191 vmx_adjust_secondary_exec_control(vmx, exec_control, \
4192 SECONDARY_EXEC_##ctrl_name, __enabled, exiting); \
4193 } \
4194})
4195
4196/* More macro magic for ENABLE_/opt-in versus _EXITING/opt-out controls. */
4197#define vmx_adjust_sec_exec_feature(vmx, exec_control, lname, uname) \
4198 vmx_adjust_sec_exec_control(vmx, exec_control, lname, uname, ENABLE_##uname, false)
4199
4200#define vmx_adjust_sec_exec_exiting(vmx, exec_control, lname, uname) \
4201 vmx_adjust_sec_exec_control(vmx, exec_control, lname, uname, uname##_EXITING, true)
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08004202
Paolo Bonzini80154d72017-08-24 13:55:35 +02004203static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004204{
Paolo Bonzini80154d72017-08-24 13:55:35 +02004205 struct kvm_vcpu *vcpu = &vmx->vcpu;
4206
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004207 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004208
Sean Christopherson2ef76192020-03-02 15:56:22 -08004209 if (vmx_pt_mode_is_system())
Chao Pengf99e3da2018-10-24 16:05:10 +08004210 exec_control &= ~(SECONDARY_EXEC_PT_USE_GPA | SECONDARY_EXEC_PT_CONCEAL_VMX);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004211 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004212 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
4213 if (vmx->vpid == 0)
4214 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
4215 if (!enable_ept) {
4216 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
4217 enable_unrestricted_guest = 0;
4218 }
4219 if (!enable_unrestricted_guest)
4220 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Wanpeng Lib31c1142018-03-12 04:53:04 -07004221 if (kvm_pause_in_guest(vmx->vcpu.kvm))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004222 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02004223 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08004224 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
4225 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08004226 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004227
4228 /* SECONDARY_EXEC_DESC is enabled/disabled on writes to CR4.UMIP,
4229 * in vmx_set_cr4. */
4230 exec_control &= ~SECONDARY_EXEC_DESC;
4231
Abel Gordonabc4fc52013-04-18 14:35:25 +03004232 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
4233 (handle_vmptrld).
4234 We can NOT enable shadow_vmcs here because we don't have yet
4235 a current VMCS12
4236 */
4237 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08004238
4239 if (!enable_pml)
4240 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08004241
Sean Christophersonbecdad82020-09-23 09:50:45 -07004242 if (cpu_has_vmx_xsaves()) {
Paolo Bonzini3db13482017-08-24 14:48:03 +02004243 /* Exposing XSAVES only when XSAVE is exposed */
4244 bool xsaves_enabled =
Sean Christopherson96be4e02019-12-10 14:44:15 -08004245 boot_cpu_has(X86_FEATURE_XSAVE) &&
Paolo Bonzini3db13482017-08-24 14:48:03 +02004246 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
4247 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
4248
Aaron Lewis72041602019-10-21 16:30:20 -07004249 vcpu->arch.xsaves_enabled = xsaves_enabled;
4250
Sean Christopherson8b50b922020-09-24 17:30:11 -07004251 vmx_adjust_secondary_exec_control(vmx, &exec_control,
4252 SECONDARY_EXEC_XSAVES,
4253 xsaves_enabled, false);
Paolo Bonzini3db13482017-08-24 14:48:03 +02004254 }
4255
Sean Christopherson8b50b922020-09-24 17:30:11 -07004256 vmx_adjust_sec_exec_feature(vmx, &exec_control, rdtscp, RDTSCP);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004257
Sean Christophersonb936d3e2020-09-23 09:50:46 -07004258 /*
4259 * Expose INVPCID if and only if PCID is also exposed to the guest.
4260 * INVPCID takes a #UD when it's disabled in the VMCS, but a #GP or #PF
4261 * if CR4.PCIDE=0. Enumerating CPUID.INVPCID=1 would lead to incorrect
4262 * behavior from the guest perspective (it would expect #GP or #PF).
4263 */
4264 if (!guest_cpuid_has(vcpu, X86_FEATURE_PCID))
4265 guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID);
Sean Christopherson8b50b922020-09-24 17:30:11 -07004266 vmx_adjust_sec_exec_feature(vmx, &exec_control, invpcid, INVPCID);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004267
Paolo Bonzini80154d72017-08-24 13:55:35 +02004268
Sean Christopherson8b50b922020-09-24 17:30:11 -07004269 vmx_adjust_sec_exec_exiting(vmx, &exec_control, rdrand, RDRAND);
4270 vmx_adjust_sec_exec_exiting(vmx, &exec_control, rdseed, RDSEED);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004271
Sean Christopherson8b50b922020-09-24 17:30:11 -07004272 vmx_adjust_sec_exec_control(vmx, &exec_control, waitpkg, WAITPKG,
4273 ENABLE_USR_WAIT_PAUSE, false);
Tao Xue69e72fa2019-07-16 14:55:49 +08004274
Paolo Bonzini80154d72017-08-24 13:55:35 +02004275 vmx->secondary_exec_control = exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004276}
4277
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004278static void ept_set_mmio_spte_mask(void)
4279{
4280 /*
4281 * EPT Misconfigurations can be generated if the value of bits 2:0
4282 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004283 */
Paolo Bonzinie7581ca2020-05-19 05:04:49 -04004284 kvm_mmu_set_mmio_spte_mask(VMX_EPT_MISCONFIG_WX_VALUE, 0);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004285}
4286
Wanpeng Lif53cd632014-12-02 19:14:58 +08004287#define VMX_XSS_EXIT_BITMAP 0
Avi Kivity6aa8b732006-12-10 02:21:36 -08004288
Sean Christopherson944c3462018-12-03 13:53:09 -08004289/*
Xiaoyao Li1b842922019-10-20 17:11:01 +08004290 * Noting that the initialization of Guest-state Area of VMCS is in
4291 * vmx_vcpu_reset().
Sean Christopherson944c3462018-12-03 13:53:09 -08004292 */
Xiaoyao Li1b842922019-10-20 17:11:01 +08004293static void init_vmcs(struct vcpu_vmx *vmx)
Sean Christopherson944c3462018-12-03 13:53:09 -08004294{
Sean Christopherson944c3462018-12-03 13:53:09 -08004295 if (nested)
Xiaoyao Li1b842922019-10-20 17:11:01 +08004296 nested_vmx_set_vmcs_shadowing_bitmap();
Sean Christopherson944c3462018-12-03 13:53:09 -08004297
Sheng Yang25c5f222008-03-28 13:18:56 +08004298 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004299 vmcs_write64(MSR_BITMAP, __pa(vmx->vmcs01.msr_bitmap));
Sheng Yang25c5f222008-03-28 13:18:56 +08004300
Avi Kivity6aa8b732006-12-10 02:21:36 -08004301 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
4302
Avi Kivity6aa8b732006-12-10 02:21:36 -08004303 /* Control */
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004304 pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004305
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004306 exec_controls_set(vmx, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004307
Dan Williamsdfa169b2016-06-02 11:17:24 -07004308 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +02004309 vmx_compute_secondary_exec_control(vmx);
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004310 secondary_exec_controls_set(vmx, vmx->secondary_exec_control);
Dan Williamsdfa169b2016-06-02 11:17:24 -07004311 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08004312
Andrey Smetanind62caab2015-11-10 15:36:33 +03004313 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08004314 vmcs_write64(EOI_EXIT_BITMAP0, 0);
4315 vmcs_write64(EOI_EXIT_BITMAP1, 0);
4316 vmcs_write64(EOI_EXIT_BITMAP2, 0);
4317 vmcs_write64(EOI_EXIT_BITMAP3, 0);
4318
4319 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08004320
Li RongQing0bcf2612015-12-03 13:29:34 +08004321 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08004322 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08004323 }
4324
Wanpeng Lib31c1142018-03-12 04:53:04 -07004325 if (!kvm_pause_in_guest(vmx->vcpu.kvm)) {
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004326 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02004327 vmx->ple_window = ple_window;
4328 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004329 }
4330
Xiao Guangrongc3707952011-07-12 03:28:04 +08004331 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
4332 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004333 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
4334
Avi Kivity9581d442010-10-19 16:46:55 +02004335 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
4336 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004337 vmx_set_constant_host_state(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004338 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
4339 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004340
Bandan Das2a499e42017-08-03 15:54:41 -04004341 if (cpu_has_vmx_vmfunc())
4342 vmcs_write64(VM_FUNCTION_CONTROL, 0);
4343
Eddie Dong2cc51562007-05-21 07:28:09 +03004344 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
4345 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004346 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host.val));
Eddie Dong2cc51562007-05-21 07:28:09 +03004347 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004348 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest.val));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004349
Radim Krčmář74545702015-04-27 15:11:25 +02004350 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
4351 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08004352
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004353 vm_exit_controls_set(vmx, vmx_vmexit_ctrl());
Avi Kivity6aa8b732006-12-10 02:21:36 -08004354
4355 /* 22.2.1, 20.8.1 */
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004356 vm_entry_controls_set(vmx, vmx_vmentry_ctrl());
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004357
Sean Christophersonfa71e952020-07-02 21:04:22 -07004358 vmx->vcpu.arch.cr0_guest_owned_bits = KVM_POSSIBLE_CR0_GUEST_BITS;
4359 vmcs_writel(CR0_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr0_guest_owned_bits);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004360
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004361 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004362
Xiaoyao Li35fbe0d2019-10-20 17:10:58 +08004363 if (vmx->vpid != 0)
4364 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
4365
Sean Christophersonbecdad82020-09-23 09:50:45 -07004366 if (cpu_has_vmx_xsaves())
Wanpeng Lif53cd632014-12-02 19:14:58 +08004367 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
4368
Peter Feiner4e595162016-07-07 14:49:58 -07004369 if (enable_pml) {
Peter Feiner4e595162016-07-07 14:49:58 -07004370 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
4371 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
4372 }
Sean Christopherson0b665d32018-08-14 09:33:34 -07004373
4374 if (cpu_has_vmx_encls_vmexit())
4375 vmcs_write64(ENCLS_EXITING_BITMAP, -1ull);
Chao Peng2ef444f2018-10-24 16:05:12 +08004376
Sean Christopherson2ef76192020-03-02 15:56:22 -08004377 if (vmx_pt_mode_is_host_guest()) {
Chao Peng2ef444f2018-10-24 16:05:12 +08004378 memset(&vmx->pt_desc, 0, sizeof(vmx->pt_desc));
4379 /* Bit[6~0] are forced to 1, writes are ignored. */
4380 vmx->pt_desc.guest.output_mask = 0x7F;
4381 vmcs_write64(GUEST_IA32_RTIT_CTL, 0);
4382 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004383}
4384
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004385static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004386{
4387 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01004388 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004389 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004390
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004391 vmx->rmode.vm86_active = 0;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004392 vmx->spec_ctrl = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004393
Tao Xu6e3ba4a2019-07-16 14:55:50 +08004394 vmx->msr_ia32_umwait_control = 0;
4395
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004396 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Wanpeng Li95c06542019-09-05 14:26:28 +08004397 vmx->hv_deadline_tsc = -1;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004398 kvm_set_cr8(vcpu, 0);
4399
4400 if (!init_event) {
4401 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
4402 MSR_IA32_APICBASE_ENABLE;
4403 if (kvm_vcpu_is_reset_bsp(vcpu))
4404 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
4405 apic_base_msr.host_initiated = true;
4406 kvm_set_apic_base(vcpu, &apic_base_msr);
4407 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004408
Avi Kivity2fb92db2011-04-27 19:42:18 +03004409 vmx_segment_cache_clear(vmx);
4410
Avi Kivity5706be02008-08-20 15:07:31 +03004411 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01004412 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004413 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004414
4415 seg_setup(VCPU_SREG_DS);
4416 seg_setup(VCPU_SREG_ES);
4417 seg_setup(VCPU_SREG_FS);
4418 seg_setup(VCPU_SREG_GS);
4419 seg_setup(VCPU_SREG_SS);
4420
4421 vmcs_write16(GUEST_TR_SELECTOR, 0);
4422 vmcs_writel(GUEST_TR_BASE, 0);
4423 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
4424 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4425
4426 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
4427 vmcs_writel(GUEST_LDTR_BASE, 0);
4428 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
4429 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
4430
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004431 if (!init_event) {
4432 vmcs_write32(GUEST_SYSENTER_CS, 0);
4433 vmcs_writel(GUEST_SYSENTER_ESP, 0);
4434 vmcs_writel(GUEST_SYSENTER_EIP, 0);
4435 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
4436 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004437
Wanpeng Lic37c2872017-11-20 14:52:21 -08004438 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
Jan Kiszka66450a22013-03-13 12:42:34 +01004439 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004440
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004441 vmcs_writel(GUEST_GDTR_BASE, 0);
4442 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
4443
4444 vmcs_writel(GUEST_IDTR_BASE, 0);
4445 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
4446
Anthony Liguori443381a2010-12-06 10:53:38 -06004447 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004448 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004449 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Wanpeng Lia554d202017-10-11 05:10:19 -07004450 if (kvm_mpx_supported())
4451 vmcs_write64(GUEST_BNDCFGS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004452
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004453 setup_msrs(vmx);
4454
Avi Kivity6aa8b732006-12-10 02:21:36 -08004455 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
4456
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004457 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08004458 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004459 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08004460 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004461 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004462 vmcs_write32(TPR_THRESHOLD, 0);
4463 }
4464
Paolo Bonzinia73896c2014-11-02 07:54:30 +01004465 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004466
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004467 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004468 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06004469 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004470 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02004471 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004472
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004473 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004474
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004475 vpid_sync_context(vmx->vpid);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004476 if (init_event)
4477 vmx_clear_hlt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004478}
4479
Jan Kiszkac9a79532014-03-07 20:03:15 +01004480static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004481{
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08004482 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_INTR_WINDOW_EXITING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004483}
4484
Jan Kiszkac9a79532014-03-07 20:03:15 +01004485static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004486{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004487 if (!enable_vnmi ||
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004488 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jan Kiszkac9a79532014-03-07 20:03:15 +01004489 enable_irq_window(vcpu);
4490 return;
4491 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02004492
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08004493 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_NMI_WINDOW_EXITING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004494}
4495
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004496static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03004497{
Avi Kivity9c8cba32007-11-22 11:42:59 +02004498 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004499 uint32_t intr;
4500 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02004501
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004502 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004503
Avi Kivityfa89a812008-09-01 15:57:51 +03004504 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004505 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05004506 int inc_eip = 0;
4507 if (vcpu->arch.interrupt.soft)
4508 inc_eip = vcpu->arch.event_exit_inst_len;
Sean Christopherson9497e1f2019-08-27 14:40:36 -07004509 kvm_inject_realmode_interrupt(vcpu, irq, inc_eip);
Eddie Dong85f455f2007-07-06 12:20:49 +03004510 return;
4511 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004512 intr = irq | INTR_INFO_VALID_MASK;
4513 if (vcpu->arch.interrupt.soft) {
4514 intr |= INTR_TYPE_SOFT_INTR;
4515 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
4516 vmx->vcpu.arch.event_exit_inst_len);
4517 } else
4518 intr |= INTR_TYPE_EXT_INTR;
4519 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004520
4521 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03004522}
4523
Sheng Yangf08864b2008-05-15 18:23:25 +08004524static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
4525{
Jan Kiszka66a5a342008-09-26 09:30:51 +02004526 struct vcpu_vmx *vmx = to_vmx(vcpu);
4527
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004528 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004529 /*
4530 * Tracking the NMI-blocked state in software is built upon
4531 * finding the next open IRQ window. This, in turn, depends on
4532 * well-behaving guests: They have to keep IRQs disabled at
4533 * least as long as the NMI handler runs. Otherwise we may
4534 * cause NMI nesting, maybe breaking the guest. But as this is
4535 * highly unlikely, we can live with the residual risk.
4536 */
4537 vmx->loaded_vmcs->soft_vnmi_blocked = 1;
4538 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4539 }
4540
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004541 ++vcpu->stat.nmi_injections;
4542 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004543
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004544 if (vmx->rmode.vm86_active) {
Sean Christopherson9497e1f2019-08-27 14:40:36 -07004545 kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0);
Jan Kiszka66a5a342008-09-26 09:30:51 +02004546 return;
4547 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08004548
Sheng Yangf08864b2008-05-15 18:23:25 +08004549 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
4550 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004551
4552 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08004553}
4554
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004555bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004556{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004557 struct vcpu_vmx *vmx = to_vmx(vcpu);
4558 bool masked;
4559
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004560 if (!enable_vnmi)
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004561 return vmx->loaded_vmcs->soft_vnmi_blocked;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004562 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02004563 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004564 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
4565 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4566 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004567}
4568
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004569void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004570{
4571 struct vcpu_vmx *vmx = to_vmx(vcpu);
4572
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004573 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004574 if (vmx->loaded_vmcs->soft_vnmi_blocked != masked) {
4575 vmx->loaded_vmcs->soft_vnmi_blocked = masked;
4576 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4577 }
4578 } else {
4579 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4580 if (masked)
4581 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
4582 GUEST_INTR_STATE_NMI);
4583 else
4584 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
4585 GUEST_INTR_STATE_NMI);
4586 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004587}
4588
Sean Christopherson1b660b62020-04-22 19:25:44 -07004589bool vmx_nmi_blocked(struct kvm_vcpu *vcpu)
4590{
4591 if (is_guest_mode(vcpu) && nested_exit_on_nmi(vcpu))
4592 return false;
4593
4594 if (!enable_vnmi && to_vmx(vcpu)->loaded_vmcs->soft_vnmi_blocked)
4595 return true;
4596
4597 return (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4598 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI |
4599 GUEST_INTR_STATE_NMI));
4600}
4601
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004602static int vmx_nmi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Jan Kiszka2505dc92013-04-14 12:12:47 +02004603{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01004604 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004605 return -EBUSY;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02004606
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004607 /* An NMI must not be injected into L2 if it's supposed to VM-Exit. */
4608 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_nmi(vcpu))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004609 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004610
Sean Christopherson1b660b62020-04-22 19:25:44 -07004611 return !vmx_nmi_blocked(vcpu);
4612}
Sean Christopherson429ab572020-04-22 19:25:42 -07004613
Sean Christopherson1b660b62020-04-22 19:25:44 -07004614bool vmx_interrupt_blocked(struct kvm_vcpu *vcpu)
4615{
4616 if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
Sean Christopherson88c604b2020-04-22 19:25:41 -07004617 return false;
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004618
Sean Christopherson7ab0abd2020-04-22 19:25:50 -07004619 return !(vmx_get_rflags(vcpu) & X86_EFLAGS_IF) ||
Sean Christopherson1b660b62020-04-22 19:25:44 -07004620 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4621 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Jan Kiszka2505dc92013-04-14 12:12:47 +02004622}
4623
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004624static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Gleb Natapov78646122009-03-23 12:12:11 +02004625{
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004626 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004627 return -EBUSY;
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004628
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004629 /*
4630 * An IRQ must not be injected into L2 if it's supposed to VM-Exit,
4631 * e.g. if the IRQ arrived asynchronously after checking nested events.
4632 */
4633 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004634 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004635
Sean Christopherson1b660b62020-04-22 19:25:44 -07004636 return !vmx_interrupt_blocked(vcpu);
Gleb Natapov78646122009-03-23 12:12:11 +02004637}
4638
Izik Eiduscbc94022007-10-25 00:29:55 +02004639static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
4640{
4641 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02004642
Sean Christophersonf7eaeb02018-03-05 12:04:36 -08004643 if (enable_unrestricted_guest)
4644 return 0;
4645
Peter Xu6a3c6232020-01-09 09:57:16 -05004646 mutex_lock(&kvm->slots_lock);
4647 ret = __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
4648 PAGE_SIZE * 3);
4649 mutex_unlock(&kvm->slots_lock);
4650
Izik Eiduscbc94022007-10-25 00:29:55 +02004651 if (ret)
4652 return ret;
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004653 to_kvm_vmx(kvm)->tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004654 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02004655}
4656
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004657static int vmx_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
4658{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004659 to_kvm_vmx(kvm)->ept_identity_map_addr = ident_addr;
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004660 return 0;
4661}
4662
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004663static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004664{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004665 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004666 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01004667 /*
4668 * Update instruction length as we may reinject the exception
4669 * from user space while in guest debugging mode.
4670 */
4671 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
4672 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004673 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004674 return false;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004675 fallthrough;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004676 case DB_VECTOR:
Miaohe Lina8cfbae2020-02-19 10:45:48 +08004677 return !(vcpu->guest_debug &
4678 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP));
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004679 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004680 case OF_VECTOR:
4681 case BR_VECTOR:
4682 case UD_VECTOR:
4683 case DF_VECTOR:
4684 case SS_VECTOR:
4685 case GP_VECTOR:
4686 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004687 return true;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004688 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004689 return false;
4690}
4691
4692static int handle_rmode_exception(struct kvm_vcpu *vcpu,
4693 int vec, u32 err_code)
4694{
4695 /*
4696 * Instruction with address size override prefix opcode 0x67
4697 * Cause the #SS fault with 0 error code in VM86 mode.
4698 */
4699 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004700 if (kvm_emulate_instruction(vcpu, 0)) {
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004701 if (vcpu->arch.halt_request) {
4702 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06004703 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004704 }
4705 return 1;
4706 }
4707 return 0;
4708 }
4709
4710 /*
4711 * Forward all other exceptions that are valid in real mode.
4712 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
4713 * the required debugging infrastructure rework.
4714 */
4715 kvm_queue_exception(vcpu, vec);
4716 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004717}
4718
Andi Kleena0861c02009-06-08 17:37:09 +08004719/*
4720 * Trigger machine check on the host. We assume all the MSRs are already set up
4721 * by the CPU and that we still run on the same CPU as the MCE occurred on.
4722 * We pass a fake environment to the machine check handler because we want
4723 * the guest to be always treated like user space, no matter what context
4724 * it used internally.
4725 */
4726static void kvm_machine_check(void)
4727{
Uros Bizjakfb56baa2020-04-14 09:14:14 +02004728#if defined(CONFIG_X86_MCE)
Andi Kleena0861c02009-06-08 17:37:09 +08004729 struct pt_regs regs = {
4730 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
4731 .flags = X86_EFLAGS_IF,
4732 };
4733
Thomas Gleixner8cd501c2020-02-25 23:33:23 +01004734 do_machine_check(&regs);
Andi Kleena0861c02009-06-08 17:37:09 +08004735#endif
4736}
4737
Avi Kivity851ba692009-08-24 11:10:17 +03004738static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08004739{
Sean Christopherson95b5a482019-04-19 22:50:59 -07004740 /* handled by vmx_vcpu_run() */
Andi Kleena0861c02009-06-08 17:37:09 +08004741 return 1;
4742}
4743
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004744/*
4745 * If the host has split lock detection disabled, then #AC is
4746 * unconditionally injected into the guest, which is the pre split lock
4747 * detection behaviour.
4748 *
4749 * If the host has split lock detection enabled then #AC is
4750 * only injected into the guest when:
4751 * - Guest CPL == 3 (user mode)
4752 * - Guest has #AC detection enabled in CR0
4753 * - Guest EFLAGS has AC bit set
4754 */
4755static inline bool guest_inject_ac(struct kvm_vcpu *vcpu)
4756{
4757 if (!boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
4758 return true;
4759
4760 return vmx_get_cpl(vcpu) == 3 && kvm_read_cr0_bits(vcpu, X86_CR0_AM) &&
4761 (kvm_get_rflags(vcpu) & X86_EFLAGS_AC);
4762}
4763
Sean Christopherson95b5a482019-04-19 22:50:59 -07004764static int handle_exception_nmi(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004765{
Avi Kivity1155f762007-11-22 11:30:47 +02004766 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004767 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004768 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004769 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004770 u32 vect_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004771
Avi Kivity1155f762007-11-22 11:30:47 +02004772 vect_info = vmx->idt_vectoring_info;
Sean Christophersonf27ad732020-04-27 10:18:37 -07004773 intr_info = vmx_get_intr_info(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004774
Paolo Bonzini2ea72032019-06-06 14:57:25 +02004775 if (is_machine_check(intr_info) || is_nmi(intr_info))
Sean Christopherson95b5a482019-04-19 22:50:59 -07004776 return 1; /* handled by handle_exception_nmi_irqoff() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03004777
Wanpeng Li082d06e2018-04-03 16:28:48 -07004778 if (is_invalid_opcode(intr_info))
4779 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004780
Avi Kivity6aa8b732006-12-10 02:21:36 -08004781 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06004782 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004783 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004784
Liran Alon9e869482018-03-12 13:12:51 +02004785 if (!vmx->rmode.vm86_active && is_gp_fault(intr_info)) {
4786 WARN_ON_ONCE(!enable_vmware_backdoor);
Sean Christophersona6c6ed12019-08-27 14:40:30 -07004787
4788 /*
4789 * VMware backdoor emulation on #GP interception only handles
4790 * IN{S}, OUT{S}, and RDPMC, none of which generate a non-zero
4791 * error code on #GP.
4792 */
4793 if (error_code) {
4794 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
4795 return 1;
4796 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004797 return kvm_emulate_instruction(vcpu, EMULTYPE_VMWARE_GP);
Liran Alon9e869482018-03-12 13:12:51 +02004798 }
4799
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004800 /*
4801 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
4802 * MMIO, it is better to report an internal error.
4803 * See the comments in vmx_handle_exit.
4804 */
4805 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
4806 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
4807 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4808 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Jim Mattson1aa561b2020-06-03 16:56:21 -07004809 vcpu->run->internal.ndata = 4;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004810 vcpu->run->internal.data[0] = vect_info;
4811 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02004812 vcpu->run->internal.data[2] = error_code;
Jim Mattson8a14fe42020-06-03 16:56:22 -07004813 vcpu->run->internal.data[3] = vcpu->arch.last_vmentry_cpu;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004814 return 0;
4815 }
4816
Avi Kivity6aa8b732006-12-10 02:21:36 -08004817 if (is_page_fault(intr_info)) {
Sean Christopherson5addc232020-04-15 13:34:53 -07004818 cr2 = vmx_get_exit_qual(vcpu);
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02004819 if (enable_ept && !vcpu->arch.apf.host_apf_flags) {
4820 /*
4821 * EPT will cause page fault only if we need to
4822 * detect illegal GPAs.
4823 */
Mohammed Gamalb96e6502020-09-03 16:11:22 +02004824 WARN_ON_ONCE(!allow_smaller_maxphyaddr);
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02004825 kvm_fixup_and_inject_pf_error(vcpu, cr2, error_code);
4826 return 1;
4827 } else
4828 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004829 }
4830
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004831 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004832
4833 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
4834 return handle_rmode_exception(vcpu, ex_no, error_code);
4835
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004836 switch (ex_no) {
4837 case DB_VECTOR:
Sean Christopherson5addc232020-04-15 13:34:53 -07004838 dr6 = vmx_get_exit_qual(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004839 if (!(vcpu->guest_debug &
4840 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Linus Torvalds32d43cd2018-03-20 12:16:59 -07004841 if (is_icebp(intr_info))
Sean Christopherson1957aa62019-08-27 14:40:39 -07004842 WARN_ON(!skip_emulated_instruction(vcpu));
Huw Daviesfd2a4452014-04-16 10:02:51 +01004843
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04004844 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004845 return 1;
4846 }
Peter Xu13196632020-05-05 16:49:58 -04004847 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1 | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004848 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004849 fallthrough;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004850 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01004851 /*
4852 * Update instruction length as we may reinject #BP from
4853 * user space while in guest debugging mode. Reading it for
4854 * #DB as well causes no harm, it is not used in that case.
4855 */
4856 vmx->vcpu.arch.event_exit_inst_len =
4857 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004858 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03004859 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004860 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
4861 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004862 break;
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004863 case AC_VECTOR:
4864 if (guest_inject_ac(vcpu)) {
4865 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
4866 return 1;
4867 }
4868
4869 /*
4870 * Handle split lock. Depending on detection mode this will
4871 * either warn and disable split lock detection for this
4872 * task or force SIGBUS on it.
4873 */
4874 if (handle_guest_split_lock(kvm_rip_read(vcpu)))
4875 return 1;
4876 fallthrough;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004877 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004878 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
4879 kvm_run->ex.exception = ex_no;
4880 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004881 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004882 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004883 return 0;
4884}
4885
Andrea Arcangelif399e602019-11-04 17:59:58 -05004886static __always_inline int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004887{
Avi Kivity1165f5f2007-04-19 17:27:43 +03004888 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004889 return 1;
4890}
4891
Avi Kivity851ba692009-08-24 11:10:17 +03004892static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08004893{
Avi Kivity851ba692009-08-24 11:10:17 +03004894 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07004895 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08004896 return 0;
4897}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004898
Avi Kivity851ba692009-08-24 11:10:17 +03004899static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004900{
He, Qingbfdaab02007-09-12 14:18:28 +08004901 unsigned long exit_qualification;
Sean Christophersondca7f122018-03-08 08:57:27 -08004902 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02004903 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004904
Sean Christopherson5addc232020-04-15 13:34:53 -07004905 exit_qualification = vmx_get_exit_qual(vcpu);
Avi Kivity039576c2007-03-20 12:46:50 +02004906 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004907
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004908 ++vcpu->stat.io_exits;
4909
Sean Christopherson432baf62018-03-08 08:57:26 -08004910 if (string)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004911 return kvm_emulate_instruction(vcpu, 0);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004912
4913 port = exit_qualification >> 16;
4914 size = (exit_qualification & 7) + 1;
Sean Christopherson432baf62018-03-08 08:57:26 -08004915 in = (exit_qualification & 8) != 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004916
Sean Christophersondca7f122018-03-08 08:57:27 -08004917 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004918}
4919
Ingo Molnar102d8322007-02-19 14:37:47 +02004920static void
4921vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
4922{
4923 /*
4924 * Patch in the VMCALL instruction:
4925 */
4926 hypercall[0] = 0x0f;
4927 hypercall[1] = 0x01;
4928 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02004929}
4930
Guo Chao0fa06072012-06-28 15:16:19 +08004931/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004932static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
4933{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004934 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004935 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4936 unsigned long orig_val = val;
4937
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004938 /*
4939 * We get here when L2 changed cr0 in a way that did not change
4940 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004941 * but did change L0 shadowed bits. So we first calculate the
4942 * effective cr0 value that L1 would like to write into the
4943 * hardware. It consists of the L2-owned bits from the new
4944 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004945 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004946 val = (val & ~vmcs12->cr0_guest_host_mask) |
4947 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
4948
David Matlack38991522016-11-29 18:14:08 -08004949 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004950 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004951
4952 if (kvm_set_cr0(vcpu, val))
4953 return 1;
4954 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004955 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004956 } else {
4957 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08004958 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004959 return 1;
David Matlack38991522016-11-29 18:14:08 -08004960
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004961 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004962 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004963}
4964
4965static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
4966{
4967 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004968 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4969 unsigned long orig_val = val;
4970
4971 /* analogously to handle_set_cr0 */
4972 val = (val & ~vmcs12->cr4_guest_host_mask) |
4973 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
4974 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004975 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004976 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004977 return 0;
4978 } else
4979 return kvm_set_cr4(vcpu, val);
4980}
4981
Paolo Bonzini0367f202016-07-12 10:44:55 +02004982static int handle_desc(struct kvm_vcpu *vcpu)
4983{
4984 WARN_ON(!(vcpu->arch.cr4 & X86_CR4_UMIP));
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004985 return kvm_emulate_instruction(vcpu, 0);
Paolo Bonzini0367f202016-07-12 10:44:55 +02004986}
4987
Avi Kivity851ba692009-08-24 11:10:17 +03004988static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004989{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004990 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004991 int cr;
4992 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03004993 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08004994 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004995
Sean Christopherson5addc232020-04-15 13:34:53 -07004996 exit_qualification = vmx_get_exit_qual(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004997 cr = exit_qualification & 15;
4998 reg = (exit_qualification >> 8) & 15;
4999 switch ((exit_qualification >> 4) & 3) {
5000 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03005001 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005002 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005003 switch (cr) {
5004 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005005 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005006 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005007 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08005008 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity23902182010-06-10 17:02:16 +03005009 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005010 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005011 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005012 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005013 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005014 case 8: {
5015 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03005016 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01005017 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005018 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005019 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08005020 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005021 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08005022 return ret;
5023 /*
5024 * TODO: we might be squashing a
5025 * KVM_GUESTDBG_SINGLESTEP-triggered
5026 * KVM_EXIT_DEBUG here.
5027 */
Avi Kivity851ba692009-08-24 11:10:17 +03005028 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005029 return 0;
5030 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02005031 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005032 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03005033 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005034 WARN_ONCE(1, "Guest should always own CR0.TS");
5035 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02005036 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08005037 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005038 case 1: /*mov from cr*/
5039 switch (cr) {
5040 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08005041 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity9f8fe502010-12-05 17:30:00 +02005042 val = kvm_read_cr3(vcpu);
5043 kvm_register_write(vcpu, reg, val);
5044 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005045 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005046 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005047 val = kvm_get_cr8(vcpu);
5048 kvm_register_write(vcpu, reg, val);
5049 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005050 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005051 }
5052 break;
5053 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02005054 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02005055 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02005056 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005057
Kyle Huey6affcbe2016-11-29 12:40:40 -08005058 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005059 default:
5060 break;
5061 }
Avi Kivity851ba692009-08-24 11:10:17 +03005062 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03005063 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08005064 (int)(exit_qualification >> 4) & 3, cr);
5065 return 0;
5066}
5067
Avi Kivity851ba692009-08-24 11:10:17 +03005068static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005069{
He, Qingbfdaab02007-09-12 14:18:28 +08005070 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005071 int dr, dr7, reg;
5072
Sean Christopherson5addc232020-04-15 13:34:53 -07005073 exit_qualification = vmx_get_exit_qual(vcpu);
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005074 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
5075
5076 /* First, if DR does not exist, trigger UD */
5077 if (!kvm_require_dr(vcpu, dr))
5078 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005079
Jan Kiszkaf2483412010-01-20 18:20:20 +01005080 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03005081 if (!kvm_require_cpl(vcpu, 0))
5082 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005083 dr7 = vmcs_readl(GUEST_DR7);
5084 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005085 /*
5086 * As the vm-exit takes precedence over the debug trap, we
5087 * need to emulate the latter, either for the host or the
5088 * guest debugging itself.
5089 */
5090 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Paolo Bonzini45981de2020-05-06 05:59:39 -04005091 vcpu->run->debug.arch.dr6 = DR6_BD | DR6_RTM | DR6_FIXED_1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005092 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02005093 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005094 vcpu->run->debug.arch.exception = DB_VECTOR;
5095 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005096 return 0;
5097 } else {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04005098 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BD);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005099 return 1;
5100 }
5101 }
5102
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005103 if (vcpu->guest_debug == 0) {
Sean Christopherson2183f562019-05-07 12:17:56 -07005104 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005105
5106 /*
5107 * No more DR vmexits; force a reload of the debug registers
5108 * and reenter on this instruction. The next vmexit will
5109 * retrieve the full state of the debug registers.
5110 */
5111 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
5112 return 1;
5113 }
5114
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005115 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
5116 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03005117 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005118
5119 if (kvm_get_dr(vcpu, dr, &val))
5120 return 1;
5121 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03005122 } else
Nadav Amit57773922014-06-18 17:19:23 +03005123 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005124 return 1;
5125
Kyle Huey6affcbe2016-11-29 12:40:40 -08005126 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005127}
5128
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005129static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
5130{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005131 get_debugreg(vcpu->arch.db[0], 0);
5132 get_debugreg(vcpu->arch.db[1], 1);
5133 get_debugreg(vcpu->arch.db[2], 2);
5134 get_debugreg(vcpu->arch.db[3], 3);
5135 get_debugreg(vcpu->arch.dr6, 6);
5136 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
5137
5138 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Sean Christopherson2183f562019-05-07 12:17:56 -07005139 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005140}
5141
Gleb Natapov020df072010-04-13 10:05:23 +03005142static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
5143{
5144 vmcs_writel(GUEST_DR7, val);
5145}
5146
Avi Kivity851ba692009-08-24 11:10:17 +03005147static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005148{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01005149 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005150 return 1;
5151}
5152
Avi Kivity851ba692009-08-24 11:10:17 +03005153static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005154{
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005155 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_INTR_WINDOW_EXITING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005156
Avi Kivity3842d132010-07-27 12:30:24 +03005157 kvm_make_request(KVM_REQ_EVENT, vcpu);
5158
Jan Kiszkaa26bf122008-09-26 09:30:45 +02005159 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005160 return 1;
5161}
5162
Avi Kivity851ba692009-08-24 11:10:17 +03005163static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02005164{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03005165 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02005166}
5167
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005168static int handle_invd(struct kvm_vcpu *vcpu)
5169{
Tom Lendacky28e2b2f2020-09-24 13:41:58 -05005170 /* Treat an INVD instruction as a NOP and just skip it. */
5171 return kvm_skip_emulated_instruction(vcpu);
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005172}
5173
Avi Kivity851ba692009-08-24 11:10:17 +03005174static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03005175{
Sean Christopherson5addc232020-04-15 13:34:53 -07005176 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005177
5178 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005179 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005180}
5181
Avi Kivityfee84b02011-11-10 14:57:25 +02005182static int handle_rdpmc(struct kvm_vcpu *vcpu)
5183{
5184 int err;
5185
5186 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005187 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02005188}
5189
Avi Kivity851ba692009-08-24 11:10:17 +03005190static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02005191{
Kyle Huey6affcbe2016-11-29 12:40:40 -08005192 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02005193}
5194
Dexuan Cui2acf9232010-06-10 11:27:12 +08005195static int handle_xsetbv(struct kvm_vcpu *vcpu)
5196{
5197 u64 new_bv = kvm_read_edx_eax(vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -07005198 u32 index = kvm_rcx_read(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08005199
5200 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08005201 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08005202 return 1;
5203}
5204
Avi Kivity851ba692009-08-24 11:10:17 +03005205static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005206{
Kevin Tian58fbbf22011-08-30 13:56:17 +03005207 if (likely(fasteoi)) {
Sean Christopherson5addc232020-04-15 13:34:53 -07005208 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03005209 int access_type, offset;
5210
5211 access_type = exit_qualification & APIC_ACCESS_TYPE;
5212 offset = exit_qualification & APIC_ACCESS_OFFSET;
5213 /*
5214 * Sane guest uses MOV to write EOI, with written value
5215 * not cared. So make a short-circuit here by avoiding
5216 * heavy instruction emulation.
5217 */
5218 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
5219 (offset == APIC_EOI)) {
5220 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005221 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03005222 }
5223 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005224 return kvm_emulate_instruction(vcpu, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08005225}
5226
Yang Zhangc7c9c562013-01-25 10:18:51 +08005227static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
5228{
Sean Christopherson5addc232020-04-15 13:34:53 -07005229 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005230 int vector = exit_qualification & 0xff;
5231
5232 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
5233 kvm_apic_set_eoi_accelerated(vcpu, vector);
5234 return 1;
5235}
5236
Yang Zhang83d4c282013-01-25 10:18:49 +08005237static int handle_apic_write(struct kvm_vcpu *vcpu)
5238{
Sean Christopherson5addc232020-04-15 13:34:53 -07005239 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Yang Zhang83d4c282013-01-25 10:18:49 +08005240 u32 offset = exit_qualification & 0xfff;
5241
5242 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
5243 kvm_apic_write_nodecode(vcpu, offset);
5244 return 1;
5245}
5246
Avi Kivity851ba692009-08-24 11:10:17 +03005247static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02005248{
Jan Kiszka60637aa2008-09-26 09:30:47 +02005249 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005250 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02005251 bool has_error_code = false;
5252 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02005253 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005254 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005255
5256 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005257 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005258 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02005259
Sean Christopherson5addc232020-04-15 13:34:53 -07005260 exit_qualification = vmx_get_exit_qual(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005261
5262 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005263 if (reason == TASK_SWITCH_GATE && idt_v) {
5264 switch (type) {
5265 case INTR_TYPE_NMI_INTR:
5266 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02005267 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005268 break;
5269 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005270 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005271 kvm_clear_interrupt_queue(vcpu);
5272 break;
5273 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02005274 if (vmx->idt_vectoring_info &
5275 VECTORING_INFO_DELIVER_CODE_MASK) {
5276 has_error_code = true;
5277 error_code =
5278 vmcs_read32(IDT_VECTORING_ERROR_CODE);
5279 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05005280 fallthrough;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005281 case INTR_TYPE_SOFT_EXCEPTION:
5282 kvm_clear_exception_queue(vcpu);
5283 break;
5284 default:
5285 break;
5286 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02005287 }
Izik Eidus37817f22008-03-24 23:14:53 +02005288 tss_selector = exit_qualification;
5289
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005290 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
5291 type != INTR_TYPE_EXT_INTR &&
5292 type != INTR_TYPE_NMI_INTR))
Sean Christopherson1957aa62019-08-27 14:40:39 -07005293 WARN_ON(!skip_emulated_instruction(vcpu));
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005294
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005295 /*
5296 * TODO: What about debug traps on tss switch?
5297 * Are we supposed to inject them and update dr6?
5298 */
Sean Christopherson10517782019-08-27 14:40:35 -07005299 return kvm_task_switch(vcpu, tss_selector,
5300 type == INTR_TYPE_SOFT_INTR ? idt_index : -1,
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005301 reason, has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02005302}
5303
Avi Kivity851ba692009-08-24 11:10:17 +03005304static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08005305{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005306 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08005307 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01005308 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08005309
Sean Christopherson5addc232020-04-15 13:34:53 -07005310 exit_qualification = vmx_get_exit_qual(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08005311
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005312 /*
5313 * EPT violation happened while executing iret from NMI,
5314 * "blocked by NMI" bit has to be set before next VM entry.
5315 * There are errata that may cause this bit to not be set:
5316 * AAK134, BY25.
5317 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005318 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005319 enable_vnmi &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005320 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005321 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
5322
Sheng Yang14394422008-04-28 12:24:45 +08005323 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005324 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005325
Junaid Shahid27959a42016-12-06 16:46:10 -08005326 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005327 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08005328 ? PFERR_USER_MASK : 0;
5329 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005330 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08005331 ? PFERR_WRITE_MASK : 0;
5332 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005333 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08005334 ? PFERR_FETCH_MASK : 0;
5335 /* ept page table entry is present? */
5336 error_code |= (exit_qualification &
5337 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
5338 EPT_VIOLATION_EXECUTABLE))
5339 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005340
Paolo Bonzinieebed242016-11-28 14:39:58 +01005341 error_code |= (exit_qualification & 0x100) != 0 ?
5342 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03005343
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005344 vcpu->arch.exit_qualification = exit_qualification;
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02005345
5346 /*
5347 * Check that the GPA doesn't exceed physical memory limits, as that is
5348 * a guest page fault. We have to emulate the instruction here, because
5349 * if the illegal address is that of a paging structure, then
5350 * EPT_VIOLATION_ACC_WRITE bit is set. Alternatively, if supported we
5351 * would also use advanced VM-exit information for EPT violations to
5352 * reconstruct the page fault error code.
5353 */
Paolo Bonzinic0623f52020-10-21 18:05:58 -04005354 if (unlikely(allow_smaller_maxphyaddr && kvm_vcpu_is_illegal_gpa(vcpu, gpa)))
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02005355 return kvm_emulate_instruction(vcpu, 0);
5356
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005357 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08005358}
5359
Avi Kivity851ba692009-08-24 11:10:17 +03005360static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005361{
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005362 gpa_t gpa;
5363
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005364 /*
5365 * A nested guest cannot optimize MMIO vmexits, because we have an
5366 * nGPA here instead of the required GPA.
5367 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005368 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005369 if (!is_guest_mode(vcpu) &&
5370 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08005371 trace_kvm_fast_mmio(gpa);
Sean Christopherson1957aa62019-08-27 14:40:39 -07005372 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03005373 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005374
Sean Christophersonc75d0edc2018-03-29 14:48:31 -07005375 return kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005376}
5377
Avi Kivity851ba692009-08-24 11:10:17 +03005378static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08005379{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005380 WARN_ON_ONCE(!enable_vnmi);
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08005381 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_NMI_WINDOW_EXITING);
Sheng Yangf08864b2008-05-15 18:23:25 +08005382 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03005383 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08005384
5385 return 1;
5386}
5387
Mohammed Gamal80ced182009-09-01 12:48:18 +02005388static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005389{
Avi Kivity8b3079a2009-01-05 12:10:54 +02005390 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity49e9d552010-09-19 14:34:08 +02005391 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03005392 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02005393
Sean Christopherson2183f562019-05-07 12:17:56 -07005394 intr_window_requested = exec_controls_get(vmx) &
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005395 CPU_BASED_INTR_WINDOW_EXITING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005396
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01005397 while (vmx->emulation_required && count-- != 0) {
Sean Christophersondb438592020-04-22 19:25:48 -07005398 if (intr_window_requested && !vmx_interrupt_blocked(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02005399 return handle_interrupt_window(&vmx->vcpu);
5400
Radim Krčmář72875d82017-04-26 22:32:19 +02005401 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03005402 return 1;
5403
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005404 if (!kvm_emulate_instruction(vcpu, 0))
Sean Christopherson8fff2712019-08-27 14:40:37 -07005405 return 0;
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005406
Sean Christophersonadd5ff72018-03-23 09:34:00 -07005407 if (vmx->emulation_required && !vmx->rmode.vm86_active &&
Sean Christopherson8fff2712019-08-27 14:40:37 -07005408 vcpu->arch.exception.pending) {
5409 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5410 vcpu->run->internal.suberror =
5411 KVM_INTERNAL_ERROR_EMULATION;
5412 vcpu->run->internal.ndata = 0;
5413 return 0;
5414 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005415
Gleb Natapov8d76c492013-05-08 18:38:44 +03005416 if (vcpu->arch.halt_request) {
5417 vcpu->arch.halt_request = 0;
Sean Christopherson8fff2712019-08-27 14:40:37 -07005418 return kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03005419 }
5420
Sean Christopherson8fff2712019-08-27 14:40:37 -07005421 /*
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02005422 * Note, return 1 and not 0, vcpu_run() will invoke
5423 * xfer_to_guest_mode() which will create a proper return
5424 * code.
Sean Christopherson8fff2712019-08-27 14:40:37 -07005425 */
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02005426 if (__xfer_to_guest_mode_work_pending())
Sean Christopherson8fff2712019-08-27 14:40:37 -07005427 return 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005428 }
5429
Sean Christopherson8fff2712019-08-27 14:40:37 -07005430 return 1;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005431}
5432
5433static void grow_ple_window(struct kvm_vcpu *vcpu)
5434{
5435 struct vcpu_vmx *vmx = to_vmx(vcpu);
Peter Xuc5c5d6f2019-09-06 10:17:21 +08005436 unsigned int old = vmx->ple_window;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005437
Babu Mogerc8e88712018-03-16 16:37:24 -04005438 vmx->ple_window = __grow_ple_window(old, ple_window,
5439 ple_window_grow,
5440 ple_window_max);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005441
Peter Xu4f75bcc2019-09-06 10:17:22 +08005442 if (vmx->ple_window != old) {
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005443 vmx->ple_window_dirty = true;
Peter Xu4f75bcc2019-09-06 10:17:22 +08005444 trace_kvm_ple_window_update(vcpu->vcpu_id,
5445 vmx->ple_window, old);
5446 }
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005447}
5448
5449static void shrink_ple_window(struct kvm_vcpu *vcpu)
5450{
5451 struct vcpu_vmx *vmx = to_vmx(vcpu);
Peter Xuc5c5d6f2019-09-06 10:17:21 +08005452 unsigned int old = vmx->ple_window;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005453
Babu Mogerc8e88712018-03-16 16:37:24 -04005454 vmx->ple_window = __shrink_ple_window(old, ple_window,
5455 ple_window_shrink,
5456 ple_window);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005457
Peter Xu4f75bcc2019-09-06 10:17:22 +08005458 if (vmx->ple_window != old) {
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005459 vmx->ple_window_dirty = true;
Peter Xu4f75bcc2019-09-06 10:17:22 +08005460 trace_kvm_ple_window_update(vcpu->vcpu_id,
5461 vmx->ple_window, old);
5462 }
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005463}
5464
Peng Haoe01bca22018-04-07 05:47:32 +08005465static void vmx_enable_tdp(void)
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005466{
5467 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
5468 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
5469 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
5470 0ull, VMX_EPT_EXECUTABLE_MASK,
5471 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005472 VMX_EPT_RWX_MASK, 0ull);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005473
5474 ept_set_mmio_spte_mask();
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005475}
5476
Avi Kivity6aa8b732006-12-10 02:21:36 -08005477/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005478 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
5479 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
5480 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03005481static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005482{
Wanpeng Lib31c1142018-03-12 04:53:04 -07005483 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005484 grow_ple_window(vcpu);
5485
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08005486 /*
5487 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
5488 * VM-execution control is ignored if CPL > 0. OTOH, KVM
5489 * never set PAUSE_EXITING and just set PLE if supported,
5490 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
5491 */
5492 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005493 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005494}
5495
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005496static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08005497{
Kyle Huey6affcbe2016-11-29 12:40:40 -08005498 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08005499}
5500
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005501static int handle_mwait(struct kvm_vcpu *vcpu)
5502{
5503 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
5504 return handle_nop(vcpu);
5505}
5506
Jim Mattson45ec3682017-08-23 16:32:04 -07005507static int handle_invalid_op(struct kvm_vcpu *vcpu)
5508{
5509 kvm_queue_exception(vcpu, UD_VECTOR);
5510 return 1;
5511}
5512
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005513static int handle_monitor_trap(struct kvm_vcpu *vcpu)
5514{
5515 return 1;
5516}
5517
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005518static int handle_monitor(struct kvm_vcpu *vcpu)
5519{
5520 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
5521 return handle_nop(vcpu);
5522}
5523
Junaid Shahideb4b2482018-06-27 14:59:14 -07005524static int handle_invpcid(struct kvm_vcpu *vcpu)
5525{
5526 u32 vmx_instruction_info;
5527 unsigned long type;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005528 gva_t gva;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005529 struct {
5530 u64 pcid;
5531 u64 gla;
5532 } operand;
5533
5534 if (!guest_cpuid_has(vcpu, X86_FEATURE_INVPCID)) {
5535 kvm_queue_exception(vcpu, UD_VECTOR);
5536 return 1;
5537 }
5538
5539 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5540 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
5541
5542 if (type > 3) {
5543 kvm_inject_gp(vcpu, 0);
5544 return 1;
5545 }
5546
5547 /* According to the Intel instruction reference, the memory operand
5548 * is read even if it isn't needed (e.g., for type==all)
5549 */
Sean Christopherson5addc232020-04-15 13:34:53 -07005550 if (get_vmx_mem_address(vcpu, vmx_get_exit_qual(vcpu),
Eugene Korenevskyfdb28612019-06-06 00:19:16 +03005551 vmx_instruction_info, false,
5552 sizeof(operand), &gva))
Junaid Shahideb4b2482018-06-27 14:59:14 -07005553 return 1;
5554
Babu Moger97150922020-09-11 14:29:12 -05005555 return kvm_handle_invpcid(vcpu, type, gva);
Junaid Shahideb4b2482018-06-27 14:59:14 -07005556}
5557
Kai Huang843e4332015-01-28 10:54:28 +08005558static int handle_pml_full(struct kvm_vcpu *vcpu)
5559{
5560 unsigned long exit_qualification;
5561
5562 trace_kvm_pml_full(vcpu->vcpu_id);
5563
Sean Christopherson5addc232020-04-15 13:34:53 -07005564 exit_qualification = vmx_get_exit_qual(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005565
5566 /*
5567 * PML buffer FULL happened while executing iret from NMI,
5568 * "blocked by NMI" bit has to be set before next VM entry.
5569 */
5570 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005571 enable_vnmi &&
Kai Huang843e4332015-01-28 10:54:28 +08005572 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
5573 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5574 GUEST_INTR_STATE_NMI);
5575
5576 /*
5577 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
5578 * here.., and there's no userspace involvement needed for PML.
5579 */
5580 return 1;
5581}
5582
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005583static fastpath_t handle_fastpath_preemption_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07005584{
Sean Christopherson804939e2019-05-07 12:18:05 -07005585 struct vcpu_vmx *vmx = to_vmx(vcpu);
5586
5587 if (!vmx->req_immediate_exit &&
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005588 !unlikely(vmx->loaded_vmcs->hv_timer_soft_disabled)) {
Sean Christophersond264ee02018-08-27 15:21:12 -07005589 kvm_lapic_expired_hv_timer(vcpu);
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005590 return EXIT_FASTPATH_REENTER_GUEST;
5591 }
Sean Christopherson804939e2019-05-07 12:18:05 -07005592
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005593 return EXIT_FASTPATH_NONE;
5594}
5595
5596static int handle_preemption_timer(struct kvm_vcpu *vcpu)
5597{
5598 handle_fastpath_preemption_timer(vcpu);
Yunhong Jiang64672c92016-06-13 14:19:59 -07005599 return 1;
5600}
5601
Sean Christophersone4027cf2018-12-03 13:53:12 -08005602/*
5603 * When nested=0, all VMX instruction VM Exits filter here. The handlers
5604 * are overwritten by nested_vmx_setup() when nested=1.
5605 */
5606static int handle_vmx_instruction(struct kvm_vcpu *vcpu)
5607{
5608 kvm_queue_exception(vcpu, UD_VECTOR);
5609 return 1;
5610}
5611
Sean Christopherson0b665d32018-08-14 09:33:34 -07005612static int handle_encls(struct kvm_vcpu *vcpu)
5613{
5614 /*
5615 * SGX virtualization is not yet supported. There is no software
5616 * enable bit for SGX, so we have to trap ENCLS and inject a #UD
5617 * to prevent the guest from executing ENCLS.
5618 */
5619 kvm_queue_exception(vcpu, UD_VECTOR);
5620 return 1;
5621}
5622
Nadav Har'El0140cae2011-05-25 23:06:28 +03005623/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005624 * The exit handlers return 1 if the exit was handled fully and guest execution
5625 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
5626 * to be done to userspace and return 0.
5627 */
Sean Christophersone4027cf2018-12-03 13:53:12 -08005628static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Sean Christopherson95b5a482019-04-19 22:50:59 -07005629 [EXIT_REASON_EXCEPTION_NMI] = handle_exception_nmi,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005630 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08005631 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08005632 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005633 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005634 [EXIT_REASON_CR_ACCESS] = handle_cr,
5635 [EXIT_REASON_DR_ACCESS] = handle_dr,
Andrea Arcangelif399e602019-11-04 17:59:58 -05005636 [EXIT_REASON_CPUID] = kvm_emulate_cpuid,
5637 [EXIT_REASON_MSR_READ] = kvm_emulate_rdmsr,
5638 [EXIT_REASON_MSR_WRITE] = kvm_emulate_wrmsr,
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005639 [EXIT_REASON_INTERRUPT_WINDOW] = handle_interrupt_window,
Andrea Arcangelif399e602019-11-04 17:59:58 -05005640 [EXIT_REASON_HLT] = kvm_emulate_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005641 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03005642 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02005643 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02005644 [EXIT_REASON_VMCALL] = handle_vmcall,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005645 [EXIT_REASON_VMCLEAR] = handle_vmx_instruction,
5646 [EXIT_REASON_VMLAUNCH] = handle_vmx_instruction,
5647 [EXIT_REASON_VMPTRLD] = handle_vmx_instruction,
5648 [EXIT_REASON_VMPTRST] = handle_vmx_instruction,
5649 [EXIT_REASON_VMREAD] = handle_vmx_instruction,
5650 [EXIT_REASON_VMRESUME] = handle_vmx_instruction,
5651 [EXIT_REASON_VMWRITE] = handle_vmx_instruction,
5652 [EXIT_REASON_VMOFF] = handle_vmx_instruction,
5653 [EXIT_REASON_VMON] = handle_vmx_instruction,
Sheng Yangf78e0e22007-10-29 09:40:42 +08005654 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
5655 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08005656 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08005657 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02005658 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08005659 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02005660 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08005661 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Paolo Bonzini0367f202016-07-12 10:44:55 +02005662 [EXIT_REASON_GDTR_IDTR] = handle_desc,
5663 [EXIT_REASON_LDTR_TR] = handle_desc,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005664 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
5665 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005666 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005667 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005668 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005669 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005670 [EXIT_REASON_INVEPT] = handle_vmx_instruction,
5671 [EXIT_REASON_INVVPID] = handle_vmx_instruction,
Jim Mattson45ec3682017-08-23 16:32:04 -07005672 [EXIT_REASON_RDRAND] = handle_invalid_op,
Jim Mattson75f4fc82017-08-23 16:32:03 -07005673 [EXIT_REASON_RDSEED] = handle_invalid_op,
Kai Huang843e4332015-01-28 10:54:28 +08005674 [EXIT_REASON_PML_FULL] = handle_pml_full,
Junaid Shahideb4b2482018-06-27 14:59:14 -07005675 [EXIT_REASON_INVPCID] = handle_invpcid,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005676 [EXIT_REASON_VMFUNC] = handle_vmx_instruction,
Yunhong Jiang64672c92016-06-13 14:19:59 -07005677 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Sean Christopherson0b665d32018-08-14 09:33:34 -07005678 [EXIT_REASON_ENCLS] = handle_encls,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005679};
5680
5681static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04005682 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005683
Sean Christopherson235ba742020-09-23 13:13:46 -07005684static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2,
5685 u32 *intr_info, u32 *error_code)
Avi Kivity586f9602010-11-18 13:09:54 +02005686{
Sean Christopherson235ba742020-09-23 13:13:46 -07005687 struct vcpu_vmx *vmx = to_vmx(vcpu);
5688
Sean Christopherson5addc232020-04-15 13:34:53 -07005689 *info1 = vmx_get_exit_qual(vcpu);
Sean Christopherson235ba742020-09-23 13:13:46 -07005690 if (!(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
5691 *info2 = vmx->idt_vectoring_info;
5692 *intr_info = vmx_get_intr_info(vcpu);
5693 if (is_exception_with_error_code(*intr_info))
5694 *error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
5695 else
5696 *error_code = 0;
5697 } else {
5698 *info2 = 0;
5699 *intr_info = 0;
5700 *error_code = 0;
5701 }
Avi Kivity586f9602010-11-18 13:09:54 +02005702}
5703
Kai Huanga3eaa862015-11-04 13:46:05 +08005704static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08005705{
Kai Huanga3eaa862015-11-04 13:46:05 +08005706 if (vmx->pml_pg) {
5707 __free_page(vmx->pml_pg);
5708 vmx->pml_pg = NULL;
5709 }
Kai Huang843e4332015-01-28 10:54:28 +08005710}
5711
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005712static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08005713{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005714 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005715 u64 *pml_buf;
5716 u16 pml_idx;
5717
5718 pml_idx = vmcs_read16(GUEST_PML_INDEX);
5719
5720 /* Do nothing if PML buffer is empty */
5721 if (pml_idx == (PML_ENTITY_NUM - 1))
5722 return;
5723
5724 /* PML index always points to next available PML buffer entity */
5725 if (pml_idx >= PML_ENTITY_NUM)
5726 pml_idx = 0;
5727 else
5728 pml_idx++;
5729
5730 pml_buf = page_address(vmx->pml_pg);
5731 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
5732 u64 gpa;
5733
5734 gpa = pml_buf[pml_idx];
5735 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005736 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08005737 }
5738
5739 /* reset PML index */
5740 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5741}
5742
5743/*
5744 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
5745 * Called before reporting dirty_bitmap to userspace.
5746 */
5747static void kvm_flush_pml_buffers(struct kvm *kvm)
5748{
5749 int i;
5750 struct kvm_vcpu *vcpu;
5751 /*
5752 * We only need to kick vcpu out of guest mode here, as PML buffer
5753 * is flushed at beginning of all VMEXITs, and it's obvious that only
5754 * vcpus running in guest are possible to have unflushed GPAs in PML
5755 * buffer.
5756 */
5757 kvm_for_each_vcpu(i, vcpu, kvm)
5758 kvm_vcpu_kick(vcpu);
5759}
5760
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005761static void vmx_dump_sel(char *name, uint32_t sel)
5762{
5763 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05005764 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005765 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
5766 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
5767 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
5768}
5769
5770static void vmx_dump_dtsel(char *name, uint32_t limit)
5771{
5772 pr_err("%s limit=0x%08x, base=0x%016lx\n",
5773 name, vmcs_read32(limit),
5774 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
5775}
5776
Paolo Bonzini69090812019-04-15 15:16:17 +02005777void dump_vmcs(void)
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005778{
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005779 u32 vmentry_ctl, vmexit_ctl;
5780 u32 cpu_based_exec_ctrl, pin_based_exec_ctrl, secondary_exec_control;
5781 unsigned long cr4;
5782 u64 efer;
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005783
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005784 if (!dump_invalid_vmcs) {
5785 pr_warn_ratelimited("set kvm_intel.dump_invalid_vmcs=1 to dump internal KVM state.\n");
5786 return;
5787 }
5788
5789 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
5790 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
5791 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5792 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
5793 cr4 = vmcs_readl(GUEST_CR4);
5794 efer = vmcs_read64(GUEST_IA32_EFER);
5795 secondary_exec_control = 0;
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005796 if (cpu_has_secondary_exec_ctrls())
5797 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
5798
5799 pr_err("*** Guest State ***\n");
5800 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5801 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
5802 vmcs_readl(CR0_GUEST_HOST_MASK));
5803 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5804 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
5805 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
5806 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
5807 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
5808 {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005809 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
5810 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
5811 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
5812 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005813 }
5814 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
5815 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
5816 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
5817 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
5818 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5819 vmcs_readl(GUEST_SYSENTER_ESP),
5820 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
5821 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
5822 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
5823 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
5824 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
5825 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
5826 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
5827 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
5828 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
5829 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
5830 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
5831 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
5832 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005833 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
5834 efer, vmcs_read64(GUEST_IA32_PAT));
5835 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
5836 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005837 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005838 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005839 vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005840 pr_err("PerfGlobCtl = 0x%016llx\n",
5841 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005842 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005843 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005844 pr_err("Interruptibility = %08x ActivityState = %08x\n",
5845 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
5846 vmcs_read32(GUEST_ACTIVITY_STATE));
5847 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
5848 pr_err("InterruptStatus = %04x\n",
5849 vmcs_read16(GUEST_INTR_STATUS));
5850
5851 pr_err("*** Host State ***\n");
5852 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
5853 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
5854 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
5855 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
5856 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
5857 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
5858 vmcs_read16(HOST_TR_SELECTOR));
5859 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
5860 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
5861 vmcs_readl(HOST_TR_BASE));
5862 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
5863 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
5864 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
5865 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
5866 vmcs_readl(HOST_CR4));
5867 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5868 vmcs_readl(HOST_IA32_SYSENTER_ESP),
5869 vmcs_read32(HOST_IA32_SYSENTER_CS),
5870 vmcs_readl(HOST_IA32_SYSENTER_EIP));
5871 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005872 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
5873 vmcs_read64(HOST_IA32_EFER),
5874 vmcs_read64(HOST_IA32_PAT));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005875 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005876 vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005877 pr_err("PerfGlobCtl = 0x%016llx\n",
5878 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005879
5880 pr_err("*** Control State ***\n");
5881 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
5882 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
5883 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
5884 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
5885 vmcs_read32(EXCEPTION_BITMAP),
5886 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
5887 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
5888 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
5889 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
5890 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
5891 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
5892 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
5893 vmcs_read32(VM_EXIT_INTR_INFO),
5894 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
5895 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
5896 pr_err(" reason=%08x qualification=%016lx\n",
5897 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
5898 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
5899 vmcs_read32(IDT_VECTORING_INFO_FIELD),
5900 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005901 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08005902 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005903 pr_err("TSC Multiplier = 0x%016llx\n",
5904 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005905 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW) {
5906 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
5907 u16 status = vmcs_read16(GUEST_INTR_STATUS);
5908 pr_err("SVI|RVI = %02x|%02x ", status >> 8, status & 0xff);
5909 }
Dan Carpenterd6a85c32019-04-24 13:15:08 +03005910 pr_cont("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005911 if (secondary_exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
5912 pr_err("APIC-access addr = 0x%016llx ", vmcs_read64(APIC_ACCESS_ADDR));
Dan Carpenterd6a85c32019-04-24 13:15:08 +03005913 pr_cont("virt-APIC addr = 0x%016llx\n", vmcs_read64(VIRTUAL_APIC_PAGE_ADDR));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005914 }
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005915 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
5916 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
5917 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005918 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005919 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
5920 pr_err("PLE Gap=%08x Window=%08x\n",
5921 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
5922 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
5923 pr_err("Virtual processor ID = 0x%04x\n",
5924 vmcs_read16(VIRTUAL_PROCESSOR_ID));
5925}
5926
Avi Kivity6aa8b732006-12-10 02:21:36 -08005927/*
5928 * The guest has exited. See if we can fix it or if we need userspace
5929 * assistance.
5930 */
Wanpeng Li404d5d72020-04-28 14:23:25 +08005931static int vmx_handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005932{
Avi Kivity29bd8a72007-09-10 17:27:03 +03005933 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005934 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02005935 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005936
Kai Huang843e4332015-01-28 10:54:28 +08005937 /*
5938 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
5939 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
5940 * querying dirty_bitmap, we only need to kick all vcpus out of guest
5941 * mode as if vcpus is in root mode, the PML buffer must has been
5942 * flushed already.
5943 */
5944 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005945 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005946
Sean Christophersondb438592020-04-22 19:25:48 -07005947 /*
5948 * We should never reach this point with a pending nested VM-Enter, and
5949 * more specifically emulation of L2 due to invalid guest state (see
5950 * below) should never happen as that means we incorrectly allowed a
5951 * nested VM-Enter with an invalid vmcs12.
5952 */
5953 WARN_ON_ONCE(vmx->nested.nested_run_pending);
5954
Mohammed Gamal80ced182009-09-01 12:48:18 +02005955 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02005956 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02005957 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005958
Paolo Bonzini96b100c2020-03-17 18:32:50 +01005959 if (is_guest_mode(vcpu)) {
5960 /*
5961 * The host physical addresses of some pages of guest memory
5962 * are loaded into the vmcs02 (e.g. vmcs12's Virtual APIC
5963 * Page). The CPU may write to these pages via their host
5964 * physical address while L2 is running, bypassing any
5965 * address-translation-based dirty tracking (e.g. EPT write
5966 * protection).
5967 *
5968 * Mark them dirty on every exit from L2 to prevent them from
5969 * getting out of sync with dirty tracking.
5970 */
5971 nested_mark_vmcs12_pages_dirty(vcpu);
5972
Sean Christophersonf47baae2020-04-15 10:55:16 -07005973 if (nested_vmx_reflect_vmexit(vcpu))
Sean Christopherson789afc52020-04-15 10:55:10 -07005974 return 1;
Paolo Bonzini96b100c2020-03-17 18:32:50 +01005975 }
Nadav Har'El644d7112011-05-25 23:12:35 +03005976
Mohammed Gamal51207022010-05-31 22:40:54 +03005977 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005978 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03005979 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5980 vcpu->run->fail_entry.hardware_entry_failure_reason
5981 = exit_reason;
Jim Mattson8a14fe42020-06-03 16:56:22 -07005982 vcpu->run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Mohammed Gamal51207022010-05-31 22:40:54 +03005983 return 0;
5984 }
5985
Avi Kivity29bd8a72007-09-10 17:27:03 +03005986 if (unlikely(vmx->fail)) {
Paolo Bonzini3b20e032019-07-19 18:15:08 +02005987 dump_vmcs();
Avi Kivity851ba692009-08-24 11:10:17 +03005988 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5989 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03005990 = vmcs_read32(VM_INSTRUCTION_ERROR);
Jim Mattson8a14fe42020-06-03 16:56:22 -07005991 vcpu->run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005992 return 0;
5993 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005994
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005995 /*
5996 * Note:
5997 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
5998 * delivery event since it indicates guest is accessing MMIO.
5999 * The vm-exit can be triggered again after return to guest that
6000 * will cause infinite loop.
6001 */
Mike Dayd77c26f2007-10-08 09:02:08 -04006002 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08006003 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02006004 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +00006005 exit_reason != EXIT_REASON_PML_FULL &&
Wanpeng Li99b82a12020-08-19 16:55:27 +08006006 exit_reason != EXIT_REASON_APIC_ACCESS &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08006007 exit_reason != EXIT_REASON_TASK_SWITCH)) {
6008 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6009 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02006010 vcpu->run->internal.ndata = 3;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08006011 vcpu->run->internal.data[0] = vectoring_info;
6012 vcpu->run->internal.data[1] = exit_reason;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02006013 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
6014 if (exit_reason == EXIT_REASON_EPT_MISCONFIG) {
6015 vcpu->run->internal.ndata++;
6016 vcpu->run->internal.data[3] =
6017 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
6018 }
Jim Mattson1aa561b2020-06-03 16:56:21 -07006019 vcpu->run->internal.data[vcpu->run->internal.ndata++] =
Jim Mattson8a14fe42020-06-03 16:56:22 -07006020 vcpu->arch.last_vmentry_cpu;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08006021 return 0;
6022 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006023
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006024 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006025 vmx->loaded_vmcs->soft_vnmi_blocked)) {
Sean Christophersondb438592020-04-22 19:25:48 -07006026 if (!vmx_interrupt_blocked(vcpu)) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006027 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
6028 } else if (vmx->loaded_vmcs->vnmi_blocked_time > 1000000000LL &&
6029 vcpu->arch.nmi_pending) {
6030 /*
6031 * This CPU don't support us in finding the end of an
6032 * NMI-blocked window if the guest runs with IRQs
6033 * disabled. So we pull the trigger after 1 s of
6034 * futile waiting, but inform the user about this.
6035 */
6036 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
6037 "state on VCPU %d after 1 s timeout\n",
6038 __func__, vcpu->vcpu_id);
6039 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
6040 }
6041 }
6042
Wanpeng Li404d5d72020-04-28 14:23:25 +08006043 if (exit_fastpath != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08006044 return 1;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006045
6046 if (exit_reason >= kvm_vmx_max_exit_handlers)
6047 goto unexpected_vmexit;
6048#ifdef CONFIG_RETPOLINE
6049 if (exit_reason == EXIT_REASON_MSR_WRITE)
6050 return kvm_emulate_wrmsr(vcpu);
6051 else if (exit_reason == EXIT_REASON_PREEMPTION_TIMER)
6052 return handle_preemption_timer(vcpu);
6053 else if (exit_reason == EXIT_REASON_INTERRUPT_WINDOW)
6054 return handle_interrupt_window(vcpu);
6055 else if (exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT)
6056 return handle_external_interrupt(vcpu);
6057 else if (exit_reason == EXIT_REASON_HLT)
6058 return kvm_emulate_halt(vcpu);
6059 else if (exit_reason == EXIT_REASON_EPT_MISCONFIG)
6060 return handle_ept_misconfig(vcpu);
6061#endif
6062
6063 exit_reason = array_index_nospec(exit_reason,
6064 kvm_vmx_max_exit_handlers);
6065 if (!kvm_vmx_exit_handlers[exit_reason])
6066 goto unexpected_vmexit;
6067
6068 return kvm_vmx_exit_handlers[exit_reason](vcpu);
6069
6070unexpected_vmexit:
6071 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n", exit_reason);
6072 dump_vmcs();
6073 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6074 vcpu->run->internal.suberror =
6075 KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
Jim Mattson1aa561b2020-06-03 16:56:21 -07006076 vcpu->run->internal.ndata = 2;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006077 vcpu->run->internal.data[0] = exit_reason;
Jim Mattson8a14fe42020-06-03 16:56:22 -07006078 vcpu->run->internal.data[1] = vcpu->arch.last_vmentry_cpu;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006079 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006080}
6081
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006082/*
6083 * Software based L1D cache flush which is used when microcode providing
6084 * the cache control MSR is not loaded.
6085 *
6086 * The L1D cache is 32 KiB on Nehalem and later microarchitectures, but to
6087 * flush it is required to read in 64 KiB because the replacement algorithm
6088 * is not exactly LRU. This could be sized at runtime via topology
6089 * information but as all relevant affected CPUs have 32KiB L1D cache size
6090 * there is no point in doing so.
6091 */
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006092static noinstr void vmx_l1d_flush(struct kvm_vcpu *vcpu)
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006093{
6094 int size = PAGE_SIZE << L1D_CACHE_ORDER;
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006095
6096 /*
Thomas Gleixner2f055942018-07-13 16:23:17 +02006097 * This code is only executed when the the flush mode is 'cond' or
6098 * 'always'
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006099 */
Nicolai Stange427362a2018-07-21 22:25:00 +02006100 if (static_branch_likely(&vmx_l1d_flush_cond)) {
Nicolai Stange45b575c2018-07-27 13:22:16 +02006101 bool flush_l1d;
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02006102
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006103 /*
Nicolai Stange45b575c2018-07-27 13:22:16 +02006104 * Clear the per-vcpu flush bit, it gets set again
6105 * either from vcpu_run() or from one of the unsafe
6106 * VMEXIT handlers.
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006107 */
Nicolai Stange45b575c2018-07-27 13:22:16 +02006108 flush_l1d = vcpu->arch.l1tf_flush_l1d;
Thomas Gleixner4c6523e2018-07-13 16:23:20 +02006109 vcpu->arch.l1tf_flush_l1d = false;
Nicolai Stange45b575c2018-07-27 13:22:16 +02006110
6111 /*
6112 * Clear the per-cpu flush bit, it gets set again from
6113 * the interrupt handlers.
6114 */
6115 flush_l1d |= kvm_get_cpu_l1tf_flush_l1d();
6116 kvm_clear_cpu_l1tf_flush_l1d();
6117
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02006118 if (!flush_l1d)
6119 return;
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006120 }
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006121
6122 vcpu->stat.l1d_flush++;
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006123
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02006124 if (static_cpu_has(X86_FEATURE_FLUSH_L1D)) {
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006125 native_wrmsrl(MSR_IA32_FLUSH_CMD, L1D_FLUSH);
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02006126 return;
6127 }
6128
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006129 asm volatile(
6130 /* First ensure the pages are in the TLB */
6131 "xorl %%eax, %%eax\n"
6132 ".Lpopulate_tlb:\n\t"
Nicolai Stange288d1522018-07-18 19:07:38 +02006133 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006134 "addl $4096, %%eax\n\t"
6135 "cmpl %%eax, %[size]\n\t"
6136 "jne .Lpopulate_tlb\n\t"
6137 "xorl %%eax, %%eax\n\t"
6138 "cpuid\n\t"
6139 /* Now fill the cache */
6140 "xorl %%eax, %%eax\n"
6141 ".Lfill_cache:\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02006142 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006143 "addl $64, %%eax\n\t"
6144 "cmpl %%eax, %[size]\n\t"
6145 "jne .Lfill_cache\n\t"
6146 "lfence\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02006147 :: [flush_pages] "r" (vmx_l1d_flush_pages),
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006148 [size] "r" (size)
6149 : "eax", "ebx", "ecx", "edx");
6150}
6151
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006152static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006153{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006154 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Liran Alon132f4f72019-11-11 14:30:54 +02006155 int tpr_threshold;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006156
6157 if (is_guest_mode(vcpu) &&
6158 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
6159 return;
6160
Liran Alon132f4f72019-11-11 14:30:54 +02006161 tpr_threshold = (irr == -1 || tpr < irr) ? 0 : irr;
Liran Alon02d496cf2019-11-11 14:30:55 +02006162 if (is_guest_mode(vcpu))
6163 to_vmx(vcpu)->nested.l1_tpr_threshold = tpr_threshold;
6164 else
6165 vmcs_write32(TPR_THRESHOLD, tpr_threshold);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006166}
6167
Sean Christopherson97b7ead2018-12-03 13:53:16 -08006168void vmx_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08006169{
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006170 struct vcpu_vmx *vmx = to_vmx(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08006171 u32 sec_exec_control;
6172
Jim Mattson8d860bb2018-05-09 16:56:05 -04006173 if (!lapic_in_kernel(vcpu))
6174 return;
6175
Sean Christophersonfd6b6d92018-10-01 14:25:34 -07006176 if (!flexpriority_enabled &&
6177 !cpu_has_vmx_virtualize_x2apic_mode())
6178 return;
6179
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02006180 /* Postpone execution until vmcs01 is the current VMCS. */
6181 if (is_guest_mode(vcpu)) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006182 vmx->nested.change_vmcs01_virtual_apic_mode = true;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02006183 return;
6184 }
6185
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006186 sec_exec_control = secondary_exec_controls_get(vmx);
Jim Mattson8d860bb2018-05-09 16:56:05 -04006187 sec_exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
6188 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
Yang Zhang8d146952013-01-25 10:18:50 +08006189
Jim Mattson8d860bb2018-05-09 16:56:05 -04006190 switch (kvm_get_apic_mode(vcpu)) {
6191 case LAPIC_MODE_INVALID:
6192 WARN_ONCE(true, "Invalid local APIC state");
6193 case LAPIC_MODE_DISABLED:
6194 break;
6195 case LAPIC_MODE_XAPIC:
6196 if (flexpriority_enabled) {
6197 sec_exec_control |=
6198 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sean Christopherson4de1f9d2020-03-20 14:28:25 -07006199 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
6200
6201 /*
6202 * Flush the TLB, reloading the APIC access page will
6203 * only do so if its physical address has changed, but
6204 * the guest may have inserted a non-APIC mapping into
6205 * the TLB while the APIC access page was disabled.
6206 */
6207 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
Jim Mattson8d860bb2018-05-09 16:56:05 -04006208 }
6209 break;
6210 case LAPIC_MODE_X2APIC:
6211 if (cpu_has_vmx_virtualize_x2apic_mode())
6212 sec_exec_control |=
6213 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
6214 break;
Yang Zhang8d146952013-01-25 10:18:50 +08006215 }
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006216 secondary_exec_controls_set(vmx, sec_exec_control);
Yang Zhang8d146952013-01-25 10:18:50 +08006217
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006218 vmx_update_msr_bitmap(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08006219}
6220
Sean Christophersona4148b72020-03-20 14:28:24 -07006221static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu)
Tang Chen38b99172014-09-24 15:57:54 +08006222{
Sean Christophersona4148b72020-03-20 14:28:24 -07006223 struct page *page;
6224
Sean Christopherson1196cb92020-03-20 14:28:23 -07006225 /* Defer reload until vmcs01 is the current VMCS. */
6226 if (is_guest_mode(vcpu)) {
6227 to_vmx(vcpu)->nested.reload_vmcs01_apic_access_page = true;
6228 return;
Jim Mattsonfb6c8192017-03-16 13:53:59 -07006229 }
Sean Christopherson1196cb92020-03-20 14:28:23 -07006230
Sean Christopherson4de1f9d2020-03-20 14:28:25 -07006231 if (!(secondary_exec_controls_get(to_vmx(vcpu)) &
6232 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
6233 return;
6234
Sean Christophersona4148b72020-03-20 14:28:24 -07006235 page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
6236 if (is_error_page(page))
6237 return;
6238
6239 vmcs_write64(APIC_ACCESS_ADDR, page_to_phys(page));
Sean Christopherson1196cb92020-03-20 14:28:23 -07006240 vmx_flush_tlb_current(vcpu);
Sean Christophersona4148b72020-03-20 14:28:24 -07006241
6242 /*
6243 * Do not pin apic access page in memory, the MMU notifier
6244 * will call us again if it is migrated or swapped out.
6245 */
6246 put_page(page);
Tang Chen38b99172014-09-24 15:57:54 +08006247}
6248
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006249static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006250{
6251 u16 status;
6252 u8 old;
6253
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006254 if (max_isr == -1)
6255 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006256
6257 status = vmcs_read16(GUEST_INTR_STATUS);
6258 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006259 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08006260 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006261 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006262 vmcs_write16(GUEST_INTR_STATUS, status);
6263 }
6264}
6265
6266static void vmx_set_rvi(int vector)
6267{
6268 u16 status;
6269 u8 old;
6270
Wei Wang4114c272014-11-05 10:53:43 +08006271 if (vector == -1)
6272 vector = 0;
6273
Yang Zhangc7c9c562013-01-25 10:18:51 +08006274 status = vmcs_read16(GUEST_INTR_STATUS);
6275 old = (u8)status & 0xff;
6276 if ((u8)vector != old) {
6277 status &= ~0xff;
6278 status |= (u8)vector;
6279 vmcs_write16(GUEST_INTR_STATUS, status);
6280 }
6281}
6282
6283static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
6284{
Liran Alon851c1a182017-12-24 18:12:56 +02006285 /*
6286 * When running L2, updating RVI is only relevant when
6287 * vmcs12 virtual-interrupt-delivery enabled.
6288 * However, it can be enabled only when L1 also
6289 * intercepts external-interrupts and in that case
6290 * we should not update vmcs02 RVI but instead intercept
6291 * interrupt. Therefore, do nothing when running L2.
6292 */
6293 if (!is_guest_mode(vcpu))
Wanpeng Li963fee12014-07-17 19:03:00 +08006294 vmx_set_rvi(max_irr);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006295}
6296
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006297static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006298{
6299 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006300 int max_irr;
Liran Alonf27a85c2017-12-24 18:12:55 +02006301 bool max_irr_updated;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006302
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006303 WARN_ON(!vcpu->arch.apicv_active);
6304 if (pi_test_on(&vmx->pi_desc)) {
6305 pi_clear_on(&vmx->pi_desc);
6306 /*
Liran Alond9ff2742019-11-11 14:25:25 +02006307 * IOMMU can write to PID.ON, so the barrier matters even on UP.
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006308 * But on x86 this is just a compiler barrier anyway.
6309 */
6310 smp_mb__after_atomic();
Liran Alonf27a85c2017-12-24 18:12:55 +02006311 max_irr_updated =
6312 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir, &max_irr);
6313
6314 /*
6315 * If we are running L2 and L1 has a new pending interrupt
6316 * which can be injected, we should re-evaluate
6317 * what should be done with this new L1 interrupt.
Liran Alon851c1a182017-12-24 18:12:56 +02006318 * If L1 intercepts external-interrupts, we should
6319 * exit from L2 to L1. Otherwise, interrupt should be
6320 * delivered directly to L2.
Liran Alonf27a85c2017-12-24 18:12:55 +02006321 */
Liran Alon851c1a182017-12-24 18:12:56 +02006322 if (is_guest_mode(vcpu) && max_irr_updated) {
6323 if (nested_exit_on_intr(vcpu))
6324 kvm_vcpu_exiting_guest_mode(vcpu);
6325 else
6326 kvm_make_request(KVM_REQ_EVENT, vcpu);
6327 }
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006328 } else {
6329 max_irr = kvm_lapic_find_highest_irr(vcpu);
6330 }
6331 vmx_hwapic_irr_update(vcpu, max_irr);
6332 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006333}
6334
Andrey Smetanin63086302015-11-10 15:36:32 +03006335static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006336{
Andrey Smetanind62caab2015-11-10 15:36:33 +03006337 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08006338 return;
6339
Yang Zhangc7c9c562013-01-25 10:18:51 +08006340 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
6341 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
6342 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
6343 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
6344}
6345
Paolo Bonzini967235d2016-12-19 14:03:45 +01006346static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
6347{
6348 struct vcpu_vmx *vmx = to_vmx(vcpu);
6349
6350 pi_clear_on(&vmx->pi_desc);
6351 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
6352}
6353
Sean Christopherson535f7ef2020-09-15 12:15:04 -07006354void vmx_do_interrupt_nmi_irqoff(unsigned long entry);
6355
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006356static void handle_interrupt_nmi_irqoff(struct kvm_vcpu *vcpu, u32 intr_info)
6357{
6358 unsigned int vector = intr_info & INTR_INFO_VECTOR_MASK;
6359 gate_desc *desc = (gate_desc *)host_idt_base + vector;
6360
6361 kvm_before_interrupt(vcpu);
6362 vmx_do_interrupt_nmi_irqoff(gate_offset(desc));
6363 kvm_after_interrupt(vcpu);
6364}
6365
Sean Christopherson95b5a482019-04-19 22:50:59 -07006366static void handle_exception_nmi_irqoff(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03006367{
Sean Christopherson87915852020-04-15 13:34:54 -07006368 u32 intr_info = vmx_get_intr_info(&vmx->vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08006369
Wanpeng Li1261bfa2017-07-13 18:30:40 -07006370 /* if exit due to PF check for async PF */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006371 if (is_page_fault(intr_info))
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02006372 vmx->vcpu.arch.apf.host_apf_flags = kvm_read_and_reset_apf_flags();
Andi Kleena0861c02009-06-08 17:37:09 +08006373 /* Handle machine checks before interrupts are enabled */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006374 else if (is_machine_check(intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08006375 kvm_machine_check();
Gleb Natapov20f65982009-05-11 13:35:55 +03006376 /* We need to handle NMIs before interrupts are enabled */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006377 else if (is_nmi(intr_info))
6378 handle_interrupt_nmi_irqoff(&vmx->vcpu, intr_info);
Avi Kivity51aa01d2010-07-20 14:31:20 +03006379}
Gleb Natapov20f65982009-05-11 13:35:55 +03006380
Sean Christopherson95b5a482019-04-19 22:50:59 -07006381static void handle_external_interrupt_irqoff(struct kvm_vcpu *vcpu)
Yang Zhanga547c6d2013-04-11 19:25:10 +08006382{
Sean Christopherson87915852020-04-15 13:34:54 -07006383 u32 intr_info = vmx_get_intr_info(vcpu);
Yang Zhanga547c6d2013-04-11 19:25:10 +08006384
Sean Christopherson49def502019-04-19 22:50:56 -07006385 if (WARN_ONCE(!is_external_intr(intr_info),
6386 "KVM: unexpected VM-Exit interrupt info: 0x%x", intr_info))
6387 return;
6388
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006389 handle_interrupt_nmi_irqoff(vcpu, intr_info);
Yang Zhanga547c6d2013-04-11 19:25:10 +08006390}
Sean Christopherson95b5a482019-04-19 22:50:59 -07006391
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006392static void vmx_handle_exit_irqoff(struct kvm_vcpu *vcpu)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006393{
6394 struct vcpu_vmx *vmx = to_vmx(vcpu);
6395
6396 if (vmx->exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT)
6397 handle_external_interrupt_irqoff(vcpu);
6398 else if (vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI)
6399 handle_exception_nmi_irqoff(vmx);
6400}
Yang Zhanga547c6d2013-04-11 19:25:10 +08006401
Sean Christophersoncb97c2d2020-02-18 15:40:11 -08006402static bool vmx_has_emulated_msr(u32 index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006403{
Tom Lendackybc226f02018-05-10 22:06:39 +02006404 switch (index) {
6405 case MSR_IA32_SMBASE:
6406 /*
6407 * We cannot do SMM unless we can run the guest in big
6408 * real mode.
6409 */
6410 return enable_unrestricted_guest || emulate_invalid_guest_state;
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02006411 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
6412 return nested;
Tom Lendackybc226f02018-05-10 22:06:39 +02006413 case MSR_AMD64_VIRT_SPEC_CTRL:
6414 /* This is AMD only. */
6415 return false;
6416 default:
6417 return true;
6418 }
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006419}
6420
Avi Kivity51aa01d2010-07-20 14:31:20 +03006421static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
6422{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02006423 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03006424 bool unblock_nmi;
6425 u8 vector;
6426 bool idtv_info_valid;
6427
6428 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03006429
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006430 if (enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006431 if (vmx->loaded_vmcs->nmi_known_unmasked)
6432 return;
Sean Christopherson87915852020-04-15 13:34:54 -07006433
6434 exit_intr_info = vmx_get_intr_info(&vmx->vcpu);
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006435 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
6436 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
6437 /*
6438 * SDM 3: 27.7.1.2 (September 2008)
6439 * Re-set bit "block by NMI" before VM entry if vmexit caused by
6440 * a guest IRET fault.
6441 * SDM 3: 23.2.2 (September 2008)
6442 * Bit 12 is undefined in any of the following cases:
6443 * If the VM exit sets the valid bit in the IDT-vectoring
6444 * information field.
6445 * If the VM exit is due to a double fault.
6446 */
6447 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
6448 vector != DF_VECTOR && !idtv_info_valid)
6449 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
6450 GUEST_INTR_STATE_NMI);
6451 else
6452 vmx->loaded_vmcs->nmi_known_unmasked =
6453 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
6454 & GUEST_INTR_STATE_NMI);
6455 } else if (unlikely(vmx->loaded_vmcs->soft_vnmi_blocked))
6456 vmx->loaded_vmcs->vnmi_blocked_time +=
6457 ktime_to_ns(ktime_sub(ktime_get(),
6458 vmx->loaded_vmcs->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03006459}
6460
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006461static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03006462 u32 idt_vectoring_info,
6463 int instr_len_field,
6464 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03006465{
Avi Kivity51aa01d2010-07-20 14:31:20 +03006466 u8 vector;
6467 int type;
6468 bool idtv_info_valid;
6469
6470 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03006471
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006472 vcpu->arch.nmi_injected = false;
6473 kvm_clear_exception_queue(vcpu);
6474 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006475
6476 if (!idtv_info_valid)
6477 return;
6478
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006479 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03006480
Avi Kivity668f6122008-07-02 09:28:55 +03006481 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
6482 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006483
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006484 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03006485 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006486 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03006487 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03006488 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03006489 * Clear bit "block by NMI" before VM entry if a NMI
6490 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03006491 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006492 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006493 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006494 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006495 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05006496 fallthrough;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006497 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03006498 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03006499 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03006500 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03006501 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03006502 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006503 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006504 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006505 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05006506 fallthrough;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006507 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006508 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006509 break;
6510 default:
6511 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03006512 }
Avi Kivitycf393f72008-07-01 16:20:21 +03006513}
6514
Avi Kivity83422e12010-07-20 14:43:23 +03006515static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
6516{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006517 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03006518 VM_EXIT_INSTRUCTION_LEN,
6519 IDT_VECTORING_ERROR_CODE);
6520}
6521
Avi Kivityb463a6f2010-07-20 15:06:17 +03006522static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
6523{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006524 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03006525 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
6526 VM_ENTRY_INSTRUCTION_LEN,
6527 VM_ENTRY_EXCEPTION_ERROR_CODE);
6528
6529 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
6530}
6531
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006532static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
6533{
6534 int i, nr_msrs;
6535 struct perf_guest_switch_msr *msrs;
6536
6537 msrs = perf_guest_get_msrs(&nr_msrs);
6538
6539 if (!msrs)
6540 return;
6541
6542 for (i = 0; i < nr_msrs; i++)
6543 if (msrs[i].host == msrs[i].guest)
6544 clear_atomic_switch_msr(vmx, msrs[i].msr);
6545 else
6546 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04006547 msrs[i].host, false);
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006548}
6549
Sean Christophersonf459a702018-08-27 15:21:11 -07006550static void vmx_update_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07006551{
6552 struct vcpu_vmx *vmx = to_vmx(vcpu);
6553 u64 tscl;
6554 u32 delta_tsc;
6555
Sean Christophersond264ee02018-08-27 15:21:12 -07006556 if (vmx->req_immediate_exit) {
Sean Christopherson804939e2019-05-07 12:18:05 -07006557 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, 0);
6558 vmx->loaded_vmcs->hv_timer_soft_disabled = false;
6559 } else if (vmx->hv_deadline_tsc != -1) {
Sean Christophersonf459a702018-08-27 15:21:11 -07006560 tscl = rdtsc();
6561 if (vmx->hv_deadline_tsc > tscl)
6562 /* set_hv_timer ensures the delta fits in 32-bits */
6563 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
6564 cpu_preemption_timer_multi);
6565 else
6566 delta_tsc = 0;
6567
Sean Christopherson804939e2019-05-07 12:18:05 -07006568 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
6569 vmx->loaded_vmcs->hv_timer_soft_disabled = false;
6570 } else if (!vmx->loaded_vmcs->hv_timer_soft_disabled) {
6571 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, -1);
6572 vmx->loaded_vmcs->hv_timer_soft_disabled = true;
Sean Christophersonf459a702018-08-27 15:21:11 -07006573 }
Yunhong Jiang64672c92016-06-13 14:19:59 -07006574}
6575
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006576void noinstr vmx_update_host_rsp(struct vcpu_vmx *vmx, unsigned long host_rsp)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006577{
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006578 if (unlikely(host_rsp != vmx->loaded_vmcs->host_state.rsp)) {
6579 vmx->loaded_vmcs->host_state.rsp = host_rsp;
6580 vmcs_writel(HOST_RSP, host_rsp);
6581 }
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006582}
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006583
Wanpeng Li404d5d72020-04-28 14:23:25 +08006584static fastpath_t vmx_exit_handlers_fastpath(struct kvm_vcpu *vcpu)
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006585{
6586 switch (to_vmx(vcpu)->exit_reason) {
6587 case EXIT_REASON_MSR_WRITE:
6588 return handle_fastpath_set_msr_irqoff(vcpu);
Wanpeng Li26efe2f2020-05-06 11:44:01 -04006589 case EXIT_REASON_PREEMPTION_TIMER:
6590 return handle_fastpath_preemption_timer(vcpu);
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006591 default:
6592 return EXIT_FASTPATH_NONE;
6593 }
6594}
6595
Sean Christophersonfc2ba5a2019-01-25 07:41:19 -08006596bool __vmx_vcpu_run(struct vcpu_vmx *vmx, unsigned long *regs, bool launched);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006597
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006598static noinstr void vmx_vcpu_enter_exit(struct kvm_vcpu *vcpu,
6599 struct vcpu_vmx *vmx)
6600{
6601 /*
6602 * VMENTER enables interrupts (host state), but the kernel state is
6603 * interrupts disabled when this is invoked. Also tell RCU about
6604 * it. This is the same logic as for exit_to_user_mode().
6605 *
6606 * This ensures that e.g. latency analysis on the host observes
6607 * guest mode as interrupt enabled.
6608 *
6609 * guest_enter_irqoff() informs context tracking about the
6610 * transition to guest mode and if enabled adjusts RCU state
6611 * accordingly.
6612 */
6613 instrumentation_begin();
6614 trace_hardirqs_on_prepare();
6615 lockdep_hardirqs_on_prepare(CALLER_ADDR0);
6616 instrumentation_end();
6617
6618 guest_enter_irqoff();
6619 lockdep_hardirqs_on(CALLER_ADDR0);
6620
6621 /* L1D Flush includes CPU buffer clear to mitigate MDS */
6622 if (static_branch_unlikely(&vmx_l1d_should_flush))
6623 vmx_l1d_flush(vcpu);
6624 else if (static_branch_unlikely(&mds_user_clear))
6625 mds_clear_cpu_buffers();
6626
Thomas Gleixner2245d392020-07-08 21:52:00 +02006627 if (vcpu->arch.cr2 != native_read_cr2())
6628 native_write_cr2(vcpu->arch.cr2);
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006629
6630 vmx->fail = __vmx_vcpu_run(vmx, (unsigned long *)&vcpu->arch.regs,
6631 vmx->loaded_vmcs->launched);
6632
Thomas Gleixner2245d392020-07-08 21:52:00 +02006633 vcpu->arch.cr2 = native_read_cr2();
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006634
6635 /*
6636 * VMEXIT disables interrupts (host state), but tracing and lockdep
6637 * have them in state 'on' as recorded before entering guest mode.
6638 * Same as enter_from_user_mode().
6639 *
6640 * guest_exit_irqoff() restores host context and reinstates RCU if
6641 * enabled and required.
6642 *
6643 * This needs to be done before the below as native_read_msr()
6644 * contains a tracepoint and x86_spec_ctrl_restore_host() calls
6645 * into world and some more.
6646 */
6647 lockdep_hardirqs_off(CALLER_ADDR0);
6648 guest_exit_irqoff();
6649
6650 instrumentation_begin();
6651 trace_hardirqs_off_finish();
6652 instrumentation_end();
6653}
6654
Wanpeng Li404d5d72020-04-28 14:23:25 +08006655static fastpath_t vmx_vcpu_run(struct kvm_vcpu *vcpu)
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006656{
Wanpeng Li404d5d72020-04-28 14:23:25 +08006657 fastpath_t exit_fastpath;
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006658 struct vcpu_vmx *vmx = to_vmx(vcpu);
6659 unsigned long cr3, cr4;
6660
Wanpeng Li404d5d72020-04-28 14:23:25 +08006661reenter_guest:
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006662 /* Record the guest's net vcpu time for enforced NMI injections. */
6663 if (unlikely(!enable_vnmi &&
6664 vmx->loaded_vmcs->soft_vnmi_blocked))
6665 vmx->loaded_vmcs->entry_time = ktime_get();
6666
6667 /* Don't enter VMX if guest state is invalid, let the exit handler
6668 start emulation until we arrive back to a valid state */
6669 if (vmx->emulation_required)
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006670 return EXIT_FASTPATH_NONE;
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006671
6672 if (vmx->ple_window_dirty) {
6673 vmx->ple_window_dirty = false;
6674 vmcs_write32(PLE_WINDOW, vmx->ple_window);
6675 }
6676
wanpeng lic9dfd3f2020-02-17 18:37:43 +08006677 /*
6678 * We did this in prepare_switch_to_guest, because it needs to
6679 * be within srcu_read_lock.
6680 */
6681 WARN_ON_ONCE(vmx->nested.need_vmcs12_to_shadow_sync);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006682
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07006683 if (kvm_register_is_dirty(vcpu, VCPU_REGS_RSP))
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006684 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07006685 if (kvm_register_is_dirty(vcpu, VCPU_REGS_RIP))
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006686 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
6687
6688 cr3 = __get_current_cr3_fast();
6689 if (unlikely(cr3 != vmx->loaded_vmcs->host_state.cr3)) {
6690 vmcs_writel(HOST_CR3, cr3);
6691 vmx->loaded_vmcs->host_state.cr3 = cr3;
6692 }
6693
6694 cr4 = cr4_read_shadow();
6695 if (unlikely(cr4 != vmx->loaded_vmcs->host_state.cr4)) {
6696 vmcs_writel(HOST_CR4, cr4);
6697 vmx->loaded_vmcs->host_state.cr4 = cr4;
6698 }
6699
6700 /* When single-stepping over STI and MOV SS, we must clear the
6701 * corresponding interruptibility bits in the guest state. Otherwise
6702 * vmentry fails as it then expects bit 14 (BS) in pending debug
6703 * exceptions being set, but that's not correct for the guest debugging
6704 * case. */
6705 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
6706 vmx_set_interrupt_shadow(vcpu, 0);
6707
Aaron Lewis139a12c2019-10-21 16:30:25 -07006708 kvm_load_guest_xsave_state(vcpu);
WANG Chao1811d972019-04-12 15:55:39 +08006709
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006710 pt_guest_enter(vmx);
6711
Vitaly Kuznetsov49097762020-06-19 11:40:46 +02006712 atomic_switch_perf_msrs(vmx);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006713
Sean Christopherson804939e2019-05-07 12:18:05 -07006714 if (enable_preemption_timer)
6715 vmx_update_hv_timer(vcpu);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006716
Wanpeng Li010fd372020-09-10 17:50:41 +08006717 kvm_wait_lapic_expire(vcpu);
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08006718
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006719 /*
6720 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
6721 * it's non-zero. Since vmentry is serialising on affected CPUs, there
6722 * is no need to worry about the conditional branch over the wrmsr
6723 * being speculatively taken.
6724 */
6725 x86_spec_ctrl_set_guest(vmx->spec_ctrl, 0);
6726
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006727 /* The actual VMENTER/EXIT is in the .noinstr.text section. */
6728 vmx_vcpu_enter_exit(vcpu, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006729
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006730 /*
6731 * We do not use IBRS in the kernel. If this vCPU has used the
6732 * SPEC_CTRL MSR it may have left it on; save the value and
6733 * turn it off. This is much more efficient than blindly adding
6734 * it to the atomic save/restore list. Especially as the former
6735 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
6736 *
6737 * For non-nested case:
6738 * If the L01 MSR bitmap does not intercept the MSR, then we need to
6739 * save it.
6740 *
6741 * For nested case:
6742 * If the L02 MSR bitmap does not intercept the MSR, then we need to
6743 * save it.
6744 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01006745 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01006746 vmx->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006747
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02006748 x86_spec_ctrl_restore_host(vmx->spec_ctrl, 0);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006749
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01006750 /* All fields are clean at this point */
6751 if (static_branch_unlikely(&enable_evmcs))
6752 current_evmcs->hv_clean_fields |=
6753 HV_VMX_ENLIGHTENED_CLEAN_FIELD_ALL;
6754
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08006755 if (static_branch_unlikely(&enable_evmcs))
6756 current_evmcs->hv_vp_id = vcpu->arch.hyperv.vp_index;
6757
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006758 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
Wanpeng Li74c55932017-11-29 01:31:20 -08006759 if (vmx->host_debugctlmsr)
6760 update_debugctlmsr(vmx->host_debugctlmsr);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006761
Avi Kivityaa67f602012-08-01 16:48:03 +03006762#ifndef CONFIG_X86_64
6763 /*
6764 * The sysexit path does not restore ds/es, so we must set them to
6765 * a reasonable value ourselves.
6766 *
Sean Christopherson6d6095b2018-07-23 12:32:44 -07006767 * We can't defer this to vmx_prepare_switch_to_host() since that
6768 * function may be executed in interrupt context, which saves and
6769 * restore segments around it, nullifying its effect.
Avi Kivityaa67f602012-08-01 16:48:03 +03006770 */
6771 loadsegment(ds, __USER_DS);
6772 loadsegment(es, __USER_DS);
6773#endif
6774
Sean Christophersone5d03de2020-04-15 13:34:51 -07006775 vmx_register_cache_reset(vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006776
Chao Peng2ef444f2018-10-24 16:05:12 +08006777 pt_guest_exit(vmx);
6778
Aaron Lewis139a12c2019-10-21 16:30:25 -07006779 kvm_load_host_xsave_state(vcpu);
WANG Chao1811d972019-04-12 15:55:39 +08006780
Gleb Natapove0b890d2013-09-25 12:51:33 +03006781 vmx->nested.nested_run_pending = 0;
Jim Mattsonb060ca32017-09-14 16:31:42 -07006782 vmx->idt_vectoring_info = 0;
6783
Sean Christopherson873e1da2020-04-10 10:47:02 -07006784 if (unlikely(vmx->fail)) {
6785 vmx->exit_reason = 0xdead;
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006786 return EXIT_FASTPATH_NONE;
Sean Christopherson873e1da2020-04-10 10:47:02 -07006787 }
6788
6789 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
6790 if (unlikely((u16)vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY))
Sean Christophersonbeb8d932019-04-19 22:50:55 -07006791 kvm_machine_check();
6792
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006793 trace_kvm_exit(vmx->exit_reason, vcpu, KVM_ISA_VMX);
6794
Sean Christopherson873e1da2020-04-10 10:47:02 -07006795 if (unlikely(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006796 return EXIT_FASTPATH_NONE;
6797
Jim Mattsonb060ca32017-09-14 16:31:42 -07006798 vmx->loaded_vmcs->launched = 1;
6799 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Gleb Natapove0b890d2013-09-25 12:51:33 +03006800
Avi Kivity51aa01d2010-07-20 14:31:20 +03006801 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03006802 vmx_complete_interrupts(vmx);
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006803
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006804 if (is_guest_mode(vcpu))
6805 return EXIT_FASTPATH_NONE;
6806
6807 exit_fastpath = vmx_exit_handlers_fastpath(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08006808 if (exit_fastpath == EXIT_FASTPATH_REENTER_GUEST) {
6809 if (!kvm_vcpu_exit_request(vcpu)) {
6810 /*
6811 * FIXME: this goto should be a loop in vcpu_enter_guest,
6812 * but it would incur the cost of a retpoline for now.
6813 * Revisit once static calls are available.
6814 */
Wanpeng Li379a3c82020-04-28 14:23:27 +08006815 if (vcpu->arch.apicv_active)
6816 vmx_sync_pir_to_irr(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08006817 goto reenter_guest;
6818 }
6819 exit_fastpath = EXIT_FASTPATH_EXIT_HANDLED;
6820 }
6821
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006822 return exit_fastpath;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006823}
6824
Avi Kivity6aa8b732006-12-10 02:21:36 -08006825static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
6826{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006827 struct vcpu_vmx *vmx = to_vmx(vcpu);
6828
Kai Huang843e4332015-01-28 10:54:28 +08006829 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08006830 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08006831 free_vpid(vmx->vpid);
Sean Christopherson55d23752018-12-03 13:53:18 -08006832 nested_vmx_free_vcpu(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006833 free_loaded_vmcs(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006834}
6835
Sean Christopherson987b2592019-12-18 13:54:55 -08006836static int vmx_create_vcpu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006837{
Ben Gardon41836832019-02-11 11:02:52 -08006838 struct vcpu_vmx *vmx;
Sean Christopherson34109c02019-12-18 13:54:50 -08006839 int i, cpu, err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006840
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006841 BUILD_BUG_ON(offsetof(struct vcpu_vmx, vcpu) != 0);
6842 vmx = to_vmx(vcpu);
Ingo Molnar965b58a2007-01-05 16:36:23 -08006843
Peter Feiner4e595162016-07-07 14:49:58 -07006844 err = -ENOMEM;
6845
Sean Christopherson034d8e22019-12-18 13:54:49 -08006846 vmx->vpid = allocate_vpid();
6847
Peter Feiner4e595162016-07-07 14:49:58 -07006848 /*
6849 * If PML is turned on, failure on enabling PML just results in failure
6850 * of creating the vcpu, therefore we can simplify PML logic (by
6851 * avoiding dealing with cases, such as enabling PML partially on vcpus
Miaohe Lin67b0ae42019-12-11 14:26:22 +08006852 * for the guest), etc.
Peter Feiner4e595162016-07-07 14:49:58 -07006853 */
6854 if (enable_pml) {
Ben Gardon41836832019-02-11 11:02:52 -08006855 vmx->pml_pg = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Peter Feiner4e595162016-07-07 14:49:58 -07006856 if (!vmx->pml_pg)
Sean Christopherson987b2592019-12-18 13:54:55 -08006857 goto free_vpid;
Peter Feiner4e595162016-07-07 14:49:58 -07006858 }
6859
Sean Christopherson14a61b62020-09-23 11:04:08 -07006860 BUILD_BUG_ON(ARRAY_SIZE(vmx_uret_msrs_list) != MAX_NR_USER_RETURN_MSRS);
Ingo Molnar965b58a2007-01-05 16:36:23 -08006861
Sean Christopherson14a61b62020-09-23 11:04:08 -07006862 for (i = 0; i < ARRAY_SIZE(vmx_uret_msrs_list); ++i) {
6863 u32 index = vmx_uret_msrs_list[i];
Xiaoyao Li4be53412019-10-20 17:11:00 +08006864 u32 data_low, data_high;
Sean Christophersonfbc18002020-09-23 11:03:59 -07006865 int j = vmx->nr_uret_msrs;
Xiaoyao Li4be53412019-10-20 17:11:00 +08006866
6867 if (rdmsr_safe(index, &data_low, &data_high) < 0)
6868 continue;
6869 if (wrmsr_safe(index, data_low, data_high) < 0)
6870 continue;
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006871
Sean Christopherson802145c2020-09-23 11:04:09 -07006872 vmx->guest_uret_msrs[j].slot = i;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07006873 vmx->guest_uret_msrs[j].data = 0;
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006874 switch (index) {
6875 case MSR_IA32_TSX_CTRL:
6876 /*
6877 * No need to pass TSX_CTRL_CPUID_CLEAR through, so
6878 * let's avoid changing CPUID bits under the host
6879 * kernel's feet.
6880 */
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07006881 vmx->guest_uret_msrs[j].mask = ~(u64)TSX_CTRL_CPUID_CLEAR;
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006882 break;
6883 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07006884 vmx->guest_uret_msrs[j].mask = -1ull;
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006885 break;
6886 }
Sean Christophersonfbc18002020-09-23 11:03:59 -07006887 ++vmx->nr_uret_msrs;
Xiaoyao Li4be53412019-10-20 17:11:00 +08006888 }
6889
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006890 err = alloc_loaded_vmcs(&vmx->vmcs01);
6891 if (err < 0)
Jim Mattson7d737102019-12-03 16:24:42 -08006892 goto free_pml;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006893
Alexander Graf3eb90012020-09-25 16:34:20 +02006894 /* The MSR bitmap starts with all ones */
6895 bitmap_fill(vmx->shadow_msr_intercept.read, MAX_POSSIBLE_PASSTHROUGH_MSRS);
6896 bitmap_fill(vmx->shadow_msr_intercept.write, MAX_POSSIBLE_PASSTHROUGH_MSRS);
6897
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006898 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_TSC, MSR_TYPE_R);
6899 vmx_disable_intercept_for_msr(vcpu, MSR_FS_BASE, MSR_TYPE_RW);
6900 vmx_disable_intercept_for_msr(vcpu, MSR_GS_BASE, MSR_TYPE_RW);
6901 vmx_disable_intercept_for_msr(vcpu, MSR_KERNEL_GS_BASE, MSR_TYPE_RW);
6902 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_CS, MSR_TYPE_RW);
6903 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_ESP, MSR_TYPE_RW);
6904 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_EIP, MSR_TYPE_RW);
Sean Christopherson987b2592019-12-18 13:54:55 -08006905 if (kvm_cstate_in_guest(vcpu->kvm)) {
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006906 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C1_RES, MSR_TYPE_R);
6907 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C3_RESIDENCY, MSR_TYPE_R);
6908 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C6_RESIDENCY, MSR_TYPE_R);
6909 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C7_RESIDENCY, MSR_TYPE_R);
Wanpeng Lib5170062019-05-21 14:06:53 +08006910 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006911 vmx->msr_bitmap_mode = 0;
6912
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006913 vmx->loaded_vmcs = &vmx->vmcs01;
Avi Kivity15ad7142007-07-11 18:17:21 +03006914 cpu = get_cpu();
Sean Christopherson34109c02019-12-18 13:54:50 -08006915 vmx_vcpu_load(vcpu, cpu);
6916 vcpu->cpu = cpu;
Xiaoyao Li1b842922019-10-20 17:11:01 +08006917 init_vmcs(vmx);
Sean Christopherson34109c02019-12-18 13:54:50 -08006918 vmx_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03006919 put_cpu();
Sean Christopherson34109c02019-12-18 13:54:50 -08006920 if (cpu_need_virtualize_apic_accesses(vcpu)) {
Sean Christopherson987b2592019-12-18 13:54:55 -08006921 err = alloc_apic_access_page(vcpu->kvm);
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02006922 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02006923 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02006924 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08006925
Sean Christophersone90008d2018-03-05 12:04:37 -08006926 if (enable_ept && !enable_unrestricted_guest) {
Sean Christopherson987b2592019-12-18 13:54:55 -08006927 err = init_rmode_identity_map(vcpu->kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08006928 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02006929 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006930 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08006931
Roman Kagan63aff652018-07-19 21:59:07 +03006932 if (nested)
Chenyi Qiangb9757a42020-08-28 16:56:22 +08006933 memcpy(&vmx->nested.msrs, &vmcs_config.nested, sizeof(vmx->nested.msrs));
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08006934 else
6935 memset(&vmx->nested.msrs, 0, sizeof(vmx->nested.msrs));
Wincy Vanb9c237b2015-02-03 23:56:30 +08006936
Wincy Van705699a2015-02-03 23:58:17 +08006937 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03006938 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03006939
Paolo Bonzinibab0c312020-02-11 18:40:58 +01006940 vcpu->arch.microcode_version = 0x100000000ULL;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08006941 vmx->msr_ia32_feature_control_valid_bits = FEAT_CTL_LOCKED;
Haozhong Zhang37e4c992016-06-22 14:59:55 +08006942
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02006943 /*
6944 * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR
6945 * or POSTED_INTR_WAKEUP_VECTOR.
6946 */
6947 vmx->pi_desc.nv = POSTED_INTR_VECTOR;
6948 vmx->pi_desc.sn = 1;
6949
Lan Tianyu53963a72018-12-06 15:34:36 +08006950 vmx->ept_pointer = INVALID_PAGE;
6951
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006952 return 0;
Ingo Molnar965b58a2007-01-05 16:36:23 -08006953
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006954free_vmcs:
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08006955 free_loaded_vmcs(vmx->loaded_vmcs);
Peter Feiner4e595162016-07-07 14:49:58 -07006956free_pml:
6957 vmx_destroy_pml_buffer(vmx);
Sean Christopherson987b2592019-12-18 13:54:55 -08006958free_vpid:
Wanpeng Li991e7a02015-09-16 17:30:05 +08006959 free_vpid(vmx->vpid);
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006960 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006961}
6962
Thomas Gleixner65fd4cb2019-02-19 11:10:49 +01006963#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"
6964#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 -04006965
Wanpeng Lib31c1142018-03-12 04:53:04 -07006966static int vmx_vm_init(struct kvm *kvm)
6967{
Tianyu Lan877ad952018-07-19 08:40:23 +00006968 spin_lock_init(&to_kvm_vmx(kvm)->ept_pointer_lock);
6969
Wanpeng Lib31c1142018-03-12 04:53:04 -07006970 if (!ple_gap)
6971 kvm->arch.pause_in_guest = true;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006972
Jiri Kosinad90a7a02018-07-13 16:23:25 +02006973 if (boot_cpu_has(X86_BUG_L1TF) && enable_ept) {
6974 switch (l1tf_mitigation) {
6975 case L1TF_MITIGATION_OFF:
6976 case L1TF_MITIGATION_FLUSH_NOWARN:
6977 /* 'I explicitly don't care' is set */
6978 break;
6979 case L1TF_MITIGATION_FLUSH:
6980 case L1TF_MITIGATION_FLUSH_NOSMT:
6981 case L1TF_MITIGATION_FULL:
6982 /*
6983 * Warn upon starting the first VM in a potentially
6984 * insecure environment.
6985 */
Josh Poimboeufb2849092019-01-30 07:13:58 -06006986 if (sched_smt_active())
Jiri Kosinad90a7a02018-07-13 16:23:25 +02006987 pr_warn_once(L1TF_MSG_SMT);
6988 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_NEVER)
6989 pr_warn_once(L1TF_MSG_L1D);
6990 break;
6991 case L1TF_MITIGATION_FULL_FORCE:
6992 /* Flush is enforced */
6993 break;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006994 }
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006995 }
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06006996 kvm_apicv_init(kvm, enable_apicv);
Wanpeng Lib31c1142018-03-12 04:53:04 -07006997 return 0;
6998}
6999
Sean Christophersonf257d6d2019-04-19 22:18:17 -07007000static int __init vmx_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03007001{
7002 struct vmcs_config vmcs_conf;
Sean Christopherson7caaa712018-12-03 13:53:01 -08007003 struct vmx_capability vmx_cap;
Yang, Sheng002c7f72007-07-31 14:23:01 +03007004
Sean Christophersonff10e222019-12-20 20:45:10 -08007005 if (!this_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
7006 !this_cpu_has(X86_FEATURE_VMX)) {
7007 pr_err("kvm: VMX is disabled on CPU %d\n", smp_processor_id());
7008 return -EIO;
7009 }
7010
Sean Christopherson7caaa712018-12-03 13:53:01 -08007011 if (setup_vmcs_config(&vmcs_conf, &vmx_cap) < 0)
Sean Christophersonf257d6d2019-04-19 22:18:17 -07007012 return -EIO;
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08007013 if (nested)
Vitaly Kuznetsova4443262020-02-20 18:22:04 +01007014 nested_vmx_setup_ctls_msrs(&vmcs_conf.nested, vmx_cap.ept);
Yang, Sheng002c7f72007-07-31 14:23:01 +03007015 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
7016 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
7017 smp_processor_id());
Sean Christophersonf257d6d2019-04-19 22:18:17 -07007018 return -EIO;
Yang, Sheng002c7f72007-07-31 14:23:01 +03007019 }
Sean Christophersonf257d6d2019-04-19 22:18:17 -07007020 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03007021}
7022
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007023static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08007024{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007025 u8 cache;
7026 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007027
Chia-I Wu222f06e2020-02-13 13:30:34 -08007028 /* We wanted to honor guest CD/MTRR/PAT, but doing so could result in
7029 * memory aliases with conflicting memory types and sometimes MCEs.
7030 * We have to be careful as to what are honored and when.
7031 *
7032 * For MMIO, guest CD/MTRR are ignored. The EPT memory type is set to
7033 * UC. The effective memory type is UC or WC depending on guest PAT.
7034 * This was historically the source of MCEs and we want to be
7035 * conservative.
7036 *
7037 * When there is no need to deal with noncoherent DMA (e.g., no VT-d
7038 * or VT-d has snoop control), guest CD/MTRR/PAT are all ignored. The
7039 * EPT memory type is set to WB. The effective memory type is forced
7040 * WB.
7041 *
7042 * Otherwise, we trust guest. Guest CD/MTRR/PAT are all honored. The
7043 * EPT memory type is used to emulate guest CD/MTRR.
Sheng Yang522c68c2009-04-27 20:35:43 +08007044 */
Chia-I Wu222f06e2020-02-13 13:30:34 -08007045
Paolo Bonzini606decd2015-10-01 13:12:47 +02007046 if (is_mmio) {
7047 cache = MTRR_TYPE_UNCACHABLE;
7048 goto exit;
7049 }
7050
7051 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007052 ipat = VMX_EPT_IPAT_BIT;
7053 cache = MTRR_TYPE_WRBACK;
7054 goto exit;
7055 }
7056
7057 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
7058 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02007059 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08007060 cache = MTRR_TYPE_WRBACK;
7061 else
7062 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007063 goto exit;
7064 }
7065
Xiao Guangrongff536042015-06-15 16:55:22 +08007066 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007067
7068exit:
7069 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08007070}
7071
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007072static void vmcs_set_secondary_exec_control(struct vcpu_vmx *vmx)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007073{
7074 /*
7075 * These bits in the secondary execution controls field
7076 * are dynamic, the others are mostly based on the hypervisor
7077 * architecture and the guest's CPUID. Do not touch the
7078 * dynamic bits.
7079 */
7080 u32 mask =
7081 SECONDARY_EXEC_SHADOW_VMCS |
7082 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Paolo Bonzini0367f202016-07-12 10:44:55 +02007083 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
7084 SECONDARY_EXEC_DESC;
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007085
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007086 u32 new_ctl = vmx->secondary_exec_control;
7087 u32 cur_ctl = secondary_exec_controls_get(vmx);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007088
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007089 secondary_exec_controls_set(vmx, (new_ctl & ~mask) | (cur_ctl & mask));
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007090}
7091
David Matlack8322ebb2016-11-29 18:14:09 -08007092/*
7093 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
7094 * (indicating "allowed-1") if they are supported in the guest's CPUID.
7095 */
7096static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
7097{
7098 struct vcpu_vmx *vmx = to_vmx(vcpu);
7099 struct kvm_cpuid_entry2 *entry;
7100
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01007101 vmx->nested.msrs.cr0_fixed1 = 0xffffffff;
7102 vmx->nested.msrs.cr4_fixed1 = X86_CR4_PCE;
David Matlack8322ebb2016-11-29 18:14:09 -08007103
7104#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
7105 if (entry && (entry->_reg & (_cpuid_mask))) \
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01007106 vmx->nested.msrs.cr4_fixed1 |= (_cr4_mask); \
David Matlack8322ebb2016-11-29 18:14:09 -08007107} while (0)
7108
7109 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
Sean Christopherson87382002019-12-17 13:32:42 -08007110 cr4_fixed1_update(X86_CR4_VME, edx, feature_bit(VME));
7111 cr4_fixed1_update(X86_CR4_PVI, edx, feature_bit(VME));
7112 cr4_fixed1_update(X86_CR4_TSD, edx, feature_bit(TSC));
7113 cr4_fixed1_update(X86_CR4_DE, edx, feature_bit(DE));
7114 cr4_fixed1_update(X86_CR4_PSE, edx, feature_bit(PSE));
7115 cr4_fixed1_update(X86_CR4_PAE, edx, feature_bit(PAE));
7116 cr4_fixed1_update(X86_CR4_MCE, edx, feature_bit(MCE));
7117 cr4_fixed1_update(X86_CR4_PGE, edx, feature_bit(PGE));
7118 cr4_fixed1_update(X86_CR4_OSFXSR, edx, feature_bit(FXSR));
7119 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, feature_bit(XMM));
7120 cr4_fixed1_update(X86_CR4_VMXE, ecx, feature_bit(VMX));
7121 cr4_fixed1_update(X86_CR4_SMXE, ecx, feature_bit(SMX));
7122 cr4_fixed1_update(X86_CR4_PCIDE, ecx, feature_bit(PCID));
7123 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, feature_bit(XSAVE));
David Matlack8322ebb2016-11-29 18:14:09 -08007124
7125 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
Sean Christopherson87382002019-12-17 13:32:42 -08007126 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, feature_bit(FSGSBASE));
7127 cr4_fixed1_update(X86_CR4_SMEP, ebx, feature_bit(SMEP));
7128 cr4_fixed1_update(X86_CR4_SMAP, ebx, feature_bit(SMAP));
7129 cr4_fixed1_update(X86_CR4_PKE, ecx, feature_bit(PKU));
7130 cr4_fixed1_update(X86_CR4_UMIP, ecx, feature_bit(UMIP));
7131 cr4_fixed1_update(X86_CR4_LA57, ecx, feature_bit(LA57));
David Matlack8322ebb2016-11-29 18:14:09 -08007132
7133#undef cr4_fixed1_update
7134}
7135
Liran Alon5f76f6f2018-09-14 03:25:52 +03007136static void nested_vmx_entry_exit_ctls_update(struct kvm_vcpu *vcpu)
7137{
7138 struct vcpu_vmx *vmx = to_vmx(vcpu);
7139
7140 if (kvm_mpx_supported()) {
7141 bool mpx_enabled = guest_cpuid_has(vcpu, X86_FEATURE_MPX);
7142
7143 if (mpx_enabled) {
7144 vmx->nested.msrs.entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
7145 vmx->nested.msrs.exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
7146 } else {
7147 vmx->nested.msrs.entry_ctls_high &= ~VM_ENTRY_LOAD_BNDCFGS;
7148 vmx->nested.msrs.exit_ctls_high &= ~VM_EXIT_CLEAR_BNDCFGS;
7149 }
7150 }
7151}
7152
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007153static void update_intel_pt_cfg(struct kvm_vcpu *vcpu)
7154{
7155 struct vcpu_vmx *vmx = to_vmx(vcpu);
7156 struct kvm_cpuid_entry2 *best = NULL;
7157 int i;
7158
7159 for (i = 0; i < PT_CPUID_LEAVES; i++) {
7160 best = kvm_find_cpuid_entry(vcpu, 0x14, i);
7161 if (!best)
7162 return;
7163 vmx->pt_desc.caps[CPUID_EAX + i*PT_CPUID_REGS_NUM] = best->eax;
7164 vmx->pt_desc.caps[CPUID_EBX + i*PT_CPUID_REGS_NUM] = best->ebx;
7165 vmx->pt_desc.caps[CPUID_ECX + i*PT_CPUID_REGS_NUM] = best->ecx;
7166 vmx->pt_desc.caps[CPUID_EDX + i*PT_CPUID_REGS_NUM] = best->edx;
7167 }
7168
7169 /* Get the number of configurable Address Ranges for filtering */
7170 vmx->pt_desc.addr_range = intel_pt_validate_cap(vmx->pt_desc.caps,
7171 PT_CAP_num_address_ranges);
7172
7173 /* Initialize and clear the no dependency bits */
7174 vmx->pt_desc.ctl_bitmask = ~(RTIT_CTL_TRACEEN | RTIT_CTL_OS |
7175 RTIT_CTL_USR | RTIT_CTL_TSC_EN | RTIT_CTL_DISRETC);
7176
7177 /*
7178 * If CPUID.(EAX=14H,ECX=0):EBX[0]=1 CR3Filter can be set otherwise
7179 * will inject an #GP
7180 */
7181 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_cr3_filtering))
7182 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_CR3EN;
7183
7184 /*
7185 * If CPUID.(EAX=14H,ECX=0):EBX[1]=1 CYCEn, CycThresh and
7186 * PSBFreq can be set
7187 */
7188 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc))
7189 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_CYCLEACC |
7190 RTIT_CTL_CYC_THRESH | RTIT_CTL_PSB_FREQ);
7191
7192 /*
7193 * If CPUID.(EAX=14H,ECX=0):EBX[3]=1 MTCEn BranchEn and
7194 * MTCFreq can be set
7195 */
7196 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc))
7197 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_MTC_EN |
7198 RTIT_CTL_BRANCH_EN | RTIT_CTL_MTC_RANGE);
7199
7200 /* If CPUID.(EAX=14H,ECX=0):EBX[4]=1 FUPonPTW and PTWEn can be set */
7201 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_ptwrite))
7202 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_FUP_ON_PTW |
7203 RTIT_CTL_PTW_EN);
7204
7205 /* If CPUID.(EAX=14H,ECX=0):EBX[5]=1 PwrEvEn can be set */
7206 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_power_event_trace))
7207 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_PWR_EVT_EN;
7208
7209 /* If CPUID.(EAX=14H,ECX=0):ECX[0]=1 ToPA can be set */
7210 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_topa_output))
7211 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_TOPA;
7212
7213 /* If CPUID.(EAX=14H,ECX=0):ECX[3]=1 FabircEn can be set */
7214 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_output_subsys))
7215 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_FABRIC_EN;
7216
7217 /* unmask address range configure area */
7218 for (i = 0; i < vmx->pt_desc.addr_range; i++)
Gustavo A. R. Silvad14eff12018-12-26 14:40:59 -06007219 vmx->pt_desc.ctl_bitmask &= ~(0xfULL << (32 + i * 4));
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007220}
7221
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08007222static void vmx_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
Sheng Yang0e851882009-12-18 16:48:46 +08007223{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007224 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007225
Aaron Lewis72041602019-10-21 16:30:20 -07007226 /* xsaves_enabled is recomputed in vmx_compute_secondary_exec_control(). */
7227 vcpu->arch.xsaves_enabled = false;
7228
Paolo Bonzini80154d72017-08-24 13:55:35 +02007229 if (cpu_has_secondary_exec_ctrls()) {
7230 vmx_compute_secondary_exec_control(vmx);
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007231 vmcs_set_secondary_exec_control(vmx);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007232 }
Mao, Junjiead756a12012-07-02 01:18:48 +00007233
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007234 if (nested_vmx_allowed(vcpu))
7235 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007236 FEAT_CTL_VMX_ENABLED_INSIDE_SMX |
7237 FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX;
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007238 else
7239 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007240 ~(FEAT_CTL_VMX_ENABLED_INSIDE_SMX |
7241 FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX);
David Matlack8322ebb2016-11-29 18:14:09 -08007242
Liran Alon5f76f6f2018-09-14 03:25:52 +03007243 if (nested_vmx_allowed(vcpu)) {
David Matlack8322ebb2016-11-29 18:14:09 -08007244 nested_vmx_cr_fixed1_bits_update(vcpu);
Liran Alon5f76f6f2018-09-14 03:25:52 +03007245 nested_vmx_entry_exit_ctls_update(vcpu);
7246 }
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007247
7248 if (boot_cpu_has(X86_FEATURE_INTEL_PT) &&
7249 guest_cpuid_has(vcpu, X86_FEATURE_INTEL_PT))
7250 update_intel_pt_cfg(vcpu);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007251
7252 if (boot_cpu_has(X86_FEATURE_RTM)) {
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07007253 struct vmx_uret_msr *msr;
Sean Christophersond85a8032020-09-23 11:04:06 -07007254 msr = vmx_find_uret_msr(vmx, MSR_IA32_TSX_CTRL);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007255 if (msr) {
7256 bool enabled = guest_cpuid_has(vcpu, X86_FEATURE_RTM);
Sean Christopherson7bf662b2020-09-23 11:04:07 -07007257 vmx_set_guest_uret_msr(vmx, msr, enabled ? 0 : TSX_CTRL_RTM_DISABLE);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007258 }
7259 }
Sean Christophersona6337a32020-09-29 21:16:57 -07007260
Sean Christopherson2ed41aa2020-09-29 21:16:58 -07007261 set_cr4_guest_host_mask(vmx);
7262
Sean Christophersona6337a32020-09-29 21:16:57 -07007263 /* Refresh #PF interception to account for MAXPHYADDR changes. */
7264 update_exception_bitmap(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08007265}
7266
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007267static __init void vmx_set_cpu_caps(void)
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007268{
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007269 kvm_set_cpu_caps();
7270
7271 /* CPUID 0x1 */
7272 if (nested)
7273 kvm_cpu_cap_set(X86_FEATURE_VMX);
7274
7275 /* CPUID 0x7 */
Sean Christopherson8721f5b2020-03-02 15:56:45 -08007276 if (kvm_mpx_supported())
7277 kvm_cpu_cap_check_and_set(X86_FEATURE_MPX);
7278 if (cpu_has_vmx_invpcid())
7279 kvm_cpu_cap_check_and_set(X86_FEATURE_INVPCID);
7280 if (vmx_pt_mode_is_host_guest())
7281 kvm_cpu_cap_check_and_set(X86_FEATURE_INTEL_PT);
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007282
Sean Christopherson90d2f602020-03-02 15:56:47 -08007283 if (vmx_umip_emulated())
7284 kvm_cpu_cap_set(X86_FEATURE_UMIP);
7285
Sean Christophersonb3d895d52020-03-02 15:56:44 -08007286 /* CPUID 0xD.1 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01007287 supported_xss = 0;
Sean Christophersonbecdad82020-09-23 09:50:45 -07007288 if (!cpu_has_vmx_xsaves())
Sean Christophersonb3d895d52020-03-02 15:56:44 -08007289 kvm_cpu_cap_clear(X86_FEATURE_XSAVES);
7290
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007291 /* CPUID 0x80000001 */
7292 if (!cpu_has_vmx_rdtscp())
7293 kvm_cpu_cap_clear(X86_FEATURE_RDTSCP);
Maxim Levitsky0abcc8f2020-05-23 19:14:54 +03007294
Sean Christophersonbecdad82020-09-23 09:50:45 -07007295 if (cpu_has_vmx_waitpkg())
Maxim Levitsky0abcc8f2020-05-23 19:14:54 +03007296 kvm_cpu_cap_check_and_set(X86_FEATURE_WAITPKG);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007297}
7298
Sean Christophersond264ee02018-08-27 15:21:12 -07007299static void vmx_request_immediate_exit(struct kvm_vcpu *vcpu)
7300{
7301 to_vmx(vcpu)->req_immediate_exit = true;
7302}
7303
Oliver Upton35a57132020-02-04 15:26:31 -08007304static int vmx_check_intercept_io(struct kvm_vcpu *vcpu,
7305 struct x86_instruction_info *info)
7306{
7307 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7308 unsigned short port;
7309 bool intercept;
7310 int size;
7311
7312 if (info->intercept == x86_intercept_in ||
7313 info->intercept == x86_intercept_ins) {
7314 port = info->src_val;
7315 size = info->dst_bytes;
7316 } else {
7317 port = info->dst_val;
7318 size = info->src_bytes;
7319 }
7320
7321 /*
7322 * If the 'use IO bitmaps' VM-execution control is 0, IO instruction
7323 * VM-exits depend on the 'unconditional IO exiting' VM-execution
7324 * control.
7325 *
7326 * Otherwise, IO instruction VM-exits are controlled by the IO bitmaps.
7327 */
7328 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
7329 intercept = nested_cpu_has(vmcs12,
7330 CPU_BASED_UNCOND_IO_EXITING);
7331 else
7332 intercept = nested_vmx_check_io_bitmaps(vcpu, port, size);
7333
Oliver Upton86f7e902020-02-29 11:30:14 -08007334 /* FIXME: produce nested vmexit and return X86EMUL_INTERCEPTED. */
Oliver Upton35a57132020-02-04 15:26:31 -08007335 return intercept ? X86EMUL_UNHANDLEABLE : X86EMUL_CONTINUE;
7336}
7337
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007338static int vmx_check_intercept(struct kvm_vcpu *vcpu,
7339 struct x86_instruction_info *info,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007340 enum x86_intercept_stage stage,
7341 struct x86_exception *exception)
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007342{
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007343 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007344
Oliver Upton35a57132020-02-04 15:26:31 -08007345 switch (info->intercept) {
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007346 /*
7347 * RDPID causes #UD if disabled through secondary execution controls.
7348 * Because it is marked as EmulateOnUD, we need to intercept it here.
7349 */
Oliver Upton35a57132020-02-04 15:26:31 -08007350 case x86_intercept_rdtscp:
Sean Christopherson7f3603b2020-09-23 09:50:47 -07007351 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_RDTSCP)) {
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007352 exception->vector = UD_VECTOR;
7353 exception->error_code_valid = false;
Oliver Upton35a57132020-02-04 15:26:31 -08007354 return X86EMUL_PROPAGATE_FAULT;
7355 }
7356 break;
7357
7358 case x86_intercept_in:
7359 case x86_intercept_ins:
7360 case x86_intercept_out:
7361 case x86_intercept_outs:
7362 return vmx_check_intercept_io(vcpu, info);
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007363
Oliver Upton86f7e902020-02-29 11:30:14 -08007364 case x86_intercept_lgdt:
7365 case x86_intercept_lidt:
7366 case x86_intercept_lldt:
7367 case x86_intercept_ltr:
7368 case x86_intercept_sgdt:
7369 case x86_intercept_sidt:
7370 case x86_intercept_sldt:
7371 case x86_intercept_str:
7372 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC))
7373 return X86EMUL_CONTINUE;
7374
7375 /* FIXME: produce nested vmexit and return X86EMUL_INTERCEPTED. */
7376 break;
7377
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007378 /* TODO: check more intercepts... */
Oliver Upton35a57132020-02-04 15:26:31 -08007379 default:
7380 break;
7381 }
7382
Paolo Bonzini07721fe2020-02-04 15:26:29 -08007383 return X86EMUL_UNHANDLEABLE;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007384}
7385
Yunhong Jiang64672c92016-06-13 14:19:59 -07007386#ifdef CONFIG_X86_64
7387/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
7388static inline int u64_shl_div_u64(u64 a, unsigned int shift,
7389 u64 divisor, u64 *result)
7390{
7391 u64 low = a << shift, high = a >> (64 - shift);
7392
7393 /* To avoid the overflow on divq */
7394 if (high >= divisor)
7395 return 1;
7396
7397 /* Low hold the result, high hold rem which is discarded */
7398 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
7399 "rm" (divisor), "0" (low), "1" (high));
7400 *result = low;
7401
7402 return 0;
7403}
7404
Sean Christophersonf9927982019-04-16 13:32:46 -07007405static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc,
7406 bool *expired)
Yunhong Jiang64672c92016-06-13 14:19:59 -07007407{
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007408 struct vcpu_vmx *vmx;
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007409 u64 tscl, guest_tscl, delta_tsc, lapic_timer_advance_cycles;
Sean Christopherson39497d72019-04-17 10:15:32 -07007410 struct kvm_timer *ktimer = &vcpu->arch.apic->lapic_timer;
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007411
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007412 vmx = to_vmx(vcpu);
7413 tscl = rdtsc();
7414 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
7415 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Sean Christopherson39497d72019-04-17 10:15:32 -07007416 lapic_timer_advance_cycles = nsec_to_cycles(vcpu,
7417 ktimer->timer_advance_ns);
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007418
7419 if (delta_tsc > lapic_timer_advance_cycles)
7420 delta_tsc -= lapic_timer_advance_cycles;
7421 else
7422 delta_tsc = 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007423
7424 /* Convert to host delta tsc if tsc scaling is enabled */
7425 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
Sean Christopherson0967fa12019-04-16 13:32:48 -07007426 delta_tsc && u64_shl_div_u64(delta_tsc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007427 kvm_tsc_scaling_ratio_frac_bits,
Sean Christopherson0967fa12019-04-16 13:32:48 -07007428 vcpu->arch.tsc_scaling_ratio, &delta_tsc))
Yunhong Jiang64672c92016-06-13 14:19:59 -07007429 return -ERANGE;
7430
7431 /*
7432 * If the delta tsc can't fit in the 32 bit after the multi shift,
7433 * we can't use the preemption timer.
7434 * It's possible that it fits on later vmentries, but checking
7435 * on every vmentry is costly so we just use an hrtimer.
7436 */
7437 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
7438 return -ERANGE;
7439
7440 vmx->hv_deadline_tsc = tscl + delta_tsc;
Sean Christophersonf9927982019-04-16 13:32:46 -07007441 *expired = !delta_tsc;
7442 return 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007443}
7444
7445static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
7446{
Sean Christophersonf459a702018-08-27 15:21:11 -07007447 to_vmx(vcpu)->hv_deadline_tsc = -1;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007448}
7449#endif
7450
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007451static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007452{
Wanpeng Lib31c1142018-03-12 04:53:04 -07007453 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007454 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007455}
7456
Kai Huang843e4332015-01-28 10:54:28 +08007457static void vmx_slot_enable_log_dirty(struct kvm *kvm,
7458 struct kvm_memory_slot *slot)
7459{
Jay Zhou3c9bd402020-02-27 09:32:27 +08007460 if (!kvm_dirty_log_manual_protect_and_init_set(kvm))
7461 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
Kai Huang843e4332015-01-28 10:54:28 +08007462 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
7463}
7464
7465static void vmx_slot_disable_log_dirty(struct kvm *kvm,
7466 struct kvm_memory_slot *slot)
7467{
7468 kvm_mmu_slot_set_dirty(kvm, slot);
7469}
7470
7471static void vmx_flush_log_dirty(struct kvm *kvm)
7472{
7473 kvm_flush_pml_buffers(kvm);
7474}
7475
7476static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
7477 struct kvm_memory_slot *memslot,
7478 gfn_t offset, unsigned long mask)
7479{
7480 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
7481}
7482
Yunhong Jiangbc225122016-06-13 14:19:58 -07007483static int vmx_pre_block(struct kvm_vcpu *vcpu)
7484{
7485 if (pi_pre_block(vcpu))
7486 return 1;
7487
Yunhong Jiang64672c92016-06-13 14:19:59 -07007488 if (kvm_lapic_hv_timer_in_use(vcpu))
7489 kvm_lapic_switch_to_sw_timer(vcpu);
7490
Yunhong Jiangbc225122016-06-13 14:19:58 -07007491 return 0;
7492}
7493
Yunhong Jiangbc225122016-06-13 14:19:58 -07007494static void vmx_post_block(struct kvm_vcpu *vcpu)
7495{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007496 if (kvm_x86_ops.set_hv_timer)
Yunhong Jiang64672c92016-06-13 14:19:59 -07007497 kvm_lapic_switch_to_hv_timer(vcpu);
7498
Yunhong Jiangbc225122016-06-13 14:19:58 -07007499 pi_post_block(vcpu);
7500}
7501
Ashok Rajc45dcc72016-06-22 14:59:56 +08007502static void vmx_setup_mce(struct kvm_vcpu *vcpu)
7503{
7504 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
7505 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007506 FEAT_CTL_LMCE_ENABLED;
Ashok Rajc45dcc72016-06-22 14:59:56 +08007507 else
7508 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007509 ~FEAT_CTL_LMCE_ENABLED;
Ashok Rajc45dcc72016-06-22 14:59:56 +08007510}
7511
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007512static int vmx_smi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Ladi Prosek72d7b372017-10-11 16:54:41 +02007513{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007514 /* we need a nested vmexit to enter SMM, postpone if run is pending */
7515 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007516 return -EBUSY;
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -04007517 return !is_smm(vcpu);
Ladi Prosek72d7b372017-10-11 16:54:41 +02007518}
7519
Ladi Prosek0234bf82017-10-11 16:54:40 +02007520static int vmx_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
7521{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007522 struct vcpu_vmx *vmx = to_vmx(vcpu);
7523
7524 vmx->nested.smm.guest_mode = is_guest_mode(vcpu);
7525 if (vmx->nested.smm.guest_mode)
7526 nested_vmx_vmexit(vcpu, -1, 0, 0);
7527
7528 vmx->nested.smm.vmxon = vmx->nested.vmxon;
7529 vmx->nested.vmxon = false;
Wanpeng Licaa057a2018-03-12 04:53:03 -07007530 vmx_clear_hlt(vcpu);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007531 return 0;
7532}
7533
Sean Christophersoned193212019-04-02 08:03:09 -07007534static int vmx_pre_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007535{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007536 struct vcpu_vmx *vmx = to_vmx(vcpu);
7537 int ret;
7538
7539 if (vmx->nested.smm.vmxon) {
7540 vmx->nested.vmxon = true;
7541 vmx->nested.smm.vmxon = false;
7542 }
7543
7544 if (vmx->nested.smm.guest_mode) {
Sean Christophersona633e412018-09-26 09:23:47 -07007545 ret = nested_vmx_enter_non_root_mode(vcpu, false);
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007546 if (ret)
7547 return ret;
7548
7549 vmx->nested.smm.guest_mode = false;
7550 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02007551 return 0;
7552}
7553
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007554static void enable_smi_window(struct kvm_vcpu *vcpu)
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007555{
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007556 /* RSM will cause a vmexit anyway. */
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007557}
7558
Liran Alon4b9852f2019-08-26 13:24:49 +03007559static bool vmx_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
7560{
7561 return to_vmx(vcpu)->nested.vmxon;
7562}
7563
Jim Mattson93dff2f2020-05-08 13:36:43 -07007564static void vmx_migrate_timers(struct kvm_vcpu *vcpu)
7565{
7566 if (is_guest_mode(vcpu)) {
7567 struct hrtimer *timer = &to_vmx(vcpu)->nested.preemption_timer;
7568
7569 if (hrtimer_try_to_cancel(timer) == 1)
7570 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
7571 }
7572}
7573
Sean Christopherson6e4fd062020-03-21 13:26:01 -07007574static void hardware_unsetup(void)
Sean Christophersona3203382018-12-03 13:53:11 -08007575{
7576 if (nested)
7577 nested_vmx_hardware_unsetup();
7578
7579 free_kvm_area();
7580}
7581
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007582static bool vmx_check_apicv_inhibit_reasons(ulong bit)
7583{
Suravee Suthikulpanitf4fdc0a2019-11-14 14:15:13 -06007584 ulong supported = BIT(APICV_INHIBIT_REASON_DISABLE) |
7585 BIT(APICV_INHIBIT_REASON_HYPERV);
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007586
7587 return supported & BIT(bit);
7588}
7589
Sean Christophersone286ac02020-03-21 13:26:02 -07007590static struct kvm_x86_ops vmx_x86_ops __initdata = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007591 .hardware_unsetup = hardware_unsetup,
Sean Christopherson484014f2020-03-21 13:25:57 -07007592
Avi Kivity6aa8b732006-12-10 02:21:36 -08007593 .hardware_enable = hardware_enable,
7594 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08007595 .cpu_has_accelerated_tpr = report_flexpriority,
Tom Lendackybc226f02018-05-10 22:06:39 +02007596 .has_emulated_msr = vmx_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007597
Sean Christopherson484014f2020-03-21 13:25:57 -07007598 .vm_size = sizeof(struct kvm_vmx),
Wanpeng Lib31c1142018-03-12 04:53:04 -07007599 .vm_init = vmx_vm_init,
7600
Avi Kivity6aa8b732006-12-10 02:21:36 -08007601 .vcpu_create = vmx_create_vcpu,
7602 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007603 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007604
Sean Christopherson6d6095b2018-07-23 12:32:44 -07007605 .prepare_guest_switch = vmx_prepare_switch_to_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007606 .vcpu_load = vmx_vcpu_load,
7607 .vcpu_put = vmx_vcpu_put,
7608
Paolo Bonzini69869822020-07-10 17:48:06 +02007609 .update_exception_bitmap = update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -06007610 .get_msr_feature = vmx_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007611 .get_msr = vmx_get_msr,
7612 .set_msr = vmx_set_msr,
7613 .get_segment_base = vmx_get_segment_base,
7614 .get_segment = vmx_get_segment,
7615 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007616 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007617 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
7618 .set_cr0 = vmx_set_cr0,
Sean Christophersonc2fe3cd2020-10-06 18:44:15 -07007619 .is_valid_cr4 = vmx_is_valid_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007620 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007621 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007622 .get_idt = vmx_get_idt,
7623 .set_idt = vmx_set_idt,
7624 .get_gdt = vmx_get_gdt,
7625 .set_gdt = vmx_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03007626 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007627 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007628 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007629 .get_rflags = vmx_get_rflags,
7630 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007631
Sean Christopherson77809382020-03-20 14:28:18 -07007632 .tlb_flush_all = vmx_flush_tlb_all,
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07007633 .tlb_flush_current = vmx_flush_tlb_current,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007634 .tlb_flush_gva = vmx_flush_tlb_gva,
Sean Christophersone64419d2020-03-20 14:28:10 -07007635 .tlb_flush_guest = vmx_flush_tlb_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007636
Avi Kivity6aa8b732006-12-10 02:21:36 -08007637 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02007638 .handle_exit = vmx_handle_exit,
Oliver Upton5ef8acb2020-02-07 02:36:07 -08007639 .skip_emulated_instruction = vmx_skip_emulated_instruction,
7640 .update_emulated_instruction = vmx_update_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007641 .set_interrupt_shadow = vmx_set_interrupt_shadow,
7642 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007643 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007644 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007645 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007646 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007647 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007648 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007649 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007650 .get_nmi_mask = vmx_get_nmi_mask,
7651 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007652 .enable_nmi_window = enable_nmi_window,
7653 .enable_irq_window = enable_irq_window,
7654 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007655 .set_virtual_apic_mode = vmx_set_virtual_apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +08007656 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007657 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007658 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +01007659 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007660 .check_apicv_inhibit_reasons = vmx_check_apicv_inhibit_reasons,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007661 .hwapic_irr_update = vmx_hwapic_irr_update,
7662 .hwapic_isr_update = vmx_hwapic_isr_update,
Liran Alone6c67d82018-09-04 10:56:52 +03007663 .guest_apic_has_interrupt = vmx_guest_apic_has_interrupt,
Yang Zhanga20ed542013-04-11 19:25:15 +08007664 .sync_pir_to_irr = vmx_sync_pir_to_irr,
7665 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007666 .dy_apicv_has_pending_interrupt = pi_has_pending_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007667
Izik Eiduscbc94022007-10-25 00:29:55 +02007668 .set_tss_addr = vmx_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007669 .set_identity_map_addr = vmx_set_identity_map_addr,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007670 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007671
Avi Kivity586f9602010-11-18 13:09:54 +02007672 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007673
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08007674 .vcpu_after_set_cpuid = vmx_vcpu_after_set_cpuid,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007675
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007676 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007677
Leonid Shatz326e7422018-11-06 12:14:25 +02007678 .write_l1_tsc_offset = vmx_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007679
Sean Christopherson484014f2020-03-21 13:25:57 -07007680 .load_mmu_pgd = vmx_load_mmu_pgd,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007681
7682 .check_intercept = vmx_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07007683 .handle_exit_irqoff = vmx_handle_exit_irqoff,
Jan Kiszkab6b8a142014-03-07 20:03:12 +01007684
Sean Christophersond264ee02018-08-27 15:21:12 -07007685 .request_immediate_exit = vmx_request_immediate_exit,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007686
7687 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +08007688
7689 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
7690 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
7691 .flush_log_dirty = vmx_flush_log_dirty,
7692 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Wei Huang25462f72015-06-19 15:45:05 +02007693
Feng Wubf9f6ac2015-09-18 22:29:55 +08007694 .pre_block = vmx_pre_block,
7695 .post_block = vmx_post_block,
7696
Wei Huang25462f72015-06-19 15:45:05 +02007697 .pmu_ops = &intel_pmu_ops,
Paolo Bonzini33b22172020-04-17 10:24:18 -04007698 .nested_ops = &vmx_nested_ops,
Feng Wuefc64402015-09-18 22:29:51 +08007699
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007700 .update_pi_irte = pi_update_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007701
7702#ifdef CONFIG_X86_64
7703 .set_hv_timer = vmx_set_hv_timer,
7704 .cancel_hv_timer = vmx_cancel_hv_timer,
7705#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +08007706
7707 .setup_mce = vmx_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007708
Ladi Prosek72d7b372017-10-11 16:54:41 +02007709 .smi_allowed = vmx_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007710 .pre_enter_smm = vmx_pre_enter_smm,
7711 .pre_leave_smm = vmx_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007712 .enable_smi_window = enable_smi_window,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007713
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007714 .can_emulate_instruction = vmx_can_emulate_instruction,
Liran Alon4b9852f2019-08-26 13:24:49 +03007715 .apic_init_signal_blocked = vmx_apic_init_signal_blocked,
Jim Mattson93dff2f2020-05-08 13:36:43 -07007716 .migrate_timers = vmx_migrate_timers,
Alexander Graf3eb90012020-09-25 16:34:20 +02007717
7718 .msr_filter_changed = vmx_msr_filter_changed,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007719};
7720
Avi Kivity6aa8b732006-12-10 02:21:36 -08007721static __init int hardware_setup(void)
7722{
7723 unsigned long host_bndcfgs;
7724 struct desc_ptr dt;
Sean Christopherson703c3352020-03-02 15:57:03 -08007725 int r, i, ept_lpage_level;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007726
Avi Kivity6aa8b732006-12-10 02:21:36 -08007727 store_idt(&dt);
7728 host_idt_base = dt.address;
7729
Sean Christopherson14a61b62020-09-23 11:04:08 -07007730 for (i = 0; i < ARRAY_SIZE(vmx_uret_msrs_list); ++i)
7731 kvm_define_user_return_msr(i, vmx_uret_msrs_list[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007732
7733 if (setup_vmcs_config(&vmcs_config, &vmx_capability) < 0)
7734 return -EIO;
7735
7736 if (boot_cpu_has(X86_FEATURE_NX))
7737 kvm_enable_efer_bits(EFER_NX);
7738
7739 if (boot_cpu_has(X86_FEATURE_MPX)) {
7740 rdmsrl(MSR_IA32_BNDCFGS, host_bndcfgs);
7741 WARN_ONCE(host_bndcfgs, "KVM: BNDCFGS in host will be lost");
7742 }
7743
Sean Christopherson7f5581f2020-03-02 15:56:24 -08007744 if (!cpu_has_vmx_mpx())
Sean Christophersoncfc48182020-03-02 15:56:23 -08007745 supported_xcr0 &= ~(XFEATURE_MASK_BNDREGS |
7746 XFEATURE_MASK_BNDCSR);
7747
Avi Kivity6aa8b732006-12-10 02:21:36 -08007748 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
7749 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
7750 enable_vpid = 0;
7751
7752 if (!cpu_has_vmx_ept() ||
7753 !cpu_has_vmx_ept_4levels() ||
7754 !cpu_has_vmx_ept_mt_wb() ||
7755 !cpu_has_vmx_invept_global())
7756 enable_ept = 0;
7757
7758 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
7759 enable_ept_ad_bits = 0;
7760
7761 if (!cpu_has_vmx_unrestricted_guest() || !enable_ept)
Avi Kivity873a7c42006-12-13 00:34:14 -08007762 enable_unrestricted_guest = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007763
7764 if (!cpu_has_vmx_flexpriority())
7765 flexpriority_enabled = 0;
7766
7767 if (!cpu_has_virtual_nmis())
7768 enable_vnmi = 0;
7769
7770 /*
7771 * set_apic_access_page_addr() is used to reload apic access
7772 * page upon invalidation. No need to do anything if not
7773 * using the APIC_ACCESS_ADDR VMCS field.
7774 */
7775 if (!flexpriority_enabled)
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007776 vmx_x86_ops.set_apic_access_page_addr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007777
7778 if (!cpu_has_vmx_tpr_shadow())
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007779 vmx_x86_ops.update_cr8_intercept = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007780
Avi Kivity6aa8b732006-12-10 02:21:36 -08007781#if IS_ENABLED(CONFIG_HYPERV)
7782 if (ms_hyperv.nested_features & HV_X64_NESTED_GUEST_MAPPING_FLUSH
7783 && enable_ept) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007784 vmx_x86_ops.tlb_remote_flush = hv_remote_flush_tlb;
7785 vmx_x86_ops.tlb_remote_flush_with_range =
Avi Kivity6aa8b732006-12-10 02:21:36 -08007786 hv_remote_flush_tlb_with_range;
7787 }
7788#endif
7789
7790 if (!cpu_has_vmx_ple()) {
7791 ple_gap = 0;
7792 ple_window = 0;
7793 ple_window_grow = 0;
7794 ple_window_max = 0;
7795 ple_window_shrink = 0;
7796 }
7797
7798 if (!cpu_has_vmx_apicv()) {
7799 enable_apicv = 0;
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007800 vmx_x86_ops.sync_pir_to_irr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007801 }
7802
7803 if (cpu_has_vmx_tsc_scaling()) {
7804 kvm_has_tsc_control = true;
7805 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
7806 kvm_tsc_scaling_ratio_frac_bits = 48;
7807 }
7808
7809 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
7810
7811 if (enable_ept)
7812 vmx_enable_tdp();
Sean Christopherson703c3352020-03-02 15:57:03 -08007813
7814 if (!enable_ept)
7815 ept_lpage_level = 0;
7816 else if (cpu_has_vmx_ept_1g_page())
Sean Christopherson3bae0452020-04-27 17:54:22 -07007817 ept_lpage_level = PG_LEVEL_1G;
Sean Christopherson703c3352020-03-02 15:57:03 -08007818 else if (cpu_has_vmx_ept_2m_page())
Sean Christopherson3bae0452020-04-27 17:54:22 -07007819 ept_lpage_level = PG_LEVEL_2M;
Sean Christopherson703c3352020-03-02 15:57:03 -08007820 else
Sean Christopherson3bae0452020-04-27 17:54:22 -07007821 ept_lpage_level = PG_LEVEL_4K;
Sean Christopherson83013052020-07-15 20:41:22 -07007822 kvm_configure_mmu(enable_ept, vmx_get_max_tdp_level(), ept_lpage_level);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007823
7824 /*
7825 * Only enable PML when hardware supports PML feature, and both EPT
7826 * and EPT A/D bit features are enabled -- PML depends on them to work.
7827 */
7828 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
7829 enable_pml = 0;
7830
7831 if (!enable_pml) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007832 vmx_x86_ops.slot_enable_log_dirty = NULL;
7833 vmx_x86_ops.slot_disable_log_dirty = NULL;
7834 vmx_x86_ops.flush_log_dirty = NULL;
7835 vmx_x86_ops.enable_log_dirty_pt_masked = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007836 }
7837
7838 if (!cpu_has_vmx_preemption_timer())
7839 enable_preemption_timer = false;
7840
7841 if (enable_preemption_timer) {
7842 u64 use_timer_freq = 5000ULL * 1000 * 1000;
7843 u64 vmx_msr;
7844
7845 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
7846 cpu_preemption_timer_multi =
7847 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
7848
7849 if (tsc_khz)
7850 use_timer_freq = (u64)tsc_khz * 1000;
7851 use_timer_freq >>= cpu_preemption_timer_multi;
7852
7853 /*
7854 * KVM "disables" the preemption timer by setting it to its max
7855 * value. Don't use the timer if it might cause spurious exits
7856 * at a rate faster than 0.1 Hz (of uninterrupted guest time).
7857 */
7858 if (use_timer_freq > 0xffffffffu / 10)
7859 enable_preemption_timer = false;
7860 }
7861
7862 if (!enable_preemption_timer) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007863 vmx_x86_ops.set_hv_timer = NULL;
7864 vmx_x86_ops.cancel_hv_timer = NULL;
7865 vmx_x86_ops.request_immediate_exit = __kvm_request_immediate_exit;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007866 }
7867
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007868 kvm_set_posted_intr_wakeup_handler(pi_wakeup_handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007869
7870 kvm_mce_cap_supported |= MCG_LMCE_P;
7871
7872 if (pt_mode != PT_MODE_SYSTEM && pt_mode != PT_MODE_HOST_GUEST)
7873 return -EINVAL;
7874 if (!enable_ept || !cpu_has_vmx_intel_pt())
7875 pt_mode = PT_MODE_SYSTEM;
7876
7877 if (nested) {
7878 nested_vmx_setup_ctls_msrs(&vmcs_config.nested,
7879 vmx_capability.ept);
7880
Sean Christopherson6c1c6e52020-05-06 13:46:53 -07007881 r = nested_vmx_hardware_setup(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007882 if (r)
7883 return r;
7884 }
7885
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007886 vmx_set_cpu_caps();
Sean Christopherson66a69502020-03-02 15:56:41 -08007887
Avi Kivity6aa8b732006-12-10 02:21:36 -08007888 r = alloc_kvm_area();
7889 if (r)
7890 nested_vmx_hardware_unsetup();
7891 return r;
7892}
7893
Sean Christophersond008dfd2020-03-21 13:25:56 -07007894static struct kvm_x86_init_ops vmx_init_ops __initdata = {
7895 .cpu_has_kvm_support = cpu_has_kvm_support,
7896 .disabled_by_bios = vmx_disabled_by_bios,
7897 .check_processor_compatibility = vmx_check_processor_compat,
7898 .hardware_setup = hardware_setup,
7899
7900 .runtime_ops = &vmx_x86_ops,
7901};
7902
Avi Kivity6aa8b732006-12-10 02:21:36 -08007903static void vmx_cleanup_l1d_flush(void)
7904{
7905 if (vmx_l1d_flush_pages) {
7906 free_pages((unsigned long)vmx_l1d_flush_pages, L1D_CACHE_ORDER);
7907 vmx_l1d_flush_pages = NULL;
7908 }
7909 /* Restore state so sysfs ignores VMX */
7910 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO;
7911}
7912
7913static void vmx_exit(void)
7914{
7915#ifdef CONFIG_KEXEC_CORE
7916 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
7917 synchronize_rcu();
7918#endif
7919
7920 kvm_exit();
7921
7922#if IS_ENABLED(CONFIG_HYPERV)
7923 if (static_branch_unlikely(&enable_evmcs)) {
7924 int cpu;
7925 struct hv_vp_assist_page *vp_ap;
7926 /*
7927 * Reset everything to support using non-enlightened VMCS
7928 * access later (e.g. when we reload the module with
7929 * enlightened_vmcs=0)
7930 */
7931 for_each_online_cpu(cpu) {
7932 vp_ap = hv_get_vp_assist_page(cpu);
7933
7934 if (!vp_ap)
7935 continue;
7936
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08007937 vp_ap->nested_control.features.directhypercall = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007938 vp_ap->current_nested_vmcs = 0;
7939 vp_ap->enlighten_vmentry = 0;
7940 }
7941
7942 static_branch_disable(&enable_evmcs);
7943 }
7944#endif
7945 vmx_cleanup_l1d_flush();
7946}
7947module_exit(vmx_exit);
7948
7949static int __init vmx_init(void)
7950{
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02007951 int r, cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007952
7953#if IS_ENABLED(CONFIG_HYPERV)
7954 /*
7955 * Enlightened VMCS usage should be recommended and the host needs
7956 * to support eVMCS v1 or above. We can also disable eVMCS support
7957 * with module parameter.
7958 */
7959 if (enlightened_vmcs &&
7960 ms_hyperv.hints & HV_X64_ENLIGHTENED_VMCS_RECOMMENDED &&
7961 (ms_hyperv.nested_features & HV_X64_ENLIGHTENED_VMCS_VERSION) >=
7962 KVM_EVMCS_VERSION) {
7963 int cpu;
7964
7965 /* Check that we have assist pages on all online CPUs */
7966 for_each_online_cpu(cpu) {
7967 if (!hv_get_vp_assist_page(cpu)) {
7968 enlightened_vmcs = false;
7969 break;
7970 }
7971 }
7972
7973 if (enlightened_vmcs) {
7974 pr_info("KVM: vmx: using Hyper-V Enlightened VMCS\n");
7975 static_branch_enable(&enable_evmcs);
7976 }
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08007977
7978 if (ms_hyperv.nested_features & HV_X64_NESTED_DIRECT_FLUSH)
7979 vmx_x86_ops.enable_direct_tlbflush
7980 = hv_enable_direct_tlbflush;
7981
Avi Kivity6aa8b732006-12-10 02:21:36 -08007982 } else {
7983 enlightened_vmcs = false;
7984 }
7985#endif
7986
Sean Christophersond008dfd2020-03-21 13:25:56 -07007987 r = kvm_init(&vmx_init_ops, sizeof(struct vcpu_vmx),
Avi Kivity6aa8b732006-12-10 02:21:36 -08007988 __alignof__(struct vcpu_vmx), THIS_MODULE);
7989 if (r)
7990 return r;
7991
7992 /*
7993 * Must be called after kvm_init() so enable_ept is properly set
7994 * up. Hand the parameter mitigation value in which was stored in
7995 * the pre module init parser. If no parameter was given, it will
7996 * contain 'auto' which will be turned into the default 'cond'
7997 * mitigation mode.
7998 */
Waiman Long19a36d32019-08-26 15:30:23 -04007999 r = vmx_setup_l1d_flush(vmentry_l1d_flush_param);
8000 if (r) {
8001 vmx_exit();
8002 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008003 }
8004
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02008005 for_each_possible_cpu(cpu) {
8006 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07008007
Paolo Bonzinia3ff25f2020-10-24 04:08:37 -04008008 pi_init_cpu(cpu);
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02008009 }
8010
Avi Kivity6aa8b732006-12-10 02:21:36 -08008011#ifdef CONFIG_KEXEC_CORE
8012 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
8013 crash_vmclear_local_loaded_vmcss);
8014#endif
8015 vmx_check_vmcs12_offsets();
8016
Mohammed Gamal3edd6832020-07-10 17:48:11 +02008017 /*
Mohammed Gamalb96e6502020-09-03 16:11:22 +02008018 * Shadow paging doesn't have a (further) performance penalty
8019 * from GUEST_MAXPHYADDR < HOST_MAXPHYADDR so enable it
8020 * by default
Mohammed Gamal3edd6832020-07-10 17:48:11 +02008021 */
Mohammed Gamalb96e6502020-09-03 16:11:22 +02008022 if (!enable_ept)
8023 allow_smaller_maxphyaddr = true;
Mohammed Gamal3edd6832020-07-10 17:48:11 +02008024
Avi Kivity6aa8b732006-12-10 02:21:36 -08008025 return 0;
8026}
8027module_init(vmx_init);