blob: 4551a7e80ebc31af00489b8302e9972607228cbf [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/frame.h>
17#include <linux/highmem.h>
18#include <linux/hrtimer.h>
19#include <linux/kernel.h>
Avi Kivityedf88412007-12-16 11:02:48 +020020#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080021#include <linux/module.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020022#include <linux/moduleparam.h>
Josh Triplette9bda3b2012-03-20 23:33:51 -070023#include <linux/mod_devicetable.h>
Sean Christopherson199b1182018-12-03 13:52:53 -080024#include <linux/mm.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
Sean Christopherson3de63472018-07-13 08:42:30 -0700131#define KVM_VM_CR0_ALWAYS_OFF (X86_CR0_NW | X86_CR0_CD)
Sean Christopherson1706bd02018-03-05 12:04:38 -0800132#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR0_NE
133#define KVM_VM_CR0_ALWAYS_ON \
134 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | \
135 X86_CR0_WP | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200136
Sean Christopherson5dc1f042018-03-05 12:04:39 -0800137#define KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR4_VMXE
Avi Kivitycdc0e242009-12-06 17:21:14 +0200138#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
139#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
140
Avi Kivity78ac8b42010-04-08 18:19:35 +0300141#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
142
Chao Pengbf8c55d2018-10-24 16:05:14 +0800143#define MSR_IA32_RTIT_STATUS_MASK (~(RTIT_STATUS_FILTEREN | \
144 RTIT_STATUS_CONTEXTEN | RTIT_STATUS_TRIGGEREN | \
145 RTIT_STATUS_ERROR | RTIT_STATUS_STOPPED | \
146 RTIT_STATUS_BYTECNT))
147
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800148/*
Alexander Graf3eb90012020-09-25 16:34:20 +0200149 * List of MSRs that can be directly passed to the guest.
150 * In addition to these x2apic and PT MSRs are handled specially.
151 */
152static u32 vmx_possible_passthrough_msrs[MAX_POSSIBLE_PASSTHROUGH_MSRS] = {
153 MSR_IA32_SPEC_CTRL,
154 MSR_IA32_PRED_CMD,
155 MSR_IA32_TSC,
156 MSR_FS_BASE,
157 MSR_GS_BASE,
158 MSR_KERNEL_GS_BASE,
159 MSR_IA32_SYSENTER_CS,
160 MSR_IA32_SYSENTER_ESP,
161 MSR_IA32_SYSENTER_EIP,
162 MSR_CORE_C1_RES,
163 MSR_CORE_C3_RESIDENCY,
164 MSR_CORE_C6_RESIDENCY,
165 MSR_CORE_C7_RESIDENCY,
166};
167
168/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800169 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
170 * ple_gap: upper bound on the amount of time between two successive
171 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500172 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800173 * ple_window: upper bound on the amount of time a guest is allowed to execute
174 * in a PAUSE loop. Tests indicate that most spinlocks are held for
175 * less than 2^12 cycles
176 * Time is measured based on a counter that runs at the same rate as the TSC,
177 * refer SDM volume 3b section 21.6.13 & 22.1.3.
178 */
Babu Mogerc8e88712018-03-16 16:37:24 -0400179static unsigned int ple_gap = KVM_DEFAULT_PLE_GAP;
Luiz Capitulinoa87c99e2018-11-23 12:02:14 -0500180module_param(ple_gap, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200181
Babu Moger7fbc85a2018-03-16 16:37:22 -0400182static unsigned int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
183module_param(ple_window, uint, 0444);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800184
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200185/* Default doubles per-vcpu window every exit. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400186static unsigned int ple_window_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400187module_param(ple_window_grow, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200188
189/* Default resets per-vcpu window every exit to ple_window. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400190static unsigned int ple_window_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400191module_param(ple_window_shrink, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200192
193/* Default is to compute the maximum so we can never overflow. */
Babu Moger7fbc85a2018-03-16 16:37:22 -0400194static unsigned int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
195module_param(ple_window_max, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200196
Chao Pengf99e3da2018-10-24 16:05:10 +0800197/* Default is SYSTEM mode, 1 for host-guest mode */
198int __read_mostly pt_mode = PT_MODE_SYSTEM;
199module_param(pt_mode, int, S_IRUGO);
200
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200201static DEFINE_STATIC_KEY_FALSE(vmx_l1d_should_flush);
Nicolai Stange427362a2018-07-21 22:25:00 +0200202static DEFINE_STATIC_KEY_FALSE(vmx_l1d_flush_cond);
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200203static DEFINE_MUTEX(vmx_l1d_flush_mutex);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200204
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200205/* Storage for pre module init parameter parsing */
206static enum vmx_l1d_flush_state __read_mostly vmentry_l1d_flush_param = VMENTER_L1D_FLUSH_AUTO;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200207
208static const struct {
209 const char *option;
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200210 bool for_parse;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200211} vmentry_l1d_param[] = {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200212 [VMENTER_L1D_FLUSH_AUTO] = {"auto", true},
213 [VMENTER_L1D_FLUSH_NEVER] = {"never", true},
214 [VMENTER_L1D_FLUSH_COND] = {"cond", true},
215 [VMENTER_L1D_FLUSH_ALWAYS] = {"always", true},
216 [VMENTER_L1D_FLUSH_EPT_DISABLED] = {"EPT disabled", false},
217 [VMENTER_L1D_FLUSH_NOT_REQUIRED] = {"not required", false},
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200218};
219
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200220#define L1D_CACHE_ORDER 4
221static void *vmx_l1d_flush_pages;
222
223static int vmx_setup_l1d_flush(enum vmx_l1d_flush_state l1tf)
224{
225 struct page *page;
Nicolai Stange288d1522018-07-18 19:07:38 +0200226 unsigned int i;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200227
Waiman Long19a36d32019-08-26 15:30:23 -0400228 if (!boot_cpu_has_bug(X86_BUG_L1TF)) {
229 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_NOT_REQUIRED;
230 return 0;
231 }
232
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200233 if (!enable_ept) {
234 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_EPT_DISABLED;
235 return 0;
236 }
237
Yi Wangd806afa2018-08-16 13:42:39 +0800238 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES)) {
239 u64 msr;
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200240
Yi Wangd806afa2018-08-16 13:42:39 +0800241 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, msr);
242 if (msr & ARCH_CAP_SKIP_VMENTRY_L1DFLUSH) {
243 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_NOT_REQUIRED;
244 return 0;
245 }
246 }
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200247
Jiri Kosinad90a7a02018-07-13 16:23:25 +0200248 /* If set to auto use the default l1tf mitigation method */
249 if (l1tf == VMENTER_L1D_FLUSH_AUTO) {
250 switch (l1tf_mitigation) {
251 case L1TF_MITIGATION_OFF:
252 l1tf = VMENTER_L1D_FLUSH_NEVER;
253 break;
254 case L1TF_MITIGATION_FLUSH_NOWARN:
255 case L1TF_MITIGATION_FLUSH:
256 case L1TF_MITIGATION_FLUSH_NOSMT:
257 l1tf = VMENTER_L1D_FLUSH_COND;
258 break;
259 case L1TF_MITIGATION_FULL:
260 case L1TF_MITIGATION_FULL_FORCE:
261 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
262 break;
263 }
264 } else if (l1tf_mitigation == L1TF_MITIGATION_FULL_FORCE) {
265 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
266 }
267
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200268 if (l1tf != VMENTER_L1D_FLUSH_NEVER && !vmx_l1d_flush_pages &&
269 !boot_cpu_has(X86_FEATURE_FLUSH_L1D)) {
Ben Gardon41836832019-02-11 11:02:52 -0800270 /*
271 * This allocation for vmx_l1d_flush_pages is not tied to a VM
272 * lifetime and so should not be charged to a memcg.
273 */
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200274 page = alloc_pages(GFP_KERNEL, L1D_CACHE_ORDER);
275 if (!page)
276 return -ENOMEM;
277 vmx_l1d_flush_pages = page_address(page);
Nicolai Stange288d1522018-07-18 19:07:38 +0200278
279 /*
280 * Initialize each page with a different pattern in
281 * order to protect against KSM in the nested
282 * virtualization case.
283 */
284 for (i = 0; i < 1u << L1D_CACHE_ORDER; ++i) {
285 memset(vmx_l1d_flush_pages + i * PAGE_SIZE, i + 1,
286 PAGE_SIZE);
287 }
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200288 }
289
290 l1tf_vmx_mitigation = l1tf;
291
Thomas Gleixner895ae472018-07-13 16:23:22 +0200292 if (l1tf != VMENTER_L1D_FLUSH_NEVER)
293 static_branch_enable(&vmx_l1d_should_flush);
294 else
295 static_branch_disable(&vmx_l1d_should_flush);
Thomas Gleixner4c6523e2018-07-13 16:23:20 +0200296
Nicolai Stange427362a2018-07-21 22:25:00 +0200297 if (l1tf == VMENTER_L1D_FLUSH_COND)
298 static_branch_enable(&vmx_l1d_flush_cond);
Thomas Gleixner895ae472018-07-13 16:23:22 +0200299 else
Nicolai Stange427362a2018-07-21 22:25:00 +0200300 static_branch_disable(&vmx_l1d_flush_cond);
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200301 return 0;
302}
303
304static int vmentry_l1d_flush_parse(const char *s)
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200305{
306 unsigned int i;
307
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200308 if (s) {
309 for (i = 0; i < ARRAY_SIZE(vmentry_l1d_param); i++) {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200310 if (vmentry_l1d_param[i].for_parse &&
311 sysfs_streq(s, vmentry_l1d_param[i].option))
312 return i;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200313 }
314 }
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200315 return -EINVAL;
316}
317
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200318static int vmentry_l1d_flush_set(const char *s, const struct kernel_param *kp)
319{
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200320 int l1tf, ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200321
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200322 l1tf = vmentry_l1d_flush_parse(s);
323 if (l1tf < 0)
324 return l1tf;
325
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200326 if (!boot_cpu_has(X86_BUG_L1TF))
327 return 0;
328
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200329 /*
330 * Has vmx_init() run already? If not then this is the pre init
331 * parameter parsing. In that case just store the value and let
332 * vmx_init() do the proper setup after enable_ept has been
333 * established.
334 */
335 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_AUTO) {
336 vmentry_l1d_flush_param = l1tf;
337 return 0;
338 }
339
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200340 mutex_lock(&vmx_l1d_flush_mutex);
341 ret = vmx_setup_l1d_flush(l1tf);
342 mutex_unlock(&vmx_l1d_flush_mutex);
343 return ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200344}
345
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200346static int vmentry_l1d_flush_get(char *s, const struct kernel_param *kp)
347{
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200348 if (WARN_ON_ONCE(l1tf_vmx_mitigation >= ARRAY_SIZE(vmentry_l1d_param)))
349 return sprintf(s, "???\n");
350
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200351 return sprintf(s, "%s\n", vmentry_l1d_param[l1tf_vmx_mitigation].option);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200352}
353
354static const struct kernel_param_ops vmentry_l1d_flush_ops = {
355 .set = vmentry_l1d_flush_set,
356 .get = vmentry_l1d_flush_get,
357};
Thomas Gleixner895ae472018-07-13 16:23:22 +0200358module_param_cb(vmentry_l1d_flush, &vmentry_l1d_flush_ops, NULL, 0644);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200359
Gleb Natapovd99e4152012-12-20 16:57:45 +0200360static u32 vmx_segment_access_rights(struct kvm_segment *var);
Aaron Lewis476c9bd2020-09-25 16:34:18 +0200361static __always_inline void vmx_disable_intercept_for_msr(struct kvm_vcpu *vcpu,
Ashok Raj15d45072018-02-01 22:59:43 +0100362 u32 msr, int type);
Avi Kivity75880a02007-06-20 11:20:04 +0300363
Sean Christopherson453eafb2018-12-20 12:25:17 -0800364void vmx_vmexit(void);
365
Sean Christopherson52a9fcb2019-07-19 13:41:07 -0700366#define vmx_insn_failed(fmt...) \
367do { \
368 WARN_ONCE(1, fmt); \
369 pr_warn_ratelimited(fmt); \
370} while (0)
371
Sean Christopherson6e202092019-07-19 13:41:08 -0700372asmlinkage void vmread_error(unsigned long field, bool fault)
373{
374 if (fault)
375 kvm_spurious_fault();
376 else
377 vmx_insn_failed("kvm: vmread failed: field=%lx\n", field);
378}
379
Sean Christopherson52a9fcb2019-07-19 13:41:07 -0700380noinline void vmwrite_error(unsigned long field, unsigned long value)
381{
382 vmx_insn_failed("kvm: vmwrite failed: field=%lx val=%lx err=%d\n",
383 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
384}
385
386noinline void vmclear_error(struct vmcs *vmcs, u64 phys_addr)
387{
388 vmx_insn_failed("kvm: vmclear failed: %p/%llx\n", vmcs, phys_addr);
389}
390
391noinline void vmptrld_error(struct vmcs *vmcs, u64 phys_addr)
392{
393 vmx_insn_failed("kvm: vmptrld failed: %p/%llx\n", vmcs, phys_addr);
394}
395
396noinline void invvpid_error(unsigned long ext, u16 vpid, gva_t gva)
397{
398 vmx_insn_failed("kvm: invvpid failed: ext=0x%lx vpid=%u gva=0x%lx\n",
399 ext, vpid, gva);
400}
401
402noinline void invept_error(unsigned long ext, u64 eptp, gpa_t gpa)
403{
404 vmx_insn_failed("kvm: invept failed: ext=0x%lx eptp=%llx gpa=0x%llx\n",
405 ext, eptp, gpa);
406}
407
Avi Kivity6aa8b732006-12-10 02:21:36 -0800408static DEFINE_PER_CPU(struct vmcs *, vmxarea);
Sean Christopherson75edce82018-12-03 13:53:06 -0800409DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300410/*
411 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
412 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
413 */
414static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800415
Sheng Yang2384d2b2008-01-17 15:14:33 +0800416static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
417static DEFINE_SPINLOCK(vmx_vpid_lock);
418
Sean Christopherson3077c192018-12-03 13:53:02 -0800419struct vmcs_config vmcs_config;
420struct vmx_capability vmx_capability;
Sheng Yangd56f5462008-04-25 10:13:16 +0800421
Avi Kivity6aa8b732006-12-10 02:21:36 -0800422#define VMX_SEGMENT_FIELD(seg) \
423 [VCPU_SREG_##seg] = { \
424 .selector = GUEST_##seg##_SELECTOR, \
425 .base = GUEST_##seg##_BASE, \
426 .limit = GUEST_##seg##_LIMIT, \
427 .ar_bytes = GUEST_##seg##_AR_BYTES, \
428 }
429
Mathias Krause772e0312012-08-30 01:30:19 +0200430static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800431 unsigned selector;
432 unsigned base;
433 unsigned limit;
434 unsigned ar_bytes;
435} kvm_vmx_segment_fields[] = {
436 VMX_SEGMENT_FIELD(CS),
437 VMX_SEGMENT_FIELD(DS),
438 VMX_SEGMENT_FIELD(ES),
439 VMX_SEGMENT_FIELD(FS),
440 VMX_SEGMENT_FIELD(GS),
441 VMX_SEGMENT_FIELD(SS),
442 VMX_SEGMENT_FIELD(TR),
443 VMX_SEGMENT_FIELD(LDTR),
444};
445
Sean Christophersonec0241f2020-04-15 13:34:52 -0700446static inline void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
447{
448 vmx->segment_cache.bitmask = 0;
449}
450
Sean Christopherson23420802019-04-19 22:50:57 -0700451static unsigned long host_idt_base;
Avi Kivity26bb0982009-09-07 11:14:12 +0300452
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300453/*
Jim Mattson898a8112018-12-05 15:28:59 -0800454 * Though SYSCALL is only supported in 64-bit mode on Intel CPUs, kvm
455 * will emulate SYSCALL in legacy mode if the vendor string in guest
456 * CPUID.0:{EBX,ECX,EDX} is "AuthenticAMD" or "AMDisbetter!" To
457 * support this emulation, IA32_STAR must always be included in
Sean Christopherson14a61b62020-09-23 11:04:08 -0700458 * vmx_uret_msrs_list[], even in i386 builds.
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300459 */
Sean Christopherson14a61b62020-09-23 11:04:08 -0700460const u32 vmx_uret_msrs_list[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800461#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300462 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800463#endif
Brian Gerst8c065852010-07-17 09:03:26 -0400464 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Paolo Bonzinic11f83e2019-11-18 12:23:00 -0500465 MSR_IA32_TSX_CTRL,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800466};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800467
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +0100468#if IS_ENABLED(CONFIG_HYPERV)
469static bool __read_mostly enlightened_vmcs = true;
470module_param(enlightened_vmcs, bool, 0444);
471
Tianyu Lan877ad952018-07-19 08:40:23 +0000472/* check_ept_pointer() should be under protection of ept_pointer_lock. */
473static void check_ept_pointer_match(struct kvm *kvm)
474{
475 struct kvm_vcpu *vcpu;
476 u64 tmp_eptp = INVALID_PAGE;
477 int i;
478
479 kvm_for_each_vcpu(i, vcpu, kvm) {
480 if (!VALID_PAGE(tmp_eptp)) {
481 tmp_eptp = to_vmx(vcpu)->ept_pointer;
482 } else if (tmp_eptp != to_vmx(vcpu)->ept_pointer) {
483 to_kvm_vmx(kvm)->ept_pointers_match
484 = EPT_POINTERS_MISMATCH;
485 return;
486 }
487 }
488
489 to_kvm_vmx(kvm)->ept_pointers_match = EPT_POINTERS_MATCH;
490}
491
Yi Wang8997f652019-01-21 15:27:05 +0800492static int kvm_fill_hv_flush_list_func(struct hv_guest_mapping_flush_list *flush,
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800493 void *data)
494{
495 struct kvm_tlb_range *range = data;
496
497 return hyperv_fill_flush_guest_mapping_list(flush, range->start_gfn,
498 range->pages);
499}
500
501static inline int __hv_remote_flush_tlb_with_range(struct kvm *kvm,
502 struct kvm_vcpu *vcpu, struct kvm_tlb_range *range)
503{
504 u64 ept_pointer = to_vmx(vcpu)->ept_pointer;
505
506 /*
507 * FLUSH_GUEST_PHYSICAL_ADDRESS_SPACE hypercall needs address
508 * of the base of EPT PML4 table, strip off EPT configuration
509 * information.
510 */
511 if (range)
512 return hyperv_flush_guest_mapping_range(ept_pointer & PAGE_MASK,
513 kvm_fill_hv_flush_list_func, (void *)range);
514 else
515 return hyperv_flush_guest_mapping(ept_pointer & PAGE_MASK);
516}
517
518static int hv_remote_flush_tlb_with_range(struct kvm *kvm,
519 struct kvm_tlb_range *range)
Tianyu Lan877ad952018-07-19 08:40:23 +0000520{
Lan Tianyua5c214d2018-10-13 22:54:05 +0800521 struct kvm_vcpu *vcpu;
Lan Tianyub7c1c222019-01-04 15:20:44 +0800522 int ret = 0, i;
Tianyu Lan877ad952018-07-19 08:40:23 +0000523
524 spin_lock(&to_kvm_vmx(kvm)->ept_pointer_lock);
525
526 if (to_kvm_vmx(kvm)->ept_pointers_match == EPT_POINTERS_CHECK)
527 check_ept_pointer_match(kvm);
528
529 if (to_kvm_vmx(kvm)->ept_pointers_match != EPT_POINTERS_MATCH) {
Lan Tianyu53963a72018-12-06 15:34:36 +0800530 kvm_for_each_vcpu(i, vcpu, kvm) {
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800531 /* If ept_pointer is invalid pointer, bypass flush request. */
532 if (VALID_PAGE(to_vmx(vcpu)->ept_pointer))
533 ret |= __hv_remote_flush_tlb_with_range(
534 kvm, vcpu, range);
Lan Tianyu53963a72018-12-06 15:34:36 +0800535 }
Lan Tianyua5c214d2018-10-13 22:54:05 +0800536 } else {
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800537 ret = __hv_remote_flush_tlb_with_range(kvm,
538 kvm_get_vcpu(kvm, 0), range);
Tianyu Lan877ad952018-07-19 08:40:23 +0000539 }
Tianyu Lan877ad952018-07-19 08:40:23 +0000540
Tianyu Lan877ad952018-07-19 08:40:23 +0000541 spin_unlock(&to_kvm_vmx(kvm)->ept_pointer_lock);
542 return ret;
543}
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800544static int hv_remote_flush_tlb(struct kvm *kvm)
545{
546 return hv_remote_flush_tlb_with_range(kvm, NULL);
547}
548
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800549static int hv_enable_direct_tlbflush(struct kvm_vcpu *vcpu)
550{
551 struct hv_enlightened_vmcs *evmcs;
552 struct hv_partition_assist_pg **p_hv_pa_pg =
553 &vcpu->kvm->arch.hyperv.hv_pa_pg;
554 /*
555 * Synthetic VM-Exit is not enabled in current code and so All
556 * evmcs in singe VM shares same assist page.
557 */
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200558 if (!*p_hv_pa_pg)
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800559 *p_hv_pa_pg = kzalloc(PAGE_SIZE, GFP_KERNEL);
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200560
561 if (!*p_hv_pa_pg)
562 return -ENOMEM;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800563
564 evmcs = (struct hv_enlightened_vmcs *)to_vmx(vcpu)->loaded_vmcs->vmcs;
565
566 evmcs->partition_assist_page =
567 __pa(*p_hv_pa_pg);
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200568 evmcs->hv_vm_id = (unsigned long)vcpu->kvm;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800569 evmcs->hv_enlightenments_control.nested_flush_hypercall = 1;
570
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800571 return 0;
572}
573
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +0100574#endif /* IS_ENABLED(CONFIG_HYPERV) */
575
Yunhong Jiang64672c92016-06-13 14:19:59 -0700576/*
577 * Comment's format: document - errata name - stepping - processor name.
578 * Refer from
579 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
580 */
581static u32 vmx_preemption_cpu_tfms[] = {
582/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
5830x000206E6,
584/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
585/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
586/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
5870x00020652,
588/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
5890x00020655,
590/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
591/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
592/*
593 * 320767.pdf - AAP86 - B1 -
594 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
595 */
5960x000106E5,
597/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
5980x000106A0,
599/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
6000x000106A1,
601/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
6020x000106A4,
603 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
604 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
605 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
6060x000106A5,
Wei Huang3d82c562018-12-03 14:13:32 -0600607 /* Xeon E3-1220 V2 */
6080x000306A8,
Yunhong Jiang64672c92016-06-13 14:19:59 -0700609};
610
611static inline bool cpu_has_broken_vmx_preemption_timer(void)
612{
613 u32 eax = cpuid_eax(0x00000001), i;
614
615 /* Clear the reserved bits */
616 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +0000617 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -0700618 if (eax == vmx_preemption_cpu_tfms[i])
619 return true;
620
621 return false;
622}
623
Paolo Bonzini35754c92015-07-29 12:05:37 +0200624static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800625{
Paolo Bonzini35754c92015-07-29 12:05:37 +0200626 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800627}
628
Sheng Yang04547152009-04-01 15:52:31 +0800629static inline bool report_flexpriority(void)
630{
631 return flexpriority_enabled;
632}
633
Alexander Graf3eb90012020-09-25 16:34:20 +0200634static int possible_passthrough_msr_slot(u32 msr)
635{
636 u32 i;
637
638 for (i = 0; i < ARRAY_SIZE(vmx_possible_passthrough_msrs); i++)
639 if (vmx_possible_passthrough_msrs[i] == msr)
640 return i;
641
642 return -ENOENT;
643}
644
645static bool is_valid_passthrough_msr(u32 msr)
646{
647 bool r;
648
649 switch (msr) {
650 case 0x800 ... 0x8ff:
651 /* x2APIC MSRs. These are handled in vmx_update_msr_bitmap_x2apic() */
652 return true;
653 case MSR_IA32_RTIT_STATUS:
654 case MSR_IA32_RTIT_OUTPUT_BASE:
655 case MSR_IA32_RTIT_OUTPUT_MASK:
656 case MSR_IA32_RTIT_CR3_MATCH:
657 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
658 /* PT MSRs. These are handled in pt_update_intercept_for_msr() */
659 return true;
660 }
661
662 r = possible_passthrough_msr_slot(msr) != -ENOENT;
663
664 WARN(!r, "Invalid MSR %x, please adapt vmx_possible_passthrough_msrs[]", msr);
665
666 return r;
667}
668
Sean Christopherson1e7a4832020-09-23 11:04:02 -0700669static inline int __vmx_find_uret_msr(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800670{
671 int i;
672
Sean Christophersonfbc18002020-09-23 11:03:59 -0700673 for (i = 0; i < vmx->nr_uret_msrs; ++i)
Sean Christopherson802145c2020-09-23 11:04:09 -0700674 if (vmx_uret_msrs_list[vmx->guest_uret_msrs[i].slot] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300675 return i;
676 return -1;
677}
678
Sean Christophersond85a8032020-09-23 11:04:06 -0700679struct vmx_uret_msr *vmx_find_uret_msr(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300680{
681 int i;
682
Sean Christopherson1e7a4832020-09-23 11:04:02 -0700683 i = __vmx_find_uret_msr(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300684 if (i >= 0)
Sean Christophersoneb3db1b2020-09-23 11:03:58 -0700685 return &vmx->guest_uret_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000686 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800687}
688
Sean Christopherson7bf662b2020-09-23 11:04:07 -0700689static int vmx_set_guest_uret_msr(struct vcpu_vmx *vmx,
690 struct vmx_uret_msr *msr, u64 data)
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500691{
692 int ret = 0;
693
694 u64 old_msr_data = msr->data;
695 msr->data = data;
Sean Christophersone9bb1ae2020-09-23 11:04:00 -0700696 if (msr - vmx->guest_uret_msrs < vmx->nr_active_uret_msrs) {
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500697 preempt_disable();
Sean Christopherson802145c2020-09-23 11:04:09 -0700698 ret = kvm_set_user_return_msr(msr->slot, msr->data, msr->mask);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500699 preempt_enable();
700 if (ret)
701 msr->data = old_msr_data;
702 }
703 return ret;
704}
705
Dave Young2965faa2015-09-09 15:38:55 -0700706#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800707static void crash_vmclear_local_loaded_vmcss(void)
708{
709 int cpu = raw_smp_processor_id();
710 struct loaded_vmcs *v;
711
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800712 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
713 loaded_vmcss_on_cpu_link)
714 vmcs_clear(v->vmcs);
715}
Dave Young2965faa2015-09-09 15:38:55 -0700716#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800717
Nadav Har'Eld462b812011-05-24 15:26:10 +0300718static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800719{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300720 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800721 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800722
Nadav Har'Eld462b812011-05-24 15:26:10 +0300723 if (loaded_vmcs->cpu != cpu)
724 return; /* vcpu migration can race with cpu offline */
725 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800726 per_cpu(current_vmcs, cpu) = NULL;
Sean Christopherson31603d42020-03-21 12:37:49 -0700727
728 vmcs_clear(loaded_vmcs->vmcs);
729 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
730 vmcs_clear(loaded_vmcs->shadow_vmcs);
731
Nadav Har'Eld462b812011-05-24 15:26:10 +0300732 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +0800733
734 /*
Sean Christopherson31603d42020-03-21 12:37:49 -0700735 * Ensure all writes to loaded_vmcs, including deleting it from its
736 * current percpu list, complete before setting loaded_vmcs->vcpu to
737 * -1, otherwise a different cpu can see vcpu == -1 first and add
738 * loaded_vmcs to its percpu list before it's deleted from this cpu's
739 * list. Pairs with the smp_rmb() in vmx_vcpu_load_vmcs().
Xiao Guangrong5a560f82012-11-28 20:54:14 +0800740 */
741 smp_wmb();
742
Sean Christopherson31603d42020-03-21 12:37:49 -0700743 loaded_vmcs->cpu = -1;
744 loaded_vmcs->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800745}
746
Sean Christopherson89b0c9f2018-12-03 13:53:07 -0800747void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800748{
Xiao Guangronge6c7d322012-11-28 20:53:15 +0800749 int cpu = loaded_vmcs->cpu;
750
751 if (cpu != -1)
752 smp_call_function_single(cpu,
753 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800754}
755
Avi Kivity2fb92db2011-04-27 19:42:18 +0300756static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
757 unsigned field)
758{
759 bool ret;
760 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
761
Sean Christophersoncb3c1e22019-09-27 14:45:22 -0700762 if (!kvm_register_is_available(&vmx->vcpu, VCPU_EXREG_SEGMENTS)) {
763 kvm_register_mark_available(&vmx->vcpu, VCPU_EXREG_SEGMENTS);
Avi Kivity2fb92db2011-04-27 19:42:18 +0300764 vmx->segment_cache.bitmask = 0;
765 }
766 ret = vmx->segment_cache.bitmask & mask;
767 vmx->segment_cache.bitmask |= mask;
768 return ret;
769}
770
771static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
772{
773 u16 *p = &vmx->segment_cache.seg[seg].selector;
774
775 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
776 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
777 return *p;
778}
779
780static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
781{
782 ulong *p = &vmx->segment_cache.seg[seg].base;
783
784 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
785 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
786 return *p;
787}
788
789static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
790{
791 u32 *p = &vmx->segment_cache.seg[seg].limit;
792
793 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
794 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
795 return *p;
796}
797
798static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
799{
800 u32 *p = &vmx->segment_cache.seg[seg].ar;
801
802 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
803 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
804 return *p;
805}
806
Sean Christopherson97b7ead2018-12-03 13:53:16 -0800807void update_exception_bitmap(struct kvm_vcpu *vcpu)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300808{
809 u32 eb;
810
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100811 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -0800812 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Liran Alon9e869482018-03-12 13:12:51 +0200813 /*
814 * Guest access to VMware backdoor ports could legitimately
815 * trigger #GP because of TSS I/O permission bitmap.
816 * We intercept those #GP and allow access to them anyway
817 * as VMware does.
818 */
819 if (enable_vmware_backdoor)
820 eb |= (1u << GP_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100821 if ((vcpu->guest_debug &
822 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
823 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
824 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300825 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300826 eb = ~0;
Paolo Bonzinia0c13432020-07-10 17:48:08 +0200827 if (!vmx_need_pf_intercept(vcpu))
Miaohe Lin49f933d2020-02-27 11:20:54 +0800828 eb &= ~(1u << PF_VECTOR);
Nadav Har'El36cf24e2011-05-25 23:15:08 +0300829
830 /* When we are running a nested L2 guest and L1 specified for it a
831 * certain exception bitmap, we must trap the same exceptions and pass
832 * them to L1. When running L2, we will only handle the exceptions
833 * specified above if L1 did not want them.
834 */
835 if (is_guest_mode(vcpu))
836 eb |= get_vmcs12(vcpu)->exception_bitmap;
837
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300838 vmcs_write32(EXCEPTION_BITMAP, eb);
839}
840
Ashok Raj15d45072018-02-01 22:59:43 +0100841/*
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100842 * Check if MSR is intercepted for currently loaded MSR bitmap.
843 */
844static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr)
845{
846 unsigned long *msr_bitmap;
847 int f = sizeof(unsigned long);
848
849 if (!cpu_has_vmx_msr_bitmap())
850 return true;
851
852 msr_bitmap = to_vmx(vcpu)->loaded_vmcs->msr_bitmap;
853
854 if (msr <= 0x1fff) {
855 return !!test_bit(msr, msr_bitmap + 0x800 / f);
856 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
857 msr &= 0x1fff;
858 return !!test_bit(msr, msr_bitmap + 0xc00 / f);
859 }
860
861 return true;
862}
863
Gleb Natapov2961e8762013-11-25 15:37:13 +0200864static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
865 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200866{
Gleb Natapov2961e8762013-11-25 15:37:13 +0200867 vm_entry_controls_clearbit(vmx, entry);
868 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200869}
870
Sean Christophersona128a932020-09-23 11:03:57 -0700871int vmx_find_loadstore_msr_slot(struct vmx_msrs *m, u32 msr)
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400872{
873 unsigned int i;
874
875 for (i = 0; i < m->nr; ++i) {
876 if (m->val[i].index == msr)
877 return i;
878 }
879 return -ENOENT;
880}
881
Avi Kivity61d2ef22010-04-28 16:40:38 +0300882static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
883{
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400884 int i;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300885 struct msr_autoload *m = &vmx->msr_autoload;
886
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200887 switch (msr) {
888 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800889 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200890 clear_atomic_switch_msr_special(vmx,
891 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200892 VM_EXIT_LOAD_IA32_EFER);
893 return;
894 }
895 break;
896 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800897 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200898 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200899 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
900 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
901 return;
902 }
903 break;
Avi Kivity110312c2010-12-21 12:54:20 +0200904 }
Sean Christophersona128a932020-09-23 11:03:57 -0700905 i = vmx_find_loadstore_msr_slot(&m->guest, msr);
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400906 if (i < 0)
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400907 goto skip_guest;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400908 --m->guest.nr;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400909 m->guest.val[i] = m->guest.val[m->guest.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400910 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Avi Kivity110312c2010-12-21 12:54:20 +0200911
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400912skip_guest:
Sean Christophersona128a932020-09-23 11:03:57 -0700913 i = vmx_find_loadstore_msr_slot(&m->host, msr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400914 if (i < 0)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300915 return;
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400916
917 --m->host.nr;
918 m->host.val[i] = m->host.val[m->host.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400919 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300920}
921
Gleb Natapov2961e8762013-11-25 15:37:13 +0200922static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
923 unsigned long entry, unsigned long exit,
924 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
925 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200926{
927 vmcs_write64(guest_val_vmcs, guest_val);
Sean Christopherson5a5e8a12018-09-26 09:23:56 -0700928 if (host_val_vmcs != HOST_IA32_EFER)
929 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +0200930 vm_entry_controls_setbit(vmx, entry);
931 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200932}
933
Avi Kivity61d2ef22010-04-28 16:40:38 +0300934static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400935 u64 guest_val, u64 host_val, bool entry_only)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300936{
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400937 int i, j = 0;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300938 struct msr_autoload *m = &vmx->msr_autoload;
939
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200940 switch (msr) {
941 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800942 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200943 add_atomic_switch_msr_special(vmx,
944 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200945 VM_EXIT_LOAD_IA32_EFER,
946 GUEST_IA32_EFER,
947 HOST_IA32_EFER,
948 guest_val, host_val);
949 return;
950 }
951 break;
952 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800953 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200954 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200955 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
956 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
957 GUEST_IA32_PERF_GLOBAL_CTRL,
958 HOST_IA32_PERF_GLOBAL_CTRL,
959 guest_val, host_val);
960 return;
961 }
962 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +0100963 case MSR_IA32_PEBS_ENABLE:
964 /* PEBS needs a quiescent period after being disabled (to write
965 * a record). Disabling PEBS through VMX MSR swapping doesn't
966 * provide that period, so a CPU could write host's record into
967 * guest's memory.
968 */
969 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +0200970 }
971
Sean Christophersona128a932020-09-23 11:03:57 -0700972 i = vmx_find_loadstore_msr_slot(&m->guest, msr);
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400973 if (!entry_only)
Sean Christophersona128a932020-09-23 11:03:57 -0700974 j = vmx_find_loadstore_msr_slot(&m->host, msr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300975
Sean Christophersonce833b22020-09-23 11:03:56 -0700976 if ((i < 0 && m->guest.nr == MAX_NR_LOADSTORE_MSRS) ||
977 (j < 0 && m->host.nr == MAX_NR_LOADSTORE_MSRS)) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +0200978 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +0200979 "Can't add msr %x\n", msr);
980 return;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300981 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400982 if (i < 0) {
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400983 i = m->guest.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400984 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400985 }
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400986 m->guest.val[i].index = msr;
987 m->guest.val[i].value = guest_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300988
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400989 if (entry_only)
990 return;
991
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400992 if (j < 0) {
993 j = m->host.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400994 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300995 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400996 m->host.val[j].index = msr;
997 m->host.val[j].value = host_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300998}
999
Sean Christopherson86e3e492020-09-23 11:04:04 -07001000static bool update_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +03001001{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001002 u64 guest_efer = vmx->vcpu.arch.efer;
1003 u64 ignore_bits = 0;
Sean Christopherson86e3e492020-09-23 11:04:04 -07001004 int i;
Eddie Dong2cc51562007-05-21 07:28:09 +03001005
Paolo Bonzini9167ab72019-10-27 16:23:23 +01001006 /* Shadow paging assumes NX to be available. */
1007 if (!enable_ept)
1008 guest_efer |= EFER_NX;
Roel Kluin3a34a882009-08-04 02:08:45 -07001009
Avi Kivity51c6cf62007-08-29 03:48:05 +03001010 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001011 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03001012 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001013 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001014#ifdef CONFIG_X86_64
1015 ignore_bits |= EFER_LMA | EFER_LME;
1016 /* SCE is meaningful only in long mode on Intel */
1017 if (guest_efer & EFER_LMA)
1018 ignore_bits &= ~(u64)EFER_SCE;
1019#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03001020
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08001021 /*
1022 * On EPT, we can't emulate NX, so we must switch EFER atomically.
1023 * On CPUs that support "load IA32_EFER", always switch EFER
1024 * atomically, since it's faster than switching it manually.
1025 */
Sean Christophersonc73da3f2018-12-03 13:53:00 -08001026 if (cpu_has_load_ia32_efer() ||
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08001027 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03001028 if (!(guest_efer & EFER_LMA))
1029 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08001030 if (guest_efer != host_efer)
1031 add_atomic_switch_msr(vmx, MSR_EFER,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04001032 guest_efer, host_efer, false);
Sean Christopherson02343cf2018-09-26 09:23:43 -07001033 else
1034 clear_atomic_switch_msr(vmx, MSR_EFER);
Avi Kivity84ad33e2010-04-28 16:42:29 +03001035 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001036 }
Sean Christopherson86e3e492020-09-23 11:04:04 -07001037
1038 i = __vmx_find_uret_msr(vmx, MSR_EFER);
1039 if (i < 0)
1040 return false;
1041
1042 clear_atomic_switch_msr(vmx, MSR_EFER);
1043
1044 guest_efer &= ~ignore_bits;
1045 guest_efer |= host_efer & ignore_bits;
1046
1047 vmx->guest_uret_msrs[i].data = guest_efer;
1048 vmx->guest_uret_msrs[i].mask = ~ignore_bits;
1049
1050 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001051}
1052
Andy Lutomirskie28baea2017-02-20 08:56:11 -08001053#ifdef CONFIG_X86_32
1054/*
1055 * On 32-bit kernels, VM exits still load the FS and GS bases from the
1056 * VMCS rather than the segment table. KVM uses this helper to figure
1057 * out the current bases to poke them into the VMCS before entry.
1058 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001059static unsigned long segment_base(u16 selector)
1060{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001061 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001062 unsigned long v;
1063
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001064 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001065 return 0;
1066
Thomas Garnier45fc8752017-03-14 10:05:08 -07001067 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001068
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001069 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001070 u16 ldt_selector = kvm_read_ldt();
1071
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001072 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001073 return 0;
1074
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001075 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001076 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001077 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001078 return v;
1079}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08001080#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001081
Sean Christophersone348ac72019-12-10 15:24:33 -08001082static inline bool pt_can_write_msr(struct vcpu_vmx *vmx)
1083{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001084 return vmx_pt_mode_is_host_guest() &&
Sean Christophersone348ac72019-12-10 15:24:33 -08001085 !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
1086}
1087
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07001088static inline bool pt_output_base_valid(struct kvm_vcpu *vcpu, u64 base)
1089{
1090 /* The base must be 128-byte aligned and a legal physical address. */
Sean Christopherson7096cbf2020-09-24 12:42:50 -07001091 return !kvm_vcpu_is_illegal_gpa(vcpu, base) && !(base & 0x7f);
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07001092}
1093
Chao Peng2ef444f2018-10-24 16:05:12 +08001094static inline void pt_load_msr(struct pt_ctx *ctx, u32 addr_range)
1095{
1096 u32 i;
1097
1098 wrmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
1099 wrmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
1100 wrmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1101 wrmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1102 for (i = 0; i < addr_range; i++) {
1103 wrmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1104 wrmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1105 }
1106}
1107
1108static inline void pt_save_msr(struct pt_ctx *ctx, u32 addr_range)
1109{
1110 u32 i;
1111
1112 rdmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
1113 rdmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
1114 rdmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1115 rdmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1116 for (i = 0; i < addr_range; i++) {
1117 rdmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1118 rdmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1119 }
1120}
1121
1122static void pt_guest_enter(struct vcpu_vmx *vmx)
1123{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001124 if (vmx_pt_mode_is_system())
Chao Peng2ef444f2018-10-24 16:05:12 +08001125 return;
1126
Chao Peng2ef444f2018-10-24 16:05:12 +08001127 /*
Chao Pengb08c2892018-10-24 16:05:15 +08001128 * GUEST_IA32_RTIT_CTL is already set in the VMCS.
1129 * Save host state before VM entry.
Chao Peng2ef444f2018-10-24 16:05:12 +08001130 */
Chao Pengb08c2892018-10-24 16:05:15 +08001131 rdmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
Chao Peng2ef444f2018-10-24 16:05:12 +08001132 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
1133 wrmsrl(MSR_IA32_RTIT_CTL, 0);
1134 pt_save_msr(&vmx->pt_desc.host, vmx->pt_desc.addr_range);
1135 pt_load_msr(&vmx->pt_desc.guest, vmx->pt_desc.addr_range);
1136 }
1137}
1138
1139static void pt_guest_exit(struct vcpu_vmx *vmx)
1140{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001141 if (vmx_pt_mode_is_system())
Chao Peng2ef444f2018-10-24 16:05:12 +08001142 return;
1143
1144 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
1145 pt_save_msr(&vmx->pt_desc.guest, vmx->pt_desc.addr_range);
1146 pt_load_msr(&vmx->pt_desc.host, vmx->pt_desc.addr_range);
1147 }
1148
1149 /* Reload host state (IA32_RTIT_CTL will be cleared on VM exit). */
1150 wrmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
1151}
1152
Sean Christopherson13b964a2019-05-07 09:06:31 -07001153void vmx_set_host_fs_gs(struct vmcs_host_state *host, u16 fs_sel, u16 gs_sel,
1154 unsigned long fs_base, unsigned long gs_base)
1155{
1156 if (unlikely(fs_sel != host->fs_sel)) {
1157 if (!(fs_sel & 7))
1158 vmcs_write16(HOST_FS_SELECTOR, fs_sel);
1159 else
1160 vmcs_write16(HOST_FS_SELECTOR, 0);
1161 host->fs_sel = fs_sel;
1162 }
1163 if (unlikely(gs_sel != host->gs_sel)) {
1164 if (!(gs_sel & 7))
1165 vmcs_write16(HOST_GS_SELECTOR, gs_sel);
1166 else
1167 vmcs_write16(HOST_GS_SELECTOR, 0);
1168 host->gs_sel = gs_sel;
1169 }
1170 if (unlikely(fs_base != host->fs_base)) {
1171 vmcs_writel(HOST_FS_BASE, fs_base);
1172 host->fs_base = fs_base;
1173 }
1174 if (unlikely(gs_base != host->gs_base)) {
1175 vmcs_writel(HOST_GS_BASE, gs_base);
1176 host->gs_base = gs_base;
1177 }
1178}
1179
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001180void vmx_prepare_switch_to_guest(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001181{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001182 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond7ee0392018-07-23 12:32:47 -07001183 struct vmcs_host_state *host_state;
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001184#ifdef CONFIG_X86_64
Vitaly Kuznetsov35060ed2018-03-13 18:48:05 +01001185 int cpu = raw_smp_processor_id();
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001186#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001187 unsigned long fs_base, gs_base;
1188 u16 fs_sel, gs_sel;
Avi Kivity26bb0982009-09-07 11:14:12 +03001189 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001190
Sean Christophersond264ee02018-08-27 15:21:12 -07001191 vmx->req_immediate_exit = false;
1192
Liran Alonf48b4712018-11-20 18:03:25 +02001193 /*
1194 * Note that guest MSRs to be saved/restored can also be changed
1195 * when guest state is loaded. This happens when guest transitions
1196 * to/from long-mode by setting MSR_EFER.LMA.
1197 */
Sean Christopherson658ece82020-09-23 11:04:01 -07001198 if (!vmx->guest_uret_msrs_loaded) {
1199 vmx->guest_uret_msrs_loaded = true;
Sean Christophersone9bb1ae2020-09-23 11:04:00 -07001200 for (i = 0; i < vmx->nr_active_uret_msrs; ++i)
Sean Christopherson802145c2020-09-23 11:04:09 -07001201 kvm_set_user_return_msr(vmx->guest_uret_msrs[i].slot,
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001202 vmx->guest_uret_msrs[i].data,
1203 vmx->guest_uret_msrs[i].mask);
Liran Alonf48b4712018-11-20 18:03:25 +02001204
1205 }
wanpeng lic9dfd3f2020-02-17 18:37:43 +08001206
1207 if (vmx->nested.need_vmcs12_to_shadow_sync)
1208 nested_sync_vmcs12_to_shadow(vcpu);
1209
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001210 if (vmx->guest_state_loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001211 return;
1212
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001213 host_state = &vmx->loaded_vmcs->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001214
Avi Kivity33ed6322007-05-02 16:54:03 +03001215 /*
1216 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1217 * allow segment selectors with cpl > 0 or ti == 1.
1218 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07001219 host_state->ldt_sel = kvm_read_ldt();
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01001220
1221#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001222 savesegment(ds, host_state->ds_sel);
1223 savesegment(es, host_state->es_sel);
Sean Christophersone368b872018-07-23 12:32:41 -07001224
1225 gs_base = cpu_kernelmode_gs_base(cpu);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001226 if (likely(is_64bit_mm(current->mm))) {
Thomas Gleixner67580342020-05-28 16:13:52 -04001227 current_save_fsgs();
Sean Christophersone368b872018-07-23 12:32:41 -07001228 fs_sel = current->thread.fsindex;
1229 gs_sel = current->thread.gsindex;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001230 fs_base = current->thread.fsbase;
Sean Christophersone368b872018-07-23 12:32:41 -07001231 vmx->msr_host_kernel_gs_base = current->thread.gsbase;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001232 } else {
Sean Christophersone368b872018-07-23 12:32:41 -07001233 savesegment(fs, fs_sel);
1234 savesegment(gs, gs_sel);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001235 fs_base = read_msr(MSR_FS_BASE);
Sean Christophersone368b872018-07-23 12:32:41 -07001236 vmx->msr_host_kernel_gs_base = read_msr(MSR_KERNEL_GS_BASE);
Avi Kivity33ed6322007-05-02 16:54:03 +03001237 }
1238
Paolo Bonzini4679b612018-09-24 17:23:01 +02001239 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity33ed6322007-05-02 16:54:03 +03001240#else
Sean Christophersone368b872018-07-23 12:32:41 -07001241 savesegment(fs, fs_sel);
1242 savesegment(gs, gs_sel);
1243 fs_base = segment_base(fs_sel);
1244 gs_base = segment_base(gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001245#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001246
Sean Christopherson13b964a2019-05-07 09:06:31 -07001247 vmx_set_host_fs_gs(host_state, fs_sel, gs_sel, fs_base, gs_base);
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001248 vmx->guest_state_loaded = true;
Avi Kivity33ed6322007-05-02 16:54:03 +03001249}
1250
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001251static void vmx_prepare_switch_to_host(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001252{
Sean Christophersond7ee0392018-07-23 12:32:47 -07001253 struct vmcs_host_state *host_state;
1254
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001255 if (!vmx->guest_state_loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001256 return;
1257
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001258 host_state = &vmx->loaded_vmcs->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001259
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001260 ++vmx->vcpu.stat.host_state_reload;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001261
Avi Kivityc8770e72010-11-11 12:37:26 +02001262#ifdef CONFIG_X86_64
Paolo Bonzini4679b612018-09-24 17:23:01 +02001263 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivityc8770e72010-11-11 12:37:26 +02001264#endif
Sean Christophersond7ee0392018-07-23 12:32:47 -07001265 if (host_state->ldt_sel || (host_state->gs_sel & 7)) {
1266 kvm_load_ldt(host_state->ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001267#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001268 load_gs_index(host_state->gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02001269#else
Sean Christophersond7ee0392018-07-23 12:32:47 -07001270 loadsegment(gs, host_state->gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001271#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03001272 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07001273 if (host_state->fs_sel & 7)
1274 loadsegment(fs, host_state->fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001275#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001276 if (unlikely(host_state->ds_sel | host_state->es_sel)) {
1277 loadsegment(ds, host_state->ds_sel);
1278 loadsegment(es, host_state->es_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001279 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03001280#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08001281 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03001282#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001283 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001284#endif
Thomas Garnier45fc8752017-03-14 10:05:08 -07001285 load_fixmap_gdt(raw_smp_processor_id());
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001286 vmx->guest_state_loaded = false;
Sean Christopherson658ece82020-09-23 11:04:01 -07001287 vmx->guest_uret_msrs_loaded = false;
Avi Kivity33ed6322007-05-02 16:54:03 +03001288}
1289
Sean Christopherson678e3152018-07-23 12:32:43 -07001290#ifdef CONFIG_X86_64
1291static u64 vmx_read_guest_kernel_gs_base(struct vcpu_vmx *vmx)
Avi Kivitya9b21b62008-06-24 11:48:49 +03001292{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001293 preempt_disable();
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001294 if (vmx->guest_state_loaded)
Paolo Bonzini4679b612018-09-24 17:23:01 +02001295 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1296 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001297 return vmx->msr_guest_kernel_gs_base;
Avi Kivitya9b21b62008-06-24 11:48:49 +03001298}
1299
Sean Christopherson678e3152018-07-23 12:32:43 -07001300static void vmx_write_guest_kernel_gs_base(struct vcpu_vmx *vmx, u64 data)
1301{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001302 preempt_disable();
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001303 if (vmx->guest_state_loaded)
Paolo Bonzini4679b612018-09-24 17:23:01 +02001304 wrmsrl(MSR_KERNEL_GS_BASE, data);
1305 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001306 vmx->msr_guest_kernel_gs_base = data;
1307}
1308#endif
1309
Sean Christopherson5c911be2020-05-01 09:31:17 -07001310void vmx_vcpu_load_vmcs(struct kvm_vcpu *vcpu, int cpu,
1311 struct loaded_vmcs *buddy)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001312{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001313 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001314 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Sean Christopherson5c911be2020-05-01 09:31:17 -07001315 struct vmcs *prev;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001316
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001317 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01001318 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001319 local_irq_disable();
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001320
1321 /*
Sean Christopherson31603d42020-03-21 12:37:49 -07001322 * Ensure loaded_vmcs->cpu is read before adding loaded_vmcs to
1323 * this cpu's percpu list, otherwise it may not yet be deleted
1324 * from its previous cpu's percpu list. Pairs with the
1325 * smb_wmb() in __loaded_vmcs_clear().
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001326 */
1327 smp_rmb();
1328
Nadav Har'Eld462b812011-05-24 15:26:10 +03001329 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
1330 &per_cpu(loaded_vmcss_on_cpu, cpu));
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001331 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001332 }
1333
Sean Christopherson5c911be2020-05-01 09:31:17 -07001334 prev = per_cpu(current_vmcs, cpu);
1335 if (prev != vmx->loaded_vmcs->vmcs) {
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001336 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
1337 vmcs_load(vmx->loaded_vmcs->vmcs);
Sean Christopherson5c911be2020-05-01 09:31:17 -07001338
1339 /*
1340 * No indirect branch prediction barrier needed when switching
1341 * the active VMCS within a guest, e.g. on nested VM-Enter.
1342 * The L1 VMM can protect itself with retpolines, IBPB or IBRS.
1343 */
1344 if (!buddy || WARN_ON_ONCE(buddy->vmcs != prev))
1345 indirect_branch_prediction_barrier();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001346 }
1347
1348 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001349 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001350 unsigned long sysenter_esp;
1351
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07001352 /*
1353 * Flush all EPTP/VPID contexts, the new pCPU may have stale
1354 * TLB entries from its previous association with the vCPU.
1355 */
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001356 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001357
Avi Kivity6aa8b732006-12-10 02:21:36 -08001358 /*
1359 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001360 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001361 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001362 vmcs_writel(HOST_TR_BASE,
Andy Lutomirski72f5e082017-12-04 15:07:20 +01001363 (unsigned long)&get_cpu_entry_area(cpu)->tss.x86_tss);
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001364 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001365
1366 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
1367 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08001368
Nadav Har'Eld462b812011-05-24 15:26:10 +03001369 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001370 }
Feng Wu28b835d2015-09-18 22:29:54 +08001371
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001372 /* Setup TSC multiplier */
1373 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07001374 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
1375 decache_tsc_multiplier(vmx);
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001376}
1377
1378/*
1379 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
1380 * vcpu mutex is already taken.
1381 */
Sean Christopherson1af1bb02020-05-06 16:58:50 -07001382static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001383{
1384 struct vcpu_vmx *vmx = to_vmx(vcpu);
1385
Sean Christopherson5c911be2020-05-01 09:31:17 -07001386 vmx_vcpu_load_vmcs(vcpu, cpu, NULL);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001387
Feng Wu28b835d2015-09-18 22:29:54 +08001388 vmx_vcpu_pi_load(vcpu, cpu);
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001389
Wanpeng Li74c55932017-11-29 01:31:20 -08001390 vmx->host_debugctlmsr = get_debugctlmsr();
Feng Wu28b835d2015-09-18 22:29:54 +08001391}
1392
Sean Christopherson13b964a2019-05-07 09:06:31 -07001393static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001394{
Feng Wu28b835d2015-09-18 22:29:54 +08001395 vmx_vcpu_pi_put(vcpu);
1396
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001397 vmx_prepare_switch_to_host(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001398}
1399
Wanpeng Lif244dee2017-07-20 01:11:54 -07001400static bool emulation_required(struct kvm_vcpu *vcpu)
1401{
Sean Christopherson2ba44932020-09-23 11:44:48 -07001402 return emulate_invalid_guest_state && !vmx_guest_state_valid(vcpu);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001403}
1404
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001405unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001406{
Sean Christophersone7bddc52019-09-27 14:45:18 -07001407 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity78ac8b42010-04-08 18:19:35 +03001408 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03001409
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001410 if (!kvm_register_is_available(vcpu, VCPU_EXREG_RFLAGS)) {
1411 kvm_register_mark_available(vcpu, VCPU_EXREG_RFLAGS);
Avi Kivity6de12732011-03-07 12:51:22 +02001412 rflags = vmcs_readl(GUEST_RFLAGS);
Sean Christophersone7bddc52019-09-27 14:45:18 -07001413 if (vmx->rmode.vm86_active) {
Avi Kivity6de12732011-03-07 12:51:22 +02001414 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
Sean Christophersone7bddc52019-09-27 14:45:18 -07001415 save_rflags = vmx->rmode.save_rflags;
Avi Kivity6de12732011-03-07 12:51:22 +02001416 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
1417 }
Sean Christophersone7bddc52019-09-27 14:45:18 -07001418 vmx->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001419 }
Sean Christophersone7bddc52019-09-27 14:45:18 -07001420 return vmx->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001421}
1422
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001423void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001424{
Sean Christophersone7bddc52019-09-27 14:45:18 -07001425 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson491c1ad2019-09-27 14:45:19 -07001426 unsigned long old_rflags;
Wanpeng Lif244dee2017-07-20 01:11:54 -07001427
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00001428 if (is_unrestricted_guest(vcpu)) {
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001429 kvm_register_mark_available(vcpu, VCPU_EXREG_RFLAGS);
Sean Christopherson491c1ad2019-09-27 14:45:19 -07001430 vmx->rflags = rflags;
1431 vmcs_writel(GUEST_RFLAGS, rflags);
1432 return;
1433 }
1434
1435 old_rflags = vmx_get_rflags(vcpu);
Sean Christophersone7bddc52019-09-27 14:45:18 -07001436 vmx->rflags = rflags;
1437 if (vmx->rmode.vm86_active) {
1438 vmx->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001439 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001440 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001441 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001442
Sean Christophersone7bddc52019-09-27 14:45:18 -07001443 if ((old_rflags ^ vmx->rflags) & X86_EFLAGS_VM)
1444 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001445}
1446
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001447u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001448{
1449 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1450 int ret = 0;
1451
1452 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01001453 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001454 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01001455 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001456
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02001457 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001458}
1459
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001460void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001461{
1462 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1463 u32 interruptibility = interruptibility_old;
1464
1465 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
1466
Jan Kiszka48005f62010-02-19 19:38:07 +01001467 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001468 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01001469 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001470 interruptibility |= GUEST_INTR_STATE_STI;
1471
1472 if ((interruptibility != interruptibility_old))
1473 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
1474}
1475
Chao Pengbf8c55d2018-10-24 16:05:14 +08001476static int vmx_rtit_ctl_check(struct kvm_vcpu *vcpu, u64 data)
1477{
1478 struct vcpu_vmx *vmx = to_vmx(vcpu);
1479 unsigned long value;
1480
1481 /*
1482 * Any MSR write that attempts to change bits marked reserved will
1483 * case a #GP fault.
1484 */
1485 if (data & vmx->pt_desc.ctl_bitmask)
1486 return 1;
1487
1488 /*
1489 * Any attempt to modify IA32_RTIT_CTL while TraceEn is set will
1490 * result in a #GP unless the same write also clears TraceEn.
1491 */
1492 if ((vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) &&
1493 ((vmx->pt_desc.guest.ctl ^ data) & ~RTIT_CTL_TRACEEN))
1494 return 1;
1495
1496 /*
1497 * WRMSR to IA32_RTIT_CTL that sets TraceEn but clears this bit
1498 * and FabricEn would cause #GP, if
1499 * CPUID.(EAX=14H, ECX=0):ECX.SNGLRGNOUT[bit 2] = 0
1500 */
1501 if ((data & RTIT_CTL_TRACEEN) && !(data & RTIT_CTL_TOPA) &&
1502 !(data & RTIT_CTL_FABRIC_EN) &&
1503 !intel_pt_validate_cap(vmx->pt_desc.caps,
1504 PT_CAP_single_range_output))
1505 return 1;
1506
1507 /*
1508 * MTCFreq, CycThresh and PSBFreq encodings check, any MSR write that
1509 * utilize encodings marked reserved will casue a #GP fault.
1510 */
1511 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc_periods);
1512 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc) &&
1513 !test_bit((data & RTIT_CTL_MTC_RANGE) >>
1514 RTIT_CTL_MTC_RANGE_OFFSET, &value))
1515 return 1;
1516 value = intel_pt_validate_cap(vmx->pt_desc.caps,
1517 PT_CAP_cycle_thresholds);
1518 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1519 !test_bit((data & RTIT_CTL_CYC_THRESH) >>
1520 RTIT_CTL_CYC_THRESH_OFFSET, &value))
1521 return 1;
1522 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_periods);
1523 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1524 !test_bit((data & RTIT_CTL_PSB_FREQ) >>
1525 RTIT_CTL_PSB_FREQ_OFFSET, &value))
1526 return 1;
1527
1528 /*
1529 * If ADDRx_CFG is reserved or the encodings is >2 will
1530 * cause a #GP fault.
1531 */
1532 value = (data & RTIT_CTL_ADDR0) >> RTIT_CTL_ADDR0_OFFSET;
1533 if ((value && (vmx->pt_desc.addr_range < 1)) || (value > 2))
1534 return 1;
1535 value = (data & RTIT_CTL_ADDR1) >> RTIT_CTL_ADDR1_OFFSET;
1536 if ((value && (vmx->pt_desc.addr_range < 2)) || (value > 2))
1537 return 1;
1538 value = (data & RTIT_CTL_ADDR2) >> RTIT_CTL_ADDR2_OFFSET;
1539 if ((value && (vmx->pt_desc.addr_range < 3)) || (value > 2))
1540 return 1;
1541 value = (data & RTIT_CTL_ADDR3) >> RTIT_CTL_ADDR3_OFFSET;
1542 if ((value && (vmx->pt_desc.addr_range < 4)) || (value > 2))
1543 return 1;
1544
1545 return 0;
1546}
1547
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07001548static bool vmx_can_emulate_instruction(struct kvm_vcpu *vcpu, void *insn, int insn_len)
1549{
1550 return true;
1551}
1552
Sean Christopherson1957aa62019-08-27 14:40:39 -07001553static int skip_emulated_instruction(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001554{
Paolo Bonzinifede8072020-04-27 11:55:59 -04001555 unsigned long rip, orig_rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001556
Sean Christopherson1957aa62019-08-27 14:40:39 -07001557 /*
1558 * Using VMCS.VM_EXIT_INSTRUCTION_LEN on EPT misconfig depends on
1559 * undefined behavior: Intel's SDM doesn't mandate the VMCS field be
1560 * set when EPT misconfig occurs. In practice, real hardware updates
1561 * VM_EXIT_INSTRUCTION_LEN on EPT misconfig, but other hypervisors
1562 * (namely Hyper-V) don't set it due to it being undefined behavior,
1563 * i.e. we end up advancing IP with some random value.
1564 */
1565 if (!static_cpu_has(X86_FEATURE_HYPERVISOR) ||
1566 to_vmx(vcpu)->exit_reason != EXIT_REASON_EPT_MISCONFIG) {
Paolo Bonzinifede8072020-04-27 11:55:59 -04001567 orig_rip = kvm_rip_read(vcpu);
1568 rip = orig_rip + vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
1569#ifdef CONFIG_X86_64
1570 /*
1571 * We need to mask out the high 32 bits of RIP if not in 64-bit
1572 * mode, but just finding out that we are in 64-bit mode is
1573 * quite expensive. Only do it if there was a carry.
1574 */
1575 if (unlikely(((rip ^ orig_rip) >> 31) == 3) && !is_64_bit_mode(vcpu))
1576 rip = (u32)rip;
1577#endif
Sean Christopherson1957aa62019-08-27 14:40:39 -07001578 kvm_rip_write(vcpu, rip);
1579 } else {
1580 if (!kvm_emulate_instruction(vcpu, EMULTYPE_SKIP))
1581 return 0;
1582 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001583
Glauber Costa2809f5d2009-05-12 16:21:05 -04001584 /* skipping an emulated instruction also counts */
1585 vmx_set_interrupt_shadow(vcpu, 0);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02001586
Sean Christopherson60fc3d02019-08-27 14:40:38 -07001587 return 1;
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02001588}
1589
Vitaly Kuznetsov7a35e512020-06-05 13:59:05 +02001590/*
Oliver Upton5ef8acb2020-02-07 02:36:07 -08001591 * Recognizes a pending MTF VM-exit and records the nested state for later
1592 * delivery.
1593 */
1594static void vmx_update_emulated_instruction(struct kvm_vcpu *vcpu)
1595{
1596 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1597 struct vcpu_vmx *vmx = to_vmx(vcpu);
1598
1599 if (!is_guest_mode(vcpu))
1600 return;
1601
1602 /*
1603 * Per the SDM, MTF takes priority over debug-trap exceptions besides
1604 * T-bit traps. As instruction emulation is completed (i.e. at the
1605 * instruction boundary), any #DB exception pending delivery must be a
1606 * debug-trap. Record the pending MTF state to be delivered in
1607 * vmx_check_nested_events().
1608 */
1609 if (nested_cpu_has_mtf(vmcs12) &&
1610 (!vcpu->arch.exception.pending ||
1611 vcpu->arch.exception.nr == DB_VECTOR))
1612 vmx->nested.mtf_pending = true;
1613 else
1614 vmx->nested.mtf_pending = false;
1615}
1616
1617static int vmx_skip_emulated_instruction(struct kvm_vcpu *vcpu)
1618{
1619 vmx_update_emulated_instruction(vcpu);
1620 return skip_emulated_instruction(vcpu);
1621}
1622
Wanpeng Licaa057a2018-03-12 04:53:03 -07001623static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
1624{
1625 /*
1626 * Ensure that we clear the HLT state in the VMCS. We don't need to
1627 * explicitly skip the instruction because if the HLT state is set,
1628 * then the instruction is already executing and RIP has already been
1629 * advanced.
1630 */
1631 if (kvm_hlt_in_guest(vcpu->kvm) &&
1632 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
1633 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
1634}
1635
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001636static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02001637{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001638 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001639 unsigned nr = vcpu->arch.exception.nr;
1640 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001641 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001642 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001643
Jim Mattsonda998b42018-10-16 14:29:22 -07001644 kvm_deliver_exception_payload(vcpu);
1645
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001646 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001647 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001648 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
1649 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001650
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001651 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05001652 int inc_eip = 0;
1653 if (kvm_exception_is_soft(nr))
1654 inc_eip = vcpu->arch.event_exit_inst_len;
Sean Christopherson9497e1f2019-08-27 14:40:36 -07001655 kvm_inject_realmode_interrupt(vcpu, nr, inc_eip);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001656 return;
1657 }
1658
Sean Christophersonadd5ff72018-03-23 09:34:00 -07001659 WARN_ON_ONCE(vmx->emulation_required);
1660
Gleb Natapov66fd3f72009-05-11 13:35:50 +03001661 if (kvm_exception_is_soft(nr)) {
1662 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
1663 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001664 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
1665 } else
1666 intr_info |= INTR_TYPE_HARD_EXCEPTION;
1667
1668 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Wanpeng Licaa057a2018-03-12 04:53:03 -07001669
1670 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02001671}
1672
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001673static void vmx_setup_uret_msr(struct vcpu_vmx *vmx, unsigned int msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001674{
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001675 struct vmx_uret_msr tmp;
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001676 int from, to;
1677
1678 from = __vmx_find_uret_msr(vmx, msr);
1679 if (from < 0)
1680 return;
1681 to = vmx->nr_active_uret_msrs++;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001682
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001683 tmp = vmx->guest_uret_msrs[to];
1684 vmx->guest_uret_msrs[to] = vmx->guest_uret_msrs[from];
1685 vmx->guest_uret_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03001686}
1687
1688/*
Avi Kivitye38aea32007-04-19 13:22:48 +03001689 * Set up the vmcs to automatically save and restore system
1690 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
1691 * mode, as fiddling with msrs is very expensive.
1692 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001693static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03001694{
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001695 vmx->guest_uret_msrs_loaded = false;
1696 vmx->nr_active_uret_msrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001697#ifdef CONFIG_X86_64
Jim Mattson84c8c5b2018-12-05 15:29:01 -08001698 /*
1699 * The SYSCALL MSRs are only needed on long mode guests, and only
1700 * when EFER.SCE is set.
1701 */
1702 if (is_long_mode(&vmx->vcpu) && (vmx->vcpu.arch.efer & EFER_SCE)) {
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001703 vmx_setup_uret_msr(vmx, MSR_STAR);
1704 vmx_setup_uret_msr(vmx, MSR_LSTAR);
1705 vmx_setup_uret_msr(vmx, MSR_SYSCALL_MASK);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001706 }
Eddie Donga75beee2007-05-17 18:55:15 +03001707#endif
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001708 if (update_transition_efer(vmx))
1709 vmx_setup_uret_msr(vmx, MSR_EFER);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001710
Sean Christophersonbd65ba82020-09-23 11:04:05 -07001711 if (guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP))
1712 vmx_setup_uret_msr(vmx, MSR_TSC_AUX);
1713
1714 vmx_setup_uret_msr(vmx, MSR_IA32_TSX_CTRL);
Avi Kivity58972972009-02-24 22:26:47 +02001715
Yang Zhang8d146952013-01-25 10:18:50 +08001716 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01001717 vmx_update_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03001718}
1719
Leonid Shatz326e7422018-11-06 12:14:25 +02001720static u64 vmx_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001721{
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001722 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1723 u64 g_tsc_offset = 0;
Leonid Shatz326e7422018-11-06 12:14:25 +02001724
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001725 /*
1726 * We're here if L1 chose not to trap WRMSR to TSC. According
1727 * to the spec, this should set L1's TSC; The offset that L1
1728 * set for L2 remains unchanged, and still needs to be added
1729 * to the newly set TSC to get L2's TSC.
1730 */
1731 if (is_guest_mode(vcpu) &&
Xiaoyao Li5e3d3942019-12-06 16:45:26 +08001732 (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETTING))
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001733 g_tsc_offset = vmcs12->tsc_offset;
1734
1735 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1736 vcpu->arch.tsc_offset - g_tsc_offset,
1737 offset);
1738 vmcs_write64(TSC_OFFSET, offset + g_tsc_offset);
1739 return offset + g_tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001740}
1741
Nadav Har'El801d3422011-05-25 23:02:23 +03001742/*
1743 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
1744 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
1745 * all guests if the "nested" module option is off, and can also be disabled
1746 * for a single guest by disabling its VMX cpuid bit.
1747 */
Sean Christopherson7c97fcb2018-12-03 13:53:17 -08001748bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
Nadav Har'El801d3422011-05-25 23:02:23 +03001749{
Radim Krčmářd6321d42017-08-05 00:12:49 +02001750 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03001751}
1752
Haozhong Zhang37e4c992016-06-22 14:59:55 +08001753static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
1754 uint64_t val)
1755{
1756 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
1757
1758 return !(val & ~valid_bits);
1759}
1760
Tom Lendacky801e4592018-02-21 13:39:51 -06001761static int vmx_get_msr_feature(struct kvm_msr_entry *msr)
1762{
Paolo Bonzini13893092018-02-26 13:40:09 +01001763 switch (msr->index) {
1764 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1765 if (!nested)
1766 return 1;
1767 return vmx_get_vmx_msr(&vmcs_config.nested, msr->index, &msr->data);
Like Xu27461da32020-05-29 15:43:45 +08001768 case MSR_IA32_PERF_CAPABILITIES:
1769 msr->data = vmx_get_perf_capabilities();
1770 return 0;
Paolo Bonzini13893092018-02-26 13:40:09 +01001771 default:
Peter Xu12bc2132020-06-22 18:04:42 -04001772 return KVM_MSR_RET_INVALID;
Paolo Bonzini13893092018-02-26 13:40:09 +01001773 }
Tom Lendacky801e4592018-02-21 13:39:51 -06001774}
1775
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001776/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001777 * Reads an msr value (of 'msr_index') into 'pdata'.
1778 * Returns 0 on success, non-0 otherwise.
1779 * Assumes vcpu_load() was already called.
1780 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001781static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001782{
Borislav Petkova6cb0992017-12-20 12:50:28 +01001783 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001784 struct vmx_uret_msr *msr;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001785 u32 index;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001786
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001787 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001788#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001789 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001790 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001791 break;
1792 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001793 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001794 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001795 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001796 msr_info->data = vmx_read_guest_kernel_gs_base(vmx);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001797 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03001798#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001799 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001800 return kvm_get_msr_common(vcpu, msr_info);
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05001801 case MSR_IA32_TSX_CTRL:
1802 if (!msr_info->host_initiated &&
1803 !(vcpu->arch.arch_capabilities & ARCH_CAP_TSX_CTRL_MSR))
1804 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001805 goto find_uret_msr;
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001806 case MSR_IA32_UMWAIT_CONTROL:
1807 if (!msr_info->host_initiated && !vmx_has_waitpkg(vmx))
1808 return 1;
1809
1810 msr_info->data = vmx->msr_ia32_umwait_control;
1811 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001812 case MSR_IA32_SPEC_CTRL:
1813 if (!msr_info->host_initiated &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001814 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
1815 return 1;
1816
1817 msr_info->data = to_vmx(vcpu)->spec_ctrl;
1818 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001819 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001820 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001821 break;
1822 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001823 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001824 break;
1825 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001826 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001827 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001828 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08001829 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02001830 (!msr_info->host_initiated &&
1831 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01001832 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001833 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001834 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001835 case MSR_IA32_MCG_EXT_CTL:
1836 if (!msr_info->host_initiated &&
Borislav Petkova6cb0992017-12-20 12:50:28 +01001837 !(vmx->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001838 FEAT_CTL_LMCE_ENABLED))
Jan Kiszkacae50132014-01-04 18:47:22 +01001839 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001840 msr_info->data = vcpu->arch.mcg_ext_ctl;
1841 break;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001842 case MSR_IA32_FEAT_CTL:
Borislav Petkova6cb0992017-12-20 12:50:28 +01001843 msr_info->data = vmx->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01001844 break;
1845 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1846 if (!nested_vmx_allowed(vcpu))
1847 return 1;
Vitaly Kuznetsov31de3d22020-02-05 13:30:33 +01001848 if (vmx_get_vmx_msr(&vmx->nested.msrs, msr_info->index,
1849 &msr_info->data))
1850 return 1;
1851 /*
1852 * Enlightened VMCS v1 doesn't have certain fields, but buggy
1853 * Hyper-V versions are still trying to use corresponding
1854 * features when they are exposed. Filter out the essential
1855 * minimum.
1856 */
1857 if (!msr_info->host_initiated &&
1858 vmx->nested.enlightened_vmcs_enabled)
1859 nested_evmcs_filter_control_msr(msr_info->index,
1860 &msr_info->data);
1861 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001862 case MSR_IA32_RTIT_CTL:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001863 if (!vmx_pt_mode_is_host_guest())
Chao Pengbf8c55d2018-10-24 16:05:14 +08001864 return 1;
1865 msr_info->data = vmx->pt_desc.guest.ctl;
1866 break;
1867 case MSR_IA32_RTIT_STATUS:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001868 if (!vmx_pt_mode_is_host_guest())
Chao Pengbf8c55d2018-10-24 16:05:14 +08001869 return 1;
1870 msr_info->data = vmx->pt_desc.guest.status;
1871 break;
1872 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001873 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001874 !intel_pt_validate_cap(vmx->pt_desc.caps,
1875 PT_CAP_cr3_filtering))
1876 return 1;
1877 msr_info->data = vmx->pt_desc.guest.cr3_match;
1878 break;
1879 case MSR_IA32_RTIT_OUTPUT_BASE:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001880 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001881 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1882 PT_CAP_topa_output) &&
1883 !intel_pt_validate_cap(vmx->pt_desc.caps,
1884 PT_CAP_single_range_output)))
1885 return 1;
1886 msr_info->data = vmx->pt_desc.guest.output_base;
1887 break;
1888 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001889 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001890 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1891 PT_CAP_topa_output) &&
1892 !intel_pt_validate_cap(vmx->pt_desc.caps,
1893 PT_CAP_single_range_output)))
1894 return 1;
1895 msr_info->data = vmx->pt_desc.guest.output_mask;
1896 break;
1897 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
1898 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
Sean Christopherson2ef76192020-03-02 15:56:22 -08001899 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001900 (index >= 2 * intel_pt_validate_cap(vmx->pt_desc.caps,
1901 PT_CAP_num_address_ranges)))
1902 return 1;
1903 if (index % 2)
1904 msr_info->data = vmx->pt_desc.guest.addr_b[index / 2];
1905 else
1906 msr_info->data = vmx->pt_desc.guest.addr_a[index / 2];
1907 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001908 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02001909 if (!msr_info->host_initiated &&
1910 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001911 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001912 goto find_uret_msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001913 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001914 find_uret_msr:
Sean Christophersond85a8032020-09-23 11:04:06 -07001915 msr = vmx_find_uret_msr(vmx, msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001916 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001917 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001918 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001919 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001920 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001921 }
1922
Avi Kivity6aa8b732006-12-10 02:21:36 -08001923 return 0;
1924}
1925
Sean Christopherson24085002020-04-28 16:10:24 -07001926static u64 nested_vmx_truncate_sysenter_addr(struct kvm_vcpu *vcpu,
1927 u64 data)
1928{
1929#ifdef CONFIG_X86_64
1930 if (!guest_cpuid_has(vcpu, X86_FEATURE_LM))
1931 return (u32)data;
1932#endif
1933 return (unsigned long)data;
1934}
1935
Avi Kivity6aa8b732006-12-10 02:21:36 -08001936/*
Miaohe Lin311497e2019-12-11 14:26:25 +08001937 * Writes msr value into the appropriate "register".
Avi Kivity6aa8b732006-12-10 02:21:36 -08001938 * Returns 0 on success, non-0 otherwise.
1939 * Assumes vcpu_load() was already called.
1940 */
Will Auld8fe8ab42012-11-29 12:42:12 -08001941static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001942{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001943 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001944 struct vmx_uret_msr *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03001945 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08001946 u32 msr_index = msr_info->index;
1947 u64 data = msr_info->data;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001948 u32 index;
Eddie Dong2cc51562007-05-21 07:28:09 +03001949
Avi Kivity6aa8b732006-12-10 02:21:36 -08001950 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001951 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08001952 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03001953 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001954#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001955 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001956 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001957 vmcs_writel(GUEST_FS_BASE, data);
1958 break;
1959 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001960 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001961 vmcs_writel(GUEST_GS_BASE, data);
1962 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001963 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001964 vmx_write_guest_kernel_gs_base(vmx, data);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001965 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001966#endif
1967 case MSR_IA32_SYSENTER_CS:
Sean Christophersonde70d272019-05-07 09:06:36 -07001968 if (is_guest_mode(vcpu))
1969 get_vmcs12(vcpu)->guest_sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001970 vmcs_write32(GUEST_SYSENTER_CS, data);
1971 break;
1972 case MSR_IA32_SYSENTER_EIP:
Sean Christopherson24085002020-04-28 16:10:24 -07001973 if (is_guest_mode(vcpu)) {
1974 data = nested_vmx_truncate_sysenter_addr(vcpu, data);
Sean Christophersonde70d272019-05-07 09:06:36 -07001975 get_vmcs12(vcpu)->guest_sysenter_eip = data;
Sean Christopherson24085002020-04-28 16:10:24 -07001976 }
Avi Kivityf5b42c32007-03-06 12:05:53 +02001977 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001978 break;
1979 case MSR_IA32_SYSENTER_ESP:
Sean Christopherson24085002020-04-28 16:10:24 -07001980 if (is_guest_mode(vcpu)) {
1981 data = nested_vmx_truncate_sysenter_addr(vcpu, data);
Sean Christophersonde70d272019-05-07 09:06:36 -07001982 get_vmcs12(vcpu)->guest_sysenter_esp = data;
Sean Christopherson24085002020-04-28 16:10:24 -07001983 }
Avi Kivityf5b42c32007-03-06 12:05:53 +02001984 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001985 break;
Sean Christopherson699a1ac2019-05-07 09:06:37 -07001986 case MSR_IA32_DEBUGCTLMSR:
1987 if (is_guest_mode(vcpu) && get_vmcs12(vcpu)->vm_exit_controls &
1988 VM_EXIT_SAVE_DEBUG_CONTROLS)
1989 get_vmcs12(vcpu)->guest_ia32_debugctl = data;
1990
1991 ret = kvm_set_msr_common(vcpu, msr_info);
1992 break;
1993
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001994 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08001995 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02001996 (!msr_info->host_initiated &&
1997 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01001998 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08001999 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07002000 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002001 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08002002 vmcs_write64(GUEST_BNDCFGS, data);
2003 break;
Tao Xu6e3ba4a2019-07-16 14:55:50 +08002004 case MSR_IA32_UMWAIT_CONTROL:
2005 if (!msr_info->host_initiated && !vmx_has_waitpkg(vmx))
2006 return 1;
2007
2008 /* The reserved bit 1 and non-32 bit [63:32] should be zero */
2009 if (data & (BIT_ULL(1) | GENMASK_ULL(63, 32)))
2010 return 1;
2011
2012 vmx->msr_ia32_umwait_control = data;
2013 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002014 case MSR_IA32_SPEC_CTRL:
2015 if (!msr_info->host_initiated &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002016 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
2017 return 1;
2018
Maxim Levitsky841c2be2020-07-08 14:57:31 +03002019 if (kvm_spec_ctrl_test_value(data))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002020 return 1;
2021
2022 vmx->spec_ctrl = data;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002023 if (!data)
2024 break;
2025
2026 /*
2027 * For non-nested:
2028 * When it's written (to non-zero) for the first time, pass
2029 * it through.
2030 *
2031 * For nested:
2032 * The handling of the MSR bitmap for L2 guests is done in
Miaohe Lin4d516fe2019-12-11 14:26:21 +08002033 * nested_vmx_prepare_msr_bitmap. We should not touch the
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002034 * vmcs02.msr_bitmap here since it gets completely overwritten
2035 * in the merging. We update the vmcs01 here for L1 as well
2036 * since it will end up touching the MSR anyway now.
2037 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002038 vmx_disable_intercept_for_msr(vcpu,
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002039 MSR_IA32_SPEC_CTRL,
2040 MSR_TYPE_RW);
2041 break;
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05002042 case MSR_IA32_TSX_CTRL:
2043 if (!msr_info->host_initiated &&
2044 !(vcpu->arch.arch_capabilities & ARCH_CAP_TSX_CTRL_MSR))
2045 return 1;
2046 if (data & ~(TSX_CTRL_RTM_DISABLE | TSX_CTRL_CPUID_CLEAR))
2047 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002048 goto find_uret_msr;
Ashok Raj15d45072018-02-01 22:59:43 +01002049 case MSR_IA32_PRED_CMD:
2050 if (!msr_info->host_initiated &&
Ashok Raj15d45072018-02-01 22:59:43 +01002051 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
2052 return 1;
2053
2054 if (data & ~PRED_CMD_IBPB)
2055 return 1;
Paolo Bonzini6441fa62020-01-20 16:33:06 +01002056 if (!boot_cpu_has(X86_FEATURE_SPEC_CTRL))
2057 return 1;
Ashok Raj15d45072018-02-01 22:59:43 +01002058 if (!data)
2059 break;
2060
2061 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
2062
2063 /*
2064 * For non-nested:
2065 * When it's written (to non-zero) for the first time, pass
2066 * it through.
2067 *
2068 * For nested:
2069 * The handling of the MSR bitmap for L2 guests is done in
Miaohe Lin4d516fe2019-12-11 14:26:21 +08002070 * nested_vmx_prepare_msr_bitmap. We should not touch the
Ashok Raj15d45072018-02-01 22:59:43 +01002071 * vmcs02.msr_bitmap here since it gets completely overwritten
2072 * in the merging.
2073 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002074 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_PRED_CMD, MSR_TYPE_W);
Ashok Raj15d45072018-02-01 22:59:43 +01002075 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002076 case MSR_IA32_CR_PAT:
Sean Christophersond28f4292019-05-07 09:06:27 -07002077 if (!kvm_pat_valid(data))
2078 return 1;
2079
Sean Christopherson142e4be2019-05-07 09:06:35 -07002080 if (is_guest_mode(vcpu) &&
2081 get_vmcs12(vcpu)->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
2082 get_vmcs12(vcpu)->guest_ia32_pat = data;
2083
Sheng Yang468d4722008-10-09 16:01:55 +08002084 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2085 vmcs_write64(GUEST_IA32_PAT, data);
2086 vcpu->arch.pat = data;
2087 break;
2088 }
Will Auld8fe8ab42012-11-29 12:42:12 -08002089 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002090 break;
Will Auldba904632012-11-29 12:42:50 -08002091 case MSR_IA32_TSC_ADJUST:
2092 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002093 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002094 case MSR_IA32_MCG_EXT_CTL:
2095 if ((!msr_info->host_initiated &&
2096 !(to_vmx(vcpu)->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002097 FEAT_CTL_LMCE_ENABLED)) ||
Ashok Rajc45dcc72016-06-22 14:59:56 +08002098 (data & ~MCG_EXT_CTL_LMCE_EN))
2099 return 1;
2100 vcpu->arch.mcg_ext_ctl = data;
2101 break;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002102 case MSR_IA32_FEAT_CTL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08002103 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08002104 (to_vmx(vcpu)->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002105 FEAT_CTL_LOCKED && !msr_info->host_initiated))
Jan Kiszkacae50132014-01-04 18:47:22 +01002106 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08002107 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01002108 if (msr_info->host_initiated && data == 0)
2109 vmx_leave_nested(vcpu);
2110 break;
2111 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08002112 if (!msr_info->host_initiated)
2113 return 1; /* they are read-only */
2114 if (!nested_vmx_allowed(vcpu))
2115 return 1;
2116 return vmx_set_vmx_msr(vcpu, msr_index, data);
Chao Pengbf8c55d2018-10-24 16:05:14 +08002117 case MSR_IA32_RTIT_CTL:
Sean Christopherson2ef76192020-03-02 15:56:22 -08002118 if (!vmx_pt_mode_is_host_guest() ||
Luwei Kangee85dec2018-10-24 16:05:16 +08002119 vmx_rtit_ctl_check(vcpu, data) ||
2120 vmx->nested.vmxon)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002121 return 1;
2122 vmcs_write64(GUEST_IA32_RTIT_CTL, data);
2123 vmx->pt_desc.guest.ctl = data;
Aaron Lewis476c9bd2020-09-25 16:34:18 +02002124 pt_update_intercept_for_msr(vcpu);
Chao Pengbf8c55d2018-10-24 16:05:14 +08002125 break;
2126 case MSR_IA32_RTIT_STATUS:
Sean Christophersone348ac72019-12-10 15:24:33 -08002127 if (!pt_can_write_msr(vmx))
2128 return 1;
2129 if (data & MSR_IA32_RTIT_STATUS_MASK)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002130 return 1;
2131 vmx->pt_desc.guest.status = data;
2132 break;
2133 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christophersone348ac72019-12-10 15:24:33 -08002134 if (!pt_can_write_msr(vmx))
2135 return 1;
2136 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2137 PT_CAP_cr3_filtering))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002138 return 1;
2139 vmx->pt_desc.guest.cr3_match = data;
2140 break;
2141 case MSR_IA32_RTIT_OUTPUT_BASE:
Sean Christophersone348ac72019-12-10 15:24:33 -08002142 if (!pt_can_write_msr(vmx))
2143 return 1;
2144 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2145 PT_CAP_topa_output) &&
2146 !intel_pt_validate_cap(vmx->pt_desc.caps,
2147 PT_CAP_single_range_output))
2148 return 1;
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07002149 if (!pt_output_base_valid(vcpu, data))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002150 return 1;
2151 vmx->pt_desc.guest.output_base = data;
2152 break;
2153 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christophersone348ac72019-12-10 15:24:33 -08002154 if (!pt_can_write_msr(vmx))
2155 return 1;
2156 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2157 PT_CAP_topa_output) &&
2158 !intel_pt_validate_cap(vmx->pt_desc.caps,
2159 PT_CAP_single_range_output))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002160 return 1;
2161 vmx->pt_desc.guest.output_mask = data;
2162 break;
2163 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christophersone348ac72019-12-10 15:24:33 -08002164 if (!pt_can_write_msr(vmx))
2165 return 1;
Chao Pengbf8c55d2018-10-24 16:05:14 +08002166 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
Sean Christophersone348ac72019-12-10 15:24:33 -08002167 if (index >= 2 * intel_pt_validate_cap(vmx->pt_desc.caps,
2168 PT_CAP_num_address_ranges))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002169 return 1;
Sean Christophersonfe6ed362019-12-10 15:24:32 -08002170 if (is_noncanonical_address(data, vcpu))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002171 return 1;
2172 if (index % 2)
2173 vmx->pt_desc.guest.addr_b[index / 2] = data;
2174 else
2175 vmx->pt_desc.guest.addr_a[index / 2] = data;
2176 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002177 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02002178 if (!msr_info->host_initiated &&
2179 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002180 return 1;
2181 /* Check reserved bit, higher 32 bits should be zero */
2182 if ((data >> 32) != 0)
2183 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002184 goto find_uret_msr;
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05002185
Avi Kivity6aa8b732006-12-10 02:21:36 -08002186 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002187 find_uret_msr:
Sean Christophersond85a8032020-09-23 11:04:06 -07002188 msr = vmx_find_uret_msr(vmx, msr_index);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05002189 if (msr)
Sean Christopherson7bf662b2020-09-23 11:04:07 -07002190 ret = vmx_set_guest_uret_msr(vmx, msr, data);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05002191 else
2192 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002193 }
2194
Eddie Dong2cc51562007-05-21 07:28:09 +03002195 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002196}
2197
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002198static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002199{
Sean Christophersonf98c1e72020-05-01 21:32:30 -07002200 unsigned long guest_owned_bits;
2201
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002202 kvm_register_mark_available(vcpu, reg);
2203
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002204 switch (reg) {
2205 case VCPU_REGS_RSP:
2206 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
2207 break;
2208 case VCPU_REGS_RIP:
2209 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
2210 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002211 case VCPU_EXREG_PDPTR:
2212 if (enable_ept)
2213 ept_save_pdptrs(vcpu);
2214 break;
Sean Christophersonbd31fe42020-05-01 21:32:31 -07002215 case VCPU_EXREG_CR0:
2216 guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
2217
2218 vcpu->arch.cr0 &= ~guest_owned_bits;
2219 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & guest_owned_bits;
2220 break;
Sean Christopherson34059c22019-09-27 14:45:23 -07002221 case VCPU_EXREG_CR3:
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00002222 if (is_unrestricted_guest(vcpu) ||
2223 (enable_ept && is_paging(vcpu)))
Sean Christopherson34059c22019-09-27 14:45:23 -07002224 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2225 break;
Sean Christophersonf98c1e72020-05-01 21:32:30 -07002226 case VCPU_EXREG_CR4:
2227 guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
2228
2229 vcpu->arch.cr4 &= ~guest_owned_bits;
2230 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & guest_owned_bits;
2231 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002232 default:
Sean Christopherson34059c22019-09-27 14:45:23 -07002233 WARN_ON_ONCE(1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002234 break;
2235 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002236}
2237
Avi Kivity6aa8b732006-12-10 02:21:36 -08002238static __init int cpu_has_kvm_support(void)
2239{
Eduardo Habkost6210e372008-11-17 19:03:16 -02002240 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002241}
2242
2243static __init int vmx_disabled_by_bios(void)
2244{
Sean Christophersona4d0b2f2019-12-20 20:45:09 -08002245 return !boot_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
2246 !boot_cpu_has(X86_FEATURE_VMX);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002247}
2248
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002249static int kvm_cpu_vmxon(u64 vmxon_pointer)
Dongxiao Xu7725b892010-05-11 18:29:38 +08002250{
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002251 u64 msr;
2252
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002253 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03002254 intel_pt_handle_vmx(1);
2255
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002256 asm_volatile_goto("1: vmxon %[vmxon_pointer]\n\t"
2257 _ASM_EXTABLE(1b, %l[fault])
2258 : : [vmxon_pointer] "m"(vmxon_pointer)
2259 : : fault);
2260 return 0;
2261
2262fault:
2263 WARN_ONCE(1, "VMXON faulted, MSR_IA32_FEAT_CTL (0x3a) = 0x%llx\n",
2264 rdmsrl_safe(MSR_IA32_FEAT_CTL, &msr) ? 0xdeadbeef : msr);
2265 intel_pt_handle_vmx(0);
2266 cr4_clear_bits(X86_CR4_VMXE);
2267
2268 return -EFAULT;
Dongxiao Xu7725b892010-05-11 18:29:38 +08002269}
2270
Radim Krčmář13a34e02014-08-28 15:13:03 +02002271static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002272{
2273 int cpu = raw_smp_processor_id();
2274 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002275 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002276
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002277 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02002278 return -EBUSY;
2279
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002280 /*
2281 * This can happen if we hot-added a CPU but failed to allocate
2282 * VP assist page for it.
2283 */
2284 if (static_branch_unlikely(&enable_evmcs) &&
2285 !hv_get_vp_assist_page(cpu))
2286 return -EFAULT;
2287
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002288 r = kvm_cpu_vmxon(phys_addr);
2289 if (r)
2290 return r;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002291
David Hildenbrandfdf288b2017-08-24 20:51:29 +02002292 if (enable_ept)
2293 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02002294
2295 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002296}
2297
Nadav Har'Eld462b812011-05-24 15:26:10 +03002298static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03002299{
2300 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03002301 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03002302
Nadav Har'Eld462b812011-05-24 15:26:10 +03002303 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
2304 loaded_vmcss_on_cpu_link)
2305 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03002306}
2307
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002308
2309/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
2310 * tricks.
2311 */
2312static void kvm_cpu_vmxoff(void)
2313{
Uros Bizjak4b1e5472018-10-11 19:40:44 +02002314 asm volatile (__ex("vmxoff"));
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03002315
2316 intel_pt_handle_vmx(0);
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002317 cr4_clear_bits(X86_CR4_VMXE);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002318}
2319
Radim Krčmář13a34e02014-08-28 15:13:03 +02002320static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002321{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002322 vmclear_local_loaded_vmcss();
2323 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002324}
2325
Sean Christopherson7a57c092020-03-12 11:04:16 -07002326/*
2327 * There is no X86_FEATURE for SGX yet, but anyway we need to query CPUID
2328 * directly instead of going through cpu_has(), to ensure KVM is trapping
2329 * ENCLS whenever it's supported in hardware. It does not matter whether
2330 * the host OS supports or has enabled SGX.
2331 */
2332static bool cpu_has_sgx(void)
2333{
2334 return cpuid_eax(0) >= 0x12 && (cpuid_eax(0x12) & BIT(0));
2335}
2336
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002337static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04002338 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002339{
2340 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002341 u32 ctl = ctl_min | ctl_opt;
2342
2343 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2344
2345 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
2346 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
2347
2348 /* Ensure minimum (required) set of control bits are supported. */
2349 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002350 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002351
2352 *result = ctl;
2353 return 0;
2354}
2355
Sean Christopherson7caaa712018-12-03 13:53:01 -08002356static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf,
2357 struct vmx_capability *vmx_cap)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002358{
2359 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08002360 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002361 u32 _pin_based_exec_control = 0;
2362 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002363 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002364 u32 _vmexit_control = 0;
2365 u32 _vmentry_control = 0;
2366
Paolo Bonzini13893092018-02-26 13:40:09 +01002367 memset(vmcs_conf, 0, sizeof(*vmcs_conf));
Raghavendra K T10166742012-02-07 23:19:20 +05302368 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002369#ifdef CONFIG_X86_64
2370 CPU_BASED_CR8_LOAD_EXITING |
2371 CPU_BASED_CR8_STORE_EXITING |
2372#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002373 CPU_BASED_CR3_LOAD_EXITING |
2374 CPU_BASED_CR3_STORE_EXITING |
Quan Xu8eb73e2d2017-12-12 16:44:21 +08002375 CPU_BASED_UNCOND_IO_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002376 CPU_BASED_MOV_DR_EXITING |
Xiaoyao Li5e3d3942019-12-06 16:45:26 +08002377 CPU_BASED_USE_TSC_OFFSETTING |
Wanpeng Li4d5422c2018-03-12 04:53:02 -07002378 CPU_BASED_MWAIT_EXITING |
2379 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02002380 CPU_BASED_INVLPG_EXITING |
2381 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06002382
Sheng Yangf78e0e22007-10-29 09:40:42 +08002383 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08002384 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08002385 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002386 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
2387 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002388 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002389#ifdef CONFIG_X86_64
2390 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2391 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
2392 ~CPU_BASED_CR8_STORE_EXITING;
2393#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08002394 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002395 min2 = 0;
2396 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08002397 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08002398 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08002399 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002400 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002401 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002402 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Paolo Bonzini0367f202016-07-12 10:44:55 +02002403 SECONDARY_EXEC_DESC |
Sean Christopherson7f3603b2020-09-23 09:50:47 -07002404 SECONDARY_EXEC_ENABLE_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08002405 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002406 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03002407 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08002408 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08002409 SECONDARY_EXEC_XSAVES |
David Hildenbrand736fdf72017-08-24 20:51:37 +02002410 SECONDARY_EXEC_RDSEED_EXITING |
2411 SECONDARY_EXEC_RDRAND_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08002412 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04002413 SECONDARY_EXEC_TSC_SCALING |
Tao Xue69e72fa2019-07-16 14:55:49 +08002414 SECONDARY_EXEC_ENABLE_USR_WAIT_PAUSE |
Chao Pengf99e3da2018-10-24 16:05:10 +08002415 SECONDARY_EXEC_PT_USE_GPA |
2416 SECONDARY_EXEC_PT_CONCEAL_VMX |
Sean Christopherson7a57c092020-03-12 11:04:16 -07002417 SECONDARY_EXEC_ENABLE_VMFUNC;
2418 if (cpu_has_sgx())
2419 opt2 |= SECONDARY_EXEC_ENCLS_EXITING;
Sheng Yangd56f5462008-04-25 10:13:16 +08002420 if (adjust_vmx_controls(min2, opt2,
2421 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002422 &_cpu_based_2nd_exec_control) < 0)
2423 return -EIO;
2424 }
2425#ifndef CONFIG_X86_64
2426 if (!(_cpu_based_2nd_exec_control &
2427 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
2428 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
2429#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08002430
2431 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2432 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08002433 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002434 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
2435 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08002436
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002437 rdmsr_safe(MSR_IA32_VMX_EPT_VPID_CAP,
Sean Christopherson7caaa712018-12-03 13:53:01 -08002438 &vmx_cap->ept, &vmx_cap->vpid);
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002439
Sheng Yangd56f5462008-04-25 10:13:16 +08002440 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03002441 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
2442 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03002443 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
2444 CPU_BASED_CR3_STORE_EXITING |
2445 CPU_BASED_INVLPG_EXITING);
Sean Christopherson7caaa712018-12-03 13:53:01 -08002446 } else if (vmx_cap->ept) {
2447 vmx_cap->ept = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002448 pr_warn_once("EPT CAP should not exist if not support "
2449 "1-setting enable EPT VM-execution control\n");
2450 }
2451 if (!(_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_VPID) &&
Sean Christopherson7caaa712018-12-03 13:53:01 -08002452 vmx_cap->vpid) {
2453 vmx_cap->vpid = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002454 pr_warn_once("VPID CAP should not exist if not support "
2455 "1-setting enable VPID VM-execution control\n");
Sheng Yangd56f5462008-04-25 10:13:16 +08002456 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002457
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002458 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002459#ifdef CONFIG_X86_64
2460 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
2461#endif
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002462 opt = VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL |
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002463 VM_EXIT_LOAD_IA32_PAT |
2464 VM_EXIT_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002465 VM_EXIT_CLEAR_BNDCFGS |
2466 VM_EXIT_PT_CONCEAL_PIP |
2467 VM_EXIT_CLEAR_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002468 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
2469 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002470 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002471
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01002472 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
2473 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
2474 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002475 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
2476 &_pin_based_exec_control) < 0)
2477 return -EIO;
2478
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02002479 if (cpu_has_broken_vmx_preemption_timer())
2480 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002481 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002482 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08002483 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
2484
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01002485 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002486 opt = VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL |
2487 VM_ENTRY_LOAD_IA32_PAT |
2488 VM_ENTRY_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002489 VM_ENTRY_LOAD_BNDCFGS |
2490 VM_ENTRY_PT_CONCEAL_PIP |
2491 VM_ENTRY_LOAD_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002492 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
2493 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002494 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002495
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002496 /*
2497 * Some cpus support VM_{ENTRY,EXIT}_IA32_PERF_GLOBAL_CTRL but they
2498 * can't be used due to an errata where VM Exit may incorrectly clear
2499 * IA32_PERF_GLOBAL_CTRL[34:32]. Workaround the errata by using the
2500 * MSR load mechanism to switch IA32_PERF_GLOBAL_CTRL.
2501 */
2502 if (boot_cpu_data.x86 == 0x6) {
2503 switch (boot_cpu_data.x86_model) {
2504 case 26: /* AAK155 */
2505 case 30: /* AAP115 */
2506 case 37: /* AAT100 */
2507 case 44: /* BC86,AAY89,BD102 */
2508 case 46: /* BA97 */
Sean Christopherson85ba2b12019-01-14 12:12:02 -08002509 _vmentry_control &= ~VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002510 _vmexit_control &= ~VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL;
2511 pr_warn_once("kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
2512 "does not work properly. Using workaround\n");
2513 break;
2514 default:
2515 break;
2516 }
2517 }
2518
2519
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002520 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002521
2522 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
2523 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002524 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002525
2526#ifdef CONFIG_X86_64
2527 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
2528 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03002529 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002530#endif
2531
2532 /* Require Write-Back (WB) memory type for VMCS accesses. */
2533 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002534 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002535
Yang, Sheng002c7f72007-07-31 14:23:01 +03002536 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02002537 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03002538 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002539
Liran Alon2307af12018-06-29 22:59:04 +03002540 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002541
Yang, Sheng002c7f72007-07-31 14:23:01 +03002542 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
2543 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002544 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002545 vmcs_conf->vmexit_ctrl = _vmexit_control;
2546 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002547
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002548 if (static_branch_unlikely(&enable_evmcs))
2549 evmcs_sanitize_exec_ctrls(vmcs_conf);
2550
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002551 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002552}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002553
Ben Gardon41836832019-02-11 11:02:52 -08002554struct vmcs *alloc_vmcs_cpu(bool shadow, int cpu, gfp_t flags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002555{
2556 int node = cpu_to_node(cpu);
2557 struct page *pages;
2558 struct vmcs *vmcs;
2559
Ben Gardon41836832019-02-11 11:02:52 -08002560 pages = __alloc_pages_node(node, flags, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002561 if (!pages)
2562 return NULL;
2563 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002564 memset(vmcs, 0, vmcs_config.size);
Liran Alon2307af12018-06-29 22:59:04 +03002565
2566 /* KVM supports Enlightened VMCS v1 only */
2567 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002568 vmcs->hdr.revision_id = KVM_EVMCS_VERSION;
Liran Alon2307af12018-06-29 22:59:04 +03002569 else
Liran Alon392b2f22018-06-23 02:35:01 +03002570 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002571
Liran Alon491a6032018-06-23 02:35:12 +03002572 if (shadow)
2573 vmcs->hdr.shadow_vmcs = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002574 return vmcs;
2575}
2576
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002577void free_vmcs(struct vmcs *vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002578{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002579 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002580}
2581
Nadav Har'Eld462b812011-05-24 15:26:10 +03002582/*
2583 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
2584 */
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002585void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Nadav Har'Eld462b812011-05-24 15:26:10 +03002586{
2587 if (!loaded_vmcs->vmcs)
2588 return;
2589 loaded_vmcs_clear(loaded_vmcs);
2590 free_vmcs(loaded_vmcs->vmcs);
2591 loaded_vmcs->vmcs = NULL;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002592 if (loaded_vmcs->msr_bitmap)
2593 free_page((unsigned long)loaded_vmcs->msr_bitmap);
Jim Mattson355f4fb2016-10-28 08:29:39 -07002594 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002595}
2596
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002597int alloc_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002598{
Liran Alon491a6032018-06-23 02:35:12 +03002599 loaded_vmcs->vmcs = alloc_vmcs(false);
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002600 if (!loaded_vmcs->vmcs)
2601 return -ENOMEM;
2602
Sean Christophersond260f9e2020-03-21 12:37:50 -07002603 vmcs_clear(loaded_vmcs->vmcs);
2604
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002605 loaded_vmcs->shadow_vmcs = NULL;
Sean Christopherson804939e2019-05-07 12:18:05 -07002606 loaded_vmcs->hv_timer_soft_disabled = false;
Sean Christophersond260f9e2020-03-21 12:37:50 -07002607 loaded_vmcs->cpu = -1;
2608 loaded_vmcs->launched = 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002609
2610 if (cpu_has_vmx_msr_bitmap()) {
Ben Gardon41836832019-02-11 11:02:52 -08002611 loaded_vmcs->msr_bitmap = (unsigned long *)
2612 __get_free_page(GFP_KERNEL_ACCOUNT);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002613 if (!loaded_vmcs->msr_bitmap)
2614 goto out_vmcs;
2615 memset(loaded_vmcs->msr_bitmap, 0xff, PAGE_SIZE);
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02002616
Arnd Bergmann1f008e12018-05-25 17:36:17 +02002617 if (IS_ENABLED(CONFIG_HYPERV) &&
2618 static_branch_unlikely(&enable_evmcs) &&
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02002619 (ms_hyperv.nested_features & HV_X64_NESTED_MSR_BITMAP)) {
2620 struct hv_enlightened_vmcs *evmcs =
2621 (struct hv_enlightened_vmcs *)loaded_vmcs->vmcs;
2622
2623 evmcs->hv_enlightenments_control.msr_bitmap = 1;
2624 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002625 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07002626
2627 memset(&loaded_vmcs->host_state, 0, sizeof(struct vmcs_host_state));
Sean Christopherson3af80fe2019-05-07 12:18:00 -07002628 memset(&loaded_vmcs->controls_shadow, 0,
2629 sizeof(struct vmcs_controls_shadow));
Sean Christophersond7ee0392018-07-23 12:32:47 -07002630
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002631 return 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002632
2633out_vmcs:
2634 free_loaded_vmcs(loaded_vmcs);
2635 return -ENOMEM;
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002636}
2637
Sam Ravnborg39959582007-06-01 00:47:13 -07002638static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002639{
2640 int cpu;
2641
Zachary Amsden3230bb42009-09-29 11:38:37 -10002642 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002643 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10002644 per_cpu(vmxarea, cpu) = NULL;
2645 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002646}
2647
Avi Kivity6aa8b732006-12-10 02:21:36 -08002648static __init int alloc_kvm_area(void)
2649{
2650 int cpu;
2651
Zachary Amsden3230bb42009-09-29 11:38:37 -10002652 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002653 struct vmcs *vmcs;
2654
Ben Gardon41836832019-02-11 11:02:52 -08002655 vmcs = alloc_vmcs_cpu(false, cpu, GFP_KERNEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002656 if (!vmcs) {
2657 free_kvm_area();
2658 return -ENOMEM;
2659 }
2660
Liran Alon2307af12018-06-29 22:59:04 +03002661 /*
2662 * When eVMCS is enabled, alloc_vmcs_cpu() sets
2663 * vmcs->revision_id to KVM_EVMCS_VERSION instead of
2664 * revision_id reported by MSR_IA32_VMX_BASIC.
2665 *
Linus Torvalds312a4662018-12-26 17:03:51 -08002666 * However, even though not explicitly documented by
Liran Alon2307af12018-06-29 22:59:04 +03002667 * TLFS, VMXArea passed as VMXON argument should
2668 * still be marked with revision_id reported by
2669 * physical CPU.
2670 */
2671 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002672 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002673
Avi Kivity6aa8b732006-12-10 02:21:36 -08002674 per_cpu(vmxarea, cpu) = vmcs;
2675 }
2676 return 0;
2677}
2678
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002679static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02002680 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002681{
Gleb Natapovd99e4152012-12-20 16:57:45 +02002682 if (!emulate_invalid_guest_state) {
2683 /*
2684 * CS and SS RPL should be equal during guest entry according
2685 * to VMX spec, but in reality it is not always so. Since vcpu
2686 * is in the middle of the transition from real mode to
2687 * protected mode it is safe to assume that RPL 0 is a good
2688 * default value.
2689 */
2690 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03002691 save->selector &= ~SEGMENT_RPL_MASK;
2692 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02002693 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002694 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02002695 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002696}
2697
2698static void enter_pmode(struct kvm_vcpu *vcpu)
2699{
2700 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002701 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002702
Gleb Natapovd99e4152012-12-20 16:57:45 +02002703 /*
2704 * Update real mode segment cache. It may be not up-to-date if sement
2705 * register was written while vcpu was in a guest mode.
2706 */
2707 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2708 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2709 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2710 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
2711 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2712 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
2713
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002714 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002715
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002716 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002717
2718 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002719 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2720 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002721 vmcs_writel(GUEST_RFLAGS, flags);
2722
Rusty Russell66aee912007-07-17 23:34:16 +10002723 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
2724 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002725
2726 update_exception_bitmap(vcpu);
2727
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002728 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2729 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2730 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2731 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2732 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
2733 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002734}
2735
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002736static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002737{
Mathias Krause772e0312012-08-30 01:30:19 +02002738 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02002739 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002740
Gleb Natapovd99e4152012-12-20 16:57:45 +02002741 var.dpl = 0x3;
2742 if (seg == VCPU_SREG_CS)
2743 var.type = 0x3;
2744
2745 if (!emulate_invalid_guest_state) {
2746 var.selector = var.base >> 4;
2747 var.base = var.base & 0xffff0;
2748 var.limit = 0xffff;
2749 var.g = 0;
2750 var.db = 0;
2751 var.present = 1;
2752 var.s = 1;
2753 var.l = 0;
2754 var.unusable = 0;
2755 var.type = 0x3;
2756 var.avl = 0;
2757 if (save->base & 0xf)
2758 printk_once(KERN_WARNING "kvm: segment base is not "
2759 "paragraph aligned when entering "
2760 "protected mode (seg=%d)", seg);
2761 }
2762
2763 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05002764 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02002765 vmcs_write32(sf->limit, var.limit);
2766 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002767}
2768
2769static void enter_rmode(struct kvm_vcpu *vcpu)
2770{
2771 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002772 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002773 struct kvm_vmx *kvm_vmx = to_kvm_vmx(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002774
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002775 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
2776 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2777 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2778 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2779 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02002780 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2781 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002782
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002783 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002784
Gleb Natapov776e58e2011-03-13 12:34:27 +02002785 /*
2786 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01002787 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02002788 */
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002789 if (!kvm_vmx->tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02002790 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
2791 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02002792
Avi Kivity2fb92db2011-04-27 19:42:18 +03002793 vmx_segment_cache_clear(vmx);
2794
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002795 vmcs_writel(GUEST_TR_BASE, kvm_vmx->tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002796 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002797 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2798
2799 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002800 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002801
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002802 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002803
2804 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10002805 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002806 update_exception_bitmap(vcpu);
2807
Gleb Natapovd99e4152012-12-20 16:57:45 +02002808 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2809 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2810 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2811 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2812 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
2813 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002814
Eddie Dong8668a3c2007-10-10 14:26:45 +08002815 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002816}
2817
Sean Christopherson97b7ead2018-12-03 13:53:16 -08002818void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
Amit Shah401d10d2009-02-20 22:53:37 +05302819{
2820 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond85a8032020-09-23 11:04:06 -07002821 struct vmx_uret_msr *msr = vmx_find_uret_msr(vmx, MSR_EFER);
Avi Kivity26bb0982009-09-07 11:14:12 +03002822
2823 if (!msr)
2824 return;
Amit Shah401d10d2009-02-20 22:53:37 +05302825
Avi Kivityf6801df2010-01-21 15:31:50 +02002826 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05302827 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002828 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302829 msr->data = efer;
2830 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002831 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302832
2833 msr->data = efer & ~EFER_LME;
2834 }
2835 setup_msrs(vmx);
2836}
2837
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002838#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002839
2840static void enter_lmode(struct kvm_vcpu *vcpu)
2841{
2842 u32 guest_tr_ar;
2843
Avi Kivity2fb92db2011-04-27 19:42:18 +03002844 vmx_segment_cache_clear(to_vmx(vcpu));
2845
Avi Kivity6aa8b732006-12-10 02:21:36 -08002846 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002847 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02002848 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
2849 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002850 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002851 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
2852 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002853 }
Avi Kivityda38f432010-07-06 11:30:49 +03002854 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002855}
2856
2857static void exit_lmode(struct kvm_vcpu *vcpu)
2858{
Gleb Natapov2961e8762013-11-25 15:37:13 +02002859 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03002860 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002861}
2862
2863#endif
2864
Sean Christopherson77809382020-03-20 14:28:18 -07002865static void vmx_flush_tlb_all(struct kvm_vcpu *vcpu)
Sean Christopherson5058b692020-03-20 14:28:14 -07002866{
2867 struct vcpu_vmx *vmx = to_vmx(vcpu);
2868
2869 /*
Sean Christopherson77809382020-03-20 14:28:18 -07002870 * INVEPT must be issued when EPT is enabled, irrespective of VPID, as
2871 * the CPU is not required to invalidate guest-physical mappings on
2872 * VM-Entry, even if VPID is disabled. Guest-physical mappings are
2873 * associated with the root EPT structure and not any particular VPID
2874 * (INVVPID also isn't required to invalidate guest-physical mappings).
Sean Christopherson5058b692020-03-20 14:28:14 -07002875 */
2876 if (enable_ept) {
2877 ept_sync_global();
2878 } else if (enable_vpid) {
2879 if (cpu_has_vmx_invvpid_global()) {
2880 vpid_sync_vcpu_global();
2881 } else {
2882 vpid_sync_vcpu_single(vmx->vpid);
2883 vpid_sync_vcpu_single(vmx->nested.vpid02);
2884 }
2885 }
2886}
2887
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002888static void vmx_flush_tlb_current(struct kvm_vcpu *vcpu)
2889{
Sean Christopherson2a40b902020-07-15 20:41:18 -07002890 struct kvm_mmu *mmu = vcpu->arch.mmu;
2891 u64 root_hpa = mmu->root_hpa;
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002892
2893 /* No flush required if the current context is invalid. */
2894 if (!VALID_PAGE(root_hpa))
2895 return;
2896
2897 if (enable_ept)
Sean Christopherson2a40b902020-07-15 20:41:18 -07002898 ept_sync_context(construct_eptp(vcpu, root_hpa,
2899 mmu->shadow_root_level));
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002900 else if (!is_guest_mode(vcpu))
2901 vpid_sync_context(to_vmx(vcpu)->vpid);
2902 else
2903 vpid_sync_context(nested_get_vpid02(vcpu));
2904}
2905
Junaid Shahidfaff8752018-06-29 13:10:05 -07002906static void vmx_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t addr)
2907{
Junaid Shahidfaff8752018-06-29 13:10:05 -07002908 /*
Sean Christophersonad104b52020-03-20 14:28:11 -07002909 * vpid_sync_vcpu_addr() is a nop if vmx->vpid==0, see the comment in
2910 * vmx_flush_tlb_guest() for an explanation of why this is ok.
Junaid Shahidfaff8752018-06-29 13:10:05 -07002911 */
Sean Christophersonad104b52020-03-20 14:28:11 -07002912 vpid_sync_vcpu_addr(to_vmx(vcpu)->vpid, addr);
Junaid Shahidfaff8752018-06-29 13:10:05 -07002913}
2914
Sean Christophersone64419d2020-03-20 14:28:10 -07002915static void vmx_flush_tlb_guest(struct kvm_vcpu *vcpu)
2916{
2917 /*
2918 * vpid_sync_context() is a nop if vmx->vpid==0, e.g. if enable_vpid==0
2919 * or a vpid couldn't be allocated for this vCPU. VM-Enter and VM-Exit
2920 * are required to flush GVA->{G,H}PA mappings from the TLB if vpid is
2921 * disabled (VM-Enter with vpid enabled and vpid==0 is disallowed),
2922 * i.e. no explicit INVVPID is necessary.
2923 */
2924 vpid_sync_context(to_vmx(vcpu)->vpid);
2925}
2926
Peter Shier43fea4e2020-08-20 16:05:45 -07002927void vmx_ept_load_pdptrs(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08002928{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002929 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
2930
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002931 if (!kvm_register_is_dirty(vcpu, VCPU_EXREG_PDPTR))
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002932 return;
2933
Paolo Bonzinibf03d4f2019-06-06 18:52:44 +02002934 if (is_pae_paging(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002935 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
2936 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
2937 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
2938 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08002939 }
2940}
2941
Sean Christopherson97b7ead2018-12-03 13:53:16 -08002942void ept_save_pdptrs(struct kvm_vcpu *vcpu)
Avi Kivity8f5d5492009-05-31 18:41:29 +03002943{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002944 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
2945
Sean Christopherson9932b492020-04-15 13:34:50 -07002946 if (WARN_ON_ONCE(!is_pae_paging(vcpu)))
2947 return;
2948
2949 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
2950 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
2951 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
2952 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002953
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002954 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002955}
2956
Sheng Yang14394422008-04-28 12:24:45 +08002957static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
2958 unsigned long cr0,
2959 struct kvm_vcpu *vcpu)
2960{
Sean Christopherson2183f562019-05-07 12:17:56 -07002961 struct vcpu_vmx *vmx = to_vmx(vcpu);
2962
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002963 if (!kvm_register_is_available(vcpu, VCPU_EXREG_CR3))
Sean Christopherson34059c22019-09-27 14:45:23 -07002964 vmx_cache_reg(vcpu, VCPU_EXREG_CR3);
Sheng Yang14394422008-04-28 12:24:45 +08002965 if (!(cr0 & X86_CR0_PG)) {
2966 /* From paging/starting to nonpaging */
Sean Christopherson2183f562019-05-07 12:17:56 -07002967 exec_controls_setbit(vmx, CPU_BASED_CR3_LOAD_EXITING |
2968 CPU_BASED_CR3_STORE_EXITING);
Sheng Yang14394422008-04-28 12:24:45 +08002969 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002970 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002971 } else if (!is_paging(vcpu)) {
2972 /* From nonpaging to paging */
Sean Christopherson2183f562019-05-07 12:17:56 -07002973 exec_controls_clearbit(vmx, CPU_BASED_CR3_LOAD_EXITING |
2974 CPU_BASED_CR3_STORE_EXITING);
Sheng Yang14394422008-04-28 12:24:45 +08002975 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002976 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002977 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08002978
2979 if (!(cr0 & X86_CR0_WP))
2980 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08002981}
2982
Sean Christopherson97b7ead2018-12-03 13:53:16 -08002983void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002984{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002985 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002986 unsigned long hw_cr0;
2987
Sean Christopherson3de63472018-07-13 08:42:30 -07002988 hw_cr0 = (cr0 & ~KVM_VM_CR0_ALWAYS_OFF);
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00002989 if (is_unrestricted_guest(vcpu))
Gleb Natapov50378782013-02-04 16:00:28 +02002990 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02002991 else {
Gleb Natapov50378782013-02-04 16:00:28 +02002992 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08002993
Gleb Natapov218e7632013-01-21 15:36:45 +02002994 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
2995 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002996
Gleb Natapov218e7632013-01-21 15:36:45 +02002997 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
2998 enter_rmode(vcpu);
2999 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003000
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003001#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02003002 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10003003 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003004 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10003005 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003006 exit_lmode(vcpu);
3007 }
3008#endif
3009
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003010 if (enable_ept && !is_unrestricted_guest(vcpu))
Sheng Yang14394422008-04-28 12:24:45 +08003011 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
3012
Avi Kivity6aa8b732006-12-10 02:21:36 -08003013 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08003014 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003015 vcpu->arch.cr0 = cr0;
Sean Christophersonbd31fe42020-05-01 21:32:31 -07003016 kvm_register_mark_available(vcpu, VCPU_EXREG_CR0);
Gleb Natapov14168782013-01-21 15:36:49 +02003017
3018 /* depends on vcpu->arch.cr0 to be set to a new value */
3019 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003020}
3021
Sean Christophersond468d942020-07-15 20:41:20 -07003022static int vmx_get_max_tdp_level(void)
Sean Christopherson0047fca2020-05-01 21:32:33 -07003023{
Sean Christophersond468d942020-07-15 20:41:20 -07003024 if (cpu_has_vmx_ept_5levels())
Sean Christopherson0047fca2020-05-01 21:32:33 -07003025 return 5;
3026 return 4;
3027}
3028
Sean Christopherson2a40b902020-07-15 20:41:18 -07003029u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa,
3030 int root_level)
Sheng Yang14394422008-04-28 12:24:45 +08003031{
Yu Zhang855feb62017-08-24 20:27:55 +08003032 u64 eptp = VMX_EPTP_MT_WB;
Sheng Yang14394422008-04-28 12:24:45 +08003033
Sean Christopherson2a40b902020-07-15 20:41:18 -07003034 eptp |= (root_level == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08003035
Peter Feiner995f00a2017-06-30 17:26:32 -07003036 if (enable_ept_ad_bits &&
3037 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02003038 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08003039 eptp |= (root_hpa & PAGE_MASK);
3040
3041 return eptp;
3042}
3043
Sean Christopherson2a40b902020-07-15 20:41:18 -07003044static void vmx_load_mmu_pgd(struct kvm_vcpu *vcpu, unsigned long pgd,
3045 int pgd_level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003046{
Tianyu Lan877ad952018-07-19 08:40:23 +00003047 struct kvm *kvm = vcpu->kvm;
Sean Christopherson04f11ef2019-09-27 14:45:16 -07003048 bool update_guest_cr3 = true;
Sheng Yang14394422008-04-28 12:24:45 +08003049 unsigned long guest_cr3;
3050 u64 eptp;
3051
Avi Kivity089d0342009-03-23 18:26:32 +02003052 if (enable_ept) {
Sean Christopherson2a40b902020-07-15 20:41:18 -07003053 eptp = construct_eptp(vcpu, pgd, pgd_level);
Sheng Yang14394422008-04-28 12:24:45 +08003054 vmcs_write64(EPT_POINTER, eptp);
Tianyu Lan877ad952018-07-19 08:40:23 +00003055
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003056 if (kvm_x86_ops.tlb_remote_flush) {
Tianyu Lan877ad952018-07-19 08:40:23 +00003057 spin_lock(&to_kvm_vmx(kvm)->ept_pointer_lock);
3058 to_vmx(vcpu)->ept_pointer = eptp;
3059 to_kvm_vmx(kvm)->ept_pointers_match
3060 = EPT_POINTERS_CHECK;
3061 spin_unlock(&to_kvm_vmx(kvm)->ept_pointer_lock);
3062 }
3063
Paolo Bonzinidf7e0682020-05-20 08:37:37 -04003064 if (!enable_unrestricted_guest && !is_paging(vcpu))
Tianyu Lan877ad952018-07-19 08:40:23 +00003065 guest_cr3 = to_kvm_vmx(kvm)->ept_identity_map_addr;
Sean Christophersonb17b7432019-09-27 14:45:17 -07003066 else if (test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3067 guest_cr3 = vcpu->arch.cr3;
3068 else /* vmcs01.GUEST_CR3 is already up-to-date. */
3069 update_guest_cr3 = false;
Peter Shier43fea4e2020-08-20 16:05:45 -07003070 vmx_ept_load_pdptrs(vcpu);
Sean Christophersonbe100ef2020-03-20 14:28:33 -07003071 } else {
3072 guest_cr3 = pgd;
Sheng Yang14394422008-04-28 12:24:45 +08003073 }
3074
Sean Christopherson04f11ef2019-09-27 14:45:16 -07003075 if (update_guest_cr3)
3076 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003077}
3078
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003079int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003080{
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003081 struct vcpu_vmx *vmx = to_vmx(vcpu);
Ben Serebrin085e68e2015-04-16 11:58:05 -07003082 /*
3083 * Pass through host's Machine Check Enable value to hw_cr4, which
3084 * is in force while we are in guest mode. Do not let guests control
3085 * this bit, even if host CR4.MCE == 0.
3086 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003087 unsigned long hw_cr4;
3088
3089 hw_cr4 = (cr4_read_shadow() & X86_CR4_MCE) | (cr4 & ~X86_CR4_MCE);
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003090 if (is_unrestricted_guest(vcpu))
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003091 hw_cr4 |= KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST;
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003092 else if (vmx->rmode.vm86_active)
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003093 hw_cr4 |= KVM_RMODE_VM_CR4_ALWAYS_ON;
3094 else
3095 hw_cr4 |= KVM_PMODE_VM_CR4_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003096
Sean Christopherson64f7a112018-04-30 10:01:06 -07003097 if (!boot_cpu_has(X86_FEATURE_UMIP) && vmx_umip_emulated()) {
3098 if (cr4 & X86_CR4_UMIP) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003099 secondary_exec_controls_setbit(vmx, SECONDARY_EXEC_DESC);
Sean Christopherson64f7a112018-04-30 10:01:06 -07003100 hw_cr4 &= ~X86_CR4_UMIP;
3101 } else if (!is_guest_mode(vcpu) ||
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003102 !nested_cpu_has2(get_vmcs12(vcpu), SECONDARY_EXEC_DESC)) {
3103 secondary_exec_controls_clearbit(vmx, SECONDARY_EXEC_DESC);
3104 }
Sean Christopherson64f7a112018-04-30 10:01:06 -07003105 }
Paolo Bonzini0367f202016-07-12 10:44:55 +02003106
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003107 if (cr4 & X86_CR4_VMXE) {
3108 /*
3109 * To use VMXON (and later other VMX instructions), a guest
3110 * must first be able to turn on cr4.VMXE (see handle_vmon()).
3111 * So basically the check on whether to allow nested VMX
Paolo Bonzini5bea5122018-09-18 15:19:17 +02003112 * is here. We operate under the default treatment of SMM,
3113 * so VMX cannot be enabled under SMM.
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003114 */
Paolo Bonzini5bea5122018-09-18 15:19:17 +02003115 if (!nested_vmx_allowed(vcpu) || is_smm(vcpu))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003116 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01003117 }
David Matlack38991522016-11-29 18:14:08 -08003118
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003119 if (vmx->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003120 return 1;
3121
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003122 vcpu->arch.cr4 = cr4;
Sean Christophersonf98c1e72020-05-01 21:32:30 -07003123 kvm_register_mark_available(vcpu, VCPU_EXREG_CR4);
Sheng Yang14394422008-04-28 12:24:45 +08003124
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003125 if (!is_unrestricted_guest(vcpu)) {
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003126 if (enable_ept) {
3127 if (!is_paging(vcpu)) {
3128 hw_cr4 &= ~X86_CR4_PAE;
3129 hw_cr4 |= X86_CR4_PSE;
3130 } else if (!(cr4 & X86_CR4_PAE)) {
3131 hw_cr4 &= ~X86_CR4_PAE;
3132 }
3133 }
3134
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003135 /*
Huaitong Handdba2622016-03-22 16:51:15 +08003136 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
3137 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
3138 * to be manually disabled when guest switches to non-paging
3139 * mode.
3140 *
3141 * If !enable_unrestricted_guest, the CPU is always running
3142 * with CR0.PG=1 and CR4 needs to be modified.
3143 * If enable_unrestricted_guest, the CPU automatically
3144 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003145 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003146 if (!is_paging(vcpu))
3147 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
3148 }
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003149
Sheng Yang14394422008-04-28 12:24:45 +08003150 vmcs_writel(CR4_READ_SHADOW, cr4);
3151 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003152 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003153}
3154
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003155void vmx_get_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003156{
Avi Kivitya9179492011-01-03 14:28:52 +02003157 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003158 u32 ar;
3159
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003160 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003161 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02003162 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03003163 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003164 return;
Avi Kivity1390a282012-08-21 17:07:08 +03003165 var->base = vmx_read_guest_seg_base(vmx, seg);
3166 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3167 return;
Avi Kivitya9179492011-01-03 14:28:52 +02003168 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003169 var->base = vmx_read_guest_seg_base(vmx, seg);
3170 var->limit = vmx_read_guest_seg_limit(vmx, seg);
3171 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3172 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03003173 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003174 var->type = ar & 15;
3175 var->s = (ar >> 4) & 1;
3176 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03003177 /*
3178 * Some userspaces do not preserve unusable property. Since usable
3179 * segment has to be present according to VMX spec we can use present
3180 * property to amend userspace bug by making unusable segment always
3181 * nonpresent. vmx_segment_access_rights() already marks nonpresent
3182 * segment as unusable.
3183 */
3184 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003185 var->avl = (ar >> 12) & 1;
3186 var->l = (ar >> 13) & 1;
3187 var->db = (ar >> 14) & 1;
3188 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003189}
3190
Avi Kivitya9179492011-01-03 14:28:52 +02003191static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
3192{
Avi Kivitya9179492011-01-03 14:28:52 +02003193 struct kvm_segment s;
3194
3195 if (to_vmx(vcpu)->rmode.vm86_active) {
3196 vmx_get_segment(vcpu, &s, seg);
3197 return s.base;
3198 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003199 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003200}
3201
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003202int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02003203{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003204 struct vcpu_vmx *vmx = to_vmx(vcpu);
3205
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003206 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02003207 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003208 else {
3209 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003210 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003211 }
Avi Kivity69c73022011-03-07 15:26:44 +02003212}
3213
Avi Kivity653e3102007-05-07 10:55:37 +03003214static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003215{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003216 u32 ar;
3217
Avi Kivityf0495f92012-06-07 17:06:10 +03003218 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003219 ar = 1 << 16;
3220 else {
3221 ar = var->type & 15;
3222 ar |= (var->s & 1) << 4;
3223 ar |= (var->dpl & 3) << 5;
3224 ar |= (var->present & 1) << 7;
3225 ar |= (var->avl & 1) << 12;
3226 ar |= (var->l & 1) << 13;
3227 ar |= (var->db & 1) << 14;
3228 ar |= (var->g & 1) << 15;
3229 }
Avi Kivity653e3102007-05-07 10:55:37 +03003230
3231 return ar;
3232}
3233
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003234void vmx_set_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity653e3102007-05-07 10:55:37 +03003235{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003236 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02003237 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03003238
Avi Kivity2fb92db2011-04-27 19:42:18 +03003239 vmx_segment_cache_clear(vmx);
3240
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003241 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
3242 vmx->rmode.segs[seg] = *var;
3243 if (seg == VCPU_SREG_TR)
3244 vmcs_write16(sf->selector, var->selector);
3245 else if (var->s)
3246 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02003247 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03003248 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003249
Avi Kivity653e3102007-05-07 10:55:37 +03003250 vmcs_writel(sf->base, var->base);
3251 vmcs_write32(sf->limit, var->limit);
3252 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003253
3254 /*
3255 * Fix the "Accessed" bit in AR field of segment registers for older
3256 * qemu binaries.
3257 * IA32 arch specifies that at the time of processor reset the
3258 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08003259 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003260 * state vmexit when "unrestricted guest" mode is turned on.
3261 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3262 * tree. Newer qemu binaries with that qemu fix would not need this
3263 * kvm hack.
3264 */
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003265 if (is_unrestricted_guest(vcpu) && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02003266 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003267
Gleb Natapovf924d662012-12-12 19:10:55 +02003268 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02003269
3270out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01003271 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003272}
3273
Avi Kivity6aa8b732006-12-10 02:21:36 -08003274static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
3275{
Avi Kivity2fb92db2011-04-27 19:42:18 +03003276 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003277
3278 *db = (ar >> 14) & 1;
3279 *l = (ar >> 13) & 1;
3280}
3281
Gleb Natapov89a27f42010-02-16 10:51:48 +02003282static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003283{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003284 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
3285 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003286}
3287
Gleb Natapov89a27f42010-02-16 10:51:48 +02003288static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003289{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003290 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
3291 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003292}
3293
Gleb Natapov89a27f42010-02-16 10:51:48 +02003294static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003295{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003296 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
3297 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003298}
3299
Gleb Natapov89a27f42010-02-16 10:51:48 +02003300static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003301{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003302 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
3303 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003304}
3305
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003306static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
3307{
3308 struct kvm_segment var;
3309 u32 ar;
3310
3311 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02003312 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02003313 if (seg == VCPU_SREG_CS)
3314 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003315 ar = vmx_segment_access_rights(&var);
3316
3317 if (var.base != (var.selector << 4))
3318 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02003319 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003320 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02003321 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003322 return false;
3323
3324 return true;
3325}
3326
3327static bool code_segment_valid(struct kvm_vcpu *vcpu)
3328{
3329 struct kvm_segment cs;
3330 unsigned int cs_rpl;
3331
3332 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003333 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003334
Avi Kivity1872a3f2009-01-04 23:26:52 +02003335 if (cs.unusable)
3336 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003337 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003338 return false;
3339 if (!cs.s)
3340 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003341 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003342 if (cs.dpl > cs_rpl)
3343 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003344 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003345 if (cs.dpl != cs_rpl)
3346 return false;
3347 }
3348 if (!cs.present)
3349 return false;
3350
3351 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
3352 return true;
3353}
3354
3355static bool stack_segment_valid(struct kvm_vcpu *vcpu)
3356{
3357 struct kvm_segment ss;
3358 unsigned int ss_rpl;
3359
3360 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003361 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003362
Avi Kivity1872a3f2009-01-04 23:26:52 +02003363 if (ss.unusable)
3364 return true;
3365 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003366 return false;
3367 if (!ss.s)
3368 return false;
3369 if (ss.dpl != ss_rpl) /* DPL != RPL */
3370 return false;
3371 if (!ss.present)
3372 return false;
3373
3374 return true;
3375}
3376
3377static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
3378{
3379 struct kvm_segment var;
3380 unsigned int rpl;
3381
3382 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03003383 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003384
Avi Kivity1872a3f2009-01-04 23:26:52 +02003385 if (var.unusable)
3386 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003387 if (!var.s)
3388 return false;
3389 if (!var.present)
3390 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003391 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003392 if (var.dpl < rpl) /* DPL < RPL */
3393 return false;
3394 }
3395
3396 /* TODO: Add other members to kvm_segment_field to allow checking for other access
3397 * rights flags
3398 */
3399 return true;
3400}
3401
3402static bool tr_valid(struct kvm_vcpu *vcpu)
3403{
3404 struct kvm_segment tr;
3405
3406 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
3407
Avi Kivity1872a3f2009-01-04 23:26:52 +02003408 if (tr.unusable)
3409 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03003410 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003411 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003412 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003413 return false;
3414 if (!tr.present)
3415 return false;
3416
3417 return true;
3418}
3419
3420static bool ldtr_valid(struct kvm_vcpu *vcpu)
3421{
3422 struct kvm_segment ldtr;
3423
3424 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
3425
Avi Kivity1872a3f2009-01-04 23:26:52 +02003426 if (ldtr.unusable)
3427 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03003428 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003429 return false;
3430 if (ldtr.type != 2)
3431 return false;
3432 if (!ldtr.present)
3433 return false;
3434
3435 return true;
3436}
3437
3438static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
3439{
3440 struct kvm_segment cs, ss;
3441
3442 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3443 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3444
Nadav Amitb32a9912015-03-29 16:33:04 +03003445 return ((cs.selector & SEGMENT_RPL_MASK) ==
3446 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003447}
3448
3449/*
3450 * Check if guest state is valid. Returns true if valid, false if
3451 * not.
3452 * We assume that registers are always usable
3453 */
Sean Christopherson2ba44932020-09-23 11:44:48 -07003454bool __vmx_guest_state_valid(struct kvm_vcpu *vcpu)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003455{
3456 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03003457 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003458 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
3459 return false;
3460 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
3461 return false;
3462 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
3463 return false;
3464 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
3465 return false;
3466 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
3467 return false;
3468 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
3469 return false;
3470 } else {
3471 /* protected mode guest state checks */
3472 if (!cs_ss_rpl_check(vcpu))
3473 return false;
3474 if (!code_segment_valid(vcpu))
3475 return false;
3476 if (!stack_segment_valid(vcpu))
3477 return false;
3478 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
3479 return false;
3480 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
3481 return false;
3482 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
3483 return false;
3484 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
3485 return false;
3486 if (!tr_valid(vcpu))
3487 return false;
3488 if (!ldtr_valid(vcpu))
3489 return false;
3490 }
3491 /* TODO:
3492 * - Add checks on RIP
3493 * - Add checks on RFLAGS
3494 */
3495
3496 return true;
3497}
3498
Mike Dayd77c26f2007-10-08 09:02:08 -04003499static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003500{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003501 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02003502 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02003503 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003504
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003505 idx = srcu_read_lock(&kvm->srcu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003506 fn = to_kvm_vmx(kvm)->tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02003507 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3508 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003509 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003510 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08003511 r = kvm_write_guest_page(kvm, fn++, &data,
3512 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02003513 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003514 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003515 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
3516 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003517 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003518 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3519 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003520 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003521 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003522 r = kvm_write_guest_page(kvm, fn, &data,
3523 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
3524 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003525out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003526 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02003527 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003528}
3529
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003530static int init_rmode_identity_map(struct kvm *kvm)
3531{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003532 struct kvm_vmx *kvm_vmx = to_kvm_vmx(kvm);
Peter Xu2a5755b2020-01-09 09:57:14 -05003533 int i, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08003534 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003535 u32 tmp;
3536
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003537 /* Protect kvm_vmx->ept_identity_pagetable_done. */
Tang Chena255d472014-09-16 18:41:58 +08003538 mutex_lock(&kvm->slots_lock);
3539
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003540 if (likely(kvm_vmx->ept_identity_pagetable_done))
Peter Xu2a5755b2020-01-09 09:57:14 -05003541 goto out;
Tang Chena255d472014-09-16 18:41:58 +08003542
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003543 if (!kvm_vmx->ept_identity_map_addr)
3544 kvm_vmx->ept_identity_map_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
3545 identity_map_pfn = kvm_vmx->ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08003546
David Hildenbrandd8a6e362017-08-24 20:51:34 +02003547 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003548 kvm_vmx->ept_identity_map_addr, PAGE_SIZE);
Tang Chenf51770e2014-09-16 18:41:59 +08003549 if (r < 0)
Peter Xu2a5755b2020-01-09 09:57:14 -05003550 goto out;
Tang Chena255d472014-09-16 18:41:58 +08003551
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003552 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
3553 if (r < 0)
3554 goto out;
3555 /* Set up identity-mapping pagetable for EPT in real mode */
3556 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
3557 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
3558 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
3559 r = kvm_write_guest_page(kvm, identity_map_pfn,
3560 &tmp, i * sizeof(tmp), sizeof(tmp));
3561 if (r < 0)
3562 goto out;
3563 }
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003564 kvm_vmx->ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08003565
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003566out:
Tang Chena255d472014-09-16 18:41:58 +08003567 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08003568 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003569}
3570
Avi Kivity6aa8b732006-12-10 02:21:36 -08003571static void seg_setup(int seg)
3572{
Mathias Krause772e0312012-08-30 01:30:19 +02003573 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003574 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003575
3576 vmcs_write16(sf->selector, 0);
3577 vmcs_writel(sf->base, 0);
3578 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02003579 ar = 0x93;
3580 if (seg == VCPU_SREG_CS)
3581 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003582
3583 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003584}
3585
Sheng Yangf78e0e22007-10-29 09:40:42 +08003586static int alloc_apic_access_page(struct kvm *kvm)
3587{
Xiao Guangrong44841412012-09-07 14:14:20 +08003588 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003589 int r = 0;
3590
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003591 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08003592 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003593 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02003594 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
3595 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003596 if (r)
3597 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02003598
Tang Chen73a6d942014-09-11 13:38:00 +08003599 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08003600 if (is_error_page(page)) {
3601 r = -EFAULT;
3602 goto out;
3603 }
3604
Tang Chenc24ae0d2014-09-24 15:57:58 +08003605 /*
3606 * Do not pin the page in memory, so that memory hot-unplug
3607 * is able to migrate it.
3608 */
3609 put_page(page);
3610 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003611out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003612 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003613 return r;
3614}
3615
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003616int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003617{
3618 int vpid;
3619
Avi Kivity919818a2009-03-23 18:01:29 +02003620 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08003621 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003622 spin_lock(&vmx_vpid_lock);
3623 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003624 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003625 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003626 else
3627 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003628 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003629 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003630}
3631
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003632void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003633{
Wanpeng Li991e7a02015-09-16 17:30:05 +08003634 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003635 return;
3636 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003637 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003638 spin_unlock(&vmx_vpid_lock);
3639}
3640
Alexander Graf3eb90012020-09-25 16:34:20 +02003641static void vmx_clear_msr_bitmap_read(ulong *msr_bitmap, u32 msr)
3642{
3643 int f = sizeof(unsigned long);
3644
3645 if (msr <= 0x1fff)
3646 __clear_bit(msr, msr_bitmap + 0x000 / f);
3647 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3648 __clear_bit(msr & 0x1fff, msr_bitmap + 0x400 / f);
3649}
3650
3651static void vmx_clear_msr_bitmap_write(ulong *msr_bitmap, u32 msr)
3652{
3653 int f = sizeof(unsigned long);
3654
3655 if (msr <= 0x1fff)
3656 __clear_bit(msr, msr_bitmap + 0x800 / f);
3657 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3658 __clear_bit(msr & 0x1fff, msr_bitmap + 0xc00 / f);
3659}
3660
3661static void vmx_set_msr_bitmap_read(ulong *msr_bitmap, u32 msr)
3662{
3663 int f = sizeof(unsigned long);
3664
3665 if (msr <= 0x1fff)
3666 __set_bit(msr, msr_bitmap + 0x000 / f);
3667 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3668 __set_bit(msr & 0x1fff, msr_bitmap + 0x400 / f);
3669}
3670
3671static void vmx_set_msr_bitmap_write(ulong *msr_bitmap, u32 msr)
3672{
3673 int f = sizeof(unsigned long);
3674
3675 if (msr <= 0x1fff)
3676 __set_bit(msr, msr_bitmap + 0x800 / f);
3677 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff))
3678 __set_bit(msr & 0x1fff, msr_bitmap + 0xc00 / f);
3679}
3680
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003681static __always_inline void vmx_disable_intercept_for_msr(struct kvm_vcpu *vcpu,
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003682 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08003683{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003684 struct vcpu_vmx *vmx = to_vmx(vcpu);
3685 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
Sheng Yang25c5f222008-03-28 13:18:56 +08003686
3687 if (!cpu_has_vmx_msr_bitmap())
3688 return;
3689
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003690 if (static_branch_unlikely(&enable_evmcs))
3691 evmcs_touch_msr_bitmap();
3692
Sheng Yang25c5f222008-03-28 13:18:56 +08003693 /*
Alexander Graf3eb90012020-09-25 16:34:20 +02003694 * Mark the desired intercept state in shadow bitmap, this is needed
3695 * for resync when the MSR filters change.
3696 */
3697 if (is_valid_passthrough_msr(msr)) {
3698 int idx = possible_passthrough_msr_slot(msr);
Yang Zhang8d146952013-01-25 10:18:50 +08003699
Alexander Graf3eb90012020-09-25 16:34:20 +02003700 if (idx != -ENOENT) {
3701 if (type & MSR_TYPE_R)
3702 clear_bit(idx, vmx->shadow_msr_intercept.read);
3703 if (type & MSR_TYPE_W)
3704 clear_bit(idx, vmx->shadow_msr_intercept.write);
3705 }
Yang Zhang8d146952013-01-25 10:18:50 +08003706 }
Alexander Graf3eb90012020-09-25 16:34:20 +02003707
3708 if ((type & MSR_TYPE_R) &&
3709 !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_READ)) {
3710 vmx_set_msr_bitmap_read(msr_bitmap, msr);
3711 type &= ~MSR_TYPE_R;
3712 }
3713
3714 if ((type & MSR_TYPE_W) &&
3715 !kvm_msr_allowed(vcpu, msr, KVM_MSR_FILTER_WRITE)) {
3716 vmx_set_msr_bitmap_write(msr_bitmap, msr);
3717 type &= ~MSR_TYPE_W;
3718 }
3719
3720 if (type & MSR_TYPE_R)
3721 vmx_clear_msr_bitmap_read(msr_bitmap, msr);
3722
3723 if (type & MSR_TYPE_W)
3724 vmx_clear_msr_bitmap_write(msr_bitmap, msr);
Yang Zhang8d146952013-01-25 10:18:50 +08003725}
3726
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003727static __always_inline void vmx_enable_intercept_for_msr(struct kvm_vcpu *vcpu,
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003728 u32 msr, int type)
3729{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003730 struct vcpu_vmx *vmx = to_vmx(vcpu);
3731 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003732
3733 if (!cpu_has_vmx_msr_bitmap())
3734 return;
3735
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003736 if (static_branch_unlikely(&enable_evmcs))
3737 evmcs_touch_msr_bitmap();
3738
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003739 /*
Alexander Graf3eb90012020-09-25 16:34:20 +02003740 * Mark the desired intercept state in shadow bitmap, this is needed
3741 * for resync when the MSR filter changes.
3742 */
3743 if (is_valid_passthrough_msr(msr)) {
3744 int idx = possible_passthrough_msr_slot(msr);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003745
Alexander Graf3eb90012020-09-25 16:34:20 +02003746 if (idx != -ENOENT) {
3747 if (type & MSR_TYPE_R)
3748 set_bit(idx, vmx->shadow_msr_intercept.read);
3749 if (type & MSR_TYPE_W)
3750 set_bit(idx, vmx->shadow_msr_intercept.write);
3751 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003752 }
Alexander Graf3eb90012020-09-25 16:34:20 +02003753
3754 if (type & MSR_TYPE_R)
3755 vmx_set_msr_bitmap_read(msr_bitmap, msr);
3756
3757 if (type & MSR_TYPE_W)
3758 vmx_set_msr_bitmap_write(msr_bitmap, msr);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003759}
3760
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003761static __always_inline void vmx_set_intercept_for_msr(struct kvm_vcpu *vcpu,
3762 u32 msr, int type, bool value)
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003763{
3764 if (value)
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003765 vmx_enable_intercept_for_msr(vcpu, msr, type);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003766 else
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003767 vmx_disable_intercept_for_msr(vcpu, msr, type);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003768}
3769
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003770static u8 vmx_msr_bitmap_mode(struct kvm_vcpu *vcpu)
Avi Kivity58972972009-02-24 22:26:47 +02003771{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003772 u8 mode = 0;
3773
3774 if (cpu_has_secondary_exec_ctrls() &&
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003775 (secondary_exec_controls_get(to_vmx(vcpu)) &
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003776 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
3777 mode |= MSR_BITMAP_MODE_X2APIC;
3778 if (enable_apicv && kvm_vcpu_apicv_active(vcpu))
3779 mode |= MSR_BITMAP_MODE_X2APIC_APICV;
3780 }
3781
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003782 return mode;
Yang Zhang8d146952013-01-25 10:18:50 +08003783}
3784
Alexander Graf3eb90012020-09-25 16:34:20 +02003785static void vmx_update_msr_bitmap_x2apic(struct kvm_vcpu *vcpu, u8 mode)
Yang Zhang8d146952013-01-25 10:18:50 +08003786{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003787 int msr;
3788
Alexander Graf3eb90012020-09-25 16:34:20 +02003789 for (msr = 0x800; msr <= 0x8ff; msr++) {
3790 bool intercepted = !!(mode & MSR_BITMAP_MODE_X2APIC_APICV);
3791
3792 vmx_set_intercept_for_msr(vcpu, msr, MSR_TYPE_RW, intercepted);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08003793 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003794
3795 if (mode & MSR_BITMAP_MODE_X2APIC) {
3796 /*
3797 * TPR reads and writes can be virtualized even if virtual interrupt
3798 * delivery is not in use.
3799 */
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003800 vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_TASKPRI), MSR_TYPE_RW);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003801 if (mode & MSR_BITMAP_MODE_X2APIC_APICV) {
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003802 vmx_enable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_TMCCT), MSR_TYPE_RW);
3803 vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_EOI), MSR_TYPE_W);
3804 vmx_disable_intercept_for_msr(vcpu, X2APIC_MSR(APIC_SELF_IPI), MSR_TYPE_W);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003805 }
3806 }
3807}
3808
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003809void vmx_update_msr_bitmap(struct kvm_vcpu *vcpu)
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003810{
3811 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003812 u8 mode = vmx_msr_bitmap_mode(vcpu);
3813 u8 changed = mode ^ vmx->msr_bitmap_mode;
3814
3815 if (!changed)
3816 return;
3817
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003818 if (changed & (MSR_BITMAP_MODE_X2APIC | MSR_BITMAP_MODE_X2APIC_APICV))
Alexander Graf3eb90012020-09-25 16:34:20 +02003819 vmx_update_msr_bitmap_x2apic(vcpu, mode);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003820
3821 vmx->msr_bitmap_mode = mode;
Avi Kivity58972972009-02-24 22:26:47 +02003822}
3823
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003824void pt_update_intercept_for_msr(struct kvm_vcpu *vcpu)
Chao Pengb08c2892018-10-24 16:05:15 +08003825{
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003826 struct vcpu_vmx *vmx = to_vmx(vcpu);
Chao Pengb08c2892018-10-24 16:05:15 +08003827 bool flag = !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
3828 u32 i;
3829
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003830 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_STATUS, MSR_TYPE_RW, flag);
3831 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_OUTPUT_BASE, MSR_TYPE_RW, flag);
3832 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_OUTPUT_MASK, MSR_TYPE_RW, flag);
3833 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_CR3_MATCH, MSR_TYPE_RW, flag);
Chao Pengb08c2892018-10-24 16:05:15 +08003834 for (i = 0; i < vmx->pt_desc.addr_range; i++) {
Aaron Lewis476c9bd2020-09-25 16:34:18 +02003835 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_ADDR0_A + i * 2, MSR_TYPE_RW, flag);
3836 vmx_set_intercept_for_msr(vcpu, MSR_IA32_RTIT_ADDR0_B + i * 2, MSR_TYPE_RW, flag);
Chao Pengb08c2892018-10-24 16:05:15 +08003837 }
3838}
3839
Liran Alone6c67d82018-09-04 10:56:52 +03003840static bool vmx_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
3841{
3842 struct vcpu_vmx *vmx = to_vmx(vcpu);
3843 void *vapic_page;
3844 u32 vppr;
3845 int rvi;
3846
3847 if (WARN_ON_ONCE(!is_guest_mode(vcpu)) ||
3848 !nested_cpu_has_vid(get_vmcs12(vcpu)) ||
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003849 WARN_ON_ONCE(!vmx->nested.virtual_apic_map.gfn))
Liran Alone6c67d82018-09-04 10:56:52 +03003850 return false;
3851
Paolo Bonzini7e712682018-10-03 13:44:26 +02003852 rvi = vmx_get_rvi();
Liran Alone6c67d82018-09-04 10:56:52 +03003853
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003854 vapic_page = vmx->nested.virtual_apic_map.hva;
Liran Alone6c67d82018-09-04 10:56:52 +03003855 vppr = *((u32 *)(vapic_page + APIC_PROCPRI));
Liran Alone6c67d82018-09-04 10:56:52 +03003856
3857 return ((rvi & 0xf0) > (vppr & 0xf0));
3858}
3859
Alexander Graf3eb90012020-09-25 16:34:20 +02003860static void vmx_msr_filter_changed(struct kvm_vcpu *vcpu)
3861{
3862 struct vcpu_vmx *vmx = to_vmx(vcpu);
3863 u32 i;
3864
3865 /*
3866 * Set intercept permissions for all potentially passed through MSRs
3867 * again. They will automatically get filtered through the MSR filter,
3868 * so we are back in sync after this.
3869 */
3870 for (i = 0; i < ARRAY_SIZE(vmx_possible_passthrough_msrs); i++) {
3871 u32 msr = vmx_possible_passthrough_msrs[i];
3872 bool read = test_bit(i, vmx->shadow_msr_intercept.read);
3873 bool write = test_bit(i, vmx->shadow_msr_intercept.write);
3874
3875 vmx_set_intercept_for_msr(vcpu, msr, MSR_TYPE_R, read);
3876 vmx_set_intercept_for_msr(vcpu, msr, MSR_TYPE_W, write);
3877 }
3878
3879 pt_update_intercept_for_msr(vcpu);
3880 vmx_update_msr_bitmap_x2apic(vcpu, vmx_msr_bitmap_mode(vcpu));
3881}
3882
Wincy Van06a55242017-04-28 13:13:59 +08003883static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
3884 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003885{
3886#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08003887 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
3888
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003889 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08003890 /*
Haozhong Zhang5753743f2017-09-18 09:56:50 +08003891 * The vector of interrupt to be delivered to vcpu had
3892 * been set in PIR before this function.
Feng Wu28b835d2015-09-18 22:29:54 +08003893 *
Haozhong Zhang5753743f2017-09-18 09:56:50 +08003894 * Following cases will be reached in this block, and
3895 * we always send a notification event in all cases as
3896 * explained below.
3897 *
3898 * Case 1: vcpu keeps in non-root mode. Sending a
3899 * notification event posts the interrupt to vcpu.
3900 *
3901 * Case 2: vcpu exits to root mode and is still
3902 * runnable. PIR will be synced to vIRR before the
3903 * next vcpu entry. Sending a notification event in
3904 * this case has no effect, as vcpu is not in root
3905 * mode.
3906 *
3907 * Case 3: vcpu exits to root mode and is blocked.
3908 * vcpu_block() has already synced PIR to vIRR and
3909 * never blocks vcpu if vIRR is not cleared. Therefore,
3910 * a blocked vcpu here does not wait for any requested
3911 * interrupts in PIR, and sending a notification event
3912 * which has no effect is safe here.
Feng Wu28b835d2015-09-18 22:29:54 +08003913 */
Feng Wu28b835d2015-09-18 22:29:54 +08003914
Wincy Van06a55242017-04-28 13:13:59 +08003915 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003916 return true;
3917 }
3918#endif
3919 return false;
3920}
3921
Wincy Van705699a2015-02-03 23:58:17 +08003922static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
3923 int vector)
3924{
3925 struct vcpu_vmx *vmx = to_vmx(vcpu);
3926
3927 if (is_guest_mode(vcpu) &&
3928 vector == vmx->nested.posted_intr_nv) {
Wincy Van705699a2015-02-03 23:58:17 +08003929 /*
3930 * If a posted intr is not recognized by hardware,
3931 * we will accomplish it in the next vmentry.
3932 */
3933 vmx->nested.pi_pending = true;
3934 kvm_make_request(KVM_REQ_EVENT, vcpu);
Liran Alon6b697712017-11-09 20:27:20 +02003935 /* the PIR and ON have been set by L1. */
3936 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, true))
3937 kvm_vcpu_kick(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08003938 return 0;
3939 }
3940 return -1;
3941}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003942/*
Yang Zhanga20ed542013-04-11 19:25:15 +08003943 * Send interrupt to vcpu via posted interrupt way.
3944 * 1. If target vcpu is running(non-root mode), send posted interrupt
3945 * notification to vcpu and hardware will sync PIR to vIRR atomically.
3946 * 2. If target vcpu isn't running(root mode), kick it to pick up the
3947 * interrupt from PIR in next vmentry.
3948 */
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003949static int vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
Yang Zhanga20ed542013-04-11 19:25:15 +08003950{
3951 struct vcpu_vmx *vmx = to_vmx(vcpu);
3952 int r;
3953
Wincy Van705699a2015-02-03 23:58:17 +08003954 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
3955 if (!r)
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003956 return 0;
3957
3958 if (!vcpu->arch.apicv_active)
3959 return -1;
Wincy Van705699a2015-02-03 23:58:17 +08003960
Yang Zhanga20ed542013-04-11 19:25:15 +08003961 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003962 return 0;
Yang Zhanga20ed542013-04-11 19:25:15 +08003963
Paolo Bonzinib95234c2016-12-19 13:57:33 +01003964 /* If a previous notification has sent the IPI, nothing to do. */
3965 if (pi_test_and_set_on(&vmx->pi_desc))
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003966 return 0;
Paolo Bonzinib95234c2016-12-19 13:57:33 +01003967
Wanpeng Li379a3c82020-04-28 14:23:27 +08003968 if (vcpu != kvm_get_running_vcpu() &&
3969 !kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08003970 kvm_vcpu_kick(vcpu);
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003971
3972 return 0;
Yang Zhanga20ed542013-04-11 19:25:15 +08003973}
3974
Avi Kivity6aa8b732006-12-10 02:21:36 -08003975/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003976 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
3977 * will not change in the lifetime of the guest.
3978 * Note that host-state that does change is set elsewhere. E.g., host-state
3979 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
3980 */
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003981void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003982{
3983 u32 low32, high32;
3984 unsigned long tmpl;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07003985 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003986
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07003987 cr0 = read_cr0();
3988 WARN_ON(cr0 & X86_CR0_TS);
3989 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07003990
3991 /*
3992 * Save the most likely value for this task's CR3 in the VMCS.
3993 * We can't use __get_current_cr3_fast() because we're not atomic.
3994 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07003995 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07003996 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
Sean Christophersond7ee0392018-07-23 12:32:47 -07003997 vmx->loaded_vmcs->host_state.cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003998
Andy Lutomirskid974baa2014-10-08 09:02:13 -07003999 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07004000 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004001 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07004002 vmx->loaded_vmcs->host_state.cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004003
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004004 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004005#ifdef CONFIG_X86_64
4006 /*
4007 * Load null selectors, so we can avoid reloading them in
Sean Christopherson6d6095b2018-07-23 12:32:44 -07004008 * vmx_prepare_switch_to_host(), in case userspace uses
4009 * the null selectors too (the expected case).
Avi Kivityb2da15a2012-05-13 19:53:24 +03004010 */
4011 vmcs_write16(HOST_DS_SELECTOR, 0);
4012 vmcs_write16(HOST_ES_SELECTOR, 0);
4013#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004014 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4015 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004016#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004017 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4018 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
4019
Sean Christopherson23420802019-04-19 22:50:57 -07004020 vmcs_writel(HOST_IDTR_BASE, host_idt_base); /* 22.2.4 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004021
Sean Christopherson453eafb2018-12-20 12:25:17 -08004022 vmcs_writel(HOST_RIP, (unsigned long)vmx_vmexit); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004023
4024 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
4025 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
4026 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
4027 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
4028
4029 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
4030 rdmsr(MSR_IA32_CR_PAT, low32, high32);
4031 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
4032 }
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07004033
Sean Christophersonc73da3f2018-12-03 13:53:00 -08004034 if (cpu_has_load_ia32_efer())
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07004035 vmcs_write64(HOST_IA32_EFER, host_efer);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004036}
4037
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004038void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004039{
Sean Christophersonfa71e952020-07-02 21:04:22 -07004040 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_POSSIBLE_CR4_GUEST_BITS;
4041 if (!enable_ept)
4042 vmx->vcpu.arch.cr4_guest_owned_bits &= ~X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03004043 if (is_guest_mode(&vmx->vcpu))
4044 vmx->vcpu.arch.cr4_guest_owned_bits &=
4045 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004046 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
4047}
4048
Sean Christophersonc075c3e2019-05-07 12:17:53 -07004049u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
Yang Zhang01e439b2013-04-11 19:25:12 +08004050{
4051 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
4052
Andrey Smetanind62caab2015-11-10 15:36:33 +03004053 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08004054 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004055
4056 if (!enable_vnmi)
4057 pin_based_exec_ctrl &= ~PIN_BASED_VIRTUAL_NMIS;
4058
Sean Christopherson804939e2019-05-07 12:18:05 -07004059 if (!enable_preemption_timer)
4060 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
4061
Yang Zhang01e439b2013-04-11 19:25:12 +08004062 return pin_based_exec_ctrl;
4063}
4064
Andrey Smetanind62caab2015-11-10 15:36:33 +03004065static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
4066{
4067 struct vcpu_vmx *vmx = to_vmx(vcpu);
4068
Sean Christophersonc5f2c762019-05-07 12:17:55 -07004069 pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03004070 if (cpu_has_secondary_exec_ctrls()) {
4071 if (kvm_vcpu_apicv_active(vcpu))
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07004072 secondary_exec_controls_setbit(vmx,
Roman Kagan3ce424e2016-05-18 17:48:20 +03004073 SECONDARY_EXEC_APIC_REGISTER_VIRT |
4074 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
4075 else
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07004076 secondary_exec_controls_clearbit(vmx,
Roman Kagan3ce424e2016-05-18 17:48:20 +03004077 SECONDARY_EXEC_APIC_REGISTER_VIRT |
4078 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
4079 }
4080
4081 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004082 vmx_update_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004083}
4084
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08004085u32 vmx_exec_control(struct vcpu_vmx *vmx)
4086{
4087 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
4088
4089 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
4090 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
4091
4092 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
4093 exec_control &= ~CPU_BASED_TPR_SHADOW;
4094#ifdef CONFIG_X86_64
4095 exec_control |= CPU_BASED_CR8_STORE_EXITING |
4096 CPU_BASED_CR8_LOAD_EXITING;
4097#endif
4098 }
4099 if (!enable_ept)
4100 exec_control |= CPU_BASED_CR3_STORE_EXITING |
4101 CPU_BASED_CR3_LOAD_EXITING |
4102 CPU_BASED_INVLPG_EXITING;
4103 if (kvm_mwait_in_guest(vmx->vcpu.kvm))
4104 exec_control &= ~(CPU_BASED_MWAIT_EXITING |
4105 CPU_BASED_MONITOR_EXITING);
4106 if (kvm_hlt_in_guest(vmx->vcpu.kvm))
4107 exec_control &= ~CPU_BASED_HLT_EXITING;
4108 return exec_control;
4109}
4110
Sean Christopherson8b50b922020-09-24 17:30:11 -07004111/*
4112 * Adjust a single secondary execution control bit to intercept/allow an
4113 * instruction in the guest. This is usually done based on whether or not a
4114 * feature has been exposed to the guest in order to correctly emulate faults.
4115 */
4116static inline void
4117vmx_adjust_secondary_exec_control(struct vcpu_vmx *vmx, u32 *exec_control,
4118 u32 control, bool enabled, bool exiting)
4119{
4120 /*
4121 * If the control is for an opt-in feature, clear the control if the
4122 * feature is not exposed to the guest, i.e. not enabled. If the
4123 * control is opt-out, i.e. an exiting control, clear the control if
4124 * the feature _is_ exposed to the guest, i.e. exiting/interception is
4125 * disabled for the associated instruction. Note, the caller is
4126 * responsible presetting exec_control to set all supported bits.
4127 */
4128 if (enabled == exiting)
4129 *exec_control &= ~control;
4130
4131 /*
4132 * Update the nested MSR settings so that a nested VMM can/can't set
4133 * controls for features that are/aren't exposed to the guest.
4134 */
4135 if (nested) {
4136 if (enabled)
4137 vmx->nested.msrs.secondary_ctls_high |= control;
4138 else
4139 vmx->nested.msrs.secondary_ctls_high &= ~control;
4140 }
4141}
4142
4143/*
4144 * Wrapper macro for the common case of adjusting a secondary execution control
4145 * based on a single guest CPUID bit, with a dedicated feature bit. This also
4146 * verifies that the control is actually supported by KVM and hardware.
4147 */
4148#define vmx_adjust_sec_exec_control(vmx, exec_control, name, feat_name, ctrl_name, exiting) \
4149({ \
4150 bool __enabled; \
4151 \
4152 if (cpu_has_vmx_##name()) { \
4153 __enabled = guest_cpuid_has(&(vmx)->vcpu, \
4154 X86_FEATURE_##feat_name); \
4155 vmx_adjust_secondary_exec_control(vmx, exec_control, \
4156 SECONDARY_EXEC_##ctrl_name, __enabled, exiting); \
4157 } \
4158})
4159
4160/* More macro magic for ENABLE_/opt-in versus _EXITING/opt-out controls. */
4161#define vmx_adjust_sec_exec_feature(vmx, exec_control, lname, uname) \
4162 vmx_adjust_sec_exec_control(vmx, exec_control, lname, uname, ENABLE_##uname, false)
4163
4164#define vmx_adjust_sec_exec_exiting(vmx, exec_control, lname, uname) \
4165 vmx_adjust_sec_exec_control(vmx, exec_control, lname, uname, uname##_EXITING, true)
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08004166
Paolo Bonzini80154d72017-08-24 13:55:35 +02004167static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004168{
Paolo Bonzini80154d72017-08-24 13:55:35 +02004169 struct kvm_vcpu *vcpu = &vmx->vcpu;
4170
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004171 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004172
Sean Christopherson2ef76192020-03-02 15:56:22 -08004173 if (vmx_pt_mode_is_system())
Chao Pengf99e3da2018-10-24 16:05:10 +08004174 exec_control &= ~(SECONDARY_EXEC_PT_USE_GPA | SECONDARY_EXEC_PT_CONCEAL_VMX);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004175 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004176 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
4177 if (vmx->vpid == 0)
4178 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
4179 if (!enable_ept) {
4180 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
4181 enable_unrestricted_guest = 0;
4182 }
4183 if (!enable_unrestricted_guest)
4184 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Wanpeng Lib31c1142018-03-12 04:53:04 -07004185 if (kvm_pause_in_guest(vmx->vcpu.kvm))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004186 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02004187 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08004188 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
4189 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08004190 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004191
4192 /* SECONDARY_EXEC_DESC is enabled/disabled on writes to CR4.UMIP,
4193 * in vmx_set_cr4. */
4194 exec_control &= ~SECONDARY_EXEC_DESC;
4195
Abel Gordonabc4fc52013-04-18 14:35:25 +03004196 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
4197 (handle_vmptrld).
4198 We can NOT enable shadow_vmcs here because we don't have yet
4199 a current VMCS12
4200 */
4201 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08004202
4203 if (!enable_pml)
4204 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08004205
Sean Christophersonbecdad82020-09-23 09:50:45 -07004206 if (cpu_has_vmx_xsaves()) {
Paolo Bonzini3db13482017-08-24 14:48:03 +02004207 /* Exposing XSAVES only when XSAVE is exposed */
4208 bool xsaves_enabled =
Sean Christopherson96be4e02019-12-10 14:44:15 -08004209 boot_cpu_has(X86_FEATURE_XSAVE) &&
Paolo Bonzini3db13482017-08-24 14:48:03 +02004210 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
4211 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
4212
Aaron Lewis72041602019-10-21 16:30:20 -07004213 vcpu->arch.xsaves_enabled = xsaves_enabled;
4214
Sean Christopherson8b50b922020-09-24 17:30:11 -07004215 vmx_adjust_secondary_exec_control(vmx, &exec_control,
4216 SECONDARY_EXEC_XSAVES,
4217 xsaves_enabled, false);
Paolo Bonzini3db13482017-08-24 14:48:03 +02004218 }
4219
Sean Christopherson8b50b922020-09-24 17:30:11 -07004220 vmx_adjust_sec_exec_feature(vmx, &exec_control, rdtscp, RDTSCP);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004221
Sean Christophersonb936d3e2020-09-23 09:50:46 -07004222 /*
4223 * Expose INVPCID if and only if PCID is also exposed to the guest.
4224 * INVPCID takes a #UD when it's disabled in the VMCS, but a #GP or #PF
4225 * if CR4.PCIDE=0. Enumerating CPUID.INVPCID=1 would lead to incorrect
4226 * behavior from the guest perspective (it would expect #GP or #PF).
4227 */
4228 if (!guest_cpuid_has(vcpu, X86_FEATURE_PCID))
4229 guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID);
Sean Christopherson8b50b922020-09-24 17:30:11 -07004230 vmx_adjust_sec_exec_feature(vmx, &exec_control, invpcid, INVPCID);
Sean Christophersonb936d3e2020-09-23 09:50:46 -07004231
Paolo Bonzini80154d72017-08-24 13:55:35 +02004232
Sean Christopherson8b50b922020-09-24 17:30:11 -07004233 vmx_adjust_sec_exec_exiting(vmx, &exec_control, rdrand, RDRAND);
4234 vmx_adjust_sec_exec_exiting(vmx, &exec_control, rdseed, RDSEED);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004235
Sean Christopherson8b50b922020-09-24 17:30:11 -07004236 vmx_adjust_sec_exec_control(vmx, &exec_control, waitpkg, WAITPKG,
4237 ENABLE_USR_WAIT_PAUSE, false);
Tao Xue69e72fa2019-07-16 14:55:49 +08004238
Paolo Bonzini80154d72017-08-24 13:55:35 +02004239 vmx->secondary_exec_control = exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004240}
4241
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004242static void ept_set_mmio_spte_mask(void)
4243{
4244 /*
4245 * EPT Misconfigurations can be generated if the value of bits 2:0
4246 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004247 */
Paolo Bonzinie7581ca2020-05-19 05:04:49 -04004248 kvm_mmu_set_mmio_spte_mask(VMX_EPT_MISCONFIG_WX_VALUE, 0);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004249}
4250
Wanpeng Lif53cd632014-12-02 19:14:58 +08004251#define VMX_XSS_EXIT_BITMAP 0
Avi Kivity6aa8b732006-12-10 02:21:36 -08004252
Sean Christopherson944c3462018-12-03 13:53:09 -08004253/*
Xiaoyao Li1b842922019-10-20 17:11:01 +08004254 * Noting that the initialization of Guest-state Area of VMCS is in
4255 * vmx_vcpu_reset().
Sean Christopherson944c3462018-12-03 13:53:09 -08004256 */
Xiaoyao Li1b842922019-10-20 17:11:01 +08004257static void init_vmcs(struct vcpu_vmx *vmx)
Sean Christopherson944c3462018-12-03 13:53:09 -08004258{
Sean Christopherson944c3462018-12-03 13:53:09 -08004259 if (nested)
Xiaoyao Li1b842922019-10-20 17:11:01 +08004260 nested_vmx_set_vmcs_shadowing_bitmap();
Sean Christopherson944c3462018-12-03 13:53:09 -08004261
Sheng Yang25c5f222008-03-28 13:18:56 +08004262 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004263 vmcs_write64(MSR_BITMAP, __pa(vmx->vmcs01.msr_bitmap));
Sheng Yang25c5f222008-03-28 13:18:56 +08004264
Avi Kivity6aa8b732006-12-10 02:21:36 -08004265 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
4266
Avi Kivity6aa8b732006-12-10 02:21:36 -08004267 /* Control */
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004268 pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004269
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004270 exec_controls_set(vmx, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004271
Dan Williamsdfa169b2016-06-02 11:17:24 -07004272 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +02004273 vmx_compute_secondary_exec_control(vmx);
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004274 secondary_exec_controls_set(vmx, vmx->secondary_exec_control);
Dan Williamsdfa169b2016-06-02 11:17:24 -07004275 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08004276
Andrey Smetanind62caab2015-11-10 15:36:33 +03004277 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08004278 vmcs_write64(EOI_EXIT_BITMAP0, 0);
4279 vmcs_write64(EOI_EXIT_BITMAP1, 0);
4280 vmcs_write64(EOI_EXIT_BITMAP2, 0);
4281 vmcs_write64(EOI_EXIT_BITMAP3, 0);
4282
4283 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08004284
Li RongQing0bcf2612015-12-03 13:29:34 +08004285 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08004286 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08004287 }
4288
Wanpeng Lib31c1142018-03-12 04:53:04 -07004289 if (!kvm_pause_in_guest(vmx->vcpu.kvm)) {
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004290 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02004291 vmx->ple_window = ple_window;
4292 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004293 }
4294
Xiao Guangrongc3707952011-07-12 03:28:04 +08004295 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
4296 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004297 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
4298
Avi Kivity9581d442010-10-19 16:46:55 +02004299 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
4300 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004301 vmx_set_constant_host_state(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004302 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
4303 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004304
Bandan Das2a499e42017-08-03 15:54:41 -04004305 if (cpu_has_vmx_vmfunc())
4306 vmcs_write64(VM_FUNCTION_CONTROL, 0);
4307
Eddie Dong2cc51562007-05-21 07:28:09 +03004308 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
4309 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004310 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host.val));
Eddie Dong2cc51562007-05-21 07:28:09 +03004311 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004312 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest.val));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004313
Radim Krčmář74545702015-04-27 15:11:25 +02004314 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
4315 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08004316
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004317 vm_exit_controls_set(vmx, vmx_vmexit_ctrl());
Avi Kivity6aa8b732006-12-10 02:21:36 -08004318
4319 /* 22.2.1, 20.8.1 */
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004320 vm_entry_controls_set(vmx, vmx_vmentry_ctrl());
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004321
Sean Christophersonfa71e952020-07-02 21:04:22 -07004322 vmx->vcpu.arch.cr0_guest_owned_bits = KVM_POSSIBLE_CR0_GUEST_BITS;
4323 vmcs_writel(CR0_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr0_guest_owned_bits);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004324
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004325 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004326
Xiaoyao Li35fbe0d2019-10-20 17:10:58 +08004327 if (vmx->vpid != 0)
4328 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
4329
Sean Christophersonbecdad82020-09-23 09:50:45 -07004330 if (cpu_has_vmx_xsaves())
Wanpeng Lif53cd632014-12-02 19:14:58 +08004331 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
4332
Peter Feiner4e595162016-07-07 14:49:58 -07004333 if (enable_pml) {
Peter Feiner4e595162016-07-07 14:49:58 -07004334 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
4335 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
4336 }
Sean Christopherson0b665d32018-08-14 09:33:34 -07004337
4338 if (cpu_has_vmx_encls_vmexit())
4339 vmcs_write64(ENCLS_EXITING_BITMAP, -1ull);
Chao Peng2ef444f2018-10-24 16:05:12 +08004340
Sean Christopherson2ef76192020-03-02 15:56:22 -08004341 if (vmx_pt_mode_is_host_guest()) {
Chao Peng2ef444f2018-10-24 16:05:12 +08004342 memset(&vmx->pt_desc, 0, sizeof(vmx->pt_desc));
4343 /* Bit[6~0] are forced to 1, writes are ignored. */
4344 vmx->pt_desc.guest.output_mask = 0x7F;
4345 vmcs_write64(GUEST_IA32_RTIT_CTL, 0);
4346 }
Paolo Bonzini8c4182b2020-07-10 17:48:10 +02004347
4348 /*
4349 * If EPT is enabled, #PF is only trapped if MAXPHYADDR is mismatched
4350 * between guest and host. In that case we only care about present
4351 * faults.
4352 */
4353 if (enable_ept) {
4354 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, PFERR_PRESENT_MASK);
4355 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, PFERR_PRESENT_MASK);
4356 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004357}
4358
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004359static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004360{
4361 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01004362 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004363 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004364
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004365 vmx->rmode.vm86_active = 0;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004366 vmx->spec_ctrl = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004367
Tao Xu6e3ba4a2019-07-16 14:55:50 +08004368 vmx->msr_ia32_umwait_control = 0;
4369
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004370 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Wanpeng Li95c06542019-09-05 14:26:28 +08004371 vmx->hv_deadline_tsc = -1;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004372 kvm_set_cr8(vcpu, 0);
4373
4374 if (!init_event) {
4375 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
4376 MSR_IA32_APICBASE_ENABLE;
4377 if (kvm_vcpu_is_reset_bsp(vcpu))
4378 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
4379 apic_base_msr.host_initiated = true;
4380 kvm_set_apic_base(vcpu, &apic_base_msr);
4381 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004382
Avi Kivity2fb92db2011-04-27 19:42:18 +03004383 vmx_segment_cache_clear(vmx);
4384
Avi Kivity5706be02008-08-20 15:07:31 +03004385 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01004386 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004387 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004388
4389 seg_setup(VCPU_SREG_DS);
4390 seg_setup(VCPU_SREG_ES);
4391 seg_setup(VCPU_SREG_FS);
4392 seg_setup(VCPU_SREG_GS);
4393 seg_setup(VCPU_SREG_SS);
4394
4395 vmcs_write16(GUEST_TR_SELECTOR, 0);
4396 vmcs_writel(GUEST_TR_BASE, 0);
4397 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
4398 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4399
4400 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
4401 vmcs_writel(GUEST_LDTR_BASE, 0);
4402 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
4403 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
4404
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004405 if (!init_event) {
4406 vmcs_write32(GUEST_SYSENTER_CS, 0);
4407 vmcs_writel(GUEST_SYSENTER_ESP, 0);
4408 vmcs_writel(GUEST_SYSENTER_EIP, 0);
4409 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
4410 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004411
Wanpeng Lic37c2872017-11-20 14:52:21 -08004412 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
Jan Kiszka66450a22013-03-13 12:42:34 +01004413 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004414
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004415 vmcs_writel(GUEST_GDTR_BASE, 0);
4416 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
4417
4418 vmcs_writel(GUEST_IDTR_BASE, 0);
4419 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
4420
Anthony Liguori443381a2010-12-06 10:53:38 -06004421 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004422 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004423 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Wanpeng Lia554d202017-10-11 05:10:19 -07004424 if (kvm_mpx_supported())
4425 vmcs_write64(GUEST_BNDCFGS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004426
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004427 setup_msrs(vmx);
4428
Avi Kivity6aa8b732006-12-10 02:21:36 -08004429 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
4430
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004431 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08004432 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004433 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08004434 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004435 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004436 vmcs_write32(TPR_THRESHOLD, 0);
4437 }
4438
Paolo Bonzinia73896c2014-11-02 07:54:30 +01004439 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004440
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004441 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004442 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06004443 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004444 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02004445 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004446
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004447 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004448
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004449 vpid_sync_context(vmx->vpid);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004450 if (init_event)
4451 vmx_clear_hlt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004452}
4453
Jan Kiszkac9a79532014-03-07 20:03:15 +01004454static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004455{
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08004456 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_INTR_WINDOW_EXITING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004457}
4458
Jan Kiszkac9a79532014-03-07 20:03:15 +01004459static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004460{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004461 if (!enable_vnmi ||
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004462 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jan Kiszkac9a79532014-03-07 20:03:15 +01004463 enable_irq_window(vcpu);
4464 return;
4465 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02004466
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08004467 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_NMI_WINDOW_EXITING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004468}
4469
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004470static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03004471{
Avi Kivity9c8cba32007-11-22 11:42:59 +02004472 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004473 uint32_t intr;
4474 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02004475
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004476 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004477
Avi Kivityfa89a812008-09-01 15:57:51 +03004478 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004479 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05004480 int inc_eip = 0;
4481 if (vcpu->arch.interrupt.soft)
4482 inc_eip = vcpu->arch.event_exit_inst_len;
Sean Christopherson9497e1f2019-08-27 14:40:36 -07004483 kvm_inject_realmode_interrupt(vcpu, irq, inc_eip);
Eddie Dong85f455f2007-07-06 12:20:49 +03004484 return;
4485 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004486 intr = irq | INTR_INFO_VALID_MASK;
4487 if (vcpu->arch.interrupt.soft) {
4488 intr |= INTR_TYPE_SOFT_INTR;
4489 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
4490 vmx->vcpu.arch.event_exit_inst_len);
4491 } else
4492 intr |= INTR_TYPE_EXT_INTR;
4493 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004494
4495 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03004496}
4497
Sheng Yangf08864b2008-05-15 18:23:25 +08004498static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
4499{
Jan Kiszka66a5a342008-09-26 09:30:51 +02004500 struct vcpu_vmx *vmx = to_vmx(vcpu);
4501
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004502 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004503 /*
4504 * Tracking the NMI-blocked state in software is built upon
4505 * finding the next open IRQ window. This, in turn, depends on
4506 * well-behaving guests: They have to keep IRQs disabled at
4507 * least as long as the NMI handler runs. Otherwise we may
4508 * cause NMI nesting, maybe breaking the guest. But as this is
4509 * highly unlikely, we can live with the residual risk.
4510 */
4511 vmx->loaded_vmcs->soft_vnmi_blocked = 1;
4512 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4513 }
4514
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004515 ++vcpu->stat.nmi_injections;
4516 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004517
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004518 if (vmx->rmode.vm86_active) {
Sean Christopherson9497e1f2019-08-27 14:40:36 -07004519 kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0);
Jan Kiszka66a5a342008-09-26 09:30:51 +02004520 return;
4521 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08004522
Sheng Yangf08864b2008-05-15 18:23:25 +08004523 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
4524 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004525
4526 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08004527}
4528
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004529bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004530{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004531 struct vcpu_vmx *vmx = to_vmx(vcpu);
4532 bool masked;
4533
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004534 if (!enable_vnmi)
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004535 return vmx->loaded_vmcs->soft_vnmi_blocked;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004536 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02004537 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004538 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
4539 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4540 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004541}
4542
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004543void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004544{
4545 struct vcpu_vmx *vmx = to_vmx(vcpu);
4546
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004547 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004548 if (vmx->loaded_vmcs->soft_vnmi_blocked != masked) {
4549 vmx->loaded_vmcs->soft_vnmi_blocked = masked;
4550 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4551 }
4552 } else {
4553 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4554 if (masked)
4555 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
4556 GUEST_INTR_STATE_NMI);
4557 else
4558 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
4559 GUEST_INTR_STATE_NMI);
4560 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004561}
4562
Sean Christopherson1b660b62020-04-22 19:25:44 -07004563bool vmx_nmi_blocked(struct kvm_vcpu *vcpu)
4564{
4565 if (is_guest_mode(vcpu) && nested_exit_on_nmi(vcpu))
4566 return false;
4567
4568 if (!enable_vnmi && to_vmx(vcpu)->loaded_vmcs->soft_vnmi_blocked)
4569 return true;
4570
4571 return (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4572 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI |
4573 GUEST_INTR_STATE_NMI));
4574}
4575
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004576static int vmx_nmi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Jan Kiszka2505dc92013-04-14 12:12:47 +02004577{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01004578 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004579 return -EBUSY;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02004580
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004581 /* An NMI must not be injected into L2 if it's supposed to VM-Exit. */
4582 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_nmi(vcpu))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004583 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004584
Sean Christopherson1b660b62020-04-22 19:25:44 -07004585 return !vmx_nmi_blocked(vcpu);
4586}
Sean Christopherson429ab572020-04-22 19:25:42 -07004587
Sean Christopherson1b660b62020-04-22 19:25:44 -07004588bool vmx_interrupt_blocked(struct kvm_vcpu *vcpu)
4589{
4590 if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
Sean Christopherson88c604b2020-04-22 19:25:41 -07004591 return false;
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004592
Sean Christopherson7ab0abd2020-04-22 19:25:50 -07004593 return !(vmx_get_rflags(vcpu) & X86_EFLAGS_IF) ||
Sean Christopherson1b660b62020-04-22 19:25:44 -07004594 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4595 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Jan Kiszka2505dc92013-04-14 12:12:47 +02004596}
4597
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004598static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Gleb Natapov78646122009-03-23 12:12:11 +02004599{
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004600 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004601 return -EBUSY;
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004602
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004603 /*
4604 * An IRQ must not be injected into L2 if it's supposed to VM-Exit,
4605 * e.g. if the IRQ arrived asynchronously after checking nested events.
4606 */
4607 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004608 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004609
Sean Christopherson1b660b62020-04-22 19:25:44 -07004610 return !vmx_interrupt_blocked(vcpu);
Gleb Natapov78646122009-03-23 12:12:11 +02004611}
4612
Izik Eiduscbc94022007-10-25 00:29:55 +02004613static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
4614{
4615 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02004616
Sean Christophersonf7eaeb02018-03-05 12:04:36 -08004617 if (enable_unrestricted_guest)
4618 return 0;
4619
Peter Xu6a3c6232020-01-09 09:57:16 -05004620 mutex_lock(&kvm->slots_lock);
4621 ret = __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
4622 PAGE_SIZE * 3);
4623 mutex_unlock(&kvm->slots_lock);
4624
Izik Eiduscbc94022007-10-25 00:29:55 +02004625 if (ret)
4626 return ret;
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004627 to_kvm_vmx(kvm)->tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004628 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02004629}
4630
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004631static int vmx_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
4632{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004633 to_kvm_vmx(kvm)->ept_identity_map_addr = ident_addr;
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004634 return 0;
4635}
4636
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004637static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004638{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004639 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004640 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01004641 /*
4642 * Update instruction length as we may reinject the exception
4643 * from user space while in guest debugging mode.
4644 */
4645 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
4646 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004647 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004648 return false;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004649 fallthrough;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004650 case DB_VECTOR:
Miaohe Lina8cfbae2020-02-19 10:45:48 +08004651 return !(vcpu->guest_debug &
4652 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP));
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004653 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004654 case OF_VECTOR:
4655 case BR_VECTOR:
4656 case UD_VECTOR:
4657 case DF_VECTOR:
4658 case SS_VECTOR:
4659 case GP_VECTOR:
4660 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004661 return true;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004662 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004663 return false;
4664}
4665
4666static int handle_rmode_exception(struct kvm_vcpu *vcpu,
4667 int vec, u32 err_code)
4668{
4669 /*
4670 * Instruction with address size override prefix opcode 0x67
4671 * Cause the #SS fault with 0 error code in VM86 mode.
4672 */
4673 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004674 if (kvm_emulate_instruction(vcpu, 0)) {
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004675 if (vcpu->arch.halt_request) {
4676 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06004677 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004678 }
4679 return 1;
4680 }
4681 return 0;
4682 }
4683
4684 /*
4685 * Forward all other exceptions that are valid in real mode.
4686 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
4687 * the required debugging infrastructure rework.
4688 */
4689 kvm_queue_exception(vcpu, vec);
4690 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004691}
4692
Andi Kleena0861c02009-06-08 17:37:09 +08004693/*
4694 * Trigger machine check on the host. We assume all the MSRs are already set up
4695 * by the CPU and that we still run on the same CPU as the MCE occurred on.
4696 * We pass a fake environment to the machine check handler because we want
4697 * the guest to be always treated like user space, no matter what context
4698 * it used internally.
4699 */
4700static void kvm_machine_check(void)
4701{
Uros Bizjakfb56baa2020-04-14 09:14:14 +02004702#if defined(CONFIG_X86_MCE)
Andi Kleena0861c02009-06-08 17:37:09 +08004703 struct pt_regs regs = {
4704 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
4705 .flags = X86_EFLAGS_IF,
4706 };
4707
Thomas Gleixner8cd501c2020-02-25 23:33:23 +01004708 do_machine_check(&regs);
Andi Kleena0861c02009-06-08 17:37:09 +08004709#endif
4710}
4711
Avi Kivity851ba692009-08-24 11:10:17 +03004712static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08004713{
Sean Christopherson95b5a482019-04-19 22:50:59 -07004714 /* handled by vmx_vcpu_run() */
Andi Kleena0861c02009-06-08 17:37:09 +08004715 return 1;
4716}
4717
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004718/*
4719 * If the host has split lock detection disabled, then #AC is
4720 * unconditionally injected into the guest, which is the pre split lock
4721 * detection behaviour.
4722 *
4723 * If the host has split lock detection enabled then #AC is
4724 * only injected into the guest when:
4725 * - Guest CPL == 3 (user mode)
4726 * - Guest has #AC detection enabled in CR0
4727 * - Guest EFLAGS has AC bit set
4728 */
4729static inline bool guest_inject_ac(struct kvm_vcpu *vcpu)
4730{
4731 if (!boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
4732 return true;
4733
4734 return vmx_get_cpl(vcpu) == 3 && kvm_read_cr0_bits(vcpu, X86_CR0_AM) &&
4735 (kvm_get_rflags(vcpu) & X86_EFLAGS_AC);
4736}
4737
Sean Christopherson95b5a482019-04-19 22:50:59 -07004738static int handle_exception_nmi(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004739{
Avi Kivity1155f762007-11-22 11:30:47 +02004740 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004741 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004742 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004743 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004744 u32 vect_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004745
Avi Kivity1155f762007-11-22 11:30:47 +02004746 vect_info = vmx->idt_vectoring_info;
Sean Christophersonf27ad732020-04-27 10:18:37 -07004747 intr_info = vmx_get_intr_info(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004748
Paolo Bonzini2ea72032019-06-06 14:57:25 +02004749 if (is_machine_check(intr_info) || is_nmi(intr_info))
Sean Christopherson95b5a482019-04-19 22:50:59 -07004750 return 1; /* handled by handle_exception_nmi_irqoff() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03004751
Wanpeng Li082d06e2018-04-03 16:28:48 -07004752 if (is_invalid_opcode(intr_info))
4753 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004754
Avi Kivity6aa8b732006-12-10 02:21:36 -08004755 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06004756 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004757 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004758
Liran Alon9e869482018-03-12 13:12:51 +02004759 if (!vmx->rmode.vm86_active && is_gp_fault(intr_info)) {
4760 WARN_ON_ONCE(!enable_vmware_backdoor);
Sean Christophersona6c6ed12019-08-27 14:40:30 -07004761
4762 /*
4763 * VMware backdoor emulation on #GP interception only handles
4764 * IN{S}, OUT{S}, and RDPMC, none of which generate a non-zero
4765 * error code on #GP.
4766 */
4767 if (error_code) {
4768 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
4769 return 1;
4770 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004771 return kvm_emulate_instruction(vcpu, EMULTYPE_VMWARE_GP);
Liran Alon9e869482018-03-12 13:12:51 +02004772 }
4773
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004774 /*
4775 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
4776 * MMIO, it is better to report an internal error.
4777 * See the comments in vmx_handle_exit.
4778 */
4779 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
4780 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
4781 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4782 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Jim Mattson1aa561b2020-06-03 16:56:21 -07004783 vcpu->run->internal.ndata = 4;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004784 vcpu->run->internal.data[0] = vect_info;
4785 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02004786 vcpu->run->internal.data[2] = error_code;
Jim Mattson8a14fe42020-06-03 16:56:22 -07004787 vcpu->run->internal.data[3] = vcpu->arch.last_vmentry_cpu;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004788 return 0;
4789 }
4790
Avi Kivity6aa8b732006-12-10 02:21:36 -08004791 if (is_page_fault(intr_info)) {
Sean Christopherson5addc232020-04-15 13:34:53 -07004792 cr2 = vmx_get_exit_qual(vcpu);
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02004793 if (enable_ept && !vcpu->arch.apf.host_apf_flags) {
4794 /*
4795 * EPT will cause page fault only if we need to
4796 * detect illegal GPAs.
4797 */
4798 kvm_fixup_and_inject_pf_error(vcpu, cr2, error_code);
4799 return 1;
4800 } else
4801 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004802 }
4803
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004804 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004805
4806 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
4807 return handle_rmode_exception(vcpu, ex_no, error_code);
4808
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004809 switch (ex_no) {
4810 case DB_VECTOR:
Sean Christopherson5addc232020-04-15 13:34:53 -07004811 dr6 = vmx_get_exit_qual(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004812 if (!(vcpu->guest_debug &
4813 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Linus Torvalds32d43cd2018-03-20 12:16:59 -07004814 if (is_icebp(intr_info))
Sean Christopherson1957aa62019-08-27 14:40:39 -07004815 WARN_ON(!skip_emulated_instruction(vcpu));
Huw Daviesfd2a4452014-04-16 10:02:51 +01004816
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04004817 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004818 return 1;
4819 }
Peter Xu13196632020-05-05 16:49:58 -04004820 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1 | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004821 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004822 fallthrough;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004823 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01004824 /*
4825 * Update instruction length as we may reinject #BP from
4826 * user space while in guest debugging mode. Reading it for
4827 * #DB as well causes no harm, it is not used in that case.
4828 */
4829 vmx->vcpu.arch.event_exit_inst_len =
4830 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004831 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03004832 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004833 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
4834 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004835 break;
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004836 case AC_VECTOR:
4837 if (guest_inject_ac(vcpu)) {
4838 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
4839 return 1;
4840 }
4841
4842 /*
4843 * Handle split lock. Depending on detection mode this will
4844 * either warn and disable split lock detection for this
4845 * task or force SIGBUS on it.
4846 */
4847 if (handle_guest_split_lock(kvm_rip_read(vcpu)))
4848 return 1;
4849 fallthrough;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004850 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004851 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
4852 kvm_run->ex.exception = ex_no;
4853 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004854 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004855 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004856 return 0;
4857}
4858
Andrea Arcangelif399e602019-11-04 17:59:58 -05004859static __always_inline int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004860{
Avi Kivity1165f5f2007-04-19 17:27:43 +03004861 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004862 return 1;
4863}
4864
Avi Kivity851ba692009-08-24 11:10:17 +03004865static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08004866{
Avi Kivity851ba692009-08-24 11:10:17 +03004867 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07004868 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08004869 return 0;
4870}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004871
Avi Kivity851ba692009-08-24 11:10:17 +03004872static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004873{
He, Qingbfdaab02007-09-12 14:18:28 +08004874 unsigned long exit_qualification;
Sean Christophersondca7f122018-03-08 08:57:27 -08004875 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02004876 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004877
Sean Christopherson5addc232020-04-15 13:34:53 -07004878 exit_qualification = vmx_get_exit_qual(vcpu);
Avi Kivity039576c2007-03-20 12:46:50 +02004879 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004880
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004881 ++vcpu->stat.io_exits;
4882
Sean Christopherson432baf62018-03-08 08:57:26 -08004883 if (string)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004884 return kvm_emulate_instruction(vcpu, 0);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004885
4886 port = exit_qualification >> 16;
4887 size = (exit_qualification & 7) + 1;
Sean Christopherson432baf62018-03-08 08:57:26 -08004888 in = (exit_qualification & 8) != 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004889
Sean Christophersondca7f122018-03-08 08:57:27 -08004890 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004891}
4892
Ingo Molnar102d8322007-02-19 14:37:47 +02004893static void
4894vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
4895{
4896 /*
4897 * Patch in the VMCALL instruction:
4898 */
4899 hypercall[0] = 0x0f;
4900 hypercall[1] = 0x01;
4901 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02004902}
4903
Guo Chao0fa06072012-06-28 15:16:19 +08004904/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004905static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
4906{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004907 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004908 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4909 unsigned long orig_val = val;
4910
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004911 /*
4912 * We get here when L2 changed cr0 in a way that did not change
4913 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004914 * but did change L0 shadowed bits. So we first calculate the
4915 * effective cr0 value that L1 would like to write into the
4916 * hardware. It consists of the L2-owned bits from the new
4917 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004918 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004919 val = (val & ~vmcs12->cr0_guest_host_mask) |
4920 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
4921
David Matlack38991522016-11-29 18:14:08 -08004922 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004923 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004924
4925 if (kvm_set_cr0(vcpu, val))
4926 return 1;
4927 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004928 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004929 } else {
4930 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08004931 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004932 return 1;
David Matlack38991522016-11-29 18:14:08 -08004933
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004934 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004935 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004936}
4937
4938static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
4939{
4940 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004941 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4942 unsigned long orig_val = val;
4943
4944 /* analogously to handle_set_cr0 */
4945 val = (val & ~vmcs12->cr4_guest_host_mask) |
4946 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
4947 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004948 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004949 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004950 return 0;
4951 } else
4952 return kvm_set_cr4(vcpu, val);
4953}
4954
Paolo Bonzini0367f202016-07-12 10:44:55 +02004955static int handle_desc(struct kvm_vcpu *vcpu)
4956{
4957 WARN_ON(!(vcpu->arch.cr4 & X86_CR4_UMIP));
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004958 return kvm_emulate_instruction(vcpu, 0);
Paolo Bonzini0367f202016-07-12 10:44:55 +02004959}
4960
Avi Kivity851ba692009-08-24 11:10:17 +03004961static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004962{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004963 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004964 int cr;
4965 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03004966 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08004967 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004968
Sean Christopherson5addc232020-04-15 13:34:53 -07004969 exit_qualification = vmx_get_exit_qual(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004970 cr = exit_qualification & 15;
4971 reg = (exit_qualification >> 8) & 15;
4972 switch ((exit_qualification >> 4) & 3) {
4973 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03004974 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004975 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004976 switch (cr) {
4977 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004978 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004979 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004980 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08004981 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity23902182010-06-10 17:02:16 +03004982 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004983 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004984 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004985 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004986 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004987 case 8: {
4988 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03004989 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004990 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004991 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004992 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08004993 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004994 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08004995 return ret;
4996 /*
4997 * TODO: we might be squashing a
4998 * KVM_GUESTDBG_SINGLESTEP-triggered
4999 * KVM_EXIT_DEBUG here.
5000 */
Avi Kivity851ba692009-08-24 11:10:17 +03005001 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005002 return 0;
5003 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02005004 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005005 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03005006 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005007 WARN_ONCE(1, "Guest should always own CR0.TS");
5008 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02005009 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08005010 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005011 case 1: /*mov from cr*/
5012 switch (cr) {
5013 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08005014 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity9f8fe502010-12-05 17:30:00 +02005015 val = kvm_read_cr3(vcpu);
5016 kvm_register_write(vcpu, reg, val);
5017 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005018 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005019 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005020 val = kvm_get_cr8(vcpu);
5021 kvm_register_write(vcpu, reg, val);
5022 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005023 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005024 }
5025 break;
5026 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02005027 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02005028 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02005029 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005030
Kyle Huey6affcbe2016-11-29 12:40:40 -08005031 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005032 default:
5033 break;
5034 }
Avi Kivity851ba692009-08-24 11:10:17 +03005035 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03005036 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08005037 (int)(exit_qualification >> 4) & 3, cr);
5038 return 0;
5039}
5040
Avi Kivity851ba692009-08-24 11:10:17 +03005041static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005042{
He, Qingbfdaab02007-09-12 14:18:28 +08005043 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005044 int dr, dr7, reg;
5045
Sean Christopherson5addc232020-04-15 13:34:53 -07005046 exit_qualification = vmx_get_exit_qual(vcpu);
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005047 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
5048
5049 /* First, if DR does not exist, trigger UD */
5050 if (!kvm_require_dr(vcpu, dr))
5051 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005052
Jan Kiszkaf2483412010-01-20 18:20:20 +01005053 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03005054 if (!kvm_require_cpl(vcpu, 0))
5055 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005056 dr7 = vmcs_readl(GUEST_DR7);
5057 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005058 /*
5059 * As the vm-exit takes precedence over the debug trap, we
5060 * need to emulate the latter, either for the host or the
5061 * guest debugging itself.
5062 */
5063 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Paolo Bonzini45981de2020-05-06 05:59:39 -04005064 vcpu->run->debug.arch.dr6 = DR6_BD | DR6_RTM | DR6_FIXED_1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005065 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02005066 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005067 vcpu->run->debug.arch.exception = DB_VECTOR;
5068 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005069 return 0;
5070 } else {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04005071 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BD);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005072 return 1;
5073 }
5074 }
5075
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005076 if (vcpu->guest_debug == 0) {
Sean Christopherson2183f562019-05-07 12:17:56 -07005077 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005078
5079 /*
5080 * No more DR vmexits; force a reload of the debug registers
5081 * and reenter on this instruction. The next vmexit will
5082 * retrieve the full state of the debug registers.
5083 */
5084 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
5085 return 1;
5086 }
5087
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005088 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
5089 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03005090 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005091
5092 if (kvm_get_dr(vcpu, dr, &val))
5093 return 1;
5094 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03005095 } else
Nadav Amit57773922014-06-18 17:19:23 +03005096 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005097 return 1;
5098
Kyle Huey6affcbe2016-11-29 12:40:40 -08005099 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005100}
5101
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005102static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
5103{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005104 get_debugreg(vcpu->arch.db[0], 0);
5105 get_debugreg(vcpu->arch.db[1], 1);
5106 get_debugreg(vcpu->arch.db[2], 2);
5107 get_debugreg(vcpu->arch.db[3], 3);
5108 get_debugreg(vcpu->arch.dr6, 6);
5109 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
5110
5111 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Sean Christopherson2183f562019-05-07 12:17:56 -07005112 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005113}
5114
Gleb Natapov020df072010-04-13 10:05:23 +03005115static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
5116{
5117 vmcs_writel(GUEST_DR7, val);
5118}
5119
Avi Kivity851ba692009-08-24 11:10:17 +03005120static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005121{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01005122 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005123 return 1;
5124}
5125
Avi Kivity851ba692009-08-24 11:10:17 +03005126static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005127{
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005128 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_INTR_WINDOW_EXITING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005129
Avi Kivity3842d132010-07-27 12:30:24 +03005130 kvm_make_request(KVM_REQ_EVENT, vcpu);
5131
Jan Kiszkaa26bf122008-09-26 09:30:45 +02005132 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005133 return 1;
5134}
5135
Avi Kivity851ba692009-08-24 11:10:17 +03005136static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02005137{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03005138 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02005139}
5140
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005141static int handle_invd(struct kvm_vcpu *vcpu)
5142{
Tom Lendacky28e2b2f2020-09-24 13:41:58 -05005143 /* Treat an INVD instruction as a NOP and just skip it. */
5144 return kvm_skip_emulated_instruction(vcpu);
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005145}
5146
Avi Kivity851ba692009-08-24 11:10:17 +03005147static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03005148{
Sean Christopherson5addc232020-04-15 13:34:53 -07005149 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005150
5151 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005152 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005153}
5154
Avi Kivityfee84b02011-11-10 14:57:25 +02005155static int handle_rdpmc(struct kvm_vcpu *vcpu)
5156{
5157 int err;
5158
5159 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005160 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02005161}
5162
Avi Kivity851ba692009-08-24 11:10:17 +03005163static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02005164{
Kyle Huey6affcbe2016-11-29 12:40:40 -08005165 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02005166}
5167
Dexuan Cui2acf9232010-06-10 11:27:12 +08005168static int handle_xsetbv(struct kvm_vcpu *vcpu)
5169{
5170 u64 new_bv = kvm_read_edx_eax(vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -07005171 u32 index = kvm_rcx_read(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08005172
5173 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08005174 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08005175 return 1;
5176}
5177
Avi Kivity851ba692009-08-24 11:10:17 +03005178static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005179{
Kevin Tian58fbbf22011-08-30 13:56:17 +03005180 if (likely(fasteoi)) {
Sean Christopherson5addc232020-04-15 13:34:53 -07005181 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03005182 int access_type, offset;
5183
5184 access_type = exit_qualification & APIC_ACCESS_TYPE;
5185 offset = exit_qualification & APIC_ACCESS_OFFSET;
5186 /*
5187 * Sane guest uses MOV to write EOI, with written value
5188 * not cared. So make a short-circuit here by avoiding
5189 * heavy instruction emulation.
5190 */
5191 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
5192 (offset == APIC_EOI)) {
5193 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005194 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03005195 }
5196 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005197 return kvm_emulate_instruction(vcpu, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08005198}
5199
Yang Zhangc7c9c562013-01-25 10:18:51 +08005200static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
5201{
Sean Christopherson5addc232020-04-15 13:34:53 -07005202 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005203 int vector = exit_qualification & 0xff;
5204
5205 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
5206 kvm_apic_set_eoi_accelerated(vcpu, vector);
5207 return 1;
5208}
5209
Yang Zhang83d4c282013-01-25 10:18:49 +08005210static int handle_apic_write(struct kvm_vcpu *vcpu)
5211{
Sean Christopherson5addc232020-04-15 13:34:53 -07005212 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Yang Zhang83d4c282013-01-25 10:18:49 +08005213 u32 offset = exit_qualification & 0xfff;
5214
5215 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
5216 kvm_apic_write_nodecode(vcpu, offset);
5217 return 1;
5218}
5219
Avi Kivity851ba692009-08-24 11:10:17 +03005220static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02005221{
Jan Kiszka60637aa2008-09-26 09:30:47 +02005222 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005223 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02005224 bool has_error_code = false;
5225 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02005226 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005227 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005228
5229 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005230 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005231 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02005232
Sean Christopherson5addc232020-04-15 13:34:53 -07005233 exit_qualification = vmx_get_exit_qual(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005234
5235 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005236 if (reason == TASK_SWITCH_GATE && idt_v) {
5237 switch (type) {
5238 case INTR_TYPE_NMI_INTR:
5239 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02005240 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005241 break;
5242 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005243 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005244 kvm_clear_interrupt_queue(vcpu);
5245 break;
5246 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02005247 if (vmx->idt_vectoring_info &
5248 VECTORING_INFO_DELIVER_CODE_MASK) {
5249 has_error_code = true;
5250 error_code =
5251 vmcs_read32(IDT_VECTORING_ERROR_CODE);
5252 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05005253 fallthrough;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005254 case INTR_TYPE_SOFT_EXCEPTION:
5255 kvm_clear_exception_queue(vcpu);
5256 break;
5257 default:
5258 break;
5259 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02005260 }
Izik Eidus37817f22008-03-24 23:14:53 +02005261 tss_selector = exit_qualification;
5262
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005263 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
5264 type != INTR_TYPE_EXT_INTR &&
5265 type != INTR_TYPE_NMI_INTR))
Sean Christopherson1957aa62019-08-27 14:40:39 -07005266 WARN_ON(!skip_emulated_instruction(vcpu));
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005267
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005268 /*
5269 * TODO: What about debug traps on tss switch?
5270 * Are we supposed to inject them and update dr6?
5271 */
Sean Christopherson10517782019-08-27 14:40:35 -07005272 return kvm_task_switch(vcpu, tss_selector,
5273 type == INTR_TYPE_SOFT_INTR ? idt_index : -1,
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005274 reason, has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02005275}
5276
Avi Kivity851ba692009-08-24 11:10:17 +03005277static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08005278{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005279 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08005280 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01005281 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08005282
Sean Christopherson5addc232020-04-15 13:34:53 -07005283 exit_qualification = vmx_get_exit_qual(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08005284
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005285 /*
5286 * EPT violation happened while executing iret from NMI,
5287 * "blocked by NMI" bit has to be set before next VM entry.
5288 * There are errata that may cause this bit to not be set:
5289 * AAK134, BY25.
5290 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005291 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005292 enable_vnmi &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005293 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005294 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
5295
Sheng Yang14394422008-04-28 12:24:45 +08005296 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005297 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005298
Junaid Shahid27959a42016-12-06 16:46:10 -08005299 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005300 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08005301 ? PFERR_USER_MASK : 0;
5302 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005303 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08005304 ? PFERR_WRITE_MASK : 0;
5305 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005306 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08005307 ? PFERR_FETCH_MASK : 0;
5308 /* ept page table entry is present? */
5309 error_code |= (exit_qualification &
5310 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
5311 EPT_VIOLATION_EXECUTABLE))
5312 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005313
Paolo Bonzinieebed242016-11-28 14:39:58 +01005314 error_code |= (exit_qualification & 0x100) != 0 ?
5315 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03005316
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005317 vcpu->arch.exit_qualification = exit_qualification;
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02005318
5319 /*
5320 * Check that the GPA doesn't exceed physical memory limits, as that is
5321 * a guest page fault. We have to emulate the instruction here, because
5322 * if the illegal address is that of a paging structure, then
5323 * EPT_VIOLATION_ACC_WRITE bit is set. Alternatively, if supported we
5324 * would also use advanced VM-exit information for EPT violations to
5325 * reconstruct the page fault error code.
5326 */
Sean Christophersondc465152020-09-24 12:42:49 -07005327 if (unlikely(kvm_vcpu_is_illegal_gpa(vcpu, gpa)))
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02005328 return kvm_emulate_instruction(vcpu, 0);
5329
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005330 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08005331}
5332
Avi Kivity851ba692009-08-24 11:10:17 +03005333static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005334{
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005335 gpa_t gpa;
5336
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005337 /*
5338 * A nested guest cannot optimize MMIO vmexits, because we have an
5339 * nGPA here instead of the required GPA.
5340 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005341 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005342 if (!is_guest_mode(vcpu) &&
5343 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08005344 trace_kvm_fast_mmio(gpa);
Sean Christopherson1957aa62019-08-27 14:40:39 -07005345 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03005346 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005347
Sean Christophersonc75d0edc2018-03-29 14:48:31 -07005348 return kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005349}
5350
Avi Kivity851ba692009-08-24 11:10:17 +03005351static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08005352{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005353 WARN_ON_ONCE(!enable_vnmi);
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08005354 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_NMI_WINDOW_EXITING);
Sheng Yangf08864b2008-05-15 18:23:25 +08005355 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03005356 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08005357
5358 return 1;
5359}
5360
Mohammed Gamal80ced182009-09-01 12:48:18 +02005361static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005362{
Avi Kivity8b3079a2009-01-05 12:10:54 +02005363 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity49e9d552010-09-19 14:34:08 +02005364 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03005365 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02005366
Sean Christopherson2183f562019-05-07 12:17:56 -07005367 intr_window_requested = exec_controls_get(vmx) &
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005368 CPU_BASED_INTR_WINDOW_EXITING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005369
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01005370 while (vmx->emulation_required && count-- != 0) {
Sean Christophersondb438592020-04-22 19:25:48 -07005371 if (intr_window_requested && !vmx_interrupt_blocked(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02005372 return handle_interrupt_window(&vmx->vcpu);
5373
Radim Krčmář72875d82017-04-26 22:32:19 +02005374 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03005375 return 1;
5376
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005377 if (!kvm_emulate_instruction(vcpu, 0))
Sean Christopherson8fff2712019-08-27 14:40:37 -07005378 return 0;
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005379
Sean Christophersonadd5ff72018-03-23 09:34:00 -07005380 if (vmx->emulation_required && !vmx->rmode.vm86_active &&
Sean Christopherson8fff2712019-08-27 14:40:37 -07005381 vcpu->arch.exception.pending) {
5382 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5383 vcpu->run->internal.suberror =
5384 KVM_INTERNAL_ERROR_EMULATION;
5385 vcpu->run->internal.ndata = 0;
5386 return 0;
5387 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005388
Gleb Natapov8d76c492013-05-08 18:38:44 +03005389 if (vcpu->arch.halt_request) {
5390 vcpu->arch.halt_request = 0;
Sean Christopherson8fff2712019-08-27 14:40:37 -07005391 return kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03005392 }
5393
Sean Christopherson8fff2712019-08-27 14:40:37 -07005394 /*
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02005395 * Note, return 1 and not 0, vcpu_run() will invoke
5396 * xfer_to_guest_mode() which will create a proper return
5397 * code.
Sean Christopherson8fff2712019-08-27 14:40:37 -07005398 */
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02005399 if (__xfer_to_guest_mode_work_pending())
Sean Christopherson8fff2712019-08-27 14:40:37 -07005400 return 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005401 }
5402
Sean Christopherson8fff2712019-08-27 14:40:37 -07005403 return 1;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005404}
5405
5406static void grow_ple_window(struct kvm_vcpu *vcpu)
5407{
5408 struct vcpu_vmx *vmx = to_vmx(vcpu);
Peter Xuc5c5d6f2019-09-06 10:17:21 +08005409 unsigned int old = vmx->ple_window;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005410
Babu Mogerc8e88712018-03-16 16:37:24 -04005411 vmx->ple_window = __grow_ple_window(old, ple_window,
5412 ple_window_grow,
5413 ple_window_max);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005414
Peter Xu4f75bcc2019-09-06 10:17:22 +08005415 if (vmx->ple_window != old) {
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005416 vmx->ple_window_dirty = true;
Peter Xu4f75bcc2019-09-06 10:17:22 +08005417 trace_kvm_ple_window_update(vcpu->vcpu_id,
5418 vmx->ple_window, old);
5419 }
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005420}
5421
5422static void shrink_ple_window(struct kvm_vcpu *vcpu)
5423{
5424 struct vcpu_vmx *vmx = to_vmx(vcpu);
Peter Xuc5c5d6f2019-09-06 10:17:21 +08005425 unsigned int old = vmx->ple_window;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005426
Babu Mogerc8e88712018-03-16 16:37:24 -04005427 vmx->ple_window = __shrink_ple_window(old, ple_window,
5428 ple_window_shrink,
5429 ple_window);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005430
Peter Xu4f75bcc2019-09-06 10:17:22 +08005431 if (vmx->ple_window != old) {
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005432 vmx->ple_window_dirty = true;
Peter Xu4f75bcc2019-09-06 10:17:22 +08005433 trace_kvm_ple_window_update(vcpu->vcpu_id,
5434 vmx->ple_window, old);
5435 }
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005436}
5437
Peng Haoe01bca22018-04-07 05:47:32 +08005438static void vmx_enable_tdp(void)
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005439{
5440 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
5441 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
5442 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
5443 0ull, VMX_EPT_EXECUTABLE_MASK,
5444 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005445 VMX_EPT_RWX_MASK, 0ull);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005446
5447 ept_set_mmio_spte_mask();
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005448}
5449
Avi Kivity6aa8b732006-12-10 02:21:36 -08005450/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005451 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
5452 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
5453 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03005454static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005455{
Wanpeng Lib31c1142018-03-12 04:53:04 -07005456 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005457 grow_ple_window(vcpu);
5458
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08005459 /*
5460 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
5461 * VM-execution control is ignored if CPL > 0. OTOH, KVM
5462 * never set PAUSE_EXITING and just set PLE if supported,
5463 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
5464 */
5465 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005466 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005467}
5468
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005469static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08005470{
Kyle Huey6affcbe2016-11-29 12:40:40 -08005471 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08005472}
5473
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005474static int handle_mwait(struct kvm_vcpu *vcpu)
5475{
5476 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
5477 return handle_nop(vcpu);
5478}
5479
Jim Mattson45ec3682017-08-23 16:32:04 -07005480static int handle_invalid_op(struct kvm_vcpu *vcpu)
5481{
5482 kvm_queue_exception(vcpu, UD_VECTOR);
5483 return 1;
5484}
5485
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005486static int handle_monitor_trap(struct kvm_vcpu *vcpu)
5487{
5488 return 1;
5489}
5490
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005491static int handle_monitor(struct kvm_vcpu *vcpu)
5492{
5493 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
5494 return handle_nop(vcpu);
5495}
5496
Junaid Shahideb4b2482018-06-27 14:59:14 -07005497static int handle_invpcid(struct kvm_vcpu *vcpu)
5498{
5499 u32 vmx_instruction_info;
5500 unsigned long type;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005501 gva_t gva;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005502 struct {
5503 u64 pcid;
5504 u64 gla;
5505 } operand;
5506
5507 if (!guest_cpuid_has(vcpu, X86_FEATURE_INVPCID)) {
5508 kvm_queue_exception(vcpu, UD_VECTOR);
5509 return 1;
5510 }
5511
5512 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5513 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
5514
5515 if (type > 3) {
5516 kvm_inject_gp(vcpu, 0);
5517 return 1;
5518 }
5519
5520 /* According to the Intel instruction reference, the memory operand
5521 * is read even if it isn't needed (e.g., for type==all)
5522 */
Sean Christopherson5addc232020-04-15 13:34:53 -07005523 if (get_vmx_mem_address(vcpu, vmx_get_exit_qual(vcpu),
Eugene Korenevskyfdb28612019-06-06 00:19:16 +03005524 vmx_instruction_info, false,
5525 sizeof(operand), &gva))
Junaid Shahideb4b2482018-06-27 14:59:14 -07005526 return 1;
5527
Babu Moger97150922020-09-11 14:29:12 -05005528 return kvm_handle_invpcid(vcpu, type, gva);
Junaid Shahideb4b2482018-06-27 14:59:14 -07005529}
5530
Kai Huang843e4332015-01-28 10:54:28 +08005531static int handle_pml_full(struct kvm_vcpu *vcpu)
5532{
5533 unsigned long exit_qualification;
5534
5535 trace_kvm_pml_full(vcpu->vcpu_id);
5536
Sean Christopherson5addc232020-04-15 13:34:53 -07005537 exit_qualification = vmx_get_exit_qual(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005538
5539 /*
5540 * PML buffer FULL happened while executing iret from NMI,
5541 * "blocked by NMI" bit has to be set before next VM entry.
5542 */
5543 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005544 enable_vnmi &&
Kai Huang843e4332015-01-28 10:54:28 +08005545 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
5546 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5547 GUEST_INTR_STATE_NMI);
5548
5549 /*
5550 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
5551 * here.., and there's no userspace involvement needed for PML.
5552 */
5553 return 1;
5554}
5555
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005556static fastpath_t handle_fastpath_preemption_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07005557{
Sean Christopherson804939e2019-05-07 12:18:05 -07005558 struct vcpu_vmx *vmx = to_vmx(vcpu);
5559
5560 if (!vmx->req_immediate_exit &&
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005561 !unlikely(vmx->loaded_vmcs->hv_timer_soft_disabled)) {
Sean Christophersond264ee02018-08-27 15:21:12 -07005562 kvm_lapic_expired_hv_timer(vcpu);
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005563 return EXIT_FASTPATH_REENTER_GUEST;
5564 }
Sean Christopherson804939e2019-05-07 12:18:05 -07005565
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005566 return EXIT_FASTPATH_NONE;
5567}
5568
5569static int handle_preemption_timer(struct kvm_vcpu *vcpu)
5570{
5571 handle_fastpath_preemption_timer(vcpu);
Yunhong Jiang64672c92016-06-13 14:19:59 -07005572 return 1;
5573}
5574
Sean Christophersone4027cf2018-12-03 13:53:12 -08005575/*
5576 * When nested=0, all VMX instruction VM Exits filter here. The handlers
5577 * are overwritten by nested_vmx_setup() when nested=1.
5578 */
5579static int handle_vmx_instruction(struct kvm_vcpu *vcpu)
5580{
5581 kvm_queue_exception(vcpu, UD_VECTOR);
5582 return 1;
5583}
5584
Sean Christopherson0b665d32018-08-14 09:33:34 -07005585static int handle_encls(struct kvm_vcpu *vcpu)
5586{
5587 /*
5588 * SGX virtualization is not yet supported. There is no software
5589 * enable bit for SGX, so we have to trap ENCLS and inject a #UD
5590 * to prevent the guest from executing ENCLS.
5591 */
5592 kvm_queue_exception(vcpu, UD_VECTOR);
5593 return 1;
5594}
5595
Nadav Har'El0140cae2011-05-25 23:06:28 +03005596/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005597 * The exit handlers return 1 if the exit was handled fully and guest execution
5598 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
5599 * to be done to userspace and return 0.
5600 */
Sean Christophersone4027cf2018-12-03 13:53:12 -08005601static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Sean Christopherson95b5a482019-04-19 22:50:59 -07005602 [EXIT_REASON_EXCEPTION_NMI] = handle_exception_nmi,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005603 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08005604 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08005605 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005606 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005607 [EXIT_REASON_CR_ACCESS] = handle_cr,
5608 [EXIT_REASON_DR_ACCESS] = handle_dr,
Andrea Arcangelif399e602019-11-04 17:59:58 -05005609 [EXIT_REASON_CPUID] = kvm_emulate_cpuid,
5610 [EXIT_REASON_MSR_READ] = kvm_emulate_rdmsr,
5611 [EXIT_REASON_MSR_WRITE] = kvm_emulate_wrmsr,
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005612 [EXIT_REASON_INTERRUPT_WINDOW] = handle_interrupt_window,
Andrea Arcangelif399e602019-11-04 17:59:58 -05005613 [EXIT_REASON_HLT] = kvm_emulate_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005614 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03005615 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02005616 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02005617 [EXIT_REASON_VMCALL] = handle_vmcall,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005618 [EXIT_REASON_VMCLEAR] = handle_vmx_instruction,
5619 [EXIT_REASON_VMLAUNCH] = handle_vmx_instruction,
5620 [EXIT_REASON_VMPTRLD] = handle_vmx_instruction,
5621 [EXIT_REASON_VMPTRST] = handle_vmx_instruction,
5622 [EXIT_REASON_VMREAD] = handle_vmx_instruction,
5623 [EXIT_REASON_VMRESUME] = handle_vmx_instruction,
5624 [EXIT_REASON_VMWRITE] = handle_vmx_instruction,
5625 [EXIT_REASON_VMOFF] = handle_vmx_instruction,
5626 [EXIT_REASON_VMON] = handle_vmx_instruction,
Sheng Yangf78e0e22007-10-29 09:40:42 +08005627 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
5628 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08005629 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08005630 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02005631 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08005632 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02005633 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08005634 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Paolo Bonzini0367f202016-07-12 10:44:55 +02005635 [EXIT_REASON_GDTR_IDTR] = handle_desc,
5636 [EXIT_REASON_LDTR_TR] = handle_desc,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005637 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
5638 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005639 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005640 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005641 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005642 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005643 [EXIT_REASON_INVEPT] = handle_vmx_instruction,
5644 [EXIT_REASON_INVVPID] = handle_vmx_instruction,
Jim Mattson45ec3682017-08-23 16:32:04 -07005645 [EXIT_REASON_RDRAND] = handle_invalid_op,
Jim Mattson75f4fc82017-08-23 16:32:03 -07005646 [EXIT_REASON_RDSEED] = handle_invalid_op,
Kai Huang843e4332015-01-28 10:54:28 +08005647 [EXIT_REASON_PML_FULL] = handle_pml_full,
Junaid Shahideb4b2482018-06-27 14:59:14 -07005648 [EXIT_REASON_INVPCID] = handle_invpcid,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005649 [EXIT_REASON_VMFUNC] = handle_vmx_instruction,
Yunhong Jiang64672c92016-06-13 14:19:59 -07005650 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Sean Christopherson0b665d32018-08-14 09:33:34 -07005651 [EXIT_REASON_ENCLS] = handle_encls,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005652};
5653
5654static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04005655 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005656
Sean Christopherson235ba742020-09-23 13:13:46 -07005657static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2,
5658 u32 *intr_info, u32 *error_code)
Avi Kivity586f9602010-11-18 13:09:54 +02005659{
Sean Christopherson235ba742020-09-23 13:13:46 -07005660 struct vcpu_vmx *vmx = to_vmx(vcpu);
5661
Sean Christopherson5addc232020-04-15 13:34:53 -07005662 *info1 = vmx_get_exit_qual(vcpu);
Sean Christopherson235ba742020-09-23 13:13:46 -07005663 if (!(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
5664 *info2 = vmx->idt_vectoring_info;
5665 *intr_info = vmx_get_intr_info(vcpu);
5666 if (is_exception_with_error_code(*intr_info))
5667 *error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
5668 else
5669 *error_code = 0;
5670 } else {
5671 *info2 = 0;
5672 *intr_info = 0;
5673 *error_code = 0;
5674 }
Avi Kivity586f9602010-11-18 13:09:54 +02005675}
5676
Kai Huanga3eaa862015-11-04 13:46:05 +08005677static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08005678{
Kai Huanga3eaa862015-11-04 13:46:05 +08005679 if (vmx->pml_pg) {
5680 __free_page(vmx->pml_pg);
5681 vmx->pml_pg = NULL;
5682 }
Kai Huang843e4332015-01-28 10:54:28 +08005683}
5684
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005685static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08005686{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005687 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005688 u64 *pml_buf;
5689 u16 pml_idx;
5690
5691 pml_idx = vmcs_read16(GUEST_PML_INDEX);
5692
5693 /* Do nothing if PML buffer is empty */
5694 if (pml_idx == (PML_ENTITY_NUM - 1))
5695 return;
5696
5697 /* PML index always points to next available PML buffer entity */
5698 if (pml_idx >= PML_ENTITY_NUM)
5699 pml_idx = 0;
5700 else
5701 pml_idx++;
5702
5703 pml_buf = page_address(vmx->pml_pg);
5704 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
5705 u64 gpa;
5706
5707 gpa = pml_buf[pml_idx];
5708 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005709 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08005710 }
5711
5712 /* reset PML index */
5713 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5714}
5715
5716/*
5717 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
5718 * Called before reporting dirty_bitmap to userspace.
5719 */
5720static void kvm_flush_pml_buffers(struct kvm *kvm)
5721{
5722 int i;
5723 struct kvm_vcpu *vcpu;
5724 /*
5725 * We only need to kick vcpu out of guest mode here, as PML buffer
5726 * is flushed at beginning of all VMEXITs, and it's obvious that only
5727 * vcpus running in guest are possible to have unflushed GPAs in PML
5728 * buffer.
5729 */
5730 kvm_for_each_vcpu(i, vcpu, kvm)
5731 kvm_vcpu_kick(vcpu);
5732}
5733
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005734static void vmx_dump_sel(char *name, uint32_t sel)
5735{
5736 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05005737 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005738 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
5739 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
5740 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
5741}
5742
5743static void vmx_dump_dtsel(char *name, uint32_t limit)
5744{
5745 pr_err("%s limit=0x%08x, base=0x%016lx\n",
5746 name, vmcs_read32(limit),
5747 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
5748}
5749
Paolo Bonzini69090812019-04-15 15:16:17 +02005750void dump_vmcs(void)
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005751{
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005752 u32 vmentry_ctl, vmexit_ctl;
5753 u32 cpu_based_exec_ctrl, pin_based_exec_ctrl, secondary_exec_control;
5754 unsigned long cr4;
5755 u64 efer;
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005756
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005757 if (!dump_invalid_vmcs) {
5758 pr_warn_ratelimited("set kvm_intel.dump_invalid_vmcs=1 to dump internal KVM state.\n");
5759 return;
5760 }
5761
5762 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
5763 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
5764 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5765 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
5766 cr4 = vmcs_readl(GUEST_CR4);
5767 efer = vmcs_read64(GUEST_IA32_EFER);
5768 secondary_exec_control = 0;
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005769 if (cpu_has_secondary_exec_ctrls())
5770 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
5771
5772 pr_err("*** Guest State ***\n");
5773 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5774 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
5775 vmcs_readl(CR0_GUEST_HOST_MASK));
5776 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5777 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
5778 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
5779 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
5780 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
5781 {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005782 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
5783 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
5784 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
5785 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005786 }
5787 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
5788 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
5789 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
5790 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
5791 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5792 vmcs_readl(GUEST_SYSENTER_ESP),
5793 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
5794 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
5795 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
5796 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
5797 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
5798 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
5799 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
5800 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
5801 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
5802 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
5803 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
5804 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
5805 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005806 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
5807 efer, vmcs_read64(GUEST_IA32_PAT));
5808 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
5809 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005810 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005811 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005812 vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005813 pr_err("PerfGlobCtl = 0x%016llx\n",
5814 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005815 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005816 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005817 pr_err("Interruptibility = %08x ActivityState = %08x\n",
5818 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
5819 vmcs_read32(GUEST_ACTIVITY_STATE));
5820 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
5821 pr_err("InterruptStatus = %04x\n",
5822 vmcs_read16(GUEST_INTR_STATUS));
5823
5824 pr_err("*** Host State ***\n");
5825 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
5826 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
5827 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
5828 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
5829 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
5830 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
5831 vmcs_read16(HOST_TR_SELECTOR));
5832 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
5833 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
5834 vmcs_readl(HOST_TR_BASE));
5835 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
5836 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
5837 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
5838 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
5839 vmcs_readl(HOST_CR4));
5840 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5841 vmcs_readl(HOST_IA32_SYSENTER_ESP),
5842 vmcs_read32(HOST_IA32_SYSENTER_CS),
5843 vmcs_readl(HOST_IA32_SYSENTER_EIP));
5844 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005845 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
5846 vmcs_read64(HOST_IA32_EFER),
5847 vmcs_read64(HOST_IA32_PAT));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005848 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005849 vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005850 pr_err("PerfGlobCtl = 0x%016llx\n",
5851 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005852
5853 pr_err("*** Control State ***\n");
5854 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
5855 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
5856 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
5857 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
5858 vmcs_read32(EXCEPTION_BITMAP),
5859 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
5860 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
5861 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
5862 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
5863 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
5864 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
5865 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
5866 vmcs_read32(VM_EXIT_INTR_INFO),
5867 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
5868 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
5869 pr_err(" reason=%08x qualification=%016lx\n",
5870 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
5871 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
5872 vmcs_read32(IDT_VECTORING_INFO_FIELD),
5873 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005874 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08005875 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005876 pr_err("TSC Multiplier = 0x%016llx\n",
5877 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005878 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW) {
5879 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
5880 u16 status = vmcs_read16(GUEST_INTR_STATUS);
5881 pr_err("SVI|RVI = %02x|%02x ", status >> 8, status & 0xff);
5882 }
Dan Carpenterd6a85c32019-04-24 13:15:08 +03005883 pr_cont("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005884 if (secondary_exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
5885 pr_err("APIC-access addr = 0x%016llx ", vmcs_read64(APIC_ACCESS_ADDR));
Dan Carpenterd6a85c32019-04-24 13:15:08 +03005886 pr_cont("virt-APIC addr = 0x%016llx\n", vmcs_read64(VIRTUAL_APIC_PAGE_ADDR));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005887 }
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005888 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
5889 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
5890 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005891 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005892 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
5893 pr_err("PLE Gap=%08x Window=%08x\n",
5894 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
5895 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
5896 pr_err("Virtual processor ID = 0x%04x\n",
5897 vmcs_read16(VIRTUAL_PROCESSOR_ID));
5898}
5899
Avi Kivity6aa8b732006-12-10 02:21:36 -08005900/*
5901 * The guest has exited. See if we can fix it or if we need userspace
5902 * assistance.
5903 */
Wanpeng Li404d5d72020-04-28 14:23:25 +08005904static int vmx_handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005905{
Avi Kivity29bd8a72007-09-10 17:27:03 +03005906 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005907 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02005908 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005909
Kai Huang843e4332015-01-28 10:54:28 +08005910 /*
5911 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
5912 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
5913 * querying dirty_bitmap, we only need to kick all vcpus out of guest
5914 * mode as if vcpus is in root mode, the PML buffer must has been
5915 * flushed already.
5916 */
5917 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005918 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005919
Sean Christophersondb438592020-04-22 19:25:48 -07005920 /*
5921 * We should never reach this point with a pending nested VM-Enter, and
5922 * more specifically emulation of L2 due to invalid guest state (see
5923 * below) should never happen as that means we incorrectly allowed a
5924 * nested VM-Enter with an invalid vmcs12.
5925 */
5926 WARN_ON_ONCE(vmx->nested.nested_run_pending);
5927
Mohammed Gamal80ced182009-09-01 12:48:18 +02005928 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02005929 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02005930 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005931
Paolo Bonzini96b100c2020-03-17 18:32:50 +01005932 if (is_guest_mode(vcpu)) {
5933 /*
5934 * The host physical addresses of some pages of guest memory
5935 * are loaded into the vmcs02 (e.g. vmcs12's Virtual APIC
5936 * Page). The CPU may write to these pages via their host
5937 * physical address while L2 is running, bypassing any
5938 * address-translation-based dirty tracking (e.g. EPT write
5939 * protection).
5940 *
5941 * Mark them dirty on every exit from L2 to prevent them from
5942 * getting out of sync with dirty tracking.
5943 */
5944 nested_mark_vmcs12_pages_dirty(vcpu);
5945
Sean Christophersonf47baae2020-04-15 10:55:16 -07005946 if (nested_vmx_reflect_vmexit(vcpu))
Sean Christopherson789afc52020-04-15 10:55:10 -07005947 return 1;
Paolo Bonzini96b100c2020-03-17 18:32:50 +01005948 }
Nadav Har'El644d7112011-05-25 23:12:35 +03005949
Mohammed Gamal51207022010-05-31 22:40:54 +03005950 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005951 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03005952 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5953 vcpu->run->fail_entry.hardware_entry_failure_reason
5954 = exit_reason;
Jim Mattson8a14fe42020-06-03 16:56:22 -07005955 vcpu->run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Mohammed Gamal51207022010-05-31 22:40:54 +03005956 return 0;
5957 }
5958
Avi Kivity29bd8a72007-09-10 17:27:03 +03005959 if (unlikely(vmx->fail)) {
Paolo Bonzini3b20e032019-07-19 18:15:08 +02005960 dump_vmcs();
Avi Kivity851ba692009-08-24 11:10:17 +03005961 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5962 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03005963 = vmcs_read32(VM_INSTRUCTION_ERROR);
Jim Mattson8a14fe42020-06-03 16:56:22 -07005964 vcpu->run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005965 return 0;
5966 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005967
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005968 /*
5969 * Note:
5970 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
5971 * delivery event since it indicates guest is accessing MMIO.
5972 * The vm-exit can be triggered again after return to guest that
5973 * will cause infinite loop.
5974 */
Mike Dayd77c26f2007-10-08 09:02:08 -04005975 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08005976 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02005977 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +00005978 exit_reason != EXIT_REASON_PML_FULL &&
Wanpeng Li99b82a12020-08-19 16:55:27 +08005979 exit_reason != EXIT_REASON_APIC_ACCESS &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005980 exit_reason != EXIT_REASON_TASK_SWITCH)) {
5981 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5982 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02005983 vcpu->run->internal.ndata = 3;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005984 vcpu->run->internal.data[0] = vectoring_info;
5985 vcpu->run->internal.data[1] = exit_reason;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02005986 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
5987 if (exit_reason == EXIT_REASON_EPT_MISCONFIG) {
5988 vcpu->run->internal.ndata++;
5989 vcpu->run->internal.data[3] =
5990 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
5991 }
Jim Mattson1aa561b2020-06-03 16:56:21 -07005992 vcpu->run->internal.data[vcpu->run->internal.ndata++] =
Jim Mattson8a14fe42020-06-03 16:56:22 -07005993 vcpu->arch.last_vmentry_cpu;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005994 return 0;
5995 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005996
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005997 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01005998 vmx->loaded_vmcs->soft_vnmi_blocked)) {
Sean Christophersondb438592020-04-22 19:25:48 -07005999 if (!vmx_interrupt_blocked(vcpu)) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006000 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
6001 } else if (vmx->loaded_vmcs->vnmi_blocked_time > 1000000000LL &&
6002 vcpu->arch.nmi_pending) {
6003 /*
6004 * This CPU don't support us in finding the end of an
6005 * NMI-blocked window if the guest runs with IRQs
6006 * disabled. So we pull the trigger after 1 s of
6007 * futile waiting, but inform the user about this.
6008 */
6009 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
6010 "state on VCPU %d after 1 s timeout\n",
6011 __func__, vcpu->vcpu_id);
6012 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
6013 }
6014 }
6015
Wanpeng Li404d5d72020-04-28 14:23:25 +08006016 if (exit_fastpath != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08006017 return 1;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006018
6019 if (exit_reason >= kvm_vmx_max_exit_handlers)
6020 goto unexpected_vmexit;
6021#ifdef CONFIG_RETPOLINE
6022 if (exit_reason == EXIT_REASON_MSR_WRITE)
6023 return kvm_emulate_wrmsr(vcpu);
6024 else if (exit_reason == EXIT_REASON_PREEMPTION_TIMER)
6025 return handle_preemption_timer(vcpu);
6026 else if (exit_reason == EXIT_REASON_INTERRUPT_WINDOW)
6027 return handle_interrupt_window(vcpu);
6028 else if (exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT)
6029 return handle_external_interrupt(vcpu);
6030 else if (exit_reason == EXIT_REASON_HLT)
6031 return kvm_emulate_halt(vcpu);
6032 else if (exit_reason == EXIT_REASON_EPT_MISCONFIG)
6033 return handle_ept_misconfig(vcpu);
6034#endif
6035
6036 exit_reason = array_index_nospec(exit_reason,
6037 kvm_vmx_max_exit_handlers);
6038 if (!kvm_vmx_exit_handlers[exit_reason])
6039 goto unexpected_vmexit;
6040
6041 return kvm_vmx_exit_handlers[exit_reason](vcpu);
6042
6043unexpected_vmexit:
6044 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n", exit_reason);
6045 dump_vmcs();
6046 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6047 vcpu->run->internal.suberror =
6048 KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
Jim Mattson1aa561b2020-06-03 16:56:21 -07006049 vcpu->run->internal.ndata = 2;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006050 vcpu->run->internal.data[0] = exit_reason;
Jim Mattson8a14fe42020-06-03 16:56:22 -07006051 vcpu->run->internal.data[1] = vcpu->arch.last_vmentry_cpu;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08006052 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006053}
6054
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006055/*
6056 * Software based L1D cache flush which is used when microcode providing
6057 * the cache control MSR is not loaded.
6058 *
6059 * The L1D cache is 32 KiB on Nehalem and later microarchitectures, but to
6060 * flush it is required to read in 64 KiB because the replacement algorithm
6061 * is not exactly LRU. This could be sized at runtime via topology
6062 * information but as all relevant affected CPUs have 32KiB L1D cache size
6063 * there is no point in doing so.
6064 */
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006065static noinstr void vmx_l1d_flush(struct kvm_vcpu *vcpu)
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006066{
6067 int size = PAGE_SIZE << L1D_CACHE_ORDER;
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006068
6069 /*
Thomas Gleixner2f055942018-07-13 16:23:17 +02006070 * This code is only executed when the the flush mode is 'cond' or
6071 * 'always'
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006072 */
Nicolai Stange427362a2018-07-21 22:25:00 +02006073 if (static_branch_likely(&vmx_l1d_flush_cond)) {
Nicolai Stange45b575c2018-07-27 13:22:16 +02006074 bool flush_l1d;
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02006075
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006076 /*
Nicolai Stange45b575c2018-07-27 13:22:16 +02006077 * Clear the per-vcpu flush bit, it gets set again
6078 * either from vcpu_run() or from one of the unsafe
6079 * VMEXIT handlers.
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006080 */
Nicolai Stange45b575c2018-07-27 13:22:16 +02006081 flush_l1d = vcpu->arch.l1tf_flush_l1d;
Thomas Gleixner4c6523e2018-07-13 16:23:20 +02006082 vcpu->arch.l1tf_flush_l1d = false;
Nicolai Stange45b575c2018-07-27 13:22:16 +02006083
6084 /*
6085 * Clear the per-cpu flush bit, it gets set again from
6086 * the interrupt handlers.
6087 */
6088 flush_l1d |= kvm_get_cpu_l1tf_flush_l1d();
6089 kvm_clear_cpu_l1tf_flush_l1d();
6090
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02006091 if (!flush_l1d)
6092 return;
Nicolai Stange379fd0c2018-07-21 22:16:56 +02006093 }
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006094
6095 vcpu->stat.l1d_flush++;
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006096
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02006097 if (static_cpu_has(X86_FEATURE_FLUSH_L1D)) {
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006098 native_wrmsrl(MSR_IA32_FLUSH_CMD, L1D_FLUSH);
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02006099 return;
6100 }
6101
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006102 asm volatile(
6103 /* First ensure the pages are in the TLB */
6104 "xorl %%eax, %%eax\n"
6105 ".Lpopulate_tlb:\n\t"
Nicolai Stange288d1522018-07-18 19:07:38 +02006106 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006107 "addl $4096, %%eax\n\t"
6108 "cmpl %%eax, %[size]\n\t"
6109 "jne .Lpopulate_tlb\n\t"
6110 "xorl %%eax, %%eax\n\t"
6111 "cpuid\n\t"
6112 /* Now fill the cache */
6113 "xorl %%eax, %%eax\n"
6114 ".Lfill_cache:\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02006115 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006116 "addl $64, %%eax\n\t"
6117 "cmpl %%eax, %[size]\n\t"
6118 "jne .Lfill_cache\n\t"
6119 "lfence\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02006120 :: [flush_pages] "r" (vmx_l1d_flush_pages),
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006121 [size] "r" (size)
6122 : "eax", "ebx", "ecx", "edx");
6123}
6124
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006125static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006126{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006127 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Liran Alon132f4f72019-11-11 14:30:54 +02006128 int tpr_threshold;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006129
6130 if (is_guest_mode(vcpu) &&
6131 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
6132 return;
6133
Liran Alon132f4f72019-11-11 14:30:54 +02006134 tpr_threshold = (irr == -1 || tpr < irr) ? 0 : irr;
Liran Alon02d496cf2019-11-11 14:30:55 +02006135 if (is_guest_mode(vcpu))
6136 to_vmx(vcpu)->nested.l1_tpr_threshold = tpr_threshold;
6137 else
6138 vmcs_write32(TPR_THRESHOLD, tpr_threshold);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006139}
6140
Sean Christopherson97b7ead2018-12-03 13:53:16 -08006141void vmx_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08006142{
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006143 struct vcpu_vmx *vmx = to_vmx(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08006144 u32 sec_exec_control;
6145
Jim Mattson8d860bb2018-05-09 16:56:05 -04006146 if (!lapic_in_kernel(vcpu))
6147 return;
6148
Sean Christophersonfd6b6d92018-10-01 14:25:34 -07006149 if (!flexpriority_enabled &&
6150 !cpu_has_vmx_virtualize_x2apic_mode())
6151 return;
6152
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02006153 /* Postpone execution until vmcs01 is the current VMCS. */
6154 if (is_guest_mode(vcpu)) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006155 vmx->nested.change_vmcs01_virtual_apic_mode = true;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02006156 return;
6157 }
6158
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006159 sec_exec_control = secondary_exec_controls_get(vmx);
Jim Mattson8d860bb2018-05-09 16:56:05 -04006160 sec_exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
6161 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
Yang Zhang8d146952013-01-25 10:18:50 +08006162
Jim Mattson8d860bb2018-05-09 16:56:05 -04006163 switch (kvm_get_apic_mode(vcpu)) {
6164 case LAPIC_MODE_INVALID:
6165 WARN_ONCE(true, "Invalid local APIC state");
6166 case LAPIC_MODE_DISABLED:
6167 break;
6168 case LAPIC_MODE_XAPIC:
6169 if (flexpriority_enabled) {
6170 sec_exec_control |=
6171 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sean Christopherson4de1f9d2020-03-20 14:28:25 -07006172 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
6173
6174 /*
6175 * Flush the TLB, reloading the APIC access page will
6176 * only do so if its physical address has changed, but
6177 * the guest may have inserted a non-APIC mapping into
6178 * the TLB while the APIC access page was disabled.
6179 */
6180 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
Jim Mattson8d860bb2018-05-09 16:56:05 -04006181 }
6182 break;
6183 case LAPIC_MODE_X2APIC:
6184 if (cpu_has_vmx_virtualize_x2apic_mode())
6185 sec_exec_control |=
6186 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
6187 break;
Yang Zhang8d146952013-01-25 10:18:50 +08006188 }
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006189 secondary_exec_controls_set(vmx, sec_exec_control);
Yang Zhang8d146952013-01-25 10:18:50 +08006190
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006191 vmx_update_msr_bitmap(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08006192}
6193
Sean Christophersona4148b72020-03-20 14:28:24 -07006194static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu)
Tang Chen38b99172014-09-24 15:57:54 +08006195{
Sean Christophersona4148b72020-03-20 14:28:24 -07006196 struct page *page;
6197
Sean Christopherson1196cb92020-03-20 14:28:23 -07006198 /* Defer reload until vmcs01 is the current VMCS. */
6199 if (is_guest_mode(vcpu)) {
6200 to_vmx(vcpu)->nested.reload_vmcs01_apic_access_page = true;
6201 return;
Jim Mattsonfb6c8192017-03-16 13:53:59 -07006202 }
Sean Christopherson1196cb92020-03-20 14:28:23 -07006203
Sean Christopherson4de1f9d2020-03-20 14:28:25 -07006204 if (!(secondary_exec_controls_get(to_vmx(vcpu)) &
6205 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
6206 return;
6207
Sean Christophersona4148b72020-03-20 14:28:24 -07006208 page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
6209 if (is_error_page(page))
6210 return;
6211
6212 vmcs_write64(APIC_ACCESS_ADDR, page_to_phys(page));
Sean Christopherson1196cb92020-03-20 14:28:23 -07006213 vmx_flush_tlb_current(vcpu);
Sean Christophersona4148b72020-03-20 14:28:24 -07006214
6215 /*
6216 * Do not pin apic access page in memory, the MMU notifier
6217 * will call us again if it is migrated or swapped out.
6218 */
6219 put_page(page);
Tang Chen38b99172014-09-24 15:57:54 +08006220}
6221
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006222static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006223{
6224 u16 status;
6225 u8 old;
6226
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006227 if (max_isr == -1)
6228 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006229
6230 status = vmcs_read16(GUEST_INTR_STATUS);
6231 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006232 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08006233 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006234 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006235 vmcs_write16(GUEST_INTR_STATUS, status);
6236 }
6237}
6238
6239static void vmx_set_rvi(int vector)
6240{
6241 u16 status;
6242 u8 old;
6243
Wei Wang4114c272014-11-05 10:53:43 +08006244 if (vector == -1)
6245 vector = 0;
6246
Yang Zhangc7c9c562013-01-25 10:18:51 +08006247 status = vmcs_read16(GUEST_INTR_STATUS);
6248 old = (u8)status & 0xff;
6249 if ((u8)vector != old) {
6250 status &= ~0xff;
6251 status |= (u8)vector;
6252 vmcs_write16(GUEST_INTR_STATUS, status);
6253 }
6254}
6255
6256static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
6257{
Liran Alon851c1a182017-12-24 18:12:56 +02006258 /*
6259 * When running L2, updating RVI is only relevant when
6260 * vmcs12 virtual-interrupt-delivery enabled.
6261 * However, it can be enabled only when L1 also
6262 * intercepts external-interrupts and in that case
6263 * we should not update vmcs02 RVI but instead intercept
6264 * interrupt. Therefore, do nothing when running L2.
6265 */
6266 if (!is_guest_mode(vcpu))
Wanpeng Li963fee12014-07-17 19:03:00 +08006267 vmx_set_rvi(max_irr);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006268}
6269
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006270static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006271{
6272 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006273 int max_irr;
Liran Alonf27a85c2017-12-24 18:12:55 +02006274 bool max_irr_updated;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006275
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006276 WARN_ON(!vcpu->arch.apicv_active);
6277 if (pi_test_on(&vmx->pi_desc)) {
6278 pi_clear_on(&vmx->pi_desc);
6279 /*
Liran Alond9ff2742019-11-11 14:25:25 +02006280 * IOMMU can write to PID.ON, so the barrier matters even on UP.
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006281 * But on x86 this is just a compiler barrier anyway.
6282 */
6283 smp_mb__after_atomic();
Liran Alonf27a85c2017-12-24 18:12:55 +02006284 max_irr_updated =
6285 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir, &max_irr);
6286
6287 /*
6288 * If we are running L2 and L1 has a new pending interrupt
6289 * which can be injected, we should re-evaluate
6290 * what should be done with this new L1 interrupt.
Liran Alon851c1a182017-12-24 18:12:56 +02006291 * If L1 intercepts external-interrupts, we should
6292 * exit from L2 to L1. Otherwise, interrupt should be
6293 * delivered directly to L2.
Liran Alonf27a85c2017-12-24 18:12:55 +02006294 */
Liran Alon851c1a182017-12-24 18:12:56 +02006295 if (is_guest_mode(vcpu) && max_irr_updated) {
6296 if (nested_exit_on_intr(vcpu))
6297 kvm_vcpu_exiting_guest_mode(vcpu);
6298 else
6299 kvm_make_request(KVM_REQ_EVENT, vcpu);
6300 }
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006301 } else {
6302 max_irr = kvm_lapic_find_highest_irr(vcpu);
6303 }
6304 vmx_hwapic_irr_update(vcpu, max_irr);
6305 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006306}
6307
Andrey Smetanin63086302015-11-10 15:36:32 +03006308static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006309{
Andrey Smetanind62caab2015-11-10 15:36:33 +03006310 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08006311 return;
6312
Yang Zhangc7c9c562013-01-25 10:18:51 +08006313 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
6314 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
6315 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
6316 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
6317}
6318
Paolo Bonzini967235d2016-12-19 14:03:45 +01006319static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
6320{
6321 struct vcpu_vmx *vmx = to_vmx(vcpu);
6322
6323 pi_clear_on(&vmx->pi_desc);
6324 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
6325}
6326
Sean Christopherson535f7ef2020-09-15 12:15:04 -07006327void vmx_do_interrupt_nmi_irqoff(unsigned long entry);
6328
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006329static void handle_interrupt_nmi_irqoff(struct kvm_vcpu *vcpu, u32 intr_info)
6330{
6331 unsigned int vector = intr_info & INTR_INFO_VECTOR_MASK;
6332 gate_desc *desc = (gate_desc *)host_idt_base + vector;
6333
6334 kvm_before_interrupt(vcpu);
6335 vmx_do_interrupt_nmi_irqoff(gate_offset(desc));
6336 kvm_after_interrupt(vcpu);
6337}
6338
Sean Christopherson95b5a482019-04-19 22:50:59 -07006339static void handle_exception_nmi_irqoff(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03006340{
Sean Christopherson87915852020-04-15 13:34:54 -07006341 u32 intr_info = vmx_get_intr_info(&vmx->vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08006342
Wanpeng Li1261bfa2017-07-13 18:30:40 -07006343 /* if exit due to PF check for async PF */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006344 if (is_page_fault(intr_info))
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02006345 vmx->vcpu.arch.apf.host_apf_flags = kvm_read_and_reset_apf_flags();
Andi Kleena0861c02009-06-08 17:37:09 +08006346 /* Handle machine checks before interrupts are enabled */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006347 else if (is_machine_check(intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08006348 kvm_machine_check();
Gleb Natapov20f65982009-05-11 13:35:55 +03006349 /* We need to handle NMIs before interrupts are enabled */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006350 else if (is_nmi(intr_info))
6351 handle_interrupt_nmi_irqoff(&vmx->vcpu, intr_info);
Avi Kivity51aa01d2010-07-20 14:31:20 +03006352}
Gleb Natapov20f65982009-05-11 13:35:55 +03006353
Sean Christopherson95b5a482019-04-19 22:50:59 -07006354static void handle_external_interrupt_irqoff(struct kvm_vcpu *vcpu)
Yang Zhanga547c6d2013-04-11 19:25:10 +08006355{
Sean Christopherson87915852020-04-15 13:34:54 -07006356 u32 intr_info = vmx_get_intr_info(vcpu);
Yang Zhanga547c6d2013-04-11 19:25:10 +08006357
Sean Christopherson49def502019-04-19 22:50:56 -07006358 if (WARN_ONCE(!is_external_intr(intr_info),
6359 "KVM: unexpected VM-Exit interrupt info: 0x%x", intr_info))
6360 return;
6361
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006362 handle_interrupt_nmi_irqoff(vcpu, intr_info);
Yang Zhanga547c6d2013-04-11 19:25:10 +08006363}
Sean Christopherson95b5a482019-04-19 22:50:59 -07006364
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006365static void vmx_handle_exit_irqoff(struct kvm_vcpu *vcpu)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006366{
6367 struct vcpu_vmx *vmx = to_vmx(vcpu);
6368
6369 if (vmx->exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT)
6370 handle_external_interrupt_irqoff(vcpu);
6371 else if (vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI)
6372 handle_exception_nmi_irqoff(vmx);
6373}
Yang Zhanga547c6d2013-04-11 19:25:10 +08006374
Sean Christophersoncb97c2d2020-02-18 15:40:11 -08006375static bool vmx_has_emulated_msr(u32 index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006376{
Tom Lendackybc226f02018-05-10 22:06:39 +02006377 switch (index) {
6378 case MSR_IA32_SMBASE:
6379 /*
6380 * We cannot do SMM unless we can run the guest in big
6381 * real mode.
6382 */
6383 return enable_unrestricted_guest || emulate_invalid_guest_state;
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02006384 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
6385 return nested;
Tom Lendackybc226f02018-05-10 22:06:39 +02006386 case MSR_AMD64_VIRT_SPEC_CTRL:
6387 /* This is AMD only. */
6388 return false;
6389 default:
6390 return true;
6391 }
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006392}
6393
Avi Kivity51aa01d2010-07-20 14:31:20 +03006394static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
6395{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02006396 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03006397 bool unblock_nmi;
6398 u8 vector;
6399 bool idtv_info_valid;
6400
6401 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03006402
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006403 if (enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006404 if (vmx->loaded_vmcs->nmi_known_unmasked)
6405 return;
Sean Christopherson87915852020-04-15 13:34:54 -07006406
6407 exit_intr_info = vmx_get_intr_info(&vmx->vcpu);
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006408 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
6409 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
6410 /*
6411 * SDM 3: 27.7.1.2 (September 2008)
6412 * Re-set bit "block by NMI" before VM entry if vmexit caused by
6413 * a guest IRET fault.
6414 * SDM 3: 23.2.2 (September 2008)
6415 * Bit 12 is undefined in any of the following cases:
6416 * If the VM exit sets the valid bit in the IDT-vectoring
6417 * information field.
6418 * If the VM exit is due to a double fault.
6419 */
6420 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
6421 vector != DF_VECTOR && !idtv_info_valid)
6422 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
6423 GUEST_INTR_STATE_NMI);
6424 else
6425 vmx->loaded_vmcs->nmi_known_unmasked =
6426 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
6427 & GUEST_INTR_STATE_NMI);
6428 } else if (unlikely(vmx->loaded_vmcs->soft_vnmi_blocked))
6429 vmx->loaded_vmcs->vnmi_blocked_time +=
6430 ktime_to_ns(ktime_sub(ktime_get(),
6431 vmx->loaded_vmcs->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03006432}
6433
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006434static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03006435 u32 idt_vectoring_info,
6436 int instr_len_field,
6437 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03006438{
Avi Kivity51aa01d2010-07-20 14:31:20 +03006439 u8 vector;
6440 int type;
6441 bool idtv_info_valid;
6442
6443 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03006444
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006445 vcpu->arch.nmi_injected = false;
6446 kvm_clear_exception_queue(vcpu);
6447 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006448
6449 if (!idtv_info_valid)
6450 return;
6451
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006452 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03006453
Avi Kivity668f6122008-07-02 09:28:55 +03006454 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
6455 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006456
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006457 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03006458 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006459 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03006460 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03006461 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03006462 * Clear bit "block by NMI" before VM entry if a NMI
6463 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03006464 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006465 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006466 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006467 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006468 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05006469 fallthrough;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006470 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03006471 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03006472 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03006473 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03006474 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03006475 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006476 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006477 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006478 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05006479 fallthrough;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006480 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006481 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006482 break;
6483 default:
6484 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03006485 }
Avi Kivitycf393f72008-07-01 16:20:21 +03006486}
6487
Avi Kivity83422e12010-07-20 14:43:23 +03006488static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
6489{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006490 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03006491 VM_EXIT_INSTRUCTION_LEN,
6492 IDT_VECTORING_ERROR_CODE);
6493}
6494
Avi Kivityb463a6f2010-07-20 15:06:17 +03006495static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
6496{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006497 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03006498 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
6499 VM_ENTRY_INSTRUCTION_LEN,
6500 VM_ENTRY_EXCEPTION_ERROR_CODE);
6501
6502 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
6503}
6504
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006505static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
6506{
6507 int i, nr_msrs;
6508 struct perf_guest_switch_msr *msrs;
6509
6510 msrs = perf_guest_get_msrs(&nr_msrs);
6511
6512 if (!msrs)
6513 return;
6514
6515 for (i = 0; i < nr_msrs; i++)
6516 if (msrs[i].host == msrs[i].guest)
6517 clear_atomic_switch_msr(vmx, msrs[i].msr);
6518 else
6519 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04006520 msrs[i].host, false);
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006521}
6522
Sean Christophersonf459a702018-08-27 15:21:11 -07006523static void vmx_update_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07006524{
6525 struct vcpu_vmx *vmx = to_vmx(vcpu);
6526 u64 tscl;
6527 u32 delta_tsc;
6528
Sean Christophersond264ee02018-08-27 15:21:12 -07006529 if (vmx->req_immediate_exit) {
Sean Christopherson804939e2019-05-07 12:18:05 -07006530 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, 0);
6531 vmx->loaded_vmcs->hv_timer_soft_disabled = false;
6532 } else if (vmx->hv_deadline_tsc != -1) {
Sean Christophersonf459a702018-08-27 15:21:11 -07006533 tscl = rdtsc();
6534 if (vmx->hv_deadline_tsc > tscl)
6535 /* set_hv_timer ensures the delta fits in 32-bits */
6536 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
6537 cpu_preemption_timer_multi);
6538 else
6539 delta_tsc = 0;
6540
Sean Christopherson804939e2019-05-07 12:18:05 -07006541 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
6542 vmx->loaded_vmcs->hv_timer_soft_disabled = false;
6543 } else if (!vmx->loaded_vmcs->hv_timer_soft_disabled) {
6544 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, -1);
6545 vmx->loaded_vmcs->hv_timer_soft_disabled = true;
Sean Christophersonf459a702018-08-27 15:21:11 -07006546 }
Yunhong Jiang64672c92016-06-13 14:19:59 -07006547}
6548
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006549void noinstr vmx_update_host_rsp(struct vcpu_vmx *vmx, unsigned long host_rsp)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006550{
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006551 if (unlikely(host_rsp != vmx->loaded_vmcs->host_state.rsp)) {
6552 vmx->loaded_vmcs->host_state.rsp = host_rsp;
6553 vmcs_writel(HOST_RSP, host_rsp);
6554 }
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006555}
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006556
Wanpeng Li404d5d72020-04-28 14:23:25 +08006557static fastpath_t vmx_exit_handlers_fastpath(struct kvm_vcpu *vcpu)
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006558{
6559 switch (to_vmx(vcpu)->exit_reason) {
6560 case EXIT_REASON_MSR_WRITE:
6561 return handle_fastpath_set_msr_irqoff(vcpu);
Wanpeng Li26efe2f2020-05-06 11:44:01 -04006562 case EXIT_REASON_PREEMPTION_TIMER:
6563 return handle_fastpath_preemption_timer(vcpu);
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006564 default:
6565 return EXIT_FASTPATH_NONE;
6566 }
6567}
6568
Sean Christophersonfc2ba5a2019-01-25 07:41:19 -08006569bool __vmx_vcpu_run(struct vcpu_vmx *vmx, unsigned long *regs, bool launched);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006570
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006571static noinstr void vmx_vcpu_enter_exit(struct kvm_vcpu *vcpu,
6572 struct vcpu_vmx *vmx)
6573{
6574 /*
6575 * VMENTER enables interrupts (host state), but the kernel state is
6576 * interrupts disabled when this is invoked. Also tell RCU about
6577 * it. This is the same logic as for exit_to_user_mode().
6578 *
6579 * This ensures that e.g. latency analysis on the host observes
6580 * guest mode as interrupt enabled.
6581 *
6582 * guest_enter_irqoff() informs context tracking about the
6583 * transition to guest mode and if enabled adjusts RCU state
6584 * accordingly.
6585 */
6586 instrumentation_begin();
6587 trace_hardirqs_on_prepare();
6588 lockdep_hardirqs_on_prepare(CALLER_ADDR0);
6589 instrumentation_end();
6590
6591 guest_enter_irqoff();
6592 lockdep_hardirqs_on(CALLER_ADDR0);
6593
6594 /* L1D Flush includes CPU buffer clear to mitigate MDS */
6595 if (static_branch_unlikely(&vmx_l1d_should_flush))
6596 vmx_l1d_flush(vcpu);
6597 else if (static_branch_unlikely(&mds_user_clear))
6598 mds_clear_cpu_buffers();
6599
Thomas Gleixner2245d392020-07-08 21:52:00 +02006600 if (vcpu->arch.cr2 != native_read_cr2())
6601 native_write_cr2(vcpu->arch.cr2);
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006602
6603 vmx->fail = __vmx_vcpu_run(vmx, (unsigned long *)&vcpu->arch.regs,
6604 vmx->loaded_vmcs->launched);
6605
Thomas Gleixner2245d392020-07-08 21:52:00 +02006606 vcpu->arch.cr2 = native_read_cr2();
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006607
6608 /*
6609 * VMEXIT disables interrupts (host state), but tracing and lockdep
6610 * have them in state 'on' as recorded before entering guest mode.
6611 * Same as enter_from_user_mode().
6612 *
6613 * guest_exit_irqoff() restores host context and reinstates RCU if
6614 * enabled and required.
6615 *
6616 * This needs to be done before the below as native_read_msr()
6617 * contains a tracepoint and x86_spec_ctrl_restore_host() calls
6618 * into world and some more.
6619 */
6620 lockdep_hardirqs_off(CALLER_ADDR0);
6621 guest_exit_irqoff();
6622
6623 instrumentation_begin();
6624 trace_hardirqs_off_finish();
6625 instrumentation_end();
6626}
6627
Wanpeng Li404d5d72020-04-28 14:23:25 +08006628static fastpath_t vmx_vcpu_run(struct kvm_vcpu *vcpu)
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006629{
Wanpeng Li404d5d72020-04-28 14:23:25 +08006630 fastpath_t exit_fastpath;
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006631 struct vcpu_vmx *vmx = to_vmx(vcpu);
6632 unsigned long cr3, cr4;
6633
Wanpeng Li404d5d72020-04-28 14:23:25 +08006634reenter_guest:
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006635 /* Record the guest's net vcpu time for enforced NMI injections. */
6636 if (unlikely(!enable_vnmi &&
6637 vmx->loaded_vmcs->soft_vnmi_blocked))
6638 vmx->loaded_vmcs->entry_time = ktime_get();
6639
6640 /* Don't enter VMX if guest state is invalid, let the exit handler
6641 start emulation until we arrive back to a valid state */
6642 if (vmx->emulation_required)
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006643 return EXIT_FASTPATH_NONE;
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006644
6645 if (vmx->ple_window_dirty) {
6646 vmx->ple_window_dirty = false;
6647 vmcs_write32(PLE_WINDOW, vmx->ple_window);
6648 }
6649
wanpeng lic9dfd3f2020-02-17 18:37:43 +08006650 /*
6651 * We did this in prepare_switch_to_guest, because it needs to
6652 * be within srcu_read_lock.
6653 */
6654 WARN_ON_ONCE(vmx->nested.need_vmcs12_to_shadow_sync);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006655
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07006656 if (kvm_register_is_dirty(vcpu, VCPU_REGS_RSP))
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006657 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07006658 if (kvm_register_is_dirty(vcpu, VCPU_REGS_RIP))
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006659 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
6660
6661 cr3 = __get_current_cr3_fast();
6662 if (unlikely(cr3 != vmx->loaded_vmcs->host_state.cr3)) {
6663 vmcs_writel(HOST_CR3, cr3);
6664 vmx->loaded_vmcs->host_state.cr3 = cr3;
6665 }
6666
6667 cr4 = cr4_read_shadow();
6668 if (unlikely(cr4 != vmx->loaded_vmcs->host_state.cr4)) {
6669 vmcs_writel(HOST_CR4, cr4);
6670 vmx->loaded_vmcs->host_state.cr4 = cr4;
6671 }
6672
6673 /* When single-stepping over STI and MOV SS, we must clear the
6674 * corresponding interruptibility bits in the guest state. Otherwise
6675 * vmentry fails as it then expects bit 14 (BS) in pending debug
6676 * exceptions being set, but that's not correct for the guest debugging
6677 * case. */
6678 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
6679 vmx_set_interrupt_shadow(vcpu, 0);
6680
Aaron Lewis139a12c2019-10-21 16:30:25 -07006681 kvm_load_guest_xsave_state(vcpu);
WANG Chao1811d972019-04-12 15:55:39 +08006682
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006683 pt_guest_enter(vmx);
6684
Vitaly Kuznetsov49097762020-06-19 11:40:46 +02006685 atomic_switch_perf_msrs(vmx);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006686
Sean Christopherson804939e2019-05-07 12:18:05 -07006687 if (enable_preemption_timer)
6688 vmx_update_hv_timer(vcpu);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006689
Wanpeng Li010fd372020-09-10 17:50:41 +08006690 kvm_wait_lapic_expire(vcpu);
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08006691
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006692 /*
6693 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
6694 * it's non-zero. Since vmentry is serialising on affected CPUs, there
6695 * is no need to worry about the conditional branch over the wrmsr
6696 * being speculatively taken.
6697 */
6698 x86_spec_ctrl_set_guest(vmx->spec_ctrl, 0);
6699
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006700 /* The actual VMENTER/EXIT is in the .noinstr.text section. */
6701 vmx_vcpu_enter_exit(vcpu, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006702
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006703 /*
6704 * We do not use IBRS in the kernel. If this vCPU has used the
6705 * SPEC_CTRL MSR it may have left it on; save the value and
6706 * turn it off. This is much more efficient than blindly adding
6707 * it to the atomic save/restore list. Especially as the former
6708 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
6709 *
6710 * For non-nested case:
6711 * If the L01 MSR bitmap does not intercept the MSR, then we need to
6712 * save it.
6713 *
6714 * For nested case:
6715 * If the L02 MSR bitmap does not intercept the MSR, then we need to
6716 * save it.
6717 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01006718 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01006719 vmx->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006720
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02006721 x86_spec_ctrl_restore_host(vmx->spec_ctrl, 0);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006722
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01006723 /* All fields are clean at this point */
6724 if (static_branch_unlikely(&enable_evmcs))
6725 current_evmcs->hv_clean_fields |=
6726 HV_VMX_ENLIGHTENED_CLEAN_FIELD_ALL;
6727
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08006728 if (static_branch_unlikely(&enable_evmcs))
6729 current_evmcs->hv_vp_id = vcpu->arch.hyperv.vp_index;
6730
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006731 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
Wanpeng Li74c55932017-11-29 01:31:20 -08006732 if (vmx->host_debugctlmsr)
6733 update_debugctlmsr(vmx->host_debugctlmsr);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006734
Avi Kivityaa67f602012-08-01 16:48:03 +03006735#ifndef CONFIG_X86_64
6736 /*
6737 * The sysexit path does not restore ds/es, so we must set them to
6738 * a reasonable value ourselves.
6739 *
Sean Christopherson6d6095b2018-07-23 12:32:44 -07006740 * We can't defer this to vmx_prepare_switch_to_host() since that
6741 * function may be executed in interrupt context, which saves and
6742 * restore segments around it, nullifying its effect.
Avi Kivityaa67f602012-08-01 16:48:03 +03006743 */
6744 loadsegment(ds, __USER_DS);
6745 loadsegment(es, __USER_DS);
6746#endif
6747
Sean Christophersone5d03de2020-04-15 13:34:51 -07006748 vmx_register_cache_reset(vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006749
Chao Peng2ef444f2018-10-24 16:05:12 +08006750 pt_guest_exit(vmx);
6751
Aaron Lewis139a12c2019-10-21 16:30:25 -07006752 kvm_load_host_xsave_state(vcpu);
WANG Chao1811d972019-04-12 15:55:39 +08006753
Gleb Natapove0b890d2013-09-25 12:51:33 +03006754 vmx->nested.nested_run_pending = 0;
Jim Mattsonb060ca32017-09-14 16:31:42 -07006755 vmx->idt_vectoring_info = 0;
6756
Sean Christopherson873e1da2020-04-10 10:47:02 -07006757 if (unlikely(vmx->fail)) {
6758 vmx->exit_reason = 0xdead;
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006759 return EXIT_FASTPATH_NONE;
Sean Christopherson873e1da2020-04-10 10:47:02 -07006760 }
6761
6762 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
6763 if (unlikely((u16)vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY))
Sean Christophersonbeb8d932019-04-19 22:50:55 -07006764 kvm_machine_check();
6765
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006766 trace_kvm_exit(vmx->exit_reason, vcpu, KVM_ISA_VMX);
6767
Sean Christopherson873e1da2020-04-10 10:47:02 -07006768 if (unlikely(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006769 return EXIT_FASTPATH_NONE;
6770
Jim Mattsonb060ca32017-09-14 16:31:42 -07006771 vmx->loaded_vmcs->launched = 1;
6772 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Gleb Natapove0b890d2013-09-25 12:51:33 +03006773
Avi Kivity51aa01d2010-07-20 14:31:20 +03006774 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03006775 vmx_complete_interrupts(vmx);
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006776
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006777 if (is_guest_mode(vcpu))
6778 return EXIT_FASTPATH_NONE;
6779
6780 exit_fastpath = vmx_exit_handlers_fastpath(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08006781 if (exit_fastpath == EXIT_FASTPATH_REENTER_GUEST) {
6782 if (!kvm_vcpu_exit_request(vcpu)) {
6783 /*
6784 * FIXME: this goto should be a loop in vcpu_enter_guest,
6785 * but it would incur the cost of a retpoline for now.
6786 * Revisit once static calls are available.
6787 */
Wanpeng Li379a3c82020-04-28 14:23:27 +08006788 if (vcpu->arch.apicv_active)
6789 vmx_sync_pir_to_irr(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08006790 goto reenter_guest;
6791 }
6792 exit_fastpath = EXIT_FASTPATH_EXIT_HANDLED;
6793 }
6794
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006795 return exit_fastpath;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006796}
6797
Avi Kivity6aa8b732006-12-10 02:21:36 -08006798static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
6799{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006800 struct vcpu_vmx *vmx = to_vmx(vcpu);
6801
Kai Huang843e4332015-01-28 10:54:28 +08006802 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08006803 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08006804 free_vpid(vmx->vpid);
Sean Christopherson55d23752018-12-03 13:53:18 -08006805 nested_vmx_free_vcpu(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006806 free_loaded_vmcs(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006807}
6808
Sean Christopherson987b2592019-12-18 13:54:55 -08006809static int vmx_create_vcpu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006810{
Ben Gardon41836832019-02-11 11:02:52 -08006811 struct vcpu_vmx *vmx;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006812 unsigned long *msr_bitmap;
Sean Christopherson34109c02019-12-18 13:54:50 -08006813 int i, cpu, err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006814
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006815 BUILD_BUG_ON(offsetof(struct vcpu_vmx, vcpu) != 0);
6816 vmx = to_vmx(vcpu);
Ingo Molnar965b58a2007-01-05 16:36:23 -08006817
Peter Feiner4e595162016-07-07 14:49:58 -07006818 err = -ENOMEM;
6819
Sean Christopherson034d8e22019-12-18 13:54:49 -08006820 vmx->vpid = allocate_vpid();
6821
Peter Feiner4e595162016-07-07 14:49:58 -07006822 /*
6823 * If PML is turned on, failure on enabling PML just results in failure
6824 * of creating the vcpu, therefore we can simplify PML logic (by
6825 * avoiding dealing with cases, such as enabling PML partially on vcpus
Miaohe Lin67b0ae42019-12-11 14:26:22 +08006826 * for the guest), etc.
Peter Feiner4e595162016-07-07 14:49:58 -07006827 */
6828 if (enable_pml) {
Ben Gardon41836832019-02-11 11:02:52 -08006829 vmx->pml_pg = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Peter Feiner4e595162016-07-07 14:49:58 -07006830 if (!vmx->pml_pg)
Sean Christopherson987b2592019-12-18 13:54:55 -08006831 goto free_vpid;
Peter Feiner4e595162016-07-07 14:49:58 -07006832 }
6833
Sean Christopherson14a61b62020-09-23 11:04:08 -07006834 BUILD_BUG_ON(ARRAY_SIZE(vmx_uret_msrs_list) != MAX_NR_USER_RETURN_MSRS);
Ingo Molnar965b58a2007-01-05 16:36:23 -08006835
Sean Christopherson14a61b62020-09-23 11:04:08 -07006836 for (i = 0; i < ARRAY_SIZE(vmx_uret_msrs_list); ++i) {
6837 u32 index = vmx_uret_msrs_list[i];
Xiaoyao Li4be53412019-10-20 17:11:00 +08006838 u32 data_low, data_high;
Sean Christophersonfbc18002020-09-23 11:03:59 -07006839 int j = vmx->nr_uret_msrs;
Xiaoyao Li4be53412019-10-20 17:11:00 +08006840
6841 if (rdmsr_safe(index, &data_low, &data_high) < 0)
6842 continue;
6843 if (wrmsr_safe(index, data_low, data_high) < 0)
6844 continue;
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006845
Sean Christopherson802145c2020-09-23 11:04:09 -07006846 vmx->guest_uret_msrs[j].slot = i;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07006847 vmx->guest_uret_msrs[j].data = 0;
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006848 switch (index) {
6849 case MSR_IA32_TSX_CTRL:
6850 /*
6851 * No need to pass TSX_CTRL_CPUID_CLEAR through, so
6852 * let's avoid changing CPUID bits under the host
6853 * kernel's feet.
6854 */
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07006855 vmx->guest_uret_msrs[j].mask = ~(u64)TSX_CTRL_CPUID_CLEAR;
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006856 break;
6857 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07006858 vmx->guest_uret_msrs[j].mask = -1ull;
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006859 break;
6860 }
Sean Christophersonfbc18002020-09-23 11:03:59 -07006861 ++vmx->nr_uret_msrs;
Xiaoyao Li4be53412019-10-20 17:11:00 +08006862 }
6863
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006864 err = alloc_loaded_vmcs(&vmx->vmcs01);
6865 if (err < 0)
Jim Mattson7d737102019-12-03 16:24:42 -08006866 goto free_pml;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006867
Alexander Graf3eb90012020-09-25 16:34:20 +02006868 /* The MSR bitmap starts with all ones */
6869 bitmap_fill(vmx->shadow_msr_intercept.read, MAX_POSSIBLE_PASSTHROUGH_MSRS);
6870 bitmap_fill(vmx->shadow_msr_intercept.write, MAX_POSSIBLE_PASSTHROUGH_MSRS);
6871
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006872 msr_bitmap = vmx->vmcs01.msr_bitmap;
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006873 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_TSC, MSR_TYPE_R);
6874 vmx_disable_intercept_for_msr(vcpu, MSR_FS_BASE, MSR_TYPE_RW);
6875 vmx_disable_intercept_for_msr(vcpu, MSR_GS_BASE, MSR_TYPE_RW);
6876 vmx_disable_intercept_for_msr(vcpu, MSR_KERNEL_GS_BASE, MSR_TYPE_RW);
6877 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_CS, MSR_TYPE_RW);
6878 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_ESP, MSR_TYPE_RW);
6879 vmx_disable_intercept_for_msr(vcpu, MSR_IA32_SYSENTER_EIP, MSR_TYPE_RW);
Sean Christopherson987b2592019-12-18 13:54:55 -08006880 if (kvm_cstate_in_guest(vcpu->kvm)) {
Aaron Lewis476c9bd2020-09-25 16:34:18 +02006881 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C1_RES, MSR_TYPE_R);
6882 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C3_RESIDENCY, MSR_TYPE_R);
6883 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C6_RESIDENCY, MSR_TYPE_R);
6884 vmx_disable_intercept_for_msr(vcpu, MSR_CORE_C7_RESIDENCY, MSR_TYPE_R);
Wanpeng Lib5170062019-05-21 14:06:53 +08006885 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006886 vmx->msr_bitmap_mode = 0;
6887
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006888 vmx->loaded_vmcs = &vmx->vmcs01;
Avi Kivity15ad7142007-07-11 18:17:21 +03006889 cpu = get_cpu();
Sean Christopherson34109c02019-12-18 13:54:50 -08006890 vmx_vcpu_load(vcpu, cpu);
6891 vcpu->cpu = cpu;
Xiaoyao Li1b842922019-10-20 17:11:01 +08006892 init_vmcs(vmx);
Sean Christopherson34109c02019-12-18 13:54:50 -08006893 vmx_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03006894 put_cpu();
Sean Christopherson34109c02019-12-18 13:54:50 -08006895 if (cpu_need_virtualize_apic_accesses(vcpu)) {
Sean Christopherson987b2592019-12-18 13:54:55 -08006896 err = alloc_apic_access_page(vcpu->kvm);
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02006897 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02006898 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02006899 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08006900
Sean Christophersone90008d2018-03-05 12:04:37 -08006901 if (enable_ept && !enable_unrestricted_guest) {
Sean Christopherson987b2592019-12-18 13:54:55 -08006902 err = init_rmode_identity_map(vcpu->kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08006903 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02006904 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006905 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08006906
Roman Kagan63aff652018-07-19 21:59:07 +03006907 if (nested)
Chenyi Qiangb9757a42020-08-28 16:56:22 +08006908 memcpy(&vmx->nested.msrs, &vmcs_config.nested, sizeof(vmx->nested.msrs));
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08006909 else
6910 memset(&vmx->nested.msrs, 0, sizeof(vmx->nested.msrs));
Wincy Vanb9c237b2015-02-03 23:56:30 +08006911
Wincy Van705699a2015-02-03 23:58:17 +08006912 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03006913 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03006914
Paolo Bonzinibab0c312020-02-11 18:40:58 +01006915 vcpu->arch.microcode_version = 0x100000000ULL;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08006916 vmx->msr_ia32_feature_control_valid_bits = FEAT_CTL_LOCKED;
Haozhong Zhang37e4c992016-06-22 14:59:55 +08006917
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02006918 /*
6919 * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR
6920 * or POSTED_INTR_WAKEUP_VECTOR.
6921 */
6922 vmx->pi_desc.nv = POSTED_INTR_VECTOR;
6923 vmx->pi_desc.sn = 1;
6924
Lan Tianyu53963a72018-12-06 15:34:36 +08006925 vmx->ept_pointer = INVALID_PAGE;
6926
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006927 return 0;
Ingo Molnar965b58a2007-01-05 16:36:23 -08006928
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006929free_vmcs:
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08006930 free_loaded_vmcs(vmx->loaded_vmcs);
Peter Feiner4e595162016-07-07 14:49:58 -07006931free_pml:
6932 vmx_destroy_pml_buffer(vmx);
Sean Christopherson987b2592019-12-18 13:54:55 -08006933free_vpid:
Wanpeng Li991e7a02015-09-16 17:30:05 +08006934 free_vpid(vmx->vpid);
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006935 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006936}
6937
Thomas Gleixner65fd4cb2019-02-19 11:10:49 +01006938#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"
6939#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 -04006940
Wanpeng Lib31c1142018-03-12 04:53:04 -07006941static int vmx_vm_init(struct kvm *kvm)
6942{
Tianyu Lan877ad952018-07-19 08:40:23 +00006943 spin_lock_init(&to_kvm_vmx(kvm)->ept_pointer_lock);
6944
Wanpeng Lib31c1142018-03-12 04:53:04 -07006945 if (!ple_gap)
6946 kvm->arch.pause_in_guest = true;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006947
Jiri Kosinad90a7a02018-07-13 16:23:25 +02006948 if (boot_cpu_has(X86_BUG_L1TF) && enable_ept) {
6949 switch (l1tf_mitigation) {
6950 case L1TF_MITIGATION_OFF:
6951 case L1TF_MITIGATION_FLUSH_NOWARN:
6952 /* 'I explicitly don't care' is set */
6953 break;
6954 case L1TF_MITIGATION_FLUSH:
6955 case L1TF_MITIGATION_FLUSH_NOSMT:
6956 case L1TF_MITIGATION_FULL:
6957 /*
6958 * Warn upon starting the first VM in a potentially
6959 * insecure environment.
6960 */
Josh Poimboeufb2849092019-01-30 07:13:58 -06006961 if (sched_smt_active())
Jiri Kosinad90a7a02018-07-13 16:23:25 +02006962 pr_warn_once(L1TF_MSG_SMT);
6963 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_NEVER)
6964 pr_warn_once(L1TF_MSG_L1D);
6965 break;
6966 case L1TF_MITIGATION_FULL_FORCE:
6967 /* Flush is enforced */
6968 break;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006969 }
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006970 }
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06006971 kvm_apicv_init(kvm, enable_apicv);
Wanpeng Lib31c1142018-03-12 04:53:04 -07006972 return 0;
6973}
6974
Sean Christophersonf257d6d2019-04-19 22:18:17 -07006975static int __init vmx_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03006976{
6977 struct vmcs_config vmcs_conf;
Sean Christopherson7caaa712018-12-03 13:53:01 -08006978 struct vmx_capability vmx_cap;
Yang, Sheng002c7f72007-07-31 14:23:01 +03006979
Sean Christophersonff10e222019-12-20 20:45:10 -08006980 if (!this_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
6981 !this_cpu_has(X86_FEATURE_VMX)) {
6982 pr_err("kvm: VMX is disabled on CPU %d\n", smp_processor_id());
6983 return -EIO;
6984 }
6985
Sean Christopherson7caaa712018-12-03 13:53:01 -08006986 if (setup_vmcs_config(&vmcs_conf, &vmx_cap) < 0)
Sean Christophersonf257d6d2019-04-19 22:18:17 -07006987 return -EIO;
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08006988 if (nested)
Vitaly Kuznetsova4443262020-02-20 18:22:04 +01006989 nested_vmx_setup_ctls_msrs(&vmcs_conf.nested, vmx_cap.ept);
Yang, Sheng002c7f72007-07-31 14:23:01 +03006990 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
6991 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
6992 smp_processor_id());
Sean Christophersonf257d6d2019-04-19 22:18:17 -07006993 return -EIO;
Yang, Sheng002c7f72007-07-31 14:23:01 +03006994 }
Sean Christophersonf257d6d2019-04-19 22:18:17 -07006995 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03006996}
6997
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006998static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08006999{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007000 u8 cache;
7001 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007002
Chia-I Wu222f06e2020-02-13 13:30:34 -08007003 /* We wanted to honor guest CD/MTRR/PAT, but doing so could result in
7004 * memory aliases with conflicting memory types and sometimes MCEs.
7005 * We have to be careful as to what are honored and when.
7006 *
7007 * For MMIO, guest CD/MTRR are ignored. The EPT memory type is set to
7008 * UC. The effective memory type is UC or WC depending on guest PAT.
7009 * This was historically the source of MCEs and we want to be
7010 * conservative.
7011 *
7012 * When there is no need to deal with noncoherent DMA (e.g., no VT-d
7013 * or VT-d has snoop control), guest CD/MTRR/PAT are all ignored. The
7014 * EPT memory type is set to WB. The effective memory type is forced
7015 * WB.
7016 *
7017 * Otherwise, we trust guest. Guest CD/MTRR/PAT are all honored. The
7018 * EPT memory type is used to emulate guest CD/MTRR.
Sheng Yang522c68c2009-04-27 20:35:43 +08007019 */
Chia-I Wu222f06e2020-02-13 13:30:34 -08007020
Paolo Bonzini606decd2015-10-01 13:12:47 +02007021 if (is_mmio) {
7022 cache = MTRR_TYPE_UNCACHABLE;
7023 goto exit;
7024 }
7025
7026 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007027 ipat = VMX_EPT_IPAT_BIT;
7028 cache = MTRR_TYPE_WRBACK;
7029 goto exit;
7030 }
7031
7032 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
7033 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02007034 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08007035 cache = MTRR_TYPE_WRBACK;
7036 else
7037 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007038 goto exit;
7039 }
7040
Xiao Guangrongff536042015-06-15 16:55:22 +08007041 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08007042
7043exit:
7044 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08007045}
7046
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007047static void vmcs_set_secondary_exec_control(struct vcpu_vmx *vmx)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007048{
7049 /*
7050 * These bits in the secondary execution controls field
7051 * are dynamic, the others are mostly based on the hypervisor
7052 * architecture and the guest's CPUID. Do not touch the
7053 * dynamic bits.
7054 */
7055 u32 mask =
7056 SECONDARY_EXEC_SHADOW_VMCS |
7057 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Paolo Bonzini0367f202016-07-12 10:44:55 +02007058 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
7059 SECONDARY_EXEC_DESC;
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007060
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007061 u32 new_ctl = vmx->secondary_exec_control;
7062 u32 cur_ctl = secondary_exec_controls_get(vmx);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007063
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007064 secondary_exec_controls_set(vmx, (new_ctl & ~mask) | (cur_ctl & mask));
Xiao Guangrongfeda8052015-09-09 14:05:55 +08007065}
7066
David Matlack8322ebb2016-11-29 18:14:09 -08007067/*
7068 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
7069 * (indicating "allowed-1") if they are supported in the guest's CPUID.
7070 */
7071static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
7072{
7073 struct vcpu_vmx *vmx = to_vmx(vcpu);
7074 struct kvm_cpuid_entry2 *entry;
7075
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01007076 vmx->nested.msrs.cr0_fixed1 = 0xffffffff;
7077 vmx->nested.msrs.cr4_fixed1 = X86_CR4_PCE;
David Matlack8322ebb2016-11-29 18:14:09 -08007078
7079#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
7080 if (entry && (entry->_reg & (_cpuid_mask))) \
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01007081 vmx->nested.msrs.cr4_fixed1 |= (_cr4_mask); \
David Matlack8322ebb2016-11-29 18:14:09 -08007082} while (0)
7083
7084 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
Sean Christopherson87382002019-12-17 13:32:42 -08007085 cr4_fixed1_update(X86_CR4_VME, edx, feature_bit(VME));
7086 cr4_fixed1_update(X86_CR4_PVI, edx, feature_bit(VME));
7087 cr4_fixed1_update(X86_CR4_TSD, edx, feature_bit(TSC));
7088 cr4_fixed1_update(X86_CR4_DE, edx, feature_bit(DE));
7089 cr4_fixed1_update(X86_CR4_PSE, edx, feature_bit(PSE));
7090 cr4_fixed1_update(X86_CR4_PAE, edx, feature_bit(PAE));
7091 cr4_fixed1_update(X86_CR4_MCE, edx, feature_bit(MCE));
7092 cr4_fixed1_update(X86_CR4_PGE, edx, feature_bit(PGE));
7093 cr4_fixed1_update(X86_CR4_OSFXSR, edx, feature_bit(FXSR));
7094 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, feature_bit(XMM));
7095 cr4_fixed1_update(X86_CR4_VMXE, ecx, feature_bit(VMX));
7096 cr4_fixed1_update(X86_CR4_SMXE, ecx, feature_bit(SMX));
7097 cr4_fixed1_update(X86_CR4_PCIDE, ecx, feature_bit(PCID));
7098 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, feature_bit(XSAVE));
David Matlack8322ebb2016-11-29 18:14:09 -08007099
7100 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
Sean Christopherson87382002019-12-17 13:32:42 -08007101 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, feature_bit(FSGSBASE));
7102 cr4_fixed1_update(X86_CR4_SMEP, ebx, feature_bit(SMEP));
7103 cr4_fixed1_update(X86_CR4_SMAP, ebx, feature_bit(SMAP));
7104 cr4_fixed1_update(X86_CR4_PKE, ecx, feature_bit(PKU));
7105 cr4_fixed1_update(X86_CR4_UMIP, ecx, feature_bit(UMIP));
7106 cr4_fixed1_update(X86_CR4_LA57, ecx, feature_bit(LA57));
David Matlack8322ebb2016-11-29 18:14:09 -08007107
7108#undef cr4_fixed1_update
7109}
7110
Liran Alon5f76f6f2018-09-14 03:25:52 +03007111static void nested_vmx_entry_exit_ctls_update(struct kvm_vcpu *vcpu)
7112{
7113 struct vcpu_vmx *vmx = to_vmx(vcpu);
7114
7115 if (kvm_mpx_supported()) {
7116 bool mpx_enabled = guest_cpuid_has(vcpu, X86_FEATURE_MPX);
7117
7118 if (mpx_enabled) {
7119 vmx->nested.msrs.entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
7120 vmx->nested.msrs.exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
7121 } else {
7122 vmx->nested.msrs.entry_ctls_high &= ~VM_ENTRY_LOAD_BNDCFGS;
7123 vmx->nested.msrs.exit_ctls_high &= ~VM_EXIT_CLEAR_BNDCFGS;
7124 }
7125 }
7126}
7127
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007128static void update_intel_pt_cfg(struct kvm_vcpu *vcpu)
7129{
7130 struct vcpu_vmx *vmx = to_vmx(vcpu);
7131 struct kvm_cpuid_entry2 *best = NULL;
7132 int i;
7133
7134 for (i = 0; i < PT_CPUID_LEAVES; i++) {
7135 best = kvm_find_cpuid_entry(vcpu, 0x14, i);
7136 if (!best)
7137 return;
7138 vmx->pt_desc.caps[CPUID_EAX + i*PT_CPUID_REGS_NUM] = best->eax;
7139 vmx->pt_desc.caps[CPUID_EBX + i*PT_CPUID_REGS_NUM] = best->ebx;
7140 vmx->pt_desc.caps[CPUID_ECX + i*PT_CPUID_REGS_NUM] = best->ecx;
7141 vmx->pt_desc.caps[CPUID_EDX + i*PT_CPUID_REGS_NUM] = best->edx;
7142 }
7143
7144 /* Get the number of configurable Address Ranges for filtering */
7145 vmx->pt_desc.addr_range = intel_pt_validate_cap(vmx->pt_desc.caps,
7146 PT_CAP_num_address_ranges);
7147
7148 /* Initialize and clear the no dependency bits */
7149 vmx->pt_desc.ctl_bitmask = ~(RTIT_CTL_TRACEEN | RTIT_CTL_OS |
7150 RTIT_CTL_USR | RTIT_CTL_TSC_EN | RTIT_CTL_DISRETC);
7151
7152 /*
7153 * If CPUID.(EAX=14H,ECX=0):EBX[0]=1 CR3Filter can be set otherwise
7154 * will inject an #GP
7155 */
7156 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_cr3_filtering))
7157 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_CR3EN;
7158
7159 /*
7160 * If CPUID.(EAX=14H,ECX=0):EBX[1]=1 CYCEn, CycThresh and
7161 * PSBFreq can be set
7162 */
7163 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc))
7164 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_CYCLEACC |
7165 RTIT_CTL_CYC_THRESH | RTIT_CTL_PSB_FREQ);
7166
7167 /*
7168 * If CPUID.(EAX=14H,ECX=0):EBX[3]=1 MTCEn BranchEn and
7169 * MTCFreq can be set
7170 */
7171 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc))
7172 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_MTC_EN |
7173 RTIT_CTL_BRANCH_EN | RTIT_CTL_MTC_RANGE);
7174
7175 /* If CPUID.(EAX=14H,ECX=0):EBX[4]=1 FUPonPTW and PTWEn can be set */
7176 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_ptwrite))
7177 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_FUP_ON_PTW |
7178 RTIT_CTL_PTW_EN);
7179
7180 /* If CPUID.(EAX=14H,ECX=0):EBX[5]=1 PwrEvEn can be set */
7181 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_power_event_trace))
7182 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_PWR_EVT_EN;
7183
7184 /* If CPUID.(EAX=14H,ECX=0):ECX[0]=1 ToPA can be set */
7185 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_topa_output))
7186 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_TOPA;
7187
7188 /* If CPUID.(EAX=14H,ECX=0):ECX[3]=1 FabircEn can be set */
7189 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_output_subsys))
7190 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_FABRIC_EN;
7191
7192 /* unmask address range configure area */
7193 for (i = 0; i < vmx->pt_desc.addr_range; i++)
Gustavo A. R. Silvad14eff12018-12-26 14:40:59 -06007194 vmx->pt_desc.ctl_bitmask &= ~(0xfULL << (32 + i * 4));
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007195}
7196
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08007197static void vmx_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
Sheng Yang0e851882009-12-18 16:48:46 +08007198{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007199 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007200
Aaron Lewis72041602019-10-21 16:30:20 -07007201 /* xsaves_enabled is recomputed in vmx_compute_secondary_exec_control(). */
7202 vcpu->arch.xsaves_enabled = false;
7203
Paolo Bonzini80154d72017-08-24 13:55:35 +02007204 if (cpu_has_secondary_exec_ctrls()) {
7205 vmx_compute_secondary_exec_control(vmx);
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007206 vmcs_set_secondary_exec_control(vmx);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007207 }
Mao, Junjiead756a12012-07-02 01:18:48 +00007208
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007209 if (nested_vmx_allowed(vcpu))
7210 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007211 FEAT_CTL_VMX_ENABLED_INSIDE_SMX |
7212 FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX;
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007213 else
7214 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007215 ~(FEAT_CTL_VMX_ENABLED_INSIDE_SMX |
7216 FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX);
David Matlack8322ebb2016-11-29 18:14:09 -08007217
Liran Alon5f76f6f2018-09-14 03:25:52 +03007218 if (nested_vmx_allowed(vcpu)) {
David Matlack8322ebb2016-11-29 18:14:09 -08007219 nested_vmx_cr_fixed1_bits_update(vcpu);
Liran Alon5f76f6f2018-09-14 03:25:52 +03007220 nested_vmx_entry_exit_ctls_update(vcpu);
7221 }
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007222
7223 if (boot_cpu_has(X86_FEATURE_INTEL_PT) &&
7224 guest_cpuid_has(vcpu, X86_FEATURE_INTEL_PT))
7225 update_intel_pt_cfg(vcpu);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007226
7227 if (boot_cpu_has(X86_FEATURE_RTM)) {
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07007228 struct vmx_uret_msr *msr;
Sean Christophersond85a8032020-09-23 11:04:06 -07007229 msr = vmx_find_uret_msr(vmx, MSR_IA32_TSX_CTRL);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007230 if (msr) {
7231 bool enabled = guest_cpuid_has(vcpu, X86_FEATURE_RTM);
Sean Christopherson7bf662b2020-09-23 11:04:07 -07007232 vmx_set_guest_uret_msr(vmx, msr, enabled ? 0 : TSX_CTRL_RTM_DISABLE);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007233 }
7234 }
Sheng Yang0e851882009-12-18 16:48:46 +08007235}
7236
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007237static __init void vmx_set_cpu_caps(void)
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007238{
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007239 kvm_set_cpu_caps();
7240
7241 /* CPUID 0x1 */
7242 if (nested)
7243 kvm_cpu_cap_set(X86_FEATURE_VMX);
7244
7245 /* CPUID 0x7 */
Sean Christopherson8721f5b2020-03-02 15:56:45 -08007246 if (kvm_mpx_supported())
7247 kvm_cpu_cap_check_and_set(X86_FEATURE_MPX);
7248 if (cpu_has_vmx_invpcid())
7249 kvm_cpu_cap_check_and_set(X86_FEATURE_INVPCID);
7250 if (vmx_pt_mode_is_host_guest())
7251 kvm_cpu_cap_check_and_set(X86_FEATURE_INTEL_PT);
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007252
Sean Christopherson90d2f602020-03-02 15:56:47 -08007253 if (vmx_umip_emulated())
7254 kvm_cpu_cap_set(X86_FEATURE_UMIP);
7255
Sean Christophersonb3d895d52020-03-02 15:56:44 -08007256 /* CPUID 0xD.1 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01007257 supported_xss = 0;
Sean Christophersonbecdad82020-09-23 09:50:45 -07007258 if (!cpu_has_vmx_xsaves())
Sean Christophersonb3d895d52020-03-02 15:56:44 -08007259 kvm_cpu_cap_clear(X86_FEATURE_XSAVES);
7260
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007261 /* CPUID 0x80000001 */
7262 if (!cpu_has_vmx_rdtscp())
7263 kvm_cpu_cap_clear(X86_FEATURE_RDTSCP);
Maxim Levitsky0abcc8f2020-05-23 19:14:54 +03007264
Sean Christophersonbecdad82020-09-23 09:50:45 -07007265 if (cpu_has_vmx_waitpkg())
Maxim Levitsky0abcc8f2020-05-23 19:14:54 +03007266 kvm_cpu_cap_check_and_set(X86_FEATURE_WAITPKG);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007267}
7268
Sean Christophersond264ee02018-08-27 15:21:12 -07007269static void vmx_request_immediate_exit(struct kvm_vcpu *vcpu)
7270{
7271 to_vmx(vcpu)->req_immediate_exit = true;
7272}
7273
Oliver Upton35a57132020-02-04 15:26:31 -08007274static int vmx_check_intercept_io(struct kvm_vcpu *vcpu,
7275 struct x86_instruction_info *info)
7276{
7277 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7278 unsigned short port;
7279 bool intercept;
7280 int size;
7281
7282 if (info->intercept == x86_intercept_in ||
7283 info->intercept == x86_intercept_ins) {
7284 port = info->src_val;
7285 size = info->dst_bytes;
7286 } else {
7287 port = info->dst_val;
7288 size = info->src_bytes;
7289 }
7290
7291 /*
7292 * If the 'use IO bitmaps' VM-execution control is 0, IO instruction
7293 * VM-exits depend on the 'unconditional IO exiting' VM-execution
7294 * control.
7295 *
7296 * Otherwise, IO instruction VM-exits are controlled by the IO bitmaps.
7297 */
7298 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
7299 intercept = nested_cpu_has(vmcs12,
7300 CPU_BASED_UNCOND_IO_EXITING);
7301 else
7302 intercept = nested_vmx_check_io_bitmaps(vcpu, port, size);
7303
Oliver Upton86f7e902020-02-29 11:30:14 -08007304 /* FIXME: produce nested vmexit and return X86EMUL_INTERCEPTED. */
Oliver Upton35a57132020-02-04 15:26:31 -08007305 return intercept ? X86EMUL_UNHANDLEABLE : X86EMUL_CONTINUE;
7306}
7307
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007308static int vmx_check_intercept(struct kvm_vcpu *vcpu,
7309 struct x86_instruction_info *info,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007310 enum x86_intercept_stage stage,
7311 struct x86_exception *exception)
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007312{
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007313 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007314
Oliver Upton35a57132020-02-04 15:26:31 -08007315 switch (info->intercept) {
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007316 /*
7317 * RDPID causes #UD if disabled through secondary execution controls.
7318 * Because it is marked as EmulateOnUD, we need to intercept it here.
7319 */
Oliver Upton35a57132020-02-04 15:26:31 -08007320 case x86_intercept_rdtscp:
Sean Christopherson7f3603b2020-09-23 09:50:47 -07007321 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_RDTSCP)) {
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007322 exception->vector = UD_VECTOR;
7323 exception->error_code_valid = false;
Oliver Upton35a57132020-02-04 15:26:31 -08007324 return X86EMUL_PROPAGATE_FAULT;
7325 }
7326 break;
7327
7328 case x86_intercept_in:
7329 case x86_intercept_ins:
7330 case x86_intercept_out:
7331 case x86_intercept_outs:
7332 return vmx_check_intercept_io(vcpu, info);
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007333
Oliver Upton86f7e902020-02-29 11:30:14 -08007334 case x86_intercept_lgdt:
7335 case x86_intercept_lidt:
7336 case x86_intercept_lldt:
7337 case x86_intercept_ltr:
7338 case x86_intercept_sgdt:
7339 case x86_intercept_sidt:
7340 case x86_intercept_sldt:
7341 case x86_intercept_str:
7342 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC))
7343 return X86EMUL_CONTINUE;
7344
7345 /* FIXME: produce nested vmexit and return X86EMUL_INTERCEPTED. */
7346 break;
7347
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007348 /* TODO: check more intercepts... */
Oliver Upton35a57132020-02-04 15:26:31 -08007349 default:
7350 break;
7351 }
7352
Paolo Bonzini07721fe2020-02-04 15:26:29 -08007353 return X86EMUL_UNHANDLEABLE;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007354}
7355
Yunhong Jiang64672c92016-06-13 14:19:59 -07007356#ifdef CONFIG_X86_64
7357/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
7358static inline int u64_shl_div_u64(u64 a, unsigned int shift,
7359 u64 divisor, u64 *result)
7360{
7361 u64 low = a << shift, high = a >> (64 - shift);
7362
7363 /* To avoid the overflow on divq */
7364 if (high >= divisor)
7365 return 1;
7366
7367 /* Low hold the result, high hold rem which is discarded */
7368 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
7369 "rm" (divisor), "0" (low), "1" (high));
7370 *result = low;
7371
7372 return 0;
7373}
7374
Sean Christophersonf9927982019-04-16 13:32:46 -07007375static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc,
7376 bool *expired)
Yunhong Jiang64672c92016-06-13 14:19:59 -07007377{
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007378 struct vcpu_vmx *vmx;
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007379 u64 tscl, guest_tscl, delta_tsc, lapic_timer_advance_cycles;
Sean Christopherson39497d72019-04-17 10:15:32 -07007380 struct kvm_timer *ktimer = &vcpu->arch.apic->lapic_timer;
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007381
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007382 vmx = to_vmx(vcpu);
7383 tscl = rdtsc();
7384 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
7385 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Sean Christopherson39497d72019-04-17 10:15:32 -07007386 lapic_timer_advance_cycles = nsec_to_cycles(vcpu,
7387 ktimer->timer_advance_ns);
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007388
7389 if (delta_tsc > lapic_timer_advance_cycles)
7390 delta_tsc -= lapic_timer_advance_cycles;
7391 else
7392 delta_tsc = 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007393
7394 /* Convert to host delta tsc if tsc scaling is enabled */
7395 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
Sean Christopherson0967fa12019-04-16 13:32:48 -07007396 delta_tsc && u64_shl_div_u64(delta_tsc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007397 kvm_tsc_scaling_ratio_frac_bits,
Sean Christopherson0967fa12019-04-16 13:32:48 -07007398 vcpu->arch.tsc_scaling_ratio, &delta_tsc))
Yunhong Jiang64672c92016-06-13 14:19:59 -07007399 return -ERANGE;
7400
7401 /*
7402 * If the delta tsc can't fit in the 32 bit after the multi shift,
7403 * we can't use the preemption timer.
7404 * It's possible that it fits on later vmentries, but checking
7405 * on every vmentry is costly so we just use an hrtimer.
7406 */
7407 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
7408 return -ERANGE;
7409
7410 vmx->hv_deadline_tsc = tscl + delta_tsc;
Sean Christophersonf9927982019-04-16 13:32:46 -07007411 *expired = !delta_tsc;
7412 return 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007413}
7414
7415static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
7416{
Sean Christophersonf459a702018-08-27 15:21:11 -07007417 to_vmx(vcpu)->hv_deadline_tsc = -1;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007418}
7419#endif
7420
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007421static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007422{
Wanpeng Lib31c1142018-03-12 04:53:04 -07007423 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007424 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007425}
7426
Kai Huang843e4332015-01-28 10:54:28 +08007427static void vmx_slot_enable_log_dirty(struct kvm *kvm,
7428 struct kvm_memory_slot *slot)
7429{
Jay Zhou3c9bd402020-02-27 09:32:27 +08007430 if (!kvm_dirty_log_manual_protect_and_init_set(kvm))
7431 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
Kai Huang843e4332015-01-28 10:54:28 +08007432 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
7433}
7434
7435static void vmx_slot_disable_log_dirty(struct kvm *kvm,
7436 struct kvm_memory_slot *slot)
7437{
7438 kvm_mmu_slot_set_dirty(kvm, slot);
7439}
7440
7441static void vmx_flush_log_dirty(struct kvm *kvm)
7442{
7443 kvm_flush_pml_buffers(kvm);
7444}
7445
7446static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
7447 struct kvm_memory_slot *memslot,
7448 gfn_t offset, unsigned long mask)
7449{
7450 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
7451}
7452
Yunhong Jiangbc225122016-06-13 14:19:58 -07007453static int vmx_pre_block(struct kvm_vcpu *vcpu)
7454{
7455 if (pi_pre_block(vcpu))
7456 return 1;
7457
Yunhong Jiang64672c92016-06-13 14:19:59 -07007458 if (kvm_lapic_hv_timer_in_use(vcpu))
7459 kvm_lapic_switch_to_sw_timer(vcpu);
7460
Yunhong Jiangbc225122016-06-13 14:19:58 -07007461 return 0;
7462}
7463
Yunhong Jiangbc225122016-06-13 14:19:58 -07007464static void vmx_post_block(struct kvm_vcpu *vcpu)
7465{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007466 if (kvm_x86_ops.set_hv_timer)
Yunhong Jiang64672c92016-06-13 14:19:59 -07007467 kvm_lapic_switch_to_hv_timer(vcpu);
7468
Yunhong Jiangbc225122016-06-13 14:19:58 -07007469 pi_post_block(vcpu);
7470}
7471
Ashok Rajc45dcc72016-06-22 14:59:56 +08007472static void vmx_setup_mce(struct kvm_vcpu *vcpu)
7473{
7474 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
7475 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007476 FEAT_CTL_LMCE_ENABLED;
Ashok Rajc45dcc72016-06-22 14:59:56 +08007477 else
7478 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007479 ~FEAT_CTL_LMCE_ENABLED;
Ashok Rajc45dcc72016-06-22 14:59:56 +08007480}
7481
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007482static int vmx_smi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Ladi Prosek72d7b372017-10-11 16:54:41 +02007483{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007484 /* we need a nested vmexit to enter SMM, postpone if run is pending */
7485 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007486 return -EBUSY;
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -04007487 return !is_smm(vcpu);
Ladi Prosek72d7b372017-10-11 16:54:41 +02007488}
7489
Ladi Prosek0234bf82017-10-11 16:54:40 +02007490static int vmx_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
7491{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007492 struct vcpu_vmx *vmx = to_vmx(vcpu);
7493
7494 vmx->nested.smm.guest_mode = is_guest_mode(vcpu);
7495 if (vmx->nested.smm.guest_mode)
7496 nested_vmx_vmexit(vcpu, -1, 0, 0);
7497
7498 vmx->nested.smm.vmxon = vmx->nested.vmxon;
7499 vmx->nested.vmxon = false;
Wanpeng Licaa057a2018-03-12 04:53:03 -07007500 vmx_clear_hlt(vcpu);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007501 return 0;
7502}
7503
Sean Christophersoned193212019-04-02 08:03:09 -07007504static int vmx_pre_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007505{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007506 struct vcpu_vmx *vmx = to_vmx(vcpu);
7507 int ret;
7508
7509 if (vmx->nested.smm.vmxon) {
7510 vmx->nested.vmxon = true;
7511 vmx->nested.smm.vmxon = false;
7512 }
7513
7514 if (vmx->nested.smm.guest_mode) {
Sean Christophersona633e412018-09-26 09:23:47 -07007515 ret = nested_vmx_enter_non_root_mode(vcpu, false);
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007516 if (ret)
7517 return ret;
7518
7519 vmx->nested.smm.guest_mode = false;
7520 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02007521 return 0;
7522}
7523
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007524static void enable_smi_window(struct kvm_vcpu *vcpu)
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007525{
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007526 /* RSM will cause a vmexit anyway. */
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007527}
7528
Liran Alon4b9852f2019-08-26 13:24:49 +03007529static bool vmx_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
7530{
7531 return to_vmx(vcpu)->nested.vmxon;
7532}
7533
Jim Mattson93dff2f2020-05-08 13:36:43 -07007534static void vmx_migrate_timers(struct kvm_vcpu *vcpu)
7535{
7536 if (is_guest_mode(vcpu)) {
7537 struct hrtimer *timer = &to_vmx(vcpu)->nested.preemption_timer;
7538
7539 if (hrtimer_try_to_cancel(timer) == 1)
7540 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
7541 }
7542}
7543
Sean Christopherson6e4fd062020-03-21 13:26:01 -07007544static void hardware_unsetup(void)
Sean Christophersona3203382018-12-03 13:53:11 -08007545{
7546 if (nested)
7547 nested_vmx_hardware_unsetup();
7548
7549 free_kvm_area();
7550}
7551
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007552static bool vmx_check_apicv_inhibit_reasons(ulong bit)
7553{
Suravee Suthikulpanitf4fdc0a2019-11-14 14:15:13 -06007554 ulong supported = BIT(APICV_INHIBIT_REASON_DISABLE) |
7555 BIT(APICV_INHIBIT_REASON_HYPERV);
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007556
7557 return supported & BIT(bit);
7558}
7559
Sean Christophersone286ac02020-03-21 13:26:02 -07007560static struct kvm_x86_ops vmx_x86_ops __initdata = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007561 .hardware_unsetup = hardware_unsetup,
Sean Christopherson484014f2020-03-21 13:25:57 -07007562
Avi Kivity6aa8b732006-12-10 02:21:36 -08007563 .hardware_enable = hardware_enable,
7564 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08007565 .cpu_has_accelerated_tpr = report_flexpriority,
Tom Lendackybc226f02018-05-10 22:06:39 +02007566 .has_emulated_msr = vmx_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007567
Sean Christopherson484014f2020-03-21 13:25:57 -07007568 .vm_size = sizeof(struct kvm_vmx),
Wanpeng Lib31c1142018-03-12 04:53:04 -07007569 .vm_init = vmx_vm_init,
7570
Avi Kivity6aa8b732006-12-10 02:21:36 -08007571 .vcpu_create = vmx_create_vcpu,
7572 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007573 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007574
Sean Christopherson6d6095b2018-07-23 12:32:44 -07007575 .prepare_guest_switch = vmx_prepare_switch_to_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007576 .vcpu_load = vmx_vcpu_load,
7577 .vcpu_put = vmx_vcpu_put,
7578
Paolo Bonzini69869822020-07-10 17:48:06 +02007579 .update_exception_bitmap = update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -06007580 .get_msr_feature = vmx_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007581 .get_msr = vmx_get_msr,
7582 .set_msr = vmx_set_msr,
7583 .get_segment_base = vmx_get_segment_base,
7584 .get_segment = vmx_get_segment,
7585 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007586 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007587 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
7588 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007589 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007590 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007591 .get_idt = vmx_get_idt,
7592 .set_idt = vmx_set_idt,
7593 .get_gdt = vmx_get_gdt,
7594 .set_gdt = vmx_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03007595 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007596 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007597 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007598 .get_rflags = vmx_get_rflags,
7599 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007600
Sean Christopherson77809382020-03-20 14:28:18 -07007601 .tlb_flush_all = vmx_flush_tlb_all,
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07007602 .tlb_flush_current = vmx_flush_tlb_current,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007603 .tlb_flush_gva = vmx_flush_tlb_gva,
Sean Christophersone64419d2020-03-20 14:28:10 -07007604 .tlb_flush_guest = vmx_flush_tlb_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007605
Avi Kivity6aa8b732006-12-10 02:21:36 -08007606 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02007607 .handle_exit = vmx_handle_exit,
Oliver Upton5ef8acb2020-02-07 02:36:07 -08007608 .skip_emulated_instruction = vmx_skip_emulated_instruction,
7609 .update_emulated_instruction = vmx_update_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007610 .set_interrupt_shadow = vmx_set_interrupt_shadow,
7611 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007612 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007613 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007614 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007615 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007616 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007617 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007618 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007619 .get_nmi_mask = vmx_get_nmi_mask,
7620 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007621 .enable_nmi_window = enable_nmi_window,
7622 .enable_irq_window = enable_irq_window,
7623 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007624 .set_virtual_apic_mode = vmx_set_virtual_apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +08007625 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007626 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007627 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +01007628 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007629 .check_apicv_inhibit_reasons = vmx_check_apicv_inhibit_reasons,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007630 .hwapic_irr_update = vmx_hwapic_irr_update,
7631 .hwapic_isr_update = vmx_hwapic_isr_update,
Liran Alone6c67d82018-09-04 10:56:52 +03007632 .guest_apic_has_interrupt = vmx_guest_apic_has_interrupt,
Yang Zhanga20ed542013-04-11 19:25:15 +08007633 .sync_pir_to_irr = vmx_sync_pir_to_irr,
7634 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007635 .dy_apicv_has_pending_interrupt = pi_has_pending_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007636
Izik Eiduscbc94022007-10-25 00:29:55 +02007637 .set_tss_addr = vmx_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007638 .set_identity_map_addr = vmx_set_identity_map_addr,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007639 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007640
Avi Kivity586f9602010-11-18 13:09:54 +02007641 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007642
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08007643 .vcpu_after_set_cpuid = vmx_vcpu_after_set_cpuid,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007644
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007645 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007646
Leonid Shatz326e7422018-11-06 12:14:25 +02007647 .write_l1_tsc_offset = vmx_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007648
Sean Christopherson484014f2020-03-21 13:25:57 -07007649 .load_mmu_pgd = vmx_load_mmu_pgd,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007650
7651 .check_intercept = vmx_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07007652 .handle_exit_irqoff = vmx_handle_exit_irqoff,
Jan Kiszkab6b8a142014-03-07 20:03:12 +01007653
Sean Christophersond264ee02018-08-27 15:21:12 -07007654 .request_immediate_exit = vmx_request_immediate_exit,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007655
7656 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +08007657
7658 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
7659 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
7660 .flush_log_dirty = vmx_flush_log_dirty,
7661 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Wei Huang25462f72015-06-19 15:45:05 +02007662
Feng Wubf9f6ac2015-09-18 22:29:55 +08007663 .pre_block = vmx_pre_block,
7664 .post_block = vmx_post_block,
7665
Wei Huang25462f72015-06-19 15:45:05 +02007666 .pmu_ops = &intel_pmu_ops,
Paolo Bonzini33b22172020-04-17 10:24:18 -04007667 .nested_ops = &vmx_nested_ops,
Feng Wuefc64402015-09-18 22:29:51 +08007668
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007669 .update_pi_irte = pi_update_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007670
7671#ifdef CONFIG_X86_64
7672 .set_hv_timer = vmx_set_hv_timer,
7673 .cancel_hv_timer = vmx_cancel_hv_timer,
7674#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +08007675
7676 .setup_mce = vmx_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007677
Ladi Prosek72d7b372017-10-11 16:54:41 +02007678 .smi_allowed = vmx_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007679 .pre_enter_smm = vmx_pre_enter_smm,
7680 .pre_leave_smm = vmx_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007681 .enable_smi_window = enable_smi_window,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007682
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007683 .can_emulate_instruction = vmx_can_emulate_instruction,
Liran Alon4b9852f2019-08-26 13:24:49 +03007684 .apic_init_signal_blocked = vmx_apic_init_signal_blocked,
Jim Mattson93dff2f2020-05-08 13:36:43 -07007685 .migrate_timers = vmx_migrate_timers,
Alexander Graf3eb90012020-09-25 16:34:20 +02007686
7687 .msr_filter_changed = vmx_msr_filter_changed,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007688};
7689
Avi Kivity6aa8b732006-12-10 02:21:36 -08007690static __init int hardware_setup(void)
7691{
7692 unsigned long host_bndcfgs;
7693 struct desc_ptr dt;
Sean Christopherson703c3352020-03-02 15:57:03 -08007694 int r, i, ept_lpage_level;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007695
Avi Kivity6aa8b732006-12-10 02:21:36 -08007696 store_idt(&dt);
7697 host_idt_base = dt.address;
7698
Sean Christopherson14a61b62020-09-23 11:04:08 -07007699 for (i = 0; i < ARRAY_SIZE(vmx_uret_msrs_list); ++i)
7700 kvm_define_user_return_msr(i, vmx_uret_msrs_list[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007701
7702 if (setup_vmcs_config(&vmcs_config, &vmx_capability) < 0)
7703 return -EIO;
7704
7705 if (boot_cpu_has(X86_FEATURE_NX))
7706 kvm_enable_efer_bits(EFER_NX);
7707
7708 if (boot_cpu_has(X86_FEATURE_MPX)) {
7709 rdmsrl(MSR_IA32_BNDCFGS, host_bndcfgs);
7710 WARN_ONCE(host_bndcfgs, "KVM: BNDCFGS in host will be lost");
7711 }
7712
Sean Christopherson7f5581f2020-03-02 15:56:24 -08007713 if (!cpu_has_vmx_mpx())
Sean Christophersoncfc48182020-03-02 15:56:23 -08007714 supported_xcr0 &= ~(XFEATURE_MASK_BNDREGS |
7715 XFEATURE_MASK_BNDCSR);
7716
Avi Kivity6aa8b732006-12-10 02:21:36 -08007717 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
7718 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
7719 enable_vpid = 0;
7720
7721 if (!cpu_has_vmx_ept() ||
7722 !cpu_has_vmx_ept_4levels() ||
7723 !cpu_has_vmx_ept_mt_wb() ||
7724 !cpu_has_vmx_invept_global())
7725 enable_ept = 0;
7726
7727 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
7728 enable_ept_ad_bits = 0;
7729
7730 if (!cpu_has_vmx_unrestricted_guest() || !enable_ept)
Avi Kivity873a7c42006-12-13 00:34:14 -08007731 enable_unrestricted_guest = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007732
7733 if (!cpu_has_vmx_flexpriority())
7734 flexpriority_enabled = 0;
7735
7736 if (!cpu_has_virtual_nmis())
7737 enable_vnmi = 0;
7738
7739 /*
7740 * set_apic_access_page_addr() is used to reload apic access
7741 * page upon invalidation. No need to do anything if not
7742 * using the APIC_ACCESS_ADDR VMCS field.
7743 */
7744 if (!flexpriority_enabled)
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007745 vmx_x86_ops.set_apic_access_page_addr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007746
7747 if (!cpu_has_vmx_tpr_shadow())
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007748 vmx_x86_ops.update_cr8_intercept = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007749
Avi Kivity6aa8b732006-12-10 02:21:36 -08007750#if IS_ENABLED(CONFIG_HYPERV)
7751 if (ms_hyperv.nested_features & HV_X64_NESTED_GUEST_MAPPING_FLUSH
7752 && enable_ept) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007753 vmx_x86_ops.tlb_remote_flush = hv_remote_flush_tlb;
7754 vmx_x86_ops.tlb_remote_flush_with_range =
Avi Kivity6aa8b732006-12-10 02:21:36 -08007755 hv_remote_flush_tlb_with_range;
7756 }
7757#endif
7758
7759 if (!cpu_has_vmx_ple()) {
7760 ple_gap = 0;
7761 ple_window = 0;
7762 ple_window_grow = 0;
7763 ple_window_max = 0;
7764 ple_window_shrink = 0;
7765 }
7766
7767 if (!cpu_has_vmx_apicv()) {
7768 enable_apicv = 0;
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007769 vmx_x86_ops.sync_pir_to_irr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007770 }
7771
7772 if (cpu_has_vmx_tsc_scaling()) {
7773 kvm_has_tsc_control = true;
7774 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
7775 kvm_tsc_scaling_ratio_frac_bits = 48;
7776 }
7777
7778 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
7779
7780 if (enable_ept)
7781 vmx_enable_tdp();
Sean Christopherson703c3352020-03-02 15:57:03 -08007782
7783 if (!enable_ept)
7784 ept_lpage_level = 0;
7785 else if (cpu_has_vmx_ept_1g_page())
Sean Christopherson3bae0452020-04-27 17:54:22 -07007786 ept_lpage_level = PG_LEVEL_1G;
Sean Christopherson703c3352020-03-02 15:57:03 -08007787 else if (cpu_has_vmx_ept_2m_page())
Sean Christopherson3bae0452020-04-27 17:54:22 -07007788 ept_lpage_level = PG_LEVEL_2M;
Sean Christopherson703c3352020-03-02 15:57:03 -08007789 else
Sean Christopherson3bae0452020-04-27 17:54:22 -07007790 ept_lpage_level = PG_LEVEL_4K;
Sean Christopherson83013052020-07-15 20:41:22 -07007791 kvm_configure_mmu(enable_ept, vmx_get_max_tdp_level(), ept_lpage_level);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007792
7793 /*
7794 * Only enable PML when hardware supports PML feature, and both EPT
7795 * and EPT A/D bit features are enabled -- PML depends on them to work.
7796 */
7797 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
7798 enable_pml = 0;
7799
7800 if (!enable_pml) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007801 vmx_x86_ops.slot_enable_log_dirty = NULL;
7802 vmx_x86_ops.slot_disable_log_dirty = NULL;
7803 vmx_x86_ops.flush_log_dirty = NULL;
7804 vmx_x86_ops.enable_log_dirty_pt_masked = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007805 }
7806
7807 if (!cpu_has_vmx_preemption_timer())
7808 enable_preemption_timer = false;
7809
7810 if (enable_preemption_timer) {
7811 u64 use_timer_freq = 5000ULL * 1000 * 1000;
7812 u64 vmx_msr;
7813
7814 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
7815 cpu_preemption_timer_multi =
7816 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
7817
7818 if (tsc_khz)
7819 use_timer_freq = (u64)tsc_khz * 1000;
7820 use_timer_freq >>= cpu_preemption_timer_multi;
7821
7822 /*
7823 * KVM "disables" the preemption timer by setting it to its max
7824 * value. Don't use the timer if it might cause spurious exits
7825 * at a rate faster than 0.1 Hz (of uninterrupted guest time).
7826 */
7827 if (use_timer_freq > 0xffffffffu / 10)
7828 enable_preemption_timer = false;
7829 }
7830
7831 if (!enable_preemption_timer) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007832 vmx_x86_ops.set_hv_timer = NULL;
7833 vmx_x86_ops.cancel_hv_timer = NULL;
7834 vmx_x86_ops.request_immediate_exit = __kvm_request_immediate_exit;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007835 }
7836
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007837 kvm_set_posted_intr_wakeup_handler(pi_wakeup_handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007838
7839 kvm_mce_cap_supported |= MCG_LMCE_P;
7840
7841 if (pt_mode != PT_MODE_SYSTEM && pt_mode != PT_MODE_HOST_GUEST)
7842 return -EINVAL;
7843 if (!enable_ept || !cpu_has_vmx_intel_pt())
7844 pt_mode = PT_MODE_SYSTEM;
7845
7846 if (nested) {
7847 nested_vmx_setup_ctls_msrs(&vmcs_config.nested,
7848 vmx_capability.ept);
7849
Sean Christopherson6c1c6e52020-05-06 13:46:53 -07007850 r = nested_vmx_hardware_setup(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007851 if (r)
7852 return r;
7853 }
7854
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007855 vmx_set_cpu_caps();
Sean Christopherson66a69502020-03-02 15:56:41 -08007856
Avi Kivity6aa8b732006-12-10 02:21:36 -08007857 r = alloc_kvm_area();
7858 if (r)
7859 nested_vmx_hardware_unsetup();
7860 return r;
7861}
7862
Sean Christophersond008dfd2020-03-21 13:25:56 -07007863static struct kvm_x86_init_ops vmx_init_ops __initdata = {
7864 .cpu_has_kvm_support = cpu_has_kvm_support,
7865 .disabled_by_bios = vmx_disabled_by_bios,
7866 .check_processor_compatibility = vmx_check_processor_compat,
7867 .hardware_setup = hardware_setup,
7868
7869 .runtime_ops = &vmx_x86_ops,
7870};
7871
Avi Kivity6aa8b732006-12-10 02:21:36 -08007872static void vmx_cleanup_l1d_flush(void)
7873{
7874 if (vmx_l1d_flush_pages) {
7875 free_pages((unsigned long)vmx_l1d_flush_pages, L1D_CACHE_ORDER);
7876 vmx_l1d_flush_pages = NULL;
7877 }
7878 /* Restore state so sysfs ignores VMX */
7879 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO;
7880}
7881
7882static void vmx_exit(void)
7883{
7884#ifdef CONFIG_KEXEC_CORE
7885 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
7886 synchronize_rcu();
7887#endif
7888
7889 kvm_exit();
7890
7891#if IS_ENABLED(CONFIG_HYPERV)
7892 if (static_branch_unlikely(&enable_evmcs)) {
7893 int cpu;
7894 struct hv_vp_assist_page *vp_ap;
7895 /*
7896 * Reset everything to support using non-enlightened VMCS
7897 * access later (e.g. when we reload the module with
7898 * enlightened_vmcs=0)
7899 */
7900 for_each_online_cpu(cpu) {
7901 vp_ap = hv_get_vp_assist_page(cpu);
7902
7903 if (!vp_ap)
7904 continue;
7905
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08007906 vp_ap->nested_control.features.directhypercall = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007907 vp_ap->current_nested_vmcs = 0;
7908 vp_ap->enlighten_vmentry = 0;
7909 }
7910
7911 static_branch_disable(&enable_evmcs);
7912 }
7913#endif
7914 vmx_cleanup_l1d_flush();
7915}
7916module_exit(vmx_exit);
7917
7918static int __init vmx_init(void)
7919{
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02007920 int r, cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007921
7922#if IS_ENABLED(CONFIG_HYPERV)
7923 /*
7924 * Enlightened VMCS usage should be recommended and the host needs
7925 * to support eVMCS v1 or above. We can also disable eVMCS support
7926 * with module parameter.
7927 */
7928 if (enlightened_vmcs &&
7929 ms_hyperv.hints & HV_X64_ENLIGHTENED_VMCS_RECOMMENDED &&
7930 (ms_hyperv.nested_features & HV_X64_ENLIGHTENED_VMCS_VERSION) >=
7931 KVM_EVMCS_VERSION) {
7932 int cpu;
7933
7934 /* Check that we have assist pages on all online CPUs */
7935 for_each_online_cpu(cpu) {
7936 if (!hv_get_vp_assist_page(cpu)) {
7937 enlightened_vmcs = false;
7938 break;
7939 }
7940 }
7941
7942 if (enlightened_vmcs) {
7943 pr_info("KVM: vmx: using Hyper-V Enlightened VMCS\n");
7944 static_branch_enable(&enable_evmcs);
7945 }
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08007946
7947 if (ms_hyperv.nested_features & HV_X64_NESTED_DIRECT_FLUSH)
7948 vmx_x86_ops.enable_direct_tlbflush
7949 = hv_enable_direct_tlbflush;
7950
Avi Kivity6aa8b732006-12-10 02:21:36 -08007951 } else {
7952 enlightened_vmcs = false;
7953 }
7954#endif
7955
Sean Christophersond008dfd2020-03-21 13:25:56 -07007956 r = kvm_init(&vmx_init_ops, sizeof(struct vcpu_vmx),
Avi Kivity6aa8b732006-12-10 02:21:36 -08007957 __alignof__(struct vcpu_vmx), THIS_MODULE);
7958 if (r)
7959 return r;
7960
7961 /*
7962 * Must be called after kvm_init() so enable_ept is properly set
7963 * up. Hand the parameter mitigation value in which was stored in
7964 * the pre module init parser. If no parameter was given, it will
7965 * contain 'auto' which will be turned into the default 'cond'
7966 * mitigation mode.
7967 */
Waiman Long19a36d32019-08-26 15:30:23 -04007968 r = vmx_setup_l1d_flush(vmentry_l1d_flush_param);
7969 if (r) {
7970 vmx_exit();
7971 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007972 }
7973
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02007974 for_each_possible_cpu(cpu) {
7975 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007976
7977 pi_init(cpu);
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02007978 }
7979
Avi Kivity6aa8b732006-12-10 02:21:36 -08007980#ifdef CONFIG_KEXEC_CORE
7981 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
7982 crash_vmclear_local_loaded_vmcss);
7983#endif
7984 vmx_check_vmcs12_offsets();
7985
Mohammed Gamal3edd6832020-07-10 17:48:11 +02007986 /*
7987 * Intel processors don't have problems with
7988 * GUEST_MAXPHYADDR < HOST_MAXPHYADDR so enable
7989 * it for VMX by default
7990 */
7991 allow_smaller_maxphyaddr = true;
7992
Avi Kivity6aa8b732006-12-10 02:21:36 -08007993 return 0;
7994}
7995module_init(vmx_init);