blob: 91e9a3657c4bd603c53b4be263d5a091989111c2 [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/*
149 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
150 * ple_gap: upper bound on the amount of time between two successive
151 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500152 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800153 * ple_window: upper bound on the amount of time a guest is allowed to execute
154 * in a PAUSE loop. Tests indicate that most spinlocks are held for
155 * less than 2^12 cycles
156 * Time is measured based on a counter that runs at the same rate as the TSC,
157 * refer SDM volume 3b section 21.6.13 & 22.1.3.
158 */
Babu Mogerc8e88712018-03-16 16:37:24 -0400159static unsigned int ple_gap = KVM_DEFAULT_PLE_GAP;
Luiz Capitulinoa87c99e2018-11-23 12:02:14 -0500160module_param(ple_gap, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200161
Babu Moger7fbc85a2018-03-16 16:37:22 -0400162static unsigned int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
163module_param(ple_window, uint, 0444);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800164
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200165/* Default doubles per-vcpu window every exit. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400166static unsigned int ple_window_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400167module_param(ple_window_grow, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200168
169/* Default resets per-vcpu window every exit to ple_window. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400170static unsigned int ple_window_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400171module_param(ple_window_shrink, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200172
173/* Default is to compute the maximum so we can never overflow. */
Babu Moger7fbc85a2018-03-16 16:37:22 -0400174static unsigned int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
175module_param(ple_window_max, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200176
Chao Pengf99e3da2018-10-24 16:05:10 +0800177/* Default is SYSTEM mode, 1 for host-guest mode */
178int __read_mostly pt_mode = PT_MODE_SYSTEM;
179module_param(pt_mode, int, S_IRUGO);
180
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200181static DEFINE_STATIC_KEY_FALSE(vmx_l1d_should_flush);
Nicolai Stange427362a2018-07-21 22:25:00 +0200182static DEFINE_STATIC_KEY_FALSE(vmx_l1d_flush_cond);
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200183static DEFINE_MUTEX(vmx_l1d_flush_mutex);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200184
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200185/* Storage for pre module init parameter parsing */
186static enum vmx_l1d_flush_state __read_mostly vmentry_l1d_flush_param = VMENTER_L1D_FLUSH_AUTO;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200187
188static const struct {
189 const char *option;
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200190 bool for_parse;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200191} vmentry_l1d_param[] = {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200192 [VMENTER_L1D_FLUSH_AUTO] = {"auto", true},
193 [VMENTER_L1D_FLUSH_NEVER] = {"never", true},
194 [VMENTER_L1D_FLUSH_COND] = {"cond", true},
195 [VMENTER_L1D_FLUSH_ALWAYS] = {"always", true},
196 [VMENTER_L1D_FLUSH_EPT_DISABLED] = {"EPT disabled", false},
197 [VMENTER_L1D_FLUSH_NOT_REQUIRED] = {"not required", false},
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200198};
199
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200200#define L1D_CACHE_ORDER 4
201static void *vmx_l1d_flush_pages;
202
203static int vmx_setup_l1d_flush(enum vmx_l1d_flush_state l1tf)
204{
205 struct page *page;
Nicolai Stange288d1522018-07-18 19:07:38 +0200206 unsigned int i;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200207
Waiman Long19a36d32019-08-26 15:30:23 -0400208 if (!boot_cpu_has_bug(X86_BUG_L1TF)) {
209 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_NOT_REQUIRED;
210 return 0;
211 }
212
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200213 if (!enable_ept) {
214 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_EPT_DISABLED;
215 return 0;
216 }
217
Yi Wangd806afa2018-08-16 13:42:39 +0800218 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES)) {
219 u64 msr;
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200220
Yi Wangd806afa2018-08-16 13:42:39 +0800221 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, msr);
222 if (msr & ARCH_CAP_SKIP_VMENTRY_L1DFLUSH) {
223 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_NOT_REQUIRED;
224 return 0;
225 }
226 }
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200227
Jiri Kosinad90a7a02018-07-13 16:23:25 +0200228 /* If set to auto use the default l1tf mitigation method */
229 if (l1tf == VMENTER_L1D_FLUSH_AUTO) {
230 switch (l1tf_mitigation) {
231 case L1TF_MITIGATION_OFF:
232 l1tf = VMENTER_L1D_FLUSH_NEVER;
233 break;
234 case L1TF_MITIGATION_FLUSH_NOWARN:
235 case L1TF_MITIGATION_FLUSH:
236 case L1TF_MITIGATION_FLUSH_NOSMT:
237 l1tf = VMENTER_L1D_FLUSH_COND;
238 break;
239 case L1TF_MITIGATION_FULL:
240 case L1TF_MITIGATION_FULL_FORCE:
241 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
242 break;
243 }
244 } else if (l1tf_mitigation == L1TF_MITIGATION_FULL_FORCE) {
245 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
246 }
247
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200248 if (l1tf != VMENTER_L1D_FLUSH_NEVER && !vmx_l1d_flush_pages &&
249 !boot_cpu_has(X86_FEATURE_FLUSH_L1D)) {
Ben Gardon41836832019-02-11 11:02:52 -0800250 /*
251 * This allocation for vmx_l1d_flush_pages is not tied to a VM
252 * lifetime and so should not be charged to a memcg.
253 */
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200254 page = alloc_pages(GFP_KERNEL, L1D_CACHE_ORDER);
255 if (!page)
256 return -ENOMEM;
257 vmx_l1d_flush_pages = page_address(page);
Nicolai Stange288d1522018-07-18 19:07:38 +0200258
259 /*
260 * Initialize each page with a different pattern in
261 * order to protect against KSM in the nested
262 * virtualization case.
263 */
264 for (i = 0; i < 1u << L1D_CACHE_ORDER; ++i) {
265 memset(vmx_l1d_flush_pages + i * PAGE_SIZE, i + 1,
266 PAGE_SIZE);
267 }
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200268 }
269
270 l1tf_vmx_mitigation = l1tf;
271
Thomas Gleixner895ae472018-07-13 16:23:22 +0200272 if (l1tf != VMENTER_L1D_FLUSH_NEVER)
273 static_branch_enable(&vmx_l1d_should_flush);
274 else
275 static_branch_disable(&vmx_l1d_should_flush);
Thomas Gleixner4c6523e2018-07-13 16:23:20 +0200276
Nicolai Stange427362a2018-07-21 22:25:00 +0200277 if (l1tf == VMENTER_L1D_FLUSH_COND)
278 static_branch_enable(&vmx_l1d_flush_cond);
Thomas Gleixner895ae472018-07-13 16:23:22 +0200279 else
Nicolai Stange427362a2018-07-21 22:25:00 +0200280 static_branch_disable(&vmx_l1d_flush_cond);
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200281 return 0;
282}
283
284static int vmentry_l1d_flush_parse(const char *s)
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200285{
286 unsigned int i;
287
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200288 if (s) {
289 for (i = 0; i < ARRAY_SIZE(vmentry_l1d_param); i++) {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200290 if (vmentry_l1d_param[i].for_parse &&
291 sysfs_streq(s, vmentry_l1d_param[i].option))
292 return i;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200293 }
294 }
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200295 return -EINVAL;
296}
297
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200298static int vmentry_l1d_flush_set(const char *s, const struct kernel_param *kp)
299{
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200300 int l1tf, ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200301
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200302 l1tf = vmentry_l1d_flush_parse(s);
303 if (l1tf < 0)
304 return l1tf;
305
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200306 if (!boot_cpu_has(X86_BUG_L1TF))
307 return 0;
308
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200309 /*
310 * Has vmx_init() run already? If not then this is the pre init
311 * parameter parsing. In that case just store the value and let
312 * vmx_init() do the proper setup after enable_ept has been
313 * established.
314 */
315 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_AUTO) {
316 vmentry_l1d_flush_param = l1tf;
317 return 0;
318 }
319
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200320 mutex_lock(&vmx_l1d_flush_mutex);
321 ret = vmx_setup_l1d_flush(l1tf);
322 mutex_unlock(&vmx_l1d_flush_mutex);
323 return ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200324}
325
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200326static int vmentry_l1d_flush_get(char *s, const struct kernel_param *kp)
327{
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200328 if (WARN_ON_ONCE(l1tf_vmx_mitigation >= ARRAY_SIZE(vmentry_l1d_param)))
329 return sprintf(s, "???\n");
330
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200331 return sprintf(s, "%s\n", vmentry_l1d_param[l1tf_vmx_mitigation].option);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200332}
333
334static const struct kernel_param_ops vmentry_l1d_flush_ops = {
335 .set = vmentry_l1d_flush_set,
336 .get = vmentry_l1d_flush_get,
337};
Thomas Gleixner895ae472018-07-13 16:23:22 +0200338module_param_cb(vmentry_l1d_flush, &vmentry_l1d_flush_ops, NULL, 0644);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200339
Gleb Natapovd99e4152012-12-20 16:57:45 +0200340static u32 vmx_segment_access_rights(struct kvm_segment *var);
Yi Wang1e4329ee2018-11-08 11:22:21 +0800341static __always_inline void vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
Ashok Raj15d45072018-02-01 22:59:43 +0100342 u32 msr, int type);
Avi Kivity75880a02007-06-20 11:20:04 +0300343
Sean Christopherson453eafb2018-12-20 12:25:17 -0800344void vmx_vmexit(void);
345
Sean Christopherson52a9fcb2019-07-19 13:41:07 -0700346#define vmx_insn_failed(fmt...) \
347do { \
348 WARN_ONCE(1, fmt); \
349 pr_warn_ratelimited(fmt); \
350} while (0)
351
Sean Christopherson6e202092019-07-19 13:41:08 -0700352asmlinkage void vmread_error(unsigned long field, bool fault)
353{
354 if (fault)
355 kvm_spurious_fault();
356 else
357 vmx_insn_failed("kvm: vmread failed: field=%lx\n", field);
358}
359
Sean Christopherson52a9fcb2019-07-19 13:41:07 -0700360noinline void vmwrite_error(unsigned long field, unsigned long value)
361{
362 vmx_insn_failed("kvm: vmwrite failed: field=%lx val=%lx err=%d\n",
363 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
364}
365
366noinline void vmclear_error(struct vmcs *vmcs, u64 phys_addr)
367{
368 vmx_insn_failed("kvm: vmclear failed: %p/%llx\n", vmcs, phys_addr);
369}
370
371noinline void vmptrld_error(struct vmcs *vmcs, u64 phys_addr)
372{
373 vmx_insn_failed("kvm: vmptrld failed: %p/%llx\n", vmcs, phys_addr);
374}
375
376noinline void invvpid_error(unsigned long ext, u16 vpid, gva_t gva)
377{
378 vmx_insn_failed("kvm: invvpid failed: ext=0x%lx vpid=%u gva=0x%lx\n",
379 ext, vpid, gva);
380}
381
382noinline void invept_error(unsigned long ext, u64 eptp, gpa_t gpa)
383{
384 vmx_insn_failed("kvm: invept failed: ext=0x%lx eptp=%llx gpa=0x%llx\n",
385 ext, eptp, gpa);
386}
387
Avi Kivity6aa8b732006-12-10 02:21:36 -0800388static DEFINE_PER_CPU(struct vmcs *, vmxarea);
Sean Christopherson75edce82018-12-03 13:53:06 -0800389DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300390/*
391 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
392 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
393 */
394static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800395
Sheng Yang2384d2b2008-01-17 15:14:33 +0800396static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
397static DEFINE_SPINLOCK(vmx_vpid_lock);
398
Sean Christopherson3077c192018-12-03 13:53:02 -0800399struct vmcs_config vmcs_config;
400struct vmx_capability vmx_capability;
Sheng Yangd56f5462008-04-25 10:13:16 +0800401
Avi Kivity6aa8b732006-12-10 02:21:36 -0800402#define VMX_SEGMENT_FIELD(seg) \
403 [VCPU_SREG_##seg] = { \
404 .selector = GUEST_##seg##_SELECTOR, \
405 .base = GUEST_##seg##_BASE, \
406 .limit = GUEST_##seg##_LIMIT, \
407 .ar_bytes = GUEST_##seg##_AR_BYTES, \
408 }
409
Mathias Krause772e0312012-08-30 01:30:19 +0200410static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800411 unsigned selector;
412 unsigned base;
413 unsigned limit;
414 unsigned ar_bytes;
415} kvm_vmx_segment_fields[] = {
416 VMX_SEGMENT_FIELD(CS),
417 VMX_SEGMENT_FIELD(DS),
418 VMX_SEGMENT_FIELD(ES),
419 VMX_SEGMENT_FIELD(FS),
420 VMX_SEGMENT_FIELD(GS),
421 VMX_SEGMENT_FIELD(SS),
422 VMX_SEGMENT_FIELD(TR),
423 VMX_SEGMENT_FIELD(LDTR),
424};
425
Sean Christophersonec0241f2020-04-15 13:34:52 -0700426static inline void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
427{
428 vmx->segment_cache.bitmask = 0;
429}
430
Sean Christopherson23420802019-04-19 22:50:57 -0700431static unsigned long host_idt_base;
Avi Kivity26bb0982009-09-07 11:14:12 +0300432
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300433/*
Jim Mattson898a8112018-12-05 15:28:59 -0800434 * Though SYSCALL is only supported in 64-bit mode on Intel CPUs, kvm
435 * will emulate SYSCALL in legacy mode if the vendor string in guest
436 * CPUID.0:{EBX,ECX,EDX} is "AuthenticAMD" or "AMDisbetter!" To
437 * support this emulation, IA32_STAR must always be included in
438 * vmx_msr_index[], even in i386 builds.
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300439 */
Sean Christophersoncf3646e2018-12-03 13:53:15 -0800440const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800441#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300442 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800443#endif
Brian Gerst8c065852010-07-17 09:03:26 -0400444 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Paolo Bonzinic11f83e2019-11-18 12:23:00 -0500445 MSR_IA32_TSX_CTRL,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800446};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800447
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +0100448#if IS_ENABLED(CONFIG_HYPERV)
449static bool __read_mostly enlightened_vmcs = true;
450module_param(enlightened_vmcs, bool, 0444);
451
Tianyu Lan877ad952018-07-19 08:40:23 +0000452/* check_ept_pointer() should be under protection of ept_pointer_lock. */
453static void check_ept_pointer_match(struct kvm *kvm)
454{
455 struct kvm_vcpu *vcpu;
456 u64 tmp_eptp = INVALID_PAGE;
457 int i;
458
459 kvm_for_each_vcpu(i, vcpu, kvm) {
460 if (!VALID_PAGE(tmp_eptp)) {
461 tmp_eptp = to_vmx(vcpu)->ept_pointer;
462 } else if (tmp_eptp != to_vmx(vcpu)->ept_pointer) {
463 to_kvm_vmx(kvm)->ept_pointers_match
464 = EPT_POINTERS_MISMATCH;
465 return;
466 }
467 }
468
469 to_kvm_vmx(kvm)->ept_pointers_match = EPT_POINTERS_MATCH;
470}
471
Yi Wang8997f652019-01-21 15:27:05 +0800472static int kvm_fill_hv_flush_list_func(struct hv_guest_mapping_flush_list *flush,
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800473 void *data)
474{
475 struct kvm_tlb_range *range = data;
476
477 return hyperv_fill_flush_guest_mapping_list(flush, range->start_gfn,
478 range->pages);
479}
480
481static inline int __hv_remote_flush_tlb_with_range(struct kvm *kvm,
482 struct kvm_vcpu *vcpu, struct kvm_tlb_range *range)
483{
484 u64 ept_pointer = to_vmx(vcpu)->ept_pointer;
485
486 /*
487 * FLUSH_GUEST_PHYSICAL_ADDRESS_SPACE hypercall needs address
488 * of the base of EPT PML4 table, strip off EPT configuration
489 * information.
490 */
491 if (range)
492 return hyperv_flush_guest_mapping_range(ept_pointer & PAGE_MASK,
493 kvm_fill_hv_flush_list_func, (void *)range);
494 else
495 return hyperv_flush_guest_mapping(ept_pointer & PAGE_MASK);
496}
497
498static int hv_remote_flush_tlb_with_range(struct kvm *kvm,
499 struct kvm_tlb_range *range)
Tianyu Lan877ad952018-07-19 08:40:23 +0000500{
Lan Tianyua5c214d2018-10-13 22:54:05 +0800501 struct kvm_vcpu *vcpu;
Lan Tianyub7c1c222019-01-04 15:20:44 +0800502 int ret = 0, i;
Tianyu Lan877ad952018-07-19 08:40:23 +0000503
504 spin_lock(&to_kvm_vmx(kvm)->ept_pointer_lock);
505
506 if (to_kvm_vmx(kvm)->ept_pointers_match == EPT_POINTERS_CHECK)
507 check_ept_pointer_match(kvm);
508
509 if (to_kvm_vmx(kvm)->ept_pointers_match != EPT_POINTERS_MATCH) {
Lan Tianyu53963a72018-12-06 15:34:36 +0800510 kvm_for_each_vcpu(i, vcpu, kvm) {
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800511 /* If ept_pointer is invalid pointer, bypass flush request. */
512 if (VALID_PAGE(to_vmx(vcpu)->ept_pointer))
513 ret |= __hv_remote_flush_tlb_with_range(
514 kvm, vcpu, range);
Lan Tianyu53963a72018-12-06 15:34:36 +0800515 }
Lan Tianyua5c214d2018-10-13 22:54:05 +0800516 } else {
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800517 ret = __hv_remote_flush_tlb_with_range(kvm,
518 kvm_get_vcpu(kvm, 0), range);
Tianyu Lan877ad952018-07-19 08:40:23 +0000519 }
Tianyu Lan877ad952018-07-19 08:40:23 +0000520
Tianyu Lan877ad952018-07-19 08:40:23 +0000521 spin_unlock(&to_kvm_vmx(kvm)->ept_pointer_lock);
522 return ret;
523}
Lan Tianyu1f3a3e42018-12-06 21:21:07 +0800524static int hv_remote_flush_tlb(struct kvm *kvm)
525{
526 return hv_remote_flush_tlb_with_range(kvm, NULL);
527}
528
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800529static int hv_enable_direct_tlbflush(struct kvm_vcpu *vcpu)
530{
531 struct hv_enlightened_vmcs *evmcs;
532 struct hv_partition_assist_pg **p_hv_pa_pg =
533 &vcpu->kvm->arch.hyperv.hv_pa_pg;
534 /*
535 * Synthetic VM-Exit is not enabled in current code and so All
536 * evmcs in singe VM shares same assist page.
537 */
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200538 if (!*p_hv_pa_pg)
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800539 *p_hv_pa_pg = kzalloc(PAGE_SIZE, GFP_KERNEL);
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200540
541 if (!*p_hv_pa_pg)
542 return -ENOMEM;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800543
544 evmcs = (struct hv_enlightened_vmcs *)to_vmx(vcpu)->loaded_vmcs->vmcs;
545
546 evmcs->partition_assist_page =
547 __pa(*p_hv_pa_pg);
Vitaly Kuznetsovcab01852019-09-25 15:30:35 +0200548 evmcs->hv_vm_id = (unsigned long)vcpu->kvm;
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800549 evmcs->hv_enlightenments_control.nested_flush_hypercall = 1;
550
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800551 return 0;
552}
553
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +0100554#endif /* IS_ENABLED(CONFIG_HYPERV) */
555
Yunhong Jiang64672c92016-06-13 14:19:59 -0700556/*
557 * Comment's format: document - errata name - stepping - processor name.
558 * Refer from
559 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
560 */
561static u32 vmx_preemption_cpu_tfms[] = {
562/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
5630x000206E6,
564/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
565/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
566/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
5670x00020652,
568/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
5690x00020655,
570/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
571/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
572/*
573 * 320767.pdf - AAP86 - B1 -
574 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
575 */
5760x000106E5,
577/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
5780x000106A0,
579/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
5800x000106A1,
581/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
5820x000106A4,
583 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
584 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
585 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
5860x000106A5,
Wei Huang3d82c562018-12-03 14:13:32 -0600587 /* Xeon E3-1220 V2 */
5880x000306A8,
Yunhong Jiang64672c92016-06-13 14:19:59 -0700589};
590
591static inline bool cpu_has_broken_vmx_preemption_timer(void)
592{
593 u32 eax = cpuid_eax(0x00000001), i;
594
595 /* Clear the reserved bits */
596 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +0000597 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -0700598 if (eax == vmx_preemption_cpu_tfms[i])
599 return true;
600
601 return false;
602}
603
Paolo Bonzini35754c92015-07-29 12:05:37 +0200604static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800605{
Paolo Bonzini35754c92015-07-29 12:05:37 +0200606 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800607}
608
Sheng Yang04547152009-04-01 15:52:31 +0800609static inline bool report_flexpriority(void)
610{
611 return flexpriority_enabled;
612}
613
Sean Christopherson97b7ead2018-12-03 13:53:16 -0800614static inline int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800615{
616 int i;
617
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400618 for (i = 0; i < vmx->nmsrs; ++i)
Sean Christophersoneb3db1b2020-09-23 11:03:58 -0700619 if (vmx_msr_index[vmx->guest_uret_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300620 return i;
621 return -1;
622}
623
Sean Christophersoneb3db1b2020-09-23 11:03:58 -0700624struct vmx_uret_msr *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300625{
626 int i;
627
Rusty Russell8b9cf982007-07-30 16:31:43 +1000628 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300629 if (i >= 0)
Sean Christophersoneb3db1b2020-09-23 11:03:58 -0700630 return &vmx->guest_uret_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000631 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800632}
633
Sean Christophersoneb3db1b2020-09-23 11:03:58 -0700634static int vmx_set_guest_msr(struct vcpu_vmx *vmx, struct vmx_uret_msr *msr, u64 data)
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500635{
636 int ret = 0;
637
638 u64 old_msr_data = msr->data;
639 msr->data = data;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -0700640 if (msr - vmx->guest_uret_msrs < vmx->save_nmsrs) {
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500641 preempt_disable();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700642 ret = kvm_set_user_return_msr(msr->index, msr->data, msr->mask);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -0500643 preempt_enable();
644 if (ret)
645 msr->data = old_msr_data;
646 }
647 return ret;
648}
649
Dave Young2965faa2015-09-09 15:38:55 -0700650#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800651static void crash_vmclear_local_loaded_vmcss(void)
652{
653 int cpu = raw_smp_processor_id();
654 struct loaded_vmcs *v;
655
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800656 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
657 loaded_vmcss_on_cpu_link)
658 vmcs_clear(v->vmcs);
659}
Dave Young2965faa2015-09-09 15:38:55 -0700660#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +0800661
Nadav Har'Eld462b812011-05-24 15:26:10 +0300662static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800663{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300664 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800665 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800666
Nadav Har'Eld462b812011-05-24 15:26:10 +0300667 if (loaded_vmcs->cpu != cpu)
668 return; /* vcpu migration can race with cpu offline */
669 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800670 per_cpu(current_vmcs, cpu) = NULL;
Sean Christopherson31603d42020-03-21 12:37:49 -0700671
672 vmcs_clear(loaded_vmcs->vmcs);
673 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
674 vmcs_clear(loaded_vmcs->shadow_vmcs);
675
Nadav Har'Eld462b812011-05-24 15:26:10 +0300676 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +0800677
678 /*
Sean Christopherson31603d42020-03-21 12:37:49 -0700679 * Ensure all writes to loaded_vmcs, including deleting it from its
680 * current percpu list, complete before setting loaded_vmcs->vcpu to
681 * -1, otherwise a different cpu can see vcpu == -1 first and add
682 * loaded_vmcs to its percpu list before it's deleted from this cpu's
683 * list. Pairs with the smp_rmb() in vmx_vcpu_load_vmcs().
Xiao Guangrong5a560f82012-11-28 20:54:14 +0800684 */
685 smp_wmb();
686
Sean Christopherson31603d42020-03-21 12:37:49 -0700687 loaded_vmcs->cpu = -1;
688 loaded_vmcs->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800689}
690
Sean Christopherson89b0c9f2018-12-03 13:53:07 -0800691void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800692{
Xiao Guangronge6c7d322012-11-28 20:53:15 +0800693 int cpu = loaded_vmcs->cpu;
694
695 if (cpu != -1)
696 smp_call_function_single(cpu,
697 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800698}
699
Avi Kivity2fb92db2011-04-27 19:42:18 +0300700static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
701 unsigned field)
702{
703 bool ret;
704 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
705
Sean Christophersoncb3c1e22019-09-27 14:45:22 -0700706 if (!kvm_register_is_available(&vmx->vcpu, VCPU_EXREG_SEGMENTS)) {
707 kvm_register_mark_available(&vmx->vcpu, VCPU_EXREG_SEGMENTS);
Avi Kivity2fb92db2011-04-27 19:42:18 +0300708 vmx->segment_cache.bitmask = 0;
709 }
710 ret = vmx->segment_cache.bitmask & mask;
711 vmx->segment_cache.bitmask |= mask;
712 return ret;
713}
714
715static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
716{
717 u16 *p = &vmx->segment_cache.seg[seg].selector;
718
719 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
720 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
721 return *p;
722}
723
724static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
725{
726 ulong *p = &vmx->segment_cache.seg[seg].base;
727
728 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
729 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
730 return *p;
731}
732
733static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
734{
735 u32 *p = &vmx->segment_cache.seg[seg].limit;
736
737 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
738 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
739 return *p;
740}
741
742static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
743{
744 u32 *p = &vmx->segment_cache.seg[seg].ar;
745
746 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
747 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
748 return *p;
749}
750
Sean Christopherson97b7ead2018-12-03 13:53:16 -0800751void update_exception_bitmap(struct kvm_vcpu *vcpu)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300752{
753 u32 eb;
754
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100755 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -0800756 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Liran Alon9e869482018-03-12 13:12:51 +0200757 /*
758 * Guest access to VMware backdoor ports could legitimately
759 * trigger #GP because of TSS I/O permission bitmap.
760 * We intercept those #GP and allow access to them anyway
761 * as VMware does.
762 */
763 if (enable_vmware_backdoor)
764 eb |= (1u << GP_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100765 if ((vcpu->guest_debug &
766 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
767 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
768 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300769 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300770 eb = ~0;
Paolo Bonzinia0c13432020-07-10 17:48:08 +0200771 if (!vmx_need_pf_intercept(vcpu))
Miaohe Lin49f933d2020-02-27 11:20:54 +0800772 eb &= ~(1u << PF_VECTOR);
Nadav Har'El36cf24e2011-05-25 23:15:08 +0300773
774 /* When we are running a nested L2 guest and L1 specified for it a
775 * certain exception bitmap, we must trap the same exceptions and pass
776 * them to L1. When running L2, we will only handle the exceptions
777 * specified above if L1 did not want them.
778 */
779 if (is_guest_mode(vcpu))
780 eb |= get_vmcs12(vcpu)->exception_bitmap;
781
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300782 vmcs_write32(EXCEPTION_BITMAP, eb);
783}
784
Ashok Raj15d45072018-02-01 22:59:43 +0100785/*
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100786 * Check if MSR is intercepted for currently loaded MSR bitmap.
787 */
788static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr)
789{
790 unsigned long *msr_bitmap;
791 int f = sizeof(unsigned long);
792
793 if (!cpu_has_vmx_msr_bitmap())
794 return true;
795
796 msr_bitmap = to_vmx(vcpu)->loaded_vmcs->msr_bitmap;
797
798 if (msr <= 0x1fff) {
799 return !!test_bit(msr, msr_bitmap + 0x800 / f);
800 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
801 msr &= 0x1fff;
802 return !!test_bit(msr, msr_bitmap + 0xc00 / f);
803 }
804
805 return true;
806}
807
Gleb Natapov2961e8762013-11-25 15:37:13 +0200808static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
809 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200810{
Gleb Natapov2961e8762013-11-25 15:37:13 +0200811 vm_entry_controls_clearbit(vmx, entry);
812 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200813}
814
Sean Christophersona128a932020-09-23 11:03:57 -0700815int vmx_find_loadstore_msr_slot(struct vmx_msrs *m, u32 msr)
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400816{
817 unsigned int i;
818
819 for (i = 0; i < m->nr; ++i) {
820 if (m->val[i].index == msr)
821 return i;
822 }
823 return -ENOENT;
824}
825
Avi Kivity61d2ef22010-04-28 16:40:38 +0300826static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
827{
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400828 int i;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300829 struct msr_autoload *m = &vmx->msr_autoload;
830
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200831 switch (msr) {
832 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800833 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200834 clear_atomic_switch_msr_special(vmx,
835 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200836 VM_EXIT_LOAD_IA32_EFER);
837 return;
838 }
839 break;
840 case MSR_CORE_PERF_GLOBAL_CTRL:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800841 if (cpu_has_load_perf_global_ctrl()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200842 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200843 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
844 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
845 return;
846 }
847 break;
Avi Kivity110312c2010-12-21 12:54:20 +0200848 }
Sean Christophersona128a932020-09-23 11:03:57 -0700849 i = vmx_find_loadstore_msr_slot(&m->guest, msr);
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400850 if (i < 0)
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400851 goto skip_guest;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400852 --m->guest.nr;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400853 m->guest.val[i] = m->guest.val[m->guest.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400854 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Avi Kivity110312c2010-12-21 12:54:20 +0200855
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400856skip_guest:
Sean Christophersona128a932020-09-23 11:03:57 -0700857 i = vmx_find_loadstore_msr_slot(&m->host, msr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400858 if (i < 0)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300859 return;
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400860
861 --m->host.nr;
862 m->host.val[i] = m->host.val[m->host.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400863 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300864}
865
Gleb Natapov2961e8762013-11-25 15:37:13 +0200866static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
867 unsigned long entry, unsigned long exit,
868 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
869 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200870{
871 vmcs_write64(guest_val_vmcs, guest_val);
Sean Christopherson5a5e8a12018-09-26 09:23:56 -0700872 if (host_val_vmcs != HOST_IA32_EFER)
873 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +0200874 vm_entry_controls_setbit(vmx, entry);
875 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200876}
877
Avi Kivity61d2ef22010-04-28 16:40:38 +0300878static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400879 u64 guest_val, u64 host_val, bool entry_only)
Avi Kivity61d2ef22010-04-28 16:40:38 +0300880{
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400881 int i, j = 0;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300882 struct msr_autoload *m = &vmx->msr_autoload;
883
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200884 switch (msr) {
885 case MSR_EFER:
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800886 if (cpu_has_load_ia32_efer()) {
Gleb Natapov2961e8762013-11-25 15:37:13 +0200887 add_atomic_switch_msr_special(vmx,
888 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200889 VM_EXIT_LOAD_IA32_EFER,
890 GUEST_IA32_EFER,
891 HOST_IA32_EFER,
892 guest_val, host_val);
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 add_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 GUEST_IA32_PERF_GLOBAL_CTRL,
902 HOST_IA32_PERF_GLOBAL_CTRL,
903 guest_val, host_val);
904 return;
905 }
906 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +0100907 case MSR_IA32_PEBS_ENABLE:
908 /* PEBS needs a quiescent period after being disabled (to write
909 * a record). Disabling PEBS through VMX MSR swapping doesn't
910 * provide that period, so a CPU could write host's record into
911 * guest's memory.
912 */
913 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +0200914 }
915
Sean Christophersona128a932020-09-23 11:03:57 -0700916 i = vmx_find_loadstore_msr_slot(&m->guest, msr);
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400917 if (!entry_only)
Sean Christophersona128a932020-09-23 11:03:57 -0700918 j = vmx_find_loadstore_msr_slot(&m->host, msr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300919
Sean Christophersonce833b22020-09-23 11:03:56 -0700920 if ((i < 0 && m->guest.nr == MAX_NR_LOADSTORE_MSRS) ||
921 (j < 0 && m->host.nr == MAX_NR_LOADSTORE_MSRS)) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +0200922 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +0200923 "Can't add msr %x\n", msr);
924 return;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300925 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400926 if (i < 0) {
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -0400927 i = m->guest.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400928 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400929 }
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400930 m->guest.val[i].index = msr;
931 m->guest.val[i].value = guest_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300932
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400933 if (entry_only)
934 return;
935
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400936 if (j < 0) {
937 j = m->host.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400938 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +0300939 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -0400940 m->host.val[j].index = msr;
941 m->host.val[j].value = host_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300942}
943
Avi Kivity92c0d902009-10-29 11:00:16 +0200944static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +0300945{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100946 u64 guest_efer = vmx->vcpu.arch.efer;
947 u64 ignore_bits = 0;
Eddie Dong2cc51562007-05-21 07:28:09 +0300948
Paolo Bonzini9167ab72019-10-27 16:23:23 +0100949 /* Shadow paging assumes NX to be available. */
950 if (!enable_ept)
951 guest_efer |= EFER_NX;
Roel Kluin3a34a882009-08-04 02:08:45 -0700952
Avi Kivity51c6cf62007-08-29 03:48:05 +0300953 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100954 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +0300955 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100956 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300957#ifdef CONFIG_X86_64
958 ignore_bits |= EFER_LMA | EFER_LME;
959 /* SCE is meaningful only in long mode on Intel */
960 if (guest_efer & EFER_LMA)
961 ignore_bits &= ~(u64)EFER_SCE;
962#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +0300963
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -0800964 /*
965 * On EPT, we can't emulate NX, so we must switch EFER atomically.
966 * On CPUs that support "load IA32_EFER", always switch EFER
967 * atomically, since it's faster than switching it manually.
968 */
Sean Christophersonc73da3f2018-12-03 13:53:00 -0800969 if (cpu_has_load_ia32_efer() ||
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -0800970 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +0300971 if (!(guest_efer & EFER_LMA))
972 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -0800973 if (guest_efer != host_efer)
974 add_atomic_switch_msr(vmx, MSR_EFER,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -0400975 guest_efer, host_efer, false);
Sean Christopherson02343cf2018-09-26 09:23:43 -0700976 else
977 clear_atomic_switch_msr(vmx, MSR_EFER);
Avi Kivity84ad33e2010-04-28 16:42:29 +0300978 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100979 } else {
Sean Christopherson02343cf2018-09-26 09:23:43 -0700980 clear_atomic_switch_msr(vmx, MSR_EFER);
981
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100982 guest_efer &= ~ignore_bits;
983 guest_efer |= host_efer & ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +0300984
Sean Christophersoneb3db1b2020-09-23 11:03:58 -0700985 vmx->guest_uret_msrs[efer_offset].data = guest_efer;
986 vmx->guest_uret_msrs[efer_offset].mask = ~ignore_bits;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +0100987
988 return true;
989 }
Avi Kivity51c6cf62007-08-29 03:48:05 +0300990}
991
Andy Lutomirskie28baea2017-02-20 08:56:11 -0800992#ifdef CONFIG_X86_32
993/*
994 * On 32-bit kernels, VM exits still load the FS and GS bases from the
995 * VMCS rather than the segment table. KVM uses this helper to figure
996 * out the current bases to poke them into the VMCS before entry.
997 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200998static unsigned long segment_base(u16 selector)
999{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001000 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001001 unsigned long v;
1002
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001003 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001004 return 0;
1005
Thomas Garnier45fc8752017-03-14 10:05:08 -07001006 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001007
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001008 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001009 u16 ldt_selector = kvm_read_ldt();
1010
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001011 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001012 return 0;
1013
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001014 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001015 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08001016 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001017 return v;
1018}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08001019#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001020
Sean Christophersone348ac72019-12-10 15:24:33 -08001021static inline bool pt_can_write_msr(struct vcpu_vmx *vmx)
1022{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001023 return vmx_pt_mode_is_host_guest() &&
Sean Christophersone348ac72019-12-10 15:24:33 -08001024 !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
1025}
1026
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07001027static inline bool pt_output_base_valid(struct kvm_vcpu *vcpu, u64 base)
1028{
1029 /* The base must be 128-byte aligned and a legal physical address. */
Sean Christopherson7096cbf2020-09-24 12:42:50 -07001030 return !kvm_vcpu_is_illegal_gpa(vcpu, base) && !(base & 0x7f);
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07001031}
1032
Chao Peng2ef444f2018-10-24 16:05:12 +08001033static inline void pt_load_msr(struct pt_ctx *ctx, u32 addr_range)
1034{
1035 u32 i;
1036
1037 wrmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
1038 wrmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
1039 wrmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1040 wrmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1041 for (i = 0; i < addr_range; i++) {
1042 wrmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1043 wrmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1044 }
1045}
1046
1047static inline void pt_save_msr(struct pt_ctx *ctx, u32 addr_range)
1048{
1049 u32 i;
1050
1051 rdmsrl(MSR_IA32_RTIT_STATUS, ctx->status);
1052 rdmsrl(MSR_IA32_RTIT_OUTPUT_BASE, ctx->output_base);
1053 rdmsrl(MSR_IA32_RTIT_OUTPUT_MASK, ctx->output_mask);
1054 rdmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
1055 for (i = 0; i < addr_range; i++) {
1056 rdmsrl(MSR_IA32_RTIT_ADDR0_A + i * 2, ctx->addr_a[i]);
1057 rdmsrl(MSR_IA32_RTIT_ADDR0_B + i * 2, ctx->addr_b[i]);
1058 }
1059}
1060
1061static void pt_guest_enter(struct vcpu_vmx *vmx)
1062{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001063 if (vmx_pt_mode_is_system())
Chao Peng2ef444f2018-10-24 16:05:12 +08001064 return;
1065
Chao Peng2ef444f2018-10-24 16:05:12 +08001066 /*
Chao Pengb08c2892018-10-24 16:05:15 +08001067 * GUEST_IA32_RTIT_CTL is already set in the VMCS.
1068 * Save host state before VM entry.
Chao Peng2ef444f2018-10-24 16:05:12 +08001069 */
Chao Pengb08c2892018-10-24 16:05:15 +08001070 rdmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
Chao Peng2ef444f2018-10-24 16:05:12 +08001071 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
1072 wrmsrl(MSR_IA32_RTIT_CTL, 0);
1073 pt_save_msr(&vmx->pt_desc.host, vmx->pt_desc.addr_range);
1074 pt_load_msr(&vmx->pt_desc.guest, vmx->pt_desc.addr_range);
1075 }
1076}
1077
1078static void pt_guest_exit(struct vcpu_vmx *vmx)
1079{
Sean Christopherson2ef76192020-03-02 15:56:22 -08001080 if (vmx_pt_mode_is_system())
Chao Peng2ef444f2018-10-24 16:05:12 +08001081 return;
1082
1083 if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
1084 pt_save_msr(&vmx->pt_desc.guest, vmx->pt_desc.addr_range);
1085 pt_load_msr(&vmx->pt_desc.host, vmx->pt_desc.addr_range);
1086 }
1087
1088 /* Reload host state (IA32_RTIT_CTL will be cleared on VM exit). */
1089 wrmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
1090}
1091
Sean Christopherson13b964a2019-05-07 09:06:31 -07001092void vmx_set_host_fs_gs(struct vmcs_host_state *host, u16 fs_sel, u16 gs_sel,
1093 unsigned long fs_base, unsigned long gs_base)
1094{
1095 if (unlikely(fs_sel != host->fs_sel)) {
1096 if (!(fs_sel & 7))
1097 vmcs_write16(HOST_FS_SELECTOR, fs_sel);
1098 else
1099 vmcs_write16(HOST_FS_SELECTOR, 0);
1100 host->fs_sel = fs_sel;
1101 }
1102 if (unlikely(gs_sel != host->gs_sel)) {
1103 if (!(gs_sel & 7))
1104 vmcs_write16(HOST_GS_SELECTOR, gs_sel);
1105 else
1106 vmcs_write16(HOST_GS_SELECTOR, 0);
1107 host->gs_sel = gs_sel;
1108 }
1109 if (unlikely(fs_base != host->fs_base)) {
1110 vmcs_writel(HOST_FS_BASE, fs_base);
1111 host->fs_base = fs_base;
1112 }
1113 if (unlikely(gs_base != host->gs_base)) {
1114 vmcs_writel(HOST_GS_BASE, gs_base);
1115 host->gs_base = gs_base;
1116 }
1117}
1118
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001119void vmx_prepare_switch_to_guest(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001120{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001121 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond7ee0392018-07-23 12:32:47 -07001122 struct vmcs_host_state *host_state;
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001123#ifdef CONFIG_X86_64
Vitaly Kuznetsov35060ed2018-03-13 18:48:05 +01001124 int cpu = raw_smp_processor_id();
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02001125#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001126 unsigned long fs_base, gs_base;
1127 u16 fs_sel, gs_sel;
Avi Kivity26bb0982009-09-07 11:14:12 +03001128 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001129
Sean Christophersond264ee02018-08-27 15:21:12 -07001130 vmx->req_immediate_exit = false;
1131
Liran Alonf48b4712018-11-20 18:03:25 +02001132 /*
1133 * Note that guest MSRs to be saved/restored can also be changed
1134 * when guest state is loaded. This happens when guest transitions
1135 * to/from long-mode by setting MSR_EFER.LMA.
1136 */
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001137 if (!vmx->guest_msrs_ready) {
1138 vmx->guest_msrs_ready = true;
Liran Alonf48b4712018-11-20 18:03:25 +02001139 for (i = 0; i < vmx->save_nmsrs; ++i)
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001140 kvm_set_user_return_msr(vmx->guest_uret_msrs[i].index,
1141 vmx->guest_uret_msrs[i].data,
1142 vmx->guest_uret_msrs[i].mask);
Liran Alonf48b4712018-11-20 18:03:25 +02001143
1144 }
wanpeng lic9dfd3f2020-02-17 18:37:43 +08001145
1146 if (vmx->nested.need_vmcs12_to_shadow_sync)
1147 nested_sync_vmcs12_to_shadow(vcpu);
1148
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001149 if (vmx->guest_state_loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001150 return;
1151
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001152 host_state = &vmx->loaded_vmcs->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001153
Avi Kivity33ed6322007-05-02 16:54:03 +03001154 /*
1155 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1156 * allow segment selectors with cpl > 0 or ti == 1.
1157 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07001158 host_state->ldt_sel = kvm_read_ldt();
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01001159
1160#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001161 savesegment(ds, host_state->ds_sel);
1162 savesegment(es, host_state->es_sel);
Sean Christophersone368b872018-07-23 12:32:41 -07001163
1164 gs_base = cpu_kernelmode_gs_base(cpu);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001165 if (likely(is_64bit_mm(current->mm))) {
Thomas Gleixner67580342020-05-28 16:13:52 -04001166 current_save_fsgs();
Sean Christophersone368b872018-07-23 12:32:41 -07001167 fs_sel = current->thread.fsindex;
1168 gs_sel = current->thread.gsindex;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001169 fs_base = current->thread.fsbase;
Sean Christophersone368b872018-07-23 12:32:41 -07001170 vmx->msr_host_kernel_gs_base = current->thread.gsbase;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001171 } else {
Sean Christophersone368b872018-07-23 12:32:41 -07001172 savesegment(fs, fs_sel);
1173 savesegment(gs, gs_sel);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02001174 fs_base = read_msr(MSR_FS_BASE);
Sean Christophersone368b872018-07-23 12:32:41 -07001175 vmx->msr_host_kernel_gs_base = read_msr(MSR_KERNEL_GS_BASE);
Avi Kivity33ed6322007-05-02 16:54:03 +03001176 }
1177
Paolo Bonzini4679b612018-09-24 17:23:01 +02001178 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity33ed6322007-05-02 16:54:03 +03001179#else
Sean Christophersone368b872018-07-23 12:32:41 -07001180 savesegment(fs, fs_sel);
1181 savesegment(gs, gs_sel);
1182 fs_base = segment_base(fs_sel);
1183 gs_base = segment_base(gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001184#endif
Sean Christophersone368b872018-07-23 12:32:41 -07001185
Sean Christopherson13b964a2019-05-07 09:06:31 -07001186 vmx_set_host_fs_gs(host_state, fs_sel, gs_sel, fs_base, gs_base);
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001187 vmx->guest_state_loaded = true;
Avi Kivity33ed6322007-05-02 16:54:03 +03001188}
1189
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001190static void vmx_prepare_switch_to_host(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001191{
Sean Christophersond7ee0392018-07-23 12:32:47 -07001192 struct vmcs_host_state *host_state;
1193
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001194 if (!vmx->guest_state_loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001195 return;
1196
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001197 host_state = &vmx->loaded_vmcs->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001198
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001199 ++vmx->vcpu.stat.host_state_reload;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07001200
Avi Kivityc8770e72010-11-11 12:37:26 +02001201#ifdef CONFIG_X86_64
Paolo Bonzini4679b612018-09-24 17:23:01 +02001202 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivityc8770e72010-11-11 12:37:26 +02001203#endif
Sean Christophersond7ee0392018-07-23 12:32:47 -07001204 if (host_state->ldt_sel || (host_state->gs_sel & 7)) {
1205 kvm_load_ldt(host_state->ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001206#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001207 load_gs_index(host_state->gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02001208#else
Sean Christophersond7ee0392018-07-23 12:32:47 -07001209 loadsegment(gs, host_state->gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001210#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03001211 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07001212 if (host_state->fs_sel & 7)
1213 loadsegment(fs, host_state->fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001214#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07001215 if (unlikely(host_state->ds_sel | host_state->es_sel)) {
1216 loadsegment(ds, host_state->ds_sel);
1217 loadsegment(es, host_state->es_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03001218 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03001219#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08001220 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03001221#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001222 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001223#endif
Thomas Garnier45fc8752017-03-14 10:05:08 -07001224 load_fixmap_gdt(raw_smp_processor_id());
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001225 vmx->guest_state_loaded = false;
1226 vmx->guest_msrs_ready = false;
Avi Kivity33ed6322007-05-02 16:54:03 +03001227}
1228
Sean Christopherson678e3152018-07-23 12:32:43 -07001229#ifdef CONFIG_X86_64
1230static u64 vmx_read_guest_kernel_gs_base(struct vcpu_vmx *vmx)
Avi Kivitya9b21b62008-06-24 11:48:49 +03001231{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001232 preempt_disable();
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001233 if (vmx->guest_state_loaded)
Paolo Bonzini4679b612018-09-24 17:23:01 +02001234 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1235 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001236 return vmx->msr_guest_kernel_gs_base;
Avi Kivitya9b21b62008-06-24 11:48:49 +03001237}
1238
Sean Christopherson678e3152018-07-23 12:32:43 -07001239static void vmx_write_guest_kernel_gs_base(struct vcpu_vmx *vmx, u64 data)
1240{
Paolo Bonzini4679b612018-09-24 17:23:01 +02001241 preempt_disable();
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001242 if (vmx->guest_state_loaded)
Paolo Bonzini4679b612018-09-24 17:23:01 +02001243 wrmsrl(MSR_KERNEL_GS_BASE, data);
1244 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07001245 vmx->msr_guest_kernel_gs_base = data;
1246}
1247#endif
1248
Sean Christopherson5c911be2020-05-01 09:31:17 -07001249void vmx_vcpu_load_vmcs(struct kvm_vcpu *vcpu, int cpu,
1250 struct loaded_vmcs *buddy)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001251{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001252 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001253 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Sean Christopherson5c911be2020-05-01 09:31:17 -07001254 struct vmcs *prev;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001255
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001256 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01001257 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001258 local_irq_disable();
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001259
1260 /*
Sean Christopherson31603d42020-03-21 12:37:49 -07001261 * Ensure loaded_vmcs->cpu is read before adding loaded_vmcs to
1262 * this cpu's percpu list, otherwise it may not yet be deleted
1263 * from its previous cpu's percpu list. Pairs with the
1264 * smb_wmb() in __loaded_vmcs_clear().
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001265 */
1266 smp_rmb();
1267
Nadav Har'Eld462b812011-05-24 15:26:10 +03001268 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
1269 &per_cpu(loaded_vmcss_on_cpu, cpu));
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001270 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001271 }
1272
Sean Christopherson5c911be2020-05-01 09:31:17 -07001273 prev = per_cpu(current_vmcs, cpu);
1274 if (prev != vmx->loaded_vmcs->vmcs) {
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001275 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
1276 vmcs_load(vmx->loaded_vmcs->vmcs);
Sean Christopherson5c911be2020-05-01 09:31:17 -07001277
1278 /*
1279 * No indirect branch prediction barrier needed when switching
1280 * the active VMCS within a guest, e.g. on nested VM-Enter.
1281 * The L1 VMM can protect itself with retpolines, IBPB or IBRS.
1282 */
1283 if (!buddy || WARN_ON_ONCE(buddy->vmcs != prev))
1284 indirect_branch_prediction_barrier();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001285 }
1286
1287 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001288 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001289 unsigned long sysenter_esp;
1290
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07001291 /*
1292 * Flush all EPTP/VPID contexts, the new pCPU may have stale
1293 * TLB entries from its previous association with the vCPU.
1294 */
Jim Mattsonb80c76e2016-07-29 18:56:53 -07001295 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001296
Avi Kivity6aa8b732006-12-10 02:21:36 -08001297 /*
1298 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001299 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001300 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08001301 vmcs_writel(HOST_TR_BASE,
Andy Lutomirski72f5e082017-12-04 15:07:20 +01001302 (unsigned long)&get_cpu_entry_area(cpu)->tss.x86_tss);
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07001303 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001304
1305 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
1306 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08001307
Nadav Har'Eld462b812011-05-24 15:26:10 +03001308 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001309 }
Feng Wu28b835d2015-09-18 22:29:54 +08001310
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001311 /* Setup TSC multiplier */
1312 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07001313 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
1314 decache_tsc_multiplier(vmx);
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001315}
1316
1317/*
1318 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
1319 * vcpu mutex is already taken.
1320 */
Sean Christopherson1af1bb02020-05-06 16:58:50 -07001321static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001322{
1323 struct vcpu_vmx *vmx = to_vmx(vcpu);
1324
Sean Christopherson5c911be2020-05-01 09:31:17 -07001325 vmx_vcpu_load_vmcs(vcpu, cpu, NULL);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001326
Feng Wu28b835d2015-09-18 22:29:54 +08001327 vmx_vcpu_pi_load(vcpu, cpu);
Sean Christopherson8ef863e2019-05-07 09:06:32 -07001328
Wanpeng Li74c55932017-11-29 01:31:20 -08001329 vmx->host_debugctlmsr = get_debugctlmsr();
Feng Wu28b835d2015-09-18 22:29:54 +08001330}
1331
Sean Christopherson13b964a2019-05-07 09:06:31 -07001332static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001333{
Feng Wu28b835d2015-09-18 22:29:54 +08001334 vmx_vcpu_pi_put(vcpu);
1335
Sean Christopherson6d6095b2018-07-23 12:32:44 -07001336 vmx_prepare_switch_to_host(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001337}
1338
Wanpeng Lif244dee2017-07-20 01:11:54 -07001339static bool emulation_required(struct kvm_vcpu *vcpu)
1340{
Sean Christopherson2ba44932020-09-23 11:44:48 -07001341 return emulate_invalid_guest_state && !vmx_guest_state_valid(vcpu);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001342}
1343
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001344unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001345{
Sean Christophersone7bddc52019-09-27 14:45:18 -07001346 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity78ac8b42010-04-08 18:19:35 +03001347 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03001348
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001349 if (!kvm_register_is_available(vcpu, VCPU_EXREG_RFLAGS)) {
1350 kvm_register_mark_available(vcpu, VCPU_EXREG_RFLAGS);
Avi Kivity6de12732011-03-07 12:51:22 +02001351 rflags = vmcs_readl(GUEST_RFLAGS);
Sean Christophersone7bddc52019-09-27 14:45:18 -07001352 if (vmx->rmode.vm86_active) {
Avi Kivity6de12732011-03-07 12:51:22 +02001353 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
Sean Christophersone7bddc52019-09-27 14:45:18 -07001354 save_rflags = vmx->rmode.save_rflags;
Avi Kivity6de12732011-03-07 12:51:22 +02001355 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
1356 }
Sean Christophersone7bddc52019-09-27 14:45:18 -07001357 vmx->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001358 }
Sean Christophersone7bddc52019-09-27 14:45:18 -07001359 return vmx->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001360}
1361
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001362void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001363{
Sean Christophersone7bddc52019-09-27 14:45:18 -07001364 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson491c1ad2019-09-27 14:45:19 -07001365 unsigned long old_rflags;
Wanpeng Lif244dee2017-07-20 01:11:54 -07001366
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00001367 if (is_unrestricted_guest(vcpu)) {
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001368 kvm_register_mark_available(vcpu, VCPU_EXREG_RFLAGS);
Sean Christopherson491c1ad2019-09-27 14:45:19 -07001369 vmx->rflags = rflags;
1370 vmcs_writel(GUEST_RFLAGS, rflags);
1371 return;
1372 }
1373
1374 old_rflags = vmx_get_rflags(vcpu);
Sean Christophersone7bddc52019-09-27 14:45:18 -07001375 vmx->rflags = rflags;
1376 if (vmx->rmode.vm86_active) {
1377 vmx->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001378 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001379 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001380 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07001381
Sean Christophersone7bddc52019-09-27 14:45:18 -07001382 if ((old_rflags ^ vmx->rflags) & X86_EFLAGS_VM)
1383 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001384}
1385
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001386u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001387{
1388 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1389 int ret = 0;
1390
1391 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01001392 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001393 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01001394 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001395
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02001396 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001397}
1398
Sean Christopherson97b7ead2018-12-03 13:53:16 -08001399void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001400{
1401 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1402 u32 interruptibility = interruptibility_old;
1403
1404 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
1405
Jan Kiszka48005f62010-02-19 19:38:07 +01001406 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001407 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01001408 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001409 interruptibility |= GUEST_INTR_STATE_STI;
1410
1411 if ((interruptibility != interruptibility_old))
1412 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
1413}
1414
Chao Pengbf8c55d2018-10-24 16:05:14 +08001415static int vmx_rtit_ctl_check(struct kvm_vcpu *vcpu, u64 data)
1416{
1417 struct vcpu_vmx *vmx = to_vmx(vcpu);
1418 unsigned long value;
1419
1420 /*
1421 * Any MSR write that attempts to change bits marked reserved will
1422 * case a #GP fault.
1423 */
1424 if (data & vmx->pt_desc.ctl_bitmask)
1425 return 1;
1426
1427 /*
1428 * Any attempt to modify IA32_RTIT_CTL while TraceEn is set will
1429 * result in a #GP unless the same write also clears TraceEn.
1430 */
1431 if ((vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) &&
1432 ((vmx->pt_desc.guest.ctl ^ data) & ~RTIT_CTL_TRACEEN))
1433 return 1;
1434
1435 /*
1436 * WRMSR to IA32_RTIT_CTL that sets TraceEn but clears this bit
1437 * and FabricEn would cause #GP, if
1438 * CPUID.(EAX=14H, ECX=0):ECX.SNGLRGNOUT[bit 2] = 0
1439 */
1440 if ((data & RTIT_CTL_TRACEEN) && !(data & RTIT_CTL_TOPA) &&
1441 !(data & RTIT_CTL_FABRIC_EN) &&
1442 !intel_pt_validate_cap(vmx->pt_desc.caps,
1443 PT_CAP_single_range_output))
1444 return 1;
1445
1446 /*
1447 * MTCFreq, CycThresh and PSBFreq encodings check, any MSR write that
1448 * utilize encodings marked reserved will casue a #GP fault.
1449 */
1450 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc_periods);
1451 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc) &&
1452 !test_bit((data & RTIT_CTL_MTC_RANGE) >>
1453 RTIT_CTL_MTC_RANGE_OFFSET, &value))
1454 return 1;
1455 value = intel_pt_validate_cap(vmx->pt_desc.caps,
1456 PT_CAP_cycle_thresholds);
1457 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1458 !test_bit((data & RTIT_CTL_CYC_THRESH) >>
1459 RTIT_CTL_CYC_THRESH_OFFSET, &value))
1460 return 1;
1461 value = intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_periods);
1462 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc) &&
1463 !test_bit((data & RTIT_CTL_PSB_FREQ) >>
1464 RTIT_CTL_PSB_FREQ_OFFSET, &value))
1465 return 1;
1466
1467 /*
1468 * If ADDRx_CFG is reserved or the encodings is >2 will
1469 * cause a #GP fault.
1470 */
1471 value = (data & RTIT_CTL_ADDR0) >> RTIT_CTL_ADDR0_OFFSET;
1472 if ((value && (vmx->pt_desc.addr_range < 1)) || (value > 2))
1473 return 1;
1474 value = (data & RTIT_CTL_ADDR1) >> RTIT_CTL_ADDR1_OFFSET;
1475 if ((value && (vmx->pt_desc.addr_range < 2)) || (value > 2))
1476 return 1;
1477 value = (data & RTIT_CTL_ADDR2) >> RTIT_CTL_ADDR2_OFFSET;
1478 if ((value && (vmx->pt_desc.addr_range < 3)) || (value > 2))
1479 return 1;
1480 value = (data & RTIT_CTL_ADDR3) >> RTIT_CTL_ADDR3_OFFSET;
1481 if ((value && (vmx->pt_desc.addr_range < 4)) || (value > 2))
1482 return 1;
1483
1484 return 0;
1485}
1486
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07001487static bool vmx_can_emulate_instruction(struct kvm_vcpu *vcpu, void *insn, int insn_len)
1488{
1489 return true;
1490}
1491
Sean Christopherson1957aa62019-08-27 14:40:39 -07001492static int skip_emulated_instruction(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001493{
Paolo Bonzinifede8072020-04-27 11:55:59 -04001494 unsigned long rip, orig_rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001495
Sean Christopherson1957aa62019-08-27 14:40:39 -07001496 /*
1497 * Using VMCS.VM_EXIT_INSTRUCTION_LEN on EPT misconfig depends on
1498 * undefined behavior: Intel's SDM doesn't mandate the VMCS field be
1499 * set when EPT misconfig occurs. In practice, real hardware updates
1500 * VM_EXIT_INSTRUCTION_LEN on EPT misconfig, but other hypervisors
1501 * (namely Hyper-V) don't set it due to it being undefined behavior,
1502 * i.e. we end up advancing IP with some random value.
1503 */
1504 if (!static_cpu_has(X86_FEATURE_HYPERVISOR) ||
1505 to_vmx(vcpu)->exit_reason != EXIT_REASON_EPT_MISCONFIG) {
Paolo Bonzinifede8072020-04-27 11:55:59 -04001506 orig_rip = kvm_rip_read(vcpu);
1507 rip = orig_rip + vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
1508#ifdef CONFIG_X86_64
1509 /*
1510 * We need to mask out the high 32 bits of RIP if not in 64-bit
1511 * mode, but just finding out that we are in 64-bit mode is
1512 * quite expensive. Only do it if there was a carry.
1513 */
1514 if (unlikely(((rip ^ orig_rip) >> 31) == 3) && !is_64_bit_mode(vcpu))
1515 rip = (u32)rip;
1516#endif
Sean Christopherson1957aa62019-08-27 14:40:39 -07001517 kvm_rip_write(vcpu, rip);
1518 } else {
1519 if (!kvm_emulate_instruction(vcpu, EMULTYPE_SKIP))
1520 return 0;
1521 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001522
Glauber Costa2809f5d2009-05-12 16:21:05 -04001523 /* skipping an emulated instruction also counts */
1524 vmx_set_interrupt_shadow(vcpu, 0);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02001525
Sean Christopherson60fc3d02019-08-27 14:40:38 -07001526 return 1;
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02001527}
1528
Vitaly Kuznetsov7a35e512020-06-05 13:59:05 +02001529/*
Oliver Upton5ef8acb2020-02-07 02:36:07 -08001530 * Recognizes a pending MTF VM-exit and records the nested state for later
1531 * delivery.
1532 */
1533static void vmx_update_emulated_instruction(struct kvm_vcpu *vcpu)
1534{
1535 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1536 struct vcpu_vmx *vmx = to_vmx(vcpu);
1537
1538 if (!is_guest_mode(vcpu))
1539 return;
1540
1541 /*
1542 * Per the SDM, MTF takes priority over debug-trap exceptions besides
1543 * T-bit traps. As instruction emulation is completed (i.e. at the
1544 * instruction boundary), any #DB exception pending delivery must be a
1545 * debug-trap. Record the pending MTF state to be delivered in
1546 * vmx_check_nested_events().
1547 */
1548 if (nested_cpu_has_mtf(vmcs12) &&
1549 (!vcpu->arch.exception.pending ||
1550 vcpu->arch.exception.nr == DB_VECTOR))
1551 vmx->nested.mtf_pending = true;
1552 else
1553 vmx->nested.mtf_pending = false;
1554}
1555
1556static int vmx_skip_emulated_instruction(struct kvm_vcpu *vcpu)
1557{
1558 vmx_update_emulated_instruction(vcpu);
1559 return skip_emulated_instruction(vcpu);
1560}
1561
Wanpeng Licaa057a2018-03-12 04:53:03 -07001562static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
1563{
1564 /*
1565 * Ensure that we clear the HLT state in the VMCS. We don't need to
1566 * explicitly skip the instruction because if the HLT state is set,
1567 * then the instruction is already executing and RIP has already been
1568 * advanced.
1569 */
1570 if (kvm_hlt_in_guest(vcpu->kvm) &&
1571 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
1572 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
1573}
1574
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001575static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02001576{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001577 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001578 unsigned nr = vcpu->arch.exception.nr;
1579 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07001580 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001581 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001582
Jim Mattsonda998b42018-10-16 14:29:22 -07001583 kvm_deliver_exception_payload(vcpu);
1584
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001585 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001586 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001587 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
1588 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001589
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001590 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05001591 int inc_eip = 0;
1592 if (kvm_exception_is_soft(nr))
1593 inc_eip = vcpu->arch.event_exit_inst_len;
Sean Christopherson9497e1f2019-08-27 14:40:36 -07001594 kvm_inject_realmode_interrupt(vcpu, nr, inc_eip);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001595 return;
1596 }
1597
Sean Christophersonadd5ff72018-03-23 09:34:00 -07001598 WARN_ON_ONCE(vmx->emulation_required);
1599
Gleb Natapov66fd3f72009-05-11 13:35:50 +03001600 if (kvm_exception_is_soft(nr)) {
1601 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
1602 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001603 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
1604 } else
1605 intr_info |= INTR_TYPE_HARD_EXCEPTION;
1606
1607 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Wanpeng Licaa057a2018-03-12 04:53:03 -07001608
1609 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02001610}
1611
Avi Kivity6aa8b732006-12-10 02:21:36 -08001612/*
Eddie Donga75beee2007-05-17 18:55:15 +03001613 * Swap MSR entry in host/guest MSR entry array.
1614 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001615static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03001616{
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001617 struct vmx_uret_msr tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001618
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001619 tmp = vmx->guest_uret_msrs[to];
1620 vmx->guest_uret_msrs[to] = vmx->guest_uret_msrs[from];
1621 vmx->guest_uret_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03001622}
1623
1624/*
Avi Kivitye38aea32007-04-19 13:22:48 +03001625 * Set up the vmcs to automatically save and restore system
1626 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
1627 * mode, as fiddling with msrs is very expensive.
1628 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001629static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03001630{
Avi Kivity26bb0982009-09-07 11:14:12 +03001631 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03001632
Eddie Donga75beee2007-05-17 18:55:15 +03001633 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001634#ifdef CONFIG_X86_64
Jim Mattson84c8c5b2018-12-05 15:29:01 -08001635 /*
1636 * The SYSCALL MSRs are only needed on long mode guests, and only
1637 * when EFER.SCE is set.
1638 */
1639 if (is_long_mode(&vmx->vcpu) && (vmx->vcpu.arch.efer & EFER_SCE)) {
1640 index = __find_msr_index(vmx, MSR_STAR);
Eddie Donga75beee2007-05-17 18:55:15 +03001641 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001642 move_msr_up(vmx, index, save_nmsrs++);
1643 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03001644 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001645 move_msr_up(vmx, index, save_nmsrs++);
Jim Mattson84c8c5b2018-12-05 15:29:01 -08001646 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
1647 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001648 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001649 }
Eddie Donga75beee2007-05-17 18:55:15 +03001650#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02001651 index = __find_msr_index(vmx, MSR_EFER);
1652 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03001653 move_msr_up(vmx, index, save_nmsrs++);
Jim Mattson0023ef32018-12-05 15:28:58 -08001654 index = __find_msr_index(vmx, MSR_TSC_AUX);
1655 if (index >= 0 && guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP))
1656 move_msr_up(vmx, index, save_nmsrs++);
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05001657 index = __find_msr_index(vmx, MSR_IA32_TSX_CTRL);
1658 if (index >= 0)
1659 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001660
Avi Kivity26bb0982009-09-07 11:14:12 +03001661 vmx->save_nmsrs = save_nmsrs;
Paolo Bonzinib464f57e2019-06-07 19:00:14 +02001662 vmx->guest_msrs_ready = false;
Avi Kivity58972972009-02-24 22:26:47 +02001663
Yang Zhang8d146952013-01-25 10:18:50 +08001664 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01001665 vmx_update_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03001666}
1667
Leonid Shatz326e7422018-11-06 12:14:25 +02001668static u64 vmx_write_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001669{
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001670 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1671 u64 g_tsc_offset = 0;
Leonid Shatz326e7422018-11-06 12:14:25 +02001672
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001673 /*
1674 * We're here if L1 chose not to trap WRMSR to TSC. According
1675 * to the spec, this should set L1's TSC; The offset that L1
1676 * set for L2 remains unchanged, and still needs to be added
1677 * to the newly set TSC to get L2's TSC.
1678 */
1679 if (is_guest_mode(vcpu) &&
Xiaoyao Li5e3d3942019-12-06 16:45:26 +08001680 (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETTING))
Paolo Bonzini45c3af92018-11-25 18:45:35 +01001681 g_tsc_offset = vmcs12->tsc_offset;
1682
1683 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
1684 vcpu->arch.tsc_offset - g_tsc_offset,
1685 offset);
1686 vmcs_write64(TSC_OFFSET, offset + g_tsc_offset);
1687 return offset + g_tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001688}
1689
Nadav Har'El801d3422011-05-25 23:02:23 +03001690/*
1691 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
1692 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
1693 * all guests if the "nested" module option is off, and can also be disabled
1694 * for a single guest by disabling its VMX cpuid bit.
1695 */
Sean Christopherson7c97fcb2018-12-03 13:53:17 -08001696bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
Nadav Har'El801d3422011-05-25 23:02:23 +03001697{
Radim Krčmářd6321d42017-08-05 00:12:49 +02001698 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03001699}
1700
Haozhong Zhang37e4c992016-06-22 14:59:55 +08001701static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
1702 uint64_t val)
1703{
1704 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
1705
1706 return !(val & ~valid_bits);
1707}
1708
Tom Lendacky801e4592018-02-21 13:39:51 -06001709static int vmx_get_msr_feature(struct kvm_msr_entry *msr)
1710{
Paolo Bonzini13893092018-02-26 13:40:09 +01001711 switch (msr->index) {
1712 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1713 if (!nested)
1714 return 1;
1715 return vmx_get_vmx_msr(&vmcs_config.nested, msr->index, &msr->data);
Like Xu27461da32020-05-29 15:43:45 +08001716 case MSR_IA32_PERF_CAPABILITIES:
1717 msr->data = vmx_get_perf_capabilities();
1718 return 0;
Paolo Bonzini13893092018-02-26 13:40:09 +01001719 default:
Peter Xu12bc2132020-06-22 18:04:42 -04001720 return KVM_MSR_RET_INVALID;
Paolo Bonzini13893092018-02-26 13:40:09 +01001721 }
Tom Lendacky801e4592018-02-21 13:39:51 -06001722}
1723
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001724/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001725 * Reads an msr value (of 'msr_index') into 'pdata'.
1726 * Returns 0 on success, non-0 otherwise.
1727 * Assumes vcpu_load() was already called.
1728 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001729static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001730{
Borislav Petkova6cb0992017-12-20 12:50:28 +01001731 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001732 struct vmx_uret_msr *msr;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001733 u32 index;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001734
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001735 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001736#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001737 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001738 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001739 break;
1740 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001741 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001742 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001743 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001744 msr_info->data = vmx_read_guest_kernel_gs_base(vmx);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001745 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03001746#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001747 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001748 return kvm_get_msr_common(vcpu, msr_info);
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05001749 case MSR_IA32_TSX_CTRL:
1750 if (!msr_info->host_initiated &&
1751 !(vcpu->arch.arch_capabilities & ARCH_CAP_TSX_CTRL_MSR))
1752 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001753 goto find_uret_msr;
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001754 case MSR_IA32_UMWAIT_CONTROL:
1755 if (!msr_info->host_initiated && !vmx_has_waitpkg(vmx))
1756 return 1;
1757
1758 msr_info->data = vmx->msr_ia32_umwait_control;
1759 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001760 case MSR_IA32_SPEC_CTRL:
1761 if (!msr_info->host_initiated &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001762 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
1763 return 1;
1764
1765 msr_info->data = to_vmx(vcpu)->spec_ctrl;
1766 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001767 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001768 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001769 break;
1770 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001771 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001772 break;
1773 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001774 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001775 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001776 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08001777 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02001778 (!msr_info->host_initiated &&
1779 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01001780 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001781 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001782 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001783 case MSR_IA32_MCG_EXT_CTL:
1784 if (!msr_info->host_initiated &&
Borislav Petkova6cb0992017-12-20 12:50:28 +01001785 !(vmx->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001786 FEAT_CTL_LMCE_ENABLED))
Jan Kiszkacae50132014-01-04 18:47:22 +01001787 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08001788 msr_info->data = vcpu->arch.mcg_ext_ctl;
1789 break;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001790 case MSR_IA32_FEAT_CTL:
Borislav Petkova6cb0992017-12-20 12:50:28 +01001791 msr_info->data = vmx->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01001792 break;
1793 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
1794 if (!nested_vmx_allowed(vcpu))
1795 return 1;
Vitaly Kuznetsov31de3d22020-02-05 13:30:33 +01001796 if (vmx_get_vmx_msr(&vmx->nested.msrs, msr_info->index,
1797 &msr_info->data))
1798 return 1;
1799 /*
1800 * Enlightened VMCS v1 doesn't have certain fields, but buggy
1801 * Hyper-V versions are still trying to use corresponding
1802 * features when they are exposed. Filter out the essential
1803 * minimum.
1804 */
1805 if (!msr_info->host_initiated &&
1806 vmx->nested.enlightened_vmcs_enabled)
1807 nested_evmcs_filter_control_msr(msr_info->index,
1808 &msr_info->data);
1809 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001810 case MSR_IA32_RTIT_CTL:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001811 if (!vmx_pt_mode_is_host_guest())
Chao Pengbf8c55d2018-10-24 16:05:14 +08001812 return 1;
1813 msr_info->data = vmx->pt_desc.guest.ctl;
1814 break;
1815 case MSR_IA32_RTIT_STATUS:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001816 if (!vmx_pt_mode_is_host_guest())
Chao Pengbf8c55d2018-10-24 16:05:14 +08001817 return 1;
1818 msr_info->data = vmx->pt_desc.guest.status;
1819 break;
1820 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001821 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001822 !intel_pt_validate_cap(vmx->pt_desc.caps,
1823 PT_CAP_cr3_filtering))
1824 return 1;
1825 msr_info->data = vmx->pt_desc.guest.cr3_match;
1826 break;
1827 case MSR_IA32_RTIT_OUTPUT_BASE:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001828 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001829 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1830 PT_CAP_topa_output) &&
1831 !intel_pt_validate_cap(vmx->pt_desc.caps,
1832 PT_CAP_single_range_output)))
1833 return 1;
1834 msr_info->data = vmx->pt_desc.guest.output_base;
1835 break;
1836 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson2ef76192020-03-02 15:56:22 -08001837 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001838 (!intel_pt_validate_cap(vmx->pt_desc.caps,
1839 PT_CAP_topa_output) &&
1840 !intel_pt_validate_cap(vmx->pt_desc.caps,
1841 PT_CAP_single_range_output)))
1842 return 1;
1843 msr_info->data = vmx->pt_desc.guest.output_mask;
1844 break;
1845 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
1846 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
Sean Christopherson2ef76192020-03-02 15:56:22 -08001847 if (!vmx_pt_mode_is_host_guest() ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08001848 (index >= 2 * intel_pt_validate_cap(vmx->pt_desc.caps,
1849 PT_CAP_num_address_ranges)))
1850 return 1;
1851 if (index % 2)
1852 msr_info->data = vmx->pt_desc.guest.addr_b[index / 2];
1853 else
1854 msr_info->data = vmx->pt_desc.guest.addr_a[index / 2];
1855 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001856 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02001857 if (!msr_info->host_initiated &&
1858 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001859 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001860 goto find_uret_msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001861 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001862 find_uret_msr:
Borislav Petkova6cb0992017-12-20 12:50:28 +01001863 msr = find_msr_entry(vmx, msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001864 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001865 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001866 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001867 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001868 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001869 }
1870
Avi Kivity6aa8b732006-12-10 02:21:36 -08001871 return 0;
1872}
1873
Sean Christopherson24085002020-04-28 16:10:24 -07001874static u64 nested_vmx_truncate_sysenter_addr(struct kvm_vcpu *vcpu,
1875 u64 data)
1876{
1877#ifdef CONFIG_X86_64
1878 if (!guest_cpuid_has(vcpu, X86_FEATURE_LM))
1879 return (u32)data;
1880#endif
1881 return (unsigned long)data;
1882}
1883
Avi Kivity6aa8b732006-12-10 02:21:36 -08001884/*
Miaohe Lin311497e2019-12-11 14:26:25 +08001885 * Writes msr value into the appropriate "register".
Avi Kivity6aa8b732006-12-10 02:21:36 -08001886 * Returns 0 on success, non-0 otherwise.
1887 * Assumes vcpu_load() was already called.
1888 */
Will Auld8fe8ab42012-11-29 12:42:12 -08001889static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001890{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001891 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001892 struct vmx_uret_msr *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03001893 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08001894 u32 msr_index = msr_info->index;
1895 u64 data = msr_info->data;
Chao Pengbf8c55d2018-10-24 16:05:14 +08001896 u32 index;
Eddie Dong2cc51562007-05-21 07:28:09 +03001897
Avi Kivity6aa8b732006-12-10 02:21:36 -08001898 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001899 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08001900 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03001901 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001902#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001903 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001904 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001905 vmcs_writel(GUEST_FS_BASE, data);
1906 break;
1907 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001908 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001909 vmcs_writel(GUEST_GS_BASE, data);
1910 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001911 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07001912 vmx_write_guest_kernel_gs_base(vmx, data);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001913 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001914#endif
1915 case MSR_IA32_SYSENTER_CS:
Sean Christophersonde70d272019-05-07 09:06:36 -07001916 if (is_guest_mode(vcpu))
1917 get_vmcs12(vcpu)->guest_sysenter_cs = data;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001918 vmcs_write32(GUEST_SYSENTER_CS, data);
1919 break;
1920 case MSR_IA32_SYSENTER_EIP:
Sean Christopherson24085002020-04-28 16:10:24 -07001921 if (is_guest_mode(vcpu)) {
1922 data = nested_vmx_truncate_sysenter_addr(vcpu, data);
Sean Christophersonde70d272019-05-07 09:06:36 -07001923 get_vmcs12(vcpu)->guest_sysenter_eip = data;
Sean Christopherson24085002020-04-28 16:10:24 -07001924 }
Avi Kivityf5b42c32007-03-06 12:05:53 +02001925 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001926 break;
1927 case MSR_IA32_SYSENTER_ESP:
Sean Christopherson24085002020-04-28 16:10:24 -07001928 if (is_guest_mode(vcpu)) {
1929 data = nested_vmx_truncate_sysenter_addr(vcpu, data);
Sean Christophersonde70d272019-05-07 09:06:36 -07001930 get_vmcs12(vcpu)->guest_sysenter_esp = data;
Sean Christopherson24085002020-04-28 16:10:24 -07001931 }
Avi Kivityf5b42c32007-03-06 12:05:53 +02001932 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001933 break;
Sean Christopherson699a1ac2019-05-07 09:06:37 -07001934 case MSR_IA32_DEBUGCTLMSR:
1935 if (is_guest_mode(vcpu) && get_vmcs12(vcpu)->vm_exit_controls &
1936 VM_EXIT_SAVE_DEBUG_CONTROLS)
1937 get_vmcs12(vcpu)->guest_ia32_debugctl = data;
1938
1939 ret = kvm_set_msr_common(vcpu, msr_info);
1940 break;
1941
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00001942 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08001943 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02001944 (!msr_info->host_initiated &&
1945 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01001946 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08001947 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07001948 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001949 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08001950 vmcs_write64(GUEST_BNDCFGS, data);
1951 break;
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001952 case MSR_IA32_UMWAIT_CONTROL:
1953 if (!msr_info->host_initiated && !vmx_has_waitpkg(vmx))
1954 return 1;
1955
1956 /* The reserved bit 1 and non-32 bit [63:32] should be zero */
1957 if (data & (BIT_ULL(1) | GENMASK_ULL(63, 32)))
1958 return 1;
1959
1960 vmx->msr_ia32_umwait_control = data;
1961 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001962 case MSR_IA32_SPEC_CTRL:
1963 if (!msr_info->host_initiated &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001964 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
1965 return 1;
1966
Maxim Levitsky841c2be2020-07-08 14:57:31 +03001967 if (kvm_spec_ctrl_test_value(data))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001968 return 1;
1969
1970 vmx->spec_ctrl = data;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001971 if (!data)
1972 break;
1973
1974 /*
1975 * For non-nested:
1976 * When it's written (to non-zero) for the first time, pass
1977 * it through.
1978 *
1979 * For nested:
1980 * The handling of the MSR bitmap for L2 guests is done in
Miaohe Lin4d516fe2019-12-11 14:26:21 +08001981 * nested_vmx_prepare_msr_bitmap. We should not touch the
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01001982 * vmcs02.msr_bitmap here since it gets completely overwritten
1983 * in the merging. We update the vmcs01 here for L1 as well
1984 * since it will end up touching the MSR anyway now.
1985 */
1986 vmx_disable_intercept_for_msr(vmx->vmcs01.msr_bitmap,
1987 MSR_IA32_SPEC_CTRL,
1988 MSR_TYPE_RW);
1989 break;
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05001990 case MSR_IA32_TSX_CTRL:
1991 if (!msr_info->host_initiated &&
1992 !(vcpu->arch.arch_capabilities & ARCH_CAP_TSX_CTRL_MSR))
1993 return 1;
1994 if (data & ~(TSX_CTRL_RTM_DISABLE | TSX_CTRL_CPUID_CLEAR))
1995 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07001996 goto find_uret_msr;
Ashok Raj15d45072018-02-01 22:59:43 +01001997 case MSR_IA32_PRED_CMD:
1998 if (!msr_info->host_initiated &&
Ashok Raj15d45072018-02-01 22:59:43 +01001999 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
2000 return 1;
2001
2002 if (data & ~PRED_CMD_IBPB)
2003 return 1;
Paolo Bonzini6441fa62020-01-20 16:33:06 +01002004 if (!boot_cpu_has(X86_FEATURE_SPEC_CTRL))
2005 return 1;
Ashok Raj15d45072018-02-01 22:59:43 +01002006 if (!data)
2007 break;
2008
2009 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
2010
2011 /*
2012 * For non-nested:
2013 * When it's written (to non-zero) for the first time, pass
2014 * it through.
2015 *
2016 * For nested:
2017 * The handling of the MSR bitmap for L2 guests is done in
Miaohe Lin4d516fe2019-12-11 14:26:21 +08002018 * nested_vmx_prepare_msr_bitmap. We should not touch the
Ashok Raj15d45072018-02-01 22:59:43 +01002019 * vmcs02.msr_bitmap here since it gets completely overwritten
2020 * in the merging.
2021 */
2022 vmx_disable_intercept_for_msr(vmx->vmcs01.msr_bitmap, MSR_IA32_PRED_CMD,
2023 MSR_TYPE_W);
2024 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002025 case MSR_IA32_CR_PAT:
Sean Christophersond28f4292019-05-07 09:06:27 -07002026 if (!kvm_pat_valid(data))
2027 return 1;
2028
Sean Christopherson142e4be2019-05-07 09:06:35 -07002029 if (is_guest_mode(vcpu) &&
2030 get_vmcs12(vcpu)->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
2031 get_vmcs12(vcpu)->guest_ia32_pat = data;
2032
Sheng Yang468d4722008-10-09 16:01:55 +08002033 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2034 vmcs_write64(GUEST_IA32_PAT, data);
2035 vcpu->arch.pat = data;
2036 break;
2037 }
Will Auld8fe8ab42012-11-29 12:42:12 -08002038 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002039 break;
Will Auldba904632012-11-29 12:42:50 -08002040 case MSR_IA32_TSC_ADJUST:
2041 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002042 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002043 case MSR_IA32_MCG_EXT_CTL:
2044 if ((!msr_info->host_initiated &&
2045 !(to_vmx(vcpu)->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002046 FEAT_CTL_LMCE_ENABLED)) ||
Ashok Rajc45dcc72016-06-22 14:59:56 +08002047 (data & ~MCG_EXT_CTL_LMCE_EN))
2048 return 1;
2049 vcpu->arch.mcg_ext_ctl = data;
2050 break;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002051 case MSR_IA32_FEAT_CTL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08002052 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08002053 (to_vmx(vcpu)->msr_ia32_feature_control &
Sean Christopherson32ad73d2019-12-20 20:44:55 -08002054 FEAT_CTL_LOCKED && !msr_info->host_initiated))
Jan Kiszkacae50132014-01-04 18:47:22 +01002055 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08002056 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01002057 if (msr_info->host_initiated && data == 0)
2058 vmx_leave_nested(vcpu);
2059 break;
2060 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08002061 if (!msr_info->host_initiated)
2062 return 1; /* they are read-only */
2063 if (!nested_vmx_allowed(vcpu))
2064 return 1;
2065 return vmx_set_vmx_msr(vcpu, msr_index, data);
Chao Pengbf8c55d2018-10-24 16:05:14 +08002066 case MSR_IA32_RTIT_CTL:
Sean Christopherson2ef76192020-03-02 15:56:22 -08002067 if (!vmx_pt_mode_is_host_guest() ||
Luwei Kangee85dec2018-10-24 16:05:16 +08002068 vmx_rtit_ctl_check(vcpu, data) ||
2069 vmx->nested.vmxon)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002070 return 1;
2071 vmcs_write64(GUEST_IA32_RTIT_CTL, data);
2072 vmx->pt_desc.guest.ctl = data;
Chao Pengb08c2892018-10-24 16:05:15 +08002073 pt_update_intercept_for_msr(vmx);
Chao Pengbf8c55d2018-10-24 16:05:14 +08002074 break;
2075 case MSR_IA32_RTIT_STATUS:
Sean Christophersone348ac72019-12-10 15:24:33 -08002076 if (!pt_can_write_msr(vmx))
2077 return 1;
2078 if (data & MSR_IA32_RTIT_STATUS_MASK)
Chao Pengbf8c55d2018-10-24 16:05:14 +08002079 return 1;
2080 vmx->pt_desc.guest.status = data;
2081 break;
2082 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christophersone348ac72019-12-10 15:24:33 -08002083 if (!pt_can_write_msr(vmx))
2084 return 1;
2085 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2086 PT_CAP_cr3_filtering))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002087 return 1;
2088 vmx->pt_desc.guest.cr3_match = data;
2089 break;
2090 case MSR_IA32_RTIT_OUTPUT_BASE:
Sean Christophersone348ac72019-12-10 15:24:33 -08002091 if (!pt_can_write_msr(vmx))
2092 return 1;
2093 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2094 PT_CAP_topa_output) &&
2095 !intel_pt_validate_cap(vmx->pt_desc.caps,
2096 PT_CAP_single_range_output))
2097 return 1;
Sean Christopherson1cc6cbc2020-09-24 12:42:48 -07002098 if (!pt_output_base_valid(vcpu, data))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002099 return 1;
2100 vmx->pt_desc.guest.output_base = data;
2101 break;
2102 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christophersone348ac72019-12-10 15:24:33 -08002103 if (!pt_can_write_msr(vmx))
2104 return 1;
2105 if (!intel_pt_validate_cap(vmx->pt_desc.caps,
2106 PT_CAP_topa_output) &&
2107 !intel_pt_validate_cap(vmx->pt_desc.caps,
2108 PT_CAP_single_range_output))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002109 return 1;
2110 vmx->pt_desc.guest.output_mask = data;
2111 break;
2112 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christophersone348ac72019-12-10 15:24:33 -08002113 if (!pt_can_write_msr(vmx))
2114 return 1;
Chao Pengbf8c55d2018-10-24 16:05:14 +08002115 index = msr_info->index - MSR_IA32_RTIT_ADDR0_A;
Sean Christophersone348ac72019-12-10 15:24:33 -08002116 if (index >= 2 * intel_pt_validate_cap(vmx->pt_desc.caps,
2117 PT_CAP_num_address_ranges))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002118 return 1;
Sean Christophersonfe6ed362019-12-10 15:24:32 -08002119 if (is_noncanonical_address(data, vcpu))
Chao Pengbf8c55d2018-10-24 16:05:14 +08002120 return 1;
2121 if (index % 2)
2122 vmx->pt_desc.guest.addr_b[index / 2] = data;
2123 else
2124 vmx->pt_desc.guest.addr_a[index / 2] = data;
2125 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002126 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02002127 if (!msr_info->host_initiated &&
2128 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002129 return 1;
2130 /* Check reserved bit, higher 32 bits should be zero */
2131 if ((data >> 32) != 0)
2132 return 1;
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002133 goto find_uret_msr;
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05002134
Avi Kivity6aa8b732006-12-10 02:21:36 -08002135 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002136 find_uret_msr:
Rusty Russell8b9cf982007-07-30 16:31:43 +10002137 msr = find_msr_entry(vmx, msr_index);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05002138 if (msr)
2139 ret = vmx_set_guest_msr(vmx, msr, data);
2140 else
2141 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002142 }
2143
Eddie Dong2cc51562007-05-21 07:28:09 +03002144 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002145}
2146
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002147static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002148{
Sean Christophersonf98c1e72020-05-01 21:32:30 -07002149 unsigned long guest_owned_bits;
2150
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002151 kvm_register_mark_available(vcpu, reg);
2152
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002153 switch (reg) {
2154 case VCPU_REGS_RSP:
2155 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
2156 break;
2157 case VCPU_REGS_RIP:
2158 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
2159 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002160 case VCPU_EXREG_PDPTR:
2161 if (enable_ept)
2162 ept_save_pdptrs(vcpu);
2163 break;
Sean Christophersonbd31fe42020-05-01 21:32:31 -07002164 case VCPU_EXREG_CR0:
2165 guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
2166
2167 vcpu->arch.cr0 &= ~guest_owned_bits;
2168 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & guest_owned_bits;
2169 break;
Sean Christopherson34059c22019-09-27 14:45:23 -07002170 case VCPU_EXREG_CR3:
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00002171 if (is_unrestricted_guest(vcpu) ||
2172 (enable_ept && is_paging(vcpu)))
Sean Christopherson34059c22019-09-27 14:45:23 -07002173 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2174 break;
Sean Christophersonf98c1e72020-05-01 21:32:30 -07002175 case VCPU_EXREG_CR4:
2176 guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
2177
2178 vcpu->arch.cr4 &= ~guest_owned_bits;
2179 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & guest_owned_bits;
2180 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002181 default:
Sean Christopherson34059c22019-09-27 14:45:23 -07002182 WARN_ON_ONCE(1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002183 break;
2184 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002185}
2186
Avi Kivity6aa8b732006-12-10 02:21:36 -08002187static __init int cpu_has_kvm_support(void)
2188{
Eduardo Habkost6210e372008-11-17 19:03:16 -02002189 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002190}
2191
2192static __init int vmx_disabled_by_bios(void)
2193{
Sean Christophersona4d0b2f2019-12-20 20:45:09 -08002194 return !boot_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
2195 !boot_cpu_has(X86_FEATURE_VMX);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002196}
2197
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002198static int kvm_cpu_vmxon(u64 vmxon_pointer)
Dongxiao Xu7725b892010-05-11 18:29:38 +08002199{
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002200 u64 msr;
2201
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002202 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03002203 intel_pt_handle_vmx(1);
2204
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002205 asm_volatile_goto("1: vmxon %[vmxon_pointer]\n\t"
2206 _ASM_EXTABLE(1b, %l[fault])
2207 : : [vmxon_pointer] "m"(vmxon_pointer)
2208 : : fault);
2209 return 0;
2210
2211fault:
2212 WARN_ONCE(1, "VMXON faulted, MSR_IA32_FEAT_CTL (0x3a) = 0x%llx\n",
2213 rdmsrl_safe(MSR_IA32_FEAT_CTL, &msr) ? 0xdeadbeef : msr);
2214 intel_pt_handle_vmx(0);
2215 cr4_clear_bits(X86_CR4_VMXE);
2216
2217 return -EFAULT;
Dongxiao Xu7725b892010-05-11 18:29:38 +08002218}
2219
Radim Krčmář13a34e02014-08-28 15:13:03 +02002220static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002221{
2222 int cpu = raw_smp_processor_id();
2223 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002224 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002225
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07002226 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02002227 return -EBUSY;
2228
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002229 /*
2230 * This can happen if we hot-added a CPU but failed to allocate
2231 * VP assist page for it.
2232 */
2233 if (static_branch_unlikely(&enable_evmcs) &&
2234 !hv_get_vp_assist_page(cpu))
2235 return -EFAULT;
2236
Sean Christopherson4f6ea0a2020-03-21 12:37:51 -07002237 r = kvm_cpu_vmxon(phys_addr);
2238 if (r)
2239 return r;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002240
David Hildenbrandfdf288b2017-08-24 20:51:29 +02002241 if (enable_ept)
2242 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02002243
2244 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002245}
2246
Nadav Har'Eld462b812011-05-24 15:26:10 +03002247static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03002248{
2249 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03002250 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03002251
Nadav Har'Eld462b812011-05-24 15:26:10 +03002252 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
2253 loaded_vmcss_on_cpu_link)
2254 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03002255}
2256
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002257
2258/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
2259 * tricks.
2260 */
2261static void kvm_cpu_vmxoff(void)
2262{
Uros Bizjak4b1e5472018-10-11 19:40:44 +02002263 asm volatile (__ex("vmxoff"));
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03002264
2265 intel_pt_handle_vmx(0);
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002266 cr4_clear_bits(X86_CR4_VMXE);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002267}
2268
Radim Krčmář13a34e02014-08-28 15:13:03 +02002269static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002270{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002271 vmclear_local_loaded_vmcss();
2272 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002273}
2274
Sean Christopherson7a57c092020-03-12 11:04:16 -07002275/*
2276 * There is no X86_FEATURE for SGX yet, but anyway we need to query CPUID
2277 * directly instead of going through cpu_has(), to ensure KVM is trapping
2278 * ENCLS whenever it's supported in hardware. It does not matter whether
2279 * the host OS supports or has enabled SGX.
2280 */
2281static bool cpu_has_sgx(void)
2282{
2283 return cpuid_eax(0) >= 0x12 && (cpuid_eax(0x12) & BIT(0));
2284}
2285
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002286static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04002287 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002288{
2289 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002290 u32 ctl = ctl_min | ctl_opt;
2291
2292 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2293
2294 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
2295 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
2296
2297 /* Ensure minimum (required) set of control bits are supported. */
2298 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002299 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002300
2301 *result = ctl;
2302 return 0;
2303}
2304
Sean Christopherson7caaa712018-12-03 13:53:01 -08002305static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf,
2306 struct vmx_capability *vmx_cap)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002307{
2308 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08002309 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002310 u32 _pin_based_exec_control = 0;
2311 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002312 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002313 u32 _vmexit_control = 0;
2314 u32 _vmentry_control = 0;
2315
Paolo Bonzini13893092018-02-26 13:40:09 +01002316 memset(vmcs_conf, 0, sizeof(*vmcs_conf));
Raghavendra K T10166742012-02-07 23:19:20 +05302317 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002318#ifdef CONFIG_X86_64
2319 CPU_BASED_CR8_LOAD_EXITING |
2320 CPU_BASED_CR8_STORE_EXITING |
2321#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002322 CPU_BASED_CR3_LOAD_EXITING |
2323 CPU_BASED_CR3_STORE_EXITING |
Quan Xu8eb73e2d2017-12-12 16:44:21 +08002324 CPU_BASED_UNCOND_IO_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002325 CPU_BASED_MOV_DR_EXITING |
Xiaoyao Li5e3d3942019-12-06 16:45:26 +08002326 CPU_BASED_USE_TSC_OFFSETTING |
Wanpeng Li4d5422c2018-03-12 04:53:02 -07002327 CPU_BASED_MWAIT_EXITING |
2328 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02002329 CPU_BASED_INVLPG_EXITING |
2330 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06002331
Sheng Yangf78e0e22007-10-29 09:40:42 +08002332 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08002333 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08002334 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002335 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
2336 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002337 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002338#ifdef CONFIG_X86_64
2339 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2340 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
2341 ~CPU_BASED_CR8_STORE_EXITING;
2342#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08002343 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002344 min2 = 0;
2345 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08002346 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08002347 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08002348 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002349 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002350 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002351 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Paolo Bonzini0367f202016-07-12 10:44:55 +02002352 SECONDARY_EXEC_DESC |
Sean Christopherson7f3603b2020-09-23 09:50:47 -07002353 SECONDARY_EXEC_ENABLE_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08002354 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002355 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03002356 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08002357 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08002358 SECONDARY_EXEC_XSAVES |
David Hildenbrand736fdf72017-08-24 20:51:37 +02002359 SECONDARY_EXEC_RDSEED_EXITING |
2360 SECONDARY_EXEC_RDRAND_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08002361 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04002362 SECONDARY_EXEC_TSC_SCALING |
Tao Xue69e72fa2019-07-16 14:55:49 +08002363 SECONDARY_EXEC_ENABLE_USR_WAIT_PAUSE |
Chao Pengf99e3da2018-10-24 16:05:10 +08002364 SECONDARY_EXEC_PT_USE_GPA |
2365 SECONDARY_EXEC_PT_CONCEAL_VMX |
Sean Christopherson7a57c092020-03-12 11:04:16 -07002366 SECONDARY_EXEC_ENABLE_VMFUNC;
2367 if (cpu_has_sgx())
2368 opt2 |= SECONDARY_EXEC_ENCLS_EXITING;
Sheng Yangd56f5462008-04-25 10:13:16 +08002369 if (adjust_vmx_controls(min2, opt2,
2370 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002371 &_cpu_based_2nd_exec_control) < 0)
2372 return -EIO;
2373 }
2374#ifndef CONFIG_X86_64
2375 if (!(_cpu_based_2nd_exec_control &
2376 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
2377 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
2378#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08002379
2380 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2381 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08002382 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08002383 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
2384 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08002385
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002386 rdmsr_safe(MSR_IA32_VMX_EPT_VPID_CAP,
Sean Christopherson7caaa712018-12-03 13:53:01 -08002387 &vmx_cap->ept, &vmx_cap->vpid);
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002388
Sheng Yangd56f5462008-04-25 10:13:16 +08002389 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03002390 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
2391 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03002392 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
2393 CPU_BASED_CR3_STORE_EXITING |
2394 CPU_BASED_INVLPG_EXITING);
Sean Christopherson7caaa712018-12-03 13:53:01 -08002395 } else if (vmx_cap->ept) {
2396 vmx_cap->ept = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002397 pr_warn_once("EPT CAP should not exist if not support "
2398 "1-setting enable EPT VM-execution control\n");
2399 }
2400 if (!(_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_VPID) &&
Sean Christopherson7caaa712018-12-03 13:53:01 -08002401 vmx_cap->vpid) {
2402 vmx_cap->vpid = 0;
Wanpeng Li61f1dd92017-10-18 16:02:19 -07002403 pr_warn_once("VPID CAP should not exist if not support "
2404 "1-setting enable VPID VM-execution control\n");
Sheng Yangd56f5462008-04-25 10:13:16 +08002405 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002406
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002407 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002408#ifdef CONFIG_X86_64
2409 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
2410#endif
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002411 opt = VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL |
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002412 VM_EXIT_LOAD_IA32_PAT |
2413 VM_EXIT_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002414 VM_EXIT_CLEAR_BNDCFGS |
2415 VM_EXIT_PT_CONCEAL_PIP |
2416 VM_EXIT_CLEAR_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002417 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
2418 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002419 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002420
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01002421 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
2422 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
2423 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002424 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
2425 &_pin_based_exec_control) < 0)
2426 return -EIO;
2427
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02002428 if (cpu_has_broken_vmx_preemption_timer())
2429 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08002430 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02002431 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08002432 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
2433
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01002434 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002435 opt = VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL |
2436 VM_ENTRY_LOAD_IA32_PAT |
2437 VM_ENTRY_LOAD_IA32_EFER |
Chao Pengf99e3da2018-10-24 16:05:10 +08002438 VM_ENTRY_LOAD_BNDCFGS |
2439 VM_ENTRY_PT_CONCEAL_PIP |
2440 VM_ENTRY_LOAD_IA32_RTIT_CTL;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002441 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
2442 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002443 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002444
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002445 /*
2446 * Some cpus support VM_{ENTRY,EXIT}_IA32_PERF_GLOBAL_CTRL but they
2447 * can't be used due to an errata where VM Exit may incorrectly clear
2448 * IA32_PERF_GLOBAL_CTRL[34:32]. Workaround the errata by using the
2449 * MSR load mechanism to switch IA32_PERF_GLOBAL_CTRL.
2450 */
2451 if (boot_cpu_data.x86 == 0x6) {
2452 switch (boot_cpu_data.x86_model) {
2453 case 26: /* AAK155 */
2454 case 30: /* AAP115 */
2455 case 37: /* AAT100 */
2456 case 44: /* BC86,AAY89,BD102 */
2457 case 46: /* BA97 */
Sean Christopherson85ba2b12019-01-14 12:12:02 -08002458 _vmentry_control &= ~VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL;
Sean Christophersonc73da3f2018-12-03 13:53:00 -08002459 _vmexit_control &= ~VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL;
2460 pr_warn_once("kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
2461 "does not work properly. Using workaround\n");
2462 break;
2463 default:
2464 break;
2465 }
2466 }
2467
2468
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002469 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002470
2471 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
2472 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002473 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002474
2475#ifdef CONFIG_X86_64
2476 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
2477 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03002478 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002479#endif
2480
2481 /* Require Write-Back (WB) memory type for VMCS accesses. */
2482 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002483 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002484
Yang, Sheng002c7f72007-07-31 14:23:01 +03002485 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02002486 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03002487 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002488
Liran Alon2307af12018-06-29 22:59:04 +03002489 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002490
Yang, Sheng002c7f72007-07-31 14:23:01 +03002491 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
2492 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002493 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002494 vmcs_conf->vmexit_ctrl = _vmexit_control;
2495 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002496
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002497 if (static_branch_unlikely(&enable_evmcs))
2498 evmcs_sanitize_exec_ctrls(vmcs_conf);
2499
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002500 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002501}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002502
Ben Gardon41836832019-02-11 11:02:52 -08002503struct vmcs *alloc_vmcs_cpu(bool shadow, int cpu, gfp_t flags)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002504{
2505 int node = cpu_to_node(cpu);
2506 struct page *pages;
2507 struct vmcs *vmcs;
2508
Ben Gardon41836832019-02-11 11:02:52 -08002509 pages = __alloc_pages_node(node, flags, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002510 if (!pages)
2511 return NULL;
2512 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002513 memset(vmcs, 0, vmcs_config.size);
Liran Alon2307af12018-06-29 22:59:04 +03002514
2515 /* KVM supports Enlightened VMCS v1 only */
2516 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002517 vmcs->hdr.revision_id = KVM_EVMCS_VERSION;
Liran Alon2307af12018-06-29 22:59:04 +03002518 else
Liran Alon392b2f22018-06-23 02:35:01 +03002519 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002520
Liran Alon491a6032018-06-23 02:35:12 +03002521 if (shadow)
2522 vmcs->hdr.shadow_vmcs = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002523 return vmcs;
2524}
2525
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002526void free_vmcs(struct vmcs *vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002527{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002528 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002529}
2530
Nadav Har'Eld462b812011-05-24 15:26:10 +03002531/*
2532 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
2533 */
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002534void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Nadav Har'Eld462b812011-05-24 15:26:10 +03002535{
2536 if (!loaded_vmcs->vmcs)
2537 return;
2538 loaded_vmcs_clear(loaded_vmcs);
2539 free_vmcs(loaded_vmcs->vmcs);
2540 loaded_vmcs->vmcs = NULL;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002541 if (loaded_vmcs->msr_bitmap)
2542 free_page((unsigned long)loaded_vmcs->msr_bitmap);
Jim Mattson355f4fb2016-10-28 08:29:39 -07002543 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002544}
2545
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08002546int alloc_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002547{
Liran Alon491a6032018-06-23 02:35:12 +03002548 loaded_vmcs->vmcs = alloc_vmcs(false);
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002549 if (!loaded_vmcs->vmcs)
2550 return -ENOMEM;
2551
Sean Christophersond260f9e2020-03-21 12:37:50 -07002552 vmcs_clear(loaded_vmcs->vmcs);
2553
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002554 loaded_vmcs->shadow_vmcs = NULL;
Sean Christopherson804939e2019-05-07 12:18:05 -07002555 loaded_vmcs->hv_timer_soft_disabled = false;
Sean Christophersond260f9e2020-03-21 12:37:50 -07002556 loaded_vmcs->cpu = -1;
2557 loaded_vmcs->launched = 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002558
2559 if (cpu_has_vmx_msr_bitmap()) {
Ben Gardon41836832019-02-11 11:02:52 -08002560 loaded_vmcs->msr_bitmap = (unsigned long *)
2561 __get_free_page(GFP_KERNEL_ACCOUNT);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002562 if (!loaded_vmcs->msr_bitmap)
2563 goto out_vmcs;
2564 memset(loaded_vmcs->msr_bitmap, 0xff, PAGE_SIZE);
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02002565
Arnd Bergmann1f008e12018-05-25 17:36:17 +02002566 if (IS_ENABLED(CONFIG_HYPERV) &&
2567 static_branch_unlikely(&enable_evmcs) &&
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02002568 (ms_hyperv.nested_features & HV_X64_NESTED_MSR_BITMAP)) {
2569 struct hv_enlightened_vmcs *evmcs =
2570 (struct hv_enlightened_vmcs *)loaded_vmcs->vmcs;
2571
2572 evmcs->hv_enlightenments_control.msr_bitmap = 1;
2573 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002574 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07002575
2576 memset(&loaded_vmcs->host_state, 0, sizeof(struct vmcs_host_state));
Sean Christopherson3af80fe2019-05-07 12:18:00 -07002577 memset(&loaded_vmcs->controls_shadow, 0,
2578 sizeof(struct vmcs_controls_shadow));
Sean Christophersond7ee0392018-07-23 12:32:47 -07002579
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002580 return 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002581
2582out_vmcs:
2583 free_loaded_vmcs(loaded_vmcs);
2584 return -ENOMEM;
Paolo Bonzinif21f1652018-01-11 12:16:15 +01002585}
2586
Sam Ravnborg39959582007-06-01 00:47:13 -07002587static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002588{
2589 int cpu;
2590
Zachary Amsden3230bb42009-09-29 11:38:37 -10002591 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002592 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10002593 per_cpu(vmxarea, cpu) = NULL;
2594 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002595}
2596
Avi Kivity6aa8b732006-12-10 02:21:36 -08002597static __init int alloc_kvm_area(void)
2598{
2599 int cpu;
2600
Zachary Amsden3230bb42009-09-29 11:38:37 -10002601 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002602 struct vmcs *vmcs;
2603
Ben Gardon41836832019-02-11 11:02:52 -08002604 vmcs = alloc_vmcs_cpu(false, cpu, GFP_KERNEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002605 if (!vmcs) {
2606 free_kvm_area();
2607 return -ENOMEM;
2608 }
2609
Liran Alon2307af12018-06-29 22:59:04 +03002610 /*
2611 * When eVMCS is enabled, alloc_vmcs_cpu() sets
2612 * vmcs->revision_id to KVM_EVMCS_VERSION instead of
2613 * revision_id reported by MSR_IA32_VMX_BASIC.
2614 *
Linus Torvalds312a4662018-12-26 17:03:51 -08002615 * However, even though not explicitly documented by
Liran Alon2307af12018-06-29 22:59:04 +03002616 * TLFS, VMXArea passed as VMXON argument should
2617 * still be marked with revision_id reported by
2618 * physical CPU.
2619 */
2620 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03002621 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03002622
Avi Kivity6aa8b732006-12-10 02:21:36 -08002623 per_cpu(vmxarea, cpu) = vmcs;
2624 }
2625 return 0;
2626}
2627
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002628static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02002629 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002630{
Gleb Natapovd99e4152012-12-20 16:57:45 +02002631 if (!emulate_invalid_guest_state) {
2632 /*
2633 * CS and SS RPL should be equal during guest entry according
2634 * to VMX spec, but in reality it is not always so. Since vcpu
2635 * is in the middle of the transition from real mode to
2636 * protected mode it is safe to assume that RPL 0 is a good
2637 * default value.
2638 */
2639 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03002640 save->selector &= ~SEGMENT_RPL_MASK;
2641 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02002642 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002643 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02002644 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002645}
2646
2647static void enter_pmode(struct kvm_vcpu *vcpu)
2648{
2649 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002650 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002651
Gleb Natapovd99e4152012-12-20 16:57:45 +02002652 /*
2653 * Update real mode segment cache. It may be not up-to-date if sement
2654 * register was written while vcpu was in a guest mode.
2655 */
2656 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2657 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2658 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2659 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
2660 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2661 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
2662
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002663 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002664
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002665 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002666
2667 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002668 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2669 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002670 vmcs_writel(GUEST_RFLAGS, flags);
2671
Rusty Russell66aee912007-07-17 23:34:16 +10002672 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
2673 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002674
2675 update_exception_bitmap(vcpu);
2676
Gleb Natapov91b0aa22013-01-21 15:36:47 +02002677 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2678 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2679 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2680 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2681 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
2682 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002683}
2684
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002685static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002686{
Mathias Krause772e0312012-08-30 01:30:19 +02002687 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02002688 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002689
Gleb Natapovd99e4152012-12-20 16:57:45 +02002690 var.dpl = 0x3;
2691 if (seg == VCPU_SREG_CS)
2692 var.type = 0x3;
2693
2694 if (!emulate_invalid_guest_state) {
2695 var.selector = var.base >> 4;
2696 var.base = var.base & 0xffff0;
2697 var.limit = 0xffff;
2698 var.g = 0;
2699 var.db = 0;
2700 var.present = 1;
2701 var.s = 1;
2702 var.l = 0;
2703 var.unusable = 0;
2704 var.type = 0x3;
2705 var.avl = 0;
2706 if (save->base & 0xf)
2707 printk_once(KERN_WARNING "kvm: segment base is not "
2708 "paragraph aligned when entering "
2709 "protected mode (seg=%d)", seg);
2710 }
2711
2712 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05002713 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02002714 vmcs_write32(sf->limit, var.limit);
2715 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002716}
2717
2718static void enter_rmode(struct kvm_vcpu *vcpu)
2719{
2720 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002721 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002722 struct kvm_vmx *kvm_vmx = to_kvm_vmx(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002723
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002724 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
2725 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
2726 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
2727 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
2728 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02002729 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
2730 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03002731
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002732 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002733
Gleb Natapov776e58e2011-03-13 12:34:27 +02002734 /*
2735 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01002736 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02002737 */
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002738 if (!kvm_vmx->tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02002739 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
2740 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02002741
Avi Kivity2fb92db2011-04-27 19:42:18 +03002742 vmx_segment_cache_clear(vmx);
2743
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07002744 vmcs_writel(GUEST_TR_BASE, kvm_vmx->tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002745 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002746 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2747
2748 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002749 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002750
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002751 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002752
2753 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10002754 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002755 update_exception_bitmap(vcpu);
2756
Gleb Natapovd99e4152012-12-20 16:57:45 +02002757 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
2758 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
2759 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
2760 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
2761 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
2762 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002763
Eddie Dong8668a3c2007-10-10 14:26:45 +08002764 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002765}
2766
Sean Christopherson97b7ead2018-12-03 13:53:16 -08002767void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
Amit Shah401d10d2009-02-20 22:53:37 +05302768{
2769 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07002770 struct vmx_uret_msr *msr = find_msr_entry(vmx, MSR_EFER);
Avi Kivity26bb0982009-09-07 11:14:12 +03002771
2772 if (!msr)
2773 return;
Amit Shah401d10d2009-02-20 22:53:37 +05302774
Avi Kivityf6801df2010-01-21 15:31:50 +02002775 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05302776 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002777 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302778 msr->data = efer;
2779 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002780 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05302781
2782 msr->data = efer & ~EFER_LME;
2783 }
2784 setup_msrs(vmx);
2785}
2786
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002787#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002788
2789static void enter_lmode(struct kvm_vcpu *vcpu)
2790{
2791 u32 guest_tr_ar;
2792
Avi Kivity2fb92db2011-04-27 19:42:18 +03002793 vmx_segment_cache_clear(to_vmx(vcpu));
2794
Avi Kivity6aa8b732006-12-10 02:21:36 -08002795 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002796 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02002797 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
2798 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002799 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07002800 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
2801 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002802 }
Avi Kivityda38f432010-07-06 11:30:49 +03002803 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002804}
2805
2806static void exit_lmode(struct kvm_vcpu *vcpu)
2807{
Gleb Natapov2961e8762013-11-25 15:37:13 +02002808 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03002809 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002810}
2811
2812#endif
2813
Sean Christopherson77809382020-03-20 14:28:18 -07002814static void vmx_flush_tlb_all(struct kvm_vcpu *vcpu)
Sean Christopherson5058b692020-03-20 14:28:14 -07002815{
2816 struct vcpu_vmx *vmx = to_vmx(vcpu);
2817
2818 /*
Sean Christopherson77809382020-03-20 14:28:18 -07002819 * INVEPT must be issued when EPT is enabled, irrespective of VPID, as
2820 * the CPU is not required to invalidate guest-physical mappings on
2821 * VM-Entry, even if VPID is disabled. Guest-physical mappings are
2822 * associated with the root EPT structure and not any particular VPID
2823 * (INVVPID also isn't required to invalidate guest-physical mappings).
Sean Christopherson5058b692020-03-20 14:28:14 -07002824 */
2825 if (enable_ept) {
2826 ept_sync_global();
2827 } else if (enable_vpid) {
2828 if (cpu_has_vmx_invvpid_global()) {
2829 vpid_sync_vcpu_global();
2830 } else {
2831 vpid_sync_vcpu_single(vmx->vpid);
2832 vpid_sync_vcpu_single(vmx->nested.vpid02);
2833 }
2834 }
2835}
2836
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002837static void vmx_flush_tlb_current(struct kvm_vcpu *vcpu)
2838{
Sean Christopherson2a40b902020-07-15 20:41:18 -07002839 struct kvm_mmu *mmu = vcpu->arch.mmu;
2840 u64 root_hpa = mmu->root_hpa;
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002841
2842 /* No flush required if the current context is invalid. */
2843 if (!VALID_PAGE(root_hpa))
2844 return;
2845
2846 if (enable_ept)
Sean Christopherson2a40b902020-07-15 20:41:18 -07002847 ept_sync_context(construct_eptp(vcpu, root_hpa,
2848 mmu->shadow_root_level));
Sean Christopherson33d19ec2020-03-20 14:28:16 -07002849 else if (!is_guest_mode(vcpu))
2850 vpid_sync_context(to_vmx(vcpu)->vpid);
2851 else
2852 vpid_sync_context(nested_get_vpid02(vcpu));
2853}
2854
Junaid Shahidfaff8752018-06-29 13:10:05 -07002855static void vmx_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t addr)
2856{
Junaid Shahidfaff8752018-06-29 13:10:05 -07002857 /*
Sean Christophersonad104b52020-03-20 14:28:11 -07002858 * vpid_sync_vcpu_addr() is a nop if vmx->vpid==0, see the comment in
2859 * vmx_flush_tlb_guest() for an explanation of why this is ok.
Junaid Shahidfaff8752018-06-29 13:10:05 -07002860 */
Sean Christophersonad104b52020-03-20 14:28:11 -07002861 vpid_sync_vcpu_addr(to_vmx(vcpu)->vpid, addr);
Junaid Shahidfaff8752018-06-29 13:10:05 -07002862}
2863
Sean Christophersone64419d2020-03-20 14:28:10 -07002864static void vmx_flush_tlb_guest(struct kvm_vcpu *vcpu)
2865{
2866 /*
2867 * vpid_sync_context() is a nop if vmx->vpid==0, e.g. if enable_vpid==0
2868 * or a vpid couldn't be allocated for this vCPU. VM-Enter and VM-Exit
2869 * are required to flush GVA->{G,H}PA mappings from the TLB if vpid is
2870 * disabled (VM-Enter with vpid enabled and vpid==0 is disallowed),
2871 * i.e. no explicit INVVPID is necessary.
2872 */
2873 vpid_sync_context(to_vmx(vcpu)->vpid);
2874}
2875
Peter Shier43fea4e2020-08-20 16:05:45 -07002876void vmx_ept_load_pdptrs(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08002877{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002878 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
2879
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002880 if (!kvm_register_is_dirty(vcpu, VCPU_EXREG_PDPTR))
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002881 return;
2882
Paolo Bonzinibf03d4f2019-06-06 18:52:44 +02002883 if (is_pae_paging(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002884 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
2885 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
2886 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
2887 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08002888 }
2889}
2890
Sean Christopherson97b7ead2018-12-03 13:53:16 -08002891void ept_save_pdptrs(struct kvm_vcpu *vcpu)
Avi Kivity8f5d5492009-05-31 18:41:29 +03002892{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03002893 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
2894
Sean Christopherson9932b492020-04-15 13:34:50 -07002895 if (WARN_ON_ONCE(!is_pae_paging(vcpu)))
2896 return;
2897
2898 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
2899 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
2900 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
2901 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002902
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002903 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002904}
2905
Sheng Yang14394422008-04-28 12:24:45 +08002906static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
2907 unsigned long cr0,
2908 struct kvm_vcpu *vcpu)
2909{
Sean Christopherson2183f562019-05-07 12:17:56 -07002910 struct vcpu_vmx *vmx = to_vmx(vcpu);
2911
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07002912 if (!kvm_register_is_available(vcpu, VCPU_EXREG_CR3))
Sean Christopherson34059c22019-09-27 14:45:23 -07002913 vmx_cache_reg(vcpu, VCPU_EXREG_CR3);
Sheng Yang14394422008-04-28 12:24:45 +08002914 if (!(cr0 & X86_CR0_PG)) {
2915 /* From paging/starting to nonpaging */
Sean Christopherson2183f562019-05-07 12:17:56 -07002916 exec_controls_setbit(vmx, CPU_BASED_CR3_LOAD_EXITING |
2917 CPU_BASED_CR3_STORE_EXITING);
Sheng Yang14394422008-04-28 12:24:45 +08002918 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002919 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002920 } else if (!is_paging(vcpu)) {
2921 /* From nonpaging to paging */
Sean Christopherson2183f562019-05-07 12:17:56 -07002922 exec_controls_clearbit(vmx, CPU_BASED_CR3_LOAD_EXITING |
2923 CPU_BASED_CR3_STORE_EXITING);
Sheng Yang14394422008-04-28 12:24:45 +08002924 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002925 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002926 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08002927
2928 if (!(cr0 & X86_CR0_WP))
2929 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08002930}
2931
Sean Christopherson97b7ead2018-12-03 13:53:16 -08002932void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002933{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002934 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002935 unsigned long hw_cr0;
2936
Sean Christopherson3de63472018-07-13 08:42:30 -07002937 hw_cr0 = (cr0 & ~KVM_VM_CR0_ALWAYS_OFF);
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00002938 if (is_unrestricted_guest(vcpu))
Gleb Natapov50378782013-02-04 16:00:28 +02002939 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02002940 else {
Gleb Natapov50378782013-02-04 16:00:28 +02002941 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08002942
Gleb Natapov218e7632013-01-21 15:36:45 +02002943 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
2944 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002945
Gleb Natapov218e7632013-01-21 15:36:45 +02002946 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
2947 enter_rmode(vcpu);
2948 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002949
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002950#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002951 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002952 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002953 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10002954 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002955 exit_lmode(vcpu);
2956 }
2957#endif
2958
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00002959 if (enable_ept && !is_unrestricted_guest(vcpu))
Sheng Yang14394422008-04-28 12:24:45 +08002960 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
2961
Avi Kivity6aa8b732006-12-10 02:21:36 -08002962 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08002963 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002964 vcpu->arch.cr0 = cr0;
Sean Christophersonbd31fe42020-05-01 21:32:31 -07002965 kvm_register_mark_available(vcpu, VCPU_EXREG_CR0);
Gleb Natapov14168782013-01-21 15:36:49 +02002966
2967 /* depends on vcpu->arch.cr0 to be set to a new value */
2968 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002969}
2970
Sean Christophersond468d942020-07-15 20:41:20 -07002971static int vmx_get_max_tdp_level(void)
Sean Christopherson0047fca2020-05-01 21:32:33 -07002972{
Sean Christophersond468d942020-07-15 20:41:20 -07002973 if (cpu_has_vmx_ept_5levels())
Sean Christopherson0047fca2020-05-01 21:32:33 -07002974 return 5;
2975 return 4;
2976}
2977
Sean Christopherson2a40b902020-07-15 20:41:18 -07002978u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa,
2979 int root_level)
Sheng Yang14394422008-04-28 12:24:45 +08002980{
Yu Zhang855feb62017-08-24 20:27:55 +08002981 u64 eptp = VMX_EPTP_MT_WB;
Sheng Yang14394422008-04-28 12:24:45 +08002982
Sean Christopherson2a40b902020-07-15 20:41:18 -07002983 eptp |= (root_level == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08002984
Peter Feiner995f00a2017-06-30 17:26:32 -07002985 if (enable_ept_ad_bits &&
2986 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02002987 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08002988 eptp |= (root_hpa & PAGE_MASK);
2989
2990 return eptp;
2991}
2992
Sean Christopherson2a40b902020-07-15 20:41:18 -07002993static void vmx_load_mmu_pgd(struct kvm_vcpu *vcpu, unsigned long pgd,
2994 int pgd_level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002995{
Tianyu Lan877ad952018-07-19 08:40:23 +00002996 struct kvm *kvm = vcpu->kvm;
Sean Christopherson04f11ef2019-09-27 14:45:16 -07002997 bool update_guest_cr3 = true;
Sheng Yang14394422008-04-28 12:24:45 +08002998 unsigned long guest_cr3;
2999 u64 eptp;
3000
Avi Kivity089d0342009-03-23 18:26:32 +02003001 if (enable_ept) {
Sean Christopherson2a40b902020-07-15 20:41:18 -07003002 eptp = construct_eptp(vcpu, pgd, pgd_level);
Sheng Yang14394422008-04-28 12:24:45 +08003003 vmcs_write64(EPT_POINTER, eptp);
Tianyu Lan877ad952018-07-19 08:40:23 +00003004
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003005 if (kvm_x86_ops.tlb_remote_flush) {
Tianyu Lan877ad952018-07-19 08:40:23 +00003006 spin_lock(&to_kvm_vmx(kvm)->ept_pointer_lock);
3007 to_vmx(vcpu)->ept_pointer = eptp;
3008 to_kvm_vmx(kvm)->ept_pointers_match
3009 = EPT_POINTERS_CHECK;
3010 spin_unlock(&to_kvm_vmx(kvm)->ept_pointer_lock);
3011 }
3012
Paolo Bonzinidf7e0682020-05-20 08:37:37 -04003013 if (!enable_unrestricted_guest && !is_paging(vcpu))
Tianyu Lan877ad952018-07-19 08:40:23 +00003014 guest_cr3 = to_kvm_vmx(kvm)->ept_identity_map_addr;
Sean Christophersonb17b7432019-09-27 14:45:17 -07003015 else if (test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3016 guest_cr3 = vcpu->arch.cr3;
3017 else /* vmcs01.GUEST_CR3 is already up-to-date. */
3018 update_guest_cr3 = false;
Peter Shier43fea4e2020-08-20 16:05:45 -07003019 vmx_ept_load_pdptrs(vcpu);
Sean Christophersonbe100ef2020-03-20 14:28:33 -07003020 } else {
3021 guest_cr3 = pgd;
Sheng Yang14394422008-04-28 12:24:45 +08003022 }
3023
Sean Christopherson04f11ef2019-09-27 14:45:16 -07003024 if (update_guest_cr3)
3025 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003026}
3027
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003028int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003029{
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003030 struct vcpu_vmx *vmx = to_vmx(vcpu);
Ben Serebrin085e68e2015-04-16 11:58:05 -07003031 /*
3032 * Pass through host's Machine Check Enable value to hw_cr4, which
3033 * is in force while we are in guest mode. Do not let guests control
3034 * this bit, even if host CR4.MCE == 0.
3035 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003036 unsigned long hw_cr4;
3037
3038 hw_cr4 = (cr4_read_shadow() & X86_CR4_MCE) | (cr4 & ~X86_CR4_MCE);
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003039 if (is_unrestricted_guest(vcpu))
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003040 hw_cr4 |= KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST;
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003041 else if (vmx->rmode.vm86_active)
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003042 hw_cr4 |= KVM_RMODE_VM_CR4_ALWAYS_ON;
3043 else
3044 hw_cr4 |= KVM_PMODE_VM_CR4_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003045
Sean Christopherson64f7a112018-04-30 10:01:06 -07003046 if (!boot_cpu_has(X86_FEATURE_UMIP) && vmx_umip_emulated()) {
3047 if (cr4 & X86_CR4_UMIP) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003048 secondary_exec_controls_setbit(vmx, SECONDARY_EXEC_DESC);
Sean Christopherson64f7a112018-04-30 10:01:06 -07003049 hw_cr4 &= ~X86_CR4_UMIP;
3050 } else if (!is_guest_mode(vcpu) ||
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003051 !nested_cpu_has2(get_vmcs12(vcpu), SECONDARY_EXEC_DESC)) {
3052 secondary_exec_controls_clearbit(vmx, SECONDARY_EXEC_DESC);
3053 }
Sean Christopherson64f7a112018-04-30 10:01:06 -07003054 }
Paolo Bonzini0367f202016-07-12 10:44:55 +02003055
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003056 if (cr4 & X86_CR4_VMXE) {
3057 /*
3058 * To use VMXON (and later other VMX instructions), a guest
3059 * must first be able to turn on cr4.VMXE (see handle_vmon()).
3060 * So basically the check on whether to allow nested VMX
Paolo Bonzini5bea5122018-09-18 15:19:17 +02003061 * is here. We operate under the default treatment of SMM,
3062 * so VMX cannot be enabled under SMM.
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003063 */
Paolo Bonzini5bea5122018-09-18 15:19:17 +02003064 if (!nested_vmx_allowed(vcpu) || is_smm(vcpu))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003065 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01003066 }
David Matlack38991522016-11-29 18:14:08 -08003067
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003068 if (vmx->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003069 return 1;
3070
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003071 vcpu->arch.cr4 = cr4;
Sean Christophersonf98c1e72020-05-01 21:32:30 -07003072 kvm_register_mark_available(vcpu, VCPU_EXREG_CR4);
Sheng Yang14394422008-04-28 12:24:45 +08003073
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003074 if (!is_unrestricted_guest(vcpu)) {
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003075 if (enable_ept) {
3076 if (!is_paging(vcpu)) {
3077 hw_cr4 &= ~X86_CR4_PAE;
3078 hw_cr4 |= X86_CR4_PSE;
3079 } else if (!(cr4 & X86_CR4_PAE)) {
3080 hw_cr4 &= ~X86_CR4_PAE;
3081 }
3082 }
3083
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003084 /*
Huaitong Handdba2622016-03-22 16:51:15 +08003085 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
3086 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
3087 * to be manually disabled when guest switches to non-paging
3088 * mode.
3089 *
3090 * If !enable_unrestricted_guest, the CPU is always running
3091 * with CR0.PG=1 and CR4 needs to be modified.
3092 * If enable_unrestricted_guest, the CPU automatically
3093 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003094 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08003095 if (!is_paging(vcpu))
3096 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
3097 }
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003098
Sheng Yang14394422008-04-28 12:24:45 +08003099 vmcs_writel(CR4_READ_SHADOW, cr4);
3100 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003101 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003102}
3103
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003104void vmx_get_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003105{
Avi Kivitya9179492011-01-03 14:28:52 +02003106 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003107 u32 ar;
3108
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003109 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003110 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02003111 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03003112 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003113 return;
Avi Kivity1390a282012-08-21 17:07:08 +03003114 var->base = vmx_read_guest_seg_base(vmx, seg);
3115 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3116 return;
Avi Kivitya9179492011-01-03 14:28:52 +02003117 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003118 var->base = vmx_read_guest_seg_base(vmx, seg);
3119 var->limit = vmx_read_guest_seg_limit(vmx, seg);
3120 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3121 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03003122 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003123 var->type = ar & 15;
3124 var->s = (ar >> 4) & 1;
3125 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03003126 /*
3127 * Some userspaces do not preserve unusable property. Since usable
3128 * segment has to be present according to VMX spec we can use present
3129 * property to amend userspace bug by making unusable segment always
3130 * nonpresent. vmx_segment_access_rights() already marks nonpresent
3131 * segment as unusable.
3132 */
3133 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003134 var->avl = (ar >> 12) & 1;
3135 var->l = (ar >> 13) & 1;
3136 var->db = (ar >> 14) & 1;
3137 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003138}
3139
Avi Kivitya9179492011-01-03 14:28:52 +02003140static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
3141{
Avi Kivitya9179492011-01-03 14:28:52 +02003142 struct kvm_segment s;
3143
3144 if (to_vmx(vcpu)->rmode.vm86_active) {
3145 vmx_get_segment(vcpu, &s, seg);
3146 return s.base;
3147 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003148 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003149}
3150
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003151int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02003152{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003153 struct vcpu_vmx *vmx = to_vmx(vcpu);
3154
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003155 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02003156 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003157 else {
3158 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003159 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003160 }
Avi Kivity69c73022011-03-07 15:26:44 +02003161}
3162
Avi Kivity653e3102007-05-07 10:55:37 +03003163static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003164{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003165 u32 ar;
3166
Avi Kivityf0495f92012-06-07 17:06:10 +03003167 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003168 ar = 1 << 16;
3169 else {
3170 ar = var->type & 15;
3171 ar |= (var->s & 1) << 4;
3172 ar |= (var->dpl & 3) << 5;
3173 ar |= (var->present & 1) << 7;
3174 ar |= (var->avl & 1) << 12;
3175 ar |= (var->l & 1) << 13;
3176 ar |= (var->db & 1) << 14;
3177 ar |= (var->g & 1) << 15;
3178 }
Avi Kivity653e3102007-05-07 10:55:37 +03003179
3180 return ar;
3181}
3182
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003183void vmx_set_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg)
Avi Kivity653e3102007-05-07 10:55:37 +03003184{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003185 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02003186 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03003187
Avi Kivity2fb92db2011-04-27 19:42:18 +03003188 vmx_segment_cache_clear(vmx);
3189
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003190 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
3191 vmx->rmode.segs[seg] = *var;
3192 if (seg == VCPU_SREG_TR)
3193 vmcs_write16(sf->selector, var->selector);
3194 else if (var->s)
3195 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02003196 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03003197 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003198
Avi Kivity653e3102007-05-07 10:55:37 +03003199 vmcs_writel(sf->base, var->base);
3200 vmcs_write32(sf->limit, var->limit);
3201 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003202
3203 /*
3204 * Fix the "Accessed" bit in AR field of segment registers for older
3205 * qemu binaries.
3206 * IA32 arch specifies that at the time of processor reset the
3207 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08003208 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003209 * state vmexit when "unrestricted guest" mode is turned on.
3210 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3211 * tree. Newer qemu binaries with that qemu fix would not need this
3212 * kvm hack.
3213 */
Krish Sadhukhanbddd82d2020-09-21 08:10:25 +00003214 if (is_unrestricted_guest(vcpu) && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02003215 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003216
Gleb Natapovf924d662012-12-12 19:10:55 +02003217 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02003218
3219out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01003220 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003221}
3222
Avi Kivity6aa8b732006-12-10 02:21:36 -08003223static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
3224{
Avi Kivity2fb92db2011-04-27 19:42:18 +03003225 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003226
3227 *db = (ar >> 14) & 1;
3228 *l = (ar >> 13) & 1;
3229}
3230
Gleb Natapov89a27f42010-02-16 10:51:48 +02003231static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003232{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003233 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
3234 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003235}
3236
Gleb Natapov89a27f42010-02-16 10:51:48 +02003237static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003238{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003239 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
3240 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003241}
3242
Gleb Natapov89a27f42010-02-16 10:51:48 +02003243static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003244{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003245 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
3246 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003247}
3248
Gleb Natapov89a27f42010-02-16 10:51:48 +02003249static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003250{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003251 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
3252 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003253}
3254
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003255static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
3256{
3257 struct kvm_segment var;
3258 u32 ar;
3259
3260 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02003261 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02003262 if (seg == VCPU_SREG_CS)
3263 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003264 ar = vmx_segment_access_rights(&var);
3265
3266 if (var.base != (var.selector << 4))
3267 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02003268 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003269 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02003270 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003271 return false;
3272
3273 return true;
3274}
3275
3276static bool code_segment_valid(struct kvm_vcpu *vcpu)
3277{
3278 struct kvm_segment cs;
3279 unsigned int cs_rpl;
3280
3281 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003282 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003283
Avi Kivity1872a3f2009-01-04 23:26:52 +02003284 if (cs.unusable)
3285 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003286 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003287 return false;
3288 if (!cs.s)
3289 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003290 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003291 if (cs.dpl > cs_rpl)
3292 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003293 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003294 if (cs.dpl != cs_rpl)
3295 return false;
3296 }
3297 if (!cs.present)
3298 return false;
3299
3300 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
3301 return true;
3302}
3303
3304static bool stack_segment_valid(struct kvm_vcpu *vcpu)
3305{
3306 struct kvm_segment ss;
3307 unsigned int ss_rpl;
3308
3309 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03003310 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003311
Avi Kivity1872a3f2009-01-04 23:26:52 +02003312 if (ss.unusable)
3313 return true;
3314 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003315 return false;
3316 if (!ss.s)
3317 return false;
3318 if (ss.dpl != ss_rpl) /* DPL != RPL */
3319 return false;
3320 if (!ss.present)
3321 return false;
3322
3323 return true;
3324}
3325
3326static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
3327{
3328 struct kvm_segment var;
3329 unsigned int rpl;
3330
3331 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03003332 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003333
Avi Kivity1872a3f2009-01-04 23:26:52 +02003334 if (var.unusable)
3335 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003336 if (!var.s)
3337 return false;
3338 if (!var.present)
3339 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003340 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003341 if (var.dpl < rpl) /* DPL < RPL */
3342 return false;
3343 }
3344
3345 /* TODO: Add other members to kvm_segment_field to allow checking for other access
3346 * rights flags
3347 */
3348 return true;
3349}
3350
3351static bool tr_valid(struct kvm_vcpu *vcpu)
3352{
3353 struct kvm_segment tr;
3354
3355 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
3356
Avi Kivity1872a3f2009-01-04 23:26:52 +02003357 if (tr.unusable)
3358 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03003359 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003360 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003361 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003362 return false;
3363 if (!tr.present)
3364 return false;
3365
3366 return true;
3367}
3368
3369static bool ldtr_valid(struct kvm_vcpu *vcpu)
3370{
3371 struct kvm_segment ldtr;
3372
3373 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
3374
Avi Kivity1872a3f2009-01-04 23:26:52 +02003375 if (ldtr.unusable)
3376 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03003377 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003378 return false;
3379 if (ldtr.type != 2)
3380 return false;
3381 if (!ldtr.present)
3382 return false;
3383
3384 return true;
3385}
3386
3387static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
3388{
3389 struct kvm_segment cs, ss;
3390
3391 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3392 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3393
Nadav Amitb32a9912015-03-29 16:33:04 +03003394 return ((cs.selector & SEGMENT_RPL_MASK) ==
3395 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003396}
3397
3398/*
3399 * Check if guest state is valid. Returns true if valid, false if
3400 * not.
3401 * We assume that registers are always usable
3402 */
Sean Christopherson2ba44932020-09-23 11:44:48 -07003403bool __vmx_guest_state_valid(struct kvm_vcpu *vcpu)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003404{
3405 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03003406 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003407 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
3408 return false;
3409 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
3410 return false;
3411 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
3412 return false;
3413 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
3414 return false;
3415 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
3416 return false;
3417 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
3418 return false;
3419 } else {
3420 /* protected mode guest state checks */
3421 if (!cs_ss_rpl_check(vcpu))
3422 return false;
3423 if (!code_segment_valid(vcpu))
3424 return false;
3425 if (!stack_segment_valid(vcpu))
3426 return false;
3427 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
3428 return false;
3429 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
3430 return false;
3431 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
3432 return false;
3433 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
3434 return false;
3435 if (!tr_valid(vcpu))
3436 return false;
3437 if (!ldtr_valid(vcpu))
3438 return false;
3439 }
3440 /* TODO:
3441 * - Add checks on RIP
3442 * - Add checks on RFLAGS
3443 */
3444
3445 return true;
3446}
3447
Mike Dayd77c26f2007-10-08 09:02:08 -04003448static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003449{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003450 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02003451 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02003452 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003453
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003454 idx = srcu_read_lock(&kvm->srcu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003455 fn = to_kvm_vmx(kvm)->tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02003456 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3457 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003458 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003459 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08003460 r = kvm_write_guest_page(kvm, fn++, &data,
3461 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02003462 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003463 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003464 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
3465 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003466 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003467 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3468 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003469 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003470 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003471 r = kvm_write_guest_page(kvm, fn, &data,
3472 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
3473 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003474out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003475 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02003476 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003477}
3478
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003479static int init_rmode_identity_map(struct kvm *kvm)
3480{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003481 struct kvm_vmx *kvm_vmx = to_kvm_vmx(kvm);
Peter Xu2a5755b2020-01-09 09:57:14 -05003482 int i, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08003483 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003484 u32 tmp;
3485
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003486 /* Protect kvm_vmx->ept_identity_pagetable_done. */
Tang Chena255d472014-09-16 18:41:58 +08003487 mutex_lock(&kvm->slots_lock);
3488
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003489 if (likely(kvm_vmx->ept_identity_pagetable_done))
Peter Xu2a5755b2020-01-09 09:57:14 -05003490 goto out;
Tang Chena255d472014-09-16 18:41:58 +08003491
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003492 if (!kvm_vmx->ept_identity_map_addr)
3493 kvm_vmx->ept_identity_map_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
3494 identity_map_pfn = kvm_vmx->ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08003495
David Hildenbrandd8a6e362017-08-24 20:51:34 +02003496 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003497 kvm_vmx->ept_identity_map_addr, PAGE_SIZE);
Tang Chenf51770e2014-09-16 18:41:59 +08003498 if (r < 0)
Peter Xu2a5755b2020-01-09 09:57:14 -05003499 goto out;
Tang Chena255d472014-09-16 18:41:58 +08003500
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003501 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
3502 if (r < 0)
3503 goto out;
3504 /* Set up identity-mapping pagetable for EPT in real mode */
3505 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
3506 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
3507 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
3508 r = kvm_write_guest_page(kvm, identity_map_pfn,
3509 &tmp, i * sizeof(tmp), sizeof(tmp));
3510 if (r < 0)
3511 goto out;
3512 }
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07003513 kvm_vmx->ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08003514
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003515out:
Tang Chena255d472014-09-16 18:41:58 +08003516 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08003517 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003518}
3519
Avi Kivity6aa8b732006-12-10 02:21:36 -08003520static void seg_setup(int seg)
3521{
Mathias Krause772e0312012-08-30 01:30:19 +02003522 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003523 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003524
3525 vmcs_write16(sf->selector, 0);
3526 vmcs_writel(sf->base, 0);
3527 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02003528 ar = 0x93;
3529 if (seg == VCPU_SREG_CS)
3530 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003531
3532 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003533}
3534
Sheng Yangf78e0e22007-10-29 09:40:42 +08003535static int alloc_apic_access_page(struct kvm *kvm)
3536{
Xiao Guangrong44841412012-09-07 14:14:20 +08003537 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003538 int r = 0;
3539
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003540 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08003541 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003542 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02003543 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
3544 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003545 if (r)
3546 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02003547
Tang Chen73a6d942014-09-11 13:38:00 +08003548 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08003549 if (is_error_page(page)) {
3550 r = -EFAULT;
3551 goto out;
3552 }
3553
Tang Chenc24ae0d2014-09-24 15:57:58 +08003554 /*
3555 * Do not pin the page in memory, so that memory hot-unplug
3556 * is able to migrate it.
3557 */
3558 put_page(page);
3559 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003560out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003561 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003562 return r;
3563}
3564
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003565int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003566{
3567 int vpid;
3568
Avi Kivity919818a2009-03-23 18:01:29 +02003569 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08003570 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003571 spin_lock(&vmx_vpid_lock);
3572 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003573 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003574 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003575 else
3576 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003577 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003578 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003579}
3580
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003581void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003582{
Wanpeng Li991e7a02015-09-16 17:30:05 +08003583 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003584 return;
3585 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08003586 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003587 spin_unlock(&vmx_vpid_lock);
3588}
3589
Yi Wang1e4329ee2018-11-08 11:22:21 +08003590static __always_inline void vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003591 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08003592{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003593 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08003594
3595 if (!cpu_has_vmx_msr_bitmap())
3596 return;
3597
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003598 if (static_branch_unlikely(&enable_evmcs))
3599 evmcs_touch_msr_bitmap();
3600
Sheng Yang25c5f222008-03-28 13:18:56 +08003601 /*
3602 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
3603 * have the write-low and read-high bitmap offsets the wrong way round.
3604 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
3605 */
Sheng Yang25c5f222008-03-28 13:18:56 +08003606 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08003607 if (type & MSR_TYPE_R)
3608 /* read-low */
3609 __clear_bit(msr, msr_bitmap + 0x000 / f);
3610
3611 if (type & MSR_TYPE_W)
3612 /* write-low */
3613 __clear_bit(msr, msr_bitmap + 0x800 / f);
3614
Sheng Yang25c5f222008-03-28 13:18:56 +08003615 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
3616 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08003617 if (type & MSR_TYPE_R)
3618 /* read-high */
3619 __clear_bit(msr, msr_bitmap + 0x400 / f);
3620
3621 if (type & MSR_TYPE_W)
3622 /* write-high */
3623 __clear_bit(msr, msr_bitmap + 0xc00 / f);
3624
3625 }
3626}
3627
Yi Wang1e4329ee2018-11-08 11:22:21 +08003628static __always_inline void vmx_enable_intercept_for_msr(unsigned long *msr_bitmap,
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003629 u32 msr, int type)
3630{
3631 int f = sizeof(unsigned long);
3632
3633 if (!cpu_has_vmx_msr_bitmap())
3634 return;
3635
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02003636 if (static_branch_unlikely(&enable_evmcs))
3637 evmcs_touch_msr_bitmap();
3638
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003639 /*
3640 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
3641 * have the write-low and read-high bitmap offsets the wrong way round.
3642 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
3643 */
3644 if (msr <= 0x1fff) {
3645 if (type & MSR_TYPE_R)
3646 /* read-low */
3647 __set_bit(msr, msr_bitmap + 0x000 / f);
3648
3649 if (type & MSR_TYPE_W)
3650 /* write-low */
3651 __set_bit(msr, msr_bitmap + 0x800 / f);
3652
3653 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
3654 msr &= 0x1fff;
3655 if (type & MSR_TYPE_R)
3656 /* read-high */
3657 __set_bit(msr, msr_bitmap + 0x400 / f);
3658
3659 if (type & MSR_TYPE_W)
3660 /* write-high */
3661 __set_bit(msr, msr_bitmap + 0xc00 / f);
3662
3663 }
3664}
3665
Yi Wang1e4329ee2018-11-08 11:22:21 +08003666static __always_inline void vmx_set_intercept_for_msr(unsigned long *msr_bitmap,
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003667 u32 msr, int type, bool value)
3668{
3669 if (value)
3670 vmx_enable_intercept_for_msr(msr_bitmap, msr, type);
3671 else
3672 vmx_disable_intercept_for_msr(msr_bitmap, msr, type);
3673}
3674
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003675static u8 vmx_msr_bitmap_mode(struct kvm_vcpu *vcpu)
Avi Kivity58972972009-02-24 22:26:47 +02003676{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003677 u8 mode = 0;
3678
3679 if (cpu_has_secondary_exec_ctrls() &&
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003680 (secondary_exec_controls_get(to_vmx(vcpu)) &
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003681 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
3682 mode |= MSR_BITMAP_MODE_X2APIC;
3683 if (enable_apicv && kvm_vcpu_apicv_active(vcpu))
3684 mode |= MSR_BITMAP_MODE_X2APIC_APICV;
3685 }
3686
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003687 return mode;
Yang Zhang8d146952013-01-25 10:18:50 +08003688}
3689
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003690static void vmx_update_msr_bitmap_x2apic(unsigned long *msr_bitmap,
3691 u8 mode)
Yang Zhang8d146952013-01-25 10:18:50 +08003692{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003693 int msr;
3694
3695 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
3696 unsigned word = msr / BITS_PER_LONG;
3697 msr_bitmap[word] = (mode & MSR_BITMAP_MODE_X2APIC_APICV) ? 0 : ~0;
3698 msr_bitmap[word + (0x800 / sizeof(long))] = ~0;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08003699 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003700
3701 if (mode & MSR_BITMAP_MODE_X2APIC) {
3702 /*
3703 * TPR reads and writes can be virtualized even if virtual interrupt
3704 * delivery is not in use.
3705 */
3706 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_TASKPRI), MSR_TYPE_RW);
3707 if (mode & MSR_BITMAP_MODE_X2APIC_APICV) {
3708 vmx_enable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_TMCCT), MSR_TYPE_R);
3709 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_EOI), MSR_TYPE_W);
3710 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_SELF_IPI), MSR_TYPE_W);
3711 }
3712 }
3713}
3714
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003715void vmx_update_msr_bitmap(struct kvm_vcpu *vcpu)
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003716{
3717 struct vcpu_vmx *vmx = to_vmx(vcpu);
3718 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
3719 u8 mode = vmx_msr_bitmap_mode(vcpu);
3720 u8 changed = mode ^ vmx->msr_bitmap_mode;
3721
3722 if (!changed)
3723 return;
3724
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003725 if (changed & (MSR_BITMAP_MODE_X2APIC | MSR_BITMAP_MODE_X2APIC_APICV))
3726 vmx_update_msr_bitmap_x2apic(msr_bitmap, mode);
3727
3728 vmx->msr_bitmap_mode = mode;
Avi Kivity58972972009-02-24 22:26:47 +02003729}
3730
Chao Pengb08c2892018-10-24 16:05:15 +08003731void pt_update_intercept_for_msr(struct vcpu_vmx *vmx)
3732{
3733 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
3734 bool flag = !(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN);
3735 u32 i;
3736
3737 vmx_set_intercept_for_msr(msr_bitmap, MSR_IA32_RTIT_STATUS,
3738 MSR_TYPE_RW, flag);
3739 vmx_set_intercept_for_msr(msr_bitmap, MSR_IA32_RTIT_OUTPUT_BASE,
3740 MSR_TYPE_RW, flag);
3741 vmx_set_intercept_for_msr(msr_bitmap, MSR_IA32_RTIT_OUTPUT_MASK,
3742 MSR_TYPE_RW, flag);
3743 vmx_set_intercept_for_msr(msr_bitmap, MSR_IA32_RTIT_CR3_MATCH,
3744 MSR_TYPE_RW, flag);
3745 for (i = 0; i < vmx->pt_desc.addr_range; i++) {
3746 vmx_set_intercept_for_msr(msr_bitmap,
3747 MSR_IA32_RTIT_ADDR0_A + i * 2, MSR_TYPE_RW, flag);
3748 vmx_set_intercept_for_msr(msr_bitmap,
3749 MSR_IA32_RTIT_ADDR0_B + i * 2, MSR_TYPE_RW, flag);
3750 }
3751}
3752
Liran Alone6c67d82018-09-04 10:56:52 +03003753static bool vmx_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
3754{
3755 struct vcpu_vmx *vmx = to_vmx(vcpu);
3756 void *vapic_page;
3757 u32 vppr;
3758 int rvi;
3759
3760 if (WARN_ON_ONCE(!is_guest_mode(vcpu)) ||
3761 !nested_cpu_has_vid(get_vmcs12(vcpu)) ||
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003762 WARN_ON_ONCE(!vmx->nested.virtual_apic_map.gfn))
Liran Alone6c67d82018-09-04 10:56:52 +03003763 return false;
3764
Paolo Bonzini7e712682018-10-03 13:44:26 +02003765 rvi = vmx_get_rvi();
Liran Alone6c67d82018-09-04 10:56:52 +03003766
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003767 vapic_page = vmx->nested.virtual_apic_map.hva;
Liran Alone6c67d82018-09-04 10:56:52 +03003768 vppr = *((u32 *)(vapic_page + APIC_PROCPRI));
Liran Alone6c67d82018-09-04 10:56:52 +03003769
3770 return ((rvi & 0xf0) > (vppr & 0xf0));
3771}
3772
Wincy Van06a55242017-04-28 13:13:59 +08003773static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
3774 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003775{
3776#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08003777 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
3778
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003779 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08003780 /*
Haozhong Zhang5753743f2017-09-18 09:56:50 +08003781 * The vector of interrupt to be delivered to vcpu had
3782 * been set in PIR before this function.
Feng Wu28b835d2015-09-18 22:29:54 +08003783 *
Haozhong Zhang5753743f2017-09-18 09:56:50 +08003784 * Following cases will be reached in this block, and
3785 * we always send a notification event in all cases as
3786 * explained below.
3787 *
3788 * Case 1: vcpu keeps in non-root mode. Sending a
3789 * notification event posts the interrupt to vcpu.
3790 *
3791 * Case 2: vcpu exits to root mode and is still
3792 * runnable. PIR will be synced to vIRR before the
3793 * next vcpu entry. Sending a notification event in
3794 * this case has no effect, as vcpu is not in root
3795 * mode.
3796 *
3797 * Case 3: vcpu exits to root mode and is blocked.
3798 * vcpu_block() has already synced PIR to vIRR and
3799 * never blocks vcpu if vIRR is not cleared. Therefore,
3800 * a blocked vcpu here does not wait for any requested
3801 * interrupts in PIR, and sending a notification event
3802 * which has no effect is safe here.
Feng Wu28b835d2015-09-18 22:29:54 +08003803 */
Feng Wu28b835d2015-09-18 22:29:54 +08003804
Wincy Van06a55242017-04-28 13:13:59 +08003805 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01003806 return true;
3807 }
3808#endif
3809 return false;
3810}
3811
Wincy Van705699a2015-02-03 23:58:17 +08003812static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
3813 int vector)
3814{
3815 struct vcpu_vmx *vmx = to_vmx(vcpu);
3816
3817 if (is_guest_mode(vcpu) &&
3818 vector == vmx->nested.posted_intr_nv) {
Wincy Van705699a2015-02-03 23:58:17 +08003819 /*
3820 * If a posted intr is not recognized by hardware,
3821 * we will accomplish it in the next vmentry.
3822 */
3823 vmx->nested.pi_pending = true;
3824 kvm_make_request(KVM_REQ_EVENT, vcpu);
Liran Alon6b697712017-11-09 20:27:20 +02003825 /* the PIR and ON have been set by L1. */
3826 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, true))
3827 kvm_vcpu_kick(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08003828 return 0;
3829 }
3830 return -1;
3831}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003832/*
Yang Zhanga20ed542013-04-11 19:25:15 +08003833 * Send interrupt to vcpu via posted interrupt way.
3834 * 1. If target vcpu is running(non-root mode), send posted interrupt
3835 * notification to vcpu and hardware will sync PIR to vIRR atomically.
3836 * 2. If target vcpu isn't running(root mode), kick it to pick up the
3837 * interrupt from PIR in next vmentry.
3838 */
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003839static int vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
Yang Zhanga20ed542013-04-11 19:25:15 +08003840{
3841 struct vcpu_vmx *vmx = to_vmx(vcpu);
3842 int r;
3843
Wincy Van705699a2015-02-03 23:58:17 +08003844 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
3845 if (!r)
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003846 return 0;
3847
3848 if (!vcpu->arch.apicv_active)
3849 return -1;
Wincy Van705699a2015-02-03 23:58:17 +08003850
Yang Zhanga20ed542013-04-11 19:25:15 +08003851 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003852 return 0;
Yang Zhanga20ed542013-04-11 19:25:15 +08003853
Paolo Bonzinib95234c2016-12-19 13:57:33 +01003854 /* If a previous notification has sent the IPI, nothing to do. */
3855 if (pi_test_and_set_on(&vmx->pi_desc))
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003856 return 0;
Paolo Bonzinib95234c2016-12-19 13:57:33 +01003857
Wanpeng Li379a3c82020-04-28 14:23:27 +08003858 if (vcpu != kvm_get_running_vcpu() &&
3859 !kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08003860 kvm_vcpu_kick(vcpu);
Vitaly Kuznetsov91a5f412020-02-20 18:22:05 +01003861
3862 return 0;
Yang Zhanga20ed542013-04-11 19:25:15 +08003863}
3864
Avi Kivity6aa8b732006-12-10 02:21:36 -08003865/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003866 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
3867 * will not change in the lifetime of the guest.
3868 * Note that host-state that does change is set elsewhere. E.g., host-state
3869 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
3870 */
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003871void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003872{
3873 u32 low32, high32;
3874 unsigned long tmpl;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07003875 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003876
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07003877 cr0 = read_cr0();
3878 WARN_ON(cr0 & X86_CR0_TS);
3879 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07003880
3881 /*
3882 * Save the most likely value for this task's CR3 in the VMCS.
3883 * We can't use __get_current_cr3_fast() because we're not atomic.
3884 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07003885 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07003886 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
Sean Christophersond7ee0392018-07-23 12:32:47 -07003887 vmx->loaded_vmcs->host_state.cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003888
Andy Lutomirskid974baa2014-10-08 09:02:13 -07003889 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003890 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07003891 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07003892 vmx->loaded_vmcs->host_state.cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07003893
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003894 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03003895#ifdef CONFIG_X86_64
3896 /*
3897 * Load null selectors, so we can avoid reloading them in
Sean Christopherson6d6095b2018-07-23 12:32:44 -07003898 * vmx_prepare_switch_to_host(), in case userspace uses
3899 * the null selectors too (the expected case).
Avi Kivityb2da15a2012-05-13 19:53:24 +03003900 */
3901 vmcs_write16(HOST_DS_SELECTOR, 0);
3902 vmcs_write16(HOST_ES_SELECTOR, 0);
3903#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003904 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
3905 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03003906#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003907 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
3908 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
3909
Sean Christopherson23420802019-04-19 22:50:57 -07003910 vmcs_writel(HOST_IDTR_BASE, host_idt_base); /* 22.2.4 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003911
Sean Christopherson453eafb2018-12-20 12:25:17 -08003912 vmcs_writel(HOST_RIP, (unsigned long)vmx_vmexit); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003913
3914 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
3915 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
3916 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
3917 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
3918
3919 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
3920 rdmsr(MSR_IA32_CR_PAT, low32, high32);
3921 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
3922 }
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07003923
Sean Christophersonc73da3f2018-12-03 13:53:00 -08003924 if (cpu_has_load_ia32_efer())
Sean Christopherson5a5e8a12018-09-26 09:23:56 -07003925 vmcs_write64(HOST_IA32_EFER, host_efer);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003926}
3927
Sean Christopherson97b7ead2018-12-03 13:53:16 -08003928void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003929{
Sean Christophersonfa71e952020-07-02 21:04:22 -07003930 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_POSSIBLE_CR4_GUEST_BITS;
3931 if (!enable_ept)
3932 vmx->vcpu.arch.cr4_guest_owned_bits &= ~X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03003933 if (is_guest_mode(&vmx->vcpu))
3934 vmx->vcpu.arch.cr4_guest_owned_bits &=
3935 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003936 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
3937}
3938
Sean Christophersonc075c3e2019-05-07 12:17:53 -07003939u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
Yang Zhang01e439b2013-04-11 19:25:12 +08003940{
3941 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
3942
Andrey Smetanind62caab2015-11-10 15:36:33 +03003943 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08003944 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01003945
3946 if (!enable_vnmi)
3947 pin_based_exec_ctrl &= ~PIN_BASED_VIRTUAL_NMIS;
3948
Sean Christopherson804939e2019-05-07 12:18:05 -07003949 if (!enable_preemption_timer)
3950 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
3951
Yang Zhang01e439b2013-04-11 19:25:12 +08003952 return pin_based_exec_ctrl;
3953}
3954
Andrey Smetanind62caab2015-11-10 15:36:33 +03003955static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
3956{
3957 struct vcpu_vmx *vmx = to_vmx(vcpu);
3958
Sean Christophersonc5f2c762019-05-07 12:17:55 -07003959 pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03003960 if (cpu_has_secondary_exec_ctrls()) {
3961 if (kvm_vcpu_apicv_active(vcpu))
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003962 secondary_exec_controls_setbit(vmx,
Roman Kagan3ce424e2016-05-18 17:48:20 +03003963 SECONDARY_EXEC_APIC_REGISTER_VIRT |
3964 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
3965 else
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07003966 secondary_exec_controls_clearbit(vmx,
Roman Kagan3ce424e2016-05-18 17:48:20 +03003967 SECONDARY_EXEC_APIC_REGISTER_VIRT |
3968 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
3969 }
3970
3971 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003972 vmx_update_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03003973}
3974
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08003975u32 vmx_exec_control(struct vcpu_vmx *vmx)
3976{
3977 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
3978
3979 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
3980 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
3981
3982 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
3983 exec_control &= ~CPU_BASED_TPR_SHADOW;
3984#ifdef CONFIG_X86_64
3985 exec_control |= CPU_BASED_CR8_STORE_EXITING |
3986 CPU_BASED_CR8_LOAD_EXITING;
3987#endif
3988 }
3989 if (!enable_ept)
3990 exec_control |= CPU_BASED_CR3_STORE_EXITING |
3991 CPU_BASED_CR3_LOAD_EXITING |
3992 CPU_BASED_INVLPG_EXITING;
3993 if (kvm_mwait_in_guest(vmx->vcpu.kvm))
3994 exec_control &= ~(CPU_BASED_MWAIT_EXITING |
3995 CPU_BASED_MONITOR_EXITING);
3996 if (kvm_hlt_in_guest(vmx->vcpu.kvm))
3997 exec_control &= ~CPU_BASED_HLT_EXITING;
3998 return exec_control;
3999}
4000
Sean Christopherson8b50b922020-09-24 17:30:11 -07004001/*
4002 * Adjust a single secondary execution control bit to intercept/allow an
4003 * instruction in the guest. This is usually done based on whether or not a
4004 * feature has been exposed to the guest in order to correctly emulate faults.
4005 */
4006static inline void
4007vmx_adjust_secondary_exec_control(struct vcpu_vmx *vmx, u32 *exec_control,
4008 u32 control, bool enabled, bool exiting)
4009{
4010 /*
4011 * If the control is for an opt-in feature, clear the control if the
4012 * feature is not exposed to the guest, i.e. not enabled. If the
4013 * control is opt-out, i.e. an exiting control, clear the control if
4014 * the feature _is_ exposed to the guest, i.e. exiting/interception is
4015 * disabled for the associated instruction. Note, the caller is
4016 * responsible presetting exec_control to set all supported bits.
4017 */
4018 if (enabled == exiting)
4019 *exec_control &= ~control;
4020
4021 /*
4022 * Update the nested MSR settings so that a nested VMM can/can't set
4023 * controls for features that are/aren't exposed to the guest.
4024 */
4025 if (nested) {
4026 if (enabled)
4027 vmx->nested.msrs.secondary_ctls_high |= control;
4028 else
4029 vmx->nested.msrs.secondary_ctls_high &= ~control;
4030 }
4031}
4032
4033/*
4034 * Wrapper macro for the common case of adjusting a secondary execution control
4035 * based on a single guest CPUID bit, with a dedicated feature bit. This also
4036 * verifies that the control is actually supported by KVM and hardware.
4037 */
4038#define vmx_adjust_sec_exec_control(vmx, exec_control, name, feat_name, ctrl_name, exiting) \
4039({ \
4040 bool __enabled; \
4041 \
4042 if (cpu_has_vmx_##name()) { \
4043 __enabled = guest_cpuid_has(&(vmx)->vcpu, \
4044 X86_FEATURE_##feat_name); \
4045 vmx_adjust_secondary_exec_control(vmx, exec_control, \
4046 SECONDARY_EXEC_##ctrl_name, __enabled, exiting); \
4047 } \
4048})
4049
4050/* More macro magic for ENABLE_/opt-in versus _EXITING/opt-out controls. */
4051#define vmx_adjust_sec_exec_feature(vmx, exec_control, lname, uname) \
4052 vmx_adjust_sec_exec_control(vmx, exec_control, lname, uname, ENABLE_##uname, false)
4053
4054#define vmx_adjust_sec_exec_exiting(vmx, exec_control, lname, uname) \
4055 vmx_adjust_sec_exec_control(vmx, exec_control, lname, uname, uname##_EXITING, true)
Sean Christopherson89b0c9f2018-12-03 13:53:07 -08004056
Paolo Bonzini80154d72017-08-24 13:55:35 +02004057static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004058{
Paolo Bonzini80154d72017-08-24 13:55:35 +02004059 struct kvm_vcpu *vcpu = &vmx->vcpu;
4060
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004061 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004062
Sean Christopherson2ef76192020-03-02 15:56:22 -08004063 if (vmx_pt_mode_is_system())
Chao Pengf99e3da2018-10-24 16:05:10 +08004064 exec_control &= ~(SECONDARY_EXEC_PT_USE_GPA | SECONDARY_EXEC_PT_CONCEAL_VMX);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004065 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004066 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
4067 if (vmx->vpid == 0)
4068 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
4069 if (!enable_ept) {
4070 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
4071 enable_unrestricted_guest = 0;
4072 }
4073 if (!enable_unrestricted_guest)
4074 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Wanpeng Lib31c1142018-03-12 04:53:04 -07004075 if (kvm_pause_in_guest(vmx->vcpu.kvm))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004076 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02004077 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08004078 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
4079 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08004080 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Paolo Bonzini0367f202016-07-12 10:44:55 +02004081
4082 /* SECONDARY_EXEC_DESC is enabled/disabled on writes to CR4.UMIP,
4083 * in vmx_set_cr4. */
4084 exec_control &= ~SECONDARY_EXEC_DESC;
4085
Abel Gordonabc4fc52013-04-18 14:35:25 +03004086 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
4087 (handle_vmptrld).
4088 We can NOT enable shadow_vmcs here because we don't have yet
4089 a current VMCS12
4090 */
4091 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08004092
4093 if (!enable_pml)
4094 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08004095
Sean Christophersonbecdad82020-09-23 09:50:45 -07004096 if (cpu_has_vmx_xsaves()) {
Paolo Bonzini3db13482017-08-24 14:48:03 +02004097 /* Exposing XSAVES only when XSAVE is exposed */
4098 bool xsaves_enabled =
Sean Christopherson96be4e02019-12-10 14:44:15 -08004099 boot_cpu_has(X86_FEATURE_XSAVE) &&
Paolo Bonzini3db13482017-08-24 14:48:03 +02004100 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
4101 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
4102
Aaron Lewis72041602019-10-21 16:30:20 -07004103 vcpu->arch.xsaves_enabled = xsaves_enabled;
4104
Sean Christopherson8b50b922020-09-24 17:30:11 -07004105 vmx_adjust_secondary_exec_control(vmx, &exec_control,
4106 SECONDARY_EXEC_XSAVES,
4107 xsaves_enabled, false);
Paolo Bonzini3db13482017-08-24 14:48:03 +02004108 }
4109
Sean Christopherson8b50b922020-09-24 17:30:11 -07004110 vmx_adjust_sec_exec_feature(vmx, &exec_control, rdtscp, RDTSCP);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004111
Sean Christophersonb936d3e2020-09-23 09:50:46 -07004112 /*
4113 * Expose INVPCID if and only if PCID is also exposed to the guest.
4114 * INVPCID takes a #UD when it's disabled in the VMCS, but a #GP or #PF
4115 * if CR4.PCIDE=0. Enumerating CPUID.INVPCID=1 would lead to incorrect
4116 * behavior from the guest perspective (it would expect #GP or #PF).
4117 */
4118 if (!guest_cpuid_has(vcpu, X86_FEATURE_PCID))
4119 guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID);
Sean Christopherson8b50b922020-09-24 17:30:11 -07004120 vmx_adjust_sec_exec_feature(vmx, &exec_control, invpcid, INVPCID);
Sean Christophersonb936d3e2020-09-23 09:50:46 -07004121
Paolo Bonzini80154d72017-08-24 13:55:35 +02004122
Sean Christopherson8b50b922020-09-24 17:30:11 -07004123 vmx_adjust_sec_exec_exiting(vmx, &exec_control, rdrand, RDRAND);
4124 vmx_adjust_sec_exec_exiting(vmx, &exec_control, rdseed, RDSEED);
Paolo Bonzini80154d72017-08-24 13:55:35 +02004125
Sean Christopherson8b50b922020-09-24 17:30:11 -07004126 vmx_adjust_sec_exec_control(vmx, &exec_control, waitpkg, WAITPKG,
4127 ENABLE_USR_WAIT_PAUSE, false);
Tao Xue69e72fa2019-07-16 14:55:49 +08004128
Paolo Bonzini80154d72017-08-24 13:55:35 +02004129 vmx->secondary_exec_control = exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004130}
4131
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004132static void ept_set_mmio_spte_mask(void)
4133{
4134 /*
4135 * EPT Misconfigurations can be generated if the value of bits 2:0
4136 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004137 */
Paolo Bonzinie7581ca2020-05-19 05:04:49 -04004138 kvm_mmu_set_mmio_spte_mask(VMX_EPT_MISCONFIG_WX_VALUE, 0);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004139}
4140
Wanpeng Lif53cd632014-12-02 19:14:58 +08004141#define VMX_XSS_EXIT_BITMAP 0
Avi Kivity6aa8b732006-12-10 02:21:36 -08004142
Sean Christopherson944c3462018-12-03 13:53:09 -08004143/*
Xiaoyao Li1b842922019-10-20 17:11:01 +08004144 * Noting that the initialization of Guest-state Area of VMCS is in
4145 * vmx_vcpu_reset().
Sean Christopherson944c3462018-12-03 13:53:09 -08004146 */
Xiaoyao Li1b842922019-10-20 17:11:01 +08004147static void init_vmcs(struct vcpu_vmx *vmx)
Sean Christopherson944c3462018-12-03 13:53:09 -08004148{
Sean Christopherson944c3462018-12-03 13:53:09 -08004149 if (nested)
Xiaoyao Li1b842922019-10-20 17:11:01 +08004150 nested_vmx_set_vmcs_shadowing_bitmap();
Sean Christopherson944c3462018-12-03 13:53:09 -08004151
Sheng Yang25c5f222008-03-28 13:18:56 +08004152 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004153 vmcs_write64(MSR_BITMAP, __pa(vmx->vmcs01.msr_bitmap));
Sheng Yang25c5f222008-03-28 13:18:56 +08004154
Avi Kivity6aa8b732006-12-10 02:21:36 -08004155 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
4156
Avi Kivity6aa8b732006-12-10 02:21:36 -08004157 /* Control */
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004158 pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx));
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004159
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004160 exec_controls_set(vmx, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004161
Dan Williamsdfa169b2016-06-02 11:17:24 -07004162 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +02004163 vmx_compute_secondary_exec_control(vmx);
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004164 secondary_exec_controls_set(vmx, vmx->secondary_exec_control);
Dan Williamsdfa169b2016-06-02 11:17:24 -07004165 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08004166
Andrey Smetanind62caab2015-11-10 15:36:33 +03004167 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08004168 vmcs_write64(EOI_EXIT_BITMAP0, 0);
4169 vmcs_write64(EOI_EXIT_BITMAP1, 0);
4170 vmcs_write64(EOI_EXIT_BITMAP2, 0);
4171 vmcs_write64(EOI_EXIT_BITMAP3, 0);
4172
4173 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08004174
Li RongQing0bcf2612015-12-03 13:29:34 +08004175 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08004176 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08004177 }
4178
Wanpeng Lib31c1142018-03-12 04:53:04 -07004179 if (!kvm_pause_in_guest(vmx->vcpu.kvm)) {
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004180 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02004181 vmx->ple_window = ple_window;
4182 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004183 }
4184
Xiao Guangrongc3707952011-07-12 03:28:04 +08004185 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
4186 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004187 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
4188
Avi Kivity9581d442010-10-19 16:46:55 +02004189 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
4190 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004191 vmx_set_constant_host_state(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004192 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
4193 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004194
Bandan Das2a499e42017-08-03 15:54:41 -04004195 if (cpu_has_vmx_vmfunc())
4196 vmcs_write64(VM_FUNCTION_CONTROL, 0);
4197
Eddie Dong2cc51562007-05-21 07:28:09 +03004198 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
4199 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004200 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host.val));
Eddie Dong2cc51562007-05-21 07:28:09 +03004201 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04004202 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest.val));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004203
Radim Krčmář74545702015-04-27 15:11:25 +02004204 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
4205 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08004206
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004207 vm_exit_controls_set(vmx, vmx_vmexit_ctrl());
Avi Kivity6aa8b732006-12-10 02:21:36 -08004208
4209 /* 22.2.1, 20.8.1 */
Sean Christopherson3af80fe2019-05-07 12:18:00 -07004210 vm_entry_controls_set(vmx, vmx_vmentry_ctrl());
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004211
Sean Christophersonfa71e952020-07-02 21:04:22 -07004212 vmx->vcpu.arch.cr0_guest_owned_bits = KVM_POSSIBLE_CR0_GUEST_BITS;
4213 vmcs_writel(CR0_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr0_guest_owned_bits);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004214
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004215 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004216
Xiaoyao Li35fbe0d2019-10-20 17:10:58 +08004217 if (vmx->vpid != 0)
4218 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
4219
Sean Christophersonbecdad82020-09-23 09:50:45 -07004220 if (cpu_has_vmx_xsaves())
Wanpeng Lif53cd632014-12-02 19:14:58 +08004221 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
4222
Peter Feiner4e595162016-07-07 14:49:58 -07004223 if (enable_pml) {
Peter Feiner4e595162016-07-07 14:49:58 -07004224 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
4225 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
4226 }
Sean Christopherson0b665d32018-08-14 09:33:34 -07004227
4228 if (cpu_has_vmx_encls_vmexit())
4229 vmcs_write64(ENCLS_EXITING_BITMAP, -1ull);
Chao Peng2ef444f2018-10-24 16:05:12 +08004230
Sean Christopherson2ef76192020-03-02 15:56:22 -08004231 if (vmx_pt_mode_is_host_guest()) {
Chao Peng2ef444f2018-10-24 16:05:12 +08004232 memset(&vmx->pt_desc, 0, sizeof(vmx->pt_desc));
4233 /* Bit[6~0] are forced to 1, writes are ignored. */
4234 vmx->pt_desc.guest.output_mask = 0x7F;
4235 vmcs_write64(GUEST_IA32_RTIT_CTL, 0);
4236 }
Paolo Bonzini8c4182b2020-07-10 17:48:10 +02004237
4238 /*
4239 * If EPT is enabled, #PF is only trapped if MAXPHYADDR is mismatched
4240 * between guest and host. In that case we only care about present
4241 * faults.
4242 */
4243 if (enable_ept) {
4244 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, PFERR_PRESENT_MASK);
4245 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, PFERR_PRESENT_MASK);
4246 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004247}
4248
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004249static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004250{
4251 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01004252 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004253 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004254
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004255 vmx->rmode.vm86_active = 0;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004256 vmx->spec_ctrl = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004257
Tao Xu6e3ba4a2019-07-16 14:55:50 +08004258 vmx->msr_ia32_umwait_control = 0;
4259
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004260 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Wanpeng Li95c06542019-09-05 14:26:28 +08004261 vmx->hv_deadline_tsc = -1;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004262 kvm_set_cr8(vcpu, 0);
4263
4264 if (!init_event) {
4265 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
4266 MSR_IA32_APICBASE_ENABLE;
4267 if (kvm_vcpu_is_reset_bsp(vcpu))
4268 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
4269 apic_base_msr.host_initiated = true;
4270 kvm_set_apic_base(vcpu, &apic_base_msr);
4271 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004272
Avi Kivity2fb92db2011-04-27 19:42:18 +03004273 vmx_segment_cache_clear(vmx);
4274
Avi Kivity5706be02008-08-20 15:07:31 +03004275 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01004276 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004277 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004278
4279 seg_setup(VCPU_SREG_DS);
4280 seg_setup(VCPU_SREG_ES);
4281 seg_setup(VCPU_SREG_FS);
4282 seg_setup(VCPU_SREG_GS);
4283 seg_setup(VCPU_SREG_SS);
4284
4285 vmcs_write16(GUEST_TR_SELECTOR, 0);
4286 vmcs_writel(GUEST_TR_BASE, 0);
4287 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
4288 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4289
4290 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
4291 vmcs_writel(GUEST_LDTR_BASE, 0);
4292 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
4293 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
4294
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004295 if (!init_event) {
4296 vmcs_write32(GUEST_SYSENTER_CS, 0);
4297 vmcs_writel(GUEST_SYSENTER_ESP, 0);
4298 vmcs_writel(GUEST_SYSENTER_EIP, 0);
4299 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
4300 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004301
Wanpeng Lic37c2872017-11-20 14:52:21 -08004302 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
Jan Kiszka66450a22013-03-13 12:42:34 +01004303 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004304
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004305 vmcs_writel(GUEST_GDTR_BASE, 0);
4306 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
4307
4308 vmcs_writel(GUEST_IDTR_BASE, 0);
4309 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
4310
Anthony Liguori443381a2010-12-06 10:53:38 -06004311 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004312 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004313 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Wanpeng Lia554d202017-10-11 05:10:19 -07004314 if (kvm_mpx_supported())
4315 vmcs_write64(GUEST_BNDCFGS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004316
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004317 setup_msrs(vmx);
4318
Avi Kivity6aa8b732006-12-10 02:21:36 -08004319 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
4320
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004321 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08004322 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004323 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08004324 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004325 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004326 vmcs_write32(TPR_THRESHOLD, 0);
4327 }
4328
Paolo Bonzinia73896c2014-11-02 07:54:30 +01004329 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004330
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004331 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004332 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06004333 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004334 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02004335 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004336
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004337 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004338
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004339 vpid_sync_context(vmx->vpid);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004340 if (init_event)
4341 vmx_clear_hlt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004342}
4343
Jan Kiszkac9a79532014-03-07 20:03:15 +01004344static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004345{
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08004346 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_INTR_WINDOW_EXITING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004347}
4348
Jan Kiszkac9a79532014-03-07 20:03:15 +01004349static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004350{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004351 if (!enable_vnmi ||
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004352 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jan Kiszkac9a79532014-03-07 20:03:15 +01004353 enable_irq_window(vcpu);
4354 return;
4355 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02004356
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08004357 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_NMI_WINDOW_EXITING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004358}
4359
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004360static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03004361{
Avi Kivity9c8cba32007-11-22 11:42:59 +02004362 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004363 uint32_t intr;
4364 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02004365
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004366 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004367
Avi Kivityfa89a812008-09-01 15:57:51 +03004368 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004369 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05004370 int inc_eip = 0;
4371 if (vcpu->arch.interrupt.soft)
4372 inc_eip = vcpu->arch.event_exit_inst_len;
Sean Christopherson9497e1f2019-08-27 14:40:36 -07004373 kvm_inject_realmode_interrupt(vcpu, irq, inc_eip);
Eddie Dong85f455f2007-07-06 12:20:49 +03004374 return;
4375 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004376 intr = irq | INTR_INFO_VALID_MASK;
4377 if (vcpu->arch.interrupt.soft) {
4378 intr |= INTR_TYPE_SOFT_INTR;
4379 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
4380 vmx->vcpu.arch.event_exit_inst_len);
4381 } else
4382 intr |= INTR_TYPE_EXT_INTR;
4383 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004384
4385 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03004386}
4387
Sheng Yangf08864b2008-05-15 18:23:25 +08004388static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
4389{
Jan Kiszka66a5a342008-09-26 09:30:51 +02004390 struct vcpu_vmx *vmx = to_vmx(vcpu);
4391
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004392 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004393 /*
4394 * Tracking the NMI-blocked state in software is built upon
4395 * finding the next open IRQ window. This, in turn, depends on
4396 * well-behaving guests: They have to keep IRQs disabled at
4397 * least as long as the NMI handler runs. Otherwise we may
4398 * cause NMI nesting, maybe breaking the guest. But as this is
4399 * highly unlikely, we can live with the residual risk.
4400 */
4401 vmx->loaded_vmcs->soft_vnmi_blocked = 1;
4402 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4403 }
4404
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004405 ++vcpu->stat.nmi_injections;
4406 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004407
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004408 if (vmx->rmode.vm86_active) {
Sean Christopherson9497e1f2019-08-27 14:40:36 -07004409 kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0);
Jan Kiszka66a5a342008-09-26 09:30:51 +02004410 return;
4411 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08004412
Sheng Yangf08864b2008-05-15 18:23:25 +08004413 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
4414 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Wanpeng Licaa057a2018-03-12 04:53:03 -07004415
4416 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08004417}
4418
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004419bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004420{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004421 struct vcpu_vmx *vmx = to_vmx(vcpu);
4422 bool masked;
4423
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004424 if (!enable_vnmi)
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004425 return vmx->loaded_vmcs->soft_vnmi_blocked;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004426 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02004427 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02004428 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
4429 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4430 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004431}
4432
Sean Christopherson97b7ead2018-12-03 13:53:16 -08004433void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004434{
4435 struct vcpu_vmx *vmx = to_vmx(vcpu);
4436
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01004437 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004438 if (vmx->loaded_vmcs->soft_vnmi_blocked != masked) {
4439 vmx->loaded_vmcs->soft_vnmi_blocked = masked;
4440 vmx->loaded_vmcs->vnmi_blocked_time = 0;
4441 }
4442 } else {
4443 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
4444 if (masked)
4445 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
4446 GUEST_INTR_STATE_NMI);
4447 else
4448 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
4449 GUEST_INTR_STATE_NMI);
4450 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004451}
4452
Sean Christopherson1b660b62020-04-22 19:25:44 -07004453bool vmx_nmi_blocked(struct kvm_vcpu *vcpu)
4454{
4455 if (is_guest_mode(vcpu) && nested_exit_on_nmi(vcpu))
4456 return false;
4457
4458 if (!enable_vnmi && to_vmx(vcpu)->loaded_vmcs->soft_vnmi_blocked)
4459 return true;
4460
4461 return (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4462 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI |
4463 GUEST_INTR_STATE_NMI));
4464}
4465
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004466static int vmx_nmi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Jan Kiszka2505dc92013-04-14 12:12:47 +02004467{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01004468 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004469 return -EBUSY;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02004470
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004471 /* An NMI must not be injected into L2 if it's supposed to VM-Exit. */
4472 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_nmi(vcpu))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004473 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004474
Sean Christopherson1b660b62020-04-22 19:25:44 -07004475 return !vmx_nmi_blocked(vcpu);
4476}
Sean Christopherson429ab572020-04-22 19:25:42 -07004477
Sean Christopherson1b660b62020-04-22 19:25:44 -07004478bool vmx_interrupt_blocked(struct kvm_vcpu *vcpu)
4479{
4480 if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
Sean Christopherson88c604b2020-04-22 19:25:41 -07004481 return false;
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004482
Sean Christopherson7ab0abd2020-04-22 19:25:50 -07004483 return !(vmx_get_rflags(vcpu) & X86_EFLAGS_IF) ||
Sean Christopherson1b660b62020-04-22 19:25:44 -07004484 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4485 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Jan Kiszka2505dc92013-04-14 12:12:47 +02004486}
4487
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004488static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Gleb Natapov78646122009-03-23 12:12:11 +02004489{
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004490 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004491 return -EBUSY;
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004492
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004493 /*
4494 * An IRQ must not be injected into L2 if it's supposed to VM-Exit,
4495 * e.g. if the IRQ arrived asynchronously after checking nested events.
4496 */
4497 if (for_injection && is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
Paolo Bonzinic9d40912020-05-22 11:21:49 -04004498 return -EBUSY;
Paolo Bonzinic300ab92020-04-23 14:08:58 -04004499
Sean Christopherson1b660b62020-04-22 19:25:44 -07004500 return !vmx_interrupt_blocked(vcpu);
Gleb Natapov78646122009-03-23 12:12:11 +02004501}
4502
Izik Eiduscbc94022007-10-25 00:29:55 +02004503static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
4504{
4505 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02004506
Sean Christophersonf7eaeb02018-03-05 12:04:36 -08004507 if (enable_unrestricted_guest)
4508 return 0;
4509
Peter Xu6a3c6232020-01-09 09:57:16 -05004510 mutex_lock(&kvm->slots_lock);
4511 ret = __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
4512 PAGE_SIZE * 3);
4513 mutex_unlock(&kvm->slots_lock);
4514
Izik Eiduscbc94022007-10-25 00:29:55 +02004515 if (ret)
4516 return ret;
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004517 to_kvm_vmx(kvm)->tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004518 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02004519}
4520
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004521static int vmx_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
4522{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004523 to_kvm_vmx(kvm)->ept_identity_map_addr = ident_addr;
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07004524 return 0;
4525}
4526
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004527static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004528{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004529 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004530 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01004531 /*
4532 * Update instruction length as we may reinject the exception
4533 * from user space while in guest debugging mode.
4534 */
4535 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
4536 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004537 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004538 return false;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004539 fallthrough;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004540 case DB_VECTOR:
Miaohe Lina8cfbae2020-02-19 10:45:48 +08004541 return !(vcpu->guest_debug &
4542 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP));
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004543 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004544 case OF_VECTOR:
4545 case BR_VECTOR:
4546 case UD_VECTOR:
4547 case DF_VECTOR:
4548 case SS_VECTOR:
4549 case GP_VECTOR:
4550 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004551 return true;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004552 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004553 return false;
4554}
4555
4556static int handle_rmode_exception(struct kvm_vcpu *vcpu,
4557 int vec, u32 err_code)
4558{
4559 /*
4560 * Instruction with address size override prefix opcode 0x67
4561 * Cause the #SS fault with 0 error code in VM86 mode.
4562 */
4563 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004564 if (kvm_emulate_instruction(vcpu, 0)) {
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004565 if (vcpu->arch.halt_request) {
4566 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06004567 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004568 }
4569 return 1;
4570 }
4571 return 0;
4572 }
4573
4574 /*
4575 * Forward all other exceptions that are valid in real mode.
4576 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
4577 * the required debugging infrastructure rework.
4578 */
4579 kvm_queue_exception(vcpu, vec);
4580 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004581}
4582
Andi Kleena0861c02009-06-08 17:37:09 +08004583/*
4584 * Trigger machine check on the host. We assume all the MSRs are already set up
4585 * by the CPU and that we still run on the same CPU as the MCE occurred on.
4586 * We pass a fake environment to the machine check handler because we want
4587 * the guest to be always treated like user space, no matter what context
4588 * it used internally.
4589 */
4590static void kvm_machine_check(void)
4591{
Uros Bizjakfb56baa2020-04-14 09:14:14 +02004592#if defined(CONFIG_X86_MCE)
Andi Kleena0861c02009-06-08 17:37:09 +08004593 struct pt_regs regs = {
4594 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
4595 .flags = X86_EFLAGS_IF,
4596 };
4597
Thomas Gleixner8cd501c2020-02-25 23:33:23 +01004598 do_machine_check(&regs);
Andi Kleena0861c02009-06-08 17:37:09 +08004599#endif
4600}
4601
Avi Kivity851ba692009-08-24 11:10:17 +03004602static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08004603{
Sean Christopherson95b5a482019-04-19 22:50:59 -07004604 /* handled by vmx_vcpu_run() */
Andi Kleena0861c02009-06-08 17:37:09 +08004605 return 1;
4606}
4607
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004608/*
4609 * If the host has split lock detection disabled, then #AC is
4610 * unconditionally injected into the guest, which is the pre split lock
4611 * detection behaviour.
4612 *
4613 * If the host has split lock detection enabled then #AC is
4614 * only injected into the guest when:
4615 * - Guest CPL == 3 (user mode)
4616 * - Guest has #AC detection enabled in CR0
4617 * - Guest EFLAGS has AC bit set
4618 */
4619static inline bool guest_inject_ac(struct kvm_vcpu *vcpu)
4620{
4621 if (!boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
4622 return true;
4623
4624 return vmx_get_cpl(vcpu) == 3 && kvm_read_cr0_bits(vcpu, X86_CR0_AM) &&
4625 (kvm_get_rflags(vcpu) & X86_EFLAGS_AC);
4626}
4627
Sean Christopherson95b5a482019-04-19 22:50:59 -07004628static int handle_exception_nmi(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004629{
Avi Kivity1155f762007-11-22 11:30:47 +02004630 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004631 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004632 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004633 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004634 u32 vect_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004635
Avi Kivity1155f762007-11-22 11:30:47 +02004636 vect_info = vmx->idt_vectoring_info;
Sean Christophersonf27ad732020-04-27 10:18:37 -07004637 intr_info = vmx_get_intr_info(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004638
Paolo Bonzini2ea72032019-06-06 14:57:25 +02004639 if (is_machine_check(intr_info) || is_nmi(intr_info))
Sean Christopherson95b5a482019-04-19 22:50:59 -07004640 return 1; /* handled by handle_exception_nmi_irqoff() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03004641
Wanpeng Li082d06e2018-04-03 16:28:48 -07004642 if (is_invalid_opcode(intr_info))
4643 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004644
Avi Kivity6aa8b732006-12-10 02:21:36 -08004645 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06004646 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004647 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004648
Liran Alon9e869482018-03-12 13:12:51 +02004649 if (!vmx->rmode.vm86_active && is_gp_fault(intr_info)) {
4650 WARN_ON_ONCE(!enable_vmware_backdoor);
Sean Christophersona6c6ed12019-08-27 14:40:30 -07004651
4652 /*
4653 * VMware backdoor emulation on #GP interception only handles
4654 * IN{S}, OUT{S}, and RDPMC, none of which generate a non-zero
4655 * error code on #GP.
4656 */
4657 if (error_code) {
4658 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
4659 return 1;
4660 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004661 return kvm_emulate_instruction(vcpu, EMULTYPE_VMWARE_GP);
Liran Alon9e869482018-03-12 13:12:51 +02004662 }
4663
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004664 /*
4665 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
4666 * MMIO, it is better to report an internal error.
4667 * See the comments in vmx_handle_exit.
4668 */
4669 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
4670 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
4671 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4672 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Jim Mattson1aa561b2020-06-03 16:56:21 -07004673 vcpu->run->internal.ndata = 4;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004674 vcpu->run->internal.data[0] = vect_info;
4675 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02004676 vcpu->run->internal.data[2] = error_code;
Jim Mattson8a14fe42020-06-03 16:56:22 -07004677 vcpu->run->internal.data[3] = vcpu->arch.last_vmentry_cpu;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08004678 return 0;
4679 }
4680
Avi Kivity6aa8b732006-12-10 02:21:36 -08004681 if (is_page_fault(intr_info)) {
Sean Christopherson5addc232020-04-15 13:34:53 -07004682 cr2 = vmx_get_exit_qual(vcpu);
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02004683 if (enable_ept && !vcpu->arch.apf.host_apf_flags) {
4684 /*
4685 * EPT will cause page fault only if we need to
4686 * detect illegal GPAs.
4687 */
4688 kvm_fixup_and_inject_pf_error(vcpu, cr2, error_code);
4689 return 1;
4690 } else
4691 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004692 }
4693
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004694 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02004695
4696 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
4697 return handle_rmode_exception(vcpu, ex_no, error_code);
4698
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004699 switch (ex_no) {
4700 case DB_VECTOR:
Sean Christopherson5addc232020-04-15 13:34:53 -07004701 dr6 = vmx_get_exit_qual(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004702 if (!(vcpu->guest_debug &
4703 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Linus Torvalds32d43cd2018-03-20 12:16:59 -07004704 if (is_icebp(intr_info))
Sean Christopherson1957aa62019-08-27 14:40:39 -07004705 WARN_ON(!skip_emulated_instruction(vcpu));
Huw Daviesfd2a4452014-04-16 10:02:51 +01004706
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04004707 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004708 return 1;
4709 }
Peter Xu13196632020-05-05 16:49:58 -04004710 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1 | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004711 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004712 fallthrough;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004713 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01004714 /*
4715 * Update instruction length as we may reinject #BP from
4716 * user space while in guest debugging mode. Reading it for
4717 * #DB as well causes no harm, it is not used in that case.
4718 */
4719 vmx->vcpu.arch.event_exit_inst_len =
4720 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004721 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03004722 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004723 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
4724 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004725 break;
Xiaoyao Lie6f8b6c2020-04-10 13:54:02 +02004726 case AC_VECTOR:
4727 if (guest_inject_ac(vcpu)) {
4728 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
4729 return 1;
4730 }
4731
4732 /*
4733 * Handle split lock. Depending on detection mode this will
4734 * either warn and disable split lock detection for this
4735 * task or force SIGBUS on it.
4736 */
4737 if (handle_guest_split_lock(kvm_rip_read(vcpu)))
4738 return 1;
4739 fallthrough;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004740 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004741 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
4742 kvm_run->ex.exception = ex_no;
4743 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004744 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004745 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004746 return 0;
4747}
4748
Andrea Arcangelif399e602019-11-04 17:59:58 -05004749static __always_inline int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004750{
Avi Kivity1165f5f2007-04-19 17:27:43 +03004751 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004752 return 1;
4753}
4754
Avi Kivity851ba692009-08-24 11:10:17 +03004755static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08004756{
Avi Kivity851ba692009-08-24 11:10:17 +03004757 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07004758 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08004759 return 0;
4760}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004761
Avi Kivity851ba692009-08-24 11:10:17 +03004762static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004763{
He, Qingbfdaab02007-09-12 14:18:28 +08004764 unsigned long exit_qualification;
Sean Christophersondca7f122018-03-08 08:57:27 -08004765 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02004766 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004767
Sean Christopherson5addc232020-04-15 13:34:53 -07004768 exit_qualification = vmx_get_exit_qual(vcpu);
Avi Kivity039576c2007-03-20 12:46:50 +02004769 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004770
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004771 ++vcpu->stat.io_exits;
4772
Sean Christopherson432baf62018-03-08 08:57:26 -08004773 if (string)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004774 return kvm_emulate_instruction(vcpu, 0);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004775
4776 port = exit_qualification >> 16;
4777 size = (exit_qualification & 7) + 1;
Sean Christopherson432baf62018-03-08 08:57:26 -08004778 in = (exit_qualification & 8) != 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004779
Sean Christophersondca7f122018-03-08 08:57:27 -08004780 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004781}
4782
Ingo Molnar102d8322007-02-19 14:37:47 +02004783static void
4784vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
4785{
4786 /*
4787 * Patch in the VMCALL instruction:
4788 */
4789 hypercall[0] = 0x0f;
4790 hypercall[1] = 0x01;
4791 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02004792}
4793
Guo Chao0fa06072012-06-28 15:16:19 +08004794/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004795static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
4796{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004797 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004798 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4799 unsigned long orig_val = val;
4800
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004801 /*
4802 * We get here when L2 changed cr0 in a way that did not change
4803 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004804 * but did change L0 shadowed bits. So we first calculate the
4805 * effective cr0 value that L1 would like to write into the
4806 * hardware. It consists of the L2-owned bits from the new
4807 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004808 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004809 val = (val & ~vmcs12->cr0_guest_host_mask) |
4810 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
4811
David Matlack38991522016-11-29 18:14:08 -08004812 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004813 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004814
4815 if (kvm_set_cr0(vcpu, val))
4816 return 1;
4817 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004818 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004819 } else {
4820 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08004821 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004822 return 1;
David Matlack38991522016-11-29 18:14:08 -08004823
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004824 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004825 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004826}
4827
4828static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
4829{
4830 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004831 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4832 unsigned long orig_val = val;
4833
4834 /* analogously to handle_set_cr0 */
4835 val = (val & ~vmcs12->cr4_guest_host_mask) |
4836 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
4837 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004838 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004839 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004840 return 0;
4841 } else
4842 return kvm_set_cr4(vcpu, val);
4843}
4844
Paolo Bonzini0367f202016-07-12 10:44:55 +02004845static int handle_desc(struct kvm_vcpu *vcpu)
4846{
4847 WARN_ON(!(vcpu->arch.cr4 & X86_CR4_UMIP));
Sean Christopherson60fc3d02019-08-27 14:40:38 -07004848 return kvm_emulate_instruction(vcpu, 0);
Paolo Bonzini0367f202016-07-12 10:44:55 +02004849}
4850
Avi Kivity851ba692009-08-24 11:10:17 +03004851static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004852{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004853 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004854 int cr;
4855 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03004856 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08004857 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004858
Sean Christopherson5addc232020-04-15 13:34:53 -07004859 exit_qualification = vmx_get_exit_qual(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004860 cr = exit_qualification & 15;
4861 reg = (exit_qualification >> 8) & 15;
4862 switch ((exit_qualification >> 4) & 3) {
4863 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03004864 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004865 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004866 switch (cr) {
4867 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004868 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004869 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004870 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08004871 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity23902182010-06-10 17:02:16 +03004872 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004873 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004874 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004875 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004876 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004877 case 8: {
4878 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03004879 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004880 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004881 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004882 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08004883 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004884 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08004885 return ret;
4886 /*
4887 * TODO: we might be squashing a
4888 * KVM_GUESTDBG_SINGLESTEP-triggered
4889 * KVM_EXIT_DEBUG here.
4890 */
Avi Kivity851ba692009-08-24 11:10:17 +03004891 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004892 return 0;
4893 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02004894 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004895 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03004896 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08004897 WARN_ONCE(1, "Guest should always own CR0.TS");
4898 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02004899 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08004900 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004901 case 1: /*mov from cr*/
4902 switch (cr) {
4903 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08004904 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity9f8fe502010-12-05 17:30:00 +02004905 val = kvm_read_cr3(vcpu);
4906 kvm_register_write(vcpu, reg, val);
4907 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004908 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004909 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004910 val = kvm_get_cr8(vcpu);
4911 kvm_register_write(vcpu, reg, val);
4912 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08004913 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004914 }
4915 break;
4916 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02004917 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02004918 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02004919 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004920
Kyle Huey6affcbe2016-11-29 12:40:40 -08004921 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004922 default:
4923 break;
4924 }
Avi Kivity851ba692009-08-24 11:10:17 +03004925 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03004926 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08004927 (int)(exit_qualification >> 4) & 3, cr);
4928 return 0;
4929}
4930
Avi Kivity851ba692009-08-24 11:10:17 +03004931static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004932{
He, Qingbfdaab02007-09-12 14:18:28 +08004933 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004934 int dr, dr7, reg;
4935
Sean Christopherson5addc232020-04-15 13:34:53 -07004936 exit_qualification = vmx_get_exit_qual(vcpu);
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004937 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
4938
4939 /* First, if DR does not exist, trigger UD */
4940 if (!kvm_require_dr(vcpu, dr))
4941 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004942
Jan Kiszkaf2483412010-01-20 18:20:20 +01004943 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03004944 if (!kvm_require_cpl(vcpu, 0))
4945 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004946 dr7 = vmcs_readl(GUEST_DR7);
4947 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004948 /*
4949 * As the vm-exit takes precedence over the debug trap, we
4950 * need to emulate the latter, either for the host or the
4951 * guest debugging itself.
4952 */
4953 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Paolo Bonzini45981de2020-05-06 05:59:39 -04004954 vcpu->run->debug.arch.dr6 = DR6_BD | DR6_RTM | DR6_FIXED_1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004955 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02004956 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004957 vcpu->run->debug.arch.exception = DB_VECTOR;
4958 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004959 return 0;
4960 } else {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04004961 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BD);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004962 return 1;
4963 }
4964 }
4965
Paolo Bonzini81908bf2014-02-21 10:32:27 +01004966 if (vcpu->guest_debug == 0) {
Sean Christopherson2183f562019-05-07 12:17:56 -07004967 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01004968
4969 /*
4970 * No more DR vmexits; force a reload of the debug registers
4971 * and reenter on this instruction. The next vmexit will
4972 * retrieve the full state of the debug registers.
4973 */
4974 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
4975 return 1;
4976 }
4977
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004978 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
4979 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03004980 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01004981
4982 if (kvm_get_dr(vcpu, dr, &val))
4983 return 1;
4984 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03004985 } else
Nadav Amit57773922014-06-18 17:19:23 +03004986 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01004987 return 1;
4988
Kyle Huey6affcbe2016-11-29 12:40:40 -08004989 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004990}
4991
Paolo Bonzini81908bf2014-02-21 10:32:27 +01004992static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
4993{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01004994 get_debugreg(vcpu->arch.db[0], 0);
4995 get_debugreg(vcpu->arch.db[1], 1);
4996 get_debugreg(vcpu->arch.db[2], 2);
4997 get_debugreg(vcpu->arch.db[3], 3);
4998 get_debugreg(vcpu->arch.dr6, 6);
4999 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
5000
5001 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Sean Christopherson2183f562019-05-07 12:17:56 -07005002 exec_controls_setbit(to_vmx(vcpu), CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005003}
5004
Gleb Natapov020df072010-04-13 10:05:23 +03005005static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
5006{
5007 vmcs_writel(GUEST_DR7, val);
5008}
5009
Avi Kivity851ba692009-08-24 11:10:17 +03005010static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005011{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01005012 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005013 return 1;
5014}
5015
Avi Kivity851ba692009-08-24 11:10:17 +03005016static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005017{
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005018 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_INTR_WINDOW_EXITING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005019
Avi Kivity3842d132010-07-27 12:30:24 +03005020 kvm_make_request(KVM_REQ_EVENT, vcpu);
5021
Jan Kiszkaa26bf122008-09-26 09:30:45 +02005022 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005023 return 1;
5024}
5025
Avi Kivity851ba692009-08-24 11:10:17 +03005026static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02005027{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03005028 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02005029}
5030
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005031static int handle_invd(struct kvm_vcpu *vcpu)
5032{
Tom Lendacky28e2b2f2020-09-24 13:41:58 -05005033 /* Treat an INVD instruction as a NOP and just skip it. */
5034 return kvm_skip_emulated_instruction(vcpu);
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005035}
5036
Avi Kivity851ba692009-08-24 11:10:17 +03005037static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03005038{
Sean Christopherson5addc232020-04-15 13:34:53 -07005039 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005040
5041 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005042 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005043}
5044
Avi Kivityfee84b02011-11-10 14:57:25 +02005045static int handle_rdpmc(struct kvm_vcpu *vcpu)
5046{
5047 int err;
5048
5049 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005050 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02005051}
5052
Avi Kivity851ba692009-08-24 11:10:17 +03005053static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02005054{
Kyle Huey6affcbe2016-11-29 12:40:40 -08005055 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02005056}
5057
Dexuan Cui2acf9232010-06-10 11:27:12 +08005058static int handle_xsetbv(struct kvm_vcpu *vcpu)
5059{
5060 u64 new_bv = kvm_read_edx_eax(vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -07005061 u32 index = kvm_rcx_read(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08005062
5063 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08005064 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08005065 return 1;
5066}
5067
Avi Kivity851ba692009-08-24 11:10:17 +03005068static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005069{
Kevin Tian58fbbf22011-08-30 13:56:17 +03005070 if (likely(fasteoi)) {
Sean Christopherson5addc232020-04-15 13:34:53 -07005071 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03005072 int access_type, offset;
5073
5074 access_type = exit_qualification & APIC_ACCESS_TYPE;
5075 offset = exit_qualification & APIC_ACCESS_OFFSET;
5076 /*
5077 * Sane guest uses MOV to write EOI, with written value
5078 * not cared. So make a short-circuit here by avoiding
5079 * heavy instruction emulation.
5080 */
5081 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
5082 (offset == APIC_EOI)) {
5083 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005084 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03005085 }
5086 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005087 return kvm_emulate_instruction(vcpu, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08005088}
5089
Yang Zhangc7c9c562013-01-25 10:18:51 +08005090static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
5091{
Sean Christopherson5addc232020-04-15 13:34:53 -07005092 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Yang Zhangc7c9c562013-01-25 10:18:51 +08005093 int vector = exit_qualification & 0xff;
5094
5095 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
5096 kvm_apic_set_eoi_accelerated(vcpu, vector);
5097 return 1;
5098}
5099
Yang Zhang83d4c282013-01-25 10:18:49 +08005100static int handle_apic_write(struct kvm_vcpu *vcpu)
5101{
Sean Christopherson5addc232020-04-15 13:34:53 -07005102 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Yang Zhang83d4c282013-01-25 10:18:49 +08005103 u32 offset = exit_qualification & 0xfff;
5104
5105 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
5106 kvm_apic_write_nodecode(vcpu, offset);
5107 return 1;
5108}
5109
Avi Kivity851ba692009-08-24 11:10:17 +03005110static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02005111{
Jan Kiszka60637aa2008-09-26 09:30:47 +02005112 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005113 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02005114 bool has_error_code = false;
5115 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02005116 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005117 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005118
5119 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005120 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005121 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02005122
Sean Christopherson5addc232020-04-15 13:34:53 -07005123 exit_qualification = vmx_get_exit_qual(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005124
5125 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005126 if (reason == TASK_SWITCH_GATE && idt_v) {
5127 switch (type) {
5128 case INTR_TYPE_NMI_INTR:
5129 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02005130 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005131 break;
5132 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005133 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005134 kvm_clear_interrupt_queue(vcpu);
5135 break;
5136 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02005137 if (vmx->idt_vectoring_info &
5138 VECTORING_INFO_DELIVER_CODE_MASK) {
5139 has_error_code = true;
5140 error_code =
5141 vmcs_read32(IDT_VECTORING_ERROR_CODE);
5142 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05005143 fallthrough;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005144 case INTR_TYPE_SOFT_EXCEPTION:
5145 kvm_clear_exception_queue(vcpu);
5146 break;
5147 default:
5148 break;
5149 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02005150 }
Izik Eidus37817f22008-03-24 23:14:53 +02005151 tss_selector = exit_qualification;
5152
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005153 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
5154 type != INTR_TYPE_EXT_INTR &&
5155 type != INTR_TYPE_NMI_INTR))
Sean Christopherson1957aa62019-08-27 14:40:39 -07005156 WARN_ON(!skip_emulated_instruction(vcpu));
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005157
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005158 /*
5159 * TODO: What about debug traps on tss switch?
5160 * Are we supposed to inject them and update dr6?
5161 */
Sean Christopherson10517782019-08-27 14:40:35 -07005162 return kvm_task_switch(vcpu, tss_selector,
5163 type == INTR_TYPE_SOFT_INTR ? idt_index : -1,
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005164 reason, has_error_code, error_code);
Izik Eidus37817f22008-03-24 23:14:53 +02005165}
5166
Avi Kivity851ba692009-08-24 11:10:17 +03005167static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08005168{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005169 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08005170 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01005171 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08005172
Sean Christopherson5addc232020-04-15 13:34:53 -07005173 exit_qualification = vmx_get_exit_qual(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08005174
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005175 /*
5176 * EPT violation happened while executing iret from NMI,
5177 * "blocked by NMI" bit has to be set before next VM entry.
5178 * There are errata that may cause this bit to not be set:
5179 * AAK134, BY25.
5180 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005181 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005182 enable_vnmi &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005183 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005184 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
5185
Sheng Yang14394422008-04-28 12:24:45 +08005186 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005187 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005188
Junaid Shahid27959a42016-12-06 16:46:10 -08005189 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005190 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08005191 ? PFERR_USER_MASK : 0;
5192 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005193 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08005194 ? PFERR_WRITE_MASK : 0;
5195 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08005196 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08005197 ? PFERR_FETCH_MASK : 0;
5198 /* ept page table entry is present? */
5199 error_code |= (exit_qualification &
5200 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
5201 EPT_VIOLATION_EXECUTABLE))
5202 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005203
Paolo Bonzinieebed242016-11-28 14:39:58 +01005204 error_code |= (exit_qualification & 0x100) != 0 ?
5205 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03005206
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005207 vcpu->arch.exit_qualification = exit_qualification;
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02005208
5209 /*
5210 * Check that the GPA doesn't exceed physical memory limits, as that is
5211 * a guest page fault. We have to emulate the instruction here, because
5212 * if the illegal address is that of a paging structure, then
5213 * EPT_VIOLATION_ACC_WRITE bit is set. Alternatively, if supported we
5214 * would also use advanced VM-exit information for EPT violations to
5215 * reconstruct the page fault error code.
5216 */
Sean Christophersondc465152020-09-24 12:42:49 -07005217 if (unlikely(kvm_vcpu_is_illegal_gpa(vcpu, gpa)))
Mohammed Gamal1dbf5d682020-07-10 17:48:09 +02005218 return kvm_emulate_instruction(vcpu, 0);
5219
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005220 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08005221}
5222
Avi Kivity851ba692009-08-24 11:10:17 +03005223static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005224{
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005225 gpa_t gpa;
5226
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005227 /*
5228 * A nested guest cannot optimize MMIO vmexits, because we have an
5229 * nGPA here instead of the required GPA.
5230 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005231 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02005232 if (!is_guest_mode(vcpu) &&
5233 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08005234 trace_kvm_fast_mmio(gpa);
Sean Christopherson1957aa62019-08-27 14:40:39 -07005235 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03005236 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005237
Sean Christophersonc75d0edc2018-03-29 14:48:31 -07005238 return kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005239}
5240
Avi Kivity851ba692009-08-24 11:10:17 +03005241static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08005242{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005243 WARN_ON_ONCE(!enable_vnmi);
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08005244 exec_controls_clearbit(to_vmx(vcpu), CPU_BASED_NMI_WINDOW_EXITING);
Sheng Yangf08864b2008-05-15 18:23:25 +08005245 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03005246 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08005247
5248 return 1;
5249}
5250
Mohammed Gamal80ced182009-09-01 12:48:18 +02005251static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005252{
Avi Kivity8b3079a2009-01-05 12:10:54 +02005253 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity49e9d552010-09-19 14:34:08 +02005254 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03005255 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02005256
Sean Christopherson2183f562019-05-07 12:17:56 -07005257 intr_window_requested = exec_controls_get(vmx) &
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005258 CPU_BASED_INTR_WINDOW_EXITING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005259
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01005260 while (vmx->emulation_required && count-- != 0) {
Sean Christophersondb438592020-04-22 19:25:48 -07005261 if (intr_window_requested && !vmx_interrupt_blocked(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02005262 return handle_interrupt_window(&vmx->vcpu);
5263
Radim Krčmář72875d82017-04-26 22:32:19 +02005264 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03005265 return 1;
5266
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005267 if (!kvm_emulate_instruction(vcpu, 0))
Sean Christopherson8fff2712019-08-27 14:40:37 -07005268 return 0;
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005269
Sean Christophersonadd5ff72018-03-23 09:34:00 -07005270 if (vmx->emulation_required && !vmx->rmode.vm86_active &&
Sean Christopherson8fff2712019-08-27 14:40:37 -07005271 vcpu->arch.exception.pending) {
5272 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5273 vcpu->run->internal.suberror =
5274 KVM_INTERNAL_ERROR_EMULATION;
5275 vcpu->run->internal.ndata = 0;
5276 return 0;
5277 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005278
Gleb Natapov8d76c492013-05-08 18:38:44 +03005279 if (vcpu->arch.halt_request) {
5280 vcpu->arch.halt_request = 0;
Sean Christopherson8fff2712019-08-27 14:40:37 -07005281 return kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03005282 }
5283
Sean Christopherson8fff2712019-08-27 14:40:37 -07005284 /*
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02005285 * Note, return 1 and not 0, vcpu_run() will invoke
5286 * xfer_to_guest_mode() which will create a proper return
5287 * code.
Sean Christopherson8fff2712019-08-27 14:40:37 -07005288 */
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02005289 if (__xfer_to_guest_mode_work_pending())
Sean Christopherson8fff2712019-08-27 14:40:37 -07005290 return 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03005291 }
5292
Sean Christopherson8fff2712019-08-27 14:40:37 -07005293 return 1;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005294}
5295
5296static void grow_ple_window(struct kvm_vcpu *vcpu)
5297{
5298 struct vcpu_vmx *vmx = to_vmx(vcpu);
Peter Xuc5c5d6f2019-09-06 10:17:21 +08005299 unsigned int old = vmx->ple_window;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005300
Babu Mogerc8e88712018-03-16 16:37:24 -04005301 vmx->ple_window = __grow_ple_window(old, ple_window,
5302 ple_window_grow,
5303 ple_window_max);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005304
Peter Xu4f75bcc2019-09-06 10:17:22 +08005305 if (vmx->ple_window != old) {
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005306 vmx->ple_window_dirty = true;
Peter Xu4f75bcc2019-09-06 10:17:22 +08005307 trace_kvm_ple_window_update(vcpu->vcpu_id,
5308 vmx->ple_window, old);
5309 }
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005310}
5311
5312static void shrink_ple_window(struct kvm_vcpu *vcpu)
5313{
5314 struct vcpu_vmx *vmx = to_vmx(vcpu);
Peter Xuc5c5d6f2019-09-06 10:17:21 +08005315 unsigned int old = vmx->ple_window;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005316
Babu Mogerc8e88712018-03-16 16:37:24 -04005317 vmx->ple_window = __shrink_ple_window(old, ple_window,
5318 ple_window_shrink,
5319 ple_window);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005320
Peter Xu4f75bcc2019-09-06 10:17:22 +08005321 if (vmx->ple_window != old) {
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005322 vmx->ple_window_dirty = true;
Peter Xu4f75bcc2019-09-06 10:17:22 +08005323 trace_kvm_ple_window_update(vcpu->vcpu_id,
5324 vmx->ple_window, old);
5325 }
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005326}
5327
Peng Haoe01bca22018-04-07 05:47:32 +08005328static void vmx_enable_tdp(void)
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005329{
5330 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
5331 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
5332 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
5333 0ull, VMX_EPT_EXECUTABLE_MASK,
5334 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05005335 VMX_EPT_RWX_MASK, 0ull);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005336
5337 ept_set_mmio_spte_mask();
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005338}
5339
Avi Kivity6aa8b732006-12-10 02:21:36 -08005340/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005341 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
5342 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
5343 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03005344static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005345{
Wanpeng Lib31c1142018-03-12 04:53:04 -07005346 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02005347 grow_ple_window(vcpu);
5348
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08005349 /*
5350 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
5351 * VM-execution control is ignored if CPL > 0. OTOH, KVM
5352 * never set PAUSE_EXITING and just set PLE if supported,
5353 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
5354 */
5355 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005356 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005357}
5358
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005359static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08005360{
Kyle Huey6affcbe2016-11-29 12:40:40 -08005361 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08005362}
5363
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005364static int handle_mwait(struct kvm_vcpu *vcpu)
5365{
5366 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
5367 return handle_nop(vcpu);
5368}
5369
Jim Mattson45ec3682017-08-23 16:32:04 -07005370static int handle_invalid_op(struct kvm_vcpu *vcpu)
5371{
5372 kvm_queue_exception(vcpu, UD_VECTOR);
5373 return 1;
5374}
5375
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005376static int handle_monitor_trap(struct kvm_vcpu *vcpu)
5377{
5378 return 1;
5379}
5380
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005381static int handle_monitor(struct kvm_vcpu *vcpu)
5382{
5383 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
5384 return handle_nop(vcpu);
5385}
5386
Junaid Shahideb4b2482018-06-27 14:59:14 -07005387static int handle_invpcid(struct kvm_vcpu *vcpu)
5388{
5389 u32 vmx_instruction_info;
5390 unsigned long type;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005391 gva_t gva;
Junaid Shahideb4b2482018-06-27 14:59:14 -07005392 struct {
5393 u64 pcid;
5394 u64 gla;
5395 } operand;
5396
5397 if (!guest_cpuid_has(vcpu, X86_FEATURE_INVPCID)) {
5398 kvm_queue_exception(vcpu, UD_VECTOR);
5399 return 1;
5400 }
5401
5402 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5403 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
5404
5405 if (type > 3) {
5406 kvm_inject_gp(vcpu, 0);
5407 return 1;
5408 }
5409
5410 /* According to the Intel instruction reference, the memory operand
5411 * is read even if it isn't needed (e.g., for type==all)
5412 */
Sean Christopherson5addc232020-04-15 13:34:53 -07005413 if (get_vmx_mem_address(vcpu, vmx_get_exit_qual(vcpu),
Eugene Korenevskyfdb28612019-06-06 00:19:16 +03005414 vmx_instruction_info, false,
5415 sizeof(operand), &gva))
Junaid Shahideb4b2482018-06-27 14:59:14 -07005416 return 1;
5417
Babu Moger97150922020-09-11 14:29:12 -05005418 return kvm_handle_invpcid(vcpu, type, gva);
Junaid Shahideb4b2482018-06-27 14:59:14 -07005419}
5420
Kai Huang843e4332015-01-28 10:54:28 +08005421static int handle_pml_full(struct kvm_vcpu *vcpu)
5422{
5423 unsigned long exit_qualification;
5424
5425 trace_kvm_pml_full(vcpu->vcpu_id);
5426
Sean Christopherson5addc232020-04-15 13:34:53 -07005427 exit_qualification = vmx_get_exit_qual(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005428
5429 /*
5430 * PML buffer FULL happened while executing iret from NMI,
5431 * "blocked by NMI" bit has to be set before next VM entry.
5432 */
5433 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005434 enable_vnmi &&
Kai Huang843e4332015-01-28 10:54:28 +08005435 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
5436 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5437 GUEST_INTR_STATE_NMI);
5438
5439 /*
5440 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
5441 * here.., and there's no userspace involvement needed for PML.
5442 */
5443 return 1;
5444}
5445
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005446static fastpath_t handle_fastpath_preemption_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07005447{
Sean Christopherson804939e2019-05-07 12:18:05 -07005448 struct vcpu_vmx *vmx = to_vmx(vcpu);
5449
5450 if (!vmx->req_immediate_exit &&
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005451 !unlikely(vmx->loaded_vmcs->hv_timer_soft_disabled)) {
Sean Christophersond264ee02018-08-27 15:21:12 -07005452 kvm_lapic_expired_hv_timer(vcpu);
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005453 return EXIT_FASTPATH_REENTER_GUEST;
5454 }
Sean Christopherson804939e2019-05-07 12:18:05 -07005455
Wanpeng Li26efe2f2020-05-06 11:44:01 -04005456 return EXIT_FASTPATH_NONE;
5457}
5458
5459static int handle_preemption_timer(struct kvm_vcpu *vcpu)
5460{
5461 handle_fastpath_preemption_timer(vcpu);
Yunhong Jiang64672c92016-06-13 14:19:59 -07005462 return 1;
5463}
5464
Sean Christophersone4027cf2018-12-03 13:53:12 -08005465/*
5466 * When nested=0, all VMX instruction VM Exits filter here. The handlers
5467 * are overwritten by nested_vmx_setup() when nested=1.
5468 */
5469static int handle_vmx_instruction(struct kvm_vcpu *vcpu)
5470{
5471 kvm_queue_exception(vcpu, UD_VECTOR);
5472 return 1;
5473}
5474
Sean Christopherson0b665d32018-08-14 09:33:34 -07005475static int handle_encls(struct kvm_vcpu *vcpu)
5476{
5477 /*
5478 * SGX virtualization is not yet supported. There is no software
5479 * enable bit for SGX, so we have to trap ENCLS and inject a #UD
5480 * to prevent the guest from executing ENCLS.
5481 */
5482 kvm_queue_exception(vcpu, UD_VECTOR);
5483 return 1;
5484}
5485
Nadav Har'El0140cae2011-05-25 23:06:28 +03005486/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005487 * The exit handlers return 1 if the exit was handled fully and guest execution
5488 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
5489 * to be done to userspace and return 0.
5490 */
Sean Christophersone4027cf2018-12-03 13:53:12 -08005491static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Sean Christopherson95b5a482019-04-19 22:50:59 -07005492 [EXIT_REASON_EXCEPTION_NMI] = handle_exception_nmi,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005493 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08005494 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08005495 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005496 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005497 [EXIT_REASON_CR_ACCESS] = handle_cr,
5498 [EXIT_REASON_DR_ACCESS] = handle_dr,
Andrea Arcangelif399e602019-11-04 17:59:58 -05005499 [EXIT_REASON_CPUID] = kvm_emulate_cpuid,
5500 [EXIT_REASON_MSR_READ] = kvm_emulate_rdmsr,
5501 [EXIT_REASON_MSR_WRITE] = kvm_emulate_wrmsr,
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005502 [EXIT_REASON_INTERRUPT_WINDOW] = handle_interrupt_window,
Andrea Arcangelif399e602019-11-04 17:59:58 -05005503 [EXIT_REASON_HLT] = kvm_emulate_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005504 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03005505 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02005506 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02005507 [EXIT_REASON_VMCALL] = handle_vmcall,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005508 [EXIT_REASON_VMCLEAR] = handle_vmx_instruction,
5509 [EXIT_REASON_VMLAUNCH] = handle_vmx_instruction,
5510 [EXIT_REASON_VMPTRLD] = handle_vmx_instruction,
5511 [EXIT_REASON_VMPTRST] = handle_vmx_instruction,
5512 [EXIT_REASON_VMREAD] = handle_vmx_instruction,
5513 [EXIT_REASON_VMRESUME] = handle_vmx_instruction,
5514 [EXIT_REASON_VMWRITE] = handle_vmx_instruction,
5515 [EXIT_REASON_VMOFF] = handle_vmx_instruction,
5516 [EXIT_REASON_VMON] = handle_vmx_instruction,
Sheng Yangf78e0e22007-10-29 09:40:42 +08005517 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
5518 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08005519 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08005520 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02005521 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08005522 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02005523 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08005524 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Paolo Bonzini0367f202016-07-12 10:44:55 +02005525 [EXIT_REASON_GDTR_IDTR] = handle_desc,
5526 [EXIT_REASON_LDTR_TR] = handle_desc,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005527 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
5528 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005529 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005530 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03005531 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04005532 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005533 [EXIT_REASON_INVEPT] = handle_vmx_instruction,
5534 [EXIT_REASON_INVVPID] = handle_vmx_instruction,
Jim Mattson45ec3682017-08-23 16:32:04 -07005535 [EXIT_REASON_RDRAND] = handle_invalid_op,
Jim Mattson75f4fc82017-08-23 16:32:03 -07005536 [EXIT_REASON_RDSEED] = handle_invalid_op,
Kai Huang843e4332015-01-28 10:54:28 +08005537 [EXIT_REASON_PML_FULL] = handle_pml_full,
Junaid Shahideb4b2482018-06-27 14:59:14 -07005538 [EXIT_REASON_INVPCID] = handle_invpcid,
Sean Christophersone4027cf2018-12-03 13:53:12 -08005539 [EXIT_REASON_VMFUNC] = handle_vmx_instruction,
Yunhong Jiang64672c92016-06-13 14:19:59 -07005540 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Sean Christopherson0b665d32018-08-14 09:33:34 -07005541 [EXIT_REASON_ENCLS] = handle_encls,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005542};
5543
5544static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04005545 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005546
Sean Christopherson235ba742020-09-23 13:13:46 -07005547static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2,
5548 u32 *intr_info, u32 *error_code)
Avi Kivity586f9602010-11-18 13:09:54 +02005549{
Sean Christopherson235ba742020-09-23 13:13:46 -07005550 struct vcpu_vmx *vmx = to_vmx(vcpu);
5551
Sean Christopherson5addc232020-04-15 13:34:53 -07005552 *info1 = vmx_get_exit_qual(vcpu);
Sean Christopherson235ba742020-09-23 13:13:46 -07005553 if (!(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
5554 *info2 = vmx->idt_vectoring_info;
5555 *intr_info = vmx_get_intr_info(vcpu);
5556 if (is_exception_with_error_code(*intr_info))
5557 *error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
5558 else
5559 *error_code = 0;
5560 } else {
5561 *info2 = 0;
5562 *intr_info = 0;
5563 *error_code = 0;
5564 }
Avi Kivity586f9602010-11-18 13:09:54 +02005565}
5566
Kai Huanga3eaa862015-11-04 13:46:05 +08005567static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08005568{
Kai Huanga3eaa862015-11-04 13:46:05 +08005569 if (vmx->pml_pg) {
5570 __free_page(vmx->pml_pg);
5571 vmx->pml_pg = NULL;
5572 }
Kai Huang843e4332015-01-28 10:54:28 +08005573}
5574
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005575static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08005576{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005577 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005578 u64 *pml_buf;
5579 u16 pml_idx;
5580
5581 pml_idx = vmcs_read16(GUEST_PML_INDEX);
5582
5583 /* Do nothing if PML buffer is empty */
5584 if (pml_idx == (PML_ENTITY_NUM - 1))
5585 return;
5586
5587 /* PML index always points to next available PML buffer entity */
5588 if (pml_idx >= PML_ENTITY_NUM)
5589 pml_idx = 0;
5590 else
5591 pml_idx++;
5592
5593 pml_buf = page_address(vmx->pml_pg);
5594 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
5595 u64 gpa;
5596
5597 gpa = pml_buf[pml_idx];
5598 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005599 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08005600 }
5601
5602 /* reset PML index */
5603 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5604}
5605
5606/*
5607 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
5608 * Called before reporting dirty_bitmap to userspace.
5609 */
5610static void kvm_flush_pml_buffers(struct kvm *kvm)
5611{
5612 int i;
5613 struct kvm_vcpu *vcpu;
5614 /*
5615 * We only need to kick vcpu out of guest mode here, as PML buffer
5616 * is flushed at beginning of all VMEXITs, and it's obvious that only
5617 * vcpus running in guest are possible to have unflushed GPAs in PML
5618 * buffer.
5619 */
5620 kvm_for_each_vcpu(i, vcpu, kvm)
5621 kvm_vcpu_kick(vcpu);
5622}
5623
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005624static void vmx_dump_sel(char *name, uint32_t sel)
5625{
5626 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05005627 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005628 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
5629 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
5630 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
5631}
5632
5633static void vmx_dump_dtsel(char *name, uint32_t limit)
5634{
5635 pr_err("%s limit=0x%08x, base=0x%016lx\n",
5636 name, vmcs_read32(limit),
5637 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
5638}
5639
Paolo Bonzini69090812019-04-15 15:16:17 +02005640void dump_vmcs(void)
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005641{
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005642 u32 vmentry_ctl, vmexit_ctl;
5643 u32 cpu_based_exec_ctrl, pin_based_exec_ctrl, secondary_exec_control;
5644 unsigned long cr4;
5645 u64 efer;
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005646
Paolo Bonzini6f2f8452019-05-20 15:34:35 +02005647 if (!dump_invalid_vmcs) {
5648 pr_warn_ratelimited("set kvm_intel.dump_invalid_vmcs=1 to dump internal KVM state.\n");
5649 return;
5650 }
5651
5652 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
5653 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
5654 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5655 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
5656 cr4 = vmcs_readl(GUEST_CR4);
5657 efer = vmcs_read64(GUEST_IA32_EFER);
5658 secondary_exec_control = 0;
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005659 if (cpu_has_secondary_exec_ctrls())
5660 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
5661
5662 pr_err("*** Guest State ***\n");
5663 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5664 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
5665 vmcs_readl(CR0_GUEST_HOST_MASK));
5666 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
5667 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
5668 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
5669 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
5670 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
5671 {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005672 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
5673 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
5674 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
5675 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005676 }
5677 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
5678 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
5679 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
5680 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
5681 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5682 vmcs_readl(GUEST_SYSENTER_ESP),
5683 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
5684 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
5685 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
5686 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
5687 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
5688 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
5689 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
5690 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
5691 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
5692 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
5693 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
5694 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
5695 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005696 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
5697 efer, vmcs_read64(GUEST_IA32_PAT));
5698 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
5699 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005700 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005701 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005702 vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005703 pr_err("PerfGlobCtl = 0x%016llx\n",
5704 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005705 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005706 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005707 pr_err("Interruptibility = %08x ActivityState = %08x\n",
5708 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
5709 vmcs_read32(GUEST_ACTIVITY_STATE));
5710 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
5711 pr_err("InterruptStatus = %04x\n",
5712 vmcs_read16(GUEST_INTR_STATUS));
5713
5714 pr_err("*** Host State ***\n");
5715 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
5716 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
5717 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
5718 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
5719 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
5720 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
5721 vmcs_read16(HOST_TR_SELECTOR));
5722 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
5723 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
5724 vmcs_readl(HOST_TR_BASE));
5725 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
5726 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
5727 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
5728 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
5729 vmcs_readl(HOST_CR4));
5730 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
5731 vmcs_readl(HOST_IA32_SYSENTER_ESP),
5732 vmcs_read32(HOST_IA32_SYSENTER_CS),
5733 vmcs_readl(HOST_IA32_SYSENTER_EIP));
5734 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005735 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
5736 vmcs_read64(HOST_IA32_EFER),
5737 vmcs_read64(HOST_IA32_PAT));
Sean Christophersonc73da3f2018-12-03 13:53:00 -08005738 if (cpu_has_load_perf_global_ctrl() &&
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01005739 vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005740 pr_err("PerfGlobCtl = 0x%016llx\n",
5741 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005742
5743 pr_err("*** Control State ***\n");
5744 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
5745 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
5746 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
5747 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
5748 vmcs_read32(EXCEPTION_BITMAP),
5749 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
5750 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
5751 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
5752 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
5753 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
5754 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
5755 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
5756 vmcs_read32(VM_EXIT_INTR_INFO),
5757 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
5758 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
5759 pr_err(" reason=%08x qualification=%016lx\n",
5760 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
5761 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
5762 vmcs_read32(IDT_VECTORING_INFO_FIELD),
5763 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005764 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08005765 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005766 pr_err("TSC Multiplier = 0x%016llx\n",
5767 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005768 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW) {
5769 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
5770 u16 status = vmcs_read16(GUEST_INTR_STATUS);
5771 pr_err("SVI|RVI = %02x|%02x ", status >> 8, status & 0xff);
5772 }
Dan Carpenterd6a85c32019-04-24 13:15:08 +03005773 pr_cont("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005774 if (secondary_exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
5775 pr_err("APIC-access addr = 0x%016llx ", vmcs_read64(APIC_ACCESS_ADDR));
Dan Carpenterd6a85c32019-04-24 13:15:08 +03005776 pr_cont("virt-APIC addr = 0x%016llx\n", vmcs_read64(VIRTUAL_APIC_PAGE_ADDR));
Paolo Bonzini9d609642019-04-15 15:14:32 +02005777 }
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005778 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
5779 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
5780 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01005781 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005782 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
5783 pr_err("PLE Gap=%08x Window=%08x\n",
5784 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
5785 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
5786 pr_err("Virtual processor ID = 0x%04x\n",
5787 vmcs_read16(VIRTUAL_PROCESSOR_ID));
5788}
5789
Avi Kivity6aa8b732006-12-10 02:21:36 -08005790/*
5791 * The guest has exited. See if we can fix it or if we need userspace
5792 * assistance.
5793 */
Wanpeng Li404d5d72020-04-28 14:23:25 +08005794static int vmx_handle_exit(struct kvm_vcpu *vcpu, fastpath_t exit_fastpath)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005795{
Avi Kivity29bd8a72007-09-10 17:27:03 +03005796 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005797 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02005798 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005799
Kai Huang843e4332015-01-28 10:54:28 +08005800 /*
5801 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
5802 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
5803 * querying dirty_bitmap, we only need to kick all vcpus out of guest
5804 * mode as if vcpus is in root mode, the PML buffer must has been
5805 * flushed already.
5806 */
5807 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005808 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08005809
Sean Christophersondb438592020-04-22 19:25:48 -07005810 /*
5811 * We should never reach this point with a pending nested VM-Enter, and
5812 * more specifically emulation of L2 due to invalid guest state (see
5813 * below) should never happen as that means we incorrectly allowed a
5814 * nested VM-Enter with an invalid vmcs12.
5815 */
5816 WARN_ON_ONCE(vmx->nested.nested_run_pending);
5817
Mohammed Gamal80ced182009-09-01 12:48:18 +02005818 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02005819 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02005820 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005821
Paolo Bonzini96b100c2020-03-17 18:32:50 +01005822 if (is_guest_mode(vcpu)) {
5823 /*
5824 * The host physical addresses of some pages of guest memory
5825 * are loaded into the vmcs02 (e.g. vmcs12's Virtual APIC
5826 * Page). The CPU may write to these pages via their host
5827 * physical address while L2 is running, bypassing any
5828 * address-translation-based dirty tracking (e.g. EPT write
5829 * protection).
5830 *
5831 * Mark them dirty on every exit from L2 to prevent them from
5832 * getting out of sync with dirty tracking.
5833 */
5834 nested_mark_vmcs12_pages_dirty(vcpu);
5835
Sean Christophersonf47baae2020-04-15 10:55:16 -07005836 if (nested_vmx_reflect_vmexit(vcpu))
Sean Christopherson789afc52020-04-15 10:55:10 -07005837 return 1;
Paolo Bonzini96b100c2020-03-17 18:32:50 +01005838 }
Nadav Har'El644d7112011-05-25 23:12:35 +03005839
Mohammed Gamal51207022010-05-31 22:40:54 +03005840 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02005841 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03005842 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5843 vcpu->run->fail_entry.hardware_entry_failure_reason
5844 = exit_reason;
Jim Mattson8a14fe42020-06-03 16:56:22 -07005845 vcpu->run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Mohammed Gamal51207022010-05-31 22:40:54 +03005846 return 0;
5847 }
5848
Avi Kivity29bd8a72007-09-10 17:27:03 +03005849 if (unlikely(vmx->fail)) {
Paolo Bonzini3b20e032019-07-19 18:15:08 +02005850 dump_vmcs();
Avi Kivity851ba692009-08-24 11:10:17 +03005851 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5852 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03005853 = vmcs_read32(VM_INSTRUCTION_ERROR);
Jim Mattson8a14fe42020-06-03 16:56:22 -07005854 vcpu->run->fail_entry.cpu = vcpu->arch.last_vmentry_cpu;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005855 return 0;
5856 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005857
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005858 /*
5859 * Note:
5860 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
5861 * delivery event since it indicates guest is accessing MMIO.
5862 * The vm-exit can be triggered again after return to guest that
5863 * will cause infinite loop.
5864 */
Mike Dayd77c26f2007-10-08 09:02:08 -04005865 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08005866 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02005867 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +00005868 exit_reason != EXIT_REASON_PML_FULL &&
Wanpeng Li99b82a12020-08-19 16:55:27 +08005869 exit_reason != EXIT_REASON_APIC_ACCESS &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005870 exit_reason != EXIT_REASON_TASK_SWITCH)) {
5871 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5872 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02005873 vcpu->run->internal.ndata = 3;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005874 vcpu->run->internal.data[0] = vectoring_info;
5875 vcpu->run->internal.data[1] = exit_reason;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02005876 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
5877 if (exit_reason == EXIT_REASON_EPT_MISCONFIG) {
5878 vcpu->run->internal.ndata++;
5879 vcpu->run->internal.data[3] =
5880 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
5881 }
Jim Mattson1aa561b2020-06-03 16:56:21 -07005882 vcpu->run->internal.data[vcpu->run->internal.ndata++] =
Jim Mattson8a14fe42020-06-03 16:56:22 -07005883 vcpu->arch.last_vmentry_cpu;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08005884 return 0;
5885 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005886
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005887 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01005888 vmx->loaded_vmcs->soft_vnmi_blocked)) {
Sean Christophersondb438592020-04-22 19:25:48 -07005889 if (!vmx_interrupt_blocked(vcpu)) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01005890 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
5891 } else if (vmx->loaded_vmcs->vnmi_blocked_time > 1000000000LL &&
5892 vcpu->arch.nmi_pending) {
5893 /*
5894 * This CPU don't support us in finding the end of an
5895 * NMI-blocked window if the guest runs with IRQs
5896 * disabled. So we pull the trigger after 1 s of
5897 * futile waiting, but inform the user about this.
5898 */
5899 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
5900 "state on VCPU %d after 1 s timeout\n",
5901 __func__, vcpu->vcpu_id);
5902 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
5903 }
5904 }
5905
Wanpeng Li404d5d72020-04-28 14:23:25 +08005906 if (exit_fastpath != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08005907 return 1;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08005908
5909 if (exit_reason >= kvm_vmx_max_exit_handlers)
5910 goto unexpected_vmexit;
5911#ifdef CONFIG_RETPOLINE
5912 if (exit_reason == EXIT_REASON_MSR_WRITE)
5913 return kvm_emulate_wrmsr(vcpu);
5914 else if (exit_reason == EXIT_REASON_PREEMPTION_TIMER)
5915 return handle_preemption_timer(vcpu);
5916 else if (exit_reason == EXIT_REASON_INTERRUPT_WINDOW)
5917 return handle_interrupt_window(vcpu);
5918 else if (exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT)
5919 return handle_external_interrupt(vcpu);
5920 else if (exit_reason == EXIT_REASON_HLT)
5921 return kvm_emulate_halt(vcpu);
5922 else if (exit_reason == EXIT_REASON_EPT_MISCONFIG)
5923 return handle_ept_misconfig(vcpu);
5924#endif
5925
5926 exit_reason = array_index_nospec(exit_reason,
5927 kvm_vmx_max_exit_handlers);
5928 if (!kvm_vmx_exit_handlers[exit_reason])
5929 goto unexpected_vmexit;
5930
5931 return kvm_vmx_exit_handlers[exit_reason](vcpu);
5932
5933unexpected_vmexit:
5934 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n", exit_reason);
5935 dump_vmcs();
5936 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5937 vcpu->run->internal.suberror =
5938 KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON;
Jim Mattson1aa561b2020-06-03 16:56:21 -07005939 vcpu->run->internal.ndata = 2;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08005940 vcpu->run->internal.data[0] = exit_reason;
Jim Mattson8a14fe42020-06-03 16:56:22 -07005941 vcpu->run->internal.data[1] = vcpu->arch.last_vmentry_cpu;
Marios Pomonisc926f2f2019-12-11 12:47:51 -08005942 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005943}
5944
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02005945/*
5946 * Software based L1D cache flush which is used when microcode providing
5947 * the cache control MSR is not loaded.
5948 *
5949 * The L1D cache is 32 KiB on Nehalem and later microarchitectures, but to
5950 * flush it is required to read in 64 KiB because the replacement algorithm
5951 * is not exactly LRU. This could be sized at runtime via topology
5952 * information but as all relevant affected CPUs have 32KiB L1D cache size
5953 * there is no point in doing so.
5954 */
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02005955static noinstr void vmx_l1d_flush(struct kvm_vcpu *vcpu)
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02005956{
5957 int size = PAGE_SIZE << L1D_CACHE_ORDER;
Paolo Bonzinic595cee2018-07-02 13:07:14 +02005958
5959 /*
Thomas Gleixner2f055942018-07-13 16:23:17 +02005960 * This code is only executed when the the flush mode is 'cond' or
5961 * 'always'
Paolo Bonzinic595cee2018-07-02 13:07:14 +02005962 */
Nicolai Stange427362a2018-07-21 22:25:00 +02005963 if (static_branch_likely(&vmx_l1d_flush_cond)) {
Nicolai Stange45b575c2018-07-27 13:22:16 +02005964 bool flush_l1d;
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02005965
Nicolai Stange379fd0c2018-07-21 22:16:56 +02005966 /*
Nicolai Stange45b575c2018-07-27 13:22:16 +02005967 * Clear the per-vcpu flush bit, it gets set again
5968 * either from vcpu_run() or from one of the unsafe
5969 * VMEXIT handlers.
Nicolai Stange379fd0c2018-07-21 22:16:56 +02005970 */
Nicolai Stange45b575c2018-07-27 13:22:16 +02005971 flush_l1d = vcpu->arch.l1tf_flush_l1d;
Thomas Gleixner4c6523e2018-07-13 16:23:20 +02005972 vcpu->arch.l1tf_flush_l1d = false;
Nicolai Stange45b575c2018-07-27 13:22:16 +02005973
5974 /*
5975 * Clear the per-cpu flush bit, it gets set again from
5976 * the interrupt handlers.
5977 */
5978 flush_l1d |= kvm_get_cpu_l1tf_flush_l1d();
5979 kvm_clear_cpu_l1tf_flush_l1d();
5980
Nicolai Stange5b6ccc62018-07-21 22:35:28 +02005981 if (!flush_l1d)
5982 return;
Nicolai Stange379fd0c2018-07-21 22:16:56 +02005983 }
Paolo Bonzinic595cee2018-07-02 13:07:14 +02005984
5985 vcpu->stat.l1d_flush++;
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02005986
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02005987 if (static_cpu_has(X86_FEATURE_FLUSH_L1D)) {
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02005988 native_wrmsrl(MSR_IA32_FLUSH_CMD, L1D_FLUSH);
Paolo Bonzini3fa045b2018-07-02 13:03:48 +02005989 return;
5990 }
5991
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02005992 asm volatile(
5993 /* First ensure the pages are in the TLB */
5994 "xorl %%eax, %%eax\n"
5995 ".Lpopulate_tlb:\n\t"
Nicolai Stange288d1522018-07-18 19:07:38 +02005996 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02005997 "addl $4096, %%eax\n\t"
5998 "cmpl %%eax, %[size]\n\t"
5999 "jne .Lpopulate_tlb\n\t"
6000 "xorl %%eax, %%eax\n\t"
6001 "cpuid\n\t"
6002 /* Now fill the cache */
6003 "xorl %%eax, %%eax\n"
6004 ".Lfill_cache:\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02006005 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006006 "addl $64, %%eax\n\t"
6007 "cmpl %%eax, %[size]\n\t"
6008 "jne .Lfill_cache\n\t"
6009 "lfence\n"
Nicolai Stange288d1522018-07-18 19:07:38 +02006010 :: [flush_pages] "r" (vmx_l1d_flush_pages),
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +02006011 [size] "r" (size)
6012 : "eax", "ebx", "ecx", "edx");
6013}
6014
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006015static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006016{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006017 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Liran Alon132f4f72019-11-11 14:30:54 +02006018 int tpr_threshold;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006019
6020 if (is_guest_mode(vcpu) &&
6021 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
6022 return;
6023
Liran Alon132f4f72019-11-11 14:30:54 +02006024 tpr_threshold = (irr == -1 || tpr < irr) ? 0 : irr;
Liran Alon02d496cf2019-11-11 14:30:55 +02006025 if (is_guest_mode(vcpu))
6026 to_vmx(vcpu)->nested.l1_tpr_threshold = tpr_threshold;
6027 else
6028 vmcs_write32(TPR_THRESHOLD, tpr_threshold);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006029}
6030
Sean Christopherson97b7ead2018-12-03 13:53:16 -08006031void vmx_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +08006032{
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006033 struct vcpu_vmx *vmx = to_vmx(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08006034 u32 sec_exec_control;
6035
Jim Mattson8d860bb2018-05-09 16:56:05 -04006036 if (!lapic_in_kernel(vcpu))
6037 return;
6038
Sean Christophersonfd6b6d92018-10-01 14:25:34 -07006039 if (!flexpriority_enabled &&
6040 !cpu_has_vmx_virtualize_x2apic_mode())
6041 return;
6042
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02006043 /* Postpone execution until vmcs01 is the current VMCS. */
6044 if (is_guest_mode(vcpu)) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006045 vmx->nested.change_vmcs01_virtual_apic_mode = true;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02006046 return;
6047 }
6048
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006049 sec_exec_control = secondary_exec_controls_get(vmx);
Jim Mattson8d860bb2018-05-09 16:56:05 -04006050 sec_exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
6051 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
Yang Zhang8d146952013-01-25 10:18:50 +08006052
Jim Mattson8d860bb2018-05-09 16:56:05 -04006053 switch (kvm_get_apic_mode(vcpu)) {
6054 case LAPIC_MODE_INVALID:
6055 WARN_ONCE(true, "Invalid local APIC state");
6056 case LAPIC_MODE_DISABLED:
6057 break;
6058 case LAPIC_MODE_XAPIC:
6059 if (flexpriority_enabled) {
6060 sec_exec_control |=
6061 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sean Christopherson4de1f9d2020-03-20 14:28:25 -07006062 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
6063
6064 /*
6065 * Flush the TLB, reloading the APIC access page will
6066 * only do so if its physical address has changed, but
6067 * the guest may have inserted a non-APIC mapping into
6068 * the TLB while the APIC access page was disabled.
6069 */
6070 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
Jim Mattson8d860bb2018-05-09 16:56:05 -04006071 }
6072 break;
6073 case LAPIC_MODE_X2APIC:
6074 if (cpu_has_vmx_virtualize_x2apic_mode())
6075 sec_exec_control |=
6076 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
6077 break;
Yang Zhang8d146952013-01-25 10:18:50 +08006078 }
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006079 secondary_exec_controls_set(vmx, sec_exec_control);
Yang Zhang8d146952013-01-25 10:18:50 +08006080
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006081 vmx_update_msr_bitmap(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08006082}
6083
Sean Christophersona4148b72020-03-20 14:28:24 -07006084static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu)
Tang Chen38b99172014-09-24 15:57:54 +08006085{
Sean Christophersona4148b72020-03-20 14:28:24 -07006086 struct page *page;
6087
Sean Christopherson1196cb92020-03-20 14:28:23 -07006088 /* Defer reload until vmcs01 is the current VMCS. */
6089 if (is_guest_mode(vcpu)) {
6090 to_vmx(vcpu)->nested.reload_vmcs01_apic_access_page = true;
6091 return;
Jim Mattsonfb6c8192017-03-16 13:53:59 -07006092 }
Sean Christopherson1196cb92020-03-20 14:28:23 -07006093
Sean Christopherson4de1f9d2020-03-20 14:28:25 -07006094 if (!(secondary_exec_controls_get(to_vmx(vcpu)) &
6095 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
6096 return;
6097
Sean Christophersona4148b72020-03-20 14:28:24 -07006098 page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
6099 if (is_error_page(page))
6100 return;
6101
6102 vmcs_write64(APIC_ACCESS_ADDR, page_to_phys(page));
Sean Christopherson1196cb92020-03-20 14:28:23 -07006103 vmx_flush_tlb_current(vcpu);
Sean Christophersona4148b72020-03-20 14:28:24 -07006104
6105 /*
6106 * Do not pin apic access page in memory, the MMU notifier
6107 * will call us again if it is migrated or swapped out.
6108 */
6109 put_page(page);
Tang Chen38b99172014-09-24 15:57:54 +08006110}
6111
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006112static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006113{
6114 u16 status;
6115 u8 old;
6116
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006117 if (max_isr == -1)
6118 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006119
6120 status = vmcs_read16(GUEST_INTR_STATUS);
6121 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006122 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08006123 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02006124 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08006125 vmcs_write16(GUEST_INTR_STATUS, status);
6126 }
6127}
6128
6129static void vmx_set_rvi(int vector)
6130{
6131 u16 status;
6132 u8 old;
6133
Wei Wang4114c272014-11-05 10:53:43 +08006134 if (vector == -1)
6135 vector = 0;
6136
Yang Zhangc7c9c562013-01-25 10:18:51 +08006137 status = vmcs_read16(GUEST_INTR_STATUS);
6138 old = (u8)status & 0xff;
6139 if ((u8)vector != old) {
6140 status &= ~0xff;
6141 status |= (u8)vector;
6142 vmcs_write16(GUEST_INTR_STATUS, status);
6143 }
6144}
6145
6146static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
6147{
Liran Alon851c1a182017-12-24 18:12:56 +02006148 /*
6149 * When running L2, updating RVI is only relevant when
6150 * vmcs12 virtual-interrupt-delivery enabled.
6151 * However, it can be enabled only when L1 also
6152 * intercepts external-interrupts and in that case
6153 * we should not update vmcs02 RVI but instead intercept
6154 * interrupt. Therefore, do nothing when running L2.
6155 */
6156 if (!is_guest_mode(vcpu))
Wanpeng Li963fee12014-07-17 19:03:00 +08006157 vmx_set_rvi(max_irr);
Yang Zhangc7c9c562013-01-25 10:18:51 +08006158}
6159
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006160static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006161{
6162 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006163 int max_irr;
Liran Alonf27a85c2017-12-24 18:12:55 +02006164 bool max_irr_updated;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006165
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006166 WARN_ON(!vcpu->arch.apicv_active);
6167 if (pi_test_on(&vmx->pi_desc)) {
6168 pi_clear_on(&vmx->pi_desc);
6169 /*
Liran Alond9ff2742019-11-11 14:25:25 +02006170 * IOMMU can write to PID.ON, so the barrier matters even on UP.
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006171 * But on x86 this is just a compiler barrier anyway.
6172 */
6173 smp_mb__after_atomic();
Liran Alonf27a85c2017-12-24 18:12:55 +02006174 max_irr_updated =
6175 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir, &max_irr);
6176
6177 /*
6178 * If we are running L2 and L1 has a new pending interrupt
6179 * which can be injected, we should re-evaluate
6180 * what should be done with this new L1 interrupt.
Liran Alon851c1a182017-12-24 18:12:56 +02006181 * If L1 intercepts external-interrupts, we should
6182 * exit from L2 to L1. Otherwise, interrupt should be
6183 * delivered directly to L2.
Liran Alonf27a85c2017-12-24 18:12:55 +02006184 */
Liran Alon851c1a182017-12-24 18:12:56 +02006185 if (is_guest_mode(vcpu) && max_irr_updated) {
6186 if (nested_exit_on_intr(vcpu))
6187 kvm_vcpu_exiting_guest_mode(vcpu);
6188 else
6189 kvm_make_request(KVM_REQ_EVENT, vcpu);
6190 }
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006191 } else {
6192 max_irr = kvm_lapic_find_highest_irr(vcpu);
6193 }
6194 vmx_hwapic_irr_update(vcpu, max_irr);
6195 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01006196}
6197
Andrey Smetanin63086302015-11-10 15:36:32 +03006198static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08006199{
Andrey Smetanind62caab2015-11-10 15:36:33 +03006200 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08006201 return;
6202
Yang Zhangc7c9c562013-01-25 10:18:51 +08006203 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
6204 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
6205 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
6206 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
6207}
6208
Paolo Bonzini967235d2016-12-19 14:03:45 +01006209static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
6210{
6211 struct vcpu_vmx *vmx = to_vmx(vcpu);
6212
6213 pi_clear_on(&vmx->pi_desc);
6214 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
6215}
6216
Sean Christopherson535f7ef2020-09-15 12:15:04 -07006217void vmx_do_interrupt_nmi_irqoff(unsigned long entry);
6218
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006219static void handle_interrupt_nmi_irqoff(struct kvm_vcpu *vcpu, u32 intr_info)
6220{
6221 unsigned int vector = intr_info & INTR_INFO_VECTOR_MASK;
6222 gate_desc *desc = (gate_desc *)host_idt_base + vector;
6223
6224 kvm_before_interrupt(vcpu);
6225 vmx_do_interrupt_nmi_irqoff(gate_offset(desc));
6226 kvm_after_interrupt(vcpu);
6227}
6228
Sean Christopherson95b5a482019-04-19 22:50:59 -07006229static void handle_exception_nmi_irqoff(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03006230{
Sean Christopherson87915852020-04-15 13:34:54 -07006231 u32 intr_info = vmx_get_intr_info(&vmx->vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08006232
Wanpeng Li1261bfa2017-07-13 18:30:40 -07006233 /* if exit due to PF check for async PF */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006234 if (is_page_fault(intr_info))
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02006235 vmx->vcpu.arch.apf.host_apf_flags = kvm_read_and_reset_apf_flags();
Andi Kleena0861c02009-06-08 17:37:09 +08006236 /* Handle machine checks before interrupts are enabled */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006237 else if (is_machine_check(intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08006238 kvm_machine_check();
Gleb Natapov20f65982009-05-11 13:35:55 +03006239 /* We need to handle NMIs before interrupts are enabled */
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006240 else if (is_nmi(intr_info))
6241 handle_interrupt_nmi_irqoff(&vmx->vcpu, intr_info);
Avi Kivity51aa01d2010-07-20 14:31:20 +03006242}
Gleb Natapov20f65982009-05-11 13:35:55 +03006243
Sean Christopherson95b5a482019-04-19 22:50:59 -07006244static void handle_external_interrupt_irqoff(struct kvm_vcpu *vcpu)
Yang Zhanga547c6d2013-04-11 19:25:10 +08006245{
Sean Christopherson87915852020-04-15 13:34:54 -07006246 u32 intr_info = vmx_get_intr_info(vcpu);
Yang Zhanga547c6d2013-04-11 19:25:10 +08006247
Sean Christopherson49def502019-04-19 22:50:56 -07006248 if (WARN_ONCE(!is_external_intr(intr_info),
6249 "KVM: unexpected VM-Exit interrupt info: 0x%x", intr_info))
6250 return;
6251
Sean Christopherson1a5488e2020-09-15 12:15:05 -07006252 handle_interrupt_nmi_irqoff(vcpu, intr_info);
Yang Zhanga547c6d2013-04-11 19:25:10 +08006253}
Sean Christopherson95b5a482019-04-19 22:50:59 -07006254
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006255static void vmx_handle_exit_irqoff(struct kvm_vcpu *vcpu)
Sean Christopherson95b5a482019-04-19 22:50:59 -07006256{
6257 struct vcpu_vmx *vmx = to_vmx(vcpu);
6258
6259 if (vmx->exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT)
6260 handle_external_interrupt_irqoff(vcpu);
6261 else if (vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI)
6262 handle_exception_nmi_irqoff(vmx);
6263}
Yang Zhanga547c6d2013-04-11 19:25:10 +08006264
Sean Christophersoncb97c2d2020-02-18 15:40:11 -08006265static bool vmx_has_emulated_msr(u32 index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006266{
Tom Lendackybc226f02018-05-10 22:06:39 +02006267 switch (index) {
6268 case MSR_IA32_SMBASE:
6269 /*
6270 * We cannot do SMM unless we can run the guest in big
6271 * real mode.
6272 */
6273 return enable_unrestricted_guest || emulate_invalid_guest_state;
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02006274 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
6275 return nested;
Tom Lendackybc226f02018-05-10 22:06:39 +02006276 case MSR_AMD64_VIRT_SPEC_CTRL:
6277 /* This is AMD only. */
6278 return false;
6279 default:
6280 return true;
6281 }
Paolo Bonzini6d396b52015-04-01 14:25:33 +02006282}
6283
Avi Kivity51aa01d2010-07-20 14:31:20 +03006284static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
6285{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02006286 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03006287 bool unblock_nmi;
6288 u8 vector;
6289 bool idtv_info_valid;
6290
6291 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03006292
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006293 if (enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006294 if (vmx->loaded_vmcs->nmi_known_unmasked)
6295 return;
Sean Christopherson87915852020-04-15 13:34:54 -07006296
6297 exit_intr_info = vmx_get_intr_info(&vmx->vcpu);
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006298 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
6299 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
6300 /*
6301 * SDM 3: 27.7.1.2 (September 2008)
6302 * Re-set bit "block by NMI" before VM entry if vmexit caused by
6303 * a guest IRET fault.
6304 * SDM 3: 23.2.2 (September 2008)
6305 * Bit 12 is undefined in any of the following cases:
6306 * If the VM exit sets the valid bit in the IDT-vectoring
6307 * information field.
6308 * If the VM exit is due to a double fault.
6309 */
6310 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
6311 vector != DF_VECTOR && !idtv_info_valid)
6312 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
6313 GUEST_INTR_STATE_NMI);
6314 else
6315 vmx->loaded_vmcs->nmi_known_unmasked =
6316 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
6317 & GUEST_INTR_STATE_NMI);
6318 } else if (unlikely(vmx->loaded_vmcs->soft_vnmi_blocked))
6319 vmx->loaded_vmcs->vnmi_blocked_time +=
6320 ktime_to_ns(ktime_sub(ktime_get(),
6321 vmx->loaded_vmcs->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03006322}
6323
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006324static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03006325 u32 idt_vectoring_info,
6326 int instr_len_field,
6327 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03006328{
Avi Kivity51aa01d2010-07-20 14:31:20 +03006329 u8 vector;
6330 int type;
6331 bool idtv_info_valid;
6332
6333 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03006334
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006335 vcpu->arch.nmi_injected = false;
6336 kvm_clear_exception_queue(vcpu);
6337 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006338
6339 if (!idtv_info_valid)
6340 return;
6341
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006342 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03006343
Avi Kivity668f6122008-07-02 09:28:55 +03006344 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
6345 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006346
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006347 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03006348 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006349 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03006350 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03006351 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03006352 * Clear bit "block by NMI" before VM entry if a NMI
6353 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03006354 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006355 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006356 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006357 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006358 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05006359 fallthrough;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006360 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03006361 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03006362 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03006363 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03006364 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03006365 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006366 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006367 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006368 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05006369 fallthrough;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006370 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006371 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006372 break;
6373 default:
6374 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03006375 }
Avi Kivitycf393f72008-07-01 16:20:21 +03006376}
6377
Avi Kivity83422e12010-07-20 14:43:23 +03006378static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
6379{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006380 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03006381 VM_EXIT_INSTRUCTION_LEN,
6382 IDT_VECTORING_ERROR_CODE);
6383}
6384
Avi Kivityb463a6f2010-07-20 15:06:17 +03006385static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
6386{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01006387 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03006388 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
6389 VM_ENTRY_INSTRUCTION_LEN,
6390 VM_ENTRY_EXCEPTION_ERROR_CODE);
6391
6392 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
6393}
6394
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006395static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
6396{
6397 int i, nr_msrs;
6398 struct perf_guest_switch_msr *msrs;
6399
6400 msrs = perf_guest_get_msrs(&nr_msrs);
6401
6402 if (!msrs)
6403 return;
6404
6405 for (i = 0; i < nr_msrs; i++)
6406 if (msrs[i].host == msrs[i].guest)
6407 clear_atomic_switch_msr(vmx, msrs[i].msr);
6408 else
6409 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04006410 msrs[i].host, false);
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006411}
6412
Sean Christophersonf459a702018-08-27 15:21:11 -07006413static void vmx_update_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07006414{
6415 struct vcpu_vmx *vmx = to_vmx(vcpu);
6416 u64 tscl;
6417 u32 delta_tsc;
6418
Sean Christophersond264ee02018-08-27 15:21:12 -07006419 if (vmx->req_immediate_exit) {
Sean Christopherson804939e2019-05-07 12:18:05 -07006420 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, 0);
6421 vmx->loaded_vmcs->hv_timer_soft_disabled = false;
6422 } else if (vmx->hv_deadline_tsc != -1) {
Sean Christophersonf459a702018-08-27 15:21:11 -07006423 tscl = rdtsc();
6424 if (vmx->hv_deadline_tsc > tscl)
6425 /* set_hv_timer ensures the delta fits in 32-bits */
6426 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
6427 cpu_preemption_timer_multi);
6428 else
6429 delta_tsc = 0;
6430
Sean Christopherson804939e2019-05-07 12:18:05 -07006431 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
6432 vmx->loaded_vmcs->hv_timer_soft_disabled = false;
6433 } else if (!vmx->loaded_vmcs->hv_timer_soft_disabled) {
6434 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, -1);
6435 vmx->loaded_vmcs->hv_timer_soft_disabled = true;
Sean Christophersonf459a702018-08-27 15:21:11 -07006436 }
Yunhong Jiang64672c92016-06-13 14:19:59 -07006437}
6438
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006439void noinstr vmx_update_host_rsp(struct vcpu_vmx *vmx, unsigned long host_rsp)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006440{
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006441 if (unlikely(host_rsp != vmx->loaded_vmcs->host_state.rsp)) {
6442 vmx->loaded_vmcs->host_state.rsp = host_rsp;
6443 vmcs_writel(HOST_RSP, host_rsp);
6444 }
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006445}
Sean Christophersonc09b03e2019-01-25 07:41:04 -08006446
Wanpeng Li404d5d72020-04-28 14:23:25 +08006447static fastpath_t vmx_exit_handlers_fastpath(struct kvm_vcpu *vcpu)
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006448{
6449 switch (to_vmx(vcpu)->exit_reason) {
6450 case EXIT_REASON_MSR_WRITE:
6451 return handle_fastpath_set_msr_irqoff(vcpu);
Wanpeng Li26efe2f2020-05-06 11:44:01 -04006452 case EXIT_REASON_PREEMPTION_TIMER:
6453 return handle_fastpath_preemption_timer(vcpu);
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006454 default:
6455 return EXIT_FASTPATH_NONE;
6456 }
6457}
6458
Sean Christophersonfc2ba5a2019-01-25 07:41:19 -08006459bool __vmx_vcpu_run(struct vcpu_vmx *vmx, unsigned long *regs, bool launched);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006460
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006461static noinstr void vmx_vcpu_enter_exit(struct kvm_vcpu *vcpu,
6462 struct vcpu_vmx *vmx)
6463{
6464 /*
6465 * VMENTER enables interrupts (host state), but the kernel state is
6466 * interrupts disabled when this is invoked. Also tell RCU about
6467 * it. This is the same logic as for exit_to_user_mode().
6468 *
6469 * This ensures that e.g. latency analysis on the host observes
6470 * guest mode as interrupt enabled.
6471 *
6472 * guest_enter_irqoff() informs context tracking about the
6473 * transition to guest mode and if enabled adjusts RCU state
6474 * accordingly.
6475 */
6476 instrumentation_begin();
6477 trace_hardirqs_on_prepare();
6478 lockdep_hardirqs_on_prepare(CALLER_ADDR0);
6479 instrumentation_end();
6480
6481 guest_enter_irqoff();
6482 lockdep_hardirqs_on(CALLER_ADDR0);
6483
6484 /* L1D Flush includes CPU buffer clear to mitigate MDS */
6485 if (static_branch_unlikely(&vmx_l1d_should_flush))
6486 vmx_l1d_flush(vcpu);
6487 else if (static_branch_unlikely(&mds_user_clear))
6488 mds_clear_cpu_buffers();
6489
Thomas Gleixner2245d392020-07-08 21:52:00 +02006490 if (vcpu->arch.cr2 != native_read_cr2())
6491 native_write_cr2(vcpu->arch.cr2);
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006492
6493 vmx->fail = __vmx_vcpu_run(vmx, (unsigned long *)&vcpu->arch.regs,
6494 vmx->loaded_vmcs->launched);
6495
Thomas Gleixner2245d392020-07-08 21:52:00 +02006496 vcpu->arch.cr2 = native_read_cr2();
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006497
6498 /*
6499 * VMEXIT disables interrupts (host state), but tracing and lockdep
6500 * have them in state 'on' as recorded before entering guest mode.
6501 * Same as enter_from_user_mode().
6502 *
6503 * guest_exit_irqoff() restores host context and reinstates RCU if
6504 * enabled and required.
6505 *
6506 * This needs to be done before the below as native_read_msr()
6507 * contains a tracepoint and x86_spec_ctrl_restore_host() calls
6508 * into world and some more.
6509 */
6510 lockdep_hardirqs_off(CALLER_ADDR0);
6511 guest_exit_irqoff();
6512
6513 instrumentation_begin();
6514 trace_hardirqs_off_finish();
6515 instrumentation_end();
6516}
6517
Wanpeng Li404d5d72020-04-28 14:23:25 +08006518static fastpath_t vmx_vcpu_run(struct kvm_vcpu *vcpu)
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006519{
Wanpeng Li404d5d72020-04-28 14:23:25 +08006520 fastpath_t exit_fastpath;
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006521 struct vcpu_vmx *vmx = to_vmx(vcpu);
6522 unsigned long cr3, cr4;
6523
Wanpeng Li404d5d72020-04-28 14:23:25 +08006524reenter_guest:
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006525 /* Record the guest's net vcpu time for enforced NMI injections. */
6526 if (unlikely(!enable_vnmi &&
6527 vmx->loaded_vmcs->soft_vnmi_blocked))
6528 vmx->loaded_vmcs->entry_time = ktime_get();
6529
6530 /* Don't enter VMX if guest state is invalid, let the exit handler
6531 start emulation until we arrive back to a valid state */
6532 if (vmx->emulation_required)
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006533 return EXIT_FASTPATH_NONE;
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006534
6535 if (vmx->ple_window_dirty) {
6536 vmx->ple_window_dirty = false;
6537 vmcs_write32(PLE_WINDOW, vmx->ple_window);
6538 }
6539
wanpeng lic9dfd3f2020-02-17 18:37:43 +08006540 /*
6541 * We did this in prepare_switch_to_guest, because it needs to
6542 * be within srcu_read_lock.
6543 */
6544 WARN_ON_ONCE(vmx->nested.need_vmcs12_to_shadow_sync);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006545
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07006546 if (kvm_register_is_dirty(vcpu, VCPU_REGS_RSP))
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006547 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07006548 if (kvm_register_is_dirty(vcpu, VCPU_REGS_RIP))
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006549 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
6550
6551 cr3 = __get_current_cr3_fast();
6552 if (unlikely(cr3 != vmx->loaded_vmcs->host_state.cr3)) {
6553 vmcs_writel(HOST_CR3, cr3);
6554 vmx->loaded_vmcs->host_state.cr3 = cr3;
6555 }
6556
6557 cr4 = cr4_read_shadow();
6558 if (unlikely(cr4 != vmx->loaded_vmcs->host_state.cr4)) {
6559 vmcs_writel(HOST_CR4, cr4);
6560 vmx->loaded_vmcs->host_state.cr4 = cr4;
6561 }
6562
6563 /* When single-stepping over STI and MOV SS, we must clear the
6564 * corresponding interruptibility bits in the guest state. Otherwise
6565 * vmentry fails as it then expects bit 14 (BS) in pending debug
6566 * exceptions being set, but that's not correct for the guest debugging
6567 * case. */
6568 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
6569 vmx_set_interrupt_shadow(vcpu, 0);
6570
Aaron Lewis139a12c2019-10-21 16:30:25 -07006571 kvm_load_guest_xsave_state(vcpu);
WANG Chao1811d972019-04-12 15:55:39 +08006572
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006573 pt_guest_enter(vmx);
6574
Vitaly Kuznetsov49097762020-06-19 11:40:46 +02006575 atomic_switch_perf_msrs(vmx);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006576
Sean Christopherson804939e2019-05-07 12:18:05 -07006577 if (enable_preemption_timer)
6578 vmx_update_hv_timer(vcpu);
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006579
Wanpeng Li010fd372020-09-10 17:50:41 +08006580 kvm_wait_lapic_expire(vcpu);
Wanpeng Lib6c4bc62019-05-20 16:18:09 +08006581
Sean Christopherson5ad6ece82019-01-15 17:10:53 -08006582 /*
6583 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
6584 * it's non-zero. Since vmentry is serialising on affected CPUs, there
6585 * is no need to worry about the conditional branch over the wrmsr
6586 * being speculatively taken.
6587 */
6588 x86_spec_ctrl_set_guest(vmx->spec_ctrl, 0);
6589
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +02006590 /* The actual VMENTER/EXIT is in the .noinstr.text section. */
6591 vmx_vcpu_enter_exit(vcpu, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006592
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006593 /*
6594 * We do not use IBRS in the kernel. If this vCPU has used the
6595 * SPEC_CTRL MSR it may have left it on; save the value and
6596 * turn it off. This is much more efficient than blindly adding
6597 * it to the atomic save/restore list. Especially as the former
6598 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
6599 *
6600 * For non-nested case:
6601 * If the L01 MSR bitmap does not intercept the MSR, then we need to
6602 * save it.
6603 *
6604 * For nested case:
6605 * If the L02 MSR bitmap does not intercept the MSR, then we need to
6606 * save it.
6607 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01006608 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01006609 vmx->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006610
Thomas Gleixnerccbcd262018-05-09 23:01:01 +02006611 x86_spec_ctrl_restore_host(vmx->spec_ctrl, 0);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006612
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01006613 /* All fields are clean at this point */
6614 if (static_branch_unlikely(&enable_evmcs))
6615 current_evmcs->hv_clean_fields |=
6616 HV_VMX_ENLIGHTENED_CLEAN_FIELD_ALL;
6617
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08006618 if (static_branch_unlikely(&enable_evmcs))
6619 current_evmcs->hv_vp_id = vcpu->arch.hyperv.vp_index;
6620
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006621 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
Wanpeng Li74c55932017-11-29 01:31:20 -08006622 if (vmx->host_debugctlmsr)
6623 update_debugctlmsr(vmx->host_debugctlmsr);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03006624
Avi Kivityaa67f602012-08-01 16:48:03 +03006625#ifndef CONFIG_X86_64
6626 /*
6627 * The sysexit path does not restore ds/es, so we must set them to
6628 * a reasonable value ourselves.
6629 *
Sean Christopherson6d6095b2018-07-23 12:32:44 -07006630 * We can't defer this to vmx_prepare_switch_to_host() since that
6631 * function may be executed in interrupt context, which saves and
6632 * restore segments around it, nullifying its effect.
Avi Kivityaa67f602012-08-01 16:48:03 +03006633 */
6634 loadsegment(ds, __USER_DS);
6635 loadsegment(es, __USER_DS);
6636#endif
6637
Sean Christophersone5d03de2020-04-15 13:34:51 -07006638 vmx_register_cache_reset(vcpu);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006639
Chao Peng2ef444f2018-10-24 16:05:12 +08006640 pt_guest_exit(vmx);
6641
Aaron Lewis139a12c2019-10-21 16:30:25 -07006642 kvm_load_host_xsave_state(vcpu);
WANG Chao1811d972019-04-12 15:55:39 +08006643
Gleb Natapove0b890d2013-09-25 12:51:33 +03006644 vmx->nested.nested_run_pending = 0;
Jim Mattsonb060ca32017-09-14 16:31:42 -07006645 vmx->idt_vectoring_info = 0;
6646
Sean Christopherson873e1da2020-04-10 10:47:02 -07006647 if (unlikely(vmx->fail)) {
6648 vmx->exit_reason = 0xdead;
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006649 return EXIT_FASTPATH_NONE;
Sean Christopherson873e1da2020-04-10 10:47:02 -07006650 }
6651
6652 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
6653 if (unlikely((u16)vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY))
Sean Christophersonbeb8d932019-04-19 22:50:55 -07006654 kvm_machine_check();
6655
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006656 trace_kvm_exit(vmx->exit_reason, vcpu, KVM_ISA_VMX);
6657
Sean Christopherson873e1da2020-04-10 10:47:02 -07006658 if (unlikely(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006659 return EXIT_FASTPATH_NONE;
6660
Jim Mattsonb060ca32017-09-14 16:31:42 -07006661 vmx->loaded_vmcs->launched = 1;
6662 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Gleb Natapove0b890d2013-09-25 12:51:33 +03006663
Avi Kivity51aa01d2010-07-20 14:31:20 +03006664 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03006665 vmx_complete_interrupts(vmx);
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006666
Wanpeng Lidcf068d2020-04-28 14:23:23 +08006667 if (is_guest_mode(vcpu))
6668 return EXIT_FASTPATH_NONE;
6669
6670 exit_fastpath = vmx_exit_handlers_fastpath(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08006671 if (exit_fastpath == EXIT_FASTPATH_REENTER_GUEST) {
6672 if (!kvm_vcpu_exit_request(vcpu)) {
6673 /*
6674 * FIXME: this goto should be a loop in vcpu_enter_guest,
6675 * but it would incur the cost of a retpoline for now.
6676 * Revisit once static calls are available.
6677 */
Wanpeng Li379a3c82020-04-28 14:23:27 +08006678 if (vcpu->arch.apicv_active)
6679 vmx_sync_pir_to_irr(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08006680 goto reenter_guest;
6681 }
6682 exit_fastpath = EXIT_FASTPATH_EXIT_HANDLED;
6683 }
6684
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07006685 return exit_fastpath;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006686}
6687
Avi Kivity6aa8b732006-12-10 02:21:36 -08006688static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
6689{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006690 struct vcpu_vmx *vmx = to_vmx(vcpu);
6691
Kai Huang843e4332015-01-28 10:54:28 +08006692 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08006693 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08006694 free_vpid(vmx->vpid);
Sean Christopherson55d23752018-12-03 13:53:18 -08006695 nested_vmx_free_vcpu(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006696 free_loaded_vmcs(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006697}
6698
Sean Christopherson987b2592019-12-18 13:54:55 -08006699static int vmx_create_vcpu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006700{
Ben Gardon41836832019-02-11 11:02:52 -08006701 struct vcpu_vmx *vmx;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006702 unsigned long *msr_bitmap;
Sean Christopherson34109c02019-12-18 13:54:50 -08006703 int i, cpu, err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006704
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006705 BUILD_BUG_ON(offsetof(struct vcpu_vmx, vcpu) != 0);
6706 vmx = to_vmx(vcpu);
Ingo Molnar965b58a2007-01-05 16:36:23 -08006707
Peter Feiner4e595162016-07-07 14:49:58 -07006708 err = -ENOMEM;
6709
Sean Christopherson034d8e22019-12-18 13:54:49 -08006710 vmx->vpid = allocate_vpid();
6711
Peter Feiner4e595162016-07-07 14:49:58 -07006712 /*
6713 * If PML is turned on, failure on enabling PML just results in failure
6714 * of creating the vcpu, therefore we can simplify PML logic (by
6715 * avoiding dealing with cases, such as enabling PML partially on vcpus
Miaohe Lin67b0ae42019-12-11 14:26:22 +08006716 * for the guest), etc.
Peter Feiner4e595162016-07-07 14:49:58 -07006717 */
6718 if (enable_pml) {
Ben Gardon41836832019-02-11 11:02:52 -08006719 vmx->pml_pg = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Peter Feiner4e595162016-07-07 14:49:58 -07006720 if (!vmx->pml_pg)
Sean Christopherson987b2592019-12-18 13:54:55 -08006721 goto free_vpid;
Peter Feiner4e595162016-07-07 14:49:58 -07006722 }
6723
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07006724 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) != MAX_NR_USER_RETURN_MSRS);
Ingo Molnar965b58a2007-01-05 16:36:23 -08006725
Xiaoyao Li4be53412019-10-20 17:11:00 +08006726 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
6727 u32 index = vmx_msr_index[i];
6728 u32 data_low, data_high;
6729 int j = vmx->nmsrs;
6730
6731 if (rdmsr_safe(index, &data_low, &data_high) < 0)
6732 continue;
6733 if (wrmsr_safe(index, data_low, data_high) < 0)
6734 continue;
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006735
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07006736 vmx->guest_uret_msrs[j].index = i;
6737 vmx->guest_uret_msrs[j].data = 0;
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006738 switch (index) {
6739 case MSR_IA32_TSX_CTRL:
6740 /*
6741 * No need to pass TSX_CTRL_CPUID_CLEAR through, so
6742 * let's avoid changing CPUID bits under the host
6743 * kernel's feet.
6744 */
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07006745 vmx->guest_uret_msrs[j].mask = ~(u64)TSX_CTRL_CPUID_CLEAR;
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006746 break;
6747 default:
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07006748 vmx->guest_uret_msrs[j].mask = -1ull;
Paolo Bonzini46f4f0a2019-11-21 10:01:51 +01006749 break;
6750 }
Xiaoyao Li4be53412019-10-20 17:11:00 +08006751 ++vmx->nmsrs;
6752 }
6753
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006754 err = alloc_loaded_vmcs(&vmx->vmcs01);
6755 if (err < 0)
Jim Mattson7d737102019-12-03 16:24:42 -08006756 goto free_pml;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006757
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006758 msr_bitmap = vmx->vmcs01.msr_bitmap;
Jim Mattson788fc1e2018-11-09 09:35:11 -08006759 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_TSC, MSR_TYPE_R);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006760 vmx_disable_intercept_for_msr(msr_bitmap, MSR_FS_BASE, MSR_TYPE_RW);
6761 vmx_disable_intercept_for_msr(msr_bitmap, MSR_GS_BASE, MSR_TYPE_RW);
6762 vmx_disable_intercept_for_msr(msr_bitmap, MSR_KERNEL_GS_BASE, MSR_TYPE_RW);
6763 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_CS, MSR_TYPE_RW);
6764 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_ESP, MSR_TYPE_RW);
6765 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_EIP, MSR_TYPE_RW);
Sean Christopherson987b2592019-12-18 13:54:55 -08006766 if (kvm_cstate_in_guest(vcpu->kvm)) {
Wanpeng Lib5170062019-05-21 14:06:53 +08006767 vmx_disable_intercept_for_msr(msr_bitmap, MSR_CORE_C1_RES, MSR_TYPE_R);
6768 vmx_disable_intercept_for_msr(msr_bitmap, MSR_CORE_C3_RESIDENCY, MSR_TYPE_R);
6769 vmx_disable_intercept_for_msr(msr_bitmap, MSR_CORE_C6_RESIDENCY, MSR_TYPE_R);
6770 vmx_disable_intercept_for_msr(msr_bitmap, MSR_CORE_C7_RESIDENCY, MSR_TYPE_R);
6771 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006772 vmx->msr_bitmap_mode = 0;
6773
Paolo Bonzinif21f1652018-01-11 12:16:15 +01006774 vmx->loaded_vmcs = &vmx->vmcs01;
Avi Kivity15ad7142007-07-11 18:17:21 +03006775 cpu = get_cpu();
Sean Christopherson34109c02019-12-18 13:54:50 -08006776 vmx_vcpu_load(vcpu, cpu);
6777 vcpu->cpu = cpu;
Xiaoyao Li1b842922019-10-20 17:11:01 +08006778 init_vmcs(vmx);
Sean Christopherson34109c02019-12-18 13:54:50 -08006779 vmx_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03006780 put_cpu();
Sean Christopherson34109c02019-12-18 13:54:50 -08006781 if (cpu_need_virtualize_apic_accesses(vcpu)) {
Sean Christopherson987b2592019-12-18 13:54:55 -08006782 err = alloc_apic_access_page(vcpu->kvm);
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02006783 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02006784 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02006785 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08006786
Sean Christophersone90008d2018-03-05 12:04:37 -08006787 if (enable_ept && !enable_unrestricted_guest) {
Sean Christopherson987b2592019-12-18 13:54:55 -08006788 err = init_rmode_identity_map(vcpu->kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08006789 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02006790 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006791 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08006792
Roman Kagan63aff652018-07-19 21:59:07 +03006793 if (nested)
Chenyi Qiangb9757a42020-08-28 16:56:22 +08006794 memcpy(&vmx->nested.msrs, &vmcs_config.nested, sizeof(vmx->nested.msrs));
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08006795 else
6796 memset(&vmx->nested.msrs, 0, sizeof(vmx->nested.msrs));
Wincy Vanb9c237b2015-02-03 23:56:30 +08006797
Wincy Van705699a2015-02-03 23:58:17 +08006798 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03006799 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03006800
Paolo Bonzinibab0c312020-02-11 18:40:58 +01006801 vcpu->arch.microcode_version = 0x100000000ULL;
Sean Christopherson32ad73d2019-12-20 20:44:55 -08006802 vmx->msr_ia32_feature_control_valid_bits = FEAT_CTL_LOCKED;
Haozhong Zhang37e4c992016-06-22 14:59:55 +08006803
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02006804 /*
6805 * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR
6806 * or POSTED_INTR_WAKEUP_VECTOR.
6807 */
6808 vmx->pi_desc.nv = POSTED_INTR_VECTOR;
6809 vmx->pi_desc.sn = 1;
6810
Lan Tianyu53963a72018-12-06 15:34:36 +08006811 vmx->ept_pointer = INVALID_PAGE;
6812
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006813 return 0;
Ingo Molnar965b58a2007-01-05 16:36:23 -08006814
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006815free_vmcs:
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08006816 free_loaded_vmcs(vmx->loaded_vmcs);
Peter Feiner4e595162016-07-07 14:49:58 -07006817free_pml:
6818 vmx_destroy_pml_buffer(vmx);
Sean Christopherson987b2592019-12-18 13:54:55 -08006819free_vpid:
Wanpeng Li991e7a02015-09-16 17:30:05 +08006820 free_vpid(vmx->vpid);
Sean Christophersona9dd6f02019-12-18 13:54:52 -08006821 return err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006822}
6823
Thomas Gleixner65fd4cb2019-02-19 11:10:49 +01006824#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"
6825#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 -04006826
Wanpeng Lib31c1142018-03-12 04:53:04 -07006827static int vmx_vm_init(struct kvm *kvm)
6828{
Tianyu Lan877ad952018-07-19 08:40:23 +00006829 spin_lock_init(&to_kvm_vmx(kvm)->ept_pointer_lock);
6830
Wanpeng Lib31c1142018-03-12 04:53:04 -07006831 if (!ple_gap)
6832 kvm->arch.pause_in_guest = true;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006833
Jiri Kosinad90a7a02018-07-13 16:23:25 +02006834 if (boot_cpu_has(X86_BUG_L1TF) && enable_ept) {
6835 switch (l1tf_mitigation) {
6836 case L1TF_MITIGATION_OFF:
6837 case L1TF_MITIGATION_FLUSH_NOWARN:
6838 /* 'I explicitly don't care' is set */
6839 break;
6840 case L1TF_MITIGATION_FLUSH:
6841 case L1TF_MITIGATION_FLUSH_NOSMT:
6842 case L1TF_MITIGATION_FULL:
6843 /*
6844 * Warn upon starting the first VM in a potentially
6845 * insecure environment.
6846 */
Josh Poimboeufb2849092019-01-30 07:13:58 -06006847 if (sched_smt_active())
Jiri Kosinad90a7a02018-07-13 16:23:25 +02006848 pr_warn_once(L1TF_MSG_SMT);
6849 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_NEVER)
6850 pr_warn_once(L1TF_MSG_L1D);
6851 break;
6852 case L1TF_MITIGATION_FULL_FORCE:
6853 /* Flush is enforced */
6854 break;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006855 }
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -04006856 }
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06006857 kvm_apicv_init(kvm, enable_apicv);
Wanpeng Lib31c1142018-03-12 04:53:04 -07006858 return 0;
6859}
6860
Sean Christophersonf257d6d2019-04-19 22:18:17 -07006861static int __init vmx_check_processor_compat(void)
Yang, Sheng002c7f72007-07-31 14:23:01 +03006862{
6863 struct vmcs_config vmcs_conf;
Sean Christopherson7caaa712018-12-03 13:53:01 -08006864 struct vmx_capability vmx_cap;
Yang, Sheng002c7f72007-07-31 14:23:01 +03006865
Sean Christophersonff10e222019-12-20 20:45:10 -08006866 if (!this_cpu_has(X86_FEATURE_MSR_IA32_FEAT_CTL) ||
6867 !this_cpu_has(X86_FEATURE_VMX)) {
6868 pr_err("kvm: VMX is disabled on CPU %d\n", smp_processor_id());
6869 return -EIO;
6870 }
6871
Sean Christopherson7caaa712018-12-03 13:53:01 -08006872 if (setup_vmcs_config(&vmcs_conf, &vmx_cap) < 0)
Sean Christophersonf257d6d2019-04-19 22:18:17 -07006873 return -EIO;
Sean Christopherson3e8eacc2018-12-03 13:53:13 -08006874 if (nested)
Vitaly Kuznetsova4443262020-02-20 18:22:04 +01006875 nested_vmx_setup_ctls_msrs(&vmcs_conf.nested, vmx_cap.ept);
Yang, Sheng002c7f72007-07-31 14:23:01 +03006876 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
6877 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
6878 smp_processor_id());
Sean Christophersonf257d6d2019-04-19 22:18:17 -07006879 return -EIO;
Yang, Sheng002c7f72007-07-31 14:23:01 +03006880 }
Sean Christophersonf257d6d2019-04-19 22:18:17 -07006881 return 0;
Yang, Sheng002c7f72007-07-31 14:23:01 +03006882}
6883
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006884static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08006885{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08006886 u8 cache;
6887 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006888
Chia-I Wu222f06e2020-02-13 13:30:34 -08006889 /* We wanted to honor guest CD/MTRR/PAT, but doing so could result in
6890 * memory aliases with conflicting memory types and sometimes MCEs.
6891 * We have to be careful as to what are honored and when.
6892 *
6893 * For MMIO, guest CD/MTRR are ignored. The EPT memory type is set to
6894 * UC. The effective memory type is UC or WC depending on guest PAT.
6895 * This was historically the source of MCEs and we want to be
6896 * conservative.
6897 *
6898 * When there is no need to deal with noncoherent DMA (e.g., no VT-d
6899 * or VT-d has snoop control), guest CD/MTRR/PAT are all ignored. The
6900 * EPT memory type is set to WB. The effective memory type is forced
6901 * WB.
6902 *
6903 * Otherwise, we trust guest. Guest CD/MTRR/PAT are all honored. The
6904 * EPT memory type is used to emulate guest CD/MTRR.
Sheng Yang522c68c2009-04-27 20:35:43 +08006905 */
Chia-I Wu222f06e2020-02-13 13:30:34 -08006906
Paolo Bonzini606decd2015-10-01 13:12:47 +02006907 if (is_mmio) {
6908 cache = MTRR_TYPE_UNCACHABLE;
6909 goto exit;
6910 }
6911
6912 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08006913 ipat = VMX_EPT_IPAT_BIT;
6914 cache = MTRR_TYPE_WRBACK;
6915 goto exit;
6916 }
6917
6918 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
6919 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02006920 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08006921 cache = MTRR_TYPE_WRBACK;
6922 else
6923 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08006924 goto exit;
6925 }
6926
Xiao Guangrongff536042015-06-15 16:55:22 +08006927 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08006928
6929exit:
6930 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08006931}
6932
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006933static void vmcs_set_secondary_exec_control(struct vcpu_vmx *vmx)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08006934{
6935 /*
6936 * These bits in the secondary execution controls field
6937 * are dynamic, the others are mostly based on the hypervisor
6938 * architecture and the guest's CPUID. Do not touch the
6939 * dynamic bits.
6940 */
6941 u32 mask =
6942 SECONDARY_EXEC_SHADOW_VMCS |
6943 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Paolo Bonzini0367f202016-07-12 10:44:55 +02006944 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
6945 SECONDARY_EXEC_DESC;
Xiao Guangrongfeda8052015-09-09 14:05:55 +08006946
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006947 u32 new_ctl = vmx->secondary_exec_control;
6948 u32 cur_ctl = secondary_exec_controls_get(vmx);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08006949
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07006950 secondary_exec_controls_set(vmx, (new_ctl & ~mask) | (cur_ctl & mask));
Xiao Guangrongfeda8052015-09-09 14:05:55 +08006951}
6952
David Matlack8322ebb2016-11-29 18:14:09 -08006953/*
6954 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
6955 * (indicating "allowed-1") if they are supported in the guest's CPUID.
6956 */
6957static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
6958{
6959 struct vcpu_vmx *vmx = to_vmx(vcpu);
6960 struct kvm_cpuid_entry2 *entry;
6961
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006962 vmx->nested.msrs.cr0_fixed1 = 0xffffffff;
6963 vmx->nested.msrs.cr4_fixed1 = X86_CR4_PCE;
David Matlack8322ebb2016-11-29 18:14:09 -08006964
6965#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
6966 if (entry && (entry->_reg & (_cpuid_mask))) \
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006967 vmx->nested.msrs.cr4_fixed1 |= (_cr4_mask); \
David Matlack8322ebb2016-11-29 18:14:09 -08006968} while (0)
6969
6970 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
Sean Christopherson87382002019-12-17 13:32:42 -08006971 cr4_fixed1_update(X86_CR4_VME, edx, feature_bit(VME));
6972 cr4_fixed1_update(X86_CR4_PVI, edx, feature_bit(VME));
6973 cr4_fixed1_update(X86_CR4_TSD, edx, feature_bit(TSC));
6974 cr4_fixed1_update(X86_CR4_DE, edx, feature_bit(DE));
6975 cr4_fixed1_update(X86_CR4_PSE, edx, feature_bit(PSE));
6976 cr4_fixed1_update(X86_CR4_PAE, edx, feature_bit(PAE));
6977 cr4_fixed1_update(X86_CR4_MCE, edx, feature_bit(MCE));
6978 cr4_fixed1_update(X86_CR4_PGE, edx, feature_bit(PGE));
6979 cr4_fixed1_update(X86_CR4_OSFXSR, edx, feature_bit(FXSR));
6980 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, feature_bit(XMM));
6981 cr4_fixed1_update(X86_CR4_VMXE, ecx, feature_bit(VMX));
6982 cr4_fixed1_update(X86_CR4_SMXE, ecx, feature_bit(SMX));
6983 cr4_fixed1_update(X86_CR4_PCIDE, ecx, feature_bit(PCID));
6984 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, feature_bit(XSAVE));
David Matlack8322ebb2016-11-29 18:14:09 -08006985
6986 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
Sean Christopherson87382002019-12-17 13:32:42 -08006987 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, feature_bit(FSGSBASE));
6988 cr4_fixed1_update(X86_CR4_SMEP, ebx, feature_bit(SMEP));
6989 cr4_fixed1_update(X86_CR4_SMAP, ebx, feature_bit(SMAP));
6990 cr4_fixed1_update(X86_CR4_PKE, ecx, feature_bit(PKU));
6991 cr4_fixed1_update(X86_CR4_UMIP, ecx, feature_bit(UMIP));
6992 cr4_fixed1_update(X86_CR4_LA57, ecx, feature_bit(LA57));
David Matlack8322ebb2016-11-29 18:14:09 -08006993
6994#undef cr4_fixed1_update
6995}
6996
Liran Alon5f76f6f2018-09-14 03:25:52 +03006997static void nested_vmx_entry_exit_ctls_update(struct kvm_vcpu *vcpu)
6998{
6999 struct vcpu_vmx *vmx = to_vmx(vcpu);
7000
7001 if (kvm_mpx_supported()) {
7002 bool mpx_enabled = guest_cpuid_has(vcpu, X86_FEATURE_MPX);
7003
7004 if (mpx_enabled) {
7005 vmx->nested.msrs.entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
7006 vmx->nested.msrs.exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
7007 } else {
7008 vmx->nested.msrs.entry_ctls_high &= ~VM_ENTRY_LOAD_BNDCFGS;
7009 vmx->nested.msrs.exit_ctls_high &= ~VM_EXIT_CLEAR_BNDCFGS;
7010 }
7011 }
7012}
7013
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007014static void update_intel_pt_cfg(struct kvm_vcpu *vcpu)
7015{
7016 struct vcpu_vmx *vmx = to_vmx(vcpu);
7017 struct kvm_cpuid_entry2 *best = NULL;
7018 int i;
7019
7020 for (i = 0; i < PT_CPUID_LEAVES; i++) {
7021 best = kvm_find_cpuid_entry(vcpu, 0x14, i);
7022 if (!best)
7023 return;
7024 vmx->pt_desc.caps[CPUID_EAX + i*PT_CPUID_REGS_NUM] = best->eax;
7025 vmx->pt_desc.caps[CPUID_EBX + i*PT_CPUID_REGS_NUM] = best->ebx;
7026 vmx->pt_desc.caps[CPUID_ECX + i*PT_CPUID_REGS_NUM] = best->ecx;
7027 vmx->pt_desc.caps[CPUID_EDX + i*PT_CPUID_REGS_NUM] = best->edx;
7028 }
7029
7030 /* Get the number of configurable Address Ranges for filtering */
7031 vmx->pt_desc.addr_range = intel_pt_validate_cap(vmx->pt_desc.caps,
7032 PT_CAP_num_address_ranges);
7033
7034 /* Initialize and clear the no dependency bits */
7035 vmx->pt_desc.ctl_bitmask = ~(RTIT_CTL_TRACEEN | RTIT_CTL_OS |
7036 RTIT_CTL_USR | RTIT_CTL_TSC_EN | RTIT_CTL_DISRETC);
7037
7038 /*
7039 * If CPUID.(EAX=14H,ECX=0):EBX[0]=1 CR3Filter can be set otherwise
7040 * will inject an #GP
7041 */
7042 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_cr3_filtering))
7043 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_CR3EN;
7044
7045 /*
7046 * If CPUID.(EAX=14H,ECX=0):EBX[1]=1 CYCEn, CycThresh and
7047 * PSBFreq can be set
7048 */
7049 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_psb_cyc))
7050 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_CYCLEACC |
7051 RTIT_CTL_CYC_THRESH | RTIT_CTL_PSB_FREQ);
7052
7053 /*
7054 * If CPUID.(EAX=14H,ECX=0):EBX[3]=1 MTCEn BranchEn and
7055 * MTCFreq can be set
7056 */
7057 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_mtc))
7058 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_MTC_EN |
7059 RTIT_CTL_BRANCH_EN | RTIT_CTL_MTC_RANGE);
7060
7061 /* If CPUID.(EAX=14H,ECX=0):EBX[4]=1 FUPonPTW and PTWEn can be set */
7062 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_ptwrite))
7063 vmx->pt_desc.ctl_bitmask &= ~(RTIT_CTL_FUP_ON_PTW |
7064 RTIT_CTL_PTW_EN);
7065
7066 /* If CPUID.(EAX=14H,ECX=0):EBX[5]=1 PwrEvEn can be set */
7067 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_power_event_trace))
7068 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_PWR_EVT_EN;
7069
7070 /* If CPUID.(EAX=14H,ECX=0):ECX[0]=1 ToPA can be set */
7071 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_topa_output))
7072 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_TOPA;
7073
7074 /* If CPUID.(EAX=14H,ECX=0):ECX[3]=1 FabircEn can be set */
7075 if (intel_pt_validate_cap(vmx->pt_desc.caps, PT_CAP_output_subsys))
7076 vmx->pt_desc.ctl_bitmask &= ~RTIT_CTL_FABRIC_EN;
7077
7078 /* unmask address range configure area */
7079 for (i = 0; i < vmx->pt_desc.addr_range; i++)
Gustavo A. R. Silvad14eff12018-12-26 14:40:59 -06007080 vmx->pt_desc.ctl_bitmask &= ~(0xfULL << (32 + i * 4));
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007081}
7082
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08007083static void vmx_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
Sheng Yang0e851882009-12-18 16:48:46 +08007084{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007085 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007086
Aaron Lewis72041602019-10-21 16:30:20 -07007087 /* xsaves_enabled is recomputed in vmx_compute_secondary_exec_control(). */
7088 vcpu->arch.xsaves_enabled = false;
7089
Paolo Bonzini80154d72017-08-24 13:55:35 +02007090 if (cpu_has_secondary_exec_ctrls()) {
7091 vmx_compute_secondary_exec_control(vmx);
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07007092 vmcs_set_secondary_exec_control(vmx);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007093 }
Mao, Junjiead756a12012-07-02 01:18:48 +00007094
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007095 if (nested_vmx_allowed(vcpu))
7096 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007097 FEAT_CTL_VMX_ENABLED_INSIDE_SMX |
7098 FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX;
Haozhong Zhang37e4c992016-06-22 14:59:55 +08007099 else
7100 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007101 ~(FEAT_CTL_VMX_ENABLED_INSIDE_SMX |
7102 FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX);
David Matlack8322ebb2016-11-29 18:14:09 -08007103
Liran Alon5f76f6f2018-09-14 03:25:52 +03007104 if (nested_vmx_allowed(vcpu)) {
David Matlack8322ebb2016-11-29 18:14:09 -08007105 nested_vmx_cr_fixed1_bits_update(vcpu);
Liran Alon5f76f6f2018-09-14 03:25:52 +03007106 nested_vmx_entry_exit_ctls_update(vcpu);
7107 }
Luwei Kang6c0f0bb2018-10-24 16:05:13 +08007108
7109 if (boot_cpu_has(X86_FEATURE_INTEL_PT) &&
7110 guest_cpuid_has(vcpu, X86_FEATURE_INTEL_PT))
7111 update_intel_pt_cfg(vcpu);
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007112
7113 if (boot_cpu_has(X86_FEATURE_RTM)) {
Sean Christophersoneb3db1b2020-09-23 11:03:58 -07007114 struct vmx_uret_msr *msr;
Paolo Bonzinib07a5c52019-11-18 12:23:01 -05007115 msr = find_msr_entry(vmx, MSR_IA32_TSX_CTRL);
7116 if (msr) {
7117 bool enabled = guest_cpuid_has(vcpu, X86_FEATURE_RTM);
7118 vmx_set_guest_msr(vmx, msr, enabled ? 0 : TSX_CTRL_RTM_DISABLE);
7119 }
7120 }
Sheng Yang0e851882009-12-18 16:48:46 +08007121}
7122
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007123static __init void vmx_set_cpu_caps(void)
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007124{
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007125 kvm_set_cpu_caps();
7126
7127 /* CPUID 0x1 */
7128 if (nested)
7129 kvm_cpu_cap_set(X86_FEATURE_VMX);
7130
7131 /* CPUID 0x7 */
Sean Christopherson8721f5b2020-03-02 15:56:45 -08007132 if (kvm_mpx_supported())
7133 kvm_cpu_cap_check_and_set(X86_FEATURE_MPX);
7134 if (cpu_has_vmx_invpcid())
7135 kvm_cpu_cap_check_and_set(X86_FEATURE_INVPCID);
7136 if (vmx_pt_mode_is_host_guest())
7137 kvm_cpu_cap_check_and_set(X86_FEATURE_INTEL_PT);
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007138
Sean Christopherson90d2f602020-03-02 15:56:47 -08007139 if (vmx_umip_emulated())
7140 kvm_cpu_cap_set(X86_FEATURE_UMIP);
7141
Sean Christophersonb3d895d52020-03-02 15:56:44 -08007142 /* CPUID 0xD.1 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01007143 supported_xss = 0;
Sean Christophersonbecdad82020-09-23 09:50:45 -07007144 if (!cpu_has_vmx_xsaves())
Sean Christophersonb3d895d52020-03-02 15:56:44 -08007145 kvm_cpu_cap_clear(X86_FEATURE_XSAVES);
7146
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007147 /* CPUID 0x80000001 */
7148 if (!cpu_has_vmx_rdtscp())
7149 kvm_cpu_cap_clear(X86_FEATURE_RDTSCP);
Maxim Levitsky0abcc8f2020-05-23 19:14:54 +03007150
Sean Christophersonbecdad82020-09-23 09:50:45 -07007151 if (cpu_has_vmx_waitpkg())
Maxim Levitsky0abcc8f2020-05-23 19:14:54 +03007152 kvm_cpu_cap_check_and_set(X86_FEATURE_WAITPKG);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007153}
7154
Sean Christophersond264ee02018-08-27 15:21:12 -07007155static void vmx_request_immediate_exit(struct kvm_vcpu *vcpu)
7156{
7157 to_vmx(vcpu)->req_immediate_exit = true;
7158}
7159
Oliver Upton35a57132020-02-04 15:26:31 -08007160static int vmx_check_intercept_io(struct kvm_vcpu *vcpu,
7161 struct x86_instruction_info *info)
7162{
7163 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7164 unsigned short port;
7165 bool intercept;
7166 int size;
7167
7168 if (info->intercept == x86_intercept_in ||
7169 info->intercept == x86_intercept_ins) {
7170 port = info->src_val;
7171 size = info->dst_bytes;
7172 } else {
7173 port = info->dst_val;
7174 size = info->src_bytes;
7175 }
7176
7177 /*
7178 * If the 'use IO bitmaps' VM-execution control is 0, IO instruction
7179 * VM-exits depend on the 'unconditional IO exiting' VM-execution
7180 * control.
7181 *
7182 * Otherwise, IO instruction VM-exits are controlled by the IO bitmaps.
7183 */
7184 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
7185 intercept = nested_cpu_has(vmcs12,
7186 CPU_BASED_UNCOND_IO_EXITING);
7187 else
7188 intercept = nested_vmx_check_io_bitmaps(vcpu, port, size);
7189
Oliver Upton86f7e902020-02-29 11:30:14 -08007190 /* FIXME: produce nested vmexit and return X86EMUL_INTERCEPTED. */
Oliver Upton35a57132020-02-04 15:26:31 -08007191 return intercept ? X86EMUL_UNHANDLEABLE : X86EMUL_CONTINUE;
7192}
7193
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007194static int vmx_check_intercept(struct kvm_vcpu *vcpu,
7195 struct x86_instruction_info *info,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007196 enum x86_intercept_stage stage,
7197 struct x86_exception *exception)
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007198{
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007199 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007200
Oliver Upton35a57132020-02-04 15:26:31 -08007201 switch (info->intercept) {
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007202 /*
7203 * RDPID causes #UD if disabled through secondary execution controls.
7204 * Because it is marked as EmulateOnUD, we need to intercept it here.
7205 */
Oliver Upton35a57132020-02-04 15:26:31 -08007206 case x86_intercept_rdtscp:
Sean Christopherson7f3603b2020-09-23 09:50:47 -07007207 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_RDTSCP)) {
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007208 exception->vector = UD_VECTOR;
7209 exception->error_code_valid = false;
Oliver Upton35a57132020-02-04 15:26:31 -08007210 return X86EMUL_PROPAGATE_FAULT;
7211 }
7212 break;
7213
7214 case x86_intercept_in:
7215 case x86_intercept_ins:
7216 case x86_intercept_out:
7217 case x86_intercept_outs:
7218 return vmx_check_intercept_io(vcpu, info);
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007219
Oliver Upton86f7e902020-02-29 11:30:14 -08007220 case x86_intercept_lgdt:
7221 case x86_intercept_lidt:
7222 case x86_intercept_lldt:
7223 case x86_intercept_ltr:
7224 case x86_intercept_sgdt:
7225 case x86_intercept_sidt:
7226 case x86_intercept_sldt:
7227 case x86_intercept_str:
7228 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC))
7229 return X86EMUL_CONTINUE;
7230
7231 /* FIXME: produce nested vmexit and return X86EMUL_INTERCEPTED. */
7232 break;
7233
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +02007234 /* TODO: check more intercepts... */
Oliver Upton35a57132020-02-04 15:26:31 -08007235 default:
7236 break;
7237 }
7238
Paolo Bonzini07721fe2020-02-04 15:26:29 -08007239 return X86EMUL_UNHANDLEABLE;
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007240}
7241
Yunhong Jiang64672c92016-06-13 14:19:59 -07007242#ifdef CONFIG_X86_64
7243/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
7244static inline int u64_shl_div_u64(u64 a, unsigned int shift,
7245 u64 divisor, u64 *result)
7246{
7247 u64 low = a << shift, high = a >> (64 - shift);
7248
7249 /* To avoid the overflow on divq */
7250 if (high >= divisor)
7251 return 1;
7252
7253 /* Low hold the result, high hold rem which is discarded */
7254 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
7255 "rm" (divisor), "0" (low), "1" (high));
7256 *result = low;
7257
7258 return 0;
7259}
7260
Sean Christophersonf9927982019-04-16 13:32:46 -07007261static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc,
7262 bool *expired)
Yunhong Jiang64672c92016-06-13 14:19:59 -07007263{
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007264 struct vcpu_vmx *vmx;
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007265 u64 tscl, guest_tscl, delta_tsc, lapic_timer_advance_cycles;
Sean Christopherson39497d72019-04-17 10:15:32 -07007266 struct kvm_timer *ktimer = &vcpu->arch.apic->lapic_timer;
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007267
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +02007268 vmx = to_vmx(vcpu);
7269 tscl = rdtsc();
7270 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
7271 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Sean Christopherson39497d72019-04-17 10:15:32 -07007272 lapic_timer_advance_cycles = nsec_to_cycles(vcpu,
7273 ktimer->timer_advance_ns);
Wanpeng Lic5ce8232018-05-29 14:53:17 +08007274
7275 if (delta_tsc > lapic_timer_advance_cycles)
7276 delta_tsc -= lapic_timer_advance_cycles;
7277 else
7278 delta_tsc = 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007279
7280 /* Convert to host delta tsc if tsc scaling is enabled */
7281 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
Sean Christopherson0967fa12019-04-16 13:32:48 -07007282 delta_tsc && u64_shl_div_u64(delta_tsc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007283 kvm_tsc_scaling_ratio_frac_bits,
Sean Christopherson0967fa12019-04-16 13:32:48 -07007284 vcpu->arch.tsc_scaling_ratio, &delta_tsc))
Yunhong Jiang64672c92016-06-13 14:19:59 -07007285 return -ERANGE;
7286
7287 /*
7288 * If the delta tsc can't fit in the 32 bit after the multi shift,
7289 * we can't use the preemption timer.
7290 * It's possible that it fits on later vmentries, but checking
7291 * on every vmentry is costly so we just use an hrtimer.
7292 */
7293 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
7294 return -ERANGE;
7295
7296 vmx->hv_deadline_tsc = tscl + delta_tsc;
Sean Christophersonf9927982019-04-16 13:32:46 -07007297 *expired = !delta_tsc;
7298 return 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007299}
7300
7301static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
7302{
Sean Christophersonf459a702018-08-27 15:21:11 -07007303 to_vmx(vcpu)->hv_deadline_tsc = -1;
Yunhong Jiang64672c92016-06-13 14:19:59 -07007304}
7305#endif
7306
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007307static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007308{
Wanpeng Lib31c1142018-03-12 04:53:04 -07007309 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007310 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007311}
7312
Kai Huang843e4332015-01-28 10:54:28 +08007313static void vmx_slot_enable_log_dirty(struct kvm *kvm,
7314 struct kvm_memory_slot *slot)
7315{
Jay Zhou3c9bd402020-02-27 09:32:27 +08007316 if (!kvm_dirty_log_manual_protect_and_init_set(kvm))
7317 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
Kai Huang843e4332015-01-28 10:54:28 +08007318 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
7319}
7320
7321static void vmx_slot_disable_log_dirty(struct kvm *kvm,
7322 struct kvm_memory_slot *slot)
7323{
7324 kvm_mmu_slot_set_dirty(kvm, slot);
7325}
7326
7327static void vmx_flush_log_dirty(struct kvm *kvm)
7328{
7329 kvm_flush_pml_buffers(kvm);
7330}
7331
7332static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
7333 struct kvm_memory_slot *memslot,
7334 gfn_t offset, unsigned long mask)
7335{
7336 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
7337}
7338
Yunhong Jiangbc225122016-06-13 14:19:58 -07007339static int vmx_pre_block(struct kvm_vcpu *vcpu)
7340{
7341 if (pi_pre_block(vcpu))
7342 return 1;
7343
Yunhong Jiang64672c92016-06-13 14:19:59 -07007344 if (kvm_lapic_hv_timer_in_use(vcpu))
7345 kvm_lapic_switch_to_sw_timer(vcpu);
7346
Yunhong Jiangbc225122016-06-13 14:19:58 -07007347 return 0;
7348}
7349
Yunhong Jiangbc225122016-06-13 14:19:58 -07007350static void vmx_post_block(struct kvm_vcpu *vcpu)
7351{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007352 if (kvm_x86_ops.set_hv_timer)
Yunhong Jiang64672c92016-06-13 14:19:59 -07007353 kvm_lapic_switch_to_hv_timer(vcpu);
7354
Yunhong Jiangbc225122016-06-13 14:19:58 -07007355 pi_post_block(vcpu);
7356}
7357
Ashok Rajc45dcc72016-06-22 14:59:56 +08007358static void vmx_setup_mce(struct kvm_vcpu *vcpu)
7359{
7360 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
7361 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007362 FEAT_CTL_LMCE_ENABLED;
Ashok Rajc45dcc72016-06-22 14:59:56 +08007363 else
7364 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
Sean Christopherson32ad73d2019-12-20 20:44:55 -08007365 ~FEAT_CTL_LMCE_ENABLED;
Ashok Rajc45dcc72016-06-22 14:59:56 +08007366}
7367
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007368static int vmx_smi_allowed(struct kvm_vcpu *vcpu, bool for_injection)
Ladi Prosek72d7b372017-10-11 16:54:41 +02007369{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007370 /* we need a nested vmexit to enter SMM, postpone if run is pending */
7371 if (to_vmx(vcpu)->nested.nested_run_pending)
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007372 return -EBUSY;
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -04007373 return !is_smm(vcpu);
Ladi Prosek72d7b372017-10-11 16:54:41 +02007374}
7375
Ladi Prosek0234bf82017-10-11 16:54:40 +02007376static int vmx_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
7377{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007378 struct vcpu_vmx *vmx = to_vmx(vcpu);
7379
7380 vmx->nested.smm.guest_mode = is_guest_mode(vcpu);
7381 if (vmx->nested.smm.guest_mode)
7382 nested_vmx_vmexit(vcpu, -1, 0, 0);
7383
7384 vmx->nested.smm.vmxon = vmx->nested.vmxon;
7385 vmx->nested.vmxon = false;
Wanpeng Licaa057a2018-03-12 04:53:03 -07007386 vmx_clear_hlt(vcpu);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007387 return 0;
7388}
7389
Sean Christophersoned193212019-04-02 08:03:09 -07007390static int vmx_pre_leave_smm(struct kvm_vcpu *vcpu, const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007391{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007392 struct vcpu_vmx *vmx = to_vmx(vcpu);
7393 int ret;
7394
7395 if (vmx->nested.smm.vmxon) {
7396 vmx->nested.vmxon = true;
7397 vmx->nested.smm.vmxon = false;
7398 }
7399
7400 if (vmx->nested.smm.guest_mode) {
Sean Christophersona633e412018-09-26 09:23:47 -07007401 ret = nested_vmx_enter_non_root_mode(vcpu, false);
Ladi Prosek72e9cbd2017-10-11 16:54:43 +02007402 if (ret)
7403 return ret;
7404
7405 vmx->nested.smm.guest_mode = false;
7406 }
Ladi Prosek0234bf82017-10-11 16:54:40 +02007407 return 0;
7408}
7409
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007410static void enable_smi_window(struct kvm_vcpu *vcpu)
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007411{
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007412 /* RSM will cause a vmexit anyway. */
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007413}
7414
Liran Alon4b9852f2019-08-26 13:24:49 +03007415static bool vmx_apic_init_signal_blocked(struct kvm_vcpu *vcpu)
7416{
7417 return to_vmx(vcpu)->nested.vmxon;
7418}
7419
Jim Mattson93dff2f2020-05-08 13:36:43 -07007420static void vmx_migrate_timers(struct kvm_vcpu *vcpu)
7421{
7422 if (is_guest_mode(vcpu)) {
7423 struct hrtimer *timer = &to_vmx(vcpu)->nested.preemption_timer;
7424
7425 if (hrtimer_try_to_cancel(timer) == 1)
7426 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
7427 }
7428}
7429
Sean Christopherson6e4fd062020-03-21 13:26:01 -07007430static void hardware_unsetup(void)
Sean Christophersona3203382018-12-03 13:53:11 -08007431{
7432 if (nested)
7433 nested_vmx_hardware_unsetup();
7434
7435 free_kvm_area();
7436}
7437
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007438static bool vmx_check_apicv_inhibit_reasons(ulong bit)
7439{
Suravee Suthikulpanitf4fdc0a2019-11-14 14:15:13 -06007440 ulong supported = BIT(APICV_INHIBIT_REASON_DISABLE) |
7441 BIT(APICV_INHIBIT_REASON_HYPERV);
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007442
7443 return supported & BIT(bit);
7444}
7445
Sean Christophersone286ac02020-03-21 13:26:02 -07007446static struct kvm_x86_ops vmx_x86_ops __initdata = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007447 .hardware_unsetup = hardware_unsetup,
Sean Christopherson484014f2020-03-21 13:25:57 -07007448
Avi Kivity6aa8b732006-12-10 02:21:36 -08007449 .hardware_enable = hardware_enable,
7450 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08007451 .cpu_has_accelerated_tpr = report_flexpriority,
Tom Lendackybc226f02018-05-10 22:06:39 +02007452 .has_emulated_msr = vmx_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007453
Sean Christopherson484014f2020-03-21 13:25:57 -07007454 .vm_size = sizeof(struct kvm_vmx),
Wanpeng Lib31c1142018-03-12 04:53:04 -07007455 .vm_init = vmx_vm_init,
7456
Avi Kivity6aa8b732006-12-10 02:21:36 -08007457 .vcpu_create = vmx_create_vcpu,
7458 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007459 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007460
Sean Christopherson6d6095b2018-07-23 12:32:44 -07007461 .prepare_guest_switch = vmx_prepare_switch_to_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007462 .vcpu_load = vmx_vcpu_load,
7463 .vcpu_put = vmx_vcpu_put,
7464
Paolo Bonzini69869822020-07-10 17:48:06 +02007465 .update_exception_bitmap = update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -06007466 .get_msr_feature = vmx_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007467 .get_msr = vmx_get_msr,
7468 .set_msr = vmx_set_msr,
7469 .get_segment_base = vmx_get_segment_base,
7470 .get_segment = vmx_get_segment,
7471 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007472 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007473 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
7474 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007475 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007476 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007477 .get_idt = vmx_get_idt,
7478 .set_idt = vmx_set_idt,
7479 .get_gdt = vmx_get_gdt,
7480 .set_gdt = vmx_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03007481 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007482 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007483 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007484 .get_rflags = vmx_get_rflags,
7485 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08007486
Sean Christopherson77809382020-03-20 14:28:18 -07007487 .tlb_flush_all = vmx_flush_tlb_all,
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07007488 .tlb_flush_current = vmx_flush_tlb_current,
Junaid Shahidfaff8752018-06-29 13:10:05 -07007489 .tlb_flush_gva = vmx_flush_tlb_gva,
Sean Christophersone64419d2020-03-20 14:28:10 -07007490 .tlb_flush_guest = vmx_flush_tlb_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007491
Avi Kivity6aa8b732006-12-10 02:21:36 -08007492 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02007493 .handle_exit = vmx_handle_exit,
Oliver Upton5ef8acb2020-02-07 02:36:07 -08007494 .skip_emulated_instruction = vmx_skip_emulated_instruction,
7495 .update_emulated_instruction = vmx_update_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007496 .set_interrupt_shadow = vmx_set_interrupt_shadow,
7497 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007498 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007499 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007500 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007501 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007502 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007503 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007504 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007505 .get_nmi_mask = vmx_get_nmi_mask,
7506 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007507 .enable_nmi_window = enable_nmi_window,
7508 .enable_irq_window = enable_irq_window,
7509 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -04007510 .set_virtual_apic_mode = vmx_set_virtual_apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +08007511 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +03007512 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007513 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +01007514 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06007515 .check_apicv_inhibit_reasons = vmx_check_apicv_inhibit_reasons,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007516 .hwapic_irr_update = vmx_hwapic_irr_update,
7517 .hwapic_isr_update = vmx_hwapic_isr_update,
Liran Alone6c67d82018-09-04 10:56:52 +03007518 .guest_apic_has_interrupt = vmx_guest_apic_has_interrupt,
Yang Zhanga20ed542013-04-11 19:25:15 +08007519 .sync_pir_to_irr = vmx_sync_pir_to_irr,
7520 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007521 .dy_apicv_has_pending_interrupt = pi_has_pending_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007522
Izik Eiduscbc94022007-10-25 00:29:55 +02007523 .set_tss_addr = vmx_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07007524 .set_identity_map_addr = vmx_set_identity_map_addr,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007525 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007526
Avi Kivity586f9602010-11-18 13:09:54 +02007527 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007528
Xiaoyao Li7c1b7612020-07-09 12:34:25 +08007529 .vcpu_after_set_cpuid = vmx_vcpu_after_set_cpuid,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007530
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007531 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007532
Leonid Shatz326e7422018-11-06 12:14:25 +02007533 .write_l1_tsc_offset = vmx_write_l1_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007534
Sean Christopherson484014f2020-03-21 13:25:57 -07007535 .load_mmu_pgd = vmx_load_mmu_pgd,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007536
7537 .check_intercept = vmx_check_intercept,
Sean Christopherson95b5a482019-04-19 22:50:59 -07007538 .handle_exit_irqoff = vmx_handle_exit_irqoff,
Jan Kiszkab6b8a142014-03-07 20:03:12 +01007539
Sean Christophersond264ee02018-08-27 15:21:12 -07007540 .request_immediate_exit = vmx_request_immediate_exit,
Radim Krčmářae97a3b2014-08-21 18:08:06 +02007541
7542 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +08007543
7544 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
7545 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
7546 .flush_log_dirty = vmx_flush_log_dirty,
7547 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Wei Huang25462f72015-06-19 15:45:05 +02007548
Feng Wubf9f6ac2015-09-18 22:29:55 +08007549 .pre_block = vmx_pre_block,
7550 .post_block = vmx_post_block,
7551
Wei Huang25462f72015-06-19 15:45:05 +02007552 .pmu_ops = &intel_pmu_ops,
Paolo Bonzini33b22172020-04-17 10:24:18 -04007553 .nested_ops = &vmx_nested_ops,
Feng Wuefc64402015-09-18 22:29:51 +08007554
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007555 .update_pi_irte = pi_update_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007556
7557#ifdef CONFIG_X86_64
7558 .set_hv_timer = vmx_set_hv_timer,
7559 .cancel_hv_timer = vmx_cancel_hv_timer,
7560#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +08007561
7562 .setup_mce = vmx_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007563
Ladi Prosek72d7b372017-10-11 16:54:41 +02007564 .smi_allowed = vmx_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +02007565 .pre_enter_smm = vmx_pre_enter_smm,
7566 .pre_leave_smm = vmx_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +02007567 .enable_smi_window = enable_smi_window,
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02007568
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007569 .can_emulate_instruction = vmx_can_emulate_instruction,
Liran Alon4b9852f2019-08-26 13:24:49 +03007570 .apic_init_signal_blocked = vmx_apic_init_signal_blocked,
Jim Mattson93dff2f2020-05-08 13:36:43 -07007571 .migrate_timers = vmx_migrate_timers,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007572};
7573
Avi Kivity6aa8b732006-12-10 02:21:36 -08007574static __init int hardware_setup(void)
7575{
7576 unsigned long host_bndcfgs;
7577 struct desc_ptr dt;
Sean Christopherson703c3352020-03-02 15:57:03 -08007578 int r, i, ept_lpage_level;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007579
Avi Kivity6aa8b732006-12-10 02:21:36 -08007580 store_idt(&dt);
7581 host_idt_base = dt.address;
7582
7583 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07007584 kvm_define_user_return_msr(i, vmx_msr_index[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007585
7586 if (setup_vmcs_config(&vmcs_config, &vmx_capability) < 0)
7587 return -EIO;
7588
7589 if (boot_cpu_has(X86_FEATURE_NX))
7590 kvm_enable_efer_bits(EFER_NX);
7591
7592 if (boot_cpu_has(X86_FEATURE_MPX)) {
7593 rdmsrl(MSR_IA32_BNDCFGS, host_bndcfgs);
7594 WARN_ONCE(host_bndcfgs, "KVM: BNDCFGS in host will be lost");
7595 }
7596
Sean Christopherson7f5581f2020-03-02 15:56:24 -08007597 if (!cpu_has_vmx_mpx())
Sean Christophersoncfc48182020-03-02 15:56:23 -08007598 supported_xcr0 &= ~(XFEATURE_MASK_BNDREGS |
7599 XFEATURE_MASK_BNDCSR);
7600
Avi Kivity6aa8b732006-12-10 02:21:36 -08007601 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
7602 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
7603 enable_vpid = 0;
7604
7605 if (!cpu_has_vmx_ept() ||
7606 !cpu_has_vmx_ept_4levels() ||
7607 !cpu_has_vmx_ept_mt_wb() ||
7608 !cpu_has_vmx_invept_global())
7609 enable_ept = 0;
7610
7611 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
7612 enable_ept_ad_bits = 0;
7613
7614 if (!cpu_has_vmx_unrestricted_guest() || !enable_ept)
Avi Kivity873a7c42006-12-13 00:34:14 -08007615 enable_unrestricted_guest = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007616
7617 if (!cpu_has_vmx_flexpriority())
7618 flexpriority_enabled = 0;
7619
7620 if (!cpu_has_virtual_nmis())
7621 enable_vnmi = 0;
7622
7623 /*
7624 * set_apic_access_page_addr() is used to reload apic access
7625 * page upon invalidation. No need to do anything if not
7626 * using the APIC_ACCESS_ADDR VMCS field.
7627 */
7628 if (!flexpriority_enabled)
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007629 vmx_x86_ops.set_apic_access_page_addr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007630
7631 if (!cpu_has_vmx_tpr_shadow())
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007632 vmx_x86_ops.update_cr8_intercept = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007633
Avi Kivity6aa8b732006-12-10 02:21:36 -08007634#if IS_ENABLED(CONFIG_HYPERV)
7635 if (ms_hyperv.nested_features & HV_X64_NESTED_GUEST_MAPPING_FLUSH
7636 && enable_ept) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007637 vmx_x86_ops.tlb_remote_flush = hv_remote_flush_tlb;
7638 vmx_x86_ops.tlb_remote_flush_with_range =
Avi Kivity6aa8b732006-12-10 02:21:36 -08007639 hv_remote_flush_tlb_with_range;
7640 }
7641#endif
7642
7643 if (!cpu_has_vmx_ple()) {
7644 ple_gap = 0;
7645 ple_window = 0;
7646 ple_window_grow = 0;
7647 ple_window_max = 0;
7648 ple_window_shrink = 0;
7649 }
7650
7651 if (!cpu_has_vmx_apicv()) {
7652 enable_apicv = 0;
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007653 vmx_x86_ops.sync_pir_to_irr = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007654 }
7655
7656 if (cpu_has_vmx_tsc_scaling()) {
7657 kvm_has_tsc_control = true;
7658 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
7659 kvm_tsc_scaling_ratio_frac_bits = 48;
7660 }
7661
7662 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
7663
7664 if (enable_ept)
7665 vmx_enable_tdp();
Sean Christopherson703c3352020-03-02 15:57:03 -08007666
7667 if (!enable_ept)
7668 ept_lpage_level = 0;
7669 else if (cpu_has_vmx_ept_1g_page())
Sean Christopherson3bae0452020-04-27 17:54:22 -07007670 ept_lpage_level = PG_LEVEL_1G;
Sean Christopherson703c3352020-03-02 15:57:03 -08007671 else if (cpu_has_vmx_ept_2m_page())
Sean Christopherson3bae0452020-04-27 17:54:22 -07007672 ept_lpage_level = PG_LEVEL_2M;
Sean Christopherson703c3352020-03-02 15:57:03 -08007673 else
Sean Christopherson3bae0452020-04-27 17:54:22 -07007674 ept_lpage_level = PG_LEVEL_4K;
Sean Christopherson83013052020-07-15 20:41:22 -07007675 kvm_configure_mmu(enable_ept, vmx_get_max_tdp_level(), ept_lpage_level);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007676
7677 /*
7678 * Only enable PML when hardware supports PML feature, and both EPT
7679 * and EPT A/D bit features are enabled -- PML depends on them to work.
7680 */
7681 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
7682 enable_pml = 0;
7683
7684 if (!enable_pml) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007685 vmx_x86_ops.slot_enable_log_dirty = NULL;
7686 vmx_x86_ops.slot_disable_log_dirty = NULL;
7687 vmx_x86_ops.flush_log_dirty = NULL;
7688 vmx_x86_ops.enable_log_dirty_pt_masked = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007689 }
7690
7691 if (!cpu_has_vmx_preemption_timer())
7692 enable_preemption_timer = false;
7693
7694 if (enable_preemption_timer) {
7695 u64 use_timer_freq = 5000ULL * 1000 * 1000;
7696 u64 vmx_msr;
7697
7698 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
7699 cpu_preemption_timer_multi =
7700 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
7701
7702 if (tsc_khz)
7703 use_timer_freq = (u64)tsc_khz * 1000;
7704 use_timer_freq >>= cpu_preemption_timer_multi;
7705
7706 /*
7707 * KVM "disables" the preemption timer by setting it to its max
7708 * value. Don't use the timer if it might cause spurious exits
7709 * at a rate faster than 0.1 Hz (of uninterrupted guest time).
7710 */
7711 if (use_timer_freq > 0xffffffffu / 10)
7712 enable_preemption_timer = false;
7713 }
7714
7715 if (!enable_preemption_timer) {
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07007716 vmx_x86_ops.set_hv_timer = NULL;
7717 vmx_x86_ops.cancel_hv_timer = NULL;
7718 vmx_x86_ops.request_immediate_exit = __kvm_request_immediate_exit;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007719 }
7720
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007721 kvm_set_posted_intr_wakeup_handler(pi_wakeup_handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007722
7723 kvm_mce_cap_supported |= MCG_LMCE_P;
7724
7725 if (pt_mode != PT_MODE_SYSTEM && pt_mode != PT_MODE_HOST_GUEST)
7726 return -EINVAL;
7727 if (!enable_ept || !cpu_has_vmx_intel_pt())
7728 pt_mode = PT_MODE_SYSTEM;
7729
7730 if (nested) {
7731 nested_vmx_setup_ctls_msrs(&vmcs_config.nested,
7732 vmx_capability.ept);
7733
Sean Christopherson6c1c6e52020-05-06 13:46:53 -07007734 r = nested_vmx_hardware_setup(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007735 if (r)
7736 return r;
7737 }
7738
Sean Christopherson3ec6fd82020-03-02 15:56:43 -08007739 vmx_set_cpu_caps();
Sean Christopherson66a69502020-03-02 15:56:41 -08007740
Avi Kivity6aa8b732006-12-10 02:21:36 -08007741 r = alloc_kvm_area();
7742 if (r)
7743 nested_vmx_hardware_unsetup();
7744 return r;
7745}
7746
Sean Christophersond008dfd2020-03-21 13:25:56 -07007747static struct kvm_x86_init_ops vmx_init_ops __initdata = {
7748 .cpu_has_kvm_support = cpu_has_kvm_support,
7749 .disabled_by_bios = vmx_disabled_by_bios,
7750 .check_processor_compatibility = vmx_check_processor_compat,
7751 .hardware_setup = hardware_setup,
7752
7753 .runtime_ops = &vmx_x86_ops,
7754};
7755
Avi Kivity6aa8b732006-12-10 02:21:36 -08007756static void vmx_cleanup_l1d_flush(void)
7757{
7758 if (vmx_l1d_flush_pages) {
7759 free_pages((unsigned long)vmx_l1d_flush_pages, L1D_CACHE_ORDER);
7760 vmx_l1d_flush_pages = NULL;
7761 }
7762 /* Restore state so sysfs ignores VMX */
7763 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO;
7764}
7765
7766static void vmx_exit(void)
7767{
7768#ifdef CONFIG_KEXEC_CORE
7769 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
7770 synchronize_rcu();
7771#endif
7772
7773 kvm_exit();
7774
7775#if IS_ENABLED(CONFIG_HYPERV)
7776 if (static_branch_unlikely(&enable_evmcs)) {
7777 int cpu;
7778 struct hv_vp_assist_page *vp_ap;
7779 /*
7780 * Reset everything to support using non-enlightened VMCS
7781 * access later (e.g. when we reload the module with
7782 * enlightened_vmcs=0)
7783 */
7784 for_each_online_cpu(cpu) {
7785 vp_ap = hv_get_vp_assist_page(cpu);
7786
7787 if (!vp_ap)
7788 continue;
7789
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08007790 vp_ap->nested_control.features.directhypercall = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007791 vp_ap->current_nested_vmcs = 0;
7792 vp_ap->enlighten_vmentry = 0;
7793 }
7794
7795 static_branch_disable(&enable_evmcs);
7796 }
7797#endif
7798 vmx_cleanup_l1d_flush();
7799}
7800module_exit(vmx_exit);
7801
7802static int __init vmx_init(void)
7803{
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02007804 int r, cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007805
7806#if IS_ENABLED(CONFIG_HYPERV)
7807 /*
7808 * Enlightened VMCS usage should be recommended and the host needs
7809 * to support eVMCS v1 or above. We can also disable eVMCS support
7810 * with module parameter.
7811 */
7812 if (enlightened_vmcs &&
7813 ms_hyperv.hints & HV_X64_ENLIGHTENED_VMCS_RECOMMENDED &&
7814 (ms_hyperv.nested_features & HV_X64_ENLIGHTENED_VMCS_VERSION) >=
7815 KVM_EVMCS_VERSION) {
7816 int cpu;
7817
7818 /* Check that we have assist pages on all online CPUs */
7819 for_each_online_cpu(cpu) {
7820 if (!hv_get_vp_assist_page(cpu)) {
7821 enlightened_vmcs = false;
7822 break;
7823 }
7824 }
7825
7826 if (enlightened_vmcs) {
7827 pr_info("KVM: vmx: using Hyper-V Enlightened VMCS\n");
7828 static_branch_enable(&enable_evmcs);
7829 }
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +08007830
7831 if (ms_hyperv.nested_features & HV_X64_NESTED_DIRECT_FLUSH)
7832 vmx_x86_ops.enable_direct_tlbflush
7833 = hv_enable_direct_tlbflush;
7834
Avi Kivity6aa8b732006-12-10 02:21:36 -08007835 } else {
7836 enlightened_vmcs = false;
7837 }
7838#endif
7839
Sean Christophersond008dfd2020-03-21 13:25:56 -07007840 r = kvm_init(&vmx_init_ops, sizeof(struct vcpu_vmx),
Avi Kivity6aa8b732006-12-10 02:21:36 -08007841 __alignof__(struct vcpu_vmx), THIS_MODULE);
7842 if (r)
7843 return r;
7844
7845 /*
7846 * Must be called after kvm_init() so enable_ept is properly set
7847 * up. Hand the parameter mitigation value in which was stored in
7848 * the pre module init parser. If no parameter was given, it will
7849 * contain 'auto' which will be turned into the default 'cond'
7850 * mitigation mode.
7851 */
Waiman Long19a36d32019-08-26 15:30:23 -04007852 r = vmx_setup_l1d_flush(vmentry_l1d_flush_param);
7853 if (r) {
7854 vmx_exit();
7855 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007856 }
7857
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02007858 for_each_possible_cpu(cpu) {
7859 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Xiaoyao Li8888cdd2020-09-23 11:31:11 -07007860
7861 pi_init(cpu);
Vitaly Kuznetsovdbef2802020-04-01 10:13:48 +02007862 }
7863
Avi Kivity6aa8b732006-12-10 02:21:36 -08007864#ifdef CONFIG_KEXEC_CORE
7865 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
7866 crash_vmclear_local_loaded_vmcss);
7867#endif
7868 vmx_check_vmcs12_offsets();
7869
Mohammed Gamal3edd6832020-07-10 17:48:11 +02007870 /*
7871 * Intel processors don't have problems with
7872 * GUEST_MAXPHYADDR < HOST_MAXPHYADDR so enable
7873 * it for VMX by default
7874 */
7875 allow_smaller_maxphyaddr = true;
7876
Avi Kivity6aa8b732006-12-10 02:21:36 -08007877 return 0;
7878}
7879module_init(vmx_init);