blob: b16b2664cfe1742a5c78b2695f329f5fc6821153 [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08009 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
Eddie Dong85f455f2007-07-06 12:20:49 +030019#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080020#include "mmu.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020021#include "cpuid.h"
Andrey Smetanind62caab2015-11-10 15:36:33 +030022#include "lapic.h"
Avi Kivitye4956062007-06-28 14:15:57 -040023
Avi Kivityedf88412007-12-16 11:02:48 +020024#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020026#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080027#include <linux/mm.h>
28#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040029#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020030#include <linux/moduleparam.h>
Josh Triplette9bda3b2012-03-20 23:33:51 -070031#include <linux/mod_devicetable.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040032#include <linux/trace_events.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040034#include <linux/tboot.h>
Jan Kiszkaf4124502014-03-07 20:03:13 +010035#include <linux/hrtimer.h>
Josh Poimboeufc207aee2017-06-28 10:11:06 -050036#include <linux/frame.h>
Dan Williams085331d2018-01-31 17:47:03 -080037#include <linux/nospec.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030038#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030039#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040040
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +020041#include <asm/asm.h>
Feng Wu28b835d2015-09-18 22:29:54 +080042#include <asm/cpu.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080043#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080044#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020045#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020046#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080047#include <asm/mce.h>
Ingo Molnar952f07e2015-04-26 16:56:05 +020048#include <asm/fpu/internal.h>
Gleb Natapovd7cd9792011-10-05 14:01:23 +020049#include <asm/perf_event.h>
Paolo Bonzini81908bf2014-02-21 10:32:27 +010050#include <asm/debugreg.h>
Zhang Yanfei8f536b72012-12-06 23:43:34 +080051#include <asm/kexec.h>
Radim Krčmářdab20872015-02-09 22:44:07 +010052#include <asm/apic.h>
Feng Wuefc64402015-09-18 22:29:51 +080053#include <asm/irq_remapping.h>
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070054#include <asm/mmu_context.h>
Thomas Gleixner28a27752018-04-29 15:01:37 +020055#include <asm/spec-ctrl.h>
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010056#include <asm/mshyperv.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080057
Marcelo Tosatti229456f2009-06-17 09:22:14 -030058#include "trace.h"
Wei Huang25462f72015-06-19 15:45:05 +020059#include "pmu.h"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010060#include "vmx_evmcs.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030061
Avi Kivity4ecac3f2008-05-13 13:23:38 +030062#define __ex(x) __kvm_handle_fault_on_reboot(x)
Avi Kivity5e520e62011-05-15 10:13:12 -040063#define __ex_clear(x, reg) \
64 ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg)
Avi Kivity4ecac3f2008-05-13 13:23:38 +030065
Avi Kivity6aa8b732006-12-10 02:21:36 -080066MODULE_AUTHOR("Qumranet");
67MODULE_LICENSE("GPL");
68
Josh Triplette9bda3b2012-03-20 23:33:51 -070069static const struct x86_cpu_id vmx_cpu_id[] = {
70 X86_FEATURE_MATCH(X86_FEATURE_VMX),
71 {}
72};
73MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
74
Rusty Russell476bc002012-01-13 09:32:18 +103075static bool __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020076module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080077
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010078static bool __read_mostly enable_vnmi = 1;
79module_param_named(vnmi, enable_vnmi, bool, S_IRUGO);
80
Rusty Russell476bc002012-01-13 09:32:18 +103081static bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020082module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020083
Rusty Russell476bc002012-01-13 09:32:18 +103084static bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020085module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080086
Rusty Russell476bc002012-01-13 09:32:18 +103087static bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070088module_param_named(unrestricted_guest,
89 enable_unrestricted_guest, bool, S_IRUGO);
90
Xudong Hao83c3a332012-05-28 19:33:35 +080091static bool __read_mostly enable_ept_ad_bits = 1;
92module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
93
Avi Kivitya27685c2012-06-12 20:30:18 +030094static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020095module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030096
Rusty Russell476bc002012-01-13 09:32:18 +103097static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +030098module_param(fasteoi, bool, S_IRUGO);
99
Yang Zhang5a717852013-04-11 19:25:16 +0800100static bool __read_mostly enable_apicv = 1;
Yang Zhang01e439b2013-04-11 19:25:12 +0800101module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +0800102
Abel Gordonabc4fc52013-04-18 14:35:25 +0300103static bool __read_mostly enable_shadow_vmcs = 1;
104module_param_named(enable_shadow_vmcs, enable_shadow_vmcs, bool, S_IRUGO);
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 */
Rusty Russell476bc002012-01-13 09:32:18 +1030110static bool __read_mostly nested = 0;
Nadav Har'El801d3422011-05-25 23:02:23 +0300111module_param(nested, bool, S_IRUGO);
112
Wanpeng Li20300092014-12-02 19:14:59 +0800113static u64 __read_mostly host_xss;
114
Kai Huang843e4332015-01-28 10:54:28 +0800115static bool __read_mostly enable_pml = 1;
116module_param_named(pml, enable_pml, bool, S_IRUGO);
117
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100118#define MSR_TYPE_R 1
119#define MSR_TYPE_W 2
120#define MSR_TYPE_RW 3
121
122#define MSR_BITMAP_MODE_X2APIC 1
123#define MSR_BITMAP_MODE_X2APIC_APICV 2
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100124
Haozhong Zhang64903d62015-10-20 15:39:09 +0800125#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
126
Yunhong Jiang64672c92016-06-13 14:19:59 -0700127/* Guest_tsc -> host_tsc conversion requires 64-bit division. */
128static int __read_mostly cpu_preemption_timer_multi;
129static bool __read_mostly enable_preemption_timer = 1;
130#ifdef CONFIG_X86_64
131module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
132#endif
133
Gleb Natapov50378782013-02-04 16:00:28 +0200134#define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD)
Sean Christopherson1706bd02018-03-05 12:04:38 -0800135#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR0_NE
136#define KVM_VM_CR0_ALWAYS_ON \
137 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | \
138 X86_CR0_WP | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200139#define KVM_CR4_GUEST_OWNED_BITS \
140 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
Yu Zhangfd8cb432017-08-24 20:27:56 +0800141 | X86_CR4_OSXMMEXCPT | X86_CR4_LA57 | X86_CR4_TSD)
Avi Kivity4c386092009-12-07 12:26:18 +0200142
Sean Christopherson5dc1f042018-03-05 12:04:39 -0800143#define KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR4_VMXE
Avi Kivitycdc0e242009-12-06 17:21:14 +0200144#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
145#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
146
Avi Kivity78ac8b42010-04-08 18:19:35 +0300147#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
148
Jan Kiszkaf4124502014-03-07 20:03:13 +0100149#define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5
150
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800151/*
Jan Dakinevich16c2aec2016-10-28 07:00:30 +0300152 * Hyper-V requires all of these, so mark them as supported even though
153 * they are just treated the same as all-context.
154 */
155#define VMX_VPID_EXTENT_SUPPORTED_MASK \
156 (VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT | \
157 VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT | \
158 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT | \
159 VMX_VPID_EXTENT_SINGLE_NON_GLOBAL_BIT)
160
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800161/*
162 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
163 * ple_gap: upper bound on the amount of time between two successive
164 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500165 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800166 * ple_window: upper bound on the amount of time a guest is allowed to execute
167 * in a PAUSE loop. Tests indicate that most spinlocks are held for
168 * less than 2^12 cycles
169 * Time is measured based on a counter that runs at the same rate as the TSC,
170 * refer SDM volume 3b section 21.6.13 & 22.1.3.
171 */
Babu Mogerc8e88712018-03-16 16:37:24 -0400172static unsigned int ple_gap = KVM_DEFAULT_PLE_GAP;
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200173
Babu Moger7fbc85a2018-03-16 16:37:22 -0400174static unsigned int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
175module_param(ple_window, uint, 0444);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800176
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200177/* Default doubles per-vcpu window every exit. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400178static unsigned int ple_window_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400179module_param(ple_window_grow, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200180
181/* Default resets per-vcpu window every exit to ple_window. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400182static unsigned int ple_window_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400183module_param(ple_window_shrink, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200184
185/* Default is to compute the maximum so we can never overflow. */
Babu Moger7fbc85a2018-03-16 16:37:22 -0400186static unsigned int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
187module_param(ple_window_max, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200188
Avi Kivity83287ea422012-09-16 15:10:57 +0300189extern const ulong vmx_return;
190
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200191static DEFINE_STATIC_KEY_FALSE(vmx_l1d_should_flush);
Nicolai Stange427362a2018-07-21 22:25:00 +0200192static DEFINE_STATIC_KEY_FALSE(vmx_l1d_flush_cond);
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200193static DEFINE_MUTEX(vmx_l1d_flush_mutex);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200194
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200195/* Storage for pre module init parameter parsing */
196static enum vmx_l1d_flush_state __read_mostly vmentry_l1d_flush_param = VMENTER_L1D_FLUSH_AUTO;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200197
198static const struct {
199 const char *option;
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200200 bool for_parse;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200201} vmentry_l1d_param[] = {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200202 [VMENTER_L1D_FLUSH_AUTO] = {"auto", true},
203 [VMENTER_L1D_FLUSH_NEVER] = {"never", true},
204 [VMENTER_L1D_FLUSH_COND] = {"cond", true},
205 [VMENTER_L1D_FLUSH_ALWAYS] = {"always", true},
206 [VMENTER_L1D_FLUSH_EPT_DISABLED] = {"EPT disabled", false},
207 [VMENTER_L1D_FLUSH_NOT_REQUIRED] = {"not required", false},
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200208};
209
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200210#define L1D_CACHE_ORDER 4
211static void *vmx_l1d_flush_pages;
212
213static int vmx_setup_l1d_flush(enum vmx_l1d_flush_state l1tf)
214{
215 struct page *page;
Nicolai Stange288d1522018-07-18 19:07:38 +0200216 unsigned int i;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200217
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200218 if (!enable_ept) {
219 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_EPT_DISABLED;
220 return 0;
221 }
222
Yi Wangd806afa2018-08-16 13:42:39 +0800223 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES)) {
224 u64 msr;
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200225
Yi Wangd806afa2018-08-16 13:42:39 +0800226 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, msr);
227 if (msr & ARCH_CAP_SKIP_VMENTRY_L1DFLUSH) {
228 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_NOT_REQUIRED;
229 return 0;
230 }
231 }
Paolo Bonzini8e0b2b92018-08-05 16:07:46 +0200232
Jiri Kosinad90a7a02018-07-13 16:23:25 +0200233 /* If set to auto use the default l1tf mitigation method */
234 if (l1tf == VMENTER_L1D_FLUSH_AUTO) {
235 switch (l1tf_mitigation) {
236 case L1TF_MITIGATION_OFF:
237 l1tf = VMENTER_L1D_FLUSH_NEVER;
238 break;
239 case L1TF_MITIGATION_FLUSH_NOWARN:
240 case L1TF_MITIGATION_FLUSH:
241 case L1TF_MITIGATION_FLUSH_NOSMT:
242 l1tf = VMENTER_L1D_FLUSH_COND;
243 break;
244 case L1TF_MITIGATION_FULL:
245 case L1TF_MITIGATION_FULL_FORCE:
246 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
247 break;
248 }
249 } else if (l1tf_mitigation == L1TF_MITIGATION_FULL_FORCE) {
250 l1tf = VMENTER_L1D_FLUSH_ALWAYS;
251 }
252
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200253 if (l1tf != VMENTER_L1D_FLUSH_NEVER && !vmx_l1d_flush_pages &&
254 !boot_cpu_has(X86_FEATURE_FLUSH_L1D)) {
255 page = alloc_pages(GFP_KERNEL, L1D_CACHE_ORDER);
256 if (!page)
257 return -ENOMEM;
258 vmx_l1d_flush_pages = page_address(page);
Nicolai Stange288d1522018-07-18 19:07:38 +0200259
260 /*
261 * Initialize each page with a different pattern in
262 * order to protect against KSM in the nested
263 * virtualization case.
264 */
265 for (i = 0; i < 1u << L1D_CACHE_ORDER; ++i) {
266 memset(vmx_l1d_flush_pages + i * PAGE_SIZE, i + 1,
267 PAGE_SIZE);
268 }
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200269 }
270
271 l1tf_vmx_mitigation = l1tf;
272
Thomas Gleixner895ae472018-07-13 16:23:22 +0200273 if (l1tf != VMENTER_L1D_FLUSH_NEVER)
274 static_branch_enable(&vmx_l1d_should_flush);
275 else
276 static_branch_disable(&vmx_l1d_should_flush);
Thomas Gleixner4c6523e2018-07-13 16:23:20 +0200277
Nicolai Stange427362a2018-07-21 22:25:00 +0200278 if (l1tf == VMENTER_L1D_FLUSH_COND)
279 static_branch_enable(&vmx_l1d_flush_cond);
Thomas Gleixner895ae472018-07-13 16:23:22 +0200280 else
Nicolai Stange427362a2018-07-21 22:25:00 +0200281 static_branch_disable(&vmx_l1d_flush_cond);
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200282 return 0;
283}
284
285static int vmentry_l1d_flush_parse(const char *s)
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200286{
287 unsigned int i;
288
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200289 if (s) {
290 for (i = 0; i < ARRAY_SIZE(vmentry_l1d_param); i++) {
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200291 if (vmentry_l1d_param[i].for_parse &&
292 sysfs_streq(s, vmentry_l1d_param[i].option))
293 return i;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200294 }
295 }
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200296 return -EINVAL;
297}
298
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200299static int vmentry_l1d_flush_set(const char *s, const struct kernel_param *kp)
300{
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200301 int l1tf, ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200302
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200303 l1tf = vmentry_l1d_flush_parse(s);
304 if (l1tf < 0)
305 return l1tf;
306
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200307 if (!boot_cpu_has(X86_BUG_L1TF))
308 return 0;
309
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200310 /*
311 * Has vmx_init() run already? If not then this is the pre init
312 * parameter parsing. In that case just store the value and let
313 * vmx_init() do the proper setup after enable_ept has been
314 * established.
315 */
316 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_AUTO) {
317 vmentry_l1d_flush_param = l1tf;
318 return 0;
319 }
320
Thomas Gleixnerdd4bfa72018-07-13 16:23:21 +0200321 mutex_lock(&vmx_l1d_flush_mutex);
322 ret = vmx_setup_l1d_flush(l1tf);
323 mutex_unlock(&vmx_l1d_flush_mutex);
324 return ret;
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200325}
326
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200327static int vmentry_l1d_flush_get(char *s, const struct kernel_param *kp)
328{
Paolo Bonzini0027ff22018-08-22 16:43:39 +0200329 if (WARN_ON_ONCE(l1tf_vmx_mitigation >= ARRAY_SIZE(vmentry_l1d_param)))
330 return sprintf(s, "???\n");
331
Thomas Gleixner7db92e12018-07-13 16:23:19 +0200332 return sprintf(s, "%s\n", vmentry_l1d_param[l1tf_vmx_mitigation].option);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200333}
334
335static const struct kernel_param_ops vmentry_l1d_flush_ops = {
336 .set = vmentry_l1d_flush_set,
337 .get = vmentry_l1d_flush_get,
338};
Thomas Gleixner895ae472018-07-13 16:23:22 +0200339module_param_cb(vmentry_l1d_flush, &vmentry_l1d_flush_ops, NULL, 0644);
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +0200340
Tianyu Lan877ad952018-07-19 08:40:23 +0000341enum ept_pointers_status {
342 EPT_POINTERS_CHECK = 0,
343 EPT_POINTERS_MATCH = 1,
344 EPT_POINTERS_MISMATCH = 2
345};
346
Sean Christopherson40bbb9d2018-03-20 12:17:20 -0700347struct kvm_vmx {
348 struct kvm kvm;
349
350 unsigned int tss_addr;
351 bool ept_identity_pagetable_done;
352 gpa_t ept_identity_map_addr;
Tianyu Lan877ad952018-07-19 08:40:23 +0000353
354 enum ept_pointers_status ept_pointers_match;
355 spinlock_t ept_pointer_lock;
Sean Christopherson40bbb9d2018-03-20 12:17:20 -0700356};
357
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200358#define NR_AUTOLOAD_MSRS 8
Avi Kivity61d2ef22010-04-28 16:40:38 +0300359
Liran Alon392b2f22018-06-23 02:35:01 +0300360struct vmcs_hdr {
361 u32 revision_id:31;
362 u32 shadow_vmcs:1;
363};
364
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400365struct vmcs {
Liran Alon392b2f22018-06-23 02:35:01 +0300366 struct vmcs_hdr hdr;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400367 u32 abort;
368 char data[0];
369};
370
Nadav Har'Eld462b812011-05-24 15:26:10 +0300371/*
Sean Christophersond7ee0392018-07-23 12:32:47 -0700372 * vmcs_host_state tracks registers that are loaded from the VMCS on VMEXIT
373 * and whose values change infrequently, but are not constant. I.e. this is
374 * used as a write-through cache of the corresponding VMCS fields.
375 */
376struct vmcs_host_state {
377 unsigned long cr3; /* May not match real cr3 */
378 unsigned long cr4; /* May not match real cr4 */
Sean Christopherson5e079c72018-07-23 12:32:50 -0700379 unsigned long gs_base;
380 unsigned long fs_base;
Sean Christophersond7ee0392018-07-23 12:32:47 -0700381
382 u16 fs_sel, gs_sel, ldt_sel;
383#ifdef CONFIG_X86_64
384 u16 ds_sel, es_sel;
385#endif
386};
387
388/*
Nadav Har'Eld462b812011-05-24 15:26:10 +0300389 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
390 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
391 * loaded on this CPU (so we can clear them if the CPU goes down).
392 */
393struct loaded_vmcs {
394 struct vmcs *vmcs;
Jim Mattson355f4fb2016-10-28 08:29:39 -0700395 struct vmcs *shadow_vmcs;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300396 int cpu;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +0200397 bool launched;
398 bool nmi_known_unmasked;
Sean Christophersonf459a702018-08-27 15:21:11 -0700399 bool hv_timer_armed;
Paolo Bonzini8a1b4392017-11-06 13:31:12 +0100400 /* Support for vnmi-less CPUs */
401 int soft_vnmi_blocked;
402 ktime_t entry_time;
403 s64 vnmi_blocked_time;
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100404 unsigned long *msr_bitmap;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300405 struct list_head loaded_vmcss_on_cpu_link;
Sean Christophersond7ee0392018-07-23 12:32:47 -0700406 struct vmcs_host_state host_state;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300407};
408
Avi Kivity26bb0982009-09-07 11:14:12 +0300409struct shared_msr_entry {
410 unsigned index;
411 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200412 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300413};
414
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300415/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300416 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
417 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
418 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
419 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
420 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
421 * More than one of these structures may exist, if L1 runs multiple L2 guests.
Jim Mattsonde3a0022017-11-27 17:22:25 -0600422 * nested_vmx_run() will use the data here to build the vmcs02: a VMCS for the
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300423 * underlying hardware which will be used to run L2.
424 * This structure is packed to ensure that its layout is identical across
425 * machines (necessary for live migration).
Jim Mattsonb348e792018-05-01 15:40:27 -0700426 *
427 * IMPORTANT: Changing the layout of existing fields in this structure
428 * will break save/restore compatibility with older kvm releases. When
429 * adding new fields, either use space in the reserved padding* arrays
430 * or add the new fields to the end of the structure.
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300431 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300432typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300433struct __packed vmcs12 {
434 /* According to the Intel spec, a VMCS region must start with the
435 * following two fields. Then follow implementation-specific data.
436 */
Liran Alon392b2f22018-06-23 02:35:01 +0300437 struct vmcs_hdr hdr;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300438 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300439
Nadav Har'El27d6c862011-05-25 23:06:59 +0300440 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
441 u32 padding[7]; /* room for future expansion */
442
Nadav Har'El22bd0352011-05-25 23:05:57 +0300443 u64 io_bitmap_a;
444 u64 io_bitmap_b;
445 u64 msr_bitmap;
446 u64 vm_exit_msr_store_addr;
447 u64 vm_exit_msr_load_addr;
448 u64 vm_entry_msr_load_addr;
449 u64 tsc_offset;
450 u64 virtual_apic_page_addr;
451 u64 apic_access_addr;
Wincy Van705699a2015-02-03 23:58:17 +0800452 u64 posted_intr_desc_addr;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300453 u64 ept_pointer;
Wincy Van608406e2015-02-03 23:57:51 +0800454 u64 eoi_exit_bitmap0;
455 u64 eoi_exit_bitmap1;
456 u64 eoi_exit_bitmap2;
457 u64 eoi_exit_bitmap3;
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800458 u64 xss_exit_bitmap;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300459 u64 guest_physical_address;
460 u64 vmcs_link_pointer;
461 u64 guest_ia32_debugctl;
462 u64 guest_ia32_pat;
463 u64 guest_ia32_efer;
464 u64 guest_ia32_perf_global_ctrl;
465 u64 guest_pdptr0;
466 u64 guest_pdptr1;
467 u64 guest_pdptr2;
468 u64 guest_pdptr3;
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100469 u64 guest_bndcfgs;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300470 u64 host_ia32_pat;
471 u64 host_ia32_efer;
472 u64 host_ia32_perf_global_ctrl;
Jim Mattsonb348e792018-05-01 15:40:27 -0700473 u64 vmread_bitmap;
474 u64 vmwrite_bitmap;
475 u64 vm_function_control;
476 u64 eptp_list_address;
477 u64 pml_address;
478 u64 padding64[3]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300479 /*
480 * To allow migration of L1 (complete with its L2 guests) between
481 * machines of different natural widths (32 or 64 bit), we cannot have
482 * unsigned long fields with no explict size. We use u64 (aliased
483 * natural_width) instead. Luckily, x86 is little-endian.
484 */
485 natural_width cr0_guest_host_mask;
486 natural_width cr4_guest_host_mask;
487 natural_width cr0_read_shadow;
488 natural_width cr4_read_shadow;
489 natural_width cr3_target_value0;
490 natural_width cr3_target_value1;
491 natural_width cr3_target_value2;
492 natural_width cr3_target_value3;
493 natural_width exit_qualification;
494 natural_width guest_linear_address;
495 natural_width guest_cr0;
496 natural_width guest_cr3;
497 natural_width guest_cr4;
498 natural_width guest_es_base;
499 natural_width guest_cs_base;
500 natural_width guest_ss_base;
501 natural_width guest_ds_base;
502 natural_width guest_fs_base;
503 natural_width guest_gs_base;
504 natural_width guest_ldtr_base;
505 natural_width guest_tr_base;
506 natural_width guest_gdtr_base;
507 natural_width guest_idtr_base;
508 natural_width guest_dr7;
509 natural_width guest_rsp;
510 natural_width guest_rip;
511 natural_width guest_rflags;
512 natural_width guest_pending_dbg_exceptions;
513 natural_width guest_sysenter_esp;
514 natural_width guest_sysenter_eip;
515 natural_width host_cr0;
516 natural_width host_cr3;
517 natural_width host_cr4;
518 natural_width host_fs_base;
519 natural_width host_gs_base;
520 natural_width host_tr_base;
521 natural_width host_gdtr_base;
522 natural_width host_idtr_base;
523 natural_width host_ia32_sysenter_esp;
524 natural_width host_ia32_sysenter_eip;
525 natural_width host_rsp;
526 natural_width host_rip;
527 natural_width paddingl[8]; /* room for future expansion */
528 u32 pin_based_vm_exec_control;
529 u32 cpu_based_vm_exec_control;
530 u32 exception_bitmap;
531 u32 page_fault_error_code_mask;
532 u32 page_fault_error_code_match;
533 u32 cr3_target_count;
534 u32 vm_exit_controls;
535 u32 vm_exit_msr_store_count;
536 u32 vm_exit_msr_load_count;
537 u32 vm_entry_controls;
538 u32 vm_entry_msr_load_count;
539 u32 vm_entry_intr_info_field;
540 u32 vm_entry_exception_error_code;
541 u32 vm_entry_instruction_len;
542 u32 tpr_threshold;
543 u32 secondary_vm_exec_control;
544 u32 vm_instruction_error;
545 u32 vm_exit_reason;
546 u32 vm_exit_intr_info;
547 u32 vm_exit_intr_error_code;
548 u32 idt_vectoring_info_field;
549 u32 idt_vectoring_error_code;
550 u32 vm_exit_instruction_len;
551 u32 vmx_instruction_info;
552 u32 guest_es_limit;
553 u32 guest_cs_limit;
554 u32 guest_ss_limit;
555 u32 guest_ds_limit;
556 u32 guest_fs_limit;
557 u32 guest_gs_limit;
558 u32 guest_ldtr_limit;
559 u32 guest_tr_limit;
560 u32 guest_gdtr_limit;
561 u32 guest_idtr_limit;
562 u32 guest_es_ar_bytes;
563 u32 guest_cs_ar_bytes;
564 u32 guest_ss_ar_bytes;
565 u32 guest_ds_ar_bytes;
566 u32 guest_fs_ar_bytes;
567 u32 guest_gs_ar_bytes;
568 u32 guest_ldtr_ar_bytes;
569 u32 guest_tr_ar_bytes;
570 u32 guest_interruptibility_info;
571 u32 guest_activity_state;
572 u32 guest_sysenter_cs;
573 u32 host_ia32_sysenter_cs;
Jan Kiszka0238ea92013-03-13 11:31:24 +0100574 u32 vmx_preemption_timer_value;
575 u32 padding32[7]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300576 u16 virtual_processor_id;
Wincy Van705699a2015-02-03 23:58:17 +0800577 u16 posted_intr_nv;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300578 u16 guest_es_selector;
579 u16 guest_cs_selector;
580 u16 guest_ss_selector;
581 u16 guest_ds_selector;
582 u16 guest_fs_selector;
583 u16 guest_gs_selector;
584 u16 guest_ldtr_selector;
585 u16 guest_tr_selector;
Wincy Van608406e2015-02-03 23:57:51 +0800586 u16 guest_intr_status;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300587 u16 host_es_selector;
588 u16 host_cs_selector;
589 u16 host_ss_selector;
590 u16 host_ds_selector;
591 u16 host_fs_selector;
592 u16 host_gs_selector;
593 u16 host_tr_selector;
Jim Mattsonb348e792018-05-01 15:40:27 -0700594 u16 guest_pml_index;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300595};
596
597/*
Jim Mattson21ebf532018-05-01 15:40:28 -0700598 * For save/restore compatibility, the vmcs12 field offsets must not change.
599 */
600#define CHECK_OFFSET(field, loc) \
601 BUILD_BUG_ON_MSG(offsetof(struct vmcs12, field) != (loc), \
602 "Offset of " #field " in struct vmcs12 has changed.")
603
604static inline void vmx_check_vmcs12_offsets(void) {
Liran Alon392b2f22018-06-23 02:35:01 +0300605 CHECK_OFFSET(hdr, 0);
Jim Mattson21ebf532018-05-01 15:40:28 -0700606 CHECK_OFFSET(abort, 4);
607 CHECK_OFFSET(launch_state, 8);
608 CHECK_OFFSET(io_bitmap_a, 40);
609 CHECK_OFFSET(io_bitmap_b, 48);
610 CHECK_OFFSET(msr_bitmap, 56);
611 CHECK_OFFSET(vm_exit_msr_store_addr, 64);
612 CHECK_OFFSET(vm_exit_msr_load_addr, 72);
613 CHECK_OFFSET(vm_entry_msr_load_addr, 80);
614 CHECK_OFFSET(tsc_offset, 88);
615 CHECK_OFFSET(virtual_apic_page_addr, 96);
616 CHECK_OFFSET(apic_access_addr, 104);
617 CHECK_OFFSET(posted_intr_desc_addr, 112);
618 CHECK_OFFSET(ept_pointer, 120);
619 CHECK_OFFSET(eoi_exit_bitmap0, 128);
620 CHECK_OFFSET(eoi_exit_bitmap1, 136);
621 CHECK_OFFSET(eoi_exit_bitmap2, 144);
622 CHECK_OFFSET(eoi_exit_bitmap3, 152);
623 CHECK_OFFSET(xss_exit_bitmap, 160);
624 CHECK_OFFSET(guest_physical_address, 168);
625 CHECK_OFFSET(vmcs_link_pointer, 176);
626 CHECK_OFFSET(guest_ia32_debugctl, 184);
627 CHECK_OFFSET(guest_ia32_pat, 192);
628 CHECK_OFFSET(guest_ia32_efer, 200);
629 CHECK_OFFSET(guest_ia32_perf_global_ctrl, 208);
630 CHECK_OFFSET(guest_pdptr0, 216);
631 CHECK_OFFSET(guest_pdptr1, 224);
632 CHECK_OFFSET(guest_pdptr2, 232);
633 CHECK_OFFSET(guest_pdptr3, 240);
634 CHECK_OFFSET(guest_bndcfgs, 248);
635 CHECK_OFFSET(host_ia32_pat, 256);
636 CHECK_OFFSET(host_ia32_efer, 264);
637 CHECK_OFFSET(host_ia32_perf_global_ctrl, 272);
638 CHECK_OFFSET(vmread_bitmap, 280);
639 CHECK_OFFSET(vmwrite_bitmap, 288);
640 CHECK_OFFSET(vm_function_control, 296);
641 CHECK_OFFSET(eptp_list_address, 304);
642 CHECK_OFFSET(pml_address, 312);
643 CHECK_OFFSET(cr0_guest_host_mask, 344);
644 CHECK_OFFSET(cr4_guest_host_mask, 352);
645 CHECK_OFFSET(cr0_read_shadow, 360);
646 CHECK_OFFSET(cr4_read_shadow, 368);
647 CHECK_OFFSET(cr3_target_value0, 376);
648 CHECK_OFFSET(cr3_target_value1, 384);
649 CHECK_OFFSET(cr3_target_value2, 392);
650 CHECK_OFFSET(cr3_target_value3, 400);
651 CHECK_OFFSET(exit_qualification, 408);
652 CHECK_OFFSET(guest_linear_address, 416);
653 CHECK_OFFSET(guest_cr0, 424);
654 CHECK_OFFSET(guest_cr3, 432);
655 CHECK_OFFSET(guest_cr4, 440);
656 CHECK_OFFSET(guest_es_base, 448);
657 CHECK_OFFSET(guest_cs_base, 456);
658 CHECK_OFFSET(guest_ss_base, 464);
659 CHECK_OFFSET(guest_ds_base, 472);
660 CHECK_OFFSET(guest_fs_base, 480);
661 CHECK_OFFSET(guest_gs_base, 488);
662 CHECK_OFFSET(guest_ldtr_base, 496);
663 CHECK_OFFSET(guest_tr_base, 504);
664 CHECK_OFFSET(guest_gdtr_base, 512);
665 CHECK_OFFSET(guest_idtr_base, 520);
666 CHECK_OFFSET(guest_dr7, 528);
667 CHECK_OFFSET(guest_rsp, 536);
668 CHECK_OFFSET(guest_rip, 544);
669 CHECK_OFFSET(guest_rflags, 552);
670 CHECK_OFFSET(guest_pending_dbg_exceptions, 560);
671 CHECK_OFFSET(guest_sysenter_esp, 568);
672 CHECK_OFFSET(guest_sysenter_eip, 576);
673 CHECK_OFFSET(host_cr0, 584);
674 CHECK_OFFSET(host_cr3, 592);
675 CHECK_OFFSET(host_cr4, 600);
676 CHECK_OFFSET(host_fs_base, 608);
677 CHECK_OFFSET(host_gs_base, 616);
678 CHECK_OFFSET(host_tr_base, 624);
679 CHECK_OFFSET(host_gdtr_base, 632);
680 CHECK_OFFSET(host_idtr_base, 640);
681 CHECK_OFFSET(host_ia32_sysenter_esp, 648);
682 CHECK_OFFSET(host_ia32_sysenter_eip, 656);
683 CHECK_OFFSET(host_rsp, 664);
684 CHECK_OFFSET(host_rip, 672);
685 CHECK_OFFSET(pin_based_vm_exec_control, 744);
686 CHECK_OFFSET(cpu_based_vm_exec_control, 748);
687 CHECK_OFFSET(exception_bitmap, 752);
688 CHECK_OFFSET(page_fault_error_code_mask, 756);
689 CHECK_OFFSET(page_fault_error_code_match, 760);
690 CHECK_OFFSET(cr3_target_count, 764);
691 CHECK_OFFSET(vm_exit_controls, 768);
692 CHECK_OFFSET(vm_exit_msr_store_count, 772);
693 CHECK_OFFSET(vm_exit_msr_load_count, 776);
694 CHECK_OFFSET(vm_entry_controls, 780);
695 CHECK_OFFSET(vm_entry_msr_load_count, 784);
696 CHECK_OFFSET(vm_entry_intr_info_field, 788);
697 CHECK_OFFSET(vm_entry_exception_error_code, 792);
698 CHECK_OFFSET(vm_entry_instruction_len, 796);
699 CHECK_OFFSET(tpr_threshold, 800);
700 CHECK_OFFSET(secondary_vm_exec_control, 804);
701 CHECK_OFFSET(vm_instruction_error, 808);
702 CHECK_OFFSET(vm_exit_reason, 812);
703 CHECK_OFFSET(vm_exit_intr_info, 816);
704 CHECK_OFFSET(vm_exit_intr_error_code, 820);
705 CHECK_OFFSET(idt_vectoring_info_field, 824);
706 CHECK_OFFSET(idt_vectoring_error_code, 828);
707 CHECK_OFFSET(vm_exit_instruction_len, 832);
708 CHECK_OFFSET(vmx_instruction_info, 836);
709 CHECK_OFFSET(guest_es_limit, 840);
710 CHECK_OFFSET(guest_cs_limit, 844);
711 CHECK_OFFSET(guest_ss_limit, 848);
712 CHECK_OFFSET(guest_ds_limit, 852);
713 CHECK_OFFSET(guest_fs_limit, 856);
714 CHECK_OFFSET(guest_gs_limit, 860);
715 CHECK_OFFSET(guest_ldtr_limit, 864);
716 CHECK_OFFSET(guest_tr_limit, 868);
717 CHECK_OFFSET(guest_gdtr_limit, 872);
718 CHECK_OFFSET(guest_idtr_limit, 876);
719 CHECK_OFFSET(guest_es_ar_bytes, 880);
720 CHECK_OFFSET(guest_cs_ar_bytes, 884);
721 CHECK_OFFSET(guest_ss_ar_bytes, 888);
722 CHECK_OFFSET(guest_ds_ar_bytes, 892);
723 CHECK_OFFSET(guest_fs_ar_bytes, 896);
724 CHECK_OFFSET(guest_gs_ar_bytes, 900);
725 CHECK_OFFSET(guest_ldtr_ar_bytes, 904);
726 CHECK_OFFSET(guest_tr_ar_bytes, 908);
727 CHECK_OFFSET(guest_interruptibility_info, 912);
728 CHECK_OFFSET(guest_activity_state, 916);
729 CHECK_OFFSET(guest_sysenter_cs, 920);
730 CHECK_OFFSET(host_ia32_sysenter_cs, 924);
731 CHECK_OFFSET(vmx_preemption_timer_value, 928);
732 CHECK_OFFSET(virtual_processor_id, 960);
733 CHECK_OFFSET(posted_intr_nv, 962);
734 CHECK_OFFSET(guest_es_selector, 964);
735 CHECK_OFFSET(guest_cs_selector, 966);
736 CHECK_OFFSET(guest_ss_selector, 968);
737 CHECK_OFFSET(guest_ds_selector, 970);
738 CHECK_OFFSET(guest_fs_selector, 972);
739 CHECK_OFFSET(guest_gs_selector, 974);
740 CHECK_OFFSET(guest_ldtr_selector, 976);
741 CHECK_OFFSET(guest_tr_selector, 978);
742 CHECK_OFFSET(guest_intr_status, 980);
743 CHECK_OFFSET(host_es_selector, 982);
744 CHECK_OFFSET(host_cs_selector, 984);
745 CHECK_OFFSET(host_ss_selector, 986);
746 CHECK_OFFSET(host_ds_selector, 988);
747 CHECK_OFFSET(host_fs_selector, 990);
748 CHECK_OFFSET(host_gs_selector, 992);
749 CHECK_OFFSET(host_tr_selector, 994);
750 CHECK_OFFSET(guest_pml_index, 996);
751}
752
753/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300754 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
755 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
756 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
Jim Mattsonb348e792018-05-01 15:40:27 -0700757 *
758 * IMPORTANT: Changing this value will break save/restore compatibility with
759 * older kvm releases.
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300760 */
761#define VMCS12_REVISION 0x11e57ed0
762
763/*
764 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
765 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
766 * current implementation, 4K are reserved to avoid future complications.
767 */
768#define VMCS12_SIZE 0x1000
769
770/*
Jim Mattson5b157062017-12-22 12:11:12 -0800771 * VMCS12_MAX_FIELD_INDEX is the highest index value used in any
772 * supported VMCS12 field encoding.
773 */
774#define VMCS12_MAX_FIELD_INDEX 0x17
775
Paolo Bonzini6677f3d2018-02-26 13:40:08 +0100776struct nested_vmx_msrs {
777 /*
778 * We only store the "true" versions of the VMX capability MSRs. We
779 * generate the "non-true" versions by setting the must-be-1 bits
780 * according to the SDM.
781 */
782 u32 procbased_ctls_low;
783 u32 procbased_ctls_high;
784 u32 secondary_ctls_low;
785 u32 secondary_ctls_high;
786 u32 pinbased_ctls_low;
787 u32 pinbased_ctls_high;
788 u32 exit_ctls_low;
789 u32 exit_ctls_high;
790 u32 entry_ctls_low;
791 u32 entry_ctls_high;
792 u32 misc_low;
793 u32 misc_high;
794 u32 ept_caps;
795 u32 vpid_caps;
796 u64 basic;
797 u64 cr0_fixed0;
798 u64 cr0_fixed1;
799 u64 cr4_fixed0;
800 u64 cr4_fixed1;
801 u64 vmcs_enum;
802 u64 vmfunc_controls;
803};
804
Jim Mattson5b157062017-12-22 12:11:12 -0800805/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300806 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
807 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
808 */
809struct nested_vmx {
810 /* Has the level1 guest done vmxon? */
811 bool vmxon;
Bandan Das3573e222014-05-06 02:19:16 -0400812 gpa_t vmxon_ptr;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400813 bool pml_full;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300814
815 /* The guest-physical address of the current VMCS L1 keeps for L2 */
816 gpa_t current_vmptr;
David Matlack4f2777b2016-07-13 17:16:37 -0700817 /*
818 * Cache of the guest's VMCS, existing outside of guest memory.
819 * Loaded from guest memory during VMPTRLD. Flushed to guest
David Matlack8ca44e82017-08-01 14:00:39 -0700820 * memory during VMCLEAR and VMPTRLD.
David Matlack4f2777b2016-07-13 17:16:37 -0700821 */
822 struct vmcs12 *cached_vmcs12;
Abel Gordon012f83c2013-04-18 14:39:25 +0300823 /*
Liran Alon61ada742018-06-23 02:35:08 +0300824 * Cache of the guest's shadow VMCS, existing outside of guest
825 * memory. Loaded from guest memory during VM entry. Flushed
826 * to guest memory during VM exit.
827 */
828 struct vmcs12 *cached_shadow_vmcs12;
829 /*
Abel Gordon012f83c2013-04-18 14:39:25 +0300830 * Indicates if the shadow vmcs must be updated with the
831 * data hold by vmcs12
832 */
833 bool sync_shadow_vmcs;
Paolo Bonzini74a497f2017-12-20 13:55:39 +0100834 bool dirty_vmcs12;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300835
Jim Mattson8d860bb2018-05-09 16:56:05 -0400836 bool change_vmcs01_virtual_apic_mode;
837
Nadav Har'El644d7112011-05-25 23:12:35 +0300838 /* L2 must run next, and mustn't decide to exit to L1. */
839 bool nested_run_pending;
Jim Mattsonde3a0022017-11-27 17:22:25 -0600840
841 struct loaded_vmcs vmcs02;
842
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300843 /*
Jim Mattsonde3a0022017-11-27 17:22:25 -0600844 * Guest pages referred to in the vmcs02 with host-physical
845 * pointers, so we must keep them pinned while L2 runs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300846 */
847 struct page *apic_access_page;
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800848 struct page *virtual_apic_page;
Wincy Van705699a2015-02-03 23:58:17 +0800849 struct page *pi_desc_page;
850 struct pi_desc *pi_desc;
851 bool pi_pending;
852 u16 posted_intr_nv;
Jan Kiszkaf4124502014-03-07 20:03:13 +0100853
854 struct hrtimer preemption_timer;
855 bool preemption_timer_expired;
Jan Kiszka2996fca2014-06-16 13:59:43 +0200856
857 /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */
858 u64 vmcs01_debugctl;
Liran Alon62cf9bd812018-09-14 03:25:54 +0300859 u64 vmcs01_guest_bndcfgs;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800860
Wanpeng Li5c614b32015-10-13 09:18:36 -0700861 u16 vpid02;
862 u16 last_vpid;
863
Paolo Bonzini6677f3d2018-02-26 13:40:08 +0100864 struct nested_vmx_msrs msrs;
Ladi Prosek72e9cbd2017-10-11 16:54:43 +0200865
866 /* SMM related state */
867 struct {
868 /* in VMX operation on SMM entry? */
869 bool vmxon;
870 /* in guest mode on SMM entry? */
871 bool guest_mode;
872 } smm;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300873};
874
Yang Zhang01e439b2013-04-11 19:25:12 +0800875#define POSTED_INTR_ON 0
Feng Wuebbfc762015-09-18 22:29:46 +0800876#define POSTED_INTR_SN 1
877
Yang Zhang01e439b2013-04-11 19:25:12 +0800878/* Posted-Interrupt Descriptor */
879struct pi_desc {
880 u32 pir[8]; /* Posted interrupt requested */
Feng Wu6ef15222015-09-18 22:29:45 +0800881 union {
882 struct {
883 /* bit 256 - Outstanding Notification */
884 u16 on : 1,
885 /* bit 257 - Suppress Notification */
886 sn : 1,
887 /* bit 271:258 - Reserved */
888 rsvd_1 : 14;
889 /* bit 279:272 - Notification Vector */
890 u8 nv;
891 /* bit 287:280 - Reserved */
892 u8 rsvd_2;
893 /* bit 319:288 - Notification Destination */
894 u32 ndst;
895 };
896 u64 control;
897 };
898 u32 rsvd[6];
Yang Zhang01e439b2013-04-11 19:25:12 +0800899} __aligned(64);
900
Yang Zhanga20ed542013-04-11 19:25:15 +0800901static bool pi_test_and_set_on(struct pi_desc *pi_desc)
902{
903 return test_and_set_bit(POSTED_INTR_ON,
904 (unsigned long *)&pi_desc->control);
905}
906
907static bool pi_test_and_clear_on(struct pi_desc *pi_desc)
908{
909 return test_and_clear_bit(POSTED_INTR_ON,
910 (unsigned long *)&pi_desc->control);
911}
912
913static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc)
914{
915 return test_and_set_bit(vector, (unsigned long *)pi_desc->pir);
916}
917
Feng Wuebbfc762015-09-18 22:29:46 +0800918static inline void pi_clear_sn(struct pi_desc *pi_desc)
919{
920 return clear_bit(POSTED_INTR_SN,
921 (unsigned long *)&pi_desc->control);
922}
923
924static inline void pi_set_sn(struct pi_desc *pi_desc)
925{
926 return set_bit(POSTED_INTR_SN,
927 (unsigned long *)&pi_desc->control);
928}
929
Paolo Bonziniad361092016-09-20 16:15:05 +0200930static inline void pi_clear_on(struct pi_desc *pi_desc)
931{
932 clear_bit(POSTED_INTR_ON,
933 (unsigned long *)&pi_desc->control);
934}
935
Feng Wuebbfc762015-09-18 22:29:46 +0800936static inline int pi_test_on(struct pi_desc *pi_desc)
937{
938 return test_bit(POSTED_INTR_ON,
939 (unsigned long *)&pi_desc->control);
940}
941
942static inline int pi_test_sn(struct pi_desc *pi_desc)
943{
944 return test_bit(POSTED_INTR_SN,
945 (unsigned long *)&pi_desc->control);
946}
947
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400948struct vmx_msrs {
949 unsigned int nr;
950 struct vmx_msr_entry val[NR_AUTOLOAD_MSRS];
951};
952
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400953struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000954 struct kvm_vcpu vcpu;
Avi Kivity313dbd492008-07-17 18:04:30 +0300955 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300956 u8 fail;
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100957 u8 msr_bitmap_mode;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300958 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200959 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200960 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300961 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400962 int nmsrs;
963 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800964 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400965#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300966 u64 msr_host_kernel_gs_base;
967 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400968#endif
Ashok Raj15d45072018-02-01 22:59:43 +0100969
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +0100970 u64 arch_capabilities;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100971 u64 spec_ctrl;
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +0100972
Gleb Natapov2961e8762013-11-25 15:37:13 +0200973 u32 vm_entry_controls_shadow;
974 u32 vm_exit_controls_shadow;
Paolo Bonzini80154d72017-08-24 13:55:35 +0200975 u32 secondary_exec_control;
976
Nadav Har'Eld462b812011-05-24 15:26:10 +0300977 /*
978 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
979 * non-nested (L1) guest, it always points to vmcs01. For a nested
Sean Christophersonbd9966d2018-07-23 12:32:42 -0700980 * guest (L2), it points to a different VMCS. loaded_cpu_state points
981 * to the VMCS whose state is loaded into the CPU registers that only
982 * need to be switched when transitioning to/from the kernel; a NULL
983 * value indicates that host state is loaded.
Nadav Har'Eld462b812011-05-24 15:26:10 +0300984 */
985 struct loaded_vmcs vmcs01;
986 struct loaded_vmcs *loaded_vmcs;
Sean Christophersonbd9966d2018-07-23 12:32:42 -0700987 struct loaded_vmcs *loaded_cpu_state;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300988 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300989 struct msr_autoload {
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -0400990 struct vmx_msrs guest;
991 struct vmx_msrs host;
Avi Kivity61d2ef22010-04-28 16:40:38 +0300992 } msr_autoload;
Sean Christophersonbd9966d2018-07-23 12:32:42 -0700993
Avi Kivity9c8cba32007-11-22 11:42:59 +0200994 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300995 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300996 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300997 struct kvm_segment segs[8];
998 } rmode;
999 struct {
1000 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001001 struct kvm_save_segment {
1002 u16 selector;
1003 unsigned long base;
1004 u32 limit;
1005 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03001006 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +03001007 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001008 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +03001009 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02001010
Andi Kleena0861c02009-06-08 17:37:09 +08001011 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001012
Yang Zhang01e439b2013-04-11 19:25:12 +08001013 /* Posted interrupt descriptor */
1014 struct pi_desc pi_desc;
1015
Nadav Har'Elec378ae2011-05-25 23:02:54 +03001016 /* Support for a guest hypervisor (nested VMX) */
1017 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +02001018
1019 /* Dynamic PLE window. */
1020 int ple_window;
1021 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +08001022
Sean Christophersond264ee02018-08-27 15:21:12 -07001023 bool req_immediate_exit;
1024
Kai Huang843e4332015-01-28 10:54:28 +08001025 /* Support for PML */
1026#define PML_ENTITY_NUM 512
1027 struct page *pml_pg;
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001028
Yunhong Jiang64672c92016-06-13 14:19:59 -07001029 /* apic deadline value in host tsc */
1030 u64 hv_deadline_tsc;
1031
Owen Hofmann2680d6d2016-03-01 13:36:13 -08001032 u64 current_tsc_ratio;
Xiao Guangrong1be0e612016-03-22 16:51:18 +08001033
Xiao Guangrong1be0e612016-03-22 16:51:18 +08001034 u32 host_pkru;
Haozhong Zhang3b840802016-06-22 14:59:54 +08001035
Wanpeng Li74c55932017-11-29 01:31:20 -08001036 unsigned long host_debugctlmsr;
1037
Haozhong Zhang37e4c992016-06-22 14:59:55 +08001038 /*
1039 * Only bits masked by msr_ia32_feature_control_valid_bits can be set in
1040 * msr_ia32_feature_control. FEATURE_CONTROL_LOCKED is always included
1041 * in msr_ia32_feature_control_valid_bits.
1042 */
Haozhong Zhang3b840802016-06-22 14:59:54 +08001043 u64 msr_ia32_feature_control;
Haozhong Zhang37e4c992016-06-22 14:59:55 +08001044 u64 msr_ia32_feature_control_valid_bits;
Tianyu Lan877ad952018-07-19 08:40:23 +00001045 u64 ept_pointer;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001046};
1047
Avi Kivity2fb92db2011-04-27 19:42:18 +03001048enum segment_cache_field {
1049 SEG_FIELD_SEL = 0,
1050 SEG_FIELD_BASE = 1,
1051 SEG_FIELD_LIMIT = 2,
1052 SEG_FIELD_AR = 3,
1053
1054 SEG_FIELD_NR = 4
1055};
1056
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07001057static inline struct kvm_vmx *to_kvm_vmx(struct kvm *kvm)
1058{
1059 return container_of(kvm, struct kvm_vmx, kvm);
1060}
1061
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001062static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
1063{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001064 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001065}
1066
Feng Wuefc64402015-09-18 22:29:51 +08001067static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
1068{
1069 return &(to_vmx(vcpu)->pi_desc);
1070}
1071
Jim Mattson58e9ffa2017-12-22 12:13:13 -08001072#define ROL16(val, n) ((u16)(((u16)(val) << (n)) | ((u16)(val) >> (16 - (n)))))
Nadav Har'El22bd0352011-05-25 23:05:57 +03001073#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
Jim Mattson58e9ffa2017-12-22 12:13:13 -08001074#define FIELD(number, name) [ROL16(number, 6)] = VMCS12_OFFSET(name)
1075#define FIELD64(number, name) \
1076 FIELD(number, name), \
1077 [ROL16(number##_HIGH, 6)] = VMCS12_OFFSET(name) + sizeof(u32)
Nadav Har'El22bd0352011-05-25 23:05:57 +03001078
Abel Gordon4607c2d2013-04-18 14:35:55 +03001079
Paolo Bonzini44900ba2017-12-13 12:58:02 +01001080static u16 shadow_read_only_fields[] = {
Paolo Bonzinic9e9dea2017-12-20 13:16:29 +01001081#define SHADOW_FIELD_RO(x) x,
1082#include "vmx_shadow_fields.h"
Abel Gordon4607c2d2013-04-18 14:35:55 +03001083};
Bandan Dasfe2b2012014-04-21 15:20:14 -04001084static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +03001085 ARRAY_SIZE(shadow_read_only_fields);
1086
Paolo Bonzini44900ba2017-12-13 12:58:02 +01001087static u16 shadow_read_write_fields[] = {
Paolo Bonzinic9e9dea2017-12-20 13:16:29 +01001088#define SHADOW_FIELD_RW(x) x,
1089#include "vmx_shadow_fields.h"
Abel Gordon4607c2d2013-04-18 14:35:55 +03001090};
Bandan Dasfe2b2012014-04-21 15:20:14 -04001091static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +03001092 ARRAY_SIZE(shadow_read_write_fields);
1093
Mathias Krause772e0312012-08-30 01:30:19 +02001094static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +03001095 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +08001096 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001097 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
1098 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
1099 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
1100 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
1101 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
1102 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
1103 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
1104 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +08001105 FIELD(GUEST_INTR_STATUS, guest_intr_status),
Bandan Dasc5f983f2017-05-05 15:25:14 -04001106 FIELD(GUEST_PML_INDEX, guest_pml_index),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001107 FIELD(HOST_ES_SELECTOR, host_es_selector),
1108 FIELD(HOST_CS_SELECTOR, host_cs_selector),
1109 FIELD(HOST_SS_SELECTOR, host_ss_selector),
1110 FIELD(HOST_DS_SELECTOR, host_ds_selector),
1111 FIELD(HOST_FS_SELECTOR, host_fs_selector),
1112 FIELD(HOST_GS_SELECTOR, host_gs_selector),
1113 FIELD(HOST_TR_SELECTOR, host_tr_selector),
1114 FIELD64(IO_BITMAP_A, io_bitmap_a),
1115 FIELD64(IO_BITMAP_B, io_bitmap_b),
1116 FIELD64(MSR_BITMAP, msr_bitmap),
1117 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
1118 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
1119 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
Jim Mattsonb348e792018-05-01 15:40:27 -07001120 FIELD64(PML_ADDRESS, pml_address),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001121 FIELD64(TSC_OFFSET, tsc_offset),
1122 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
1123 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
Wincy Van705699a2015-02-03 23:58:17 +08001124 FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr),
Bandan Das27c42a12017-08-03 15:54:42 -04001125 FIELD64(VM_FUNCTION_CONTROL, vm_function_control),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001126 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +08001127 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
1128 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
1129 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
1130 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Bandan Das41ab9372017-08-03 15:54:43 -04001131 FIELD64(EPTP_LIST_ADDRESS, eptp_list_address),
Jim Mattsonb348e792018-05-01 15:40:27 -07001132 FIELD64(VMREAD_BITMAP, vmread_bitmap),
1133 FIELD64(VMWRITE_BITMAP, vmwrite_bitmap),
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001134 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001135 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
1136 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
1137 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
1138 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
1139 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
1140 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
1141 FIELD64(GUEST_PDPTR0, guest_pdptr0),
1142 FIELD64(GUEST_PDPTR1, guest_pdptr1),
1143 FIELD64(GUEST_PDPTR2, guest_pdptr2),
1144 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +01001145 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001146 FIELD64(HOST_IA32_PAT, host_ia32_pat),
1147 FIELD64(HOST_IA32_EFER, host_ia32_efer),
1148 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
1149 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
1150 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
1151 FIELD(EXCEPTION_BITMAP, exception_bitmap),
1152 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
1153 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
1154 FIELD(CR3_TARGET_COUNT, cr3_target_count),
1155 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
1156 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
1157 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
1158 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
1159 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
1160 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
1161 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
1162 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
1163 FIELD(TPR_THRESHOLD, tpr_threshold),
1164 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
1165 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
1166 FIELD(VM_EXIT_REASON, vm_exit_reason),
1167 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
1168 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
1169 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
1170 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
1171 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
1172 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
1173 FIELD(GUEST_ES_LIMIT, guest_es_limit),
1174 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
1175 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
1176 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
1177 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
1178 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
1179 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
1180 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
1181 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
1182 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
1183 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
1184 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
1185 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
1186 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
1187 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
1188 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
1189 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
1190 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
1191 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
1192 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
1193 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
1194 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +01001195 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +03001196 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
1197 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
1198 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
1199 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
1200 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
1201 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
1202 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
1203 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
1204 FIELD(EXIT_QUALIFICATION, exit_qualification),
1205 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
1206 FIELD(GUEST_CR0, guest_cr0),
1207 FIELD(GUEST_CR3, guest_cr3),
1208 FIELD(GUEST_CR4, guest_cr4),
1209 FIELD(GUEST_ES_BASE, guest_es_base),
1210 FIELD(GUEST_CS_BASE, guest_cs_base),
1211 FIELD(GUEST_SS_BASE, guest_ss_base),
1212 FIELD(GUEST_DS_BASE, guest_ds_base),
1213 FIELD(GUEST_FS_BASE, guest_fs_base),
1214 FIELD(GUEST_GS_BASE, guest_gs_base),
1215 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
1216 FIELD(GUEST_TR_BASE, guest_tr_base),
1217 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
1218 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
1219 FIELD(GUEST_DR7, guest_dr7),
1220 FIELD(GUEST_RSP, guest_rsp),
1221 FIELD(GUEST_RIP, guest_rip),
1222 FIELD(GUEST_RFLAGS, guest_rflags),
1223 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
1224 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
1225 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
1226 FIELD(HOST_CR0, host_cr0),
1227 FIELD(HOST_CR3, host_cr3),
1228 FIELD(HOST_CR4, host_cr4),
1229 FIELD(HOST_FS_BASE, host_fs_base),
1230 FIELD(HOST_GS_BASE, host_gs_base),
1231 FIELD(HOST_TR_BASE, host_tr_base),
1232 FIELD(HOST_GDTR_BASE, host_gdtr_base),
1233 FIELD(HOST_IDTR_BASE, host_idtr_base),
1234 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
1235 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
1236 FIELD(HOST_RSP, host_rsp),
1237 FIELD(HOST_RIP, host_rip),
1238};
Nadav Har'El22bd0352011-05-25 23:05:57 +03001239
1240static inline short vmcs_field_to_offset(unsigned long field)
1241{
Dan Williams085331d2018-01-31 17:47:03 -08001242 const size_t size = ARRAY_SIZE(vmcs_field_to_offset_table);
1243 unsigned short offset;
Jim Mattson58e9ffa2017-12-22 12:13:13 -08001244 unsigned index;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01001245
Jim Mattson58e9ffa2017-12-22 12:13:13 -08001246 if (field >> 15)
Andrew Honig75f139a2018-01-10 10:12:03 -08001247 return -ENOENT;
1248
Jim Mattson58e9ffa2017-12-22 12:13:13 -08001249 index = ROL16(field, 6);
Linus Torvalds15303ba2018-02-10 13:16:35 -08001250 if (index >= size)
Andrew Honig75f139a2018-01-10 10:12:03 -08001251 return -ENOENT;
1252
Linus Torvalds15303ba2018-02-10 13:16:35 -08001253 index = array_index_nospec(index, size);
1254 offset = vmcs_field_to_offset_table[index];
Dan Williams085331d2018-01-31 17:47:03 -08001255 if (offset == 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01001256 return -ENOENT;
Dan Williams085331d2018-01-31 17:47:03 -08001257 return offset;
Nadav Har'El22bd0352011-05-25 23:05:57 +03001258}
1259
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03001260static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
1261{
David Matlack4f2777b2016-07-13 17:16:37 -07001262 return to_vmx(vcpu)->nested.cached_vmcs12;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03001263}
1264
Liran Alon61ada742018-06-23 02:35:08 +03001265static inline struct vmcs12 *get_shadow_vmcs12(struct kvm_vcpu *vcpu)
1266{
1267 return to_vmx(vcpu)->nested.cached_shadow_vmcs12;
1268}
1269
Peter Feiner995f00a2017-06-30 17:26:32 -07001270static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03001271static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Peter Feiner995f00a2017-06-30 17:26:32 -07001272static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa);
Wanpeng Lif53cd632014-12-02 19:14:58 +08001273static bool vmx_xsaves_supported(void);
Orit Wassermanb246dd52012-05-31 14:49:22 +03001274static void vmx_set_segment(struct kvm_vcpu *vcpu,
1275 struct kvm_segment *var, int seg);
1276static void vmx_get_segment(struct kvm_vcpu *vcpu,
1277 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +02001278static bool guest_state_valid(struct kvm_vcpu *vcpu);
1279static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordon16f5b902013-04-18 14:38:25 +03001280static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Paolo Bonzinib96fb432017-07-27 12:29:32 +02001281static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu);
1282static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked);
1283static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
1284 u16 error_code);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01001285static void vmx_update_msr_bitmap(struct kvm_vcpu *vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +01001286static void __always_inline vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
1287 u32 msr, int type);
Avi Kivity75880a02007-06-20 11:20:04 +03001288
Avi Kivity6aa8b732006-12-10 02:21:36 -08001289static DEFINE_PER_CPU(struct vmcs *, vmxarea);
1290static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001291/*
1292 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
1293 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
1294 */
1295static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001296
Feng Wubf9f6ac2015-09-18 22:29:55 +08001297/*
1298 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
1299 * can find which vCPU should be waken up.
1300 */
1301static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
1302static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
1303
Radim Krčmář23611332016-09-29 22:41:33 +02001304enum {
Radim Krčmář23611332016-09-29 22:41:33 +02001305 VMX_VMREAD_BITMAP,
1306 VMX_VMWRITE_BITMAP,
1307 VMX_BITMAP_NR
1308};
1309
1310static unsigned long *vmx_bitmap[VMX_BITMAP_NR];
1311
Radim Krčmář23611332016-09-29 22:41:33 +02001312#define vmx_vmread_bitmap (vmx_bitmap[VMX_VMREAD_BITMAP])
1313#define vmx_vmwrite_bitmap (vmx_bitmap[VMX_VMWRITE_BITMAP])
He, Qingfdef3ad2007-04-30 09:45:24 +03001314
Avi Kivity110312c2010-12-21 12:54:20 +02001315static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001316static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +02001317
Sheng Yang2384d2b2008-01-17 15:14:33 +08001318static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
1319static DEFINE_SPINLOCK(vmx_vpid_lock);
1320
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001321static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001322 int size;
1323 int order;
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03001324 u32 basic_cap;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001325 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001326 u32 pin_based_exec_ctrl;
1327 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001328 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001329 u32 vmexit_ctrl;
1330 u32 vmentry_ctrl;
Paolo Bonzini13893092018-02-26 13:40:09 +01001331 struct nested_vmx_msrs nested;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001332} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001333
Hannes Ederefff9e52008-11-28 17:02:06 +01001334static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +08001335 u32 ept;
1336 u32 vpid;
1337} vmx_capability;
1338
Avi Kivity6aa8b732006-12-10 02:21:36 -08001339#define VMX_SEGMENT_FIELD(seg) \
1340 [VCPU_SREG_##seg] = { \
1341 .selector = GUEST_##seg##_SELECTOR, \
1342 .base = GUEST_##seg##_BASE, \
1343 .limit = GUEST_##seg##_LIMIT, \
1344 .ar_bytes = GUEST_##seg##_AR_BYTES, \
1345 }
1346
Mathias Krause772e0312012-08-30 01:30:19 +02001347static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001348 unsigned selector;
1349 unsigned base;
1350 unsigned limit;
1351 unsigned ar_bytes;
1352} kvm_vmx_segment_fields[] = {
1353 VMX_SEGMENT_FIELD(CS),
1354 VMX_SEGMENT_FIELD(DS),
1355 VMX_SEGMENT_FIELD(ES),
1356 VMX_SEGMENT_FIELD(FS),
1357 VMX_SEGMENT_FIELD(GS),
1358 VMX_SEGMENT_FIELD(SS),
1359 VMX_SEGMENT_FIELD(TR),
1360 VMX_SEGMENT_FIELD(LDTR),
1361};
1362
Avi Kivity26bb0982009-09-07 11:14:12 +03001363static u64 host_efer;
1364
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001365static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
1366
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001367/*
Brian Gerst8c065852010-07-17 09:03:26 -04001368 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001369 * away by decrementing the array size.
1370 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001371static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001372#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +03001373 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001374#endif
Brian Gerst8c065852010-07-17 09:03:26 -04001375 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001376};
Avi Kivity6aa8b732006-12-10 02:21:36 -08001377
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001378DEFINE_STATIC_KEY_FALSE(enable_evmcs);
1379
1380#define current_evmcs ((struct hv_enlightened_vmcs *)this_cpu_read(current_vmcs))
1381
1382#define KVM_EVMCS_VERSION 1
1383
1384#if IS_ENABLED(CONFIG_HYPERV)
1385static bool __read_mostly enlightened_vmcs = true;
1386module_param(enlightened_vmcs, bool, 0444);
1387
1388static inline void evmcs_write64(unsigned long field, u64 value)
1389{
1390 u16 clean_field;
1391 int offset = get_evmcs_offset(field, &clean_field);
1392
1393 if (offset < 0)
1394 return;
1395
1396 *(u64 *)((char *)current_evmcs + offset) = value;
1397
1398 current_evmcs->hv_clean_fields &= ~clean_field;
1399}
1400
1401static inline void evmcs_write32(unsigned long field, u32 value)
1402{
1403 u16 clean_field;
1404 int offset = get_evmcs_offset(field, &clean_field);
1405
1406 if (offset < 0)
1407 return;
1408
1409 *(u32 *)((char *)current_evmcs + offset) = value;
1410 current_evmcs->hv_clean_fields &= ~clean_field;
1411}
1412
1413static inline void evmcs_write16(unsigned long field, u16 value)
1414{
1415 u16 clean_field;
1416 int offset = get_evmcs_offset(field, &clean_field);
1417
1418 if (offset < 0)
1419 return;
1420
1421 *(u16 *)((char *)current_evmcs + offset) = value;
1422 current_evmcs->hv_clean_fields &= ~clean_field;
1423}
1424
1425static inline u64 evmcs_read64(unsigned long field)
1426{
1427 int offset = get_evmcs_offset(field, NULL);
1428
1429 if (offset < 0)
1430 return 0;
1431
1432 return *(u64 *)((char *)current_evmcs + offset);
1433}
1434
1435static inline u32 evmcs_read32(unsigned long field)
1436{
1437 int offset = get_evmcs_offset(field, NULL);
1438
1439 if (offset < 0)
1440 return 0;
1441
1442 return *(u32 *)((char *)current_evmcs + offset);
1443}
1444
1445static inline u16 evmcs_read16(unsigned long field)
1446{
1447 int offset = get_evmcs_offset(field, NULL);
1448
1449 if (offset < 0)
1450 return 0;
1451
1452 return *(u16 *)((char *)current_evmcs + offset);
1453}
1454
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02001455static inline void evmcs_touch_msr_bitmap(void)
1456{
1457 if (unlikely(!current_evmcs))
1458 return;
1459
1460 if (current_evmcs->hv_enlightenments_control.msr_bitmap)
1461 current_evmcs->hv_clean_fields &=
1462 ~HV_VMX_ENLIGHTENED_CLEAN_FIELD_MSR_BITMAP;
1463}
1464
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001465static void evmcs_load(u64 phys_addr)
1466{
1467 struct hv_vp_assist_page *vp_ap =
1468 hv_get_vp_assist_page(smp_processor_id());
1469
1470 vp_ap->current_nested_vmcs = phys_addr;
1471 vp_ap->enlighten_vmentry = 1;
1472}
1473
1474static void evmcs_sanitize_exec_ctrls(struct vmcs_config *vmcs_conf)
1475{
1476 /*
1477 * Enlightened VMCSv1 doesn't support these:
1478 *
1479 * POSTED_INTR_NV = 0x00000002,
1480 * GUEST_INTR_STATUS = 0x00000810,
1481 * APIC_ACCESS_ADDR = 0x00002014,
1482 * POSTED_INTR_DESC_ADDR = 0x00002016,
1483 * EOI_EXIT_BITMAP0 = 0x0000201c,
1484 * EOI_EXIT_BITMAP1 = 0x0000201e,
1485 * EOI_EXIT_BITMAP2 = 0x00002020,
1486 * EOI_EXIT_BITMAP3 = 0x00002022,
1487 */
1488 vmcs_conf->pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
1489 vmcs_conf->cpu_based_2nd_exec_ctrl &=
1490 ~SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1491 vmcs_conf->cpu_based_2nd_exec_ctrl &=
1492 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1493 vmcs_conf->cpu_based_2nd_exec_ctrl &=
1494 ~SECONDARY_EXEC_APIC_REGISTER_VIRT;
1495
1496 /*
1497 * GUEST_PML_INDEX = 0x00000812,
1498 * PML_ADDRESS = 0x0000200e,
1499 */
1500 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_ENABLE_PML;
1501
1502 /* VM_FUNCTION_CONTROL = 0x00002018, */
1503 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_ENABLE_VMFUNC;
1504
1505 /*
1506 * EPTP_LIST_ADDRESS = 0x00002024,
1507 * VMREAD_BITMAP = 0x00002026,
1508 * VMWRITE_BITMAP = 0x00002028,
1509 */
1510 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_SHADOW_VMCS;
1511
1512 /*
1513 * TSC_MULTIPLIER = 0x00002032,
1514 */
1515 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_TSC_SCALING;
1516
1517 /*
1518 * PLE_GAP = 0x00004020,
1519 * PLE_WINDOW = 0x00004022,
1520 */
1521 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1522
1523 /*
1524 * VMX_PREEMPTION_TIMER_VALUE = 0x0000482E,
1525 */
1526 vmcs_conf->pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
1527
1528 /*
1529 * GUEST_IA32_PERF_GLOBAL_CTRL = 0x00002808,
1530 * HOST_IA32_PERF_GLOBAL_CTRL = 0x00002c04,
1531 */
1532 vmcs_conf->vmexit_ctrl &= ~VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL;
1533 vmcs_conf->vmentry_ctrl &= ~VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL;
1534
1535 /*
1536 * Currently unsupported in KVM:
1537 * GUEST_IA32_RTIT_CTL = 0x00002814,
1538 */
1539}
Tianyu Lan877ad952018-07-19 08:40:23 +00001540
1541/* check_ept_pointer() should be under protection of ept_pointer_lock. */
1542static void check_ept_pointer_match(struct kvm *kvm)
1543{
1544 struct kvm_vcpu *vcpu;
1545 u64 tmp_eptp = INVALID_PAGE;
1546 int i;
1547
1548 kvm_for_each_vcpu(i, vcpu, kvm) {
1549 if (!VALID_PAGE(tmp_eptp)) {
1550 tmp_eptp = to_vmx(vcpu)->ept_pointer;
1551 } else if (tmp_eptp != to_vmx(vcpu)->ept_pointer) {
1552 to_kvm_vmx(kvm)->ept_pointers_match
1553 = EPT_POINTERS_MISMATCH;
1554 return;
1555 }
1556 }
1557
1558 to_kvm_vmx(kvm)->ept_pointers_match = EPT_POINTERS_MATCH;
1559}
1560
1561static int vmx_hv_remote_flush_tlb(struct kvm *kvm)
1562{
1563 int ret;
1564
1565 spin_lock(&to_kvm_vmx(kvm)->ept_pointer_lock);
1566
1567 if (to_kvm_vmx(kvm)->ept_pointers_match == EPT_POINTERS_CHECK)
1568 check_ept_pointer_match(kvm);
1569
1570 if (to_kvm_vmx(kvm)->ept_pointers_match != EPT_POINTERS_MATCH) {
1571 ret = -ENOTSUPP;
1572 goto out;
1573 }
1574
1575 ret = hyperv_flush_guest_mapping(
1576 to_vmx(kvm_get_vcpu(kvm, 0))->ept_pointer);
1577
1578out:
1579 spin_unlock(&to_kvm_vmx(kvm)->ept_pointer_lock);
1580 return ret;
1581}
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001582#else /* !IS_ENABLED(CONFIG_HYPERV) */
1583static inline void evmcs_write64(unsigned long field, u64 value) {}
1584static inline void evmcs_write32(unsigned long field, u32 value) {}
1585static inline void evmcs_write16(unsigned long field, u16 value) {}
1586static inline u64 evmcs_read64(unsigned long field) { return 0; }
1587static inline u32 evmcs_read32(unsigned long field) { return 0; }
1588static inline u16 evmcs_read16(unsigned long field) { return 0; }
1589static inline void evmcs_load(u64 phys_addr) {}
1590static inline void evmcs_sanitize_exec_ctrls(struct vmcs_config *vmcs_conf) {}
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02001591static inline void evmcs_touch_msr_bitmap(void) {}
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001592#endif /* IS_ENABLED(CONFIG_HYPERV) */
1593
Jan Kiszka5bb16012016-02-09 20:14:21 +01001594static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001595{
1596 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1597 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +01001598 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
1599}
1600
Jan Kiszka6f054852016-02-09 20:15:18 +01001601static inline bool is_debug(u32 intr_info)
1602{
1603 return is_exception_n(intr_info, DB_VECTOR);
1604}
1605
1606static inline bool is_breakpoint(u32 intr_info)
1607{
1608 return is_exception_n(intr_info, BP_VECTOR);
1609}
1610
Jan Kiszka5bb16012016-02-09 20:14:21 +01001611static inline bool is_page_fault(u32 intr_info)
1612{
1613 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001614}
1615
Gui Jianfeng31299942010-03-15 17:29:09 +08001616static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001617{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001618 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001619}
1620
Gui Jianfeng31299942010-03-15 17:29:09 +08001621static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001622{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001623 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001624}
1625
Liran Alon9e869482018-03-12 13:12:51 +02001626static inline bool is_gp_fault(u32 intr_info)
1627{
1628 return is_exception_n(intr_info, GP_VECTOR);
1629}
1630
Gui Jianfeng31299942010-03-15 17:29:09 +08001631static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001632{
1633 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1634 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1635}
1636
Gui Jianfeng31299942010-03-15 17:29:09 +08001637static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001638{
1639 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1640 INTR_INFO_VALID_MASK)) ==
1641 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1642}
1643
Linus Torvalds32d43cd2018-03-20 12:16:59 -07001644/* Undocumented: icebp/int1 */
1645static inline bool is_icebp(u32 intr_info)
1646{
1647 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1648 == (INTR_TYPE_PRIV_SW_EXCEPTION | INTR_INFO_VALID_MASK);
1649}
1650
Gui Jianfeng31299942010-03-15 17:29:09 +08001651static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001652{
Sheng Yang04547152009-04-01 15:52:31 +08001653 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001654}
1655
Gui Jianfeng31299942010-03-15 17:29:09 +08001656static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001657{
Sheng Yang04547152009-04-01 15:52:31 +08001658 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001659}
1660
Paolo Bonzini35754c92015-07-29 12:05:37 +02001661static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001662{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001663 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001664}
1665
Gui Jianfeng31299942010-03-15 17:29:09 +08001666static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001667{
Sheng Yang04547152009-04-01 15:52:31 +08001668 return vmcs_config.cpu_based_exec_ctrl &
1669 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001670}
1671
Avi Kivity774ead32007-12-26 13:57:04 +02001672static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001673{
Sheng Yang04547152009-04-01 15:52:31 +08001674 return vmcs_config.cpu_based_2nd_exec_ctrl &
1675 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1676}
1677
Yang Zhang8d146952013-01-25 10:18:50 +08001678static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1679{
1680 return vmcs_config.cpu_based_2nd_exec_ctrl &
1681 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1682}
1683
Yang Zhang83d4c282013-01-25 10:18:49 +08001684static inline bool cpu_has_vmx_apic_register_virt(void)
1685{
1686 return vmcs_config.cpu_based_2nd_exec_ctrl &
1687 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1688}
1689
Yang Zhangc7c9c562013-01-25 10:18:51 +08001690static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1691{
1692 return vmcs_config.cpu_based_2nd_exec_ctrl &
1693 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1694}
1695
Sean Christopherson0b665d32018-08-14 09:33:34 -07001696static inline bool cpu_has_vmx_encls_vmexit(void)
1697{
1698 return vmcs_config.cpu_based_2nd_exec_ctrl &
1699 SECONDARY_EXEC_ENCLS_EXITING;
1700}
1701
Yunhong Jiang64672c92016-06-13 14:19:59 -07001702/*
1703 * Comment's format: document - errata name - stepping - processor name.
1704 * Refer from
1705 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
1706 */
1707static u32 vmx_preemption_cpu_tfms[] = {
1708/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
17090x000206E6,
1710/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
1711/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
1712/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
17130x00020652,
1714/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
17150x00020655,
1716/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
1717/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
1718/*
1719 * 320767.pdf - AAP86 - B1 -
1720 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
1721 */
17220x000106E5,
1723/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
17240x000106A0,
1725/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
17260x000106A1,
1727/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
17280x000106A4,
1729 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
1730 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
1731 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
17320x000106A5,
1733};
1734
1735static inline bool cpu_has_broken_vmx_preemption_timer(void)
1736{
1737 u32 eax = cpuid_eax(0x00000001), i;
1738
1739 /* Clear the reserved bits */
1740 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +00001741 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -07001742 if (eax == vmx_preemption_cpu_tfms[i])
1743 return true;
1744
1745 return false;
1746}
1747
1748static inline bool cpu_has_vmx_preemption_timer(void)
1749{
Yunhong Jiang64672c92016-06-13 14:19:59 -07001750 return vmcs_config.pin_based_exec_ctrl &
1751 PIN_BASED_VMX_PREEMPTION_TIMER;
1752}
1753
Yang Zhang01e439b2013-04-11 19:25:12 +08001754static inline bool cpu_has_vmx_posted_intr(void)
1755{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001756 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1757 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001758}
1759
1760static inline bool cpu_has_vmx_apicv(void)
1761{
1762 return cpu_has_vmx_apic_register_virt() &&
1763 cpu_has_vmx_virtual_intr_delivery() &&
1764 cpu_has_vmx_posted_intr();
1765}
1766
Sheng Yang04547152009-04-01 15:52:31 +08001767static inline bool cpu_has_vmx_flexpriority(void)
1768{
1769 return cpu_has_vmx_tpr_shadow() &&
1770 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001771}
1772
Marcelo Tosattie7997942009-06-11 12:07:40 -03001773static inline bool cpu_has_vmx_ept_execute_only(void)
1774{
Gui Jianfeng31299942010-03-15 17:29:09 +08001775 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001776}
1777
Marcelo Tosattie7997942009-06-11 12:07:40 -03001778static inline bool cpu_has_vmx_ept_2m_page(void)
1779{
Gui Jianfeng31299942010-03-15 17:29:09 +08001780 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001781}
1782
Sheng Yang878403b2010-01-05 19:02:29 +08001783static inline bool cpu_has_vmx_ept_1g_page(void)
1784{
Gui Jianfeng31299942010-03-15 17:29:09 +08001785 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001786}
1787
Sheng Yang4bc9b982010-06-02 14:05:24 +08001788static inline bool cpu_has_vmx_ept_4levels(void)
1789{
1790 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1791}
1792
David Hildenbrand42aa53b2017-08-10 23:15:29 +02001793static inline bool cpu_has_vmx_ept_mt_wb(void)
1794{
1795 return vmx_capability.ept & VMX_EPTP_WB_BIT;
1796}
1797
Yu Zhang855feb62017-08-24 20:27:55 +08001798static inline bool cpu_has_vmx_ept_5levels(void)
1799{
1800 return vmx_capability.ept & VMX_EPT_PAGE_WALK_5_BIT;
1801}
1802
Xudong Hao83c3a332012-05-28 19:33:35 +08001803static inline bool cpu_has_vmx_ept_ad_bits(void)
1804{
1805 return vmx_capability.ept & VMX_EPT_AD_BIT;
1806}
1807
Gui Jianfeng31299942010-03-15 17:29:09 +08001808static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001809{
Gui Jianfeng31299942010-03-15 17:29:09 +08001810 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001811}
1812
Gui Jianfeng31299942010-03-15 17:29:09 +08001813static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001814{
Gui Jianfeng31299942010-03-15 17:29:09 +08001815 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001816}
1817
Liran Aloncd9a4912018-05-22 17:16:15 +03001818static inline bool cpu_has_vmx_invvpid_individual_addr(void)
1819{
1820 return vmx_capability.vpid & VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT;
1821}
1822
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001823static inline bool cpu_has_vmx_invvpid_single(void)
1824{
1825 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1826}
1827
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001828static inline bool cpu_has_vmx_invvpid_global(void)
1829{
1830 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1831}
1832
Wanpeng Li08d839c2017-03-23 05:30:08 -07001833static inline bool cpu_has_vmx_invvpid(void)
1834{
1835 return vmx_capability.vpid & VMX_VPID_INVVPID_BIT;
1836}
1837
Gui Jianfeng31299942010-03-15 17:29:09 +08001838static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001839{
Sheng Yang04547152009-04-01 15:52:31 +08001840 return vmcs_config.cpu_based_2nd_exec_ctrl &
1841 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001842}
1843
Gui Jianfeng31299942010-03-15 17:29:09 +08001844static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001845{
1846 return vmcs_config.cpu_based_2nd_exec_ctrl &
1847 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1848}
1849
Gui Jianfeng31299942010-03-15 17:29:09 +08001850static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001851{
1852 return vmcs_config.cpu_based_2nd_exec_ctrl &
1853 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1854}
1855
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03001856static inline bool cpu_has_vmx_basic_inout(void)
1857{
1858 return (((u64)vmcs_config.basic_cap << 32) & VMX_BASIC_INOUT);
1859}
1860
Paolo Bonzini35754c92015-07-29 12:05:37 +02001861static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001862{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001863 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001864}
1865
Gui Jianfeng31299942010-03-15 17:29:09 +08001866static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001867{
Sheng Yang04547152009-04-01 15:52:31 +08001868 return vmcs_config.cpu_based_2nd_exec_ctrl &
1869 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001870}
1871
Gui Jianfeng31299942010-03-15 17:29:09 +08001872static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001873{
1874 return vmcs_config.cpu_based_2nd_exec_ctrl &
1875 SECONDARY_EXEC_RDTSCP;
1876}
1877
Mao, Junjiead756a12012-07-02 01:18:48 +00001878static inline bool cpu_has_vmx_invpcid(void)
1879{
1880 return vmcs_config.cpu_based_2nd_exec_ctrl &
1881 SECONDARY_EXEC_ENABLE_INVPCID;
1882}
1883
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01001884static inline bool cpu_has_virtual_nmis(void)
1885{
1886 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
1887}
1888
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001889static inline bool cpu_has_vmx_wbinvd_exit(void)
1890{
1891 return vmcs_config.cpu_based_2nd_exec_ctrl &
1892 SECONDARY_EXEC_WBINVD_EXITING;
1893}
1894
Abel Gordonabc4fc52013-04-18 14:35:25 +03001895static inline bool cpu_has_vmx_shadow_vmcs(void)
1896{
1897 u64 vmx_msr;
1898 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1899 /* check if the cpu supports writing r/o exit information fields */
1900 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1901 return false;
1902
1903 return vmcs_config.cpu_based_2nd_exec_ctrl &
1904 SECONDARY_EXEC_SHADOW_VMCS;
1905}
1906
Kai Huang843e4332015-01-28 10:54:28 +08001907static inline bool cpu_has_vmx_pml(void)
1908{
1909 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1910}
1911
Haozhong Zhang64903d62015-10-20 15:39:09 +08001912static inline bool cpu_has_vmx_tsc_scaling(void)
1913{
1914 return vmcs_config.cpu_based_2nd_exec_ctrl &
1915 SECONDARY_EXEC_TSC_SCALING;
1916}
1917
Bandan Das2a499e42017-08-03 15:54:41 -04001918static inline bool cpu_has_vmx_vmfunc(void)
1919{
1920 return vmcs_config.cpu_based_2nd_exec_ctrl &
1921 SECONDARY_EXEC_ENABLE_VMFUNC;
1922}
1923
Sean Christopherson64f7a112018-04-30 10:01:06 -07001924static bool vmx_umip_emulated(void)
1925{
1926 return vmcs_config.cpu_based_2nd_exec_ctrl &
1927 SECONDARY_EXEC_DESC;
1928}
1929
Sheng Yang04547152009-04-01 15:52:31 +08001930static inline bool report_flexpriority(void)
1931{
1932 return flexpriority_enabled;
1933}
1934
Jim Mattsonc7c2c702017-05-05 11:28:09 -07001935static inline unsigned nested_cpu_vmx_misc_cr3_count(struct kvm_vcpu *vcpu)
1936{
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01001937 return vmx_misc_cr3_count(to_vmx(vcpu)->nested.msrs.misc_low);
Jim Mattsonc7c2c702017-05-05 11:28:09 -07001938}
1939
Jim Mattsonf4160e42018-05-29 09:11:33 -07001940/*
1941 * Do the virtual VMX capability MSRs specify that L1 can use VMWRITE
1942 * to modify any valid field of the VMCS, or are the VM-exit
1943 * information fields read-only?
1944 */
1945static inline bool nested_cpu_has_vmwrite_any_field(struct kvm_vcpu *vcpu)
1946{
1947 return to_vmx(vcpu)->nested.msrs.misc_low &
1948 MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS;
1949}
1950
Marc Orr04473782018-06-20 17:21:29 -07001951static inline bool nested_cpu_has_zero_length_injection(struct kvm_vcpu *vcpu)
1952{
1953 return to_vmx(vcpu)->nested.msrs.misc_low & VMX_MISC_ZERO_LEN_INS;
1954}
1955
1956static inline bool nested_cpu_supports_monitor_trap_flag(struct kvm_vcpu *vcpu)
1957{
1958 return to_vmx(vcpu)->nested.msrs.procbased_ctls_high &
1959 CPU_BASED_MONITOR_TRAP_FLAG;
1960}
1961
Liran Alonfa97d7d2018-07-18 14:07:59 +02001962static inline bool nested_cpu_has_vmx_shadow_vmcs(struct kvm_vcpu *vcpu)
1963{
1964 return to_vmx(vcpu)->nested.msrs.secondary_ctls_high &
1965 SECONDARY_EXEC_SHADOW_VMCS;
1966}
1967
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001968static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1969{
1970 return vmcs12->cpu_based_vm_exec_control & bit;
1971}
1972
1973static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1974{
1975 return (vmcs12->cpu_based_vm_exec_control &
1976 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1977 (vmcs12->secondary_vm_exec_control & bit);
1978}
1979
Jan Kiszkaf4124502014-03-07 20:03:13 +01001980static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1981{
1982 return vmcs12->pin_based_vm_exec_control &
1983 PIN_BASED_VMX_PREEMPTION_TIMER;
1984}
1985
Krish Sadhukhan0c7f6502018-02-20 21:24:39 -05001986static inline bool nested_cpu_has_nmi_exiting(struct vmcs12 *vmcs12)
1987{
1988 return vmcs12->pin_based_vm_exec_control & PIN_BASED_NMI_EXITING;
1989}
1990
1991static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
1992{
1993 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1994}
1995
Nadav Har'El155a97a2013-08-05 11:07:16 +03001996static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1997{
1998 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1999}
2000
Wanpeng Li81dc01f2014-12-04 19:11:07 +08002001static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
2002{
Paolo Bonzini3db13482017-08-24 14:48:03 +02002003 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li81dc01f2014-12-04 19:11:07 +08002004}
2005
Bandan Dasc5f983f2017-05-05 15:25:14 -04002006static inline bool nested_cpu_has_pml(struct vmcs12 *vmcs12)
2007{
2008 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML);
2009}
2010
Wincy Vanf2b93282015-02-03 23:56:03 +08002011static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
2012{
2013 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
2014}
2015
Wanpeng Li5c614b32015-10-13 09:18:36 -07002016static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
2017{
2018 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
2019}
2020
Wincy Van82f0dd42015-02-03 23:57:18 +08002021static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
2022{
2023 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
2024}
2025
Wincy Van608406e2015-02-03 23:57:51 +08002026static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
2027{
2028 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
2029}
2030
Wincy Van705699a2015-02-03 23:58:17 +08002031static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
2032{
2033 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
2034}
2035
Bandan Das27c42a12017-08-03 15:54:42 -04002036static inline bool nested_cpu_has_vmfunc(struct vmcs12 *vmcs12)
2037{
2038 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VMFUNC);
2039}
2040
Bandan Das41ab9372017-08-03 15:54:43 -04002041static inline bool nested_cpu_has_eptp_switching(struct vmcs12 *vmcs12)
2042{
2043 return nested_cpu_has_vmfunc(vmcs12) &&
2044 (vmcs12->vm_function_control &
2045 VMX_VMFUNC_EPTP_SWITCHING);
2046}
2047
Liran Alonf792d272018-06-23 02:35:05 +03002048static inline bool nested_cpu_has_shadow_vmcs(struct vmcs12 *vmcs12)
2049{
2050 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_SHADOW_VMCS);
2051}
2052
Jim Mattsonef85b672016-12-12 11:01:37 -08002053static inline bool is_nmi(u32 intr_info)
Nadav Har'El644d7112011-05-25 23:12:35 +03002054{
2055 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
Jim Mattsonef85b672016-12-12 11:01:37 -08002056 == (INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK);
Nadav Har'El644d7112011-05-25 23:12:35 +03002057}
2058
Jan Kiszka533558b2014-01-04 18:47:20 +01002059static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
2060 u32 exit_intr_info,
2061 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03002062static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
2063 struct vmcs12 *vmcs12,
2064 u32 reason, unsigned long qualification);
2065
Rusty Russell8b9cf982007-07-30 16:31:43 +10002066static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08002067{
2068 int i;
2069
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002070 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03002071 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03002072 return i;
2073 return -1;
2074}
2075
Sheng Yang2384d2b2008-01-17 15:14:33 +08002076static inline void __invvpid(int ext, u16 vpid, gva_t gva)
2077{
2078 struct {
2079 u64 vpid : 16;
2080 u64 rsvd : 48;
2081 u64 gva;
2082 } operand = { vpid, 0, gva };
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002083 bool error;
Sheng Yang2384d2b2008-01-17 15:14:33 +08002084
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002085 asm volatile (__ex(ASM_VMX_INVVPID) CC_SET(na)
2086 : CC_OUT(na) (error) : "a"(&operand), "c"(ext)
2087 : "memory");
2088 BUG_ON(error);
Sheng Yang2384d2b2008-01-17 15:14:33 +08002089}
2090
Sheng Yang14394422008-04-28 12:24:45 +08002091static inline void __invept(int ext, u64 eptp, gpa_t gpa)
2092{
2093 struct {
2094 u64 eptp, gpa;
2095 } operand = {eptp, gpa};
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002096 bool error;
Sheng Yang14394422008-04-28 12:24:45 +08002097
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002098 asm volatile (__ex(ASM_VMX_INVEPT) CC_SET(na)
2099 : CC_OUT(na) (error) : "a" (&operand), "c" (ext)
2100 : "memory");
2101 BUG_ON(error);
Sheng Yang14394422008-04-28 12:24:45 +08002102}
2103
Avi Kivity26bb0982009-09-07 11:14:12 +03002104static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03002105{
2106 int i;
2107
Rusty Russell8b9cf982007-07-30 16:31:43 +10002108 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03002109 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002110 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00002111 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08002112}
2113
Avi Kivity6aa8b732006-12-10 02:21:36 -08002114static void vmcs_clear(struct vmcs *vmcs)
2115{
2116 u64 phys_addr = __pa(vmcs);
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002117 bool error;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002118
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002119 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) CC_SET(na)
2120 : CC_OUT(na) (error) : "a"(&phys_addr), "m"(phys_addr)
2121 : "memory");
2122 if (unlikely(error))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002123 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
2124 vmcs, phys_addr);
2125}
2126
Nadav Har'Eld462b812011-05-24 15:26:10 +03002127static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
2128{
2129 vmcs_clear(loaded_vmcs->vmcs);
Jim Mattson355f4fb2016-10-28 08:29:39 -07002130 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
2131 vmcs_clear(loaded_vmcs->shadow_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002132 loaded_vmcs->cpu = -1;
2133 loaded_vmcs->launched = 0;
2134}
2135
Dongxiao Xu7725b892010-05-11 18:29:38 +08002136static void vmcs_load(struct vmcs *vmcs)
2137{
2138 u64 phys_addr = __pa(vmcs);
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002139 bool error;
Dongxiao Xu7725b892010-05-11 18:29:38 +08002140
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002141 if (static_branch_unlikely(&enable_evmcs))
2142 return evmcs_load(phys_addr);
2143
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002144 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) CC_SET(na)
2145 : CC_OUT(na) (error) : "a"(&phys_addr), "m"(phys_addr)
2146 : "memory");
2147 if (unlikely(error))
Nadav Har'El2844d842011-05-25 23:16:40 +03002148 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08002149 vmcs, phys_addr);
2150}
2151
Dave Young2965faa2015-09-09 15:38:55 -07002152#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002153/*
2154 * This bitmap is used to indicate whether the vmclear
2155 * operation is enabled on all cpus. All disabled by
2156 * default.
2157 */
2158static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
2159
2160static inline void crash_enable_local_vmclear(int cpu)
2161{
2162 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
2163}
2164
2165static inline void crash_disable_local_vmclear(int cpu)
2166{
2167 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
2168}
2169
2170static inline int crash_local_vmclear_enabled(int cpu)
2171{
2172 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
2173}
2174
2175static void crash_vmclear_local_loaded_vmcss(void)
2176{
2177 int cpu = raw_smp_processor_id();
2178 struct loaded_vmcs *v;
2179
2180 if (!crash_local_vmclear_enabled(cpu))
2181 return;
2182
2183 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
2184 loaded_vmcss_on_cpu_link)
2185 vmcs_clear(v->vmcs);
2186}
2187#else
2188static inline void crash_enable_local_vmclear(int cpu) { }
2189static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07002190#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002191
Nadav Har'Eld462b812011-05-24 15:26:10 +03002192static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002193{
Nadav Har'Eld462b812011-05-24 15:26:10 +03002194 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08002195 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002196
Nadav Har'Eld462b812011-05-24 15:26:10 +03002197 if (loaded_vmcs->cpu != cpu)
2198 return; /* vcpu migration can race with cpu offline */
2199 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002200 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002201 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002202 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002203
2204 /*
2205 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
2206 * is before setting loaded_vmcs->vcpu to -1 which is done in
2207 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
2208 * then adds the vmcs into percpu list before it is deleted.
2209 */
2210 smp_wmb();
2211
Nadav Har'Eld462b812011-05-24 15:26:10 +03002212 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002213 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002214}
2215
Nadav Har'Eld462b812011-05-24 15:26:10 +03002216static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08002217{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08002218 int cpu = loaded_vmcs->cpu;
2219
2220 if (cpu != -1)
2221 smp_call_function_single(cpu,
2222 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08002223}
2224
Junaid Shahidfaff8752018-06-29 13:10:05 -07002225static inline bool vpid_sync_vcpu_addr(int vpid, gva_t addr)
2226{
2227 if (vpid == 0)
2228 return true;
2229
2230 if (cpu_has_vmx_invvpid_individual_addr()) {
2231 __invvpid(VMX_VPID_EXTENT_INDIVIDUAL_ADDR, vpid, addr);
2232 return true;
2233 }
2234
2235 return false;
2236}
2237
Wanpeng Lidd5f5342015-09-23 18:26:57 +08002238static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08002239{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08002240 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08002241 return;
2242
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08002243 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08002244 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08002245}
2246
Gui Jianfengb9d762f2010-06-07 10:32:29 +08002247static inline void vpid_sync_vcpu_global(void)
2248{
2249 if (cpu_has_vmx_invvpid_global())
2250 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
2251}
2252
Wanpeng Lidd5f5342015-09-23 18:26:57 +08002253static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08002254{
2255 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08002256 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08002257 else
2258 vpid_sync_vcpu_global();
2259}
2260
Sheng Yang14394422008-04-28 12:24:45 +08002261static inline void ept_sync_global(void)
2262{
David Hildenbrandf5f51582017-08-24 20:51:30 +02002263 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
Sheng Yang14394422008-04-28 12:24:45 +08002264}
2265
2266static inline void ept_sync_context(u64 eptp)
2267{
David Hildenbrand0e1252d2017-08-24 20:51:28 +02002268 if (cpu_has_vmx_invept_context())
2269 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
2270 else
2271 ept_sync_global();
Sheng Yang14394422008-04-28 12:24:45 +08002272}
2273
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002274static __always_inline void vmcs_check16(unsigned long field)
2275{
2276 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
2277 "16-bit accessor invalid for 64-bit field");
2278 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
2279 "16-bit accessor invalid for 64-bit high field");
2280 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
2281 "16-bit accessor invalid for 32-bit high field");
2282 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
2283 "16-bit accessor invalid for natural width field");
2284}
2285
2286static __always_inline void vmcs_check32(unsigned long field)
2287{
2288 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
2289 "32-bit accessor invalid for 16-bit field");
2290 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
2291 "32-bit accessor invalid for natural width field");
2292}
2293
2294static __always_inline void vmcs_check64(unsigned long field)
2295{
2296 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
2297 "64-bit accessor invalid for 16-bit field");
2298 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
2299 "64-bit accessor invalid for 64-bit high field");
2300 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
2301 "64-bit accessor invalid for 32-bit field");
2302 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
2303 "64-bit accessor invalid for natural width field");
2304}
2305
2306static __always_inline void vmcs_checkl(unsigned long field)
2307{
2308 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
2309 "Natural width accessor invalid for 16-bit field");
2310 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
2311 "Natural width accessor invalid for 64-bit field");
2312 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
2313 "Natural width accessor invalid for 64-bit high field");
2314 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
2315 "Natural width accessor invalid for 32-bit field");
2316}
2317
2318static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002319{
Avi Kivity5e520e62011-05-15 10:13:12 -04002320 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002321
Avi Kivity5e520e62011-05-15 10:13:12 -04002322 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
2323 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08002324 return value;
2325}
2326
Avi Kivity96304212011-05-15 10:13:13 -04002327static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002328{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002329 vmcs_check16(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002330 if (static_branch_unlikely(&enable_evmcs))
2331 return evmcs_read16(field);
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002332 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002333}
2334
Avi Kivity96304212011-05-15 10:13:13 -04002335static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002336{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002337 vmcs_check32(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002338 if (static_branch_unlikely(&enable_evmcs))
2339 return evmcs_read32(field);
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002340 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002341}
2342
Avi Kivity96304212011-05-15 10:13:13 -04002343static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002344{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002345 vmcs_check64(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002346 if (static_branch_unlikely(&enable_evmcs))
2347 return evmcs_read64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002348#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002349 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002350#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002351 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002352#endif
2353}
2354
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002355static __always_inline unsigned long vmcs_readl(unsigned long field)
2356{
2357 vmcs_checkl(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002358 if (static_branch_unlikely(&enable_evmcs))
2359 return evmcs_read64(field);
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002360 return __vmcs_readl(field);
2361}
2362
Avi Kivitye52de1b2007-01-05 16:36:56 -08002363static noinline void vmwrite_error(unsigned long field, unsigned long value)
2364{
2365 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
2366 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
2367 dump_stack();
2368}
2369
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002370static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002371{
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002372 bool error;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002373
Uros Bizjakfd8ca6d2018-08-06 16:42:49 +02002374 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) CC_SET(na)
2375 : CC_OUT(na) (error) : "a"(value), "d"(field));
Avi Kivitye52de1b2007-01-05 16:36:56 -08002376 if (unlikely(error))
2377 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002378}
2379
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002380static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002381{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002382 vmcs_check16(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002383 if (static_branch_unlikely(&enable_evmcs))
2384 return evmcs_write16(field, value);
2385
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002386 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002387}
2388
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002389static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002390{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002391 vmcs_check32(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002392 if (static_branch_unlikely(&enable_evmcs))
2393 return evmcs_write32(field, value);
2394
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002395 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002396}
2397
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002398static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002399{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002400 vmcs_check64(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002401 if (static_branch_unlikely(&enable_evmcs))
2402 return evmcs_write64(field, value);
2403
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002404 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03002405#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002406 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002407 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002408#endif
2409}
2410
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002411static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002412{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002413 vmcs_checkl(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002414 if (static_branch_unlikely(&enable_evmcs))
2415 return evmcs_write64(field, value);
2416
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002417 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002418}
2419
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002420static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002421{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002422 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
2423 "vmcs_clear_bits does not support 64-bit fields");
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002424 if (static_branch_unlikely(&enable_evmcs))
2425 return evmcs_write32(field, evmcs_read32(field) & ~mask);
2426
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002427 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
2428}
2429
2430static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
2431{
2432 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
2433 "vmcs_set_bits does not support 64-bit fields");
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01002434 if (static_branch_unlikely(&enable_evmcs))
2435 return evmcs_write32(field, evmcs_read32(field) | mask);
2436
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01002437 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002438}
2439
Paolo Bonzini8391ce42016-07-07 14:58:33 +02002440static inline void vm_entry_controls_reset_shadow(struct vcpu_vmx *vmx)
2441{
2442 vmx->vm_entry_controls_shadow = vmcs_read32(VM_ENTRY_CONTROLS);
2443}
2444
Gleb Natapov2961e8762013-11-25 15:37:13 +02002445static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
2446{
2447 vmcs_write32(VM_ENTRY_CONTROLS, val);
2448 vmx->vm_entry_controls_shadow = val;
2449}
2450
2451static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
2452{
2453 if (vmx->vm_entry_controls_shadow != val)
2454 vm_entry_controls_init(vmx, val);
2455}
2456
2457static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
2458{
2459 return vmx->vm_entry_controls_shadow;
2460}
2461
2462
2463static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
2464{
2465 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
2466}
2467
2468static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
2469{
2470 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
2471}
2472
Paolo Bonzini8391ce42016-07-07 14:58:33 +02002473static inline void vm_exit_controls_reset_shadow(struct vcpu_vmx *vmx)
2474{
2475 vmx->vm_exit_controls_shadow = vmcs_read32(VM_EXIT_CONTROLS);
2476}
2477
Gleb Natapov2961e8762013-11-25 15:37:13 +02002478static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
2479{
2480 vmcs_write32(VM_EXIT_CONTROLS, val);
2481 vmx->vm_exit_controls_shadow = val;
2482}
2483
2484static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
2485{
2486 if (vmx->vm_exit_controls_shadow != val)
2487 vm_exit_controls_init(vmx, val);
2488}
2489
2490static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
2491{
2492 return vmx->vm_exit_controls_shadow;
2493}
2494
2495
2496static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
2497{
2498 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
2499}
2500
2501static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
2502{
2503 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
2504}
2505
Avi Kivity2fb92db2011-04-27 19:42:18 +03002506static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
2507{
2508 vmx->segment_cache.bitmask = 0;
2509}
2510
2511static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
2512 unsigned field)
2513{
2514 bool ret;
2515 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
2516
2517 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
2518 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
2519 vmx->segment_cache.bitmask = 0;
2520 }
2521 ret = vmx->segment_cache.bitmask & mask;
2522 vmx->segment_cache.bitmask |= mask;
2523 return ret;
2524}
2525
2526static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
2527{
2528 u16 *p = &vmx->segment_cache.seg[seg].selector;
2529
2530 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
2531 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
2532 return *p;
2533}
2534
2535static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
2536{
2537 ulong *p = &vmx->segment_cache.seg[seg].base;
2538
2539 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
2540 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
2541 return *p;
2542}
2543
2544static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
2545{
2546 u32 *p = &vmx->segment_cache.seg[seg].limit;
2547
2548 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
2549 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
2550 return *p;
2551}
2552
2553static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
2554{
2555 u32 *p = &vmx->segment_cache.seg[seg].ar;
2556
2557 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
2558 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
2559 return *p;
2560}
2561
Avi Kivityabd3f2d2007-05-02 17:57:40 +03002562static void update_exception_bitmap(struct kvm_vcpu *vcpu)
2563{
2564 u32 eb;
2565
Jan Kiszkafd7373c2010-01-20 18:20:20 +01002566 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002567 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Liran Alon9e869482018-03-12 13:12:51 +02002568 /*
2569 * Guest access to VMware backdoor ports could legitimately
2570 * trigger #GP because of TSS I/O permission bitmap.
2571 * We intercept those #GP and allow access to them anyway
2572 * as VMware does.
2573 */
2574 if (enable_vmware_backdoor)
2575 eb |= (1u << GP_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01002576 if ((vcpu->guest_debug &
2577 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
2578 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
2579 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002580 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03002581 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02002582 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002583 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002584
2585 /* When we are running a nested L2 guest and L1 specified for it a
2586 * certain exception bitmap, we must trap the same exceptions and pass
2587 * them to L1. When running L2, we will only handle the exceptions
2588 * specified above if L1 did not want them.
2589 */
2590 if (is_guest_mode(vcpu))
2591 eb |= get_vmcs12(vcpu)->exception_bitmap;
2592
Avi Kivityabd3f2d2007-05-02 17:57:40 +03002593 vmcs_write32(EXCEPTION_BITMAP, eb);
2594}
2595
Ashok Raj15d45072018-02-01 22:59:43 +01002596/*
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002597 * Check if MSR is intercepted for currently loaded MSR bitmap.
2598 */
2599static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr)
2600{
2601 unsigned long *msr_bitmap;
2602 int f = sizeof(unsigned long);
2603
2604 if (!cpu_has_vmx_msr_bitmap())
2605 return true;
2606
2607 msr_bitmap = to_vmx(vcpu)->loaded_vmcs->msr_bitmap;
2608
2609 if (msr <= 0x1fff) {
2610 return !!test_bit(msr, msr_bitmap + 0x800 / f);
2611 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2612 msr &= 0x1fff;
2613 return !!test_bit(msr, msr_bitmap + 0xc00 / f);
2614 }
2615
2616 return true;
2617}
2618
2619/*
Ashok Raj15d45072018-02-01 22:59:43 +01002620 * Check if MSR is intercepted for L01 MSR bitmap.
2621 */
2622static bool msr_write_intercepted_l01(struct kvm_vcpu *vcpu, u32 msr)
2623{
2624 unsigned long *msr_bitmap;
2625 int f = sizeof(unsigned long);
2626
2627 if (!cpu_has_vmx_msr_bitmap())
2628 return true;
2629
2630 msr_bitmap = to_vmx(vcpu)->vmcs01.msr_bitmap;
2631
2632 if (msr <= 0x1fff) {
2633 return !!test_bit(msr, msr_bitmap + 0x800 / f);
2634 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2635 msr &= 0x1fff;
2636 return !!test_bit(msr, msr_bitmap + 0xc00 / f);
2637 }
2638
2639 return true;
2640}
2641
Gleb Natapov2961e8762013-11-25 15:37:13 +02002642static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
2643 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002644{
Gleb Natapov2961e8762013-11-25 15:37:13 +02002645 vm_entry_controls_clearbit(vmx, entry);
2646 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002647}
2648
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04002649static int find_msr(struct vmx_msrs *m, unsigned int msr)
2650{
2651 unsigned int i;
2652
2653 for (i = 0; i < m->nr; ++i) {
2654 if (m->val[i].index == msr)
2655 return i;
2656 }
2657 return -ENOENT;
2658}
2659
Avi Kivity61d2ef22010-04-28 16:40:38 +03002660static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
2661{
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04002662 int i;
Avi Kivity61d2ef22010-04-28 16:40:38 +03002663 struct msr_autoload *m = &vmx->msr_autoload;
2664
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002665 switch (msr) {
2666 case MSR_EFER:
2667 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002668 clear_atomic_switch_msr_special(vmx,
2669 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002670 VM_EXIT_LOAD_IA32_EFER);
2671 return;
2672 }
2673 break;
2674 case MSR_CORE_PERF_GLOBAL_CTRL:
2675 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002676 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002677 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
2678 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
2679 return;
2680 }
2681 break;
Avi Kivity110312c2010-12-21 12:54:20 +02002682 }
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04002683 i = find_msr(&m->guest, msr);
2684 if (i < 0)
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002685 goto skip_guest;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002686 --m->guest.nr;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002687 m->guest.val[i] = m->guest.val[m->guest.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002688 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Avi Kivity110312c2010-12-21 12:54:20 +02002689
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002690skip_guest:
2691 i = find_msr(&m->host, msr);
2692 if (i < 0)
Avi Kivity61d2ef22010-04-28 16:40:38 +03002693 return;
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002694
2695 --m->host.nr;
2696 m->host.val[i] = m->host.val[m->host.nr];
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002697 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +03002698}
2699
Gleb Natapov2961e8762013-11-25 15:37:13 +02002700static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
2701 unsigned long entry, unsigned long exit,
2702 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
2703 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002704{
2705 vmcs_write64(guest_val_vmcs, guest_val);
2706 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02002707 vm_entry_controls_setbit(vmx, entry);
2708 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002709}
2710
Avi Kivity61d2ef22010-04-28 16:40:38 +03002711static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04002712 u64 guest_val, u64 host_val, bool entry_only)
Avi Kivity61d2ef22010-04-28 16:40:38 +03002713{
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04002714 int i, j = 0;
Avi Kivity61d2ef22010-04-28 16:40:38 +03002715 struct msr_autoload *m = &vmx->msr_autoload;
2716
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002717 switch (msr) {
2718 case MSR_EFER:
2719 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002720 add_atomic_switch_msr_special(vmx,
2721 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002722 VM_EXIT_LOAD_IA32_EFER,
2723 GUEST_IA32_EFER,
2724 HOST_IA32_EFER,
2725 guest_val, host_val);
2726 return;
2727 }
2728 break;
2729 case MSR_CORE_PERF_GLOBAL_CTRL:
2730 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002731 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002732 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
2733 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
2734 GUEST_IA32_PERF_GLOBAL_CTRL,
2735 HOST_IA32_PERF_GLOBAL_CTRL,
2736 guest_val, host_val);
2737 return;
2738 }
2739 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +01002740 case MSR_IA32_PEBS_ENABLE:
2741 /* PEBS needs a quiescent period after being disabled (to write
2742 * a record). Disabling PEBS through VMX MSR swapping doesn't
2743 * provide that period, so a CPU could write host's record into
2744 * guest's memory.
2745 */
2746 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +02002747 }
2748
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04002749 i = find_msr(&m->guest, msr);
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04002750 if (!entry_only)
2751 j = find_msr(&m->host, msr);
Avi Kivity61d2ef22010-04-28 16:40:38 +03002752
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002753 if (i == NR_AUTOLOAD_MSRS || j == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02002754 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02002755 "Can't add msr %x\n", msr);
2756 return;
Avi Kivity61d2ef22010-04-28 16:40:38 +03002757 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002758 if (i < 0) {
Konrad Rzeszutek Wilkca83b4a2018-06-20 20:11:39 -04002759 i = m->guest.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002760 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->guest.nr);
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002761 }
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04002762 m->guest.val[i].index = msr;
2763 m->guest.val[i].value = guest_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +03002764
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04002765 if (entry_only)
2766 return;
2767
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002768 if (j < 0) {
2769 j = m->host.nr++;
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04002770 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->host.nr);
Avi Kivity61d2ef22010-04-28 16:40:38 +03002771 }
Konrad Rzeszutek Wilk31907092018-06-20 22:00:47 -04002772 m->host.val[j].index = msr;
2773 m->host.val[j].value = host_val;
Avi Kivity61d2ef22010-04-28 16:40:38 +03002774}
2775
Avi Kivity92c0d902009-10-29 11:00:16 +02002776static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03002777{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002778 u64 guest_efer = vmx->vcpu.arch.efer;
2779 u64 ignore_bits = 0;
Eddie Dong2cc51562007-05-21 07:28:09 +03002780
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002781 if (!enable_ept) {
2782 /*
2783 * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing
2784 * host CPUID is more efficient than testing guest CPUID
2785 * or CR4. Host SMEP is anyway a requirement for guest SMEP.
2786 */
2787 if (boot_cpu_has(X86_FEATURE_SMEP))
2788 guest_efer |= EFER_NX;
2789 else if (!(guest_efer & EFER_NX))
2790 ignore_bits |= EFER_NX;
2791 }
Roel Kluin3a34a882009-08-04 02:08:45 -07002792
Avi Kivity51c6cf62007-08-29 03:48:05 +03002793 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002794 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03002795 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002796 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03002797#ifdef CONFIG_X86_64
2798 ignore_bits |= EFER_LMA | EFER_LME;
2799 /* SCE is meaningful only in long mode on Intel */
2800 if (guest_efer & EFER_LMA)
2801 ignore_bits &= ~(u64)EFER_SCE;
2802#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03002803
2804 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08002805
2806 /*
2807 * On EPT, we can't emulate NX, so we must switch EFER atomically.
2808 * On CPUs that support "load IA32_EFER", always switch EFER
2809 * atomically, since it's faster than switching it manually.
2810 */
2811 if (cpu_has_load_ia32_efer ||
2812 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03002813 if (!(guest_efer & EFER_LMA))
2814 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08002815 if (guest_efer != host_efer)
2816 add_atomic_switch_msr(vmx, MSR_EFER,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04002817 guest_efer, host_efer, false);
Avi Kivity84ad33e2010-04-28 16:42:29 +03002818 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002819 } else {
2820 guest_efer &= ~ignore_bits;
2821 guest_efer |= host_efer & ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03002822
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002823 vmx->guest_msrs[efer_offset].data = guest_efer;
2824 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
2825
2826 return true;
2827 }
Avi Kivity51c6cf62007-08-29 03:48:05 +03002828}
2829
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002830#ifdef CONFIG_X86_32
2831/*
2832 * On 32-bit kernels, VM exits still load the FS and GS bases from the
2833 * VMCS rather than the segment table. KVM uses this helper to figure
2834 * out the current bases to poke them into the VMCS before entry.
2835 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002836static unsigned long segment_base(u16 selector)
2837{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002838 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002839 unsigned long v;
2840
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002841 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002842 return 0;
2843
Thomas Garnier45fc8752017-03-14 10:05:08 -07002844 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002845
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002846 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002847 u16 ldt_selector = kvm_read_ldt();
2848
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002849 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002850 return 0;
2851
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002852 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002853 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002854 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002855 return v;
2856}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002857#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002858
Sean Christopherson6d6095b2018-07-23 12:32:44 -07002859static void vmx_prepare_switch_to_guest(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03002860{
Avi Kivity04d2cc72007-09-10 18:10:54 +03002861 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersond7ee0392018-07-23 12:32:47 -07002862 struct vmcs_host_state *host_state;
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02002863#ifdef CONFIG_X86_64
Vitaly Kuznetsov35060ed2018-03-13 18:48:05 +01002864 int cpu = raw_smp_processor_id();
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02002865#endif
Sean Christophersone368b872018-07-23 12:32:41 -07002866 unsigned long fs_base, gs_base;
2867 u16 fs_sel, gs_sel;
Avi Kivity26bb0982009-09-07 11:14:12 +03002868 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002869
Sean Christophersond264ee02018-08-27 15:21:12 -07002870 vmx->req_immediate_exit = false;
2871
Sean Christophersonbd9966d2018-07-23 12:32:42 -07002872 if (vmx->loaded_cpu_state)
Avi Kivity33ed6322007-05-02 16:54:03 +03002873 return;
2874
Sean Christophersonbd9966d2018-07-23 12:32:42 -07002875 vmx->loaded_cpu_state = vmx->loaded_vmcs;
Sean Christophersond7ee0392018-07-23 12:32:47 -07002876 host_state = &vmx->loaded_cpu_state->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07002877
Avi Kivity33ed6322007-05-02 16:54:03 +03002878 /*
2879 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
2880 * allow segment selectors with cpl > 0 or ti == 1.
2881 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07002882 host_state->ldt_sel = kvm_read_ldt();
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01002883
2884#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07002885 savesegment(ds, host_state->ds_sel);
2886 savesegment(es, host_state->es_sel);
Sean Christophersone368b872018-07-23 12:32:41 -07002887
2888 gs_base = cpu_kernelmode_gs_base(cpu);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02002889 if (likely(is_64bit_mm(current->mm))) {
2890 save_fsgs_for_kvm();
Sean Christophersone368b872018-07-23 12:32:41 -07002891 fs_sel = current->thread.fsindex;
2892 gs_sel = current->thread.gsindex;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02002893 fs_base = current->thread.fsbase;
Sean Christophersone368b872018-07-23 12:32:41 -07002894 vmx->msr_host_kernel_gs_base = current->thread.gsbase;
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02002895 } else {
Sean Christophersone368b872018-07-23 12:32:41 -07002896 savesegment(fs, fs_sel);
2897 savesegment(gs, gs_sel);
Vitaly Kuznetsovb062b792018-07-11 19:37:18 +02002898 fs_base = read_msr(MSR_FS_BASE);
Sean Christophersone368b872018-07-23 12:32:41 -07002899 vmx->msr_host_kernel_gs_base = read_msr(MSR_KERNEL_GS_BASE);
Avi Kivity33ed6322007-05-02 16:54:03 +03002900 }
2901
Paolo Bonzini4679b612018-09-24 17:23:01 +02002902 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity33ed6322007-05-02 16:54:03 +03002903#else
Sean Christophersone368b872018-07-23 12:32:41 -07002904 savesegment(fs, fs_sel);
2905 savesegment(gs, gs_sel);
2906 fs_base = segment_base(fs_sel);
2907 gs_base = segment_base(gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002908#endif
Sean Christophersone368b872018-07-23 12:32:41 -07002909
Sean Christopherson8f21a0b2018-07-23 12:32:49 -07002910 if (unlikely(fs_sel != host_state->fs_sel)) {
2911 if (!(fs_sel & 7))
2912 vmcs_write16(HOST_FS_SELECTOR, fs_sel);
2913 else
2914 vmcs_write16(HOST_FS_SELECTOR, 0);
2915 host_state->fs_sel = fs_sel;
2916 }
2917 if (unlikely(gs_sel != host_state->gs_sel)) {
2918 if (!(gs_sel & 7))
2919 vmcs_write16(HOST_GS_SELECTOR, gs_sel);
2920 else
2921 vmcs_write16(HOST_GS_SELECTOR, 0);
2922 host_state->gs_sel = gs_sel;
2923 }
Sean Christopherson5e079c72018-07-23 12:32:50 -07002924 if (unlikely(fs_base != host_state->fs_base)) {
2925 vmcs_writel(HOST_FS_BASE, fs_base);
2926 host_state->fs_base = fs_base;
2927 }
2928 if (unlikely(gs_base != host_state->gs_base)) {
2929 vmcs_writel(HOST_GS_BASE, gs_base);
2930 host_state->gs_base = gs_base;
2931 }
Avi Kivity33ed6322007-05-02 16:54:03 +03002932
Avi Kivity26bb0982009-09-07 11:14:12 +03002933 for (i = 0; i < vmx->save_nmsrs; ++i)
2934 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02002935 vmx->guest_msrs[i].data,
2936 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03002937}
2938
Sean Christopherson6d6095b2018-07-23 12:32:44 -07002939static void vmx_prepare_switch_to_host(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03002940{
Sean Christophersond7ee0392018-07-23 12:32:47 -07002941 struct vmcs_host_state *host_state;
2942
Sean Christophersonbd9966d2018-07-23 12:32:42 -07002943 if (!vmx->loaded_cpu_state)
Avi Kivity33ed6322007-05-02 16:54:03 +03002944 return;
2945
Sean Christophersonbd9966d2018-07-23 12:32:42 -07002946 WARN_ON_ONCE(vmx->loaded_cpu_state != vmx->loaded_vmcs);
Sean Christophersond7ee0392018-07-23 12:32:47 -07002947 host_state = &vmx->loaded_cpu_state->host_state;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07002948
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002949 ++vmx->vcpu.stat.host_state_reload;
Sean Christophersonbd9966d2018-07-23 12:32:42 -07002950 vmx->loaded_cpu_state = NULL;
2951
Avi Kivityc8770e72010-11-11 12:37:26 +02002952#ifdef CONFIG_X86_64
Paolo Bonzini4679b612018-09-24 17:23:01 +02002953 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivityc8770e72010-11-11 12:37:26 +02002954#endif
Sean Christophersond7ee0392018-07-23 12:32:47 -07002955 if (host_state->ldt_sel || (host_state->gs_sel & 7)) {
2956 kvm_load_ldt(host_state->ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002957#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07002958 load_gs_index(host_state->gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002959#else
Sean Christophersond7ee0392018-07-23 12:32:47 -07002960 loadsegment(gs, host_state->gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002961#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002962 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07002963 if (host_state->fs_sel & 7)
2964 loadsegment(fs, host_state->fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002965#ifdef CONFIG_X86_64
Sean Christophersond7ee0392018-07-23 12:32:47 -07002966 if (unlikely(host_state->ds_sel | host_state->es_sel)) {
2967 loadsegment(ds, host_state->ds_sel);
2968 loadsegment(es, host_state->es_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002969 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002970#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002971 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002972#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002973 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002974#endif
Thomas Garnier45fc8752017-03-14 10:05:08 -07002975 load_fixmap_gdt(raw_smp_processor_id());
Avi Kivity33ed6322007-05-02 16:54:03 +03002976}
2977
Sean Christopherson678e3152018-07-23 12:32:43 -07002978#ifdef CONFIG_X86_64
2979static u64 vmx_read_guest_kernel_gs_base(struct vcpu_vmx *vmx)
Avi Kivitya9b21b62008-06-24 11:48:49 +03002980{
Paolo Bonzini4679b612018-09-24 17:23:01 +02002981 preempt_disable();
2982 if (vmx->loaded_cpu_state)
2983 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
2984 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07002985 return vmx->msr_guest_kernel_gs_base;
Avi Kivitya9b21b62008-06-24 11:48:49 +03002986}
2987
Sean Christopherson678e3152018-07-23 12:32:43 -07002988static void vmx_write_guest_kernel_gs_base(struct vcpu_vmx *vmx, u64 data)
2989{
Paolo Bonzini4679b612018-09-24 17:23:01 +02002990 preempt_disable();
2991 if (vmx->loaded_cpu_state)
2992 wrmsrl(MSR_KERNEL_GS_BASE, data);
2993 preempt_enable();
Sean Christopherson678e3152018-07-23 12:32:43 -07002994 vmx->msr_guest_kernel_gs_base = data;
2995}
2996#endif
2997
Feng Wu28b835d2015-09-18 22:29:54 +08002998static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2999{
3000 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
3001 struct pi_desc old, new;
3002 unsigned int dest;
3003
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02003004 /*
3005 * In case of hot-plug or hot-unplug, we may have to undo
3006 * vmx_vcpu_pi_put even if there is no assigned device. And we
3007 * always keep PI.NDST up to date for simplicity: it makes the
3008 * code easier, and CPU migration is not a fast path.
3009 */
3010 if (!pi_test_sn(pi_desc) && vcpu->cpu == cpu)
Feng Wu28b835d2015-09-18 22:29:54 +08003011 return;
3012
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02003013 /*
3014 * First handle the simple case where no cmpxchg is necessary; just
3015 * allow posting non-urgent interrupts.
3016 *
3017 * If the 'nv' field is POSTED_INTR_WAKEUP_VECTOR, do not change
3018 * PI.NDST: pi_post_block will do it for us and the wakeup_handler
3019 * expects the VCPU to be on the blocked_vcpu_list that matches
3020 * PI.NDST.
3021 */
3022 if (pi_desc->nv == POSTED_INTR_WAKEUP_VECTOR ||
3023 vcpu->cpu == cpu) {
3024 pi_clear_sn(pi_desc);
3025 return;
3026 }
3027
3028 /* The full case. */
Feng Wu28b835d2015-09-18 22:29:54 +08003029 do {
3030 old.control = new.control = pi_desc->control;
3031
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02003032 dest = cpu_physical_id(cpu);
Feng Wu28b835d2015-09-18 22:29:54 +08003033
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02003034 if (x2apic_enabled())
3035 new.ndst = dest;
3036 else
3037 new.ndst = (dest << 8) & 0xFF00;
Feng Wu28b835d2015-09-18 22:29:54 +08003038
Feng Wu28b835d2015-09-18 22:29:54 +08003039 new.sn = 0;
Paolo Bonzinic0a16662017-09-28 17:58:41 +02003040 } while (cmpxchg64(&pi_desc->control, old.control,
3041 new.control) != old.control);
Feng Wu28b835d2015-09-18 22:29:54 +08003042}
Xiao Guangrong1be0e612016-03-22 16:51:18 +08003043
Peter Feinerc95ba922016-08-17 09:36:47 -07003044static void decache_tsc_multiplier(struct vcpu_vmx *vmx)
3045{
3046 vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio;
3047 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
3048}
3049
Avi Kivity6aa8b732006-12-10 02:21:36 -08003050/*
3051 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
3052 * vcpu mutex is already taken.
3053 */
Avi Kivity15ad7142007-07-11 18:17:21 +03003054static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003055{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003056 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07003057 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003058
Jim Mattsonb80c76e2016-07-29 18:56:53 -07003059 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003060 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08003061 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003062 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08003063
3064 /*
3065 * Read loaded_vmcs->cpu should be before fetching
3066 * loaded_vmcs->loaded_vmcss_on_cpu_link.
3067 * See the comments in __loaded_vmcs_clear().
3068 */
3069 smp_rmb();
3070
Nadav Har'Eld462b812011-05-24 15:26:10 +03003071 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
3072 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003073 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08003074 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07003075 }
3076
3077 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
3078 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
3079 vmcs_load(vmx->loaded_vmcs->vmcs);
Ashok Raj15d45072018-02-01 22:59:43 +01003080 indirect_branch_prediction_barrier();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07003081 }
3082
3083 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07003084 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07003085 unsigned long sysenter_esp;
3086
3087 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08003088
Avi Kivity6aa8b732006-12-10 02:21:36 -08003089 /*
3090 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08003091 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08003092 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08003093 vmcs_writel(HOST_TR_BASE,
Andy Lutomirski72f5e082017-12-04 15:07:20 +01003094 (unsigned long)&get_cpu_entry_area(cpu)->tss.x86_tss);
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07003095 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003096
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08003097 /*
3098 * VM exits change the host TR limit to 0x67 after a VM
3099 * exit. This is okay, since 0x67 covers everything except
3100 * the IO bitmap and have have code to handle the IO bitmap
3101 * being lost after a VM exit.
3102 */
3103 BUILD_BUG_ON(IO_BITMAP_OFFSET - 1 != 0x67);
3104
Avi Kivity6aa8b732006-12-10 02:21:36 -08003105 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
3106 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08003107
Nadav Har'Eld462b812011-05-24 15:26:10 +03003108 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003109 }
Feng Wu28b835d2015-09-18 22:29:54 +08003110
Owen Hofmann2680d6d2016-03-01 13:36:13 -08003111 /* Setup TSC multiplier */
3112 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07003113 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
3114 decache_tsc_multiplier(vmx);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08003115
Feng Wu28b835d2015-09-18 22:29:54 +08003116 vmx_vcpu_pi_load(vcpu, cpu);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08003117 vmx->host_pkru = read_pkru();
Wanpeng Li74c55932017-11-29 01:31:20 -08003118 vmx->host_debugctlmsr = get_debugctlmsr();
Feng Wu28b835d2015-09-18 22:29:54 +08003119}
3120
3121static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
3122{
3123 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
3124
3125 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08003126 !irq_remapping_cap(IRQ_POSTING_CAP) ||
3127 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08003128 return;
3129
3130 /* Set SN when the vCPU is preempted */
3131 if (vcpu->preempted)
3132 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003133}
3134
3135static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
3136{
Feng Wu28b835d2015-09-18 22:29:54 +08003137 vmx_vcpu_pi_put(vcpu);
3138
Sean Christopherson6d6095b2018-07-23 12:32:44 -07003139 vmx_prepare_switch_to_host(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003140}
3141
Wanpeng Lif244dee2017-07-20 01:11:54 -07003142static bool emulation_required(struct kvm_vcpu *vcpu)
3143{
3144 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
3145}
3146
Avi Kivityedcafe32009-12-30 18:07:40 +02003147static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
3148
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03003149/*
3150 * Return the cr0 value that a nested guest would read. This is a combination
3151 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
3152 * its hypervisor (cr0_read_shadow).
3153 */
3154static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
3155{
3156 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
3157 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
3158}
3159static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
3160{
3161 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
3162 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
3163}
3164
Avi Kivity6aa8b732006-12-10 02:21:36 -08003165static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
3166{
Avi Kivity78ac8b42010-04-08 18:19:35 +03003167 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03003168
Avi Kivity6de12732011-03-07 12:51:22 +02003169 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
3170 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
3171 rflags = vmcs_readl(GUEST_RFLAGS);
3172 if (to_vmx(vcpu)->rmode.vm86_active) {
3173 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3174 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
3175 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
3176 }
3177 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03003178 }
Avi Kivity6de12732011-03-07 12:51:22 +02003179 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003180}
3181
3182static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
3183{
Wanpeng Lif244dee2017-07-20 01:11:54 -07003184 unsigned long old_rflags = vmx_get_rflags(vcpu);
3185
Avi Kivity6de12732011-03-07 12:51:22 +02003186 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
3187 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03003188 if (to_vmx(vcpu)->rmode.vm86_active) {
3189 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01003190 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03003191 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003192 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07003193
3194 if ((old_rflags ^ to_vmx(vcpu)->rflags) & X86_EFLAGS_VM)
3195 to_vmx(vcpu)->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003196}
3197
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02003198static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04003199{
3200 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
3201 int ret = 0;
3202
3203 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01003204 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04003205 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01003206 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04003207
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02003208 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04003209}
3210
3211static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
3212{
3213 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
3214 u32 interruptibility = interruptibility_old;
3215
3216 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
3217
Jan Kiszka48005f62010-02-19 19:38:07 +01003218 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04003219 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01003220 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04003221 interruptibility |= GUEST_INTR_STATE_STI;
3222
3223 if ((interruptibility != interruptibility_old))
3224 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
3225}
3226
Avi Kivity6aa8b732006-12-10 02:21:36 -08003227static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
3228{
3229 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003230
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003231 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003232 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003233 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003234
Glauber Costa2809f5d2009-05-12 16:21:05 -04003235 /* skipping an emulated instruction also counts */
3236 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003237}
3238
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003239static void nested_vmx_inject_exception_vmexit(struct kvm_vcpu *vcpu,
3240 unsigned long exit_qual)
3241{
3242 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
3243 unsigned int nr = vcpu->arch.exception.nr;
3244 u32 intr_info = nr | INTR_INFO_VALID_MASK;
3245
3246 if (vcpu->arch.exception.has_error_code) {
3247 vmcs12->vm_exit_intr_error_code = vcpu->arch.exception.error_code;
3248 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
3249 }
3250
3251 if (kvm_exception_is_soft(nr))
3252 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
3253 else
3254 intr_info |= INTR_TYPE_HARD_EXCEPTION;
3255
3256 if (!(vmcs12->idt_vectoring_info_field & VECTORING_INFO_VALID_MASK) &&
3257 vmx_get_nmi_mask(vcpu))
3258 intr_info |= INTR_INFO_UNBLOCK_NMI;
3259
3260 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, intr_info, exit_qual);
3261}
3262
Nadav Har'El0b6ac342011-05-25 23:13:36 +03003263/*
3264 * KVM wants to inject page-faults which it got to the guest. This function
3265 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03003266 */
Wanpeng Libfcf83b2017-08-24 03:35:11 -07003267static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned long *exit_qual)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03003268{
3269 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003270 unsigned int nr = vcpu->arch.exception.nr;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03003271
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003272 if (nr == PF_VECTOR) {
3273 if (vcpu->arch.exception.nested_apf) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07003274 *exit_qual = vcpu->arch.apf.nested_apf_token;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003275 return 1;
3276 }
3277 /*
3278 * FIXME: we must not write CR2 when L1 intercepts an L2 #PF exception.
3279 * The fix is to add the ancillary datum (CR2 or DR6) to structs
3280 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6
3281 * can be written only when inject_pending_event runs. This should be
3282 * conditional on a new capability---if the capability is disabled,
3283 * kvm_multiple_exception would write the ancillary information to
3284 * CR2 or DR6, for backwards ABI-compatibility.
3285 */
3286 if (nested_vmx_is_page_fault_vmexit(vmcs12,
3287 vcpu->arch.exception.error_code)) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07003288 *exit_qual = vcpu->arch.cr2;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003289 return 1;
3290 }
3291 } else {
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003292 if (vmcs12->exception_bitmap & (1u << nr)) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07003293 if (nr == DB_VECTOR)
3294 *exit_qual = vcpu->arch.dr6;
3295 else
3296 *exit_qual = 0;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003297 return 1;
3298 }
Wanpeng Liadfe20f2017-07-13 18:30:41 -07003299 }
3300
Paolo Bonzinib96fb432017-07-27 12:29:32 +02003301 return 0;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03003302}
3303
Wanpeng Licaa057a2018-03-12 04:53:03 -07003304static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
3305{
3306 /*
3307 * Ensure that we clear the HLT state in the VMCS. We don't need to
3308 * explicitly skip the instruction because if the HLT state is set,
3309 * then the instruction is already executing and RIP has already been
3310 * advanced.
3311 */
3312 if (kvm_hlt_in_guest(vcpu->kvm) &&
3313 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
3314 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
3315}
3316
Wanpeng Licfcd20e2017-07-13 18:30:39 -07003317static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02003318{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003319 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07003320 unsigned nr = vcpu->arch.exception.nr;
3321 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07003322 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01003323 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003324
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01003325 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003326 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01003327 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
3328 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003329
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003330 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05003331 int inc_eip = 0;
3332 if (kvm_exception_is_soft(nr))
3333 inc_eip = vcpu->arch.event_exit_inst_len;
3334 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02003335 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003336 return;
3337 }
3338
Sean Christophersonadd5ff72018-03-23 09:34:00 -07003339 WARN_ON_ONCE(vmx->emulation_required);
3340
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003341 if (kvm_exception_is_soft(nr)) {
3342 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
3343 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01003344 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
3345 } else
3346 intr_info |= INTR_TYPE_HARD_EXCEPTION;
3347
3348 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Wanpeng Licaa057a2018-03-12 04:53:03 -07003349
3350 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02003351}
3352
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003353static bool vmx_rdtscp_supported(void)
3354{
3355 return cpu_has_vmx_rdtscp();
3356}
3357
Mao, Junjiead756a12012-07-02 01:18:48 +00003358static bool vmx_invpcid_supported(void)
3359{
Junaid Shahideb4b2482018-06-27 14:59:14 -07003360 return cpu_has_vmx_invpcid();
Mao, Junjiead756a12012-07-02 01:18:48 +00003361}
3362
Avi Kivity6aa8b732006-12-10 02:21:36 -08003363/*
Eddie Donga75beee2007-05-17 18:55:15 +03003364 * Swap MSR entry in host/guest MSR entry array.
3365 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10003366static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03003367{
Avi Kivity26bb0982009-09-07 11:14:12 +03003368 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003369
3370 tmp = vmx->guest_msrs[to];
3371 vmx->guest_msrs[to] = vmx->guest_msrs[from];
3372 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03003373}
3374
3375/*
Avi Kivitye38aea32007-04-19 13:22:48 +03003376 * Set up the vmcs to automatically save and restore system
3377 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
3378 * mode, as fiddling with msrs is very expensive.
3379 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10003380static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03003381{
Avi Kivity26bb0982009-09-07 11:14:12 +03003382 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03003383
Eddie Donga75beee2007-05-17 18:55:15 +03003384 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03003385#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10003386 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10003387 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03003388 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10003389 move_msr_up(vmx, index, save_nmsrs++);
3390 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03003391 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10003392 move_msr_up(vmx, index, save_nmsrs++);
3393 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03003394 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10003395 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003396 index = __find_msr_index(vmx, MSR_TSC_AUX);
Radim Krčmářd6321d42017-08-05 00:12:49 +02003397 if (index >= 0 && guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003398 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03003399 /*
Brian Gerst8c065852010-07-17 09:03:26 -04003400 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03003401 * if efer.sce is enabled.
3402 */
Brian Gerst8c065852010-07-17 09:03:26 -04003403 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02003404 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10003405 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03003406 }
Eddie Donga75beee2007-05-17 18:55:15 +03003407#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02003408 index = __find_msr_index(vmx, MSR_EFER);
3409 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03003410 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03003411
Avi Kivity26bb0982009-09-07 11:14:12 +03003412 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02003413
Yang Zhang8d146952013-01-25 10:18:50 +08003414 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01003415 vmx_update_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03003416}
3417
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003418static u64 vmx_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003419{
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003420 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003421
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02003422 if (is_guest_mode(vcpu) &&
3423 (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING))
3424 return vcpu->arch.tsc_offset - vmcs12->tsc_offset;
3425
3426 return vcpu->arch.tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003427}
3428
3429/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10003430 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08003431 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10003432static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003433{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03003434 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03003435 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03003436 * We're here if L1 chose not to trap WRMSR to TSC. According
3437 * to the spec, this should set L1's TSC; The offset that L1
3438 * set for L2 remains unchanged, and still needs to be added
3439 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03003440 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03003441 struct vmcs12 *vmcs12;
Nadav Har'El27fc51b2011-08-02 15:54:52 +03003442 /* recalculate vmcs02.TSC_OFFSET: */
3443 vmcs12 = get_vmcs12(vcpu);
3444 vmcs_write64(TSC_OFFSET, offset +
3445 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
3446 vmcs12->tsc_offset : 0));
3447 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09003448 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
3449 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03003450 vmcs_write64(TSC_OFFSET, offset);
3451 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003452}
3453
Nadav Har'El801d3422011-05-25 23:02:23 +03003454/*
3455 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
3456 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
3457 * all guests if the "nested" module option is off, and can also be disabled
3458 * for a single guest by disabling its VMX cpuid bit.
3459 */
3460static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
3461{
Radim Krčmářd6321d42017-08-05 00:12:49 +02003462 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03003463}
3464
Avi Kivity6aa8b732006-12-10 02:21:36 -08003465/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003466 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
3467 * returned for the various VMX controls MSRs when nested VMX is enabled.
3468 * The same values should also be used to verify that vmcs12 control fields are
3469 * valid during nested entry from L1 to L2.
3470 * Each of these control msrs has a low and high 32-bit half: A low bit is on
3471 * if the corresponding bit in the (32-bit) control field *must* be on, and a
3472 * bit in the high half is on if the corresponding bit in the control field
3473 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003474 */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003475static void nested_vmx_setup_ctls_msrs(struct nested_vmx_msrs *msrs, bool apicv)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003476{
Paolo Bonzini13893092018-02-26 13:40:09 +01003477 if (!nested) {
3478 memset(msrs, 0, sizeof(*msrs));
3479 return;
3480 }
3481
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003482 /*
3483 * Note that as a general rule, the high half of the MSRs (bits in
3484 * the control fields which may be 1) should be initialized by the
3485 * intersection of the underlying hardware's MSR (i.e., features which
3486 * can be supported) and the list of features we want to expose -
3487 * because they are known to be properly supported in our code.
3488 * Also, usually, the low half of the MSRs (bits which must be 1) can
3489 * be set to 0, meaning that L1 may turn off any of these bits. The
3490 * reason is that if one of these bits is necessary, it will appear
3491 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
3492 * fields of vmcs01 and vmcs02, will turn these bits off - and
Paolo Bonzini7313c692017-07-27 10:31:25 +02003493 * nested_vmx_exit_reflected() will not pass related exits to L1.
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003494 * These rules have exceptions below.
3495 */
3496
3497 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01003498 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003499 msrs->pinbased_ctls_low,
3500 msrs->pinbased_ctls_high);
3501 msrs->pinbased_ctls_low |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003502 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003503 msrs->pinbased_ctls_high &=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003504 PIN_BASED_EXT_INTR_MASK |
3505 PIN_BASED_NMI_EXITING |
Paolo Bonzini13893092018-02-26 13:40:09 +01003506 PIN_BASED_VIRTUAL_NMIS |
3507 (apicv ? PIN_BASED_POSTED_INTR : 0);
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003508 msrs->pinbased_ctls_high |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003509 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01003510 PIN_BASED_VMX_PREEMPTION_TIMER;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003511
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02003512 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08003513 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003514 msrs->exit_ctls_low,
3515 msrs->exit_ctls_high);
3516 msrs->exit_ctls_low =
Wincy Vanb9c237b2015-02-03 23:56:30 +08003517 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04003518
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003519 msrs->exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003520#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08003521 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003522#endif
Jan Kiszkaf4124502014-03-07 20:03:13 +01003523 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003524 msrs->exit_ctls_high |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003525 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf4124502014-03-07 20:03:13 +01003526 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04003527 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
3528
Jan Kiszka2996fca2014-06-16 13:59:43 +02003529 /* We support free control of debug control saving. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003530 msrs->exit_ctls_low &= ~VM_EXIT_SAVE_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02003531
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003532 /* entry controls */
3533 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003534 msrs->entry_ctls_low,
3535 msrs->entry_ctls_high);
3536 msrs->entry_ctls_low =
Wincy Vanb9c237b2015-02-03 23:56:30 +08003537 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003538 msrs->entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02003539#ifdef CONFIG_X86_64
3540 VM_ENTRY_IA32E_MODE |
3541#endif
3542 VM_ENTRY_LOAD_IA32_PAT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003543 msrs->entry_ctls_high |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003544 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Jan Kiszka57435342013-08-06 10:39:56 +02003545
Jan Kiszka2996fca2014-06-16 13:59:43 +02003546 /* We support free control of debug control loading. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003547 msrs->entry_ctls_low &= ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02003548
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003549 /* cpu-based controls */
3550 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003551 msrs->procbased_ctls_low,
3552 msrs->procbased_ctls_high);
3553 msrs->procbased_ctls_low =
Wincy Vanb9c237b2015-02-03 23:56:30 +08003554 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003555 msrs->procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01003556 CPU_BASED_VIRTUAL_INTR_PENDING |
3557 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003558 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
3559 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
3560 CPU_BASED_CR3_STORE_EXITING |
3561#ifdef CONFIG_X86_64
3562 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
3563#endif
3564 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03003565 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
3566 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
3567 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
3568 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003569 /*
3570 * We can allow some features even when not supported by the
3571 * hardware. For example, L1 can specify an MSR bitmap - and we
3572 * can use it to avoid exits to L1 - even when L0 runs L2
3573 * without MSR bitmaps.
3574 */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003575 msrs->procbased_ctls_high |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003576 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02003577 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003578
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02003579 /* We support free control of CR3 access interception. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003580 msrs->procbased_ctls_low &=
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02003581 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
3582
Paolo Bonzini80154d72017-08-24 13:55:35 +02003583 /*
3584 * secondary cpu-based controls. Do not include those that
3585 * depend on CPUID bits, they are added later by vmx_cpuid_update.
3586 */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003587 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003588 msrs->secondary_ctls_low,
3589 msrs->secondary_ctls_high);
3590 msrs->secondary_ctls_low = 0;
3591 msrs->secondary_ctls_high &=
Jan Kiszkad6851fb2013-02-23 22:34:39 +01003592 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini1b073042016-10-25 16:06:30 +02003593 SECONDARY_EXEC_DESC |
Wincy Vanf2b93282015-02-03 23:56:03 +08003594 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wincy Van82f0dd42015-02-03 23:57:18 +08003595 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08003596 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Paolo Bonzini3db13482017-08-24 14:48:03 +02003597 SECONDARY_EXEC_WBINVD_EXITING;
Liran Alon32c7acf2018-06-23 02:35:11 +03003598 /*
3599 * We can emulate "VMCS shadowing," even if the hardware
3600 * doesn't support it.
3601 */
3602 msrs->secondary_ctls_high |=
3603 SECONDARY_EXEC_SHADOW_VMCS;
Jan Kiszkac18911a2013-03-13 16:06:41 +01003604
Nadav Har'Elafa61f72013-08-07 14:59:22 +02003605 if (enable_ept) {
3606 /* nested EPT: emulate EPT also to L1 */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003607 msrs->secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01003608 SECONDARY_EXEC_ENABLE_EPT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003609 msrs->ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01003610 VMX_EPTP_WB_BIT | VMX_EPT_INVEPT_BIT;
Bandan Das02120c42016-07-12 18:18:52 -04003611 if (cpu_has_vmx_ept_execute_only())
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003612 msrs->ept_caps |=
Bandan Das02120c42016-07-12 18:18:52 -04003613 VMX_EPT_EXECUTE_ONLY_BIT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003614 msrs->ept_caps &= vmx_capability.ept;
3615 msrs->ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01003616 VMX_EPT_EXTENT_CONTEXT_BIT | VMX_EPT_2MB_PAGE_BIT |
3617 VMX_EPT_1GB_PAGE_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04003618 if (enable_ept_ad_bits) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003619 msrs->secondary_ctls_high |=
Bandan Das03efce62017-05-05 15:25:15 -04003620 SECONDARY_EXEC_ENABLE_PML;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003621 msrs->ept_caps |= VMX_EPT_AD_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04003622 }
David Hildenbrand1c13bff2017-08-24 20:51:33 +02003623 }
Nadav Har'Elafa61f72013-08-07 14:59:22 +02003624
Bandan Das27c42a12017-08-03 15:54:42 -04003625 if (cpu_has_vmx_vmfunc()) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003626 msrs->secondary_ctls_high |=
Bandan Das27c42a12017-08-03 15:54:42 -04003627 SECONDARY_EXEC_ENABLE_VMFUNC;
Bandan Das41ab9372017-08-03 15:54:43 -04003628 /*
3629 * Advertise EPTP switching unconditionally
3630 * since we emulate it
3631 */
Wanpeng Li575b3a22017-10-19 07:00:34 +08003632 if (enable_ept)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003633 msrs->vmfunc_controls =
Wanpeng Li575b3a22017-10-19 07:00:34 +08003634 VMX_VMFUNC_EPTP_SWITCHING;
Bandan Das27c42a12017-08-03 15:54:42 -04003635 }
3636
Paolo Bonzinief697a72016-03-18 16:58:38 +01003637 /*
3638 * Old versions of KVM use the single-context version without
3639 * checking for support, so declare that it is supported even
3640 * though it is treated as global context. The alternative is
3641 * not failing the single-context invvpid, and it is worse.
3642 */
Wanpeng Li63cb6d52017-03-20 21:18:53 -07003643 if (enable_vpid) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003644 msrs->secondary_ctls_high |=
Wanpeng Li63cb6d52017-03-20 21:18:53 -07003645 SECONDARY_EXEC_ENABLE_VPID;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003646 msrs->vpid_caps = VMX_VPID_INVVPID_BIT |
Jan Dakinevichbcdde302016-10-28 07:00:30 +03003647 VMX_VPID_EXTENT_SUPPORTED_MASK;
David Hildenbrand1c13bff2017-08-24 20:51:33 +02003648 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07003649
Radim Krčmář0790ec12015-03-17 14:02:32 +01003650 if (enable_unrestricted_guest)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003651 msrs->secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01003652 SECONDARY_EXEC_UNRESTRICTED_GUEST;
3653
Jan Kiszkac18911a2013-03-13 16:06:41 +01003654 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08003655 rdmsr(MSR_IA32_VMX_MISC,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003656 msrs->misc_low,
3657 msrs->misc_high);
3658 msrs->misc_low &= VMX_MISC_SAVE_EFER_LMA;
3659 msrs->misc_low |=
Jim Mattsonf4160e42018-05-29 09:11:33 -07003660 MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS |
Wincy Vanb9c237b2015-02-03 23:56:30 +08003661 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf4124502014-03-07 20:03:13 +01003662 VMX_MISC_ACTIVITY_HLT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003663 msrs->misc_high = 0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003664
3665 /*
3666 * This MSR reports some information about VMX support. We
3667 * should return information about the VMX we emulate for the
3668 * guest, and the VMCS structure we give it - not about the
3669 * VMX support of the underlying hardware.
3670 */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003671 msrs->basic =
David Matlack62cc6b9d2016-11-29 18:14:07 -08003672 VMCS12_REVISION |
3673 VMX_BASIC_TRUE_CTLS |
3674 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
3675 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
3676
3677 if (cpu_has_vmx_basic_inout())
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003678 msrs->basic |= VMX_BASIC_INOUT;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003679
3680 /*
David Matlack8322ebb2016-11-29 18:14:09 -08003681 * These MSRs specify bits which the guest must keep fixed on
David Matlack62cc6b9d2016-11-29 18:14:07 -08003682 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
3683 * We picked the standard core2 setting.
3684 */
3685#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
3686#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003687 msrs->cr0_fixed0 = VMXON_CR0_ALWAYSON;
3688 msrs->cr4_fixed0 = VMXON_CR4_ALWAYSON;
David Matlack8322ebb2016-11-29 18:14:09 -08003689
3690 /* These MSRs specify bits which the guest must keep fixed off. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003691 rdmsrl(MSR_IA32_VMX_CR0_FIXED1, msrs->cr0_fixed1);
3692 rdmsrl(MSR_IA32_VMX_CR4_FIXED1, msrs->cr4_fixed1);
David Matlack62cc6b9d2016-11-29 18:14:07 -08003693
3694 /* highest index: VMX_PREEMPTION_TIMER_VALUE */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003695 msrs->vmcs_enum = VMCS12_MAX_FIELD_INDEX << 1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003696}
3697
David Matlack38991522016-11-29 18:14:08 -08003698/*
3699 * if fixed0[i] == 1: val[i] must be 1
3700 * if fixed1[i] == 0: val[i] must be 0
3701 */
3702static inline bool fixed_bits_valid(u64 val, u64 fixed0, u64 fixed1)
3703{
3704 return ((val & fixed1) | fixed0) == val;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003705}
3706
3707static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
3708{
David Matlack38991522016-11-29 18:14:08 -08003709 return fixed_bits_valid(control, low, high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003710}
3711
3712static inline u64 vmx_control_msr(u32 low, u32 high)
3713{
3714 return low | ((u64)high << 32);
3715}
3716
David Matlack62cc6b9d2016-11-29 18:14:07 -08003717static bool is_bitwise_subset(u64 superset, u64 subset, u64 mask)
3718{
3719 superset &= mask;
3720 subset &= mask;
3721
3722 return (superset | subset) == superset;
3723}
3724
3725static int vmx_restore_vmx_basic(struct vcpu_vmx *vmx, u64 data)
3726{
3727 const u64 feature_and_reserved =
3728 /* feature (except bit 48; see below) */
3729 BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) |
3730 /* reserved */
3731 BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56);
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003732 u64 vmx_basic = vmx->nested.msrs.basic;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003733
3734 if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved))
3735 return -EINVAL;
3736
3737 /*
3738 * KVM does not emulate a version of VMX that constrains physical
3739 * addresses of VMX structures (e.g. VMCS) to 32-bits.
3740 */
3741 if (data & BIT_ULL(48))
3742 return -EINVAL;
3743
3744 if (vmx_basic_vmcs_revision_id(vmx_basic) !=
3745 vmx_basic_vmcs_revision_id(data))
3746 return -EINVAL;
3747
3748 if (vmx_basic_vmcs_size(vmx_basic) > vmx_basic_vmcs_size(data))
3749 return -EINVAL;
3750
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003751 vmx->nested.msrs.basic = data;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003752 return 0;
3753}
3754
3755static int
3756vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3757{
3758 u64 supported;
3759 u32 *lowp, *highp;
3760
3761 switch (msr_index) {
3762 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003763 lowp = &vmx->nested.msrs.pinbased_ctls_low;
3764 highp = &vmx->nested.msrs.pinbased_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003765 break;
3766 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003767 lowp = &vmx->nested.msrs.procbased_ctls_low;
3768 highp = &vmx->nested.msrs.procbased_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003769 break;
3770 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003771 lowp = &vmx->nested.msrs.exit_ctls_low;
3772 highp = &vmx->nested.msrs.exit_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003773 break;
3774 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003775 lowp = &vmx->nested.msrs.entry_ctls_low;
3776 highp = &vmx->nested.msrs.entry_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003777 break;
3778 case MSR_IA32_VMX_PROCBASED_CTLS2:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003779 lowp = &vmx->nested.msrs.secondary_ctls_low;
3780 highp = &vmx->nested.msrs.secondary_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003781 break;
3782 default:
3783 BUG();
3784 }
3785
3786 supported = vmx_control_msr(*lowp, *highp);
3787
3788 /* Check must-be-1 bits are still 1. */
3789 if (!is_bitwise_subset(data, supported, GENMASK_ULL(31, 0)))
3790 return -EINVAL;
3791
3792 /* Check must-be-0 bits are still 0. */
3793 if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32)))
3794 return -EINVAL;
3795
3796 *lowp = data;
3797 *highp = data >> 32;
3798 return 0;
3799}
3800
3801static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data)
3802{
3803 const u64 feature_and_reserved_bits =
3804 /* feature */
3805 BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) |
3806 BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) |
3807 /* reserved */
3808 GENMASK_ULL(13, 9) | BIT_ULL(31);
3809 u64 vmx_misc;
3810
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003811 vmx_misc = vmx_control_msr(vmx->nested.msrs.misc_low,
3812 vmx->nested.msrs.misc_high);
David Matlack62cc6b9d2016-11-29 18:14:07 -08003813
3814 if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits))
3815 return -EINVAL;
3816
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003817 if ((vmx->nested.msrs.pinbased_ctls_high &
David Matlack62cc6b9d2016-11-29 18:14:07 -08003818 PIN_BASED_VMX_PREEMPTION_TIMER) &&
3819 vmx_misc_preemption_timer_rate(data) !=
3820 vmx_misc_preemption_timer_rate(vmx_misc))
3821 return -EINVAL;
3822
3823 if (vmx_misc_cr3_count(data) > vmx_misc_cr3_count(vmx_misc))
3824 return -EINVAL;
3825
3826 if (vmx_misc_max_msr(data) > vmx_misc_max_msr(vmx_misc))
3827 return -EINVAL;
3828
3829 if (vmx_misc_mseg_revid(data) != vmx_misc_mseg_revid(vmx_misc))
3830 return -EINVAL;
3831
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003832 vmx->nested.msrs.misc_low = data;
3833 vmx->nested.msrs.misc_high = data >> 32;
Jim Mattsonf4160e42018-05-29 09:11:33 -07003834
3835 /*
3836 * If L1 has read-only VM-exit information fields, use the
3837 * less permissive vmx_vmwrite_bitmap to specify write
3838 * permissions for the shadow VMCS.
3839 */
3840 if (enable_shadow_vmcs && !nested_cpu_has_vmwrite_any_field(&vmx->vcpu))
3841 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
3842
David Matlack62cc6b9d2016-11-29 18:14:07 -08003843 return 0;
3844}
3845
3846static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data)
3847{
3848 u64 vmx_ept_vpid_cap;
3849
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003850 vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.msrs.ept_caps,
3851 vmx->nested.msrs.vpid_caps);
David Matlack62cc6b9d2016-11-29 18:14:07 -08003852
3853 /* Every bit is either reserved or a feature bit. */
3854 if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL))
3855 return -EINVAL;
3856
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003857 vmx->nested.msrs.ept_caps = data;
3858 vmx->nested.msrs.vpid_caps = data >> 32;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003859 return 0;
3860}
3861
3862static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3863{
3864 u64 *msr;
3865
3866 switch (msr_index) {
3867 case MSR_IA32_VMX_CR0_FIXED0:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003868 msr = &vmx->nested.msrs.cr0_fixed0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003869 break;
3870 case MSR_IA32_VMX_CR4_FIXED0:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003871 msr = &vmx->nested.msrs.cr4_fixed0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003872 break;
3873 default:
3874 BUG();
3875 }
3876
3877 /*
3878 * 1 bits (which indicates bits which "must-be-1" during VMX operation)
3879 * must be 1 in the restored value.
3880 */
3881 if (!is_bitwise_subset(data, *msr, -1ULL))
3882 return -EINVAL;
3883
3884 *msr = data;
3885 return 0;
3886}
3887
3888/*
3889 * Called when userspace is restoring VMX MSRs.
3890 *
3891 * Returns 0 on success, non-0 otherwise.
3892 */
3893static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
3894{
3895 struct vcpu_vmx *vmx = to_vmx(vcpu);
3896
Jim Mattsona943ac52018-05-29 09:11:32 -07003897 /*
3898 * Don't allow changes to the VMX capability MSRs while the vCPU
3899 * is in VMX operation.
3900 */
3901 if (vmx->nested.vmxon)
3902 return -EBUSY;
3903
David Matlack62cc6b9d2016-11-29 18:14:07 -08003904 switch (msr_index) {
3905 case MSR_IA32_VMX_BASIC:
3906 return vmx_restore_vmx_basic(vmx, data);
3907 case MSR_IA32_VMX_PINBASED_CTLS:
3908 case MSR_IA32_VMX_PROCBASED_CTLS:
3909 case MSR_IA32_VMX_EXIT_CTLS:
3910 case MSR_IA32_VMX_ENTRY_CTLS:
3911 /*
3912 * The "non-true" VMX capability MSRs are generated from the
3913 * "true" MSRs, so we do not support restoring them directly.
3914 *
3915 * If userspace wants to emulate VMX_BASIC[55]=0, userspace
3916 * should restore the "true" MSRs with the must-be-1 bits
3917 * set according to the SDM Vol 3. A.2 "RESERVED CONTROLS AND
3918 * DEFAULT SETTINGS".
3919 */
3920 return -EINVAL;
3921 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3922 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3923 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3924 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3925 case MSR_IA32_VMX_PROCBASED_CTLS2:
3926 return vmx_restore_control_msr(vmx, msr_index, data);
3927 case MSR_IA32_VMX_MISC:
3928 return vmx_restore_vmx_misc(vmx, data);
3929 case MSR_IA32_VMX_CR0_FIXED0:
3930 case MSR_IA32_VMX_CR4_FIXED0:
3931 return vmx_restore_fixed0_msr(vmx, msr_index, data);
3932 case MSR_IA32_VMX_CR0_FIXED1:
3933 case MSR_IA32_VMX_CR4_FIXED1:
3934 /*
3935 * These MSRs are generated based on the vCPU's CPUID, so we
3936 * do not support restoring them directly.
3937 */
3938 return -EINVAL;
3939 case MSR_IA32_VMX_EPT_VPID_CAP:
3940 return vmx_restore_vmx_ept_vpid_cap(vmx, data);
3941 case MSR_IA32_VMX_VMCS_ENUM:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003942 vmx->nested.msrs.vmcs_enum = data;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003943 return 0;
3944 default:
3945 /*
3946 * The rest of the VMX capability MSRs do not support restore.
3947 */
3948 return -EINVAL;
3949 }
3950}
3951
Jan Kiszkacae50132014-01-04 18:47:22 +01003952/* Returns 0 on success, non-0 otherwise. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003953static int vmx_get_vmx_msr(struct nested_vmx_msrs *msrs, u32 msr_index, u64 *pdata)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003954{
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003955 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003956 case MSR_IA32_VMX_BASIC:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003957 *pdata = msrs->basic;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003958 break;
3959 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3960 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003961 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003962 msrs->pinbased_ctls_low,
3963 msrs->pinbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003964 if (msr_index == MSR_IA32_VMX_PINBASED_CTLS)
3965 *pdata |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003966 break;
3967 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3968 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003969 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003970 msrs->procbased_ctls_low,
3971 msrs->procbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003972 if (msr_index == MSR_IA32_VMX_PROCBASED_CTLS)
3973 *pdata |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003974 break;
3975 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3976 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003977 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003978 msrs->exit_ctls_low,
3979 msrs->exit_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003980 if (msr_index == MSR_IA32_VMX_EXIT_CTLS)
3981 *pdata |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003982 break;
3983 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3984 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003985 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003986 msrs->entry_ctls_low,
3987 msrs->entry_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003988 if (msr_index == MSR_IA32_VMX_ENTRY_CTLS)
3989 *pdata |= VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003990 break;
3991 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003992 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003993 msrs->misc_low,
3994 msrs->misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003995 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003996 case MSR_IA32_VMX_CR0_FIXED0:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003997 *pdata = msrs->cr0_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003998 break;
3999 case MSR_IA32_VMX_CR0_FIXED1:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004000 *pdata = msrs->cr0_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004001 break;
4002 case MSR_IA32_VMX_CR4_FIXED0:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004003 *pdata = msrs->cr4_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004004 break;
4005 case MSR_IA32_VMX_CR4_FIXED1:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004006 *pdata = msrs->cr4_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004007 break;
4008 case MSR_IA32_VMX_VMCS_ENUM:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004009 *pdata = msrs->vmcs_enum;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004010 break;
4011 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08004012 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004013 msrs->secondary_ctls_low,
4014 msrs->secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004015 break;
4016 case MSR_IA32_VMX_EPT_VPID_CAP:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004017 *pdata = msrs->ept_caps |
4018 ((u64)msrs->vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004019 break;
Bandan Das27c42a12017-08-03 15:54:42 -04004020 case MSR_IA32_VMX_VMFUNC:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004021 *pdata = msrs->vmfunc_controls;
Bandan Das27c42a12017-08-03 15:54:42 -04004022 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004023 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004024 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08004025 }
4026
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004027 return 0;
4028}
4029
Haozhong Zhang37e4c992016-06-22 14:59:55 +08004030static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
4031 uint64_t val)
4032{
4033 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
4034
4035 return !(val & ~valid_bits);
4036}
4037
Tom Lendacky801e4592018-02-21 13:39:51 -06004038static int vmx_get_msr_feature(struct kvm_msr_entry *msr)
4039{
Paolo Bonzini13893092018-02-26 13:40:09 +01004040 switch (msr->index) {
4041 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
4042 if (!nested)
4043 return 1;
4044 return vmx_get_vmx_msr(&vmcs_config.nested, msr->index, &msr->data);
4045 default:
4046 return 1;
4047 }
4048
4049 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06004050}
4051
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03004052/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08004053 * Reads an msr value (of 'msr_index') into 'pdata'.
4054 * Returns 0 on success, non-0 otherwise.
4055 * Assumes vcpu_load() was already called.
4056 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004057static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004058{
Borislav Petkova6cb0992017-12-20 12:50:28 +01004059 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03004060 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004061
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004062 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004063#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004064 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004065 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004066 break;
4067 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004068 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004069 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03004070 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07004071 msr_info->data = vmx_read_guest_kernel_gs_base(vmx);
Avi Kivity44ea2b12009-09-06 15:55:37 +03004072 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03004073#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08004074 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004075 return kvm_get_msr_common(vcpu, msr_info);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004076 case MSR_IA32_SPEC_CTRL:
4077 if (!msr_info->host_initiated &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004078 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
4079 return 1;
4080
4081 msr_info->data = to_vmx(vcpu)->spec_ctrl;
4082 break;
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +01004083 case MSR_IA32_ARCH_CAPABILITIES:
4084 if (!msr_info->host_initiated &&
4085 !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES))
4086 return 1;
4087 msr_info->data = to_vmx(vcpu)->arch_capabilities;
4088 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004089 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004090 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004091 break;
4092 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004093 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004094 break;
4095 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004096 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004097 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00004098 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08004099 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02004100 (!msr_info->host_initiated &&
4101 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004102 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004103 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00004104 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004105 case MSR_IA32_MCG_EXT_CTL:
4106 if (!msr_info->host_initiated &&
Borislav Petkova6cb0992017-12-20 12:50:28 +01004107 !(vmx->msr_ia32_feature_control &
Ashok Rajc45dcc72016-06-22 14:59:56 +08004108 FEATURE_CONTROL_LMCE))
Jan Kiszkacae50132014-01-04 18:47:22 +01004109 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004110 msr_info->data = vcpu->arch.mcg_ext_ctl;
4111 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01004112 case MSR_IA32_FEATURE_CONTROL:
Borislav Petkova6cb0992017-12-20 12:50:28 +01004113 msr_info->data = vmx->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01004114 break;
4115 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
4116 if (!nested_vmx_allowed(vcpu))
4117 return 1;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004118 return vmx_get_vmx_msr(&vmx->nested.msrs, msr_info->index,
4119 &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08004120 case MSR_IA32_XSS:
4121 if (!vmx_xsaves_supported())
4122 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004123 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08004124 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004125 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02004126 if (!msr_info->host_initiated &&
4127 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004128 return 1;
4129 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004130 default:
Borislav Petkova6cb0992017-12-20 12:50:28 +01004131 msr = find_msr_entry(vmx, msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08004132 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004133 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08004134 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004135 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004136 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004137 }
4138
Avi Kivity6aa8b732006-12-10 02:21:36 -08004139 return 0;
4140}
4141
Jan Kiszkacae50132014-01-04 18:47:22 +01004142static void vmx_leave_nested(struct kvm_vcpu *vcpu);
4143
Avi Kivity6aa8b732006-12-10 02:21:36 -08004144/*
4145 * Writes msr value into into the appropriate "register".
4146 * Returns 0 on success, non-0 otherwise.
4147 * Assumes vcpu_load() was already called.
4148 */
Will Auld8fe8ab42012-11-29 12:42:12 -08004149static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004150{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004151 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03004152 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03004153 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08004154 u32 msr_index = msr_info->index;
4155 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03004156
Avi Kivity6aa8b732006-12-10 02:21:36 -08004157 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08004158 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08004159 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03004160 break;
Avi Kivity16175a72009-03-23 22:13:44 +02004161#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004162 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03004163 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004164 vmcs_writel(GUEST_FS_BASE, data);
4165 break;
4166 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03004167 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004168 vmcs_writel(GUEST_GS_BASE, data);
4169 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03004170 case MSR_KERNEL_GS_BASE:
Sean Christopherson678e3152018-07-23 12:32:43 -07004171 vmx_write_guest_kernel_gs_base(vmx, data);
Avi Kivity44ea2b12009-09-06 15:55:37 +03004172 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004173#endif
4174 case MSR_IA32_SYSENTER_CS:
4175 vmcs_write32(GUEST_SYSENTER_CS, data);
4176 break;
4177 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02004178 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004179 break;
4180 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02004181 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004182 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00004183 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08004184 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02004185 (!msr_info->host_initiated &&
4186 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01004187 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08004188 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07004189 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004190 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08004191 vmcs_write64(GUEST_BNDCFGS, data);
4192 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004193 case MSR_IA32_SPEC_CTRL:
4194 if (!msr_info->host_initiated &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004195 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
4196 return 1;
4197
4198 /* The STIBP bit doesn't fault even if it's not advertised */
Konrad Rzeszutek Wilk9f65fb22018-05-09 21:41:38 +02004199 if (data & ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD))
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01004200 return 1;
4201
4202 vmx->spec_ctrl = data;
4203
4204 if (!data)
4205 break;
4206
4207 /*
4208 * For non-nested:
4209 * When it's written (to non-zero) for the first time, pass
4210 * it through.
4211 *
4212 * For nested:
4213 * The handling of the MSR bitmap for L2 guests is done in
4214 * nested_vmx_merge_msr_bitmap. We should not touch the
4215 * vmcs02.msr_bitmap here since it gets completely overwritten
4216 * in the merging. We update the vmcs01 here for L1 as well
4217 * since it will end up touching the MSR anyway now.
4218 */
4219 vmx_disable_intercept_for_msr(vmx->vmcs01.msr_bitmap,
4220 MSR_IA32_SPEC_CTRL,
4221 MSR_TYPE_RW);
4222 break;
Ashok Raj15d45072018-02-01 22:59:43 +01004223 case MSR_IA32_PRED_CMD:
4224 if (!msr_info->host_initiated &&
Ashok Raj15d45072018-02-01 22:59:43 +01004225 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
4226 return 1;
4227
4228 if (data & ~PRED_CMD_IBPB)
4229 return 1;
4230
4231 if (!data)
4232 break;
4233
4234 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
4235
4236 /*
4237 * For non-nested:
4238 * When it's written (to non-zero) for the first time, pass
4239 * it through.
4240 *
4241 * For nested:
4242 * The handling of the MSR bitmap for L2 guests is done in
4243 * nested_vmx_merge_msr_bitmap. We should not touch the
4244 * vmcs02.msr_bitmap here since it gets completely overwritten
4245 * in the merging.
4246 */
4247 vmx_disable_intercept_for_msr(vmx->vmcs01.msr_bitmap, MSR_IA32_PRED_CMD,
4248 MSR_TYPE_W);
4249 break;
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +01004250 case MSR_IA32_ARCH_CAPABILITIES:
4251 if (!msr_info->host_initiated)
4252 return 1;
4253 vmx->arch_capabilities = data;
4254 break;
Sheng Yang468d4722008-10-09 16:01:55 +08004255 case MSR_IA32_CR_PAT:
4256 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03004257 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
4258 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08004259 vmcs_write64(GUEST_IA32_PAT, data);
4260 vcpu->arch.pat = data;
4261 break;
4262 }
Will Auld8fe8ab42012-11-29 12:42:12 -08004263 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004264 break;
Will Auldba904632012-11-29 12:42:50 -08004265 case MSR_IA32_TSC_ADJUST:
4266 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004267 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004268 case MSR_IA32_MCG_EXT_CTL:
4269 if ((!msr_info->host_initiated &&
4270 !(to_vmx(vcpu)->msr_ia32_feature_control &
4271 FEATURE_CONTROL_LMCE)) ||
4272 (data & ~MCG_EXT_CTL_LMCE_EN))
4273 return 1;
4274 vcpu->arch.mcg_ext_ctl = data;
4275 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01004276 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08004277 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08004278 (to_vmx(vcpu)->msr_ia32_feature_control &
Jan Kiszkacae50132014-01-04 18:47:22 +01004279 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
4280 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08004281 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01004282 if (msr_info->host_initiated && data == 0)
4283 vmx_leave_nested(vcpu);
4284 break;
4285 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08004286 if (!msr_info->host_initiated)
4287 return 1; /* they are read-only */
4288 if (!nested_vmx_allowed(vcpu))
4289 return 1;
4290 return vmx_set_vmx_msr(vcpu, msr_index, data);
Wanpeng Li20300092014-12-02 19:14:59 +08004291 case MSR_IA32_XSS:
4292 if (!vmx_xsaves_supported())
4293 return 1;
4294 /*
4295 * The only supported bit as of Skylake is bit 8, but
4296 * it is not supported on KVM.
4297 */
4298 if (data != 0)
4299 return 1;
4300 vcpu->arch.ia32_xss = data;
4301 if (vcpu->arch.ia32_xss != host_xss)
4302 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -04004303 vcpu->arch.ia32_xss, host_xss, false);
Wanpeng Li20300092014-12-02 19:14:59 +08004304 else
4305 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
4306 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004307 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02004308 if (!msr_info->host_initiated &&
4309 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004310 return 1;
4311 /* Check reserved bit, higher 32 bits should be zero */
4312 if ((data >> 32) != 0)
4313 return 1;
4314 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004315 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10004316 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08004317 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07004318 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08004319 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03004320 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
4321 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07004322 ret = kvm_set_shared_msr(msr->index, msr->data,
4323 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03004324 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07004325 if (ret)
4326 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03004327 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08004328 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004329 }
Will Auld8fe8ab42012-11-29 12:42:12 -08004330 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004331 }
4332
Eddie Dong2cc51562007-05-21 07:28:09 +03004333 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004334}
4335
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004336static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004337{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004338 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
4339 switch (reg) {
4340 case VCPU_REGS_RSP:
4341 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
4342 break;
4343 case VCPU_REGS_RIP:
4344 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
4345 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004346 case VCPU_EXREG_PDPTR:
4347 if (enable_ept)
4348 ept_save_pdptrs(vcpu);
4349 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004350 default:
4351 break;
4352 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004353}
4354
Avi Kivity6aa8b732006-12-10 02:21:36 -08004355static __init int cpu_has_kvm_support(void)
4356{
Eduardo Habkost6210e372008-11-17 19:03:16 -02004357 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004358}
4359
4360static __init int vmx_disabled_by_bios(void)
4361{
4362 u64 msr;
4363
4364 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04004365 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08004366 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04004367 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
4368 && tboot_enabled())
4369 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08004370 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04004371 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08004372 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08004373 && !tboot_enabled()) {
4374 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08004375 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04004376 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08004377 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08004378 /* launched w/o TXT and VMX disabled */
4379 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
4380 && !tboot_enabled())
4381 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04004382 }
4383
4384 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004385}
4386
Dongxiao Xu7725b892010-05-11 18:29:38 +08004387static void kvm_cpu_vmxon(u64 addr)
4388{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01004389 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03004390 intel_pt_handle_vmx(1);
4391
Dongxiao Xu7725b892010-05-11 18:29:38 +08004392 asm volatile (ASM_VMX_VMXON_RAX
4393 : : "a"(&addr), "m"(addr)
4394 : "memory", "cc");
4395}
4396
Radim Krčmář13a34e02014-08-28 15:13:03 +02004397static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004398{
4399 int cpu = raw_smp_processor_id();
4400 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04004401 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004402
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07004403 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02004404 return -EBUSY;
4405
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01004406 /*
4407 * This can happen if we hot-added a CPU but failed to allocate
4408 * VP assist page for it.
4409 */
4410 if (static_branch_unlikely(&enable_evmcs) &&
4411 !hv_get_vp_assist_page(cpu))
4412 return -EFAULT;
4413
Nadav Har'Eld462b812011-05-24 15:26:10 +03004414 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08004415 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
4416 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08004417
4418 /*
4419 * Now we can enable the vmclear operation in kdump
4420 * since the loaded_vmcss_on_cpu list on this cpu
4421 * has been initialized.
4422 *
4423 * Though the cpu is not in VMX operation now, there
4424 * is no problem to enable the vmclear operation
4425 * for the loaded_vmcss_on_cpu list is empty!
4426 */
4427 crash_enable_local_vmclear(cpu);
4428
Avi Kivity6aa8b732006-12-10 02:21:36 -08004429 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04004430
4431 test_bits = FEATURE_CONTROL_LOCKED;
4432 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
4433 if (tboot_enabled())
4434 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
4435
4436 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004437 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04004438 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
4439 }
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01004440 kvm_cpu_vmxon(phys_addr);
David Hildenbrandfdf288b2017-08-24 20:51:29 +02004441 if (enable_ept)
4442 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02004443
4444 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004445}
4446
Nadav Har'Eld462b812011-05-24 15:26:10 +03004447static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03004448{
4449 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03004450 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03004451
Nadav Har'Eld462b812011-05-24 15:26:10 +03004452 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
4453 loaded_vmcss_on_cpu_link)
4454 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03004455}
4456
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02004457
4458/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
4459 * tricks.
4460 */
4461static void kvm_cpu_vmxoff(void)
4462{
4463 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03004464
4465 intel_pt_handle_vmx(0);
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01004466 cr4_clear_bits(X86_CR4_VMXE);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02004467}
4468
Radim Krčmář13a34e02014-08-28 15:13:03 +02004469static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004470{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01004471 vmclear_local_loaded_vmcss();
4472 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004473}
4474
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004475static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04004476 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004477{
4478 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004479 u32 ctl = ctl_min | ctl_opt;
4480
4481 rdmsr(msr, vmx_msr_low, vmx_msr_high);
4482
4483 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
4484 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
4485
4486 /* Ensure minimum (required) set of control bits are supported. */
4487 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004488 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004489
4490 *result = ctl;
4491 return 0;
4492}
4493
Avi Kivity110312c2010-12-21 12:54:20 +02004494static __init bool allow_1_setting(u32 msr, u32 ctl)
4495{
4496 u32 vmx_msr_low, vmx_msr_high;
4497
4498 rdmsr(msr, vmx_msr_low, vmx_msr_high);
4499 return vmx_msr_high & ctl;
4500}
4501
Yang, Sheng002c7f72007-07-31 14:23:01 +03004502static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004503{
4504 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08004505 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004506 u32 _pin_based_exec_control = 0;
4507 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004508 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004509 u32 _vmexit_control = 0;
4510 u32 _vmentry_control = 0;
4511
Paolo Bonzini13893092018-02-26 13:40:09 +01004512 memset(vmcs_conf, 0, sizeof(*vmcs_conf));
Raghavendra K T10166742012-02-07 23:19:20 +05304513 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004514#ifdef CONFIG_X86_64
4515 CPU_BASED_CR8_LOAD_EXITING |
4516 CPU_BASED_CR8_STORE_EXITING |
4517#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08004518 CPU_BASED_CR3_LOAD_EXITING |
4519 CPU_BASED_CR3_STORE_EXITING |
Quan Xu8eb73e22017-12-12 16:44:21 +08004520 CPU_BASED_UNCOND_IO_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004521 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03004522 CPU_BASED_USE_TSC_OFFSETING |
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004523 CPU_BASED_MWAIT_EXITING |
4524 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02004525 CPU_BASED_INVLPG_EXITING |
4526 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06004527
Sheng Yangf78e0e22007-10-29 09:40:42 +08004528 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08004529 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08004530 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004531 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
4532 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004533 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004534#ifdef CONFIG_X86_64
4535 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
4536 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
4537 ~CPU_BASED_CR8_STORE_EXITING;
4538#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08004539 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08004540 min2 = 0;
4541 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08004542 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08004543 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08004544 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004545 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004546 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004547 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Paolo Bonzini0367f202016-07-12 10:44:55 +02004548 SECONDARY_EXEC_DESC |
Mao, Junjiead756a12012-07-02 01:18:48 +00004549 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08004550 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08004551 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03004552 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08004553 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08004554 SECONDARY_EXEC_XSAVES |
David Hildenbrand736fdf72017-08-24 20:51:37 +02004555 SECONDARY_EXEC_RDSEED_EXITING |
4556 SECONDARY_EXEC_RDRAND_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08004557 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04004558 SECONDARY_EXEC_TSC_SCALING |
Sean Christopherson0b665d32018-08-14 09:33:34 -07004559 SECONDARY_EXEC_ENABLE_VMFUNC |
4560 SECONDARY_EXEC_ENCLS_EXITING;
Sheng Yangd56f5462008-04-25 10:13:16 +08004561 if (adjust_vmx_controls(min2, opt2,
4562 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08004563 &_cpu_based_2nd_exec_control) < 0)
4564 return -EIO;
4565 }
4566#ifndef CONFIG_X86_64
4567 if (!(_cpu_based_2nd_exec_control &
4568 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
4569 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
4570#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08004571
4572 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
4573 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08004574 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08004575 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
4576 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08004577
Wanpeng Li61f1dd92017-10-18 16:02:19 -07004578 rdmsr_safe(MSR_IA32_VMX_EPT_VPID_CAP,
4579 &vmx_capability.ept, &vmx_capability.vpid);
4580
Sheng Yangd56f5462008-04-25 10:13:16 +08004581 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03004582 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
4583 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03004584 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
4585 CPU_BASED_CR3_STORE_EXITING |
4586 CPU_BASED_INVLPG_EXITING);
Wanpeng Li61f1dd92017-10-18 16:02:19 -07004587 } else if (vmx_capability.ept) {
4588 vmx_capability.ept = 0;
4589 pr_warn_once("EPT CAP should not exist if not support "
4590 "1-setting enable EPT VM-execution control\n");
4591 }
4592 if (!(_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_VPID) &&
4593 vmx_capability.vpid) {
4594 vmx_capability.vpid = 0;
4595 pr_warn_once("VPID CAP should not exist if not support "
4596 "1-setting enable VPID VM-execution control\n");
Sheng Yangd56f5462008-04-25 10:13:16 +08004597 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004598
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02004599 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004600#ifdef CONFIG_X86_64
4601 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
4602#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08004603 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02004604 VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004605 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
4606 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004607 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004608
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004609 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
4610 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
4611 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08004612 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
4613 &_pin_based_exec_control) < 0)
4614 return -EIO;
4615
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02004616 if (cpu_has_broken_vmx_preemption_timer())
4617 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08004618 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02004619 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08004620 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
4621
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01004622 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00004623 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004624 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
4625 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004626 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004627
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08004628 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004629
4630 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
4631 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004632 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004633
4634#ifdef CONFIG_X86_64
4635 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
4636 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03004637 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004638#endif
4639
4640 /* Require Write-Back (WB) memory type for VMCS accesses. */
4641 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004642 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004643
Yang, Sheng002c7f72007-07-31 14:23:01 +03004644 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02004645 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03004646 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01004647
Liran Alon2307af12018-06-29 22:59:04 +03004648 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004649
Yang, Sheng002c7f72007-07-31 14:23:01 +03004650 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
4651 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004652 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03004653 vmcs_conf->vmexit_ctrl = _vmexit_control;
4654 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004655
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01004656 if (static_branch_unlikely(&enable_evmcs))
4657 evmcs_sanitize_exec_ctrls(vmcs_conf);
4658
Avi Kivity110312c2010-12-21 12:54:20 +02004659 cpu_has_load_ia32_efer =
4660 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
4661 VM_ENTRY_LOAD_IA32_EFER)
4662 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
4663 VM_EXIT_LOAD_IA32_EFER);
4664
Gleb Natapov8bf00a52011-10-05 14:01:22 +02004665 cpu_has_load_perf_global_ctrl =
4666 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
4667 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
4668 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
4669 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
4670
4671 /*
4672 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
Andrea Gelminibb3541f2016-05-21 14:14:44 +02004673 * but due to errata below it can't be used. Workaround is to use
Gleb Natapov8bf00a52011-10-05 14:01:22 +02004674 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
4675 *
4676 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
4677 *
4678 * AAK155 (model 26)
4679 * AAP115 (model 30)
4680 * AAT100 (model 37)
4681 * BC86,AAY89,BD102 (model 44)
4682 * BA97 (model 46)
4683 *
4684 */
4685 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
4686 switch (boot_cpu_data.x86_model) {
4687 case 26:
4688 case 30:
4689 case 37:
4690 case 44:
4691 case 46:
4692 cpu_has_load_perf_global_ctrl = false;
4693 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
4694 "does not work properly. Using workaround\n");
4695 break;
4696 default:
4697 break;
4698 }
4699 }
4700
Borislav Petkov782511b2016-04-04 22:25:03 +02004701 if (boot_cpu_has(X86_FEATURE_XSAVES))
Wanpeng Li20300092014-12-02 19:14:59 +08004702 rdmsrl(MSR_IA32_XSS, host_xss);
4703
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004704 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08004705}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004706
Liran Alon491a6032018-06-23 02:35:12 +03004707static struct vmcs *alloc_vmcs_cpu(bool shadow, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004708{
4709 int node = cpu_to_node(cpu);
4710 struct page *pages;
4711 struct vmcs *vmcs;
4712
Vlastimil Babka96db8002015-09-08 15:03:50 -07004713 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004714 if (!pages)
4715 return NULL;
4716 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004717 memset(vmcs, 0, vmcs_config.size);
Liran Alon2307af12018-06-29 22:59:04 +03004718
4719 /* KVM supports Enlightened VMCS v1 only */
4720 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03004721 vmcs->hdr.revision_id = KVM_EVMCS_VERSION;
Liran Alon2307af12018-06-29 22:59:04 +03004722 else
Liran Alon392b2f22018-06-23 02:35:01 +03004723 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03004724
Liran Alon491a6032018-06-23 02:35:12 +03004725 if (shadow)
4726 vmcs->hdr.shadow_vmcs = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004727 return vmcs;
4728}
4729
Avi Kivity6aa8b732006-12-10 02:21:36 -08004730static void free_vmcs(struct vmcs *vmcs)
4731{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004732 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004733}
4734
Nadav Har'Eld462b812011-05-24 15:26:10 +03004735/*
4736 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
4737 */
4738static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
4739{
4740 if (!loaded_vmcs->vmcs)
4741 return;
4742 loaded_vmcs_clear(loaded_vmcs);
4743 free_vmcs(loaded_vmcs->vmcs);
4744 loaded_vmcs->vmcs = NULL;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004745 if (loaded_vmcs->msr_bitmap)
4746 free_page((unsigned long)loaded_vmcs->msr_bitmap);
Jim Mattson355f4fb2016-10-28 08:29:39 -07004747 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03004748}
4749
Liran Alon491a6032018-06-23 02:35:12 +03004750static struct vmcs *alloc_vmcs(bool shadow)
Paolo Bonzinif21f1652018-01-11 12:16:15 +01004751{
Liran Alon491a6032018-06-23 02:35:12 +03004752 return alloc_vmcs_cpu(shadow, raw_smp_processor_id());
Paolo Bonzinif21f1652018-01-11 12:16:15 +01004753}
4754
4755static int alloc_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
4756{
Liran Alon491a6032018-06-23 02:35:12 +03004757 loaded_vmcs->vmcs = alloc_vmcs(false);
Paolo Bonzinif21f1652018-01-11 12:16:15 +01004758 if (!loaded_vmcs->vmcs)
4759 return -ENOMEM;
4760
4761 loaded_vmcs->shadow_vmcs = NULL;
4762 loaded_vmcs_init(loaded_vmcs);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004763
4764 if (cpu_has_vmx_msr_bitmap()) {
4765 loaded_vmcs->msr_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL);
4766 if (!loaded_vmcs->msr_bitmap)
4767 goto out_vmcs;
4768 memset(loaded_vmcs->msr_bitmap, 0xff, PAGE_SIZE);
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02004769
Arnd Bergmann1f008e12018-05-25 17:36:17 +02004770 if (IS_ENABLED(CONFIG_HYPERV) &&
4771 static_branch_unlikely(&enable_evmcs) &&
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02004772 (ms_hyperv.nested_features & HV_X64_NESTED_MSR_BITMAP)) {
4773 struct hv_enlightened_vmcs *evmcs =
4774 (struct hv_enlightened_vmcs *)loaded_vmcs->vmcs;
4775
4776 evmcs->hv_enlightenments_control.msr_bitmap = 1;
4777 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004778 }
Sean Christophersond7ee0392018-07-23 12:32:47 -07004779
4780 memset(&loaded_vmcs->host_state, 0, sizeof(struct vmcs_host_state));
4781
Paolo Bonzinif21f1652018-01-11 12:16:15 +01004782 return 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004783
4784out_vmcs:
4785 free_loaded_vmcs(loaded_vmcs);
4786 return -ENOMEM;
Paolo Bonzinif21f1652018-01-11 12:16:15 +01004787}
4788
Sam Ravnborg39959582007-06-01 00:47:13 -07004789static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004790{
4791 int cpu;
4792
Zachary Amsden3230bb42009-09-29 11:38:37 -10004793 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004794 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10004795 per_cpu(vmxarea, cpu) = NULL;
4796 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004797}
4798
Jim Mattsond37f4262017-12-22 12:12:16 -08004799enum vmcs_field_width {
4800 VMCS_FIELD_WIDTH_U16 = 0,
4801 VMCS_FIELD_WIDTH_U64 = 1,
4802 VMCS_FIELD_WIDTH_U32 = 2,
4803 VMCS_FIELD_WIDTH_NATURAL_WIDTH = 3
Jim Mattson85fd5142017-07-07 12:51:41 -07004804};
4805
Jim Mattsond37f4262017-12-22 12:12:16 -08004806static inline int vmcs_field_width(unsigned long field)
Jim Mattson85fd5142017-07-07 12:51:41 -07004807{
4808 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
Jim Mattsond37f4262017-12-22 12:12:16 -08004809 return VMCS_FIELD_WIDTH_U32;
Jim Mattson85fd5142017-07-07 12:51:41 -07004810 return (field >> 13) & 0x3 ;
4811}
4812
4813static inline int vmcs_field_readonly(unsigned long field)
4814{
4815 return (((field >> 10) & 0x3) == 1);
4816}
4817
Bandan Dasfe2b2012014-04-21 15:20:14 -04004818static void init_vmcs_shadow_fields(void)
4819{
4820 int i, j;
4821
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004822 for (i = j = 0; i < max_shadow_read_only_fields; i++) {
4823 u16 field = shadow_read_only_fields[i];
Jim Mattsond37f4262017-12-22 12:12:16 -08004824 if (vmcs_field_width(field) == VMCS_FIELD_WIDTH_U64 &&
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004825 (i + 1 == max_shadow_read_only_fields ||
4826 shadow_read_only_fields[i + 1] != field + 1))
4827 pr_err("Missing field from shadow_read_only_field %x\n",
4828 field + 1);
4829
4830 clear_bit(field, vmx_vmread_bitmap);
4831#ifdef CONFIG_X86_64
4832 if (field & 1)
4833 continue;
4834#endif
4835 if (j < i)
4836 shadow_read_only_fields[j] = field;
4837 j++;
4838 }
4839 max_shadow_read_only_fields = j;
Bandan Dasfe2b2012014-04-21 15:20:14 -04004840
4841 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004842 u16 field = shadow_read_write_fields[i];
Jim Mattsond37f4262017-12-22 12:12:16 -08004843 if (vmcs_field_width(field) == VMCS_FIELD_WIDTH_U64 &&
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004844 (i + 1 == max_shadow_read_write_fields ||
4845 shadow_read_write_fields[i + 1] != field + 1))
4846 pr_err("Missing field from shadow_read_write_field %x\n",
4847 field + 1);
4848
Paolo Bonzinic5d167b2017-12-13 11:05:19 +01004849 /*
4850 * PML and the preemption timer can be emulated, but the
4851 * processor cannot vmwrite to fields that don't exist
4852 * on bare metal.
4853 */
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004854 switch (field) {
Paolo Bonzinic5d167b2017-12-13 11:05:19 +01004855 case GUEST_PML_INDEX:
4856 if (!cpu_has_vmx_pml())
4857 continue;
4858 break;
4859 case VMX_PREEMPTION_TIMER_VALUE:
4860 if (!cpu_has_vmx_preemption_timer())
4861 continue;
4862 break;
4863 case GUEST_INTR_STATUS:
4864 if (!cpu_has_vmx_apicv())
Bandan Dasfe2b2012014-04-21 15:20:14 -04004865 continue;
4866 break;
4867 default:
4868 break;
4869 }
4870
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004871 clear_bit(field, vmx_vmwrite_bitmap);
4872 clear_bit(field, vmx_vmread_bitmap);
4873#ifdef CONFIG_X86_64
4874 if (field & 1)
4875 continue;
4876#endif
Bandan Dasfe2b2012014-04-21 15:20:14 -04004877 if (j < i)
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004878 shadow_read_write_fields[j] = field;
Bandan Dasfe2b2012014-04-21 15:20:14 -04004879 j++;
4880 }
4881 max_shadow_read_write_fields = j;
Bandan Dasfe2b2012014-04-21 15:20:14 -04004882}
4883
Avi Kivity6aa8b732006-12-10 02:21:36 -08004884static __init int alloc_kvm_area(void)
4885{
4886 int cpu;
4887
Zachary Amsden3230bb42009-09-29 11:38:37 -10004888 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004889 struct vmcs *vmcs;
4890
Liran Alon491a6032018-06-23 02:35:12 +03004891 vmcs = alloc_vmcs_cpu(false, cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004892 if (!vmcs) {
4893 free_kvm_area();
4894 return -ENOMEM;
4895 }
4896
Liran Alon2307af12018-06-29 22:59:04 +03004897 /*
4898 * When eVMCS is enabled, alloc_vmcs_cpu() sets
4899 * vmcs->revision_id to KVM_EVMCS_VERSION instead of
4900 * revision_id reported by MSR_IA32_VMX_BASIC.
4901 *
4902 * However, even though not explictly documented by
4903 * TLFS, VMXArea passed as VMXON argument should
4904 * still be marked with revision_id reported by
4905 * physical CPU.
4906 */
4907 if (static_branch_unlikely(&enable_evmcs))
Liran Alon392b2f22018-06-23 02:35:01 +03004908 vmcs->hdr.revision_id = vmcs_config.revision_id;
Liran Alon2307af12018-06-29 22:59:04 +03004909
Avi Kivity6aa8b732006-12-10 02:21:36 -08004910 per_cpu(vmxarea, cpu) = vmcs;
4911 }
4912 return 0;
4913}
4914
Gleb Natapov91b0aa22013-01-21 15:36:47 +02004915static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02004916 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004917{
Gleb Natapovd99e4152012-12-20 16:57:45 +02004918 if (!emulate_invalid_guest_state) {
4919 /*
4920 * CS and SS RPL should be equal during guest entry according
4921 * to VMX spec, but in reality it is not always so. Since vcpu
4922 * is in the middle of the transition from real mode to
4923 * protected mode it is safe to assume that RPL 0 is a good
4924 * default value.
4925 */
4926 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03004927 save->selector &= ~SEGMENT_RPL_MASK;
4928 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02004929 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004930 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02004931 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004932}
4933
4934static void enter_pmode(struct kvm_vcpu *vcpu)
4935{
4936 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004937 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004938
Gleb Natapovd99e4152012-12-20 16:57:45 +02004939 /*
4940 * Update real mode segment cache. It may be not up-to-date if sement
4941 * register was written while vcpu was in a guest mode.
4942 */
4943 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
4944 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
4945 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
4946 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
4947 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
4948 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
4949
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004950 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004951
Avi Kivity2fb92db2011-04-27 19:42:18 +03004952 vmx_segment_cache_clear(vmx);
4953
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004954 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004955
4956 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03004957 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
4958 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004959 vmcs_writel(GUEST_RFLAGS, flags);
4960
Rusty Russell66aee912007-07-17 23:34:16 +10004961 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
4962 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004963
4964 update_exception_bitmap(vcpu);
4965
Gleb Natapov91b0aa22013-01-21 15:36:47 +02004966 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
4967 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
4968 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
4969 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
4970 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
4971 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004972}
4973
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004974static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004975{
Mathias Krause772e0312012-08-30 01:30:19 +02004976 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02004977 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004978
Gleb Natapovd99e4152012-12-20 16:57:45 +02004979 var.dpl = 0x3;
4980 if (seg == VCPU_SREG_CS)
4981 var.type = 0x3;
4982
4983 if (!emulate_invalid_guest_state) {
4984 var.selector = var.base >> 4;
4985 var.base = var.base & 0xffff0;
4986 var.limit = 0xffff;
4987 var.g = 0;
4988 var.db = 0;
4989 var.present = 1;
4990 var.s = 1;
4991 var.l = 0;
4992 var.unusable = 0;
4993 var.type = 0x3;
4994 var.avl = 0;
4995 if (save->base & 0xf)
4996 printk_once(KERN_WARNING "kvm: segment base is not "
4997 "paragraph aligned when entering "
4998 "protected mode (seg=%d)", seg);
4999 }
5000
5001 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05005002 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02005003 vmcs_write32(sf->limit, var.limit);
5004 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005005}
5006
5007static void enter_rmode(struct kvm_vcpu *vcpu)
5008{
5009 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03005010 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005011 struct kvm_vmx *kvm_vmx = to_kvm_vmx(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005012
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03005013 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
5014 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
5015 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
5016 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
5017 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02005018 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
5019 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03005020
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005021 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005022
Gleb Natapov776e58e2011-03-13 12:34:27 +02005023 /*
5024 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01005025 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02005026 */
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005027 if (!kvm_vmx->tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02005028 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
5029 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02005030
Avi Kivity2fb92db2011-04-27 19:42:18 +03005031 vmx_segment_cache_clear(vmx);
5032
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005033 vmcs_writel(GUEST_TR_BASE, kvm_vmx->tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005034 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005035 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
5036
5037 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03005038 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005039
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01005040 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005041
5042 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10005043 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005044 update_exception_bitmap(vcpu);
5045
Gleb Natapovd99e4152012-12-20 16:57:45 +02005046 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
5047 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
5048 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
5049 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
5050 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
5051 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03005052
Eddie Dong8668a3c2007-10-10 14:26:45 +08005053 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005054}
5055
Amit Shah401d10d2009-02-20 22:53:37 +05305056static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
5057{
5058 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03005059 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
5060
5061 if (!msr)
5062 return;
Amit Shah401d10d2009-02-20 22:53:37 +05305063
Avi Kivityf6801df2010-01-21 15:31:50 +02005064 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05305065 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02005066 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05305067 msr->data = efer;
5068 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02005069 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05305070
5071 msr->data = efer & ~EFER_LME;
5072 }
5073 setup_msrs(vmx);
5074}
5075
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005076#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005077
5078static void enter_lmode(struct kvm_vcpu *vcpu)
5079{
5080 u32 guest_tr_ar;
5081
Avi Kivity2fb92db2011-04-27 19:42:18 +03005082 vmx_segment_cache_clear(to_vmx(vcpu));
5083
Avi Kivity6aa8b732006-12-10 02:21:36 -08005084 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005085 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02005086 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
5087 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005088 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005089 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
5090 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005091 }
Avi Kivityda38f432010-07-06 11:30:49 +03005092 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005093}
5094
5095static void exit_lmode(struct kvm_vcpu *vcpu)
5096{
Gleb Natapov2961e8762013-11-25 15:37:13 +02005097 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03005098 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005099}
5100
5101#endif
5102
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005103static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid,
5104 bool invalidate_gpa)
Sheng Yang2384d2b2008-01-17 15:14:33 +08005105{
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005106 if (enable_ept && (invalidate_gpa || !enable_vpid)) {
Xiao Guangrongdd180b32010-07-03 16:02:42 +08005107 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
5108 return;
Peter Feiner995f00a2017-06-30 17:26:32 -07005109 ept_sync_context(construct_eptp(vcpu, vcpu->arch.mmu.root_hpa));
Jim Mattsonf0b98c02017-03-15 07:56:11 -07005110 } else {
5111 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08005112 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08005113}
5114
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005115static void vmx_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005116{
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08005117 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid, invalidate_gpa);
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005118}
5119
Junaid Shahidfaff8752018-06-29 13:10:05 -07005120static void vmx_flush_tlb_gva(struct kvm_vcpu *vcpu, gva_t addr)
5121{
5122 int vpid = to_vmx(vcpu)->vpid;
5123
5124 if (!vpid_sync_vcpu_addr(vpid, addr))
5125 vpid_sync_context(vpid);
5126
5127 /*
5128 * If VPIDs are not supported or enabled, then the above is a no-op.
5129 * But we don't really need a TLB flush in that case anyway, because
5130 * each VM entry/exit includes an implicit flush when VPID is 0.
5131 */
5132}
5133
Avi Kivitye8467fd2009-12-29 18:43:06 +02005134static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
5135{
5136 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
5137
5138 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
5139 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
5140}
5141
Avi Kivityaff48ba2010-12-05 18:56:11 +02005142static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
5143{
Sean Christophersonb4d18512018-03-05 12:04:40 -08005144 if (enable_unrestricted_guest || (enable_ept && is_paging(vcpu)))
Avi Kivityaff48ba2010-12-05 18:56:11 +02005145 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
5146 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
5147}
5148
Anthony Liguori25c4c272007-04-27 09:29:21 +03005149static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08005150{
Avi Kivityfc78f512009-12-07 12:16:48 +02005151 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
5152
5153 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
5154 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08005155}
5156
Sheng Yang14394422008-04-28 12:24:45 +08005157static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
5158{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03005159 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
5160
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005161 if (!test_bit(VCPU_EXREG_PDPTR,
5162 (unsigned long *)&vcpu->arch.regs_dirty))
5163 return;
5164
Sheng Yang14394422008-04-28 12:24:45 +08005165 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03005166 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
5167 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
5168 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
5169 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08005170 }
5171}
5172
Avi Kivity8f5d5492009-05-31 18:41:29 +03005173static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
5174{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03005175 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
5176
Avi Kivity8f5d5492009-05-31 18:41:29 +03005177 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03005178 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
5179 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
5180 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
5181 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03005182 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005183
5184 __set_bit(VCPU_EXREG_PDPTR,
5185 (unsigned long *)&vcpu->arch.regs_avail);
5186 __set_bit(VCPU_EXREG_PDPTR,
5187 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03005188}
5189
David Matlack38991522016-11-29 18:14:08 -08005190static bool nested_guest_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
5191{
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005192 u64 fixed0 = to_vmx(vcpu)->nested.msrs.cr0_fixed0;
5193 u64 fixed1 = to_vmx(vcpu)->nested.msrs.cr0_fixed1;
David Matlack38991522016-11-29 18:14:08 -08005194 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5195
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005196 if (to_vmx(vcpu)->nested.msrs.secondary_ctls_high &
David Matlack38991522016-11-29 18:14:08 -08005197 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
5198 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
5199 fixed0 &= ~(X86_CR0_PE | X86_CR0_PG);
5200
5201 return fixed_bits_valid(val, fixed0, fixed1);
5202}
5203
5204static bool nested_host_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
5205{
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005206 u64 fixed0 = to_vmx(vcpu)->nested.msrs.cr0_fixed0;
5207 u64 fixed1 = to_vmx(vcpu)->nested.msrs.cr0_fixed1;
David Matlack38991522016-11-29 18:14:08 -08005208
5209 return fixed_bits_valid(val, fixed0, fixed1);
5210}
5211
5212static bool nested_cr4_valid(struct kvm_vcpu *vcpu, unsigned long val)
5213{
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005214 u64 fixed0 = to_vmx(vcpu)->nested.msrs.cr4_fixed0;
5215 u64 fixed1 = to_vmx(vcpu)->nested.msrs.cr4_fixed1;
David Matlack38991522016-11-29 18:14:08 -08005216
5217 return fixed_bits_valid(val, fixed0, fixed1);
5218}
5219
5220/* No difference in the restrictions on guest and host CR4 in VMX operation. */
5221#define nested_guest_cr4_valid nested_cr4_valid
5222#define nested_host_cr4_valid nested_cr4_valid
5223
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005224static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08005225
5226static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
5227 unsigned long cr0,
5228 struct kvm_vcpu *vcpu)
5229{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03005230 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
5231 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08005232 if (!(cr0 & X86_CR0_PG)) {
5233 /* From paging/starting to nonpaging */
5234 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08005235 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08005236 (CPU_BASED_CR3_LOAD_EXITING |
5237 CPU_BASED_CR3_STORE_EXITING));
5238 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02005239 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08005240 } else if (!is_paging(vcpu)) {
5241 /* From nonpaging to paging */
5242 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08005243 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08005244 ~(CPU_BASED_CR3_LOAD_EXITING |
5245 CPU_BASED_CR3_STORE_EXITING));
5246 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02005247 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08005248 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08005249
5250 if (!(cr0 & X86_CR0_WP))
5251 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08005252}
5253
Avi Kivity6aa8b732006-12-10 02:21:36 -08005254static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
5255{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005256 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005257 unsigned long hw_cr0;
5258
Gleb Natapov50378782013-02-04 16:00:28 +02005259 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005260 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02005261 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02005262 else {
Gleb Natapov50378782013-02-04 16:00:28 +02005263 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08005264
Gleb Natapov218e7632013-01-21 15:36:45 +02005265 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
5266 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005267
Gleb Natapov218e7632013-01-21 15:36:45 +02005268 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
5269 enter_rmode(vcpu);
5270 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005271
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005272#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02005273 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10005274 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005275 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10005276 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08005277 exit_lmode(vcpu);
5278 }
5279#endif
5280
Sean Christophersonb4d18512018-03-05 12:04:40 -08005281 if (enable_ept && !enable_unrestricted_guest)
Sheng Yang14394422008-04-28 12:24:45 +08005282 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
5283
Avi Kivity6aa8b732006-12-10 02:21:36 -08005284 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08005285 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005286 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02005287
5288 /* depends on vcpu->arch.cr0 to be set to a new value */
5289 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005290}
5291
Yu Zhang855feb62017-08-24 20:27:55 +08005292static int get_ept_level(struct kvm_vcpu *vcpu)
5293{
5294 if (cpu_has_vmx_ept_5levels() && (cpuid_maxphyaddr(vcpu) > 48))
5295 return 5;
5296 return 4;
5297}
5298
Peter Feiner995f00a2017-06-30 17:26:32 -07005299static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa)
Sheng Yang14394422008-04-28 12:24:45 +08005300{
Yu Zhang855feb62017-08-24 20:27:55 +08005301 u64 eptp = VMX_EPTP_MT_WB;
Sheng Yang14394422008-04-28 12:24:45 +08005302
Yu Zhang855feb62017-08-24 20:27:55 +08005303 eptp |= (get_ept_level(vcpu) == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08005304
Peter Feiner995f00a2017-06-30 17:26:32 -07005305 if (enable_ept_ad_bits &&
5306 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02005307 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08005308 eptp |= (root_hpa & PAGE_MASK);
5309
5310 return eptp;
5311}
5312
Avi Kivity6aa8b732006-12-10 02:21:36 -08005313static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
5314{
Tianyu Lan877ad952018-07-19 08:40:23 +00005315 struct kvm *kvm = vcpu->kvm;
Sheng Yang14394422008-04-28 12:24:45 +08005316 unsigned long guest_cr3;
5317 u64 eptp;
5318
5319 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02005320 if (enable_ept) {
Peter Feiner995f00a2017-06-30 17:26:32 -07005321 eptp = construct_eptp(vcpu, cr3);
Sheng Yang14394422008-04-28 12:24:45 +08005322 vmcs_write64(EPT_POINTER, eptp);
Tianyu Lan877ad952018-07-19 08:40:23 +00005323
5324 if (kvm_x86_ops->tlb_remote_flush) {
5325 spin_lock(&to_kvm_vmx(kvm)->ept_pointer_lock);
5326 to_vmx(vcpu)->ept_pointer = eptp;
5327 to_kvm_vmx(kvm)->ept_pointers_match
5328 = EPT_POINTERS_CHECK;
5329 spin_unlock(&to_kvm_vmx(kvm)->ept_pointer_lock);
5330 }
5331
Sean Christophersone90008d2018-03-05 12:04:37 -08005332 if (enable_unrestricted_guest || is_paging(vcpu) ||
5333 is_guest_mode(vcpu))
Jan Kiszka59ab5a82013-08-08 16:26:29 +02005334 guest_cr3 = kvm_read_cr3(vcpu);
5335 else
Tianyu Lan877ad952018-07-19 08:40:23 +00005336 guest_cr3 = to_kvm_vmx(kvm)->ept_identity_map_addr;
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02005337 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08005338 }
5339
Sheng Yang14394422008-04-28 12:24:45 +08005340 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005341}
5342
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005343static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005344{
Ben Serebrin085e68e2015-04-16 11:58:05 -07005345 /*
5346 * Pass through host's Machine Check Enable value to hw_cr4, which
5347 * is in force while we are in guest mode. Do not let guests control
5348 * this bit, even if host CR4.MCE == 0.
5349 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08005350 unsigned long hw_cr4;
5351
5352 hw_cr4 = (cr4_read_shadow() & X86_CR4_MCE) | (cr4 & ~X86_CR4_MCE);
5353 if (enable_unrestricted_guest)
5354 hw_cr4 |= KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST;
5355 else if (to_vmx(vcpu)->rmode.vm86_active)
5356 hw_cr4 |= KVM_RMODE_VM_CR4_ALWAYS_ON;
5357 else
5358 hw_cr4 |= KVM_PMODE_VM_CR4_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08005359
Sean Christopherson64f7a112018-04-30 10:01:06 -07005360 if (!boot_cpu_has(X86_FEATURE_UMIP) && vmx_umip_emulated()) {
5361 if (cr4 & X86_CR4_UMIP) {
5362 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
Paolo Bonzini0367f202016-07-12 10:44:55 +02005363 SECONDARY_EXEC_DESC);
Sean Christopherson64f7a112018-04-30 10:01:06 -07005364 hw_cr4 &= ~X86_CR4_UMIP;
5365 } else if (!is_guest_mode(vcpu) ||
5366 !nested_cpu_has2(get_vmcs12(vcpu), SECONDARY_EXEC_DESC))
5367 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
5368 SECONDARY_EXEC_DESC);
5369 }
Paolo Bonzini0367f202016-07-12 10:44:55 +02005370
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005371 if (cr4 & X86_CR4_VMXE) {
5372 /*
5373 * To use VMXON (and later other VMX instructions), a guest
5374 * must first be able to turn on cr4.VMXE (see handle_vmon()).
5375 * So basically the check on whether to allow nested VMX
Paolo Bonzini5bea5122018-09-18 15:19:17 +02005376 * is here. We operate under the default treatment of SMM,
5377 * so VMX cannot be enabled under SMM.
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005378 */
Paolo Bonzini5bea5122018-09-18 15:19:17 +02005379 if (!nested_vmx_allowed(vcpu) || is_smm(vcpu))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005380 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005381 }
David Matlack38991522016-11-29 18:14:08 -08005382
5383 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005384 return 1;
5385
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005386 vcpu->arch.cr4 = cr4;
Sheng Yang14394422008-04-28 12:24:45 +08005387
Sean Christopherson5dc1f042018-03-05 12:04:39 -08005388 if (!enable_unrestricted_guest) {
5389 if (enable_ept) {
5390 if (!is_paging(vcpu)) {
5391 hw_cr4 &= ~X86_CR4_PAE;
5392 hw_cr4 |= X86_CR4_PSE;
5393 } else if (!(cr4 & X86_CR4_PAE)) {
5394 hw_cr4 &= ~X86_CR4_PAE;
5395 }
5396 }
5397
Radim Krčmář656ec4a2015-11-02 22:20:00 +01005398 /*
Huaitong Handdba2622016-03-22 16:51:15 +08005399 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
5400 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
5401 * to be manually disabled when guest switches to non-paging
5402 * mode.
5403 *
5404 * If !enable_unrestricted_guest, the CPU is always running
5405 * with CR0.PG=1 and CR4 needs to be modified.
5406 * If enable_unrestricted_guest, the CPU automatically
5407 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01005408 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08005409 if (!is_paging(vcpu))
5410 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
5411 }
Radim Krčmář656ec4a2015-11-02 22:20:00 +01005412
Sheng Yang14394422008-04-28 12:24:45 +08005413 vmcs_writel(CR4_READ_SHADOW, cr4);
5414 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03005415 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005416}
5417
Avi Kivity6aa8b732006-12-10 02:21:36 -08005418static void vmx_get_segment(struct kvm_vcpu *vcpu,
5419 struct kvm_segment *var, int seg)
5420{
Avi Kivitya9179492011-01-03 14:28:52 +02005421 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005422 u32 ar;
5423
Gleb Natapovc6ad11532012-12-12 19:10:51 +02005424 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03005425 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02005426 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03005427 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03005428 return;
Avi Kivity1390a282012-08-21 17:07:08 +03005429 var->base = vmx_read_guest_seg_base(vmx, seg);
5430 var->selector = vmx_read_guest_seg_selector(vmx, seg);
5431 return;
Avi Kivitya9179492011-01-03 14:28:52 +02005432 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03005433 var->base = vmx_read_guest_seg_base(vmx, seg);
5434 var->limit = vmx_read_guest_seg_limit(vmx, seg);
5435 var->selector = vmx_read_guest_seg_selector(vmx, seg);
5436 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03005437 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005438 var->type = ar & 15;
5439 var->s = (ar >> 4) & 1;
5440 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03005441 /*
5442 * Some userspaces do not preserve unusable property. Since usable
5443 * segment has to be present according to VMX spec we can use present
5444 * property to amend userspace bug by making unusable segment always
5445 * nonpresent. vmx_segment_access_rights() already marks nonpresent
5446 * segment as unusable.
5447 */
5448 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005449 var->avl = (ar >> 12) & 1;
5450 var->l = (ar >> 13) & 1;
5451 var->db = (ar >> 14) & 1;
5452 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005453}
5454
Avi Kivitya9179492011-01-03 14:28:52 +02005455static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
5456{
Avi Kivitya9179492011-01-03 14:28:52 +02005457 struct kvm_segment s;
5458
5459 if (to_vmx(vcpu)->rmode.vm86_active) {
5460 vmx_get_segment(vcpu, &s, seg);
5461 return s.base;
5462 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03005463 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02005464}
5465
Marcelo Tosattib09408d2013-01-07 19:27:06 -02005466static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02005467{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02005468 struct vcpu_vmx *vmx = to_vmx(vcpu);
5469
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02005470 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02005471 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02005472 else {
5473 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005474 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02005475 }
Avi Kivity69c73022011-03-07 15:26:44 +02005476}
5477
Avi Kivity653e3102007-05-07 10:55:37 +03005478static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005479{
Avi Kivity6aa8b732006-12-10 02:21:36 -08005480 u32 ar;
5481
Avi Kivityf0495f92012-06-07 17:06:10 +03005482 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005483 ar = 1 << 16;
5484 else {
5485 ar = var->type & 15;
5486 ar |= (var->s & 1) << 4;
5487 ar |= (var->dpl & 3) << 5;
5488 ar |= (var->present & 1) << 7;
5489 ar |= (var->avl & 1) << 12;
5490 ar |= (var->l & 1) << 13;
5491 ar |= (var->db & 1) << 14;
5492 ar |= (var->g & 1) << 15;
5493 }
Avi Kivity653e3102007-05-07 10:55:37 +03005494
5495 return ar;
5496}
5497
5498static void vmx_set_segment(struct kvm_vcpu *vcpu,
5499 struct kvm_segment *var, int seg)
5500{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005501 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02005502 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03005503
Avi Kivity2fb92db2011-04-27 19:42:18 +03005504 vmx_segment_cache_clear(vmx);
5505
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02005506 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
5507 vmx->rmode.segs[seg] = *var;
5508 if (seg == VCPU_SREG_TR)
5509 vmcs_write16(sf->selector, var->selector);
5510 else if (var->s)
5511 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02005512 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03005513 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02005514
Avi Kivity653e3102007-05-07 10:55:37 +03005515 vmcs_writel(sf->base, var->base);
5516 vmcs_write32(sf->limit, var->limit);
5517 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005518
5519 /*
5520 * Fix the "Accessed" bit in AR field of segment registers for older
5521 * qemu binaries.
5522 * IA32 arch specifies that at the time of processor reset the
5523 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08005524 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005525 * state vmexit when "unrestricted guest" mode is turned on.
5526 * Fix for this setup issue in cpu_reset is being pushed in the qemu
5527 * tree. Newer qemu binaries with that qemu fix would not need this
5528 * kvm hack.
5529 */
5530 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02005531 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005532
Gleb Natapovf924d662012-12-12 19:10:55 +02005533 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02005534
5535out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01005536 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005537}
5538
Avi Kivity6aa8b732006-12-10 02:21:36 -08005539static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
5540{
Avi Kivity2fb92db2011-04-27 19:42:18 +03005541 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005542
5543 *db = (ar >> 14) & 1;
5544 *l = (ar >> 13) & 1;
5545}
5546
Gleb Natapov89a27f42010-02-16 10:51:48 +02005547static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005548{
Gleb Natapov89a27f42010-02-16 10:51:48 +02005549 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
5550 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005551}
5552
Gleb Natapov89a27f42010-02-16 10:51:48 +02005553static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005554{
Gleb Natapov89a27f42010-02-16 10:51:48 +02005555 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
5556 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005557}
5558
Gleb Natapov89a27f42010-02-16 10:51:48 +02005559static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005560{
Gleb Natapov89a27f42010-02-16 10:51:48 +02005561 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
5562 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005563}
5564
Gleb Natapov89a27f42010-02-16 10:51:48 +02005565static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005566{
Gleb Natapov89a27f42010-02-16 10:51:48 +02005567 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
5568 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005569}
5570
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005571static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
5572{
5573 struct kvm_segment var;
5574 u32 ar;
5575
5576 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02005577 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02005578 if (seg == VCPU_SREG_CS)
5579 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005580 ar = vmx_segment_access_rights(&var);
5581
5582 if (var.base != (var.selector << 4))
5583 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02005584 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005585 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02005586 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005587 return false;
5588
5589 return true;
5590}
5591
5592static bool code_segment_valid(struct kvm_vcpu *vcpu)
5593{
5594 struct kvm_segment cs;
5595 unsigned int cs_rpl;
5596
5597 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03005598 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005599
Avi Kivity1872a3f2009-01-04 23:26:52 +02005600 if (cs.unusable)
5601 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005602 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005603 return false;
5604 if (!cs.s)
5605 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005606 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005607 if (cs.dpl > cs_rpl)
5608 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02005609 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005610 if (cs.dpl != cs_rpl)
5611 return false;
5612 }
5613 if (!cs.present)
5614 return false;
5615
5616 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
5617 return true;
5618}
5619
5620static bool stack_segment_valid(struct kvm_vcpu *vcpu)
5621{
5622 struct kvm_segment ss;
5623 unsigned int ss_rpl;
5624
5625 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03005626 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005627
Avi Kivity1872a3f2009-01-04 23:26:52 +02005628 if (ss.unusable)
5629 return true;
5630 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005631 return false;
5632 if (!ss.s)
5633 return false;
5634 if (ss.dpl != ss_rpl) /* DPL != RPL */
5635 return false;
5636 if (!ss.present)
5637 return false;
5638
5639 return true;
5640}
5641
5642static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
5643{
5644 struct kvm_segment var;
5645 unsigned int rpl;
5646
5647 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03005648 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005649
Avi Kivity1872a3f2009-01-04 23:26:52 +02005650 if (var.unusable)
5651 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005652 if (!var.s)
5653 return false;
5654 if (!var.present)
5655 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005656 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005657 if (var.dpl < rpl) /* DPL < RPL */
5658 return false;
5659 }
5660
5661 /* TODO: Add other members to kvm_segment_field to allow checking for other access
5662 * rights flags
5663 */
5664 return true;
5665}
5666
5667static bool tr_valid(struct kvm_vcpu *vcpu)
5668{
5669 struct kvm_segment tr;
5670
5671 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
5672
Avi Kivity1872a3f2009-01-04 23:26:52 +02005673 if (tr.unusable)
5674 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03005675 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005676 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02005677 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005678 return false;
5679 if (!tr.present)
5680 return false;
5681
5682 return true;
5683}
5684
5685static bool ldtr_valid(struct kvm_vcpu *vcpu)
5686{
5687 struct kvm_segment ldtr;
5688
5689 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
5690
Avi Kivity1872a3f2009-01-04 23:26:52 +02005691 if (ldtr.unusable)
5692 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03005693 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005694 return false;
5695 if (ldtr.type != 2)
5696 return false;
5697 if (!ldtr.present)
5698 return false;
5699
5700 return true;
5701}
5702
5703static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
5704{
5705 struct kvm_segment cs, ss;
5706
5707 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
5708 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
5709
Nadav Amitb32a9912015-03-29 16:33:04 +03005710 return ((cs.selector & SEGMENT_RPL_MASK) ==
5711 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005712}
5713
5714/*
5715 * Check if guest state is valid. Returns true if valid, false if
5716 * not.
5717 * We assume that registers are always usable
5718 */
5719static bool guest_state_valid(struct kvm_vcpu *vcpu)
5720{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02005721 if (enable_unrestricted_guest)
5722 return true;
5723
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005724 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03005725 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005726 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
5727 return false;
5728 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
5729 return false;
5730 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
5731 return false;
5732 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
5733 return false;
5734 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
5735 return false;
5736 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
5737 return false;
5738 } else {
5739 /* protected mode guest state checks */
5740 if (!cs_ss_rpl_check(vcpu))
5741 return false;
5742 if (!code_segment_valid(vcpu))
5743 return false;
5744 if (!stack_segment_valid(vcpu))
5745 return false;
5746 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
5747 return false;
5748 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
5749 return false;
5750 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
5751 return false;
5752 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
5753 return false;
5754 if (!tr_valid(vcpu))
5755 return false;
5756 if (!ldtr_valid(vcpu))
5757 return false;
5758 }
5759 /* TODO:
5760 * - Add checks on RIP
5761 * - Add checks on RFLAGS
5762 */
5763
5764 return true;
5765}
5766
Jim Mattson5fa99cb2017-07-06 16:33:07 -07005767static bool page_address_valid(struct kvm_vcpu *vcpu, gpa_t gpa)
5768{
5769 return PAGE_ALIGNED(gpa) && !(gpa >> cpuid_maxphyaddr(vcpu));
5770}
5771
Mike Dayd77c26f2007-10-08 09:02:08 -04005772static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005773{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005774 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02005775 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005776 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005777
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005778 idx = srcu_read_lock(&kvm->srcu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005779 fn = to_kvm_vmx(kvm)->tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02005780 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
5781 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005782 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02005783 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08005784 r = kvm_write_guest_page(kvm, fn++, &data,
5785 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02005786 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005787 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02005788 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
5789 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005790 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02005791 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
5792 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005793 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02005794 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005795 r = kvm_write_guest_page(kvm, fn, &data,
5796 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
5797 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005798out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005799 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005800 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005801}
5802
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005803static int init_rmode_identity_map(struct kvm *kvm)
5804{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005805 struct kvm_vmx *kvm_vmx = to_kvm_vmx(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08005806 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08005807 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005808 u32 tmp;
5809
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005810 /* Protect kvm_vmx->ept_identity_pagetable_done. */
Tang Chena255d472014-09-16 18:41:58 +08005811 mutex_lock(&kvm->slots_lock);
5812
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005813 if (likely(kvm_vmx->ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08005814 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08005815
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005816 if (!kvm_vmx->ept_identity_map_addr)
5817 kvm_vmx->ept_identity_map_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
5818 identity_map_pfn = kvm_vmx->ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08005819
David Hildenbrandd8a6e362017-08-24 20:51:34 +02005820 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005821 kvm_vmx->ept_identity_map_addr, PAGE_SIZE);
Tang Chenf51770e2014-09-16 18:41:59 +08005822 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08005823 goto out2;
5824
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005825 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005826 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
5827 if (r < 0)
5828 goto out;
5829 /* Set up identity-mapping pagetable for EPT in real mode */
5830 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
5831 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
5832 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
5833 r = kvm_write_guest_page(kvm, identity_map_pfn,
5834 &tmp, i * sizeof(tmp), sizeof(tmp));
5835 if (r < 0)
5836 goto out;
5837 }
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005838 kvm_vmx->ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08005839
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005840out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005841 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08005842
5843out2:
5844 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08005845 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005846}
5847
Avi Kivity6aa8b732006-12-10 02:21:36 -08005848static void seg_setup(int seg)
5849{
Mathias Krause772e0312012-08-30 01:30:19 +02005850 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005851 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005852
5853 vmcs_write16(sf->selector, 0);
5854 vmcs_writel(sf->base, 0);
5855 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02005856 ar = 0x93;
5857 if (seg == VCPU_SREG_CS)
5858 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005859
5860 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005861}
5862
Sheng Yangf78e0e22007-10-29 09:40:42 +08005863static int alloc_apic_access_page(struct kvm *kvm)
5864{
Xiao Guangrong44841412012-09-07 14:14:20 +08005865 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08005866 int r = 0;
5867
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005868 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08005869 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005870 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005871 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
5872 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08005873 if (r)
5874 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02005875
Tang Chen73a6d942014-09-11 13:38:00 +08005876 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08005877 if (is_error_page(page)) {
5878 r = -EFAULT;
5879 goto out;
5880 }
5881
Tang Chenc24ae0d2014-09-24 15:57:58 +08005882 /*
5883 * Do not pin the page in memory, so that memory hot-unplug
5884 * is able to migrate it.
5885 */
5886 put_page(page);
5887 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08005888out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005889 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08005890 return r;
5891}
5892
Wanpeng Li991e7a02015-09-16 17:30:05 +08005893static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08005894{
5895 int vpid;
5896
Avi Kivity919818a2009-03-23 18:01:29 +02005897 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08005898 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08005899 spin_lock(&vmx_vpid_lock);
5900 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08005901 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08005902 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08005903 else
5904 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08005905 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08005906 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08005907}
5908
Wanpeng Li991e7a02015-09-16 17:30:05 +08005909static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08005910{
Wanpeng Li991e7a02015-09-16 17:30:05 +08005911 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08005912 return;
5913 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08005914 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08005915 spin_unlock(&vmx_vpid_lock);
5916}
5917
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005918static void __always_inline vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
5919 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08005920{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005921 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08005922
5923 if (!cpu_has_vmx_msr_bitmap())
5924 return;
5925
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02005926 if (static_branch_unlikely(&enable_evmcs))
5927 evmcs_touch_msr_bitmap();
5928
Sheng Yang25c5f222008-03-28 13:18:56 +08005929 /*
5930 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
5931 * have the write-low and read-high bitmap offsets the wrong way round.
5932 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
5933 */
Sheng Yang25c5f222008-03-28 13:18:56 +08005934 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08005935 if (type & MSR_TYPE_R)
5936 /* read-low */
5937 __clear_bit(msr, msr_bitmap + 0x000 / f);
5938
5939 if (type & MSR_TYPE_W)
5940 /* write-low */
5941 __clear_bit(msr, msr_bitmap + 0x800 / f);
5942
Sheng Yang25c5f222008-03-28 13:18:56 +08005943 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
5944 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08005945 if (type & MSR_TYPE_R)
5946 /* read-high */
5947 __clear_bit(msr, msr_bitmap + 0x400 / f);
5948
5949 if (type & MSR_TYPE_W)
5950 /* write-high */
5951 __clear_bit(msr, msr_bitmap + 0xc00 / f);
5952
5953 }
5954}
5955
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005956static void __always_inline vmx_enable_intercept_for_msr(unsigned long *msr_bitmap,
5957 u32 msr, int type)
5958{
5959 int f = sizeof(unsigned long);
5960
5961 if (!cpu_has_vmx_msr_bitmap())
5962 return;
5963
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +02005964 if (static_branch_unlikely(&enable_evmcs))
5965 evmcs_touch_msr_bitmap();
5966
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005967 /*
5968 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
5969 * have the write-low and read-high bitmap offsets the wrong way round.
5970 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
5971 */
5972 if (msr <= 0x1fff) {
5973 if (type & MSR_TYPE_R)
5974 /* read-low */
5975 __set_bit(msr, msr_bitmap + 0x000 / f);
5976
5977 if (type & MSR_TYPE_W)
5978 /* write-low */
5979 __set_bit(msr, msr_bitmap + 0x800 / f);
5980
5981 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
5982 msr &= 0x1fff;
5983 if (type & MSR_TYPE_R)
5984 /* read-high */
5985 __set_bit(msr, msr_bitmap + 0x400 / f);
5986
5987 if (type & MSR_TYPE_W)
5988 /* write-high */
5989 __set_bit(msr, msr_bitmap + 0xc00 / f);
5990
5991 }
5992}
5993
5994static void __always_inline vmx_set_intercept_for_msr(unsigned long *msr_bitmap,
5995 u32 msr, int type, bool value)
5996{
5997 if (value)
5998 vmx_enable_intercept_for_msr(msr_bitmap, msr, type);
5999 else
6000 vmx_disable_intercept_for_msr(msr_bitmap, msr, type);
6001}
6002
Wincy Vanf2b93282015-02-03 23:56:03 +08006003/*
6004 * If a msr is allowed by L0, we should check whether it is allowed by L1.
6005 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
6006 */
6007static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
6008 unsigned long *msr_bitmap_nested,
6009 u32 msr, int type)
6010{
6011 int f = sizeof(unsigned long);
6012
Wincy Vanf2b93282015-02-03 23:56:03 +08006013 /*
6014 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
6015 * have the write-low and read-high bitmap offsets the wrong way round.
6016 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
6017 */
6018 if (msr <= 0x1fff) {
6019 if (type & MSR_TYPE_R &&
6020 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
6021 /* read-low */
6022 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
6023
6024 if (type & MSR_TYPE_W &&
6025 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
6026 /* write-low */
6027 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
6028
6029 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
6030 msr &= 0x1fff;
6031 if (type & MSR_TYPE_R &&
6032 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
6033 /* read-high */
6034 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
6035
6036 if (type & MSR_TYPE_W &&
6037 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
6038 /* write-high */
6039 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
6040
6041 }
6042}
6043
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006044static u8 vmx_msr_bitmap_mode(struct kvm_vcpu *vcpu)
Avi Kivity58972972009-02-24 22:26:47 +02006045{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006046 u8 mode = 0;
6047
6048 if (cpu_has_secondary_exec_ctrls() &&
6049 (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) &
6050 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
6051 mode |= MSR_BITMAP_MODE_X2APIC;
6052 if (enable_apicv && kvm_vcpu_apicv_active(vcpu))
6053 mode |= MSR_BITMAP_MODE_X2APIC_APICV;
6054 }
6055
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006056 return mode;
Yang Zhang8d146952013-01-25 10:18:50 +08006057}
6058
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006059#define X2APIC_MSR(r) (APIC_BASE_MSR + ((r) >> 4))
6060
6061static void vmx_update_msr_bitmap_x2apic(unsigned long *msr_bitmap,
6062 u8 mode)
Yang Zhang8d146952013-01-25 10:18:50 +08006063{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006064 int msr;
6065
6066 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
6067 unsigned word = msr / BITS_PER_LONG;
6068 msr_bitmap[word] = (mode & MSR_BITMAP_MODE_X2APIC_APICV) ? 0 : ~0;
6069 msr_bitmap[word + (0x800 / sizeof(long))] = ~0;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006070 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006071
6072 if (mode & MSR_BITMAP_MODE_X2APIC) {
6073 /*
6074 * TPR reads and writes can be virtualized even if virtual interrupt
6075 * delivery is not in use.
6076 */
6077 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_TASKPRI), MSR_TYPE_RW);
6078 if (mode & MSR_BITMAP_MODE_X2APIC_APICV) {
6079 vmx_enable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_TMCCT), MSR_TYPE_R);
6080 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_EOI), MSR_TYPE_W);
6081 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_SELF_IPI), MSR_TYPE_W);
6082 }
6083 }
6084}
6085
6086static void vmx_update_msr_bitmap(struct kvm_vcpu *vcpu)
6087{
6088 struct vcpu_vmx *vmx = to_vmx(vcpu);
6089 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
6090 u8 mode = vmx_msr_bitmap_mode(vcpu);
6091 u8 changed = mode ^ vmx->msr_bitmap_mode;
6092
6093 if (!changed)
6094 return;
6095
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006096 if (changed & (MSR_BITMAP_MODE_X2APIC | MSR_BITMAP_MODE_X2APIC_APICV))
6097 vmx_update_msr_bitmap_x2apic(msr_bitmap, mode);
6098
6099 vmx->msr_bitmap_mode = mode;
Avi Kivity58972972009-02-24 22:26:47 +02006100}
6101
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05006102static bool vmx_get_enable_apicv(struct kvm_vcpu *vcpu)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02006103{
Andrey Smetanind62caab2015-11-10 15:36:33 +03006104 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02006105}
6106
David Matlackc9f04402017-08-01 14:00:40 -07006107static void nested_mark_vmcs12_pages_dirty(struct kvm_vcpu *vcpu)
6108{
6109 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6110 gfn_t gfn;
6111
6112 /*
6113 * Don't need to mark the APIC access page dirty; it is never
6114 * written to by the CPU during APIC virtualization.
6115 */
6116
6117 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
6118 gfn = vmcs12->virtual_apic_page_addr >> PAGE_SHIFT;
6119 kvm_vcpu_mark_page_dirty(vcpu, gfn);
6120 }
6121
6122 if (nested_cpu_has_posted_intr(vmcs12)) {
6123 gfn = vmcs12->posted_intr_desc_addr >> PAGE_SHIFT;
6124 kvm_vcpu_mark_page_dirty(vcpu, gfn);
6125 }
6126}
6127
6128
David Hildenbrand6342c502017-01-25 11:58:58 +01006129static void vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
Wincy Van705699a2015-02-03 23:58:17 +08006130{
6131 struct vcpu_vmx *vmx = to_vmx(vcpu);
6132 int max_irr;
6133 void *vapic_page;
6134 u16 status;
6135
David Matlackc9f04402017-08-01 14:00:40 -07006136 if (!vmx->nested.pi_desc || !vmx->nested.pi_pending)
6137 return;
Wincy Van705699a2015-02-03 23:58:17 +08006138
David Matlackc9f04402017-08-01 14:00:40 -07006139 vmx->nested.pi_pending = false;
6140 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
6141 return;
Wincy Van705699a2015-02-03 23:58:17 +08006142
David Matlackc9f04402017-08-01 14:00:40 -07006143 max_irr = find_last_bit((unsigned long *)vmx->nested.pi_desc->pir, 256);
6144 if (max_irr != 256) {
Wincy Van705699a2015-02-03 23:58:17 +08006145 vapic_page = kmap(vmx->nested.virtual_apic_page);
Liran Alone7387b02017-12-24 18:12:54 +02006146 __kvm_apic_update_irr(vmx->nested.pi_desc->pir,
6147 vapic_page, &max_irr);
Wincy Van705699a2015-02-03 23:58:17 +08006148 kunmap(vmx->nested.virtual_apic_page);
6149
6150 status = vmcs_read16(GUEST_INTR_STATUS);
6151 if ((u8)max_irr > ((u8)status & 0xff)) {
6152 status &= ~0xff;
6153 status |= (u8)max_irr;
6154 vmcs_write16(GUEST_INTR_STATUS, status);
6155 }
6156 }
David Matlackc9f04402017-08-01 14:00:40 -07006157
6158 nested_mark_vmcs12_pages_dirty(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08006159}
6160
Liran Alone6c67d82018-09-04 10:56:52 +03006161static bool vmx_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
6162{
6163 struct vcpu_vmx *vmx = to_vmx(vcpu);
6164 void *vapic_page;
6165 u32 vppr;
6166 int rvi;
6167
6168 if (WARN_ON_ONCE(!is_guest_mode(vcpu)) ||
6169 !nested_cpu_has_vid(get_vmcs12(vcpu)) ||
6170 WARN_ON_ONCE(!vmx->nested.virtual_apic_page))
6171 return false;
6172
6173 rvi = vmcs_read16(GUEST_INTR_STATUS) & 0xff;
6174
6175 vapic_page = kmap(vmx->nested.virtual_apic_page);
6176 vppr = *((u32 *)(vapic_page + APIC_PROCPRI));
6177 kunmap(vmx->nested.virtual_apic_page);
6178
6179 return ((rvi & 0xf0) > (vppr & 0xf0));
6180}
6181
Wincy Van06a55242017-04-28 13:13:59 +08006182static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
6183 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01006184{
6185#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08006186 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
6187
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01006188 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08006189 /*
Haozhong Zhang5753743f2017-09-18 09:56:50 +08006190 * The vector of interrupt to be delivered to vcpu had
6191 * been set in PIR before this function.
Feng Wu28b835d2015-09-18 22:29:54 +08006192 *
Haozhong Zhang5753743f2017-09-18 09:56:50 +08006193 * Following cases will be reached in this block, and
6194 * we always send a notification event in all cases as
6195 * explained below.
6196 *
6197 * Case 1: vcpu keeps in non-root mode. Sending a
6198 * notification event posts the interrupt to vcpu.
6199 *
6200 * Case 2: vcpu exits to root mode and is still
6201 * runnable. PIR will be synced to vIRR before the
6202 * next vcpu entry. Sending a notification event in
6203 * this case has no effect, as vcpu is not in root
6204 * mode.
6205 *
6206 * Case 3: vcpu exits to root mode and is blocked.
6207 * vcpu_block() has already synced PIR to vIRR and
6208 * never blocks vcpu if vIRR is not cleared. Therefore,
6209 * a blocked vcpu here does not wait for any requested
6210 * interrupts in PIR, and sending a notification event
6211 * which has no effect is safe here.
Feng Wu28b835d2015-09-18 22:29:54 +08006212 */
Feng Wu28b835d2015-09-18 22:29:54 +08006213
Wincy Van06a55242017-04-28 13:13:59 +08006214 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01006215 return true;
6216 }
6217#endif
6218 return false;
6219}
6220
Wincy Van705699a2015-02-03 23:58:17 +08006221static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
6222 int vector)
6223{
6224 struct vcpu_vmx *vmx = to_vmx(vcpu);
6225
6226 if (is_guest_mode(vcpu) &&
6227 vector == vmx->nested.posted_intr_nv) {
Wincy Van705699a2015-02-03 23:58:17 +08006228 /*
6229 * If a posted intr is not recognized by hardware,
6230 * we will accomplish it in the next vmentry.
6231 */
6232 vmx->nested.pi_pending = true;
6233 kvm_make_request(KVM_REQ_EVENT, vcpu);
Liran Alon6b697712017-11-09 20:27:20 +02006234 /* the PIR and ON have been set by L1. */
6235 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, true))
6236 kvm_vcpu_kick(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08006237 return 0;
6238 }
6239 return -1;
6240}
Avi Kivity6aa8b732006-12-10 02:21:36 -08006241/*
Yang Zhanga20ed542013-04-11 19:25:15 +08006242 * Send interrupt to vcpu via posted interrupt way.
6243 * 1. If target vcpu is running(non-root mode), send posted interrupt
6244 * notification to vcpu and hardware will sync PIR to vIRR atomically.
6245 * 2. If target vcpu isn't running(root mode), kick it to pick up the
6246 * interrupt from PIR in next vmentry.
6247 */
6248static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
6249{
6250 struct vcpu_vmx *vmx = to_vmx(vcpu);
6251 int r;
6252
Wincy Van705699a2015-02-03 23:58:17 +08006253 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
6254 if (!r)
6255 return;
6256
Yang Zhanga20ed542013-04-11 19:25:15 +08006257 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
6258 return;
6259
Paolo Bonzinib95234c2016-12-19 13:57:33 +01006260 /* If a previous notification has sent the IPI, nothing to do. */
6261 if (pi_test_and_set_on(&vmx->pi_desc))
6262 return;
6263
Wincy Van06a55242017-04-28 13:13:59 +08006264 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08006265 kvm_vcpu_kick(vcpu);
6266}
6267
Avi Kivity6aa8b732006-12-10 02:21:36 -08006268/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006269 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
6270 * will not change in the lifetime of the guest.
6271 * Note that host-state that does change is set elsewhere. E.g., host-state
6272 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
6273 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08006274static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006275{
6276 u32 low32, high32;
6277 unsigned long tmpl;
6278 struct desc_ptr dt;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07006279 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006280
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07006281 cr0 = read_cr0();
6282 WARN_ON(cr0 & X86_CR0_TS);
6283 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07006284
6285 /*
6286 * Save the most likely value for this task's CR3 in the VMCS.
6287 * We can't use __get_current_cr3_fast() because we're not atomic.
6288 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07006289 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07006290 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
Sean Christophersond7ee0392018-07-23 12:32:47 -07006291 vmx->loaded_vmcs->host_state.cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006292
Andy Lutomirskid974baa2014-10-08 09:02:13 -07006293 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07006294 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07006295 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
Sean Christophersond7ee0392018-07-23 12:32:47 -07006296 vmx->loaded_vmcs->host_state.cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07006297
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006298 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03006299#ifdef CONFIG_X86_64
6300 /*
6301 * Load null selectors, so we can avoid reloading them in
Sean Christopherson6d6095b2018-07-23 12:32:44 -07006302 * vmx_prepare_switch_to_host(), in case userspace uses
6303 * the null selectors too (the expected case).
Avi Kivityb2da15a2012-05-13 19:53:24 +03006304 */
6305 vmcs_write16(HOST_DS_SELECTOR, 0);
6306 vmcs_write16(HOST_ES_SELECTOR, 0);
6307#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006308 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
6309 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03006310#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006311 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
6312 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
6313
Juergen Gross87930012017-09-04 12:25:27 +02006314 store_idt(&dt);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006315 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08006316 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006317
Avi Kivity83287ea422012-09-16 15:10:57 +03006318 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006319
6320 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
6321 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
6322 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
6323 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
6324
6325 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
6326 rdmsr(MSR_IA32_CR_PAT, low32, high32);
6327 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
6328 }
6329}
6330
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006331static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
6332{
6333 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
6334 if (enable_ept)
6335 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03006336 if (is_guest_mode(&vmx->vcpu))
6337 vmx->vcpu.arch.cr4_guest_owned_bits &=
6338 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006339 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
6340}
6341
Yang Zhang01e439b2013-04-11 19:25:12 +08006342static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
6343{
6344 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
6345
Andrey Smetanind62caab2015-11-10 15:36:33 +03006346 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08006347 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006348
6349 if (!enable_vnmi)
6350 pin_based_exec_ctrl &= ~PIN_BASED_VIRTUAL_NMIS;
6351
Yunhong Jiang64672c92016-06-13 14:19:59 -07006352 /* Enable the preemption timer dynamically */
6353 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08006354 return pin_based_exec_ctrl;
6355}
6356
Andrey Smetanind62caab2015-11-10 15:36:33 +03006357static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
6358{
6359 struct vcpu_vmx *vmx = to_vmx(vcpu);
6360
6361 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03006362 if (cpu_has_secondary_exec_ctrls()) {
6363 if (kvm_vcpu_apicv_active(vcpu))
6364 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
6365 SECONDARY_EXEC_APIC_REGISTER_VIRT |
6366 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
6367 else
6368 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
6369 SECONDARY_EXEC_APIC_REGISTER_VIRT |
6370 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
6371 }
6372
6373 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006374 vmx_update_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03006375}
6376
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006377static u32 vmx_exec_control(struct vcpu_vmx *vmx)
6378{
6379 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01006380
6381 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
6382 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
6383
Paolo Bonzini35754c92015-07-29 12:05:37 +02006384 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006385 exec_control &= ~CPU_BASED_TPR_SHADOW;
6386#ifdef CONFIG_X86_64
6387 exec_control |= CPU_BASED_CR8_STORE_EXITING |
6388 CPU_BASED_CR8_LOAD_EXITING;
6389#endif
6390 }
6391 if (!enable_ept)
6392 exec_control |= CPU_BASED_CR3_STORE_EXITING |
6393 CPU_BASED_CR3_LOAD_EXITING |
6394 CPU_BASED_INVLPG_EXITING;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07006395 if (kvm_mwait_in_guest(vmx->vcpu.kvm))
6396 exec_control &= ~(CPU_BASED_MWAIT_EXITING |
6397 CPU_BASED_MONITOR_EXITING);
Wanpeng Licaa057a2018-03-12 04:53:03 -07006398 if (kvm_hlt_in_guest(vmx->vcpu.kvm))
6399 exec_control &= ~CPU_BASED_HLT_EXITING;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006400 return exec_control;
6401}
6402
Jim Mattson45ec3682017-08-23 16:32:04 -07006403static bool vmx_rdrand_supported(void)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006404{
Jim Mattson45ec3682017-08-23 16:32:04 -07006405 return vmcs_config.cpu_based_2nd_exec_ctrl &
David Hildenbrand736fdf72017-08-24 20:51:37 +02006406 SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07006407}
6408
Jim Mattson75f4fc82017-08-23 16:32:03 -07006409static bool vmx_rdseed_supported(void)
6410{
6411 return vmcs_config.cpu_based_2nd_exec_ctrl &
David Hildenbrand736fdf72017-08-24 20:51:37 +02006412 SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07006413}
6414
Paolo Bonzini80154d72017-08-24 13:55:35 +02006415static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006416{
Paolo Bonzini80154d72017-08-24 13:55:35 +02006417 struct kvm_vcpu *vcpu = &vmx->vcpu;
6418
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006419 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini0367f202016-07-12 10:44:55 +02006420
Paolo Bonzini80154d72017-08-24 13:55:35 +02006421 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006422 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
6423 if (vmx->vpid == 0)
6424 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
6425 if (!enable_ept) {
6426 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
6427 enable_unrestricted_guest = 0;
6428 }
6429 if (!enable_unrestricted_guest)
6430 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Wanpeng Lib31c1142018-03-12 04:53:04 -07006431 if (kvm_pause_in_guest(vmx->vcpu.kvm))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006432 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02006433 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08006434 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
6435 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08006436 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Paolo Bonzini0367f202016-07-12 10:44:55 +02006437
6438 /* SECONDARY_EXEC_DESC is enabled/disabled on writes to CR4.UMIP,
6439 * in vmx_set_cr4. */
6440 exec_control &= ~SECONDARY_EXEC_DESC;
6441
Abel Gordonabc4fc52013-04-18 14:35:25 +03006442 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
6443 (handle_vmptrld).
6444 We can NOT enable shadow_vmcs here because we don't have yet
6445 a current VMCS12
6446 */
6447 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08006448
6449 if (!enable_pml)
6450 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08006451
Paolo Bonzini3db13482017-08-24 14:48:03 +02006452 if (vmx_xsaves_supported()) {
6453 /* Exposing XSAVES only when XSAVE is exposed */
6454 bool xsaves_enabled =
6455 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
6456 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
6457
6458 if (!xsaves_enabled)
6459 exec_control &= ~SECONDARY_EXEC_XSAVES;
6460
6461 if (nested) {
6462 if (xsaves_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006463 vmx->nested.msrs.secondary_ctls_high |=
Paolo Bonzini3db13482017-08-24 14:48:03 +02006464 SECONDARY_EXEC_XSAVES;
6465 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006466 vmx->nested.msrs.secondary_ctls_high &=
Paolo Bonzini3db13482017-08-24 14:48:03 +02006467 ~SECONDARY_EXEC_XSAVES;
6468 }
6469 }
6470
Paolo Bonzini80154d72017-08-24 13:55:35 +02006471 if (vmx_rdtscp_supported()) {
6472 bool rdtscp_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP);
6473 if (!rdtscp_enabled)
6474 exec_control &= ~SECONDARY_EXEC_RDTSCP;
6475
6476 if (nested) {
6477 if (rdtscp_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006478 vmx->nested.msrs.secondary_ctls_high |=
Paolo Bonzini80154d72017-08-24 13:55:35 +02006479 SECONDARY_EXEC_RDTSCP;
6480 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006481 vmx->nested.msrs.secondary_ctls_high &=
Paolo Bonzini80154d72017-08-24 13:55:35 +02006482 ~SECONDARY_EXEC_RDTSCP;
6483 }
6484 }
6485
6486 if (vmx_invpcid_supported()) {
6487 /* Exposing INVPCID only when PCID is exposed */
6488 bool invpcid_enabled =
6489 guest_cpuid_has(vcpu, X86_FEATURE_INVPCID) &&
6490 guest_cpuid_has(vcpu, X86_FEATURE_PCID);
6491
6492 if (!invpcid_enabled) {
6493 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
6494 guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID);
6495 }
6496
6497 if (nested) {
6498 if (invpcid_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006499 vmx->nested.msrs.secondary_ctls_high |=
Paolo Bonzini80154d72017-08-24 13:55:35 +02006500 SECONDARY_EXEC_ENABLE_INVPCID;
6501 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006502 vmx->nested.msrs.secondary_ctls_high &=
Paolo Bonzini80154d72017-08-24 13:55:35 +02006503 ~SECONDARY_EXEC_ENABLE_INVPCID;
6504 }
6505 }
6506
Jim Mattson45ec3682017-08-23 16:32:04 -07006507 if (vmx_rdrand_supported()) {
6508 bool rdrand_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDRAND);
6509 if (rdrand_enabled)
David Hildenbrand736fdf72017-08-24 20:51:37 +02006510 exec_control &= ~SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07006511
6512 if (nested) {
6513 if (rdrand_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006514 vmx->nested.msrs.secondary_ctls_high |=
David Hildenbrand736fdf72017-08-24 20:51:37 +02006515 SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07006516 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006517 vmx->nested.msrs.secondary_ctls_high &=
David Hildenbrand736fdf72017-08-24 20:51:37 +02006518 ~SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07006519 }
6520 }
6521
Jim Mattson75f4fc82017-08-23 16:32:03 -07006522 if (vmx_rdseed_supported()) {
6523 bool rdseed_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDSEED);
6524 if (rdseed_enabled)
David Hildenbrand736fdf72017-08-24 20:51:37 +02006525 exec_control &= ~SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07006526
6527 if (nested) {
6528 if (rdseed_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006529 vmx->nested.msrs.secondary_ctls_high |=
David Hildenbrand736fdf72017-08-24 20:51:37 +02006530 SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07006531 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01006532 vmx->nested.msrs.secondary_ctls_high &=
David Hildenbrand736fdf72017-08-24 20:51:37 +02006533 ~SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07006534 }
6535 }
6536
Paolo Bonzini80154d72017-08-24 13:55:35 +02006537 vmx->secondary_exec_control = exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006538}
6539
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006540static void ept_set_mmio_spte_mask(void)
6541{
6542 /*
6543 * EPT Misconfigurations can be generated if the value of bits 2:0
6544 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006545 */
Peter Feinerdcdca5f2017-06-30 17:26:30 -07006546 kvm_mmu_set_mmio_spte_mask(VMX_EPT_RWX_MASK,
6547 VMX_EPT_MISCONFIG_WX_VALUE);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006548}
6549
Wanpeng Lif53cd632014-12-02 19:14:58 +08006550#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03006551/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08006552 * Sets up the vmcs for emulated real mode.
6553 */
David Hildenbrand12d79912017-08-24 20:51:26 +02006554static void vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006555{
Avi Kivity6aa8b732006-12-10 02:21:36 -08006556 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006557
Abel Gordon4607c2d2013-04-18 14:35:55 +03006558 if (enable_shadow_vmcs) {
Jim Mattsonf4160e42018-05-29 09:11:33 -07006559 /*
6560 * At vCPU creation, "VMWRITE to any supported field
6561 * in the VMCS" is supported, so use the more
6562 * permissive vmx_vmread_bitmap to specify both read
6563 * and write permissions for the shadow VMCS.
6564 */
Abel Gordon4607c2d2013-04-18 14:35:55 +03006565 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
Jim Mattsonf4160e42018-05-29 09:11:33 -07006566 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmread_bitmap));
Abel Gordon4607c2d2013-04-18 14:35:55 +03006567 }
Sheng Yang25c5f222008-03-28 13:18:56 +08006568 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01006569 vmcs_write64(MSR_BITMAP, __pa(vmx->vmcs01.msr_bitmap));
Sheng Yang25c5f222008-03-28 13:18:56 +08006570
Avi Kivity6aa8b732006-12-10 02:21:36 -08006571 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
6572
Avi Kivity6aa8b732006-12-10 02:21:36 -08006573 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08006574 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yunhong Jiang64672c92016-06-13 14:19:59 -07006575 vmx->hv_deadline_tsc = -1;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006576
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006577 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08006578
Dan Williamsdfa169b2016-06-02 11:17:24 -07006579 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +02006580 vmx_compute_secondary_exec_control(vmx);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006581 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
Paolo Bonzini80154d72017-08-24 13:55:35 +02006582 vmx->secondary_exec_control);
Dan Williamsdfa169b2016-06-02 11:17:24 -07006583 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08006584
Andrey Smetanind62caab2015-11-10 15:36:33 +03006585 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08006586 vmcs_write64(EOI_EXIT_BITMAP0, 0);
6587 vmcs_write64(EOI_EXIT_BITMAP1, 0);
6588 vmcs_write64(EOI_EXIT_BITMAP2, 0);
6589 vmcs_write64(EOI_EXIT_BITMAP3, 0);
6590
6591 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08006592
Li RongQing0bcf2612015-12-03 13:29:34 +08006593 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08006594 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08006595 }
6596
Wanpeng Lib31c1142018-03-12 04:53:04 -07006597 if (!kvm_pause_in_guest(vmx->vcpu.kvm)) {
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006598 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02006599 vmx->ple_window = ple_window;
6600 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006601 }
6602
Xiao Guangrongc3707952011-07-12 03:28:04 +08006603 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
6604 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006605 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
6606
Avi Kivity9581d442010-10-19 16:46:55 +02006607 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
6608 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08006609 vmx_set_constant_host_state(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006610 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
6611 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08006612
Bandan Das2a499e42017-08-03 15:54:41 -04006613 if (cpu_has_vmx_vmfunc())
6614 vmcs_write64(VM_FUNCTION_CONTROL, 0);
6615
Eddie Dong2cc51562007-05-21 07:28:09 +03006616 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
6617 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04006618 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host.val));
Eddie Dong2cc51562007-05-21 07:28:09 +03006619 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -04006620 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest.val));
Avi Kivity6aa8b732006-12-10 02:21:36 -08006621
Radim Krčmář74545702015-04-27 15:11:25 +02006622 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
6623 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08006624
Paolo Bonzini03916db2014-07-24 14:21:57 +02006625 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08006626 u32 index = vmx_msr_index[i];
6627 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006628 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006629
6630 if (rdmsr_safe(index, &data_low, &data_high) < 0)
6631 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08006632 if (wrmsr_safe(index, data_low, data_high) < 0)
6633 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03006634 vmx->guest_msrs[j].index = i;
6635 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02006636 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006637 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006638 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006639
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02006640 vmx->arch_capabilities = kvm_get_arch_capabilities();
Gleb Natapov2961e8762013-11-25 15:37:13 +02006641
6642 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006643
6644 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02006645 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03006646
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006647 vmx->vcpu.arch.cr0_guest_owned_bits = X86_CR0_TS;
6648 vmcs_writel(CR0_GUEST_HOST_MASK, ~X86_CR0_TS);
6649
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006650 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006651
Wanpeng Lif53cd632014-12-02 19:14:58 +08006652 if (vmx_xsaves_supported())
6653 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
6654
Peter Feiner4e595162016-07-07 14:49:58 -07006655 if (enable_pml) {
6656 ASSERT(vmx->pml_pg);
6657 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
6658 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
6659 }
Sean Christopherson0b665d32018-08-14 09:33:34 -07006660
6661 if (cpu_has_vmx_encls_vmexit())
6662 vmcs_write64(ENCLS_EXITING_BITMAP, -1ull);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006663}
6664
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006665static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006666{
6667 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01006668 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006669 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006670
Avi Kivity7ffd92c2009-06-09 14:10:45 +03006671 vmx->rmode.vm86_active = 0;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006672 vmx->spec_ctrl = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006673
Wanpeng Li518e7b92018-02-28 14:03:31 +08006674 vcpu->arch.microcode_version = 0x100000000ULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006675 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006676 kvm_set_cr8(vcpu, 0);
6677
6678 if (!init_event) {
6679 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
6680 MSR_IA32_APICBASE_ENABLE;
6681 if (kvm_vcpu_is_reset_bsp(vcpu))
6682 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
6683 apic_base_msr.host_initiated = true;
6684 kvm_set_apic_base(vcpu, &apic_base_msr);
6685 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006686
Avi Kivity2fb92db2011-04-27 19:42:18 +03006687 vmx_segment_cache_clear(vmx);
6688
Avi Kivity5706be02008-08-20 15:07:31 +03006689 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01006690 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01006691 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006692
6693 seg_setup(VCPU_SREG_DS);
6694 seg_setup(VCPU_SREG_ES);
6695 seg_setup(VCPU_SREG_FS);
6696 seg_setup(VCPU_SREG_GS);
6697 seg_setup(VCPU_SREG_SS);
6698
6699 vmcs_write16(GUEST_TR_SELECTOR, 0);
6700 vmcs_writel(GUEST_TR_BASE, 0);
6701 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
6702 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
6703
6704 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
6705 vmcs_writel(GUEST_LDTR_BASE, 0);
6706 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
6707 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
6708
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006709 if (!init_event) {
6710 vmcs_write32(GUEST_SYSENTER_CS, 0);
6711 vmcs_writel(GUEST_SYSENTER_ESP, 0);
6712 vmcs_writel(GUEST_SYSENTER_EIP, 0);
6713 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
6714 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006715
Wanpeng Lic37c2872017-11-20 14:52:21 -08006716 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
Jan Kiszka66450a22013-03-13 12:42:34 +01006717 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006718
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006719 vmcs_writel(GUEST_GDTR_BASE, 0);
6720 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
6721
6722 vmcs_writel(GUEST_IDTR_BASE, 0);
6723 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
6724
Anthony Liguori443381a2010-12-06 10:53:38 -06006725 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006726 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01006727 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Wanpeng Lia554d202017-10-11 05:10:19 -07006728 if (kvm_mpx_supported())
6729 vmcs_write64(GUEST_BNDCFGS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006730
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006731 setup_msrs(vmx);
6732
Avi Kivity6aa8b732006-12-10 02:21:36 -08006733 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
6734
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006735 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08006736 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02006737 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08006738 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006739 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08006740 vmcs_write32(TPR_THRESHOLD, 0);
6741 }
6742
Paolo Bonzinia73896c2014-11-02 07:54:30 +01006743 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006744
Sheng Yang2384d2b2008-01-17 15:14:33 +08006745 if (vmx->vpid != 0)
6746 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
6747
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006748 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006749 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06006750 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006751 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02006752 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006753
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006754 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006755
Wanpeng Lidd5f5342015-09-23 18:26:57 +08006756 vpid_sync_context(vmx->vpid);
Wanpeng Licaa057a2018-03-12 04:53:03 -07006757 if (init_event)
6758 vmx_clear_hlt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006759}
6760
Nadav Har'Elb6f12502011-05-25 23:13:06 +03006761/*
6762 * In nested virtualization, check if L1 asked to exit on external interrupts.
6763 * For most existing hypervisors, this will always return true.
6764 */
6765static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
6766{
6767 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
6768 PIN_BASED_EXT_INTR_MASK;
6769}
6770
Bandan Das77b0f5d2014-04-19 18:17:45 -04006771/*
6772 * In nested virtualization, check if L1 has set
6773 * VM_EXIT_ACK_INTR_ON_EXIT
6774 */
6775static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
6776{
6777 return get_vmcs12(vcpu)->vm_exit_controls &
6778 VM_EXIT_ACK_INTR_ON_EXIT;
6779}
6780
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02006781static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
6782{
Krish Sadhukhan0c7f6502018-02-20 21:24:39 -05006783 return nested_cpu_has_nmi_exiting(get_vmcs12(vcpu));
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02006784}
6785
Jan Kiszkac9a79532014-03-07 20:03:15 +01006786static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006787{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006788 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
6789 CPU_BASED_VIRTUAL_INTR_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006790}
6791
Jan Kiszkac9a79532014-03-07 20:03:15 +01006792static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006793{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006794 if (!enable_vnmi ||
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006795 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jan Kiszkac9a79532014-03-07 20:03:15 +01006796 enable_irq_window(vcpu);
6797 return;
6798 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02006799
Paolo Bonzini47c01522016-12-19 11:44:07 +01006800 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
6801 CPU_BASED_VIRTUAL_NMI_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006802}
6803
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006804static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03006805{
Avi Kivity9c8cba32007-11-22 11:42:59 +02006806 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006807 uint32_t intr;
6808 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02006809
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006810 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006811
Avi Kivityfa89a812008-09-01 15:57:51 +03006812 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03006813 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05006814 int inc_eip = 0;
6815 if (vcpu->arch.interrupt.soft)
6816 inc_eip = vcpu->arch.event_exit_inst_len;
6817 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02006818 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03006819 return;
6820 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006821 intr = irq | INTR_INFO_VALID_MASK;
6822 if (vcpu->arch.interrupt.soft) {
6823 intr |= INTR_TYPE_SOFT_INTR;
6824 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
6825 vmx->vcpu.arch.event_exit_inst_len);
6826 } else
6827 intr |= INTR_TYPE_EXT_INTR;
6828 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Wanpeng Licaa057a2018-03-12 04:53:03 -07006829
6830 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03006831}
6832
Sheng Yangf08864b2008-05-15 18:23:25 +08006833static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
6834{
Jan Kiszka66a5a342008-09-26 09:30:51 +02006835 struct vcpu_vmx *vmx = to_vmx(vcpu);
6836
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006837 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006838 /*
6839 * Tracking the NMI-blocked state in software is built upon
6840 * finding the next open IRQ window. This, in turn, depends on
6841 * well-behaving guests: They have to keep IRQs disabled at
6842 * least as long as the NMI handler runs. Otherwise we may
6843 * cause NMI nesting, maybe breaking the guest. But as this is
6844 * highly unlikely, we can live with the residual risk.
6845 */
6846 vmx->loaded_vmcs->soft_vnmi_blocked = 1;
6847 vmx->loaded_vmcs->vnmi_blocked_time = 0;
6848 }
6849
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02006850 ++vcpu->stat.nmi_injections;
6851 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006852
Avi Kivity7ffd92c2009-06-09 14:10:45 +03006853 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05006854 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02006855 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02006856 return;
6857 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08006858
Sheng Yangf08864b2008-05-15 18:23:25 +08006859 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
6860 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Wanpeng Licaa057a2018-03-12 04:53:03 -07006861
6862 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006863}
6864
Jan Kiszka3cfc3092009-11-12 01:04:25 +01006865static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
6866{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02006867 struct vcpu_vmx *vmx = to_vmx(vcpu);
6868 bool masked;
6869
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006870 if (!enable_vnmi)
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006871 return vmx->loaded_vmcs->soft_vnmi_blocked;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02006872 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02006873 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02006874 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
6875 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
6876 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01006877}
6878
6879static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
6880{
6881 struct vcpu_vmx *vmx = to_vmx(vcpu);
6882
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006883 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006884 if (vmx->loaded_vmcs->soft_vnmi_blocked != masked) {
6885 vmx->loaded_vmcs->soft_vnmi_blocked = masked;
6886 vmx->loaded_vmcs->vnmi_blocked_time = 0;
6887 }
6888 } else {
6889 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
6890 if (masked)
6891 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
6892 GUEST_INTR_STATE_NMI);
6893 else
6894 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
6895 GUEST_INTR_STATE_NMI);
6896 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01006897}
6898
Jan Kiszka2505dc92013-04-14 12:12:47 +02006899static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
6900{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006901 if (to_vmx(vcpu)->nested.nested_run_pending)
6902 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02006903
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006904 if (!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006905 to_vmx(vcpu)->loaded_vmcs->soft_vnmi_blocked)
6906 return 0;
6907
Jan Kiszka2505dc92013-04-14 12:12:47 +02006908 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
6909 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
6910 | GUEST_INTR_STATE_NMI));
6911}
6912
Gleb Natapov78646122009-03-23 12:12:11 +02006913static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
6914{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006915 return (!to_vmx(vcpu)->nested.nested_run_pending &&
6916 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03006917 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
6918 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02006919}
6920
Izik Eiduscbc94022007-10-25 00:29:55 +02006921static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
6922{
6923 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02006924
Sean Christophersonf7eaeb02018-03-05 12:04:36 -08006925 if (enable_unrestricted_guest)
6926 return 0;
6927
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02006928 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
6929 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02006930 if (ret)
6931 return ret;
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07006932 to_kvm_vmx(kvm)->tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02006933 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02006934}
6935
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07006936static int vmx_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
6937{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07006938 to_kvm_vmx(kvm)->ept_identity_map_addr = ident_addr;
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07006939 return 0;
6940}
6941
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006942static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006943{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02006944 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02006945 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01006946 /*
6947 * Update instruction length as we may reinject the exception
6948 * from user space while in guest debugging mode.
6949 */
6950 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
6951 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006952 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006953 return false;
6954 /* fall through */
6955 case DB_VECTOR:
6956 if (vcpu->guest_debug &
6957 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
6958 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006959 /* fall through */
6960 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02006961 case OF_VECTOR:
6962 case BR_VECTOR:
6963 case UD_VECTOR:
6964 case DF_VECTOR:
6965 case SS_VECTOR:
6966 case GP_VECTOR:
6967 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006968 return true;
6969 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02006970 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006971 return false;
6972}
6973
6974static int handle_rmode_exception(struct kvm_vcpu *vcpu,
6975 int vec, u32 err_code)
6976{
6977 /*
6978 * Instruction with address size override prefix opcode 0x67
6979 * Cause the #SS fault with 0 error code in VM86 mode.
6980 */
6981 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
Sean Christopherson0ce97a22018-08-23 13:56:52 -07006982 if (kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE) {
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006983 if (vcpu->arch.halt_request) {
6984 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006985 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006986 }
6987 return 1;
6988 }
6989 return 0;
6990 }
6991
6992 /*
6993 * Forward all other exceptions that are valid in real mode.
6994 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
6995 * the required debugging infrastructure rework.
6996 */
6997 kvm_queue_exception(vcpu, vec);
6998 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006999}
7000
Andi Kleena0861c02009-06-08 17:37:09 +08007001/*
7002 * Trigger machine check on the host. We assume all the MSRs are already set up
7003 * by the CPU and that we still run on the same CPU as the MCE occurred on.
7004 * We pass a fake environment to the machine check handler because we want
7005 * the guest to be always treated like user space, no matter what context
7006 * it used internally.
7007 */
7008static void kvm_machine_check(void)
7009{
7010#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
7011 struct pt_regs regs = {
7012 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
7013 .flags = X86_EFLAGS_IF,
7014 };
7015
7016 do_machine_check(&regs, 0);
7017#endif
7018}
7019
Avi Kivity851ba692009-08-24 11:10:17 +03007020static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08007021{
7022 /* already handled by vcpu_run */
7023 return 1;
7024}
7025
Avi Kivity851ba692009-08-24 11:10:17 +03007026static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007027{
Avi Kivity1155f762007-11-22 11:30:47 +02007028 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03007029 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007030 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007031 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007032 u32 vect_info;
7033 enum emulation_result er;
7034
Avi Kivity1155f762007-11-22 11:30:47 +02007035 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02007036 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007037
Andi Kleena0861c02009-06-08 17:37:09 +08007038 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03007039 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08007040
Jim Mattsonef85b672016-12-12 11:01:37 -08007041 if (is_nmi(intr_info))
Avi Kivity1b6269d2007-10-09 12:12:19 +02007042 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03007043
Wanpeng Li082d06e2018-04-03 16:28:48 -07007044 if (is_invalid_opcode(intr_info))
7045 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05007046
Avi Kivity6aa8b732006-12-10 02:21:36 -08007047 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06007048 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007049 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08007050
Liran Alon9e869482018-03-12 13:12:51 +02007051 if (!vmx->rmode.vm86_active && is_gp_fault(intr_info)) {
7052 WARN_ON_ONCE(!enable_vmware_backdoor);
Sean Christopherson0ce97a22018-08-23 13:56:52 -07007053 er = kvm_emulate_instruction(vcpu,
Liran Alon9e869482018-03-12 13:12:51 +02007054 EMULTYPE_VMWARE | EMULTYPE_NO_UD_ON_FAIL);
7055 if (er == EMULATE_USER_EXIT)
7056 return 0;
7057 else if (er != EMULATE_DONE)
7058 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
7059 return 1;
7060 }
7061
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08007062 /*
7063 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
7064 * MMIO, it is better to report an internal error.
7065 * See the comments in vmx_handle_exit.
7066 */
7067 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
7068 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
7069 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7070 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02007071 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08007072 vcpu->run->internal.data[0] = vect_info;
7073 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02007074 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08007075 return 0;
7076 }
7077
Avi Kivity6aa8b732006-12-10 02:21:36 -08007078 if (is_page_fault(intr_info)) {
7079 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07007080 /* EPT won't cause page fault directly */
7081 WARN_ON_ONCE(!vcpu->arch.apf.host_apf_reason && enable_ept);
Paolo Bonzinid0006532017-08-11 18:36:43 +02007082 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007083 }
7084
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007085 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02007086
7087 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
7088 return handle_rmode_exception(vcpu, ex_no, error_code);
7089
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007090 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01007091 case AC_VECTOR:
7092 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
7093 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007094 case DB_VECTOR:
7095 dr6 = vmcs_readl(EXIT_QUALIFICATION);
7096 if (!(vcpu->guest_debug &
7097 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01007098 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03007099 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Linus Torvalds32d43cd2018-03-20 12:16:59 -07007100 if (is_icebp(intr_info))
Huw Daviesfd2a4452014-04-16 10:02:51 +01007101 skip_emulated_instruction(vcpu);
7102
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007103 kvm_queue_exception(vcpu, DB_VECTOR);
7104 return 1;
7105 }
7106 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
7107 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
7108 /* fall through */
7109 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01007110 /*
7111 * Update instruction length as we may reinject #BP from
7112 * user space while in guest debugging mode. Reading it for
7113 * #DB as well causes no harm, it is not used in that case.
7114 */
7115 vmx->vcpu.arch.event_exit_inst_len =
7116 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007117 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03007118 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007119 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
7120 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007121 break;
7122 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01007123 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
7124 kvm_run->ex.exception = ex_no;
7125 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007126 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007127 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08007128 return 0;
7129}
7130
Avi Kivity851ba692009-08-24 11:10:17 +03007131static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007132{
Avi Kivity1165f5f2007-04-19 17:27:43 +03007133 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007134 return 1;
7135}
7136
Avi Kivity851ba692009-08-24 11:10:17 +03007137static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08007138{
Avi Kivity851ba692009-08-24 11:10:17 +03007139 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07007140 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08007141 return 0;
7142}
Avi Kivity6aa8b732006-12-10 02:21:36 -08007143
Avi Kivity851ba692009-08-24 11:10:17 +03007144static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007145{
He, Qingbfdaab02007-09-12 14:18:28 +08007146 unsigned long exit_qualification;
Sean Christophersondca7f122018-03-08 08:57:27 -08007147 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02007148 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007149
He, Qingbfdaab02007-09-12 14:18:28 +08007150 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02007151 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03007152
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007153 ++vcpu->stat.io_exits;
7154
Sean Christopherson432baf62018-03-08 08:57:26 -08007155 if (string)
Sean Christopherson0ce97a22018-08-23 13:56:52 -07007156 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007157
7158 port = exit_qualification >> 16;
7159 size = (exit_qualification & 7) + 1;
Sean Christopherson432baf62018-03-08 08:57:26 -08007160 in = (exit_qualification & 8) != 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007161
Sean Christophersondca7f122018-03-08 08:57:27 -08007162 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007163}
7164
Ingo Molnar102d8322007-02-19 14:37:47 +02007165static void
7166vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
7167{
7168 /*
7169 * Patch in the VMCALL instruction:
7170 */
7171 hypercall[0] = 0x0f;
7172 hypercall[1] = 0x01;
7173 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02007174}
7175
Guo Chao0fa06072012-06-28 15:16:19 +08007176/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007177static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
7178{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007179 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007180 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7181 unsigned long orig_val = val;
7182
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007183 /*
7184 * We get here when L2 changed cr0 in a way that did not change
7185 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007186 * but did change L0 shadowed bits. So we first calculate the
7187 * effective cr0 value that L1 would like to write into the
7188 * hardware. It consists of the L2-owned bits from the new
7189 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007190 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007191 val = (val & ~vmcs12->cr0_guest_host_mask) |
7192 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
7193
David Matlack38991522016-11-29 18:14:08 -08007194 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007195 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007196
7197 if (kvm_set_cr0(vcpu, val))
7198 return 1;
7199 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007200 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007201 } else {
7202 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08007203 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007204 return 1;
David Matlack38991522016-11-29 18:14:08 -08007205
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007206 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007207 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007208}
7209
7210static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
7211{
7212 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007213 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7214 unsigned long orig_val = val;
7215
7216 /* analogously to handle_set_cr0 */
7217 val = (val & ~vmcs12->cr4_guest_host_mask) |
7218 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
7219 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007220 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01007221 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007222 return 0;
7223 } else
7224 return kvm_set_cr4(vcpu, val);
7225}
7226
Paolo Bonzini0367f202016-07-12 10:44:55 +02007227static int handle_desc(struct kvm_vcpu *vcpu)
7228{
7229 WARN_ON(!(vcpu->arch.cr4 & X86_CR4_UMIP));
Sean Christopherson0ce97a22018-08-23 13:56:52 -07007230 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Paolo Bonzini0367f202016-07-12 10:44:55 +02007231}
7232
Avi Kivity851ba692009-08-24 11:10:17 +03007233static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007234{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007235 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007236 int cr;
7237 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03007238 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08007239 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007240
He, Qingbfdaab02007-09-12 14:18:28 +08007241 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007242 cr = exit_qualification & 15;
7243 reg = (exit_qualification >> 8) & 15;
7244 switch ((exit_qualification >> 4) & 3) {
7245 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03007246 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007247 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007248 switch (cr) {
7249 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007250 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007251 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007252 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08007253 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity23902182010-06-10 17:02:16 +03007254 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007255 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007256 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03007257 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007258 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03007259 case 8: {
7260 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03007261 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01007262 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007263 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02007264 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08007265 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03007266 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08007267 return ret;
7268 /*
7269 * TODO: we might be squashing a
7270 * KVM_GUESTDBG_SINGLESTEP-triggered
7271 * KVM_EXIT_DEBUG here.
7272 */
Avi Kivity851ba692009-08-24 11:10:17 +03007273 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03007274 return 0;
7275 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02007276 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08007277 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03007278 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08007279 WARN_ONCE(1, "Guest should always own CR0.TS");
7280 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02007281 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08007282 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007283 case 1: /*mov from cr*/
7284 switch (cr) {
7285 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08007286 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity9f8fe502010-12-05 17:30:00 +02007287 val = kvm_read_cr3(vcpu);
7288 kvm_register_write(vcpu, reg, val);
7289 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007290 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007291 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007292 val = kvm_get_cr8(vcpu);
7293 kvm_register_write(vcpu, reg, val);
7294 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007295 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007296 }
7297 break;
7298 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02007299 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02007300 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02007301 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007302
Kyle Huey6affcbe2016-11-29 12:40:40 -08007303 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007304 default:
7305 break;
7306 }
Avi Kivity851ba692009-08-24 11:10:17 +03007307 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03007308 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08007309 (int)(exit_qualification >> 4) & 3, cr);
7310 return 0;
7311}
7312
Avi Kivity851ba692009-08-24 11:10:17 +03007313static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007314{
He, Qingbfdaab02007-09-12 14:18:28 +08007315 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03007316 int dr, dr7, reg;
7317
7318 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7319 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
7320
7321 /* First, if DR does not exist, trigger UD */
7322 if (!kvm_require_dr(vcpu, dr))
7323 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007324
Jan Kiszkaf2483412010-01-20 18:20:20 +01007325 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03007326 if (!kvm_require_cpl(vcpu, 0))
7327 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03007328 dr7 = vmcs_readl(GUEST_DR7);
7329 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007330 /*
7331 * As the vm-exit takes precedence over the debug trap, we
7332 * need to emulate the latter, either for the host or the
7333 * guest debugging itself.
7334 */
7335 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03007336 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03007337 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02007338 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03007339 vcpu->run->debug.arch.exception = DB_VECTOR;
7340 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007341 return 0;
7342 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02007343 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03007344 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007345 kvm_queue_exception(vcpu, DB_VECTOR);
7346 return 1;
7347 }
7348 }
7349
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007350 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01007351 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
7352 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007353
7354 /*
7355 * No more DR vmexits; force a reload of the debug registers
7356 * and reenter on this instruction. The next vmexit will
7357 * retrieve the full state of the debug registers.
7358 */
7359 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
7360 return 1;
7361 }
7362
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007363 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
7364 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03007365 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01007366
7367 if (kvm_get_dr(vcpu, dr, &val))
7368 return 1;
7369 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03007370 } else
Nadav Amit57773922014-06-18 17:19:23 +03007371 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01007372 return 1;
7373
Kyle Huey6affcbe2016-11-29 12:40:40 -08007374 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007375}
7376
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01007377static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
7378{
7379 return vcpu->arch.dr6;
7380}
7381
7382static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
7383{
7384}
7385
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007386static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
7387{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007388 get_debugreg(vcpu->arch.db[0], 0);
7389 get_debugreg(vcpu->arch.db[1], 1);
7390 get_debugreg(vcpu->arch.db[2], 2);
7391 get_debugreg(vcpu->arch.db[3], 3);
7392 get_debugreg(vcpu->arch.dr6, 6);
7393 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
7394
7395 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01007396 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01007397}
7398
Gleb Natapov020df072010-04-13 10:05:23 +03007399static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
7400{
7401 vmcs_writel(GUEST_DR7, val);
7402}
7403
Avi Kivity851ba692009-08-24 11:10:17 +03007404static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007405{
Kyle Huey6a908b62016-11-29 12:40:37 -08007406 return kvm_emulate_cpuid(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007407}
7408
Avi Kivity851ba692009-08-24 11:10:17 +03007409static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007410{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007411 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02007412 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007413
Paolo Bonzini609e36d2015-04-08 15:30:38 +02007414 msr_info.index = ecx;
7415 msr_info.host_initiated = false;
7416 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02007417 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02007418 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007419 return 1;
7420 }
7421
Paolo Bonzini609e36d2015-04-08 15:30:38 +02007422 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04007423
Avi Kivity6aa8b732006-12-10 02:21:36 -08007424 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02007425 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
7426 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Kyle Huey6affcbe2016-11-29 12:40:40 -08007427 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007428}
7429
Avi Kivity851ba692009-08-24 11:10:17 +03007430static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007431{
Will Auld8fe8ab42012-11-29 12:42:12 -08007432 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08007433 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
7434 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
7435 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007436
Will Auld8fe8ab42012-11-29 12:42:12 -08007437 msr.data = data;
7438 msr.index = ecx;
7439 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03007440 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02007441 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02007442 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007443 return 1;
7444 }
7445
Avi Kivity59200272010-01-25 19:47:02 +02007446 trace_kvm_msr_write(ecx, data);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007447 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007448}
7449
Avi Kivity851ba692009-08-24 11:10:17 +03007450static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08007451{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01007452 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08007453 return 1;
7454}
7455
Avi Kivity851ba692009-08-24 11:10:17 +03007456static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007457{
Paolo Bonzini47c01522016-12-19 11:44:07 +01007458 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
7459 CPU_BASED_VIRTUAL_INTR_PENDING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04007460
Avi Kivity3842d132010-07-27 12:30:24 +03007461 kvm_make_request(KVM_REQ_EVENT, vcpu);
7462
Jan Kiszkaa26bf122008-09-26 09:30:45 +02007463 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007464 return 1;
7465}
7466
Avi Kivity851ba692009-08-24 11:10:17 +03007467static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08007468{
Avi Kivityd3bef152007-06-05 15:53:05 +03007469 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007470}
7471
Avi Kivity851ba692009-08-24 11:10:17 +03007472static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02007473{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03007474 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02007475}
7476
Gleb Natapovec25d5e2010-11-01 15:35:01 +02007477static int handle_invd(struct kvm_vcpu *vcpu)
7478{
Sean Christopherson0ce97a22018-08-23 13:56:52 -07007479 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02007480}
7481
Avi Kivity851ba692009-08-24 11:10:17 +03007482static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03007483{
Sheng Yangf9c617f2009-03-25 10:08:52 +08007484 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03007485
7486 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007487 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03007488}
7489
Avi Kivityfee84b02011-11-10 14:57:25 +02007490static int handle_rdpmc(struct kvm_vcpu *vcpu)
7491{
7492 int err;
7493
7494 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007495 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02007496}
7497
Avi Kivity851ba692009-08-24 11:10:17 +03007498static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02007499{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007500 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02007501}
7502
Dexuan Cui2acf9232010-06-10 11:27:12 +08007503static int handle_xsetbv(struct kvm_vcpu *vcpu)
7504{
7505 u64 new_bv = kvm_read_edx_eax(vcpu);
7506 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
7507
7508 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08007509 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08007510 return 1;
7511}
7512
Wanpeng Lif53cd632014-12-02 19:14:58 +08007513static int handle_xsaves(struct kvm_vcpu *vcpu)
7514{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007515 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08007516 WARN(1, "this should never happen\n");
7517 return 1;
7518}
7519
7520static int handle_xrstors(struct kvm_vcpu *vcpu)
7521{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007522 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08007523 WARN(1, "this should never happen\n");
7524 return 1;
7525}
7526
Avi Kivity851ba692009-08-24 11:10:17 +03007527static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08007528{
Kevin Tian58fbbf22011-08-30 13:56:17 +03007529 if (likely(fasteoi)) {
7530 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7531 int access_type, offset;
7532
7533 access_type = exit_qualification & APIC_ACCESS_TYPE;
7534 offset = exit_qualification & APIC_ACCESS_OFFSET;
7535 /*
7536 * Sane guest uses MOV to write EOI, with written value
7537 * not cared. So make a short-circuit here by avoiding
7538 * heavy instruction emulation.
7539 */
7540 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
7541 (offset == APIC_EOI)) {
7542 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007543 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03007544 }
7545 }
Sean Christopherson0ce97a22018-08-23 13:56:52 -07007546 return kvm_emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08007547}
7548
Yang Zhangc7c9c562013-01-25 10:18:51 +08007549static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
7550{
7551 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7552 int vector = exit_qualification & 0xff;
7553
7554 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
7555 kvm_apic_set_eoi_accelerated(vcpu, vector);
7556 return 1;
7557}
7558
Yang Zhang83d4c282013-01-25 10:18:49 +08007559static int handle_apic_write(struct kvm_vcpu *vcpu)
7560{
7561 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7562 u32 offset = exit_qualification & 0xfff;
7563
7564 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
7565 kvm_apic_write_nodecode(vcpu, offset);
7566 return 1;
7567}
7568
Avi Kivity851ba692009-08-24 11:10:17 +03007569static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02007570{
Jan Kiszka60637aa2008-09-26 09:30:47 +02007571 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02007572 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02007573 bool has_error_code = false;
7574 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02007575 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007576 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007577
7578 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007579 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007580 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02007581
7582 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7583
7584 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007585 if (reason == TASK_SWITCH_GATE && idt_v) {
7586 switch (type) {
7587 case INTR_TYPE_NMI_INTR:
7588 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02007589 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007590 break;
7591 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03007592 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007593 kvm_clear_interrupt_queue(vcpu);
7594 break;
7595 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02007596 if (vmx->idt_vectoring_info &
7597 VECTORING_INFO_DELIVER_CODE_MASK) {
7598 has_error_code = true;
7599 error_code =
7600 vmcs_read32(IDT_VECTORING_ERROR_CODE);
7601 }
7602 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007603 case INTR_TYPE_SOFT_EXCEPTION:
7604 kvm_clear_exception_queue(vcpu);
7605 break;
7606 default:
7607 break;
7608 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02007609 }
Izik Eidus37817f22008-03-24 23:14:53 +02007610 tss_selector = exit_qualification;
7611
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007612 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
7613 type != INTR_TYPE_EXT_INTR &&
7614 type != INTR_TYPE_NMI_INTR))
7615 skip_emulated_instruction(vcpu);
7616
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007617 if (kvm_task_switch(vcpu, tss_selector,
7618 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
7619 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03007620 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7621 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
7622 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007623 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03007624 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007625
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007626 /*
7627 * TODO: What about debug traps on tss switch?
7628 * Are we supposed to inject them and update dr6?
7629 */
7630
7631 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02007632}
7633
Avi Kivity851ba692009-08-24 11:10:17 +03007634static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08007635{
Sheng Yangf9c617f2009-03-25 10:08:52 +08007636 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08007637 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01007638 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08007639
Sheng Yangf9c617f2009-03-25 10:08:52 +08007640 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08007641
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03007642 /*
7643 * EPT violation happened while executing iret from NMI,
7644 * "blocked by NMI" bit has to be set before next VM entry.
7645 * There are errata that may cause this bit to not be set:
7646 * AAK134, BY25.
7647 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03007648 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01007649 enable_vnmi &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03007650 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03007651 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
7652
Sheng Yang14394422008-04-28 12:24:45 +08007653 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007654 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08007655
Junaid Shahid27959a42016-12-06 16:46:10 -08007656 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08007657 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08007658 ? PFERR_USER_MASK : 0;
7659 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08007660 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08007661 ? PFERR_WRITE_MASK : 0;
7662 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08007663 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08007664 ? PFERR_FETCH_MASK : 0;
7665 /* ept page table entry is present? */
7666 error_code |= (exit_qualification &
7667 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
7668 EPT_VIOLATION_EXECUTABLE))
7669 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08007670
Paolo Bonzinieebed242016-11-28 14:39:58 +01007671 error_code |= (exit_qualification & 0x100) != 0 ?
7672 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03007673
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08007674 vcpu->arch.exit_qualification = exit_qualification;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08007675 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08007676}
7677
Avi Kivity851ba692009-08-24 11:10:17 +03007678static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007679{
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007680 gpa_t gpa;
7681
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02007682 /*
7683 * A nested guest cannot optimize MMIO vmexits, because we have an
7684 * nGPA here instead of the required GPA.
7685 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007686 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02007687 if (!is_guest_mode(vcpu) &&
7688 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08007689 trace_kvm_fast_mmio(gpa);
Vitaly Kuznetsovd391f122018-01-25 16:37:07 +01007690 /*
7691 * Doing kvm_skip_emulated_instruction() depends on undefined
7692 * behavior: Intel's manual doesn't mandate
7693 * VM_EXIT_INSTRUCTION_LEN to be set in VMCS when EPT MISCONFIG
7694 * occurs and while on real hardware it was observed to be set,
7695 * other hypervisors (namely Hyper-V) don't set it, we end up
7696 * advancing IP with some random value. Disable fast mmio when
7697 * running nested and keep it for real hardware in hope that
7698 * VM_EXIT_INSTRUCTION_LEN will always be set correctly.
7699 */
7700 if (!static_cpu_has(X86_FEATURE_HYPERVISOR))
7701 return kvm_skip_emulated_instruction(vcpu);
7702 else
Sean Christopherson0ce97a22018-08-23 13:56:52 -07007703 return kvm_emulate_instruction(vcpu, EMULTYPE_SKIP) ==
Sean Christophersonc4409902018-08-23 13:56:46 -07007704 EMULATE_DONE;
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03007705 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007706
Sean Christophersonc75d0edc2018-03-29 14:48:31 -07007707 return kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007708}
7709
Avi Kivity851ba692009-08-24 11:10:17 +03007710static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08007711{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01007712 WARN_ON_ONCE(!enable_vnmi);
Paolo Bonzini47c01522016-12-19 11:44:07 +01007713 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
7714 CPU_BASED_VIRTUAL_NMI_PENDING);
Sheng Yangf08864b2008-05-15 18:23:25 +08007715 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03007716 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08007717
7718 return 1;
7719}
7720
Mohammed Gamal80ced182009-09-01 12:48:18 +02007721static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007722{
Avi Kivity8b3079a2009-01-05 12:10:54 +02007723 struct vcpu_vmx *vmx = to_vmx(vcpu);
7724 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02007725 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02007726 u32 cpu_exec_ctrl;
7727 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03007728 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02007729
Sean Christopherson2bb8caf2018-03-12 10:56:13 -07007730 /*
7731 * We should never reach the point where we are emulating L2
7732 * due to invalid guest state as that means we incorrectly
7733 * allowed a nested VMEntry with an invalid vmcs12.
7734 */
7735 WARN_ON_ONCE(vmx->emulation_required && vmx->nested.nested_run_pending);
7736
Avi Kivity49e9d552010-09-19 14:34:08 +02007737 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
7738 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007739
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01007740 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03007741 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02007742 return handle_interrupt_window(&vmx->vcpu);
7743
Radim Krčmář72875d82017-04-26 22:32:19 +02007744 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03007745 return 1;
7746
Sean Christopherson0ce97a22018-08-23 13:56:52 -07007747 err = kvm_emulate_instruction(vcpu, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007748
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02007749 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02007750 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02007751 ret = 0;
7752 goto out;
7753 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01007754
Sean Christophersonadd5ff72018-03-23 09:34:00 -07007755 if (err != EMULATE_DONE)
7756 goto emulation_error;
7757
7758 if (vmx->emulation_required && !vmx->rmode.vm86_active &&
7759 vcpu->arch.exception.pending)
7760 goto emulation_error;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007761
Gleb Natapov8d76c492013-05-08 18:38:44 +03007762 if (vcpu->arch.halt_request) {
7763 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06007764 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03007765 goto out;
7766 }
7767
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007768 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02007769 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007770 if (need_resched())
7771 schedule();
7772 }
7773
Mohammed Gamal80ced182009-09-01 12:48:18 +02007774out:
7775 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007776
Sean Christophersonadd5ff72018-03-23 09:34:00 -07007777emulation_error:
7778 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7779 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
7780 vcpu->run->internal.ndata = 0;
7781 return 0;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007782}
7783
7784static void grow_ple_window(struct kvm_vcpu *vcpu)
7785{
7786 struct vcpu_vmx *vmx = to_vmx(vcpu);
7787 int old = vmx->ple_window;
7788
Babu Mogerc8e88712018-03-16 16:37:24 -04007789 vmx->ple_window = __grow_ple_window(old, ple_window,
7790 ple_window_grow,
7791 ple_window_max);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007792
7793 if (vmx->ple_window != old)
7794 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02007795
7796 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007797}
7798
7799static void shrink_ple_window(struct kvm_vcpu *vcpu)
7800{
7801 struct vcpu_vmx *vmx = to_vmx(vcpu);
7802 int old = vmx->ple_window;
7803
Babu Mogerc8e88712018-03-16 16:37:24 -04007804 vmx->ple_window = __shrink_ple_window(old, ple_window,
7805 ple_window_shrink,
7806 ple_window);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007807
7808 if (vmx->ple_window != old)
7809 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02007810
7811 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007812}
7813
7814/*
Feng Wubf9f6ac2015-09-18 22:29:55 +08007815 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
7816 */
7817static void wakeup_handler(void)
7818{
7819 struct kvm_vcpu *vcpu;
7820 int cpu = smp_processor_id();
7821
7822 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
7823 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
7824 blocked_vcpu_list) {
7825 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
7826
7827 if (pi_test_on(pi_desc) == 1)
7828 kvm_vcpu_kick(vcpu);
7829 }
7830 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
7831}
7832
Peng Haoe01bca22018-04-07 05:47:32 +08007833static void vmx_enable_tdp(void)
Junaid Shahidf160c7b2016-12-06 16:46:16 -08007834{
7835 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
7836 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
7837 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
7838 0ull, VMX_EPT_EXECUTABLE_MASK,
7839 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05007840 VMX_EPT_RWX_MASK, 0ull);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08007841
7842 ept_set_mmio_spte_mask();
7843 kvm_enable_tdp();
7844}
7845
Tiejun Chenf2c76482014-10-28 10:14:47 +08007846static __init int hardware_setup(void)
7847{
Sean Christophersoncf81a7e2018-07-11 09:54:30 -07007848 unsigned long host_bndcfgs;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01007849 int r = -ENOMEM, i;
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007850
7851 rdmsrl_safe(MSR_EFER, &host_efer);
7852
7853 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
7854 kvm_define_shared_msr(i, vmx_msr_index[i]);
7855
Radim Krčmář23611332016-09-29 22:41:33 +02007856 for (i = 0; i < VMX_BITMAP_NR; i++) {
7857 vmx_bitmap[i] = (unsigned long *)__get_free_page(GFP_KERNEL);
7858 if (!vmx_bitmap[i])
7859 goto out;
7860 }
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007861
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007862 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
7863 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
7864
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007865 if (setup_vmcs_config(&vmcs_config) < 0) {
7866 r = -EIO;
Radim Krčmář23611332016-09-29 22:41:33 +02007867 goto out;
Tiejun Chenbaa03522014-12-23 16:21:11 +08007868 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08007869
7870 if (boot_cpu_has(X86_FEATURE_NX))
7871 kvm_enable_efer_bits(EFER_NX);
7872
Sean Christophersoncf81a7e2018-07-11 09:54:30 -07007873 if (boot_cpu_has(X86_FEATURE_MPX)) {
7874 rdmsrl(MSR_IA32_BNDCFGS, host_bndcfgs);
7875 WARN_ONCE(host_bndcfgs, "KVM: BNDCFGS in host will be lost");
7876 }
7877
Wanpeng Li08d839c2017-03-23 05:30:08 -07007878 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
7879 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
Tiejun Chenf2c76482014-10-28 10:14:47 +08007880 enable_vpid = 0;
Wanpeng Li08d839c2017-03-23 05:30:08 -07007881
Tiejun Chenf2c76482014-10-28 10:14:47 +08007882 if (!cpu_has_vmx_ept() ||
David Hildenbrand42aa53b2017-08-10 23:15:29 +02007883 !cpu_has_vmx_ept_4levels() ||
David Hildenbrandf5f51582017-08-24 20:51:30 +02007884 !cpu_has_vmx_ept_mt_wb() ||
Wanpeng Li8ad81822017-10-09 15:51:53 -07007885 !cpu_has_vmx_invept_global())
Tiejun Chenf2c76482014-10-28 10:14:47 +08007886 enable_ept = 0;
Tiejun Chenf2c76482014-10-28 10:14:47 +08007887
Wanpeng Lifce6ac42017-05-11 02:58:56 -07007888 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08007889 enable_ept_ad_bits = 0;
7890
Wanpeng Li8ad81822017-10-09 15:51:53 -07007891 if (!cpu_has_vmx_unrestricted_guest() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08007892 enable_unrestricted_guest = 0;
7893
Paolo Bonziniad15a292015-01-30 16:18:49 +01007894 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08007895 flexpriority_enabled = 0;
7896
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01007897 if (!cpu_has_virtual_nmis())
7898 enable_vnmi = 0;
7899
Paolo Bonziniad15a292015-01-30 16:18:49 +01007900 /*
7901 * set_apic_access_page_addr() is used to reload apic access
7902 * page upon invalidation. No need to do anything if not
7903 * using the APIC_ACCESS_ADDR VMCS field.
7904 */
7905 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08007906 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08007907
7908 if (!cpu_has_vmx_tpr_shadow())
7909 kvm_x86_ops->update_cr8_intercept = NULL;
7910
7911 if (enable_ept && !cpu_has_vmx_ept_2m_page())
7912 kvm_disable_largepages();
7913
Tianyu Lan877ad952018-07-19 08:40:23 +00007914#if IS_ENABLED(CONFIG_HYPERV)
7915 if (ms_hyperv.nested_features & HV_X64_NESTED_GUEST_MAPPING_FLUSH
7916 && enable_ept)
7917 kvm_x86_ops->tlb_remote_flush = vmx_hv_remote_flush_tlb;
7918#endif
7919
Wanpeng Li0f107682017-09-28 18:06:24 -07007920 if (!cpu_has_vmx_ple()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08007921 ple_gap = 0;
Wanpeng Li0f107682017-09-28 18:06:24 -07007922 ple_window = 0;
7923 ple_window_grow = 0;
7924 ple_window_max = 0;
7925 ple_window_shrink = 0;
7926 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08007927
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01007928 if (!cpu_has_vmx_apicv()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08007929 enable_apicv = 0;
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01007930 kvm_x86_ops->sync_pir_to_irr = NULL;
7931 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08007932
Haozhong Zhang64903d62015-10-20 15:39:09 +08007933 if (cpu_has_vmx_tsc_scaling()) {
7934 kvm_has_tsc_control = true;
7935 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
7936 kvm_tsc_scaling_ratio_frac_bits = 48;
7937 }
7938
Wanpeng Li04bb92e2015-09-16 19:31:11 +08007939 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
7940
Junaid Shahidf160c7b2016-12-06 16:46:16 -08007941 if (enable_ept)
7942 vmx_enable_tdp();
7943 else
Tiejun Chenbaa03522014-12-23 16:21:11 +08007944 kvm_disable_tdp();
7945
Jim Mattson8fcc4b52018-07-10 11:27:20 +02007946 if (!nested) {
7947 kvm_x86_ops->get_nested_state = NULL;
7948 kvm_x86_ops->set_nested_state = NULL;
7949 }
7950
Kai Huang843e4332015-01-28 10:54:28 +08007951 /*
7952 * Only enable PML when hardware supports PML feature, and both EPT
7953 * and EPT A/D bit features are enabled -- PML depends on them to work.
7954 */
7955 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
7956 enable_pml = 0;
7957
7958 if (!enable_pml) {
7959 kvm_x86_ops->slot_enable_log_dirty = NULL;
7960 kvm_x86_ops->slot_disable_log_dirty = NULL;
7961 kvm_x86_ops->flush_log_dirty = NULL;
7962 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
7963 }
7964
Sean Christophersond264ee02018-08-27 15:21:12 -07007965 if (!cpu_has_vmx_preemption_timer())
7966 kvm_x86_ops->request_immediate_exit = __kvm_request_immediate_exit;
7967
Yunhong Jiang64672c92016-06-13 14:19:59 -07007968 if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) {
7969 u64 vmx_msr;
7970
7971 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
7972 cpu_preemption_timer_multi =
7973 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
7974 } else {
7975 kvm_x86_ops->set_hv_timer = NULL;
7976 kvm_x86_ops->cancel_hv_timer = NULL;
7977 }
7978
Paolo Bonzinic5d167b2017-12-13 11:05:19 +01007979 if (!cpu_has_vmx_shadow_vmcs())
7980 enable_shadow_vmcs = 0;
7981 if (enable_shadow_vmcs)
7982 init_vmcs_shadow_fields();
7983
Feng Wubf9f6ac2015-09-18 22:29:55 +08007984 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
Paolo Bonzini13893092018-02-26 13:40:09 +01007985 nested_vmx_setup_ctls_msrs(&vmcs_config.nested, enable_apicv);
Feng Wubf9f6ac2015-09-18 22:29:55 +08007986
Ashok Rajc45dcc72016-06-22 14:59:56 +08007987 kvm_mce_cap_supported |= MCG_LMCE_P;
7988
Tiejun Chenf2c76482014-10-28 10:14:47 +08007989 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007990
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007991out:
Radim Krčmář23611332016-09-29 22:41:33 +02007992 for (i = 0; i < VMX_BITMAP_NR; i++)
7993 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007994
7995 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08007996}
7997
7998static __exit void hardware_unsetup(void)
7999{
Radim Krčmář23611332016-09-29 22:41:33 +02008000 int i;
8001
8002 for (i = 0; i < VMX_BITMAP_NR; i++)
8003 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08008004
Tiejun Chenf2c76482014-10-28 10:14:47 +08008005 free_kvm_area();
8006}
8007
Avi Kivity6aa8b732006-12-10 02:21:36 -08008008/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008009 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
8010 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
8011 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03008012static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008013{
Wanpeng Lib31c1142018-03-12 04:53:04 -07008014 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02008015 grow_ple_window(vcpu);
8016
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08008017 /*
8018 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
8019 * VM-execution control is ignored if CPL > 0. OTOH, KVM
8020 * never set PAUSE_EXITING and just set PLE if supported,
8021 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
8022 */
8023 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008024 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008025}
8026
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008027static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08008028{
Kyle Huey6affcbe2016-11-29 12:40:40 -08008029 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08008030}
8031
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008032static int handle_mwait(struct kvm_vcpu *vcpu)
8033{
8034 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
8035 return handle_nop(vcpu);
8036}
8037
Jim Mattson45ec3682017-08-23 16:32:04 -07008038static int handle_invalid_op(struct kvm_vcpu *vcpu)
8039{
8040 kvm_queue_exception(vcpu, UD_VECTOR);
8041 return 1;
8042}
8043
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008044static int handle_monitor_trap(struct kvm_vcpu *vcpu)
8045{
8046 return 1;
8047}
8048
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008049static int handle_monitor(struct kvm_vcpu *vcpu)
8050{
8051 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
8052 return handle_nop(vcpu);
8053}
8054
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008055/*
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08008056 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
8057 * set the success or error code of an emulated VMX instruction, as specified
8058 * by Vol 2B, VMX Instruction Reference, "Conventions".
8059 */
8060static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
8061{
8062 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
8063 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
8064 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
8065}
8066
8067static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
8068{
8069 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
8070 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
8071 X86_EFLAGS_SF | X86_EFLAGS_OF))
8072 | X86_EFLAGS_CF);
8073}
8074
Abel Gordon145c28d2013-04-18 14:36:55 +03008075static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08008076 u32 vm_instruction_error)
8077{
8078 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
8079 /*
8080 * failValid writes the error number to the current VMCS, which
8081 * can't be done there isn't a current VMCS.
8082 */
8083 nested_vmx_failInvalid(vcpu);
8084 return;
8085 }
8086 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
8087 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
8088 X86_EFLAGS_SF | X86_EFLAGS_OF))
8089 | X86_EFLAGS_ZF);
8090 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
8091 /*
8092 * We don't need to force a shadow sync because
8093 * VM_INSTRUCTION_ERROR is not shadowed
8094 */
8095}
Abel Gordon145c28d2013-04-18 14:36:55 +03008096
Wincy Vanff651cb2014-12-11 08:52:58 +03008097static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
8098{
8099 /* TODO: not to reset guest simply here. */
8100 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02008101 pr_debug_ratelimited("kvm: nested vmx abort, indicator %d\n", indicator);
Wincy Vanff651cb2014-12-11 08:52:58 +03008102}
8103
Jan Kiszkaf4124502014-03-07 20:03:13 +01008104static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
8105{
8106 struct vcpu_vmx *vmx =
8107 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
8108
8109 vmx->nested.preemption_timer_expired = true;
8110 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
8111 kvm_vcpu_kick(&vmx->vcpu);
8112
8113 return HRTIMER_NORESTART;
8114}
8115
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03008116/*
Bandan Das19677e32014-05-06 02:19:15 -04008117 * Decode the memory-address operand of a vmx instruction, as recorded on an
8118 * exit caused by such an instruction (run by a guest hypervisor).
8119 * On success, returns 0. When the operand is invalid, returns 1 and throws
8120 * #UD or #GP.
8121 */
8122static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
8123 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008124 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04008125{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008126 gva_t off;
8127 bool exn;
8128 struct kvm_segment s;
8129
Bandan Das19677e32014-05-06 02:19:15 -04008130 /*
8131 * According to Vol. 3B, "Information for VM Exits Due to Instruction
8132 * Execution", on an exit, vmx_instruction_info holds most of the
8133 * addressing components of the operand. Only the displacement part
8134 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
8135 * For how an actual address is calculated from all these components,
8136 * refer to Vol. 1, "Operand Addressing".
8137 */
8138 int scaling = vmx_instruction_info & 3;
8139 int addr_size = (vmx_instruction_info >> 7) & 7;
8140 bool is_reg = vmx_instruction_info & (1u << 10);
8141 int seg_reg = (vmx_instruction_info >> 15) & 7;
8142 int index_reg = (vmx_instruction_info >> 18) & 0xf;
8143 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
8144 int base_reg = (vmx_instruction_info >> 23) & 0xf;
8145 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
8146
8147 if (is_reg) {
8148 kvm_queue_exception(vcpu, UD_VECTOR);
8149 return 1;
8150 }
8151
8152 /* Addr = segment_base + offset */
8153 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008154 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04008155 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008156 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04008157 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008158 off += kvm_register_read(vcpu, index_reg)<<scaling;
8159 vmx_get_segment(vcpu, &s, seg_reg);
8160 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04008161
8162 if (addr_size == 1) /* 32 bit */
8163 *ret &= 0xffffffff;
8164
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008165 /* Checks for #GP/#SS exceptions. */
8166 exn = false;
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02008167 if (is_long_mode(vcpu)) {
8168 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
8169 * non-canonical form. This is the only check on the memory
8170 * destination for long mode!
8171 */
Yu Zhangfd8cb432017-08-24 20:27:56 +08008172 exn = is_noncanonical_address(*ret, vcpu);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02008173 } else if (is_protmode(vcpu)) {
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008174 /* Protected mode: apply checks for segment validity in the
8175 * following order:
8176 * - segment type check (#GP(0) may be thrown)
8177 * - usability check (#GP(0)/#SS(0))
8178 * - limit check (#GP(0)/#SS(0))
8179 */
8180 if (wr)
8181 /* #GP(0) if the destination operand is located in a
8182 * read-only data segment or any code segment.
8183 */
8184 exn = ((s.type & 0xa) == 0 || (s.type & 8));
8185 else
8186 /* #GP(0) if the source operand is located in an
8187 * execute-only code segment
8188 */
8189 exn = ((s.type & 0xa) == 8);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02008190 if (exn) {
8191 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
8192 return 1;
8193 }
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008194 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
8195 */
8196 exn = (s.unusable != 0);
8197 /* Protected mode: #GP(0)/#SS(0) if the memory
8198 * operand is outside the segment limit.
8199 */
8200 exn = exn || (off + sizeof(u64) > s.limit);
8201 }
8202 if (exn) {
8203 kvm_queue_exception_e(vcpu,
8204 seg_reg == VCPU_SREG_SS ?
8205 SS_VECTOR : GP_VECTOR,
8206 0);
8207 return 1;
8208 }
8209
Bandan Das19677e32014-05-06 02:19:15 -04008210 return 0;
8211}
8212
Radim Krčmářcbf71272017-05-19 15:48:51 +02008213static int nested_vmx_get_vmptr(struct kvm_vcpu *vcpu, gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04008214{
8215 gva_t gva;
Bandan Das3573e222014-05-06 02:19:16 -04008216 struct x86_exception e;
Bandan Das3573e222014-05-06 02:19:16 -04008217
8218 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008219 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04008220 return 1;
8221
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02008222 if (kvm_read_guest_virt(vcpu, gva, vmpointer, sizeof(*vmpointer), &e)) {
Bandan Das3573e222014-05-06 02:19:16 -04008223 kvm_inject_page_fault(vcpu, &e);
8224 return 1;
8225 }
8226
Bandan Das3573e222014-05-06 02:19:16 -04008227 return 0;
8228}
8229
Liran Alonabfc52c2018-06-23 02:35:13 +03008230/*
8231 * Allocate a shadow VMCS and associate it with the currently loaded
8232 * VMCS, unless such a shadow VMCS already exists. The newly allocated
8233 * VMCS is also VMCLEARed, so that it is ready for use.
8234 */
8235static struct vmcs *alloc_shadow_vmcs(struct kvm_vcpu *vcpu)
8236{
8237 struct vcpu_vmx *vmx = to_vmx(vcpu);
8238 struct loaded_vmcs *loaded_vmcs = vmx->loaded_vmcs;
8239
8240 /*
8241 * We should allocate a shadow vmcs for vmcs01 only when L1
8242 * executes VMXON and free it when L1 executes VMXOFF.
8243 * As it is invalid to execute VMXON twice, we shouldn't reach
8244 * here when vmcs01 already have an allocated shadow vmcs.
8245 */
8246 WARN_ON(loaded_vmcs == &vmx->vmcs01 && loaded_vmcs->shadow_vmcs);
8247
8248 if (!loaded_vmcs->shadow_vmcs) {
8249 loaded_vmcs->shadow_vmcs = alloc_vmcs(true);
8250 if (loaded_vmcs->shadow_vmcs)
8251 vmcs_clear(loaded_vmcs->shadow_vmcs);
8252 }
8253 return loaded_vmcs->shadow_vmcs;
8254}
8255
Jim Mattsone29acc52016-11-30 12:03:43 -08008256static int enter_vmx_operation(struct kvm_vcpu *vcpu)
8257{
8258 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzinif21f1652018-01-11 12:16:15 +01008259 int r;
Jim Mattsone29acc52016-11-30 12:03:43 -08008260
Paolo Bonzinif21f1652018-01-11 12:16:15 +01008261 r = alloc_loaded_vmcs(&vmx->nested.vmcs02);
8262 if (r < 0)
Jim Mattsonde3a0022017-11-27 17:22:25 -06008263 goto out_vmcs02;
Jim Mattsone29acc52016-11-30 12:03:43 -08008264
8265 vmx->nested.cached_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL);
8266 if (!vmx->nested.cached_vmcs12)
8267 goto out_cached_vmcs12;
8268
Liran Alon61ada742018-06-23 02:35:08 +03008269 vmx->nested.cached_shadow_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL);
8270 if (!vmx->nested.cached_shadow_vmcs12)
8271 goto out_cached_shadow_vmcs12;
8272
Liran Alonabfc52c2018-06-23 02:35:13 +03008273 if (enable_shadow_vmcs && !alloc_shadow_vmcs(vcpu))
8274 goto out_shadow_vmcs;
Jim Mattsone29acc52016-11-30 12:03:43 -08008275
Jim Mattsone29acc52016-11-30 12:03:43 -08008276 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
8277 HRTIMER_MODE_REL_PINNED);
8278 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
8279
Roman Kagan63aff652018-07-19 21:59:07 +03008280 vmx->nested.vpid02 = allocate_vpid();
8281
Jim Mattsone29acc52016-11-30 12:03:43 -08008282 vmx->nested.vmxon = true;
8283 return 0;
8284
8285out_shadow_vmcs:
Liran Alon61ada742018-06-23 02:35:08 +03008286 kfree(vmx->nested.cached_shadow_vmcs12);
8287
8288out_cached_shadow_vmcs12:
Jim Mattsone29acc52016-11-30 12:03:43 -08008289 kfree(vmx->nested.cached_vmcs12);
8290
8291out_cached_vmcs12:
Jim Mattsonde3a0022017-11-27 17:22:25 -06008292 free_loaded_vmcs(&vmx->nested.vmcs02);
Jim Mattsone29acc52016-11-30 12:03:43 -08008293
Jim Mattsonde3a0022017-11-27 17:22:25 -06008294out_vmcs02:
Jim Mattsone29acc52016-11-30 12:03:43 -08008295 return -ENOMEM;
8296}
8297
Bandan Das3573e222014-05-06 02:19:16 -04008298/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008299 * Emulate the VMXON instruction.
8300 * Currently, we just remember that VMX is active, and do not save or even
8301 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
8302 * do not currently need to store anything in that guest-allocated memory
8303 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
8304 * argument is different from the VMXON pointer (which the spec says they do).
8305 */
8306static int handle_vmon(struct kvm_vcpu *vcpu)
8307{
Jim Mattsone29acc52016-11-30 12:03:43 -08008308 int ret;
Radim Krčmářcbf71272017-05-19 15:48:51 +02008309 gpa_t vmptr;
8310 struct page *page;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008311 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elb3897a42013-07-08 19:12:35 +08008312 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
8313 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008314
Jim Mattson70f3aac2017-04-26 08:53:46 -07008315 /*
8316 * The Intel VMX Instruction Reference lists a bunch of bits that are
8317 * prerequisite to running VMXON, most notably cr4.VMXE must be set to
8318 * 1 (see vmx_set_cr4() for when we allow the guest to set this).
8319 * Otherwise, we should fail with #UD. But most faulting conditions
8320 * have already been checked by hardware, prior to the VM-exit for
8321 * VMXON. We do test guest cr4.VMXE because processor CR4 always has
8322 * that bit set to 1 in non-root mode.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008323 */
Jim Mattson70f3aac2017-04-26 08:53:46 -07008324 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE)) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008325 kvm_queue_exception(vcpu, UD_VECTOR);
8326 return 1;
8327 }
8328
Felix Wilhelm727ba742018-06-11 09:43:44 +02008329 /* CPL=0 must be checked manually. */
8330 if (vmx_get_cpl(vcpu)) {
Jim Mattson36090bf2018-07-27 09:18:50 -07008331 kvm_inject_gp(vcpu, 0);
Felix Wilhelm727ba742018-06-11 09:43:44 +02008332 return 1;
8333 }
8334
Abel Gordon145c28d2013-04-18 14:36:55 +03008335 if (vmx->nested.vmxon) {
8336 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008337 return kvm_skip_emulated_instruction(vcpu);
Abel Gordon145c28d2013-04-18 14:36:55 +03008338 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08008339
Haozhong Zhang3b840802016-06-22 14:59:54 +08008340 if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
Nadav Har'Elb3897a42013-07-08 19:12:35 +08008341 != VMXON_NEEDED_FEATURES) {
8342 kvm_inject_gp(vcpu, 0);
8343 return 1;
8344 }
8345
Radim Krčmářcbf71272017-05-19 15:48:51 +02008346 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Jim Mattson21e7fbe2016-12-22 15:49:55 -08008347 return 1;
Radim Krčmářcbf71272017-05-19 15:48:51 +02008348
8349 /*
8350 * SDM 3: 24.11.5
8351 * The first 4 bytes of VMXON region contain the supported
8352 * VMCS revision identifier
8353 *
8354 * Note - IA32_VMX_BASIC[48] will never be 1 for the nested case;
8355 * which replaces physical address width with 32
8356 */
8357 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
8358 nested_vmx_failInvalid(vcpu);
8359 return kvm_skip_emulated_instruction(vcpu);
8360 }
8361
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02008362 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
8363 if (is_error_page(page)) {
Radim Krčmářcbf71272017-05-19 15:48:51 +02008364 nested_vmx_failInvalid(vcpu);
8365 return kvm_skip_emulated_instruction(vcpu);
8366 }
8367 if (*(u32 *)kmap(page) != VMCS12_REVISION) {
8368 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008369 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02008370 nested_vmx_failInvalid(vcpu);
8371 return kvm_skip_emulated_instruction(vcpu);
8372 }
8373 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008374 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02008375
8376 vmx->nested.vmxon_ptr = vmptr;
Jim Mattsone29acc52016-11-30 12:03:43 -08008377 ret = enter_vmx_operation(vcpu);
8378 if (ret)
8379 return ret;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008380
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08008381 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008382 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008383}
8384
8385/*
8386 * Intel's VMX Instruction Reference specifies a common set of prerequisites
8387 * for running VMX instructions (except VMXON, whose prerequisites are
8388 * slightly different). It also specifies what exception to inject otherwise.
Jim Mattson70f3aac2017-04-26 08:53:46 -07008389 * Note that many of these exceptions have priority over VM exits, so they
8390 * don't have to be checked again here.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008391 */
8392static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
8393{
Jim Mattson70f3aac2017-04-26 08:53:46 -07008394 if (!to_vmx(vcpu)->nested.vmxon) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008395 kvm_queue_exception(vcpu, UD_VECTOR);
8396 return 0;
8397 }
Jim Mattsone49fcb82018-07-27 13:44:45 -07008398
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008399 if (vmx_get_cpl(vcpu)) {
Jim Mattson36090bf2018-07-27 09:18:50 -07008400 kvm_inject_gp(vcpu, 0);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008401 return 0;
8402 }
8403
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008404 return 1;
8405}
8406
David Matlack8ca44e82017-08-01 14:00:39 -07008407static void vmx_disable_shadow_vmcs(struct vcpu_vmx *vmx)
8408{
8409 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, SECONDARY_EXEC_SHADOW_VMCS);
8410 vmcs_write64(VMCS_LINK_POINTER, -1ull);
8411}
8412
Abel Gordone7953d72013-04-18 14:37:55 +03008413static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
8414{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008415 if (vmx->nested.current_vmptr == -1ull)
8416 return;
8417
Abel Gordon012f83c2013-04-18 14:39:25 +03008418 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008419 /* copy to memory all shadowed fields in case
8420 they were modified */
8421 copy_shadow_to_vmcs12(vmx);
8422 vmx->nested.sync_shadow_vmcs = false;
David Matlack8ca44e82017-08-01 14:00:39 -07008423 vmx_disable_shadow_vmcs(vmx);
Abel Gordon012f83c2013-04-18 14:39:25 +03008424 }
Wincy Van705699a2015-02-03 23:58:17 +08008425 vmx->nested.posted_intr_nv = -1;
David Matlack4f2777b2016-07-13 17:16:37 -07008426
8427 /* Flush VMCS12 to guest memory */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02008428 kvm_vcpu_write_guest_page(&vmx->vcpu,
8429 vmx->nested.current_vmptr >> PAGE_SHIFT,
8430 vmx->nested.cached_vmcs12, 0, VMCS12_SIZE);
David Matlack4f2777b2016-07-13 17:16:37 -07008431
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008432 vmx->nested.current_vmptr = -1ull;
Abel Gordone7953d72013-04-18 14:37:55 +03008433}
8434
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008435/*
8436 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
8437 * just stops using VMX.
8438 */
8439static void free_nested(struct vcpu_vmx *vmx)
8440{
Wanpeng Lib7455822017-11-22 14:04:00 -08008441 if (!vmx->nested.vmxon && !vmx->nested.smm.vmxon)
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008442 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008443
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008444 vmx->nested.vmxon = false;
Wanpeng Lib7455822017-11-22 14:04:00 -08008445 vmx->nested.smm.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07008446 free_vpid(vmx->nested.vpid02);
David Matlack8ca44e82017-08-01 14:00:39 -07008447 vmx->nested.posted_intr_nv = -1;
8448 vmx->nested.current_vmptr = -1ull;
Jim Mattson355f4fb2016-10-28 08:29:39 -07008449 if (enable_shadow_vmcs) {
David Matlack8ca44e82017-08-01 14:00:39 -07008450 vmx_disable_shadow_vmcs(vmx);
Jim Mattson355f4fb2016-10-28 08:29:39 -07008451 vmcs_clear(vmx->vmcs01.shadow_vmcs);
8452 free_vmcs(vmx->vmcs01.shadow_vmcs);
8453 vmx->vmcs01.shadow_vmcs = NULL;
8454 }
David Matlack4f2777b2016-07-13 17:16:37 -07008455 kfree(vmx->nested.cached_vmcs12);
Liran Alon61ada742018-06-23 02:35:08 +03008456 kfree(vmx->nested.cached_shadow_vmcs12);
Jim Mattsonde3a0022017-11-27 17:22:25 -06008457 /* Unpin physical memory we referred to in the vmcs02 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03008458 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02008459 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02008460 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03008461 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008462 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02008463 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02008464 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008465 }
Wincy Van705699a2015-02-03 23:58:17 +08008466 if (vmx->nested.pi_desc_page) {
8467 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008468 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08008469 vmx->nested.pi_desc_page = NULL;
8470 vmx->nested.pi_desc = NULL;
8471 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03008472
Jim Mattsonde3a0022017-11-27 17:22:25 -06008473 free_loaded_vmcs(&vmx->nested.vmcs02);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008474}
8475
8476/* Emulate the VMXOFF instruction */
8477static int handle_vmoff(struct kvm_vcpu *vcpu)
8478{
8479 if (!nested_vmx_check_permission(vcpu))
8480 return 1;
8481 free_nested(to_vmx(vcpu));
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08008482 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008483 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008484}
8485
Nadav Har'El27d6c862011-05-25 23:06:59 +03008486/* Emulate the VMCLEAR instruction */
8487static int handle_vmclear(struct kvm_vcpu *vcpu)
8488{
8489 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattson587d7e722017-03-02 12:41:48 -08008490 u32 zero = 0;
Nadav Har'El27d6c862011-05-25 23:06:59 +03008491 gpa_t vmptr;
Nadav Har'El27d6c862011-05-25 23:06:59 +03008492
8493 if (!nested_vmx_check_permission(vcpu))
8494 return 1;
8495
Radim Krčmářcbf71272017-05-19 15:48:51 +02008496 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03008497 return 1;
8498
Radim Krčmářcbf71272017-05-19 15:48:51 +02008499 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
8500 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS);
8501 return kvm_skip_emulated_instruction(vcpu);
8502 }
8503
8504 if (vmptr == vmx->nested.vmxon_ptr) {
8505 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_VMXON_POINTER);
8506 return kvm_skip_emulated_instruction(vcpu);
8507 }
8508
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008509 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03008510 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03008511
Jim Mattson587d7e722017-03-02 12:41:48 -08008512 kvm_vcpu_write_guest(vcpu,
8513 vmptr + offsetof(struct vmcs12, launch_state),
8514 &zero, sizeof(zero));
Nadav Har'El27d6c862011-05-25 23:06:59 +03008515
Nadav Har'El27d6c862011-05-25 23:06:59 +03008516 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008517 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03008518}
8519
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008520static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
8521
8522/* Emulate the VMLAUNCH instruction */
8523static int handle_vmlaunch(struct kvm_vcpu *vcpu)
8524{
8525 return nested_vmx_run(vcpu, true);
8526}
8527
8528/* Emulate the VMRESUME instruction */
8529static int handle_vmresume(struct kvm_vcpu *vcpu)
8530{
8531
8532 return nested_vmx_run(vcpu, false);
8533}
8534
Nadav Har'El49f705c2011-05-25 23:08:30 +03008535/*
8536 * Read a vmcs12 field. Since these can have varying lengths and we return
8537 * one type, we chose the biggest type (u64) and zero-extend the return value
8538 * to that size. Note that the caller, handle_vmread, might need to use only
8539 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
8540 * 64-bit fields are to be returned).
8541 */
Liran Alone2536742018-06-23 02:35:02 +03008542static inline int vmcs12_read_any(struct vmcs12 *vmcs12,
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008543 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03008544{
8545 short offset = vmcs_field_to_offset(field);
8546 char *p;
8547
8548 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008549 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03008550
Liran Alone2536742018-06-23 02:35:02 +03008551 p = (char *)vmcs12 + offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03008552
Jim Mattsond37f4262017-12-22 12:12:16 -08008553 switch (vmcs_field_width(field)) {
8554 case VMCS_FIELD_WIDTH_NATURAL_WIDTH:
Nadav Har'El49f705c2011-05-25 23:08:30 +03008555 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008556 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008557 case VMCS_FIELD_WIDTH_U16:
Nadav Har'El49f705c2011-05-25 23:08:30 +03008558 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008559 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008560 case VMCS_FIELD_WIDTH_U32:
Nadav Har'El49f705c2011-05-25 23:08:30 +03008561 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008562 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008563 case VMCS_FIELD_WIDTH_U64:
Nadav Har'El49f705c2011-05-25 23:08:30 +03008564 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008565 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03008566 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008567 WARN_ON(1);
8568 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03008569 }
8570}
8571
Abel Gordon20b97fe2013-04-18 14:36:25 +03008572
Liran Alone2536742018-06-23 02:35:02 +03008573static inline int vmcs12_write_any(struct vmcs12 *vmcs12,
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008574 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03008575 short offset = vmcs_field_to_offset(field);
Liran Alone2536742018-06-23 02:35:02 +03008576 char *p = (char *)vmcs12 + offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03008577 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008578 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03008579
Jim Mattsond37f4262017-12-22 12:12:16 -08008580 switch (vmcs_field_width(field)) {
8581 case VMCS_FIELD_WIDTH_U16:
Abel Gordon20b97fe2013-04-18 14:36:25 +03008582 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008583 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008584 case VMCS_FIELD_WIDTH_U32:
Abel Gordon20b97fe2013-04-18 14:36:25 +03008585 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008586 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008587 case VMCS_FIELD_WIDTH_U64:
Abel Gordon20b97fe2013-04-18 14:36:25 +03008588 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008589 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08008590 case VMCS_FIELD_WIDTH_NATURAL_WIDTH:
Abel Gordon20b97fe2013-04-18 14:36:25 +03008591 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008592 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03008593 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008594 WARN_ON(1);
8595 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03008596 }
8597
8598}
8599
Jim Mattsonf4160e42018-05-29 09:11:33 -07008600/*
8601 * Copy the writable VMCS shadow fields back to the VMCS12, in case
8602 * they have been modified by the L1 guest. Note that the "read-only"
8603 * VM-exit information fields are actually writable if the vCPU is
8604 * configured to support "VMWRITE to any supported field in the VMCS."
8605 */
Abel Gordon16f5b902013-04-18 14:38:25 +03008606static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
8607{
Jim Mattsonf4160e42018-05-29 09:11:33 -07008608 const u16 *fields[] = {
8609 shadow_read_write_fields,
8610 shadow_read_only_fields
8611 };
8612 const int max_fields[] = {
8613 max_shadow_read_write_fields,
8614 max_shadow_read_only_fields
8615 };
8616 int i, q;
Abel Gordon16f5b902013-04-18 14:38:25 +03008617 unsigned long field;
8618 u64 field_value;
Jim Mattson355f4fb2016-10-28 08:29:39 -07008619 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Abel Gordon16f5b902013-04-18 14:38:25 +03008620
Jan Kiszka282da872014-10-08 18:05:39 +02008621 preempt_disable();
8622
Abel Gordon16f5b902013-04-18 14:38:25 +03008623 vmcs_load(shadow_vmcs);
8624
Jim Mattsonf4160e42018-05-29 09:11:33 -07008625 for (q = 0; q < ARRAY_SIZE(fields); q++) {
8626 for (i = 0; i < max_fields[q]; i++) {
8627 field = fields[q][i];
8628 field_value = __vmcs_readl(field);
Liran Alone2536742018-06-23 02:35:02 +03008629 vmcs12_write_any(get_vmcs12(&vmx->vcpu), field, field_value);
Jim Mattsonf4160e42018-05-29 09:11:33 -07008630 }
8631 /*
8632 * Skip the VM-exit information fields if they are read-only.
8633 */
8634 if (!nested_cpu_has_vmwrite_any_field(&vmx->vcpu))
8635 break;
Abel Gordon16f5b902013-04-18 14:38:25 +03008636 }
8637
8638 vmcs_clear(shadow_vmcs);
8639 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02008640
8641 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03008642}
8643
Abel Gordonc3114422013-04-18 14:38:55 +03008644static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
8645{
Paolo Bonzini44900ba2017-12-13 12:58:02 +01008646 const u16 *fields[] = {
Mathias Krausec2bae892013-06-26 20:36:21 +02008647 shadow_read_write_fields,
8648 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03008649 };
Mathias Krausec2bae892013-06-26 20:36:21 +02008650 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03008651 max_shadow_read_write_fields,
8652 max_shadow_read_only_fields
8653 };
8654 int i, q;
8655 unsigned long field;
8656 u64 field_value = 0;
Jim Mattson355f4fb2016-10-28 08:29:39 -07008657 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Abel Gordonc3114422013-04-18 14:38:55 +03008658
8659 vmcs_load(shadow_vmcs);
8660
Mathias Krausec2bae892013-06-26 20:36:21 +02008661 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03008662 for (i = 0; i < max_fields[q]; i++) {
8663 field = fields[q][i];
Liran Alone2536742018-06-23 02:35:02 +03008664 vmcs12_read_any(get_vmcs12(&vmx->vcpu), field, &field_value);
Paolo Bonzini44900ba2017-12-13 12:58:02 +01008665 __vmcs_writel(field, field_value);
Abel Gordonc3114422013-04-18 14:38:55 +03008666 }
8667 }
8668
8669 vmcs_clear(shadow_vmcs);
8670 vmcs_load(vmx->loaded_vmcs->vmcs);
8671}
8672
Nadav Har'El49f705c2011-05-25 23:08:30 +03008673/*
8674 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
8675 * used before) all generate the same failure when it is missing.
8676 */
8677static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
8678{
8679 struct vcpu_vmx *vmx = to_vmx(vcpu);
8680 if (vmx->nested.current_vmptr == -1ull) {
8681 nested_vmx_failInvalid(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008682 return 0;
8683 }
8684 return 1;
8685}
8686
8687static int handle_vmread(struct kvm_vcpu *vcpu)
8688{
8689 unsigned long field;
8690 u64 field_value;
8691 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8692 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
8693 gva_t gva = 0;
Liran Alon6d894f42018-06-23 02:35:09 +03008694 struct vmcs12 *vmcs12;
Nadav Har'El49f705c2011-05-25 23:08:30 +03008695
Kyle Hueyeb277562016-11-29 12:40:39 -08008696 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03008697 return 1;
8698
Kyle Huey6affcbe2016-11-29 12:40:40 -08008699 if (!nested_vmx_check_vmcs12(vcpu))
8700 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08008701
Liran Alon6d894f42018-06-23 02:35:09 +03008702 if (!is_guest_mode(vcpu))
8703 vmcs12 = get_vmcs12(vcpu);
8704 else {
8705 /*
8706 * When vmcs->vmcs_link_pointer is -1ull, any VMREAD
8707 * to shadowed-field sets the ALU flags for VMfailInvalid.
8708 */
8709 if (get_vmcs12(vcpu)->vmcs_link_pointer == -1ull) {
8710 nested_vmx_failInvalid(vcpu);
8711 return kvm_skip_emulated_instruction(vcpu);
8712 }
8713 vmcs12 = get_shadow_vmcs12(vcpu);
8714 }
8715
Nadav Har'El49f705c2011-05-25 23:08:30 +03008716 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03008717 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03008718 /* Read the field, zero-extended to a u64 field_value */
Liran Alon6d894f42018-06-23 02:35:09 +03008719 if (vmcs12_read_any(vmcs12, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03008720 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008721 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008722 }
8723 /*
8724 * Now copy part of this value to register or memory, as requested.
8725 * Note that the number of bits actually copied is 32 or 64 depending
8726 * on the guest's mode (32 or 64 bit), not on the given field's length.
8727 */
8728 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03008729 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03008730 field_value);
8731 } else {
8732 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008733 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03008734 return 1;
Felix Wilhelm727ba742018-06-11 09:43:44 +02008735 /* _system ok, nested_vmx_check_permission has verified cpl=0 */
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02008736 kvm_write_guest_virt_system(vcpu, gva, &field_value,
8737 (is_long_mode(vcpu) ? 8 : 4), NULL);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008738 }
8739
8740 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008741 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008742}
8743
8744
8745static int handle_vmwrite(struct kvm_vcpu *vcpu)
8746{
8747 unsigned long field;
8748 gva_t gva;
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008749 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008750 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8751 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008752
Nadav Har'El49f705c2011-05-25 23:08:30 +03008753 /* The value to write might be 32 or 64 bits, depending on L1's long
8754 * mode, and eventually we need to write that into a field of several
8755 * possible lengths. The code below first zero-extends the value to 64
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08008756 * bit (field_value), and then copies only the appropriate number of
Nadav Har'El49f705c2011-05-25 23:08:30 +03008757 * bits into the vmcs12 field.
8758 */
8759 u64 field_value = 0;
8760 struct x86_exception e;
Liran Alon6d894f42018-06-23 02:35:09 +03008761 struct vmcs12 *vmcs12;
Nadav Har'El49f705c2011-05-25 23:08:30 +03008762
Kyle Hueyeb277562016-11-29 12:40:39 -08008763 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03008764 return 1;
8765
Kyle Huey6affcbe2016-11-29 12:40:40 -08008766 if (!nested_vmx_check_vmcs12(vcpu))
8767 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08008768
Nadav Har'El49f705c2011-05-25 23:08:30 +03008769 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03008770 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008771 (((vmx_instruction_info) >> 3) & 0xf));
8772 else {
8773 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008774 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03008775 return 1;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02008776 if (kvm_read_guest_virt(vcpu, gva, &field_value,
8777 (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03008778 kvm_inject_page_fault(vcpu, &e);
8779 return 1;
8780 }
8781 }
8782
8783
Nadav Amit27e6fb52014-06-18 17:19:26 +03008784 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Jim Mattsonf4160e42018-05-29 09:11:33 -07008785 /*
8786 * If the vCPU supports "VMWRITE to any supported field in the
8787 * VMCS," then the "read-only" fields are actually read/write.
8788 */
8789 if (vmcs_field_readonly(field) &&
8790 !nested_cpu_has_vmwrite_any_field(vcpu)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03008791 nested_vmx_failValid(vcpu,
8792 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008793 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008794 }
8795
Liran Alon6d894f42018-06-23 02:35:09 +03008796 if (!is_guest_mode(vcpu))
8797 vmcs12 = get_vmcs12(vcpu);
8798 else {
8799 /*
8800 * When vmcs->vmcs_link_pointer is -1ull, any VMWRITE
8801 * to shadowed-field sets the ALU flags for VMfailInvalid.
8802 */
8803 if (get_vmcs12(vcpu)->vmcs_link_pointer == -1ull) {
8804 nested_vmx_failInvalid(vcpu);
8805 return kvm_skip_emulated_instruction(vcpu);
8806 }
8807 vmcs12 = get_shadow_vmcs12(vcpu);
8808
8809 }
8810
8811 if (vmcs12_write_any(vmcs12, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03008812 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008813 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008814 }
8815
Liran Alon6d894f42018-06-23 02:35:09 +03008816 /*
8817 * Do not track vmcs12 dirty-state if in guest-mode
8818 * as we actually dirty shadow vmcs12 instead of vmcs12.
8819 */
8820 if (!is_guest_mode(vcpu)) {
8821 switch (field) {
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008822#define SHADOW_FIELD_RW(x) case x:
8823#include "vmx_shadow_fields.h"
Liran Alon6d894f42018-06-23 02:35:09 +03008824 /*
8825 * The fields that can be updated by L1 without a vmexit are
8826 * always updated in the vmcs02, the others go down the slow
8827 * path of prepare_vmcs02.
8828 */
8829 break;
8830 default:
8831 vmx->nested.dirty_vmcs12 = true;
8832 break;
8833 }
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008834 }
8835
Nadav Har'El49f705c2011-05-25 23:08:30 +03008836 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008837 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008838}
8839
Jim Mattsona8bc2842016-11-30 12:03:44 -08008840static void set_current_vmptr(struct vcpu_vmx *vmx, gpa_t vmptr)
8841{
8842 vmx->nested.current_vmptr = vmptr;
8843 if (enable_shadow_vmcs) {
8844 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
8845 SECONDARY_EXEC_SHADOW_VMCS);
8846 vmcs_write64(VMCS_LINK_POINTER,
8847 __pa(vmx->vmcs01.shadow_vmcs));
8848 vmx->nested.sync_shadow_vmcs = true;
8849 }
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008850 vmx->nested.dirty_vmcs12 = true;
Jim Mattsona8bc2842016-11-30 12:03:44 -08008851}
8852
Nadav Har'El63846662011-05-25 23:07:29 +03008853/* Emulate the VMPTRLD instruction */
8854static int handle_vmptrld(struct kvm_vcpu *vcpu)
8855{
8856 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03008857 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03008858
8859 if (!nested_vmx_check_permission(vcpu))
8860 return 1;
8861
Radim Krčmářcbf71272017-05-19 15:48:51 +02008862 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03008863 return 1;
8864
Radim Krčmářcbf71272017-05-19 15:48:51 +02008865 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
8866 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS);
8867 return kvm_skip_emulated_instruction(vcpu);
8868 }
8869
8870 if (vmptr == vmx->nested.vmxon_ptr) {
8871 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_VMXON_POINTER);
8872 return kvm_skip_emulated_instruction(vcpu);
8873 }
8874
Nadav Har'El63846662011-05-25 23:07:29 +03008875 if (vmx->nested.current_vmptr != vmptr) {
8876 struct vmcs12 *new_vmcs12;
8877 struct page *page;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02008878 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
8879 if (is_error_page(page)) {
Nadav Har'El63846662011-05-25 23:07:29 +03008880 nested_vmx_failInvalid(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008881 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03008882 }
8883 new_vmcs12 = kmap(page);
Liran Alon392b2f22018-06-23 02:35:01 +03008884 if (new_vmcs12->hdr.revision_id != VMCS12_REVISION ||
Liran Alonfa97d7d2018-07-18 14:07:59 +02008885 (new_vmcs12->hdr.shadow_vmcs &&
8886 !nested_cpu_has_vmx_shadow_vmcs(vcpu))) {
Nadav Har'El63846662011-05-25 23:07:29 +03008887 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008888 kvm_release_page_clean(page);
Nadav Har'El63846662011-05-25 23:07:29 +03008889 nested_vmx_failValid(vcpu,
8890 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008891 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03008892 }
Nadav Har'El63846662011-05-25 23:07:29 +03008893
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008894 nested_release_vmcs12(vmx);
David Matlack4f2777b2016-07-13 17:16:37 -07008895 /*
8896 * Load VMCS12 from guest memory since it is not already
8897 * cached.
8898 */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02008899 memcpy(vmx->nested.cached_vmcs12, new_vmcs12, VMCS12_SIZE);
8900 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008901 kvm_release_page_clean(page);
Paolo Bonzini9f744c52017-07-27 15:54:46 +02008902
Jim Mattsona8bc2842016-11-30 12:03:44 -08008903 set_current_vmptr(vmx, vmptr);
Nadav Har'El63846662011-05-25 23:07:29 +03008904 }
8905
8906 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008907 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03008908}
8909
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008910/* Emulate the VMPTRST instruction */
8911static int handle_vmptrst(struct kvm_vcpu *vcpu)
8912{
Sean Christopherson0a06d422018-07-19 10:31:00 -07008913 unsigned long exit_qual = vmcs_readl(EXIT_QUALIFICATION);
8914 u32 instr_info = vmcs_read32(VMX_INSTRUCTION_INFO);
8915 gpa_t current_vmptr = to_vmx(vcpu)->nested.current_vmptr;
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008916 struct x86_exception e;
Sean Christopherson0a06d422018-07-19 10:31:00 -07008917 gva_t gva;
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008918
8919 if (!nested_vmx_check_permission(vcpu))
8920 return 1;
8921
Sean Christopherson0a06d422018-07-19 10:31:00 -07008922 if (get_vmx_mem_address(vcpu, exit_qual, instr_info, true, &gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008923 return 1;
Felix Wilhelm727ba742018-06-11 09:43:44 +02008924 /* *_system ok, nested_vmx_check_permission has verified cpl=0 */
Sean Christopherson0a06d422018-07-19 10:31:00 -07008925 if (kvm_write_guest_virt_system(vcpu, gva, (void *)&current_vmptr,
8926 sizeof(gpa_t), &e)) {
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008927 kvm_inject_page_fault(vcpu, &e);
8928 return 1;
8929 }
8930 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008931 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008932}
8933
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008934/* Emulate the INVEPT instruction */
8935static int handle_invept(struct kvm_vcpu *vcpu)
8936{
Wincy Vanb9c237b2015-02-03 23:56:30 +08008937 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008938 u32 vmx_instruction_info, types;
8939 unsigned long type;
8940 gva_t gva;
8941 struct x86_exception e;
8942 struct {
8943 u64 eptp, gpa;
8944 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008945
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008946 if (!(vmx->nested.msrs.secondary_ctls_high &
Wincy Vanb9c237b2015-02-03 23:56:30 +08008947 SECONDARY_EXEC_ENABLE_EPT) ||
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008948 !(vmx->nested.msrs.ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008949 kvm_queue_exception(vcpu, UD_VECTOR);
8950 return 1;
8951 }
8952
8953 if (!nested_vmx_check_permission(vcpu))
8954 return 1;
8955
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008956 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03008957 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008958
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008959 types = (vmx->nested.msrs.ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008960
Jim Mattson85c856b2016-10-26 08:38:38 -07008961 if (type >= 32 || !(types & (1 << type))) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008962 nested_vmx_failValid(vcpu,
8963 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008964 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008965 }
8966
8967 /* According to the Intel VMX instruction reference, the memory
8968 * operand is read even if it isn't needed (e.g., for type==global)
8969 */
8970 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008971 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008972 return 1;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02008973 if (kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008974 kvm_inject_page_fault(vcpu, &e);
8975 return 1;
8976 }
8977
8978 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008979 case VMX_EPT_EXTENT_GLOBAL:
Bandan Das45e11812016-08-02 16:32:36 -04008980 /*
8981 * TODO: track mappings and invalidate
8982 * single context requests appropriately
8983 */
8984 case VMX_EPT_EXTENT_CONTEXT:
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008985 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04008986 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008987 nested_vmx_succeed(vcpu);
8988 break;
8989 default:
8990 BUG_ON(1);
8991 break;
8992 }
8993
Kyle Huey6affcbe2016-11-29 12:40:40 -08008994 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008995}
8996
Petr Matouseka642fc32014-09-23 20:22:30 +02008997static int handle_invvpid(struct kvm_vcpu *vcpu)
8998{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008999 struct vcpu_vmx *vmx = to_vmx(vcpu);
9000 u32 vmx_instruction_info;
9001 unsigned long type, types;
9002 gva_t gva;
9003 struct x86_exception e;
Jim Mattson40352602017-06-28 09:37:37 -07009004 struct {
9005 u64 vpid;
9006 u64 gla;
9007 } operand;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009008
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01009009 if (!(vmx->nested.msrs.secondary_ctls_high &
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009010 SECONDARY_EXEC_ENABLE_VPID) ||
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01009011 !(vmx->nested.msrs.vpid_caps & VMX_VPID_INVVPID_BIT)) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009012 kvm_queue_exception(vcpu, UD_VECTOR);
9013 return 1;
9014 }
9015
9016 if (!nested_vmx_check_permission(vcpu))
9017 return 1;
9018
9019 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
9020 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
9021
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01009022 types = (vmx->nested.msrs.vpid_caps &
Jan Dakinevichbcdde302016-10-28 07:00:30 +03009023 VMX_VPID_EXTENT_SUPPORTED_MASK) >> 8;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009024
Jim Mattson85c856b2016-10-26 08:38:38 -07009025 if (type >= 32 || !(types & (1 << type))) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009026 nested_vmx_failValid(vcpu,
9027 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08009028 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009029 }
9030
9031 /* according to the intel vmx instruction reference, the memory
9032 * operand is read even if it isn't needed (e.g., for type==global)
9033 */
9034 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
9035 vmx_instruction_info, false, &gva))
9036 return 1;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02009037 if (kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e)) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009038 kvm_inject_page_fault(vcpu, &e);
9039 return 1;
9040 }
Jim Mattson40352602017-06-28 09:37:37 -07009041 if (operand.vpid >> 16) {
9042 nested_vmx_failValid(vcpu,
9043 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
9044 return kvm_skip_emulated_instruction(vcpu);
9045 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009046
9047 switch (type) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03009048 case VMX_VPID_EXTENT_INDIVIDUAL_ADDR:
Liran Aloncd9a4912018-05-22 17:16:15 +03009049 if (!operand.vpid ||
9050 is_noncanonical_address(operand.gla, vcpu)) {
Jim Mattson40352602017-06-28 09:37:37 -07009051 nested_vmx_failValid(vcpu,
9052 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
9053 return kvm_skip_emulated_instruction(vcpu);
9054 }
Liran Aloncd9a4912018-05-22 17:16:15 +03009055 if (cpu_has_vmx_invvpid_individual_addr() &&
9056 vmx->nested.vpid02) {
9057 __invvpid(VMX_VPID_EXTENT_INDIVIDUAL_ADDR,
9058 vmx->nested.vpid02, operand.gla);
9059 } else
9060 __vmx_flush_tlb(vcpu, vmx->nested.vpid02, true);
9061 break;
Paolo Bonzinief697a72016-03-18 16:58:38 +01009062 case VMX_VPID_EXTENT_SINGLE_CONTEXT:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03009063 case VMX_VPID_EXTENT_SINGLE_NON_GLOBAL:
Jim Mattson40352602017-06-28 09:37:37 -07009064 if (!operand.vpid) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03009065 nested_vmx_failValid(vcpu,
9066 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08009067 return kvm_skip_emulated_instruction(vcpu);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03009068 }
Liran Aloncd9a4912018-05-22 17:16:15 +03009069 __vmx_flush_tlb(vcpu, vmx->nested.vpid02, true);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03009070 break;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009071 case VMX_VPID_EXTENT_ALL_CONTEXT:
Liran Aloncd9a4912018-05-22 17:16:15 +03009072 __vmx_flush_tlb(vcpu, vmx->nested.vpid02, true);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009073 break;
9074 default:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03009075 WARN_ON_ONCE(1);
Kyle Huey6affcbe2016-11-29 12:40:40 -08009076 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07009077 }
9078
Jan Dakinevichbcdde302016-10-28 07:00:30 +03009079 nested_vmx_succeed(vcpu);
9080
Kyle Huey6affcbe2016-11-29 12:40:40 -08009081 return kvm_skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02009082}
9083
Junaid Shahideb4b2482018-06-27 14:59:14 -07009084static int handle_invpcid(struct kvm_vcpu *vcpu)
9085{
9086 u32 vmx_instruction_info;
9087 unsigned long type;
9088 bool pcid_enabled;
9089 gva_t gva;
9090 struct x86_exception e;
Junaid Shahidb94742c2018-06-27 14:59:20 -07009091 unsigned i;
9092 unsigned long roots_to_free = 0;
Junaid Shahideb4b2482018-06-27 14:59:14 -07009093 struct {
9094 u64 pcid;
9095 u64 gla;
9096 } operand;
9097
9098 if (!guest_cpuid_has(vcpu, X86_FEATURE_INVPCID)) {
9099 kvm_queue_exception(vcpu, UD_VECTOR);
9100 return 1;
9101 }
9102
9103 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
9104 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
9105
9106 if (type > 3) {
9107 kvm_inject_gp(vcpu, 0);
9108 return 1;
9109 }
9110
9111 /* According to the Intel instruction reference, the memory operand
9112 * is read even if it isn't needed (e.g., for type==all)
9113 */
9114 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
9115 vmx_instruction_info, false, &gva))
9116 return 1;
9117
9118 if (kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e)) {
9119 kvm_inject_page_fault(vcpu, &e);
9120 return 1;
9121 }
9122
9123 if (operand.pcid >> 12 != 0) {
9124 kvm_inject_gp(vcpu, 0);
9125 return 1;
9126 }
9127
9128 pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
9129
9130 switch (type) {
9131 case INVPCID_TYPE_INDIV_ADDR:
9132 if ((!pcid_enabled && (operand.pcid != 0)) ||
9133 is_noncanonical_address(operand.gla, vcpu)) {
9134 kvm_inject_gp(vcpu, 0);
9135 return 1;
9136 }
9137 kvm_mmu_invpcid_gva(vcpu, operand.gla, operand.pcid);
9138 return kvm_skip_emulated_instruction(vcpu);
9139
9140 case INVPCID_TYPE_SINGLE_CTXT:
9141 if (!pcid_enabled && (operand.pcid != 0)) {
9142 kvm_inject_gp(vcpu, 0);
9143 return 1;
9144 }
9145
9146 if (kvm_get_active_pcid(vcpu) == operand.pcid) {
9147 kvm_mmu_sync_roots(vcpu);
9148 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
9149 }
9150
Junaid Shahidb94742c2018-06-27 14:59:20 -07009151 for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++)
9152 if (kvm_get_pcid(vcpu, vcpu->arch.mmu.prev_roots[i].cr3)
9153 == operand.pcid)
9154 roots_to_free |= KVM_MMU_ROOT_PREVIOUS(i);
Junaid Shahidade61e22018-06-27 14:59:15 -07009155
Junaid Shahidb94742c2018-06-27 14:59:20 -07009156 kvm_mmu_free_roots(vcpu, roots_to_free);
Junaid Shahideb4b2482018-06-27 14:59:14 -07009157 /*
Junaid Shahidb94742c2018-06-27 14:59:20 -07009158 * If neither the current cr3 nor any of the prev_roots use the
Junaid Shahidade61e22018-06-27 14:59:15 -07009159 * given PCID, then nothing needs to be done here because a
9160 * resync will happen anyway before switching to any other CR3.
Junaid Shahideb4b2482018-06-27 14:59:14 -07009161 */
9162
9163 return kvm_skip_emulated_instruction(vcpu);
9164
9165 case INVPCID_TYPE_ALL_NON_GLOBAL:
9166 /*
9167 * Currently, KVM doesn't mark global entries in the shadow
9168 * page tables, so a non-global flush just degenerates to a
9169 * global flush. If needed, we could optimize this later by
9170 * keeping track of global entries in shadow page tables.
9171 */
9172
9173 /* fall-through */
9174 case INVPCID_TYPE_ALL_INCL_GLOBAL:
9175 kvm_mmu_unload(vcpu);
9176 return kvm_skip_emulated_instruction(vcpu);
9177
9178 default:
9179 BUG(); /* We have already checked above that type <= 3 */
9180 }
9181}
9182
Kai Huang843e4332015-01-28 10:54:28 +08009183static int handle_pml_full(struct kvm_vcpu *vcpu)
9184{
9185 unsigned long exit_qualification;
9186
9187 trace_kvm_pml_full(vcpu->vcpu_id);
9188
9189 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
9190
9191 /*
9192 * PML buffer FULL happened while executing iret from NMI,
9193 * "blocked by NMI" bit has to be set before next VM entry.
9194 */
9195 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01009196 enable_vnmi &&
Kai Huang843e4332015-01-28 10:54:28 +08009197 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
9198 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
9199 GUEST_INTR_STATE_NMI);
9200
9201 /*
9202 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
9203 * here.., and there's no userspace involvement needed for PML.
9204 */
9205 return 1;
9206}
9207
Yunhong Jiang64672c92016-06-13 14:19:59 -07009208static int handle_preemption_timer(struct kvm_vcpu *vcpu)
9209{
Sean Christophersond264ee02018-08-27 15:21:12 -07009210 if (!to_vmx(vcpu)->req_immediate_exit)
9211 kvm_lapic_expired_hv_timer(vcpu);
Yunhong Jiang64672c92016-06-13 14:19:59 -07009212 return 1;
9213}
9214
Bandan Das41ab9372017-08-03 15:54:43 -04009215static bool valid_ept_address(struct kvm_vcpu *vcpu, u64 address)
9216{
9217 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das41ab9372017-08-03 15:54:43 -04009218 int maxphyaddr = cpuid_maxphyaddr(vcpu);
9219
9220 /* Check for memory type validity */
David Hildenbrandbb97a012017-08-10 23:15:28 +02009221 switch (address & VMX_EPTP_MT_MASK) {
9222 case VMX_EPTP_MT_UC:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01009223 if (!(vmx->nested.msrs.ept_caps & VMX_EPTP_UC_BIT))
Bandan Das41ab9372017-08-03 15:54:43 -04009224 return false;
9225 break;
David Hildenbrandbb97a012017-08-10 23:15:28 +02009226 case VMX_EPTP_MT_WB:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01009227 if (!(vmx->nested.msrs.ept_caps & VMX_EPTP_WB_BIT))
Bandan Das41ab9372017-08-03 15:54:43 -04009228 return false;
9229 break;
9230 default:
9231 return false;
9232 }
9233
David Hildenbrandbb97a012017-08-10 23:15:28 +02009234 /* only 4 levels page-walk length are valid */
9235 if ((address & VMX_EPTP_PWL_MASK) != VMX_EPTP_PWL_4)
Bandan Das41ab9372017-08-03 15:54:43 -04009236 return false;
9237
9238 /* Reserved bits should not be set */
9239 if (address >> maxphyaddr || ((address >> 7) & 0x1f))
9240 return false;
9241
9242 /* AD, if set, should be supported */
David Hildenbrandbb97a012017-08-10 23:15:28 +02009243 if (address & VMX_EPTP_AD_ENABLE_BIT) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01009244 if (!(vmx->nested.msrs.ept_caps & VMX_EPT_AD_BIT))
Bandan Das41ab9372017-08-03 15:54:43 -04009245 return false;
9246 }
9247
9248 return true;
9249}
9250
9251static int nested_vmx_eptp_switching(struct kvm_vcpu *vcpu,
9252 struct vmcs12 *vmcs12)
9253{
9254 u32 index = vcpu->arch.regs[VCPU_REGS_RCX];
9255 u64 address;
9256 bool accessed_dirty;
9257 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
9258
9259 if (!nested_cpu_has_eptp_switching(vmcs12) ||
9260 !nested_cpu_has_ept(vmcs12))
9261 return 1;
9262
9263 if (index >= VMFUNC_EPTP_ENTRIES)
9264 return 1;
9265
9266
9267 if (kvm_vcpu_read_guest_page(vcpu, vmcs12->eptp_list_address >> PAGE_SHIFT,
9268 &address, index * 8, 8))
9269 return 1;
9270
David Hildenbrandbb97a012017-08-10 23:15:28 +02009271 accessed_dirty = !!(address & VMX_EPTP_AD_ENABLE_BIT);
Bandan Das41ab9372017-08-03 15:54:43 -04009272
9273 /*
9274 * If the (L2) guest does a vmfunc to the currently
9275 * active ept pointer, we don't have to do anything else
9276 */
9277 if (vmcs12->ept_pointer != address) {
9278 if (!valid_ept_address(vcpu, address))
9279 return 1;
9280
9281 kvm_mmu_unload(vcpu);
9282 mmu->ept_ad = accessed_dirty;
9283 mmu->base_role.ad_disabled = !accessed_dirty;
9284 vmcs12->ept_pointer = address;
9285 /*
9286 * TODO: Check what's the correct approach in case
9287 * mmu reload fails. Currently, we just let the next
9288 * reload potentially fail
9289 */
9290 kvm_mmu_reload(vcpu);
9291 }
9292
9293 return 0;
9294}
9295
Bandan Das2a499e42017-08-03 15:54:41 -04009296static int handle_vmfunc(struct kvm_vcpu *vcpu)
9297{
Bandan Das27c42a12017-08-03 15:54:42 -04009298 struct vcpu_vmx *vmx = to_vmx(vcpu);
9299 struct vmcs12 *vmcs12;
9300 u32 function = vcpu->arch.regs[VCPU_REGS_RAX];
9301
9302 /*
9303 * VMFUNC is only supported for nested guests, but we always enable the
9304 * secondary control for simplicity; for non-nested mode, fake that we
9305 * didn't by injecting #UD.
9306 */
9307 if (!is_guest_mode(vcpu)) {
9308 kvm_queue_exception(vcpu, UD_VECTOR);
9309 return 1;
9310 }
9311
9312 vmcs12 = get_vmcs12(vcpu);
9313 if ((vmcs12->vm_function_control & (1 << function)) == 0)
9314 goto fail;
Bandan Das41ab9372017-08-03 15:54:43 -04009315
9316 switch (function) {
9317 case 0:
9318 if (nested_vmx_eptp_switching(vcpu, vmcs12))
9319 goto fail;
9320 break;
9321 default:
9322 goto fail;
9323 }
9324 return kvm_skip_emulated_instruction(vcpu);
Bandan Das27c42a12017-08-03 15:54:42 -04009325
9326fail:
9327 nested_vmx_vmexit(vcpu, vmx->exit_reason,
9328 vmcs_read32(VM_EXIT_INTR_INFO),
9329 vmcs_readl(EXIT_QUALIFICATION));
Bandan Das2a499e42017-08-03 15:54:41 -04009330 return 1;
9331}
9332
Sean Christopherson0b665d32018-08-14 09:33:34 -07009333static int handle_encls(struct kvm_vcpu *vcpu)
9334{
9335 /*
9336 * SGX virtualization is not yet supported. There is no software
9337 * enable bit for SGX, so we have to trap ENCLS and inject a #UD
9338 * to prevent the guest from executing ENCLS.
9339 */
9340 kvm_queue_exception(vcpu, UD_VECTOR);
9341 return 1;
9342}
9343
Nadav Har'El0140cae2011-05-25 23:06:28 +03009344/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08009345 * The exit handlers return 1 if the exit was handled fully and guest execution
9346 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
9347 * to be done to userspace and return 0.
9348 */
Mathias Krause772e0312012-08-30 01:30:19 +02009349static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08009350 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
9351 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08009352 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08009353 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08009354 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08009355 [EXIT_REASON_CR_ACCESS] = handle_cr,
9356 [EXIT_REASON_DR_ACCESS] = handle_dr,
9357 [EXIT_REASON_CPUID] = handle_cpuid,
9358 [EXIT_REASON_MSR_READ] = handle_rdmsr,
9359 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
9360 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
9361 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02009362 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03009363 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02009364 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02009365 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03009366 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009367 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03009368 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03009369 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03009370 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009371 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03009372 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03009373 [EXIT_REASON_VMOFF] = handle_vmoff,
9374 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08009375 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
9376 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08009377 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08009378 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02009379 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08009380 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02009381 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08009382 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Paolo Bonzini0367f202016-07-12 10:44:55 +02009383 [EXIT_REASON_GDTR_IDTR] = handle_desc,
9384 [EXIT_REASON_LDTR_TR] = handle_desc,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03009385 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
9386 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08009387 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04009388 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03009389 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04009390 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03009391 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02009392 [EXIT_REASON_INVVPID] = handle_invvpid,
Jim Mattson45ec3682017-08-23 16:32:04 -07009393 [EXIT_REASON_RDRAND] = handle_invalid_op,
Jim Mattson75f4fc82017-08-23 16:32:03 -07009394 [EXIT_REASON_RDSEED] = handle_invalid_op,
Wanpeng Lif53cd632014-12-02 19:14:58 +08009395 [EXIT_REASON_XSAVES] = handle_xsaves,
9396 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08009397 [EXIT_REASON_PML_FULL] = handle_pml_full,
Junaid Shahideb4b2482018-06-27 14:59:14 -07009398 [EXIT_REASON_INVPCID] = handle_invpcid,
Bandan Das2a499e42017-08-03 15:54:41 -04009399 [EXIT_REASON_VMFUNC] = handle_vmfunc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07009400 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Sean Christopherson0b665d32018-08-14 09:33:34 -07009401 [EXIT_REASON_ENCLS] = handle_encls,
Avi Kivity6aa8b732006-12-10 02:21:36 -08009402};
9403
9404static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04009405 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009406
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009407static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
9408 struct vmcs12 *vmcs12)
9409{
9410 unsigned long exit_qualification;
9411 gpa_t bitmap, last_bitmap;
9412 unsigned int port;
9413 int size;
9414 u8 b;
9415
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009416 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05009417 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009418
9419 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
9420
9421 port = exit_qualification >> 16;
9422 size = (exit_qualification & 7) + 1;
9423
9424 last_bitmap = (gpa_t)-1;
9425 b = -1;
9426
9427 while (size > 0) {
9428 if (port < 0x8000)
9429 bitmap = vmcs12->io_bitmap_a;
9430 else if (port < 0x10000)
9431 bitmap = vmcs12->io_bitmap_b;
9432 else
Joe Perches1d804d02015-03-30 16:46:09 -07009433 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009434 bitmap += (port & 0x7fff) / 8;
9435
9436 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009437 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07009438 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009439 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07009440 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009441
9442 port++;
9443 size--;
9444 last_bitmap = bitmap;
9445 }
9446
Joe Perches1d804d02015-03-30 16:46:09 -07009447 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009448}
9449
Nadav Har'El644d7112011-05-25 23:12:35 +03009450/*
9451 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
9452 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
9453 * disinterest in the current event (read or write a specific MSR) by using an
9454 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
9455 */
9456static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
9457 struct vmcs12 *vmcs12, u32 exit_reason)
9458{
9459 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
9460 gpa_t bitmap;
9461
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01009462 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07009463 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009464
9465 /*
9466 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
9467 * for the four combinations of read/write and low/high MSR numbers.
9468 * First we need to figure out which of the four to use:
9469 */
9470 bitmap = vmcs12->msr_bitmap;
9471 if (exit_reason == EXIT_REASON_MSR_WRITE)
9472 bitmap += 2048;
9473 if (msr_index >= 0xc0000000) {
9474 msr_index -= 0xc0000000;
9475 bitmap += 1024;
9476 }
9477
9478 /* Then read the msr_index'th bit from this bitmap: */
9479 if (msr_index < 1024*8) {
9480 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009481 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07009482 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009483 return 1 & (b >> (msr_index & 7));
9484 } else
Joe Perches1d804d02015-03-30 16:46:09 -07009485 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03009486}
9487
9488/*
9489 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
9490 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
9491 * intercept (via guest_host_mask etc.) the current event.
9492 */
9493static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
9494 struct vmcs12 *vmcs12)
9495{
9496 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
9497 int cr = exit_qualification & 15;
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02009498 int reg;
9499 unsigned long val;
Nadav Har'El644d7112011-05-25 23:12:35 +03009500
9501 switch ((exit_qualification >> 4) & 3) {
9502 case 0: /* mov to cr */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02009503 reg = (exit_qualification >> 8) & 15;
9504 val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03009505 switch (cr) {
9506 case 0:
9507 if (vmcs12->cr0_guest_host_mask &
9508 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07009509 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009510 break;
9511 case 3:
9512 if ((vmcs12->cr3_target_count >= 1 &&
9513 vmcs12->cr3_target_value0 == val) ||
9514 (vmcs12->cr3_target_count >= 2 &&
9515 vmcs12->cr3_target_value1 == val) ||
9516 (vmcs12->cr3_target_count >= 3 &&
9517 vmcs12->cr3_target_value2 == val) ||
9518 (vmcs12->cr3_target_count >= 4 &&
9519 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07009520 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009521 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07009522 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009523 break;
9524 case 4:
9525 if (vmcs12->cr4_guest_host_mask &
9526 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07009527 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009528 break;
9529 case 8:
9530 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07009531 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009532 break;
9533 }
9534 break;
9535 case 2: /* clts */
9536 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
9537 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07009538 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009539 break;
9540 case 1: /* mov from cr */
9541 switch (cr) {
9542 case 3:
9543 if (vmcs12->cpu_based_vm_exec_control &
9544 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07009545 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009546 break;
9547 case 8:
9548 if (vmcs12->cpu_based_vm_exec_control &
9549 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07009550 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009551 break;
9552 }
9553 break;
9554 case 3: /* lmsw */
9555 /*
9556 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
9557 * cr0. Other attempted changes are ignored, with no exit.
9558 */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02009559 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Nadav Har'El644d7112011-05-25 23:12:35 +03009560 if (vmcs12->cr0_guest_host_mask & 0xe &
9561 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07009562 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009563 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
9564 !(vmcs12->cr0_read_shadow & 0x1) &&
9565 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07009566 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009567 break;
9568 }
Joe Perches1d804d02015-03-30 16:46:09 -07009569 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009570}
9571
Liran Alona7cde482018-06-23 02:35:10 +03009572static bool nested_vmx_exit_handled_vmcs_access(struct kvm_vcpu *vcpu,
9573 struct vmcs12 *vmcs12, gpa_t bitmap)
9574{
9575 u32 vmx_instruction_info;
9576 unsigned long field;
9577 u8 b;
9578
9579 if (!nested_cpu_has_shadow_vmcs(vmcs12))
9580 return true;
9581
9582 /* Decode instruction info and find the field to access */
9583 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
9584 field = kvm_register_read(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
9585
9586 /* Out-of-range fields always cause a VM exit from L2 to L1 */
9587 if (field >> 15)
9588 return true;
9589
9590 if (kvm_vcpu_read_guest(vcpu, bitmap + field/8, &b, 1))
9591 return true;
9592
9593 return 1 & (b >> (field & 7));
9594}
9595
Nadav Har'El644d7112011-05-25 23:12:35 +03009596/*
9597 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
9598 * should handle it ourselves in L0 (and then continue L2). Only call this
9599 * when in is_guest_mode (L2).
9600 */
Paolo Bonzini7313c692017-07-27 10:31:25 +02009601static bool nested_vmx_exit_reflected(struct kvm_vcpu *vcpu, u32 exit_reason)
Nadav Har'El644d7112011-05-25 23:12:35 +03009602{
Nadav Har'El644d7112011-05-25 23:12:35 +03009603 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9604 struct vcpu_vmx *vmx = to_vmx(vcpu);
9605 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9606
Jim Mattson4f350c62017-09-14 16:31:44 -07009607 if (vmx->nested.nested_run_pending)
9608 return false;
9609
9610 if (unlikely(vmx->fail)) {
9611 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
9612 vmcs_read32(VM_INSTRUCTION_ERROR));
9613 return true;
9614 }
Jan Kiszka542060e2014-01-04 18:47:21 +01009615
David Matlackc9f04402017-08-01 14:00:40 -07009616 /*
9617 * The host physical addresses of some pages of guest memory
Jim Mattsonde3a0022017-11-27 17:22:25 -06009618 * are loaded into the vmcs02 (e.g. vmcs12's Virtual APIC
9619 * Page). The CPU may write to these pages via their host
9620 * physical address while L2 is running, bypassing any
9621 * address-translation-based dirty tracking (e.g. EPT write
9622 * protection).
David Matlackc9f04402017-08-01 14:00:40 -07009623 *
9624 * Mark them dirty on every exit from L2 to prevent them from
9625 * getting out of sync with dirty tracking.
9626 */
9627 nested_mark_vmcs12_pages_dirty(vcpu);
9628
Jim Mattson4f350c62017-09-14 16:31:44 -07009629 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
9630 vmcs_readl(EXIT_QUALIFICATION),
9631 vmx->idt_vectoring_info,
9632 intr_info,
9633 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
9634 KVM_ISA_VMX);
Nadav Har'El644d7112011-05-25 23:12:35 +03009635
9636 switch (exit_reason) {
9637 case EXIT_REASON_EXCEPTION_NMI:
Jim Mattsonef85b672016-12-12 11:01:37 -08009638 if (is_nmi(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07009639 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009640 else if (is_page_fault(intr_info))
Wanpeng Li52a5c152017-07-13 18:30:42 -07009641 return !vmx->vcpu.arch.apf.host_apf_reason && enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01009642 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01009643 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07009644 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01009645 else if (is_debug(intr_info) &&
9646 vcpu->guest_debug &
9647 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
9648 return false;
9649 else if (is_breakpoint(intr_info) &&
9650 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
9651 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009652 return vmcs12->exception_bitmap &
9653 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
9654 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07009655 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009656 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07009657 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009658 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02009659 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03009660 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02009661 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03009662 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07009663 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009664 case EXIT_REASON_CPUID:
Joe Perches1d804d02015-03-30 16:46:09 -07009665 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009666 case EXIT_REASON_HLT:
9667 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
9668 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07009669 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009670 case EXIT_REASON_INVLPG:
9671 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
9672 case EXIT_REASON_RDPMC:
9673 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02009674 case EXIT_REASON_RDRAND:
David Hildenbrand736fdf72017-08-24 20:51:37 +02009675 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDRAND_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02009676 case EXIT_REASON_RDSEED:
David Hildenbrand736fdf72017-08-24 20:51:37 +02009677 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDSEED_EXITING);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01009678 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03009679 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
Liran Alona7cde482018-06-23 02:35:10 +03009680 case EXIT_REASON_VMREAD:
9681 return nested_vmx_exit_handled_vmcs_access(vcpu, vmcs12,
9682 vmcs12->vmread_bitmap);
9683 case EXIT_REASON_VMWRITE:
9684 return nested_vmx_exit_handled_vmcs_access(vcpu, vmcs12,
9685 vmcs12->vmwrite_bitmap);
Nadav Har'El644d7112011-05-25 23:12:35 +03009686 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
9687 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
Liran Alona7cde482018-06-23 02:35:10 +03009688 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMRESUME:
Nadav Har'El644d7112011-05-25 23:12:35 +03009689 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02009690 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03009691 /*
9692 * VMX instructions trap unconditionally. This allows L1 to
9693 * emulate them for its L2 guest, i.e., allows 3-level nesting!
9694 */
Joe Perches1d804d02015-03-30 16:46:09 -07009695 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009696 case EXIT_REASON_CR_ACCESS:
9697 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
9698 case EXIT_REASON_DR_ACCESS:
9699 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
9700 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01009701 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Paolo Bonzini1b073042016-10-25 16:06:30 +02009702 case EXIT_REASON_GDTR_IDTR: case EXIT_REASON_LDTR_TR:
9703 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC);
Nadav Har'El644d7112011-05-25 23:12:35 +03009704 case EXIT_REASON_MSR_READ:
9705 case EXIT_REASON_MSR_WRITE:
9706 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
9707 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07009708 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009709 case EXIT_REASON_MWAIT_INSTRUCTION:
9710 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03009711 case EXIT_REASON_MONITOR_TRAP_FLAG:
9712 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03009713 case EXIT_REASON_MONITOR_INSTRUCTION:
9714 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
9715 case EXIT_REASON_PAUSE_INSTRUCTION:
9716 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
9717 nested_cpu_has2(vmcs12,
9718 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
9719 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07009720 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009721 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009722 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03009723 case EXIT_REASON_APIC_ACCESS:
Wincy Van82f0dd42015-02-03 23:57:18 +08009724 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08009725 case EXIT_REASON_EOI_INDUCED:
Jim Mattsonab5df312018-05-09 17:02:03 -04009726 /*
9727 * The controls for "virtualize APIC accesses," "APIC-
9728 * register virtualization," and "virtual-interrupt
9729 * delivery" only come from vmcs12.
9730 */
Joe Perches1d804d02015-03-30 16:46:09 -07009731 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009732 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03009733 /*
9734 * L0 always deals with the EPT violation. If nested EPT is
9735 * used, and the nested mmu code discovers that the address is
9736 * missing in the guest EPT table (EPT12), the EPT violation
9737 * will be injected with nested_ept_inject_page_fault()
9738 */
Joe Perches1d804d02015-03-30 16:46:09 -07009739 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009740 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03009741 /*
9742 * L2 never uses directly L1's EPT, but rather L0's own EPT
9743 * table (shadow on EPT) or a merged EPT table that L0 built
9744 * (EPT on EPT). So any problems with the structure of the
9745 * table is L0's fault.
9746 */
Joe Perches1d804d02015-03-30 16:46:09 -07009747 return false;
Paolo Bonzini90a2db62017-07-27 13:22:13 +02009748 case EXIT_REASON_INVPCID:
9749 return
9750 nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_INVPCID) &&
9751 nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
Nadav Har'El644d7112011-05-25 23:12:35 +03009752 case EXIT_REASON_WBINVD:
9753 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
9754 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07009755 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08009756 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
9757 /*
9758 * This should never happen, since it is not possible to
9759 * set XSS to a non-zero value---neither in L1 nor in L2.
9760 * If if it were, XSS would have to be checked against
9761 * the XSS exit bitmap in vmcs12.
9762 */
9763 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li55123e32016-07-06 18:29:58 +08009764 case EXIT_REASON_PREEMPTION_TIMER:
9765 return false;
Ladi Prosekab007cc2017-03-31 10:19:26 +02009766 case EXIT_REASON_PML_FULL:
Bandan Das03efce62017-05-05 15:25:15 -04009767 /* We emulate PML support to L1. */
Ladi Prosekab007cc2017-03-31 10:19:26 +02009768 return false;
Bandan Das2a499e42017-08-03 15:54:41 -04009769 case EXIT_REASON_VMFUNC:
9770 /* VM functions are emulated through L2->L0 vmexits. */
9771 return false;
Sean Christopherson0b665d32018-08-14 09:33:34 -07009772 case EXIT_REASON_ENCLS:
9773 /* SGX is never exposed to L1 */
9774 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03009775 default:
Joe Perches1d804d02015-03-30 16:46:09 -07009776 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03009777 }
9778}
9779
Paolo Bonzini7313c692017-07-27 10:31:25 +02009780static int nested_vmx_reflect_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason)
9781{
9782 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9783
9784 /*
9785 * At this point, the exit interruption info in exit_intr_info
9786 * is only valid for EXCEPTION_NMI exits. For EXTERNAL_INTERRUPT
9787 * we need to query the in-kernel LAPIC.
9788 */
9789 WARN_ON(exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT);
9790 if ((exit_intr_info &
9791 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
9792 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) {
9793 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9794 vmcs12->vm_exit_intr_error_code =
9795 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
9796 }
9797
9798 nested_vmx_vmexit(vcpu, exit_reason, exit_intr_info,
9799 vmcs_readl(EXIT_QUALIFICATION));
9800 return 1;
9801}
9802
Avi Kivity586f9602010-11-18 13:09:54 +02009803static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
9804{
9805 *info1 = vmcs_readl(EXIT_QUALIFICATION);
9806 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
9807}
9808
Kai Huanga3eaa862015-11-04 13:46:05 +08009809static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08009810{
Kai Huanga3eaa862015-11-04 13:46:05 +08009811 if (vmx->pml_pg) {
9812 __free_page(vmx->pml_pg);
9813 vmx->pml_pg = NULL;
9814 }
Kai Huang843e4332015-01-28 10:54:28 +08009815}
9816
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009817static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08009818{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009819 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08009820 u64 *pml_buf;
9821 u16 pml_idx;
9822
9823 pml_idx = vmcs_read16(GUEST_PML_INDEX);
9824
9825 /* Do nothing if PML buffer is empty */
9826 if (pml_idx == (PML_ENTITY_NUM - 1))
9827 return;
9828
9829 /* PML index always points to next available PML buffer entity */
9830 if (pml_idx >= PML_ENTITY_NUM)
9831 pml_idx = 0;
9832 else
9833 pml_idx++;
9834
9835 pml_buf = page_address(vmx->pml_pg);
9836 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
9837 u64 gpa;
9838
9839 gpa = pml_buf[pml_idx];
9840 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009841 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08009842 }
9843
9844 /* reset PML index */
9845 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
9846}
9847
9848/*
9849 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
9850 * Called before reporting dirty_bitmap to userspace.
9851 */
9852static void kvm_flush_pml_buffers(struct kvm *kvm)
9853{
9854 int i;
9855 struct kvm_vcpu *vcpu;
9856 /*
9857 * We only need to kick vcpu out of guest mode here, as PML buffer
9858 * is flushed at beginning of all VMEXITs, and it's obvious that only
9859 * vcpus running in guest are possible to have unflushed GPAs in PML
9860 * buffer.
9861 */
9862 kvm_for_each_vcpu(i, vcpu, kvm)
9863 kvm_vcpu_kick(vcpu);
9864}
9865
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009866static void vmx_dump_sel(char *name, uint32_t sel)
9867{
9868 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05009869 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009870 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
9871 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
9872 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
9873}
9874
9875static void vmx_dump_dtsel(char *name, uint32_t limit)
9876{
9877 pr_err("%s limit=0x%08x, base=0x%016lx\n",
9878 name, vmcs_read32(limit),
9879 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
9880}
9881
9882static void dump_vmcs(void)
9883{
9884 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
9885 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
9886 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
9887 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
9888 u32 secondary_exec_control = 0;
9889 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01009890 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009891 int i, n;
9892
9893 if (cpu_has_secondary_exec_ctrls())
9894 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
9895
9896 pr_err("*** Guest State ***\n");
9897 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
9898 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
9899 vmcs_readl(CR0_GUEST_HOST_MASK));
9900 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
9901 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
9902 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
9903 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
9904 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
9905 {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009906 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
9907 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
9908 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
9909 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009910 }
9911 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
9912 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
9913 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
9914 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
9915 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
9916 vmcs_readl(GUEST_SYSENTER_ESP),
9917 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
9918 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
9919 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
9920 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
9921 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
9922 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
9923 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
9924 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
9925 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
9926 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
9927 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
9928 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
9929 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009930 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
9931 efer, vmcs_read64(GUEST_IA32_PAT));
9932 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
9933 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009934 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009935 if (cpu_has_load_perf_global_ctrl &&
9936 vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009937 pr_err("PerfGlobCtl = 0x%016llx\n",
9938 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009939 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009940 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009941 pr_err("Interruptibility = %08x ActivityState = %08x\n",
9942 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
9943 vmcs_read32(GUEST_ACTIVITY_STATE));
9944 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
9945 pr_err("InterruptStatus = %04x\n",
9946 vmcs_read16(GUEST_INTR_STATUS));
9947
9948 pr_err("*** Host State ***\n");
9949 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
9950 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
9951 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
9952 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
9953 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
9954 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
9955 vmcs_read16(HOST_TR_SELECTOR));
9956 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
9957 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
9958 vmcs_readl(HOST_TR_BASE));
9959 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
9960 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
9961 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
9962 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
9963 vmcs_readl(HOST_CR4));
9964 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
9965 vmcs_readl(HOST_IA32_SYSENTER_ESP),
9966 vmcs_read32(HOST_IA32_SYSENTER_CS),
9967 vmcs_readl(HOST_IA32_SYSENTER_EIP));
9968 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009969 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
9970 vmcs_read64(HOST_IA32_EFER),
9971 vmcs_read64(HOST_IA32_PAT));
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009972 if (cpu_has_load_perf_global_ctrl &&
9973 vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009974 pr_err("PerfGlobCtl = 0x%016llx\n",
9975 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009976
9977 pr_err("*** Control State ***\n");
9978 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
9979 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
9980 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
9981 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
9982 vmcs_read32(EXCEPTION_BITMAP),
9983 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
9984 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
9985 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
9986 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
9987 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
9988 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
9989 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
9990 vmcs_read32(VM_EXIT_INTR_INFO),
9991 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
9992 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
9993 pr_err(" reason=%08x qualification=%016lx\n",
9994 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
9995 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
9996 vmcs_read32(IDT_VECTORING_INFO_FIELD),
9997 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009998 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08009999 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +010010000 pr_err("TSC Multiplier = 0x%016llx\n",
10001 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +020010002 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
10003 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
10004 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
10005 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
10006 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +010010007 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +020010008 n = vmcs_read32(CR3_TARGET_COUNT);
10009 for (i = 0; i + 1 < n; i += 4)
10010 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
10011 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
10012 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
10013 if (i < n)
10014 pr_err("CR3 target%u=%016lx\n",
10015 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
10016 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
10017 pr_err("PLE Gap=%08x Window=%08x\n",
10018 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
10019 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
10020 pr_err("Virtual processor ID = 0x%04x\n",
10021 vmcs_read16(VIRTUAL_PROCESSOR_ID));
10022}
10023
Avi Kivity6aa8b732006-12-10 02:21:36 -080010024/*
10025 * The guest has exited. See if we can fix it or if we need userspace
10026 * assistance.
10027 */
Avi Kivity851ba692009-08-24 11:10:17 +030010028static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -080010029{
Avi Kivity29bd8a72007-09-10 17:27:03 +030010030 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +080010031 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +020010032 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +030010033
Paolo Bonzini8b89fe12015-12-10 18:37:32 +010010034 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
10035
Kai Huang843e4332015-01-28 10:54:28 +080010036 /*
10037 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
10038 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
10039 * querying dirty_bitmap, we only need to kick all vcpus out of guest
10040 * mode as if vcpus is in root mode, the PML buffer must has been
10041 * flushed already.
10042 */
10043 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010044 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +080010045
Mohammed Gamal80ced182009-09-01 12:48:18 +020010046 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +020010047 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +020010048 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +010010049
Paolo Bonzini7313c692017-07-27 10:31:25 +020010050 if (is_guest_mode(vcpu) && nested_vmx_exit_reflected(vcpu, exit_reason))
10051 return nested_vmx_reflect_vmexit(vcpu, exit_reason);
Nadav Har'El644d7112011-05-25 23:12:35 +030010052
Mohammed Gamal51207022010-05-31 22:40:54 +030010053 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +020010054 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +030010055 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
10056 vcpu->run->fail_entry.hardware_entry_failure_reason
10057 = exit_reason;
10058 return 0;
10059 }
10060
Avi Kivity29bd8a72007-09-10 17:27:03 +030010061 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +030010062 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
10063 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +030010064 = vmcs_read32(VM_INSTRUCTION_ERROR);
10065 return 0;
10066 }
Avi Kivity6aa8b732006-12-10 02:21:36 -080010067
Xiao Guangrongb9bf6882012-10-17 13:46:52 +080010068 /*
10069 * Note:
10070 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
10071 * delivery event since it indicates guest is accessing MMIO.
10072 * The vm-exit can be triggered again after return to guest that
10073 * will cause infinite loop.
10074 */
Mike Dayd77c26f2007-10-08 09:02:08 -040010075 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +080010076 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +020010077 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +000010078 exit_reason != EXIT_REASON_PML_FULL &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +080010079 exit_reason != EXIT_REASON_TASK_SWITCH)) {
10080 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
10081 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Paolo Bonzini70bcd702017-07-05 12:38:06 +020010082 vcpu->run->internal.ndata = 3;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +080010083 vcpu->run->internal.data[0] = vectoring_info;
10084 vcpu->run->internal.data[1] = exit_reason;
Paolo Bonzini70bcd702017-07-05 12:38:06 +020010085 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
10086 if (exit_reason == EXIT_REASON_EPT_MISCONFIG) {
10087 vcpu->run->internal.ndata++;
10088 vcpu->run->internal.data[3] =
10089 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
10090 }
Xiao Guangrongb9bf6882012-10-17 13:46:52 +080010091 return 0;
10092 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +020010093
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010010094 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +010010095 vmx->loaded_vmcs->soft_vnmi_blocked)) {
10096 if (vmx_interrupt_allowed(vcpu)) {
10097 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
10098 } else if (vmx->loaded_vmcs->vnmi_blocked_time > 1000000000LL &&
10099 vcpu->arch.nmi_pending) {
10100 /*
10101 * This CPU don't support us in finding the end of an
10102 * NMI-blocked window if the guest runs with IRQs
10103 * disabled. So we pull the trigger after 1 s of
10104 * futile waiting, but inform the user about this.
10105 */
10106 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
10107 "state on VCPU %d after 1 s timeout\n",
10108 __func__, vcpu->vcpu_id);
10109 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
10110 }
10111 }
10112
Avi Kivity6aa8b732006-12-10 02:21:36 -080010113 if (exit_reason < kvm_vmx_max_exit_handlers
10114 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +030010115 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -080010116 else {
Radim Krčmář6c6c5e02017-01-13 18:59:04 +010010117 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
10118 exit_reason);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +030010119 kvm_queue_exception(vcpu, UD_VECTOR);
10120 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -080010121 }
Avi Kivity6aa8b732006-12-10 02:21:36 -080010122}
10123
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020010124/*
10125 * Software based L1D cache flush which is used when microcode providing
10126 * the cache control MSR is not loaded.
10127 *
10128 * The L1D cache is 32 KiB on Nehalem and later microarchitectures, but to
10129 * flush it is required to read in 64 KiB because the replacement algorithm
10130 * is not exactly LRU. This could be sized at runtime via topology
10131 * information but as all relevant affected CPUs have 32KiB L1D cache size
10132 * there is no point in doing so.
10133 */
Paolo Bonzinic595cee2018-07-02 13:07:14 +020010134static void vmx_l1d_flush(struct kvm_vcpu *vcpu)
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020010135{
10136 int size = PAGE_SIZE << L1D_CACHE_ORDER;
Paolo Bonzinic595cee2018-07-02 13:07:14 +020010137
10138 /*
Thomas Gleixner2f055942018-07-13 16:23:17 +020010139 * This code is only executed when the the flush mode is 'cond' or
10140 * 'always'
Paolo Bonzinic595cee2018-07-02 13:07:14 +020010141 */
Nicolai Stange427362a2018-07-21 22:25:00 +020010142 if (static_branch_likely(&vmx_l1d_flush_cond)) {
Nicolai Stange45b575c2018-07-27 13:22:16 +020010143 bool flush_l1d;
Nicolai Stange5b6ccc62018-07-21 22:35:28 +020010144
Nicolai Stange379fd0c2018-07-21 22:16:56 +020010145 /*
Nicolai Stange45b575c2018-07-27 13:22:16 +020010146 * Clear the per-vcpu flush bit, it gets set again
10147 * either from vcpu_run() or from one of the unsafe
10148 * VMEXIT handlers.
Nicolai Stange379fd0c2018-07-21 22:16:56 +020010149 */
Nicolai Stange45b575c2018-07-27 13:22:16 +020010150 flush_l1d = vcpu->arch.l1tf_flush_l1d;
Thomas Gleixner4c6523e2018-07-13 16:23:20 +020010151 vcpu->arch.l1tf_flush_l1d = false;
Nicolai Stange45b575c2018-07-27 13:22:16 +020010152
10153 /*
10154 * Clear the per-cpu flush bit, it gets set again from
10155 * the interrupt handlers.
10156 */
10157 flush_l1d |= kvm_get_cpu_l1tf_flush_l1d();
10158 kvm_clear_cpu_l1tf_flush_l1d();
10159
Nicolai Stange5b6ccc62018-07-21 22:35:28 +020010160 if (!flush_l1d)
10161 return;
Nicolai Stange379fd0c2018-07-21 22:16:56 +020010162 }
Paolo Bonzinic595cee2018-07-02 13:07:14 +020010163
10164 vcpu->stat.l1d_flush++;
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020010165
Paolo Bonzini3fa045b2018-07-02 13:03:48 +020010166 if (static_cpu_has(X86_FEATURE_FLUSH_L1D)) {
10167 wrmsrl(MSR_IA32_FLUSH_CMD, L1D_FLUSH);
10168 return;
10169 }
10170
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020010171 asm volatile(
10172 /* First ensure the pages are in the TLB */
10173 "xorl %%eax, %%eax\n"
10174 ".Lpopulate_tlb:\n\t"
Nicolai Stange288d1522018-07-18 19:07:38 +020010175 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020010176 "addl $4096, %%eax\n\t"
10177 "cmpl %%eax, %[size]\n\t"
10178 "jne .Lpopulate_tlb\n\t"
10179 "xorl %%eax, %%eax\n\t"
10180 "cpuid\n\t"
10181 /* Now fill the cache */
10182 "xorl %%eax, %%eax\n"
10183 ".Lfill_cache:\n"
Nicolai Stange288d1522018-07-18 19:07:38 +020010184 "movzbl (%[flush_pages], %%" _ASM_AX "), %%ecx\n\t"
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020010185 "addl $64, %%eax\n\t"
10186 "cmpl %%eax, %[size]\n\t"
10187 "jne .Lfill_cache\n\t"
10188 "lfence\n"
Nicolai Stange288d1522018-07-18 19:07:38 +020010189 :: [flush_pages] "r" (vmx_l1d_flush_pages),
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020010190 [size] "r" (size)
10191 : "eax", "ebx", "ecx", "edx");
10192}
10193
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010194static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +080010195{
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010196 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10197
10198 if (is_guest_mode(vcpu) &&
10199 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
10200 return;
10201
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010202 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +080010203 vmcs_write32(TPR_THRESHOLD, 0);
10204 return;
10205 }
10206
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010207 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +080010208}
10209
Jim Mattson8d860bb2018-05-09 16:56:05 -040010210static void vmx_set_virtual_apic_mode(struct kvm_vcpu *vcpu)
Yang Zhang8d146952013-01-25 10:18:50 +080010211{
10212 u32 sec_exec_control;
10213
Jim Mattson8d860bb2018-05-09 16:56:05 -040010214 if (!lapic_in_kernel(vcpu))
10215 return;
10216
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020010217 /* Postpone execution until vmcs01 is the current VMCS. */
10218 if (is_guest_mode(vcpu)) {
Jim Mattson8d860bb2018-05-09 16:56:05 -040010219 to_vmx(vcpu)->nested.change_vmcs01_virtual_apic_mode = true;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020010220 return;
10221 }
10222
Paolo Bonzini35754c92015-07-29 12:05:37 +020010223 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +080010224 return;
10225
10226 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
Jim Mattson8d860bb2018-05-09 16:56:05 -040010227 sec_exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
10228 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
Yang Zhang8d146952013-01-25 10:18:50 +080010229
Jim Mattson8d860bb2018-05-09 16:56:05 -040010230 switch (kvm_get_apic_mode(vcpu)) {
10231 case LAPIC_MODE_INVALID:
10232 WARN_ONCE(true, "Invalid local APIC state");
10233 case LAPIC_MODE_DISABLED:
10234 break;
10235 case LAPIC_MODE_XAPIC:
10236 if (flexpriority_enabled) {
10237 sec_exec_control |=
10238 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
10239 vmx_flush_tlb(vcpu, true);
10240 }
10241 break;
10242 case LAPIC_MODE_X2APIC:
10243 if (cpu_has_vmx_virtualize_x2apic_mode())
10244 sec_exec_control |=
10245 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
10246 break;
Yang Zhang8d146952013-01-25 10:18:50 +080010247 }
10248 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
10249
Paolo Bonzini904e14f2018-01-16 16:51:18 +010010250 vmx_update_msr_bitmap(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +080010251}
10252
Tang Chen38b99172014-09-24 15:57:54 +080010253static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
10254{
Jim Mattsonab5df312018-05-09 17:02:03 -040010255 if (!is_guest_mode(vcpu)) {
Tang Chen38b99172014-09-24 15:57:54 +080010256 vmcs_write64(APIC_ACCESS_ADDR, hpa);
Junaid Shahida468f2d2018-04-26 13:09:50 -070010257 vmx_flush_tlb(vcpu, true);
Jim Mattsonfb6c8192017-03-16 13:53:59 -070010258 }
Tang Chen38b99172014-09-24 15:57:54 +080010259}
10260
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +020010261static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +080010262{
10263 u16 status;
10264 u8 old;
10265
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +020010266 if (max_isr == -1)
10267 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +080010268
10269 status = vmcs_read16(GUEST_INTR_STATUS);
10270 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +020010271 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +080010272 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +020010273 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +080010274 vmcs_write16(GUEST_INTR_STATUS, status);
10275 }
10276}
10277
10278static void vmx_set_rvi(int vector)
10279{
10280 u16 status;
10281 u8 old;
10282
Wei Wang4114c272014-11-05 10:53:43 +080010283 if (vector == -1)
10284 vector = 0;
10285
Yang Zhangc7c9c562013-01-25 10:18:51 +080010286 status = vmcs_read16(GUEST_INTR_STATUS);
10287 old = (u8)status & 0xff;
10288 if ((u8)vector != old) {
10289 status &= ~0xff;
10290 status |= (u8)vector;
10291 vmcs_write16(GUEST_INTR_STATUS, status);
10292 }
10293}
10294
10295static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
10296{
Liran Alon851c1a182017-12-24 18:12:56 +020010297 /*
10298 * When running L2, updating RVI is only relevant when
10299 * vmcs12 virtual-interrupt-delivery enabled.
10300 * However, it can be enabled only when L1 also
10301 * intercepts external-interrupts and in that case
10302 * we should not update vmcs02 RVI but instead intercept
10303 * interrupt. Therefore, do nothing when running L2.
10304 */
10305 if (!is_guest_mode(vcpu))
Wanpeng Li963fee12014-07-17 19:03:00 +080010306 vmx_set_rvi(max_irr);
Yang Zhangc7c9c562013-01-25 10:18:51 +080010307}
10308
Paolo Bonzini76dfafd52016-12-19 17:17:11 +010010309static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +010010310{
10311 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +010010312 int max_irr;
Liran Alonf27a85c2017-12-24 18:12:55 +020010313 bool max_irr_updated;
Paolo Bonzini810e6de2016-12-19 13:05:46 +010010314
Paolo Bonzini76dfafd52016-12-19 17:17:11 +010010315 WARN_ON(!vcpu->arch.apicv_active);
10316 if (pi_test_on(&vmx->pi_desc)) {
10317 pi_clear_on(&vmx->pi_desc);
10318 /*
10319 * IOMMU can write to PIR.ON, so the barrier matters even on UP.
10320 * But on x86 this is just a compiler barrier anyway.
10321 */
10322 smp_mb__after_atomic();
Liran Alonf27a85c2017-12-24 18:12:55 +020010323 max_irr_updated =
10324 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir, &max_irr);
10325
10326 /*
10327 * If we are running L2 and L1 has a new pending interrupt
10328 * which can be injected, we should re-evaluate
10329 * what should be done with this new L1 interrupt.
Liran Alon851c1a182017-12-24 18:12:56 +020010330 * If L1 intercepts external-interrupts, we should
10331 * exit from L2 to L1. Otherwise, interrupt should be
10332 * delivered directly to L2.
Liran Alonf27a85c2017-12-24 18:12:55 +020010333 */
Liran Alon851c1a182017-12-24 18:12:56 +020010334 if (is_guest_mode(vcpu) && max_irr_updated) {
10335 if (nested_exit_on_intr(vcpu))
10336 kvm_vcpu_exiting_guest_mode(vcpu);
10337 else
10338 kvm_make_request(KVM_REQ_EVENT, vcpu);
10339 }
Paolo Bonzini76dfafd52016-12-19 17:17:11 +010010340 } else {
10341 max_irr = kvm_lapic_find_highest_irr(vcpu);
10342 }
10343 vmx_hwapic_irr_update(vcpu, max_irr);
10344 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +010010345}
10346
Andrey Smetanin63086302015-11-10 15:36:32 +030010347static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +080010348{
Andrey Smetanind62caab2015-11-10 15:36:33 +030010349 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +080010350 return;
10351
Yang Zhangc7c9c562013-01-25 10:18:51 +080010352 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
10353 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
10354 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
10355 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
10356}
10357
Paolo Bonzini967235d2016-12-19 14:03:45 +010010358static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
10359{
10360 struct vcpu_vmx *vmx = to_vmx(vcpu);
10361
10362 pi_clear_on(&vmx->pi_desc);
10363 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
10364}
10365
Avi Kivity51aa01d2010-07-20 14:31:20 +030010366static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +030010367{
Jim Mattson48ae0fb2017-05-22 09:48:33 -070010368 u32 exit_intr_info = 0;
10369 u16 basic_exit_reason = (u16)vmx->exit_reason;
Avi Kivity00eba012011-03-07 17:24:54 +020010370
Jim Mattson48ae0fb2017-05-22 09:48:33 -070010371 if (!(basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
10372 || basic_exit_reason == EXIT_REASON_EXCEPTION_NMI))
Avi Kivity00eba012011-03-07 17:24:54 +020010373 return;
10374
Jim Mattson48ae0fb2017-05-22 09:48:33 -070010375 if (!(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
10376 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
10377 vmx->exit_intr_info = exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +080010378
Wanpeng Li1261bfa2017-07-13 18:30:40 -070010379 /* if exit due to PF check for async PF */
10380 if (is_page_fault(exit_intr_info))
10381 vmx->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
10382
Andi Kleena0861c02009-06-08 17:37:09 +080010383 /* Handle machine checks before interrupts are enabled */
Jim Mattson48ae0fb2017-05-22 09:48:33 -070010384 if (basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY ||
10385 is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +080010386 kvm_machine_check();
10387
Gleb Natapov20f65982009-05-11 13:35:55 +030010388 /* We need to handle NMIs before interrupts are enabled */
Jim Mattsonef85b672016-12-12 11:01:37 -080010389 if (is_nmi(exit_intr_info)) {
Andi Kleendd60d212017-07-25 17:20:32 -070010390 kvm_before_interrupt(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +030010391 asm("int $2");
Andi Kleendd60d212017-07-25 17:20:32 -070010392 kvm_after_interrupt(&vmx->vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +080010393 }
Avi Kivity51aa01d2010-07-20 14:31:20 +030010394}
Gleb Natapov20f65982009-05-11 13:35:55 +030010395
Yang Zhanga547c6d2013-04-11 19:25:10 +080010396static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
10397{
10398 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
10399
Yang Zhanga547c6d2013-04-11 19:25:10 +080010400 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
10401 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
10402 unsigned int vector;
10403 unsigned long entry;
10404 gate_desc *desc;
10405 struct vcpu_vmx *vmx = to_vmx(vcpu);
10406#ifdef CONFIG_X86_64
10407 unsigned long tmp;
10408#endif
10409
10410 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
10411 desc = (gate_desc *)vmx->host_idt_base + vector;
Thomas Gleixner64b163f2017-08-28 08:47:37 +020010412 entry = gate_offset(desc);
Yang Zhanga547c6d2013-04-11 19:25:10 +080010413 asm volatile(
10414#ifdef CONFIG_X86_64
10415 "mov %%" _ASM_SP ", %[sp]\n\t"
10416 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
10417 "push $%c[ss]\n\t"
10418 "push %[sp]\n\t"
10419#endif
10420 "pushf\n\t"
Yang Zhanga547c6d2013-04-11 19:25:10 +080010421 __ASM_SIZE(push) " $%c[cs]\n\t"
Peter Zijlstrac940a3f2018-01-25 10:58:14 +010010422 CALL_NOSPEC
Yang Zhanga547c6d2013-04-11 19:25:10 +080010423 :
10424#ifdef CONFIG_X86_64
Chris J Arges3f62de52016-01-22 15:44:38 -060010425 [sp]"=&r"(tmp),
Yang Zhanga547c6d2013-04-11 19:25:10 +080010426#endif
Josh Poimboeuff5caf622017-09-20 16:24:33 -050010427 ASM_CALL_CONSTRAINT
Yang Zhanga547c6d2013-04-11 19:25:10 +080010428 :
Peter Zijlstrac940a3f2018-01-25 10:58:14 +010010429 THUNK_TARGET(entry),
Yang Zhanga547c6d2013-04-11 19:25:10 +080010430 [ss]"i"(__KERNEL_DS),
10431 [cs]"i"(__KERNEL_CS)
10432 );
Paolo Bonzinif2485b32016-06-15 15:23:11 +020010433 }
Yang Zhanga547c6d2013-04-11 19:25:10 +080010434}
Josh Poimboeufc207aee2017-06-28 10:11:06 -050010435STACK_FRAME_NON_STANDARD(vmx_handle_external_intr);
Yang Zhanga547c6d2013-04-11 19:25:10 +080010436
Tom Lendackybc226f02018-05-10 22:06:39 +020010437static bool vmx_has_emulated_msr(int index)
Paolo Bonzini6d396b52015-04-01 14:25:33 +020010438{
Tom Lendackybc226f02018-05-10 22:06:39 +020010439 switch (index) {
10440 case MSR_IA32_SMBASE:
10441 /*
10442 * We cannot do SMM unless we can run the guest in big
10443 * real mode.
10444 */
10445 return enable_unrestricted_guest || emulate_invalid_guest_state;
10446 case MSR_AMD64_VIRT_SPEC_CTRL:
10447 /* This is AMD only. */
10448 return false;
10449 default:
10450 return true;
10451 }
Paolo Bonzini6d396b52015-04-01 14:25:33 +020010452}
10453
Liu, Jinsongda8999d2014-02-24 10:55:46 +000010454static bool vmx_mpx_supported(void)
10455{
10456 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
10457 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
10458}
10459
Wanpeng Li55412b22014-12-02 19:21:30 +080010460static bool vmx_xsaves_supported(void)
10461{
10462 return vmcs_config.cpu_based_2nd_exec_ctrl &
10463 SECONDARY_EXEC_XSAVES;
10464}
10465
Avi Kivity51aa01d2010-07-20 14:31:20 +030010466static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
10467{
Avi Kivityc5ca8e52011-03-07 17:37:37 +020010468 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +030010469 bool unblock_nmi;
10470 u8 vector;
10471 bool idtv_info_valid;
10472
10473 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +030010474
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010010475 if (enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +010010476 if (vmx->loaded_vmcs->nmi_known_unmasked)
10477 return;
10478 /*
10479 * Can't use vmx->exit_intr_info since we're not sure what
10480 * the exit reason is.
10481 */
10482 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
10483 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
10484 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
10485 /*
10486 * SDM 3: 27.7.1.2 (September 2008)
10487 * Re-set bit "block by NMI" before VM entry if vmexit caused by
10488 * a guest IRET fault.
10489 * SDM 3: 23.2.2 (September 2008)
10490 * Bit 12 is undefined in any of the following cases:
10491 * If the VM exit sets the valid bit in the IDT-vectoring
10492 * information field.
10493 * If the VM exit is due to a double fault.
10494 */
10495 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
10496 vector != DF_VECTOR && !idtv_info_valid)
10497 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
10498 GUEST_INTR_STATE_NMI);
10499 else
10500 vmx->loaded_vmcs->nmi_known_unmasked =
10501 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
10502 & GUEST_INTR_STATE_NMI);
10503 } else if (unlikely(vmx->loaded_vmcs->soft_vnmi_blocked))
10504 vmx->loaded_vmcs->vnmi_blocked_time +=
10505 ktime_to_ns(ktime_sub(ktime_get(),
10506 vmx->loaded_vmcs->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +030010507}
10508
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010509static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +030010510 u32 idt_vectoring_info,
10511 int instr_len_field,
10512 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +030010513{
Avi Kivity51aa01d2010-07-20 14:31:20 +030010514 u8 vector;
10515 int type;
10516 bool idtv_info_valid;
10517
10518 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +030010519
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010520 vcpu->arch.nmi_injected = false;
10521 kvm_clear_exception_queue(vcpu);
10522 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +030010523
10524 if (!idtv_info_valid)
10525 return;
10526
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010527 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +030010528
Avi Kivity668f6122008-07-02 09:28:55 +030010529 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
10530 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +030010531
Gleb Natapov64a7ec02009-03-30 16:03:29 +030010532 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +030010533 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010534 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +030010535 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +030010536 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +030010537 * Clear bit "block by NMI" before VM entry if a NMI
10538 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +030010539 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010540 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +030010541 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +030010542 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010543 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +030010544 /* fall through */
10545 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +030010546 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +030010547 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +030010548 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +030010549 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +030010550 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +030010551 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +030010552 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010553 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +030010554 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +030010555 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010556 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +030010557 break;
10558 default:
10559 break;
Avi Kivityf7d92382008-07-03 16:14:28 +030010560 }
Avi Kivitycf393f72008-07-01 16:20:21 +030010561}
10562
Avi Kivity83422e12010-07-20 14:43:23 +030010563static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
10564{
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010565 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +030010566 VM_EXIT_INSTRUCTION_LEN,
10567 IDT_VECTORING_ERROR_CODE);
10568}
10569
Avi Kivityb463a6f2010-07-20 15:06:17 +030010570static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
10571{
Jan Kiszka3ab66e82013-02-20 14:03:24 +010010572 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +030010573 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
10574 VM_ENTRY_INSTRUCTION_LEN,
10575 VM_ENTRY_EXCEPTION_ERROR_CODE);
10576
10577 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
10578}
10579
Gleb Natapovd7cd9792011-10-05 14:01:23 +020010580static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
10581{
10582 int i, nr_msrs;
10583 struct perf_guest_switch_msr *msrs;
10584
10585 msrs = perf_guest_get_msrs(&nr_msrs);
10586
10587 if (!msrs)
10588 return;
10589
10590 for (i = 0; i < nr_msrs; i++)
10591 if (msrs[i].host == msrs[i].guest)
10592 clear_atomic_switch_msr(vmx, msrs[i].msr);
10593 else
10594 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
Konrad Rzeszutek Wilk989e3992018-06-20 22:01:22 -040010595 msrs[i].host, false);
Gleb Natapovd7cd9792011-10-05 14:01:23 +020010596}
10597
Sean Christophersonf459a702018-08-27 15:21:11 -070010598static void vmx_arm_hv_timer(struct vcpu_vmx *vmx, u32 val)
10599{
10600 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, val);
10601 if (!vmx->loaded_vmcs->hv_timer_armed)
10602 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
10603 PIN_BASED_VMX_PREEMPTION_TIMER);
10604 vmx->loaded_vmcs->hv_timer_armed = true;
10605}
10606
10607static void vmx_update_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -070010608{
10609 struct vcpu_vmx *vmx = to_vmx(vcpu);
10610 u64 tscl;
10611 u32 delta_tsc;
10612
Sean Christophersond264ee02018-08-27 15:21:12 -070010613 if (vmx->req_immediate_exit) {
10614 vmx_arm_hv_timer(vmx, 0);
10615 return;
10616 }
10617
Sean Christophersonf459a702018-08-27 15:21:11 -070010618 if (vmx->hv_deadline_tsc != -1) {
10619 tscl = rdtsc();
10620 if (vmx->hv_deadline_tsc > tscl)
10621 /* set_hv_timer ensures the delta fits in 32-bits */
10622 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
10623 cpu_preemption_timer_multi);
10624 else
10625 delta_tsc = 0;
10626
10627 vmx_arm_hv_timer(vmx, delta_tsc);
Yunhong Jiang64672c92016-06-13 14:19:59 -070010628 return;
Sean Christophersonf459a702018-08-27 15:21:11 -070010629 }
Yunhong Jiang64672c92016-06-13 14:19:59 -070010630
Sean Christophersonf459a702018-08-27 15:21:11 -070010631 if (vmx->loaded_vmcs->hv_timer_armed)
10632 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
10633 PIN_BASED_VMX_PREEMPTION_TIMER);
10634 vmx->loaded_vmcs->hv_timer_armed = false;
Yunhong Jiang64672c92016-06-13 14:19:59 -070010635}
10636
Lai Jiangshana3b5ba42011-02-11 14:29:40 +080010637static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -080010638{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040010639 struct vcpu_vmx *vmx = to_vmx(vcpu);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010640 unsigned long cr3, cr4, evmcs_rsp;
Avi Kivity104f2262010-11-18 13:12:52 +020010641
Paolo Bonzini8a1b4392017-11-06 13:31:12 +010010642 /* Record the guest's net vcpu time for enforced NMI injections. */
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010010643 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +010010644 vmx->loaded_vmcs->soft_vnmi_blocked))
10645 vmx->loaded_vmcs->entry_time = ktime_get();
10646
Avi Kivity104f2262010-11-18 13:12:52 +020010647 /* Don't enter VMX if guest state is invalid, let the exit handler
10648 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +020010649 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +020010650 return;
10651
Radim Krčmářa7653ec2014-08-21 18:08:07 +020010652 if (vmx->ple_window_dirty) {
10653 vmx->ple_window_dirty = false;
10654 vmcs_write32(PLE_WINDOW, vmx->ple_window);
10655 }
10656
Abel Gordon012f83c2013-04-18 14:39:25 +030010657 if (vmx->nested.sync_shadow_vmcs) {
10658 copy_vmcs12_to_shadow(vmx);
10659 vmx->nested.sync_shadow_vmcs = false;
10660 }
10661
Avi Kivity104f2262010-11-18 13:12:52 +020010662 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
10663 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
10664 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
10665 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
10666
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070010667 cr3 = __get_current_cr3_fast();
Sean Christophersond7ee0392018-07-23 12:32:47 -070010668 if (unlikely(cr3 != vmx->loaded_vmcs->host_state.cr3)) {
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070010669 vmcs_writel(HOST_CR3, cr3);
Sean Christophersond7ee0392018-07-23 12:32:47 -070010670 vmx->loaded_vmcs->host_state.cr3 = cr3;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070010671 }
10672
Andy Lutomirski1e02ce42014-10-24 15:58:08 -070010673 cr4 = cr4_read_shadow();
Sean Christophersond7ee0392018-07-23 12:32:47 -070010674 if (unlikely(cr4 != vmx->loaded_vmcs->host_state.cr4)) {
Andy Lutomirskid974baa2014-10-08 09:02:13 -070010675 vmcs_writel(HOST_CR4, cr4);
Sean Christophersond7ee0392018-07-23 12:32:47 -070010676 vmx->loaded_vmcs->host_state.cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -070010677 }
10678
Avi Kivity104f2262010-11-18 13:12:52 +020010679 /* When single-stepping over STI and MOV SS, we must clear the
10680 * corresponding interruptibility bits in the guest state. Otherwise
10681 * vmentry fails as it then expects bit 14 (BS) in pending debug
10682 * exceptions being set, but that's not correct for the guest debugging
10683 * case. */
10684 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
10685 vmx_set_interrupt_shadow(vcpu, 0);
10686
Paolo Bonzinib9dd21e2017-08-23 23:14:38 +020010687 if (static_cpu_has(X86_FEATURE_PKU) &&
10688 kvm_read_cr4_bits(vcpu, X86_CR4_PKE) &&
10689 vcpu->arch.pkru != vmx->host_pkru)
10690 __write_pkru(vcpu->arch.pkru);
Xiao Guangrong1be0e612016-03-22 16:51:18 +080010691
Gleb Natapovd7cd9792011-10-05 14:01:23 +020010692 atomic_switch_perf_msrs(vmx);
10693
Sean Christophersonf459a702018-08-27 15:21:11 -070010694 vmx_update_hv_timer(vcpu);
Yunhong Jiang64672c92016-06-13 14:19:59 -070010695
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010696 /*
10697 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
10698 * it's non-zero. Since vmentry is serialising on affected CPUs, there
10699 * is no need to worry about the conditional branch over the wrmsr
10700 * being speculatively taken.
10701 */
Thomas Gleixnerccbcd262018-05-09 23:01:01 +020010702 x86_spec_ctrl_set_guest(vmx->spec_ctrl, 0);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010703
Nadav Har'Eld462b812011-05-24 15:26:10 +030010704 vmx->__launched = vmx->loaded_vmcs->launched;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010705
10706 evmcs_rsp = static_branch_unlikely(&enable_evmcs) ?
10707 (unsigned long)&current_evmcs->host_rsp : 0;
10708
Nicolai Stange5b6ccc62018-07-21 22:35:28 +020010709 if (static_branch_unlikely(&vmx_l1d_should_flush))
10710 vmx_l1d_flush(vcpu);
Paolo Bonzinic595cee2018-07-02 13:07:14 +020010711
Avi Kivity104f2262010-11-18 13:12:52 +020010712 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -080010713 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +030010714 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
10715 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
10716 "push %%" _ASM_CX " \n\t"
10717 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd492008-07-17 18:04:30 +030010718 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +030010719 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010720 /* Avoid VMWRITE when Enlightened VMCS is in use */
10721 "test %%" _ASM_SI ", %%" _ASM_SI " \n\t"
10722 "jz 2f \n\t"
10723 "mov %%" _ASM_SP ", (%%" _ASM_SI ") \n\t"
10724 "jmp 1f \n\t"
10725 "2: \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +030010726 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd492008-07-17 18:04:30 +030010727 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +030010728 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +030010729 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
10730 "mov %%cr2, %%" _ASM_DX " \n\t"
10731 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010732 "je 3f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +030010733 "mov %%" _ASM_AX", %%cr2 \n\t"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010734 "3: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -080010735 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +020010736 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -080010737 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +030010738 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
10739 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
10740 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
10741 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
10742 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
10743 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -080010744#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +020010745 "mov %c[r8](%0), %%r8 \n\t"
10746 "mov %c[r9](%0), %%r9 \n\t"
10747 "mov %c[r10](%0), %%r10 \n\t"
10748 "mov %c[r11](%0), %%r11 \n\t"
10749 "mov %c[r12](%0), %%r12 \n\t"
10750 "mov %c[r13](%0), %%r13 \n\t"
10751 "mov %c[r14](%0), %%r14 \n\t"
10752 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -080010753#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +030010754 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +030010755
Avi Kivity6aa8b732006-12-10 02:21:36 -080010756 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +030010757 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +030010758 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +030010759 "jmp 2f \n\t"
10760 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
10761 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -080010762 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +030010763 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +020010764 "pop %0 \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -080010765 "setbe %c[fail](%0)\n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +030010766 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
10767 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
10768 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
10769 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
10770 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
10771 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
10772 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -080010773#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +020010774 "mov %%r8, %c[r8](%0) \n\t"
10775 "mov %%r9, %c[r9](%0) \n\t"
10776 "mov %%r10, %c[r10](%0) \n\t"
10777 "mov %%r11, %c[r11](%0) \n\t"
10778 "mov %%r12, %c[r12](%0) \n\t"
10779 "mov %%r13, %c[r13](%0) \n\t"
10780 "mov %%r14, %c[r14](%0) \n\t"
10781 "mov %%r15, %c[r15](%0) \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -080010782 "xor %%r8d, %%r8d \n\t"
10783 "xor %%r9d, %%r9d \n\t"
10784 "xor %%r10d, %%r10d \n\t"
10785 "xor %%r11d, %%r11d \n\t"
10786 "xor %%r12d, %%r12d \n\t"
10787 "xor %%r13d, %%r13d \n\t"
10788 "xor %%r14d, %%r14d \n\t"
10789 "xor %%r15d, %%r15d \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -080010790#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +030010791 "mov %%cr2, %%" _ASM_AX " \n\t"
10792 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +030010793
Jim Mattson0cb5b302018-01-03 14:31:38 -080010794 "xor %%eax, %%eax \n\t"
10795 "xor %%ebx, %%ebx \n\t"
10796 "xor %%esi, %%esi \n\t"
10797 "xor %%edi, %%edi \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +030010798 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +030010799 ".pushsection .rodata \n\t"
10800 ".global vmx_return \n\t"
10801 "vmx_return: " _ASM_PTR " 2b \n\t"
10802 ".popsection"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010803 : : "c"(vmx), "d"((unsigned long)HOST_RSP), "S"(evmcs_rsp),
Nadav Har'Eld462b812011-05-24 15:26:10 +030010804 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +020010805 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd492008-07-17 18:04:30 +030010806 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010807 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
10808 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
10809 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
10810 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
10811 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
10812 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
10813 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -080010814#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010815 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
10816 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
10817 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
10818 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
10819 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
10820 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
10821 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
10822 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -080010823#endif
Avi Kivity40712fa2011-01-06 18:09:12 +020010824 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
10825 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +020010826 : "cc", "memory"
10827#ifdef CONFIG_X86_64
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010828 , "rax", "rbx", "rdi"
Laurent Vivierc2036302007-10-25 14:18:52 +020010829 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +030010830#else
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010831 , "eax", "ebx", "edi"
Laurent Vivierc2036302007-10-25 14:18:52 +020010832#endif
10833 );
Avi Kivity6aa8b732006-12-10 02:21:36 -080010834
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010835 /*
10836 * We do not use IBRS in the kernel. If this vCPU has used the
10837 * SPEC_CTRL MSR it may have left it on; save the value and
10838 * turn it off. This is much more efficient than blindly adding
10839 * it to the atomic save/restore list. Especially as the former
10840 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
10841 *
10842 * For non-nested case:
10843 * If the L01 MSR bitmap does not intercept the MSR, then we need to
10844 * save it.
10845 *
10846 * For nested case:
10847 * If the L02 MSR bitmap does not intercept the MSR, then we need to
10848 * save it.
10849 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +010010850 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +010010851 vmx->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010852
Thomas Gleixnerccbcd262018-05-09 23:01:01 +020010853 x86_spec_ctrl_restore_host(vmx->spec_ctrl, 0);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010854
David Woodhouse117cc7a2018-01-12 11:11:27 +000010855 /* Eliminate branch target predictions from guest mode */
10856 vmexit_fill_RSB();
10857
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010010858 /* All fields are clean at this point */
10859 if (static_branch_unlikely(&enable_evmcs))
10860 current_evmcs->hv_clean_fields |=
10861 HV_VMX_ENLIGHTENED_CLEAN_FIELD_ALL;
10862
Gleb Natapov2a7921b2012-08-12 16:12:29 +030010863 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
Wanpeng Li74c55932017-11-29 01:31:20 -080010864 if (vmx->host_debugctlmsr)
10865 update_debugctlmsr(vmx->host_debugctlmsr);
Gleb Natapov2a7921b2012-08-12 16:12:29 +030010866
Avi Kivityaa67f602012-08-01 16:48:03 +030010867#ifndef CONFIG_X86_64
10868 /*
10869 * The sysexit path does not restore ds/es, so we must set them to
10870 * a reasonable value ourselves.
10871 *
Sean Christopherson6d6095b2018-07-23 12:32:44 -070010872 * We can't defer this to vmx_prepare_switch_to_host() since that
10873 * function may be executed in interrupt context, which saves and
10874 * restore segments around it, nullifying its effect.
Avi Kivityaa67f602012-08-01 16:48:03 +030010875 */
10876 loadsegment(ds, __USER_DS);
10877 loadsegment(es, __USER_DS);
10878#endif
10879
Avi Kivity6de4f3a2009-05-31 22:58:47 +030010880 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +020010881 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +020010882 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +030010883 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +020010884 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010885 vcpu->arch.regs_dirty = 0;
10886
Gleb Natapove0b890d2013-09-25 12:51:33 +030010887 /*
Xiao Guangrong1be0e612016-03-22 16:51:18 +080010888 * eager fpu is enabled if PKEY is supported and CR4 is switched
10889 * back on host, so it is safe to read guest PKRU from current
10890 * XSAVE.
10891 */
Paolo Bonzinib9dd21e2017-08-23 23:14:38 +020010892 if (static_cpu_has(X86_FEATURE_PKU) &&
10893 kvm_read_cr4_bits(vcpu, X86_CR4_PKE)) {
10894 vcpu->arch.pkru = __read_pkru();
10895 if (vcpu->arch.pkru != vmx->host_pkru)
Xiao Guangrong1be0e612016-03-22 16:51:18 +080010896 __write_pkru(vmx->host_pkru);
Xiao Guangrong1be0e612016-03-22 16:51:18 +080010897 }
10898
Gleb Natapove0b890d2013-09-25 12:51:33 +030010899 vmx->nested.nested_run_pending = 0;
Jim Mattsonb060ca32017-09-14 16:31:42 -070010900 vmx->idt_vectoring_info = 0;
10901
10902 vmx->exit_reason = vmx->fail ? 0xdead : vmcs_read32(VM_EXIT_REASON);
10903 if (vmx->fail || (vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
10904 return;
10905
10906 vmx->loaded_vmcs->launched = 1;
10907 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Gleb Natapove0b890d2013-09-25 12:51:33 +030010908
Avi Kivity51aa01d2010-07-20 14:31:20 +030010909 vmx_complete_atomic_exit(vmx);
10910 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +030010911 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -080010912}
Josh Poimboeufc207aee2017-06-28 10:11:06 -050010913STACK_FRAME_NON_STANDARD(vmx_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -080010914
Sean Christopherson434a1e92018-03-20 12:17:18 -070010915static struct kvm *vmx_vm_alloc(void)
10916{
Marc Orrd1e5b0e2018-05-15 04:37:37 -070010917 struct kvm_vmx *kvm_vmx = vzalloc(sizeof(struct kvm_vmx));
Sean Christopherson40bbb9d2018-03-20 12:17:20 -070010918 return &kvm_vmx->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -070010919}
10920
10921static void vmx_vm_free(struct kvm *kvm)
10922{
Marc Orrd1e5b0e2018-05-15 04:37:37 -070010923 vfree(to_kvm_vmx(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -070010924}
10925
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010926static void vmx_switch_vmcs(struct kvm_vcpu *vcpu, struct loaded_vmcs *vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010927{
10928 struct vcpu_vmx *vmx = to_vmx(vcpu);
10929 int cpu;
10930
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010931 if (vmx->loaded_vmcs == vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010932 return;
10933
10934 cpu = get_cpu();
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010935 vmx_vcpu_put(vcpu);
Sean Christophersonbd9966d2018-07-23 12:32:42 -070010936 vmx->loaded_vmcs = vmcs;
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010937 vmx_vcpu_load(vcpu, cpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010938 put_cpu();
10939}
10940
Jim Mattson2f1fe812016-07-08 15:36:06 -070010941/*
10942 * Ensure that the current vmcs of the logical processor is the
10943 * vmcs01 of the vcpu before calling free_nested().
10944 */
10945static void vmx_free_vcpu_nested(struct kvm_vcpu *vcpu)
10946{
10947 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -070010948
Christoffer Dallec7660c2017-12-04 21:35:23 +010010949 vcpu_load(vcpu);
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010950 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson2f1fe812016-07-08 15:36:06 -070010951 free_nested(vmx);
10952 vcpu_put(vcpu);
10953}
10954
Avi Kivity6aa8b732006-12-10 02:21:36 -080010955static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
10956{
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010957 struct vcpu_vmx *vmx = to_vmx(vcpu);
10958
Kai Huang843e4332015-01-28 10:54:28 +080010959 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +080010960 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +080010961 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010962 leave_guest_mode(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -070010963 vmx_free_vcpu_nested(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +020010964 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010965 kfree(vmx->guest_msrs);
10966 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +100010967 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -080010968}
10969
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010970static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -080010971{
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010972 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +100010973 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Paolo Bonzini904e14f2018-01-16 16:51:18 +010010974 unsigned long *msr_bitmap;
Avi Kivity15ad7142007-07-11 18:17:21 +030010975 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -080010976
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040010977 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010978 return ERR_PTR(-ENOMEM);
10979
Wanpeng Li991e7a02015-09-16 17:30:05 +080010980 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +080010981
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010982 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
10983 if (err)
10984 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -080010985
Peter Feiner4e595162016-07-07 14:49:58 -070010986 err = -ENOMEM;
10987
10988 /*
10989 * If PML is turned on, failure on enabling PML just results in failure
10990 * of creating the vcpu, therefore we can simplify PML logic (by
10991 * avoiding dealing with cases, such as enabling PML partially on vcpus
10992 * for the guest, etc.
10993 */
10994 if (enable_pml) {
10995 vmx->pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
10996 if (!vmx->pml_pg)
10997 goto uninit_vcpu;
10998 }
10999
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040011000 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +020011001 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
11002 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +030011003
Peter Feiner4e595162016-07-07 14:49:58 -070011004 if (!vmx->guest_msrs)
11005 goto free_pml;
Ingo Molnar965b58a2007-01-05 16:36:23 -080011006
Paolo Bonzinif21f1652018-01-11 12:16:15 +010011007 err = alloc_loaded_vmcs(&vmx->vmcs01);
11008 if (err < 0)
Rusty Russellfb3f0f52007-07-27 17:16:56 +100011009 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040011010
Paolo Bonzini904e14f2018-01-16 16:51:18 +010011011 msr_bitmap = vmx->vmcs01.msr_bitmap;
11012 vmx_disable_intercept_for_msr(msr_bitmap, MSR_FS_BASE, MSR_TYPE_RW);
11013 vmx_disable_intercept_for_msr(msr_bitmap, MSR_GS_BASE, MSR_TYPE_RW);
11014 vmx_disable_intercept_for_msr(msr_bitmap, MSR_KERNEL_GS_BASE, MSR_TYPE_RW);
11015 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_CS, MSR_TYPE_RW);
11016 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_ESP, MSR_TYPE_RW);
11017 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_EIP, MSR_TYPE_RW);
11018 vmx->msr_bitmap_mode = 0;
11019
Paolo Bonzinif21f1652018-01-11 12:16:15 +010011020 vmx->loaded_vmcs = &vmx->vmcs01;
Avi Kivity15ad7142007-07-11 18:17:21 +030011021 cpu = get_cpu();
11022 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -100011023 vmx->vcpu.cpu = cpu;
David Hildenbrand12d79912017-08-24 20:51:26 +020011024 vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100011025 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +030011026 put_cpu();
Paolo Bonzini35754c92015-07-29 12:05:37 +020011027 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +020011028 err = alloc_apic_access_page(kvm);
11029 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -020011030 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +020011031 }
Ingo Molnar965b58a2007-01-05 16:36:23 -080011032
Sean Christophersone90008d2018-03-05 12:04:37 -080011033 if (enable_ept && !enable_unrestricted_guest) {
Tang Chenf51770e2014-09-16 18:41:59 +080011034 err = init_rmode_identity_map(kvm);
11035 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +020011036 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +080011037 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +080011038
Roman Kagan63aff652018-07-19 21:59:07 +030011039 if (nested)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011040 nested_vmx_setup_ctls_msrs(&vmx->nested.msrs,
11041 kvm_vcpu_apicv_active(&vmx->vcpu));
Wincy Vanb9c237b2015-02-03 23:56:30 +080011042
Wincy Van705699a2015-02-03 23:58:17 +080011043 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +030011044 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +030011045
Haozhong Zhang37e4c992016-06-22 14:59:55 +080011046 vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED;
11047
Paolo Bonzini31afb2e2017-06-06 12:57:06 +020011048 /*
11049 * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR
11050 * or POSTED_INTR_WAKEUP_VECTOR.
11051 */
11052 vmx->pi_desc.nv = POSTED_INTR_VECTOR;
11053 vmx->pi_desc.sn = 1;
11054
Rusty Russellfb3f0f52007-07-27 17:16:56 +100011055 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -080011056
Rusty Russellfb3f0f52007-07-27 17:16:56 +100011057free_vmcs:
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +080011058 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100011059free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +100011060 kfree(vmx->guest_msrs);
Peter Feiner4e595162016-07-07 14:49:58 -070011061free_pml:
11062 vmx_destroy_pml_buffer(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100011063uninit_vcpu:
11064 kvm_vcpu_uninit(&vmx->vcpu);
11065free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +080011066 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +100011067 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100011068 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -080011069}
11070
Jiri Kosinad90a7a02018-07-13 16:23:25 +020011071#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/l1tf.html for details.\n"
11072#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/l1tf.html for details.\n"
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -040011073
Wanpeng Lib31c1142018-03-12 04:53:04 -070011074static int vmx_vm_init(struct kvm *kvm)
11075{
Tianyu Lan877ad952018-07-19 08:40:23 +000011076 spin_lock_init(&to_kvm_vmx(kvm)->ept_pointer_lock);
11077
Wanpeng Lib31c1142018-03-12 04:53:04 -070011078 if (!ple_gap)
11079 kvm->arch.pause_in_guest = true;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -040011080
Jiri Kosinad90a7a02018-07-13 16:23:25 +020011081 if (boot_cpu_has(X86_BUG_L1TF) && enable_ept) {
11082 switch (l1tf_mitigation) {
11083 case L1TF_MITIGATION_OFF:
11084 case L1TF_MITIGATION_FLUSH_NOWARN:
11085 /* 'I explicitly don't care' is set */
11086 break;
11087 case L1TF_MITIGATION_FLUSH:
11088 case L1TF_MITIGATION_FLUSH_NOSMT:
11089 case L1TF_MITIGATION_FULL:
11090 /*
11091 * Warn upon starting the first VM in a potentially
11092 * insecure environment.
11093 */
11094 if (cpu_smt_control == CPU_SMT_ENABLED)
11095 pr_warn_once(L1TF_MSG_SMT);
11096 if (l1tf_vmx_mitigation == VMENTER_L1D_FLUSH_NEVER)
11097 pr_warn_once(L1TF_MSG_L1D);
11098 break;
11099 case L1TF_MITIGATION_FULL_FORCE:
11100 /* Flush is enforced */
11101 break;
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -040011102 }
Konrad Rzeszutek Wilk26acfb62018-06-20 11:29:53 -040011103 }
Wanpeng Lib31c1142018-03-12 04:53:04 -070011104 return 0;
11105}
11106
Yang, Sheng002c7f72007-07-31 14:23:01 +030011107static void __init vmx_check_processor_compat(void *rtn)
11108{
11109 struct vmcs_config vmcs_conf;
11110
11111 *(int *)rtn = 0;
11112 if (setup_vmcs_config(&vmcs_conf) < 0)
11113 *(int *)rtn = -EIO;
Paolo Bonzini13893092018-02-26 13:40:09 +010011114 nested_vmx_setup_ctls_msrs(&vmcs_conf.nested, enable_apicv);
Yang, Sheng002c7f72007-07-31 14:23:01 +030011115 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
11116 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
11117 smp_processor_id());
11118 *(int *)rtn = -EIO;
11119 }
11120}
11121
Sheng Yang4b12f0d2009-04-27 20:35:42 +080011122static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +080011123{
Xiao Guangrongb18d5432015-06-15 16:55:21 +080011124 u8 cache;
11125 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +080011126
Sheng Yang522c68c2009-04-27 20:35:43 +080011127 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +020011128 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +080011129 * 2. EPT with VT-d:
11130 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +020011131 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +080011132 * b. VT-d with snooping control feature: snooping control feature of
11133 * VT-d engine can guarantee the cache correctness. Just set it
11134 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +080011135 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +080011136 * consistent with host MTRR
11137 */
Paolo Bonzini606decd2015-10-01 13:12:47 +020011138 if (is_mmio) {
11139 cache = MTRR_TYPE_UNCACHABLE;
11140 goto exit;
11141 }
11142
11143 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +080011144 ipat = VMX_EPT_IPAT_BIT;
11145 cache = MTRR_TYPE_WRBACK;
11146 goto exit;
11147 }
11148
11149 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
11150 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +020011151 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +080011152 cache = MTRR_TYPE_WRBACK;
11153 else
11154 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +080011155 goto exit;
11156 }
11157
Xiao Guangrongff536042015-06-15 16:55:22 +080011158 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +080011159
11160exit:
11161 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +080011162}
11163
Sheng Yang17cc3932010-01-05 19:02:27 +080011164static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +020011165{
Sheng Yang878403b2010-01-05 19:02:29 +080011166 if (enable_ept && !cpu_has_vmx_ept_1g_page())
11167 return PT_DIRECTORY_LEVEL;
11168 else
11169 /* For shadow and EPT supported 1GB page */
11170 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +020011171}
11172
Xiao Guangrongfeda8052015-09-09 14:05:55 +080011173static void vmcs_set_secondary_exec_control(u32 new_ctl)
11174{
11175 /*
11176 * These bits in the secondary execution controls field
11177 * are dynamic, the others are mostly based on the hypervisor
11178 * architecture and the guest's CPUID. Do not touch the
11179 * dynamic bits.
11180 */
11181 u32 mask =
11182 SECONDARY_EXEC_SHADOW_VMCS |
11183 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Paolo Bonzini0367f202016-07-12 10:44:55 +020011184 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
11185 SECONDARY_EXEC_DESC;
Xiao Guangrongfeda8052015-09-09 14:05:55 +080011186
11187 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
11188
11189 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
11190 (new_ctl & ~mask) | (cur_ctl & mask));
11191}
11192
David Matlack8322ebb2016-11-29 18:14:09 -080011193/*
11194 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
11195 * (indicating "allowed-1") if they are supported in the guest's CPUID.
11196 */
11197static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
11198{
11199 struct vcpu_vmx *vmx = to_vmx(vcpu);
11200 struct kvm_cpuid_entry2 *entry;
11201
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011202 vmx->nested.msrs.cr0_fixed1 = 0xffffffff;
11203 vmx->nested.msrs.cr4_fixed1 = X86_CR4_PCE;
David Matlack8322ebb2016-11-29 18:14:09 -080011204
11205#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
11206 if (entry && (entry->_reg & (_cpuid_mask))) \
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011207 vmx->nested.msrs.cr4_fixed1 |= (_cr4_mask); \
David Matlack8322ebb2016-11-29 18:14:09 -080011208} while (0)
11209
11210 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
11211 cr4_fixed1_update(X86_CR4_VME, edx, bit(X86_FEATURE_VME));
11212 cr4_fixed1_update(X86_CR4_PVI, edx, bit(X86_FEATURE_VME));
11213 cr4_fixed1_update(X86_CR4_TSD, edx, bit(X86_FEATURE_TSC));
11214 cr4_fixed1_update(X86_CR4_DE, edx, bit(X86_FEATURE_DE));
11215 cr4_fixed1_update(X86_CR4_PSE, edx, bit(X86_FEATURE_PSE));
11216 cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE));
11217 cr4_fixed1_update(X86_CR4_MCE, edx, bit(X86_FEATURE_MCE));
11218 cr4_fixed1_update(X86_CR4_PGE, edx, bit(X86_FEATURE_PGE));
11219 cr4_fixed1_update(X86_CR4_OSFXSR, edx, bit(X86_FEATURE_FXSR));
11220 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, bit(X86_FEATURE_XMM));
11221 cr4_fixed1_update(X86_CR4_VMXE, ecx, bit(X86_FEATURE_VMX));
11222 cr4_fixed1_update(X86_CR4_SMXE, ecx, bit(X86_FEATURE_SMX));
11223 cr4_fixed1_update(X86_CR4_PCIDE, ecx, bit(X86_FEATURE_PCID));
11224 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, bit(X86_FEATURE_XSAVE));
11225
11226 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
11227 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, bit(X86_FEATURE_FSGSBASE));
11228 cr4_fixed1_update(X86_CR4_SMEP, ebx, bit(X86_FEATURE_SMEP));
11229 cr4_fixed1_update(X86_CR4_SMAP, ebx, bit(X86_FEATURE_SMAP));
11230 cr4_fixed1_update(X86_CR4_PKE, ecx, bit(X86_FEATURE_PKU));
Paolo Bonzinic4ad77e2017-11-13 14:23:59 +010011231 cr4_fixed1_update(X86_CR4_UMIP, ecx, bit(X86_FEATURE_UMIP));
David Matlack8322ebb2016-11-29 18:14:09 -080011232
11233#undef cr4_fixed1_update
11234}
11235
Liran Alon5f76f6f2018-09-14 03:25:52 +030011236static void nested_vmx_entry_exit_ctls_update(struct kvm_vcpu *vcpu)
11237{
11238 struct vcpu_vmx *vmx = to_vmx(vcpu);
11239
11240 if (kvm_mpx_supported()) {
11241 bool mpx_enabled = guest_cpuid_has(vcpu, X86_FEATURE_MPX);
11242
11243 if (mpx_enabled) {
11244 vmx->nested.msrs.entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
11245 vmx->nested.msrs.exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
11246 } else {
11247 vmx->nested.msrs.entry_ctls_high &= ~VM_ENTRY_LOAD_BNDCFGS;
11248 vmx->nested.msrs.exit_ctls_high &= ~VM_EXIT_CLEAR_BNDCFGS;
11249 }
11250 }
11251}
11252
Sheng Yang0e851882009-12-18 16:48:46 +080011253static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
11254{
Sheng Yang4e47c7a2009-12-18 16:48:47 +080011255 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +080011256
Paolo Bonzini80154d72017-08-24 13:55:35 +020011257 if (cpu_has_secondary_exec_ctrls()) {
11258 vmx_compute_secondary_exec_control(vmx);
11259 vmcs_set_secondary_exec_control(vmx->secondary_exec_control);
Sheng Yang4e47c7a2009-12-18 16:48:47 +080011260 }
Mao, Junjiead756a12012-07-02 01:18:48 +000011261
Haozhong Zhang37e4c992016-06-22 14:59:55 +080011262 if (nested_vmx_allowed(vcpu))
11263 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
11264 FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
11265 else
11266 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
11267 ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
David Matlack8322ebb2016-11-29 18:14:09 -080011268
Liran Alon5f76f6f2018-09-14 03:25:52 +030011269 if (nested_vmx_allowed(vcpu)) {
David Matlack8322ebb2016-11-29 18:14:09 -080011270 nested_vmx_cr_fixed1_bits_update(vcpu);
Liran Alon5f76f6f2018-09-14 03:25:52 +030011271 nested_vmx_entry_exit_ctls_update(vcpu);
11272 }
Sheng Yang0e851882009-12-18 16:48:46 +080011273}
11274
Joerg Roedeld4330ef2010-04-22 12:33:11 +020011275static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
11276{
Nadav Har'El7b8050f2011-05-25 23:16:10 +030011277 if (func == 1 && nested)
11278 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +020011279}
11280
Yang Zhang25d92082013-08-06 12:00:32 +030011281static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
11282 struct x86_exception *fault)
11283{
Jan Kiszka533558b2014-01-04 18:47:20 +010011284 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Bandan Dasc5f983f2017-05-05 15:25:14 -040011285 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +010011286 u32 exit_reason;
Bandan Dasc5f983f2017-05-05 15:25:14 -040011287 unsigned long exit_qualification = vcpu->arch.exit_qualification;
Yang Zhang25d92082013-08-06 12:00:32 +030011288
Bandan Dasc5f983f2017-05-05 15:25:14 -040011289 if (vmx->nested.pml_full) {
11290 exit_reason = EXIT_REASON_PML_FULL;
11291 vmx->nested.pml_full = false;
11292 exit_qualification &= INTR_INFO_UNBLOCK_NMI;
11293 } else if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +010011294 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +030011295 else
Jan Kiszka533558b2014-01-04 18:47:20 +010011296 exit_reason = EXIT_REASON_EPT_VIOLATION;
Bandan Dasc5f983f2017-05-05 15:25:14 -040011297
11298 nested_vmx_vmexit(vcpu, exit_reason, 0, exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +030011299 vmcs12->guest_physical_address = fault->address;
11300}
11301
Peter Feiner995f00a2017-06-30 17:26:32 -070011302static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu)
11303{
David Hildenbrandbb97a012017-08-10 23:15:28 +020011304 return nested_ept_get_cr3(vcpu) & VMX_EPTP_AD_ENABLE_BIT;
Peter Feiner995f00a2017-06-30 17:26:32 -070011305}
11306
Nadav Har'El155a97a2013-08-05 11:07:16 +030011307/* Callbacks for nested_ept_init_mmu_context: */
11308
11309static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
11310{
11311 /* return the page table to be shadowed - in our case, EPT12 */
11312 return get_vmcs12(vcpu)->ept_pointer;
11313}
11314
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020011315static int nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +030011316{
Paolo Bonziniad896af2013-10-02 16:56:14 +020011317 WARN_ON(mmu_is_nested(vcpu));
David Hildenbranda057e0e2017-08-10 23:36:54 +020011318 if (!valid_ept_address(vcpu, nested_ept_get_cr3(vcpu)))
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020011319 return 1;
11320
Paolo Bonziniad896af2013-10-02 16:56:14 +020011321 kvm_init_shadow_ept_mmu(vcpu,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011322 to_vmx(vcpu)->nested.msrs.ept_caps &
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020011323 VMX_EPT_EXECUTE_ONLY_BIT,
Junaid Shahid50c28f22018-06-27 14:59:11 -070011324 nested_ept_ad_enabled(vcpu),
11325 nested_ept_get_cr3(vcpu));
Nadav Har'El155a97a2013-08-05 11:07:16 +030011326 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
11327 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
11328 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
11329
11330 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020011331 return 0;
Nadav Har'El155a97a2013-08-05 11:07:16 +030011332}
11333
11334static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
11335{
11336 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
11337}
11338
Eugene Korenevsky19d5f102014-12-16 22:35:53 +030011339static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
11340 u16 error_code)
11341{
11342 bool inequality, bit;
11343
11344 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
11345 inequality =
11346 (error_code & vmcs12->page_fault_error_code_mask) !=
11347 vmcs12->page_fault_error_code_match;
11348 return inequality ^ bit;
11349}
11350
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030011351static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
11352 struct x86_exception *fault)
11353{
11354 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
11355
11356 WARN_ON(!is_guest_mode(vcpu));
11357
Wanpeng Li305d0ab2017-09-28 18:16:44 -070011358 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code) &&
11359 !to_vmx(vcpu)->nested.nested_run_pending) {
Paolo Bonzinib96fb432017-07-27 12:29:32 +020011360 vmcs12->vm_exit_intr_error_code = fault->error_code;
11361 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
11362 PF_VECTOR | INTR_TYPE_HARD_EXCEPTION |
11363 INTR_INFO_DELIVER_CODE_MASK | INTR_INFO_VALID_MASK,
11364 fault->address);
Paolo Bonzini7313c692017-07-27 10:31:25 +020011365 } else {
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030011366 kvm_inject_page_fault(vcpu, fault);
Paolo Bonzini7313c692017-07-27 10:31:25 +020011367 }
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030011368}
11369
Paolo Bonzinic9923842017-12-13 14:16:30 +010011370static inline bool nested_vmx_prepare_msr_bitmap(struct kvm_vcpu *vcpu,
11371 struct vmcs12 *vmcs12);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011372
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020011373static void nested_get_vmcs12_pages(struct kvm_vcpu *vcpu)
Wanpeng Lia2bcba52014-08-21 19:46:49 +080011374{
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020011375 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +080011376 struct vcpu_vmx *vmx = to_vmx(vcpu);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011377 struct page *page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011378 u64 hpa;
Wanpeng Lia2bcba52014-08-21 19:46:49 +080011379
11380 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Wanpeng Lia2bcba52014-08-21 19:46:49 +080011381 /*
11382 * Translate L1 physical address to host physical
11383 * address for vmcs02. Keep the page pinned, so this
11384 * physical address remains valid. We keep a reference
11385 * to it so we can release it later.
11386 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011387 if (vmx->nested.apic_access_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +020011388 kvm_release_page_dirty(vmx->nested.apic_access_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011389 vmx->nested.apic_access_page = NULL;
11390 }
11391 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->apic_access_addr);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011392 /*
11393 * If translation failed, no matter: This feature asks
11394 * to exit when accessing the given address, and if it
11395 * can never be accessed, this feature won't do
11396 * anything anyway.
11397 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011398 if (!is_error_page(page)) {
11399 vmx->nested.apic_access_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011400 hpa = page_to_phys(vmx->nested.apic_access_page);
11401 vmcs_write64(APIC_ACCESS_ADDR, hpa);
11402 } else {
11403 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
11404 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
11405 }
Wanpeng Lia2bcba52014-08-21 19:46:49 +080011406 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011407
11408 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011409 if (vmx->nested.virtual_apic_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +020011410 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011411 vmx->nested.virtual_apic_page = NULL;
11412 }
11413 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->virtual_apic_page_addr);
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011414
11415 /*
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011416 * If translation failed, VM entry will fail because
11417 * prepare_vmcs02 set VIRTUAL_APIC_PAGE_ADDR to -1ull.
11418 * Failing the vm entry is _not_ what the processor
11419 * does but it's basically the only possibility we
11420 * have. We could still enter the guest if CR8 load
11421 * exits are enabled, CR8 store exits are enabled, and
11422 * virtualize APIC access is disabled; in this case
11423 * the processor would never use the TPR shadow and we
11424 * could simply clear the bit from the execution
11425 * control. But such a configuration is useless, so
11426 * let's keep the code simple.
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011427 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011428 if (!is_error_page(page)) {
11429 vmx->nested.virtual_apic_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011430 hpa = page_to_phys(vmx->nested.virtual_apic_page);
11431 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, hpa);
11432 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011433 }
11434
Wincy Van705699a2015-02-03 23:58:17 +080011435 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +080011436 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
11437 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011438 kvm_release_page_dirty(vmx->nested.pi_desc_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011439 vmx->nested.pi_desc_page = NULL;
Wincy Van705699a2015-02-03 23:58:17 +080011440 }
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011441 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->posted_intr_desc_addr);
11442 if (is_error_page(page))
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011443 return;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011444 vmx->nested.pi_desc_page = page;
11445 vmx->nested.pi_desc = kmap(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +080011446 vmx->nested.pi_desc =
11447 (struct pi_desc *)((void *)vmx->nested.pi_desc +
11448 (unsigned long)(vmcs12->posted_intr_desc_addr &
11449 (PAGE_SIZE - 1)));
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011450 vmcs_write64(POSTED_INTR_DESC_ADDR,
11451 page_to_phys(vmx->nested.pi_desc_page) +
11452 (unsigned long)(vmcs12->posted_intr_desc_addr &
11453 (PAGE_SIZE - 1)));
Wincy Van705699a2015-02-03 23:58:17 +080011454 }
Linus Torvaldsd4667ca2018-02-14 17:02:15 -080011455 if (nested_vmx_prepare_msr_bitmap(vcpu, vmcs12))
KarimAllah Ahmed3712caeb2018-02-10 23:39:26 +000011456 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
11457 CPU_BASED_USE_MSR_BITMAPS);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011458 else
11459 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
11460 CPU_BASED_USE_MSR_BITMAPS);
Wanpeng Lia2bcba52014-08-21 19:46:49 +080011461}
11462
Jan Kiszkaf4124502014-03-07 20:03:13 +010011463static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
11464{
11465 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
11466 struct vcpu_vmx *vmx = to_vmx(vcpu);
11467
Sean Christopherson4c008122018-08-27 15:21:10 -070011468 /*
11469 * A timer value of zero is architecturally guaranteed to cause
11470 * a VMExit prior to executing any instructions in the guest.
11471 */
11472 if (preemption_timeout == 0) {
Jan Kiszkaf4124502014-03-07 20:03:13 +010011473 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
11474 return;
11475 }
11476
Sean Christopherson4c008122018-08-27 15:21:10 -070011477 if (vcpu->arch.virtual_tsc_khz == 0)
11478 return;
11479
Jan Kiszkaf4124502014-03-07 20:03:13 +010011480 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
11481 preemption_timeout *= 1000000;
11482 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
11483 hrtimer_start(&vmx->nested.preemption_timer,
11484 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
11485}
11486
Jim Mattson56a20512017-07-06 16:33:06 -070011487static int nested_vmx_check_io_bitmap_controls(struct kvm_vcpu *vcpu,
11488 struct vmcs12 *vmcs12)
11489{
11490 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
11491 return 0;
11492
11493 if (!page_address_valid(vcpu, vmcs12->io_bitmap_a) ||
11494 !page_address_valid(vcpu, vmcs12->io_bitmap_b))
11495 return -EINVAL;
11496
11497 return 0;
11498}
11499
Wincy Van3af18d92015-02-03 23:49:31 +080011500static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
11501 struct vmcs12 *vmcs12)
11502{
Wincy Van3af18d92015-02-03 23:49:31 +080011503 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
11504 return 0;
11505
Jim Mattson5fa99cb2017-07-06 16:33:07 -070011506 if (!page_address_valid(vcpu, vmcs12->msr_bitmap))
Wincy Van3af18d92015-02-03 23:49:31 +080011507 return -EINVAL;
11508
11509 return 0;
11510}
11511
Jim Mattson712b12d2017-08-24 13:24:47 -070011512static int nested_vmx_check_tpr_shadow_controls(struct kvm_vcpu *vcpu,
11513 struct vmcs12 *vmcs12)
11514{
11515 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
11516 return 0;
11517
11518 if (!page_address_valid(vcpu, vmcs12->virtual_apic_page_addr))
11519 return -EINVAL;
11520
11521 return 0;
11522}
11523
Wincy Van3af18d92015-02-03 23:49:31 +080011524/*
11525 * Merge L0's and L1's MSR bitmap, return false to indicate that
11526 * we do not use the hardware.
11527 */
Paolo Bonzinic9923842017-12-13 14:16:30 +010011528static inline bool nested_vmx_prepare_msr_bitmap(struct kvm_vcpu *vcpu,
11529 struct vmcs12 *vmcs12)
Wincy Van3af18d92015-02-03 23:49:31 +080011530{
Wincy Van82f0dd42015-02-03 23:57:18 +080011531 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +080011532 struct page *page;
Radim Krčmářd048c092016-08-08 20:16:22 +020011533 unsigned long *msr_bitmap_l1;
Paolo Bonzini904e14f2018-01-16 16:51:18 +010011534 unsigned long *msr_bitmap_l0 = to_vmx(vcpu)->nested.vmcs02.msr_bitmap;
Ashok Raj15d45072018-02-01 22:59:43 +010011535 /*
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010011536 * pred_cmd & spec_ctrl are trying to verify two things:
Ashok Raj15d45072018-02-01 22:59:43 +010011537 *
11538 * 1. L0 gave a permission to L1 to actually passthrough the MSR. This
11539 * ensures that we do not accidentally generate an L02 MSR bitmap
11540 * from the L12 MSR bitmap that is too permissive.
11541 * 2. That L1 or L2s have actually used the MSR. This avoids
11542 * unnecessarily merging of the bitmap if the MSR is unused. This
11543 * works properly because we only update the L01 MSR bitmap lazily.
11544 * So even if L0 should pass L1 these MSRs, the L01 bitmap is only
11545 * updated to reflect this when L1 (or its L2s) actually write to
11546 * the MSR.
11547 */
KarimAllah Ahmed206587a2018-02-10 23:39:25 +000011548 bool pred_cmd = !msr_write_intercepted_l01(vcpu, MSR_IA32_PRED_CMD);
11549 bool spec_ctrl = !msr_write_intercepted_l01(vcpu, MSR_IA32_SPEC_CTRL);
Wincy Vanf2b93282015-02-03 23:56:03 +080011550
Paolo Bonzinic9923842017-12-13 14:16:30 +010011551 /* Nothing to do if the MSR bitmap is not in use. */
11552 if (!cpu_has_vmx_msr_bitmap() ||
11553 !nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
11554 return false;
11555
Ashok Raj15d45072018-02-01 22:59:43 +010011556 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010011557 !pred_cmd && !spec_ctrl)
Wincy Vanf2b93282015-02-03 23:56:03 +080011558 return false;
11559
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011560 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->msr_bitmap);
11561 if (is_error_page(page))
Wincy Vanf2b93282015-02-03 23:56:03 +080011562 return false;
Paolo Bonzinic9923842017-12-13 14:16:30 +010011563
Radim Krčmářd048c092016-08-08 20:16:22 +020011564 msr_bitmap_l1 = (unsigned long *)kmap(page);
Paolo Bonzinic9923842017-12-13 14:16:30 +010011565 if (nested_cpu_has_apic_reg_virt(vmcs12)) {
11566 /*
11567 * L0 need not intercept reads for MSRs between 0x800 and 0x8ff, it
11568 * just lets the processor take the value from the virtual-APIC page;
11569 * take those 256 bits directly from the L1 bitmap.
11570 */
11571 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
11572 unsigned word = msr / BITS_PER_LONG;
11573 msr_bitmap_l0[word] = msr_bitmap_l1[word];
11574 msr_bitmap_l0[word + (0x800 / sizeof(long))] = ~0;
Wincy Van608406e2015-02-03 23:57:51 +080011575 }
Paolo Bonzinic9923842017-12-13 14:16:30 +010011576 } else {
11577 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
11578 unsigned word = msr / BITS_PER_LONG;
11579 msr_bitmap_l0[word] = ~0;
11580 msr_bitmap_l0[word + (0x800 / sizeof(long))] = ~0;
11581 }
11582 }
11583
11584 nested_vmx_disable_intercept_for_msr(
11585 msr_bitmap_l1, msr_bitmap_l0,
Paolo Bonzinid7231e72017-12-21 00:47:55 +010011586 X2APIC_MSR(APIC_TASKPRI),
Paolo Bonzinic9923842017-12-13 14:16:30 +010011587 MSR_TYPE_W);
11588
11589 if (nested_cpu_has_vid(vmcs12)) {
11590 nested_vmx_disable_intercept_for_msr(
11591 msr_bitmap_l1, msr_bitmap_l0,
Paolo Bonzinid7231e72017-12-21 00:47:55 +010011592 X2APIC_MSR(APIC_EOI),
Paolo Bonzinic9923842017-12-13 14:16:30 +010011593 MSR_TYPE_W);
11594 nested_vmx_disable_intercept_for_msr(
11595 msr_bitmap_l1, msr_bitmap_l0,
Paolo Bonzinid7231e72017-12-21 00:47:55 +010011596 X2APIC_MSR(APIC_SELF_IPI),
Paolo Bonzinic9923842017-12-13 14:16:30 +010011597 MSR_TYPE_W);
Wincy Van82f0dd42015-02-03 23:57:18 +080011598 }
Ashok Raj15d45072018-02-01 22:59:43 +010011599
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010011600 if (spec_ctrl)
11601 nested_vmx_disable_intercept_for_msr(
11602 msr_bitmap_l1, msr_bitmap_l0,
11603 MSR_IA32_SPEC_CTRL,
11604 MSR_TYPE_R | MSR_TYPE_W);
11605
Ashok Raj15d45072018-02-01 22:59:43 +010011606 if (pred_cmd)
11607 nested_vmx_disable_intercept_for_msr(
11608 msr_bitmap_l1, msr_bitmap_l0,
11609 MSR_IA32_PRED_CMD,
11610 MSR_TYPE_W);
11611
Wincy Vanf2b93282015-02-03 23:56:03 +080011612 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011613 kvm_release_page_clean(page);
Wincy Vanf2b93282015-02-03 23:56:03 +080011614
11615 return true;
11616}
11617
Liran Alon61ada742018-06-23 02:35:08 +030011618static void nested_cache_shadow_vmcs12(struct kvm_vcpu *vcpu,
11619 struct vmcs12 *vmcs12)
11620{
11621 struct vmcs12 *shadow;
11622 struct page *page;
11623
11624 if (!nested_cpu_has_shadow_vmcs(vmcs12) ||
11625 vmcs12->vmcs_link_pointer == -1ull)
11626 return;
11627
11628 shadow = get_shadow_vmcs12(vcpu);
11629 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->vmcs_link_pointer);
11630
11631 memcpy(shadow, kmap(page), VMCS12_SIZE);
11632
11633 kunmap(page);
11634 kvm_release_page_clean(page);
11635}
11636
11637static void nested_flush_cached_shadow_vmcs12(struct kvm_vcpu *vcpu,
11638 struct vmcs12 *vmcs12)
11639{
11640 struct vcpu_vmx *vmx = to_vmx(vcpu);
11641
11642 if (!nested_cpu_has_shadow_vmcs(vmcs12) ||
11643 vmcs12->vmcs_link_pointer == -1ull)
11644 return;
11645
11646 kvm_write_guest(vmx->vcpu.kvm, vmcs12->vmcs_link_pointer,
11647 get_shadow_vmcs12(vcpu), VMCS12_SIZE);
11648}
11649
Krish Sadhukhanf0f4cf52018-04-11 01:10:16 -040011650static int nested_vmx_check_apic_access_controls(struct kvm_vcpu *vcpu,
11651 struct vmcs12 *vmcs12)
11652{
11653 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) &&
11654 !page_address_valid(vcpu, vmcs12->apic_access_addr))
11655 return -EINVAL;
11656 else
11657 return 0;
11658}
11659
Wincy Vanf2b93282015-02-03 23:56:03 +080011660static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
11661 struct vmcs12 *vmcs12)
11662{
Wincy Van82f0dd42015-02-03 23:57:18 +080011663 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +080011664 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +080011665 !nested_cpu_has_vid(vmcs12) &&
11666 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +080011667 return 0;
11668
11669 /*
11670 * If virtualize x2apic mode is enabled,
11671 * virtualize apic access must be disabled.
11672 */
Wincy Van82f0dd42015-02-03 23:57:18 +080011673 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
11674 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +080011675 return -EINVAL;
11676
Wincy Van608406e2015-02-03 23:57:51 +080011677 /*
11678 * If virtual interrupt delivery is enabled,
11679 * we must exit on external interrupts.
11680 */
11681 if (nested_cpu_has_vid(vmcs12) &&
11682 !nested_exit_on_intr(vcpu))
11683 return -EINVAL;
11684
Wincy Van705699a2015-02-03 23:58:17 +080011685 /*
11686 * bits 15:8 should be zero in posted_intr_nv,
11687 * the descriptor address has been already checked
11688 * in nested_get_vmcs12_pages.
Krish Sadhukhan6de84e52018-08-23 20:03:03 -040011689 *
11690 * bits 5:0 of posted_intr_desc_addr should be zero.
Wincy Van705699a2015-02-03 23:58:17 +080011691 */
11692 if (nested_cpu_has_posted_intr(vmcs12) &&
11693 (!nested_cpu_has_vid(vmcs12) ||
11694 !nested_exit_intr_ack_set(vcpu) ||
Krish Sadhukhan6de84e52018-08-23 20:03:03 -040011695 (vmcs12->posted_intr_nv & 0xff00) ||
11696 (vmcs12->posted_intr_desc_addr & 0x3f) ||
11697 (!page_address_valid(vcpu, vmcs12->posted_intr_desc_addr))))
Wincy Van705699a2015-02-03 23:58:17 +080011698 return -EINVAL;
11699
Wincy Vanf2b93282015-02-03 23:56:03 +080011700 /* tpr shadow is needed by all apicv features. */
11701 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
11702 return -EINVAL;
11703
11704 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +080011705}
11706
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011707static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
11708 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011709 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +030011710{
Liran Alone2536742018-06-23 02:35:02 +030011711 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011712 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011713 u64 count, addr;
11714
Liran Alone2536742018-06-23 02:35:02 +030011715 if (vmcs12_read_any(vmcs12, count_field, &count) ||
11716 vmcs12_read_any(vmcs12, addr_field, &addr)) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011717 WARN_ON(1);
11718 return -EINVAL;
11719 }
11720 if (count == 0)
11721 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011722 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011723 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
11724 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011725 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011726 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
11727 addr_field, maxphyaddr, count, addr);
11728 return -EINVAL;
11729 }
11730 return 0;
11731}
11732
11733static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
11734 struct vmcs12 *vmcs12)
11735{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011736 if (vmcs12->vm_exit_msr_load_count == 0 &&
11737 vmcs12->vm_exit_msr_store_count == 0 &&
11738 vmcs12->vm_entry_msr_load_count == 0)
11739 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011740 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011741 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011742 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011743 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011744 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030011745 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +030011746 return -EINVAL;
11747 return 0;
11748}
11749
Bandan Dasc5f983f2017-05-05 15:25:14 -040011750static int nested_vmx_check_pml_controls(struct kvm_vcpu *vcpu,
11751 struct vmcs12 *vmcs12)
11752{
11753 u64 address = vmcs12->pml_address;
11754 int maxphyaddr = cpuid_maxphyaddr(vcpu);
11755
11756 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML)) {
11757 if (!nested_cpu_has_ept(vmcs12) ||
11758 !IS_ALIGNED(address, 4096) ||
11759 address >> maxphyaddr)
11760 return -EINVAL;
11761 }
11762
11763 return 0;
11764}
11765
Liran Alona8a7c022018-06-23 02:35:06 +030011766static int nested_vmx_check_shadow_vmcs_controls(struct kvm_vcpu *vcpu,
11767 struct vmcs12 *vmcs12)
11768{
11769 if (!nested_cpu_has_shadow_vmcs(vmcs12))
11770 return 0;
11771
11772 if (!page_address_valid(vcpu, vmcs12->vmread_bitmap) ||
11773 !page_address_valid(vcpu, vmcs12->vmwrite_bitmap))
11774 return -EINVAL;
11775
11776 return 0;
11777}
11778
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011779static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
11780 struct vmx_msr_entry *e)
11781{
11782 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +020011783 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011784 return -EINVAL;
11785 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
11786 e->index == MSR_IA32_UCODE_REV)
11787 return -EINVAL;
11788 if (e->reserved != 0)
11789 return -EINVAL;
11790 return 0;
11791}
11792
11793static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
11794 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +030011795{
11796 if (e->index == MSR_FS_BASE ||
11797 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011798 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
11799 nested_vmx_msr_check_common(vcpu, e))
11800 return -EINVAL;
11801 return 0;
11802}
11803
11804static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
11805 struct vmx_msr_entry *e)
11806{
11807 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
11808 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +030011809 return -EINVAL;
11810 return 0;
11811}
11812
11813/*
11814 * Load guest's/host's msr at nested entry/exit.
11815 * return 0 for success, entry index for failure.
11816 */
11817static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
11818{
11819 u32 i;
11820 struct vmx_msr_entry e;
11821 struct msr_data msr;
11822
11823 msr.host_initiated = false;
11824 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020011825 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
11826 &e, sizeof(e))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011827 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011828 "%s cannot read MSR entry (%u, 0x%08llx)\n",
11829 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030011830 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011831 }
11832 if (nested_vmx_load_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011833 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011834 "%s check failed (%u, 0x%x, 0x%x)\n",
11835 __func__, i, e.index, e.reserved);
11836 goto fail;
11837 }
Wincy Vanff651cb2014-12-11 08:52:58 +030011838 msr.index = e.index;
11839 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011840 if (kvm_set_msr(vcpu, &msr)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011841 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011842 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
11843 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +030011844 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011845 }
Wincy Vanff651cb2014-12-11 08:52:58 +030011846 }
11847 return 0;
11848fail:
11849 return i + 1;
11850}
11851
11852static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
11853{
11854 u32 i;
11855 struct vmx_msr_entry e;
11856
11857 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +020011858 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020011859 if (kvm_vcpu_read_guest(vcpu,
11860 gpa + i * sizeof(e),
11861 &e, 2 * sizeof(u32))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011862 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011863 "%s cannot read MSR entry (%u, 0x%08llx)\n",
11864 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030011865 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011866 }
11867 if (nested_vmx_store_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011868 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011869 "%s check failed (%u, 0x%x, 0x%x)\n",
11870 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +030011871 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011872 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +020011873 msr_info.host_initiated = false;
11874 msr_info.index = e.index;
11875 if (kvm_get_msr(vcpu, &msr_info)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011876 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011877 "%s cannot read MSR (%u, 0x%x)\n",
11878 __func__, i, e.index);
11879 return -EINVAL;
11880 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020011881 if (kvm_vcpu_write_guest(vcpu,
11882 gpa + i * sizeof(e) +
11883 offsetof(struct vmx_msr_entry, value),
11884 &msr_info.data, sizeof(msr_info.data))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020011885 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011886 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +020011887 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030011888 return -EINVAL;
11889 }
Wincy Vanff651cb2014-12-11 08:52:58 +030011890 }
11891 return 0;
11892}
11893
Ladi Prosek1dc35da2016-11-30 16:03:11 +010011894static bool nested_cr3_valid(struct kvm_vcpu *vcpu, unsigned long val)
11895{
11896 unsigned long invalid_mask;
11897
11898 invalid_mask = (~0ULL) << cpuid_maxphyaddr(vcpu);
11899 return (val & invalid_mask) == 0;
11900}
11901
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011902/*
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011903 * Load guest's/host's cr3 at nested entry/exit. nested_ept is true if we are
11904 * emulating VM entry into a guest with EPT enabled.
11905 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
11906 * is assigned to entry_failure_code on failure.
11907 */
11908static int nested_vmx_load_cr3(struct kvm_vcpu *vcpu, unsigned long cr3, bool nested_ept,
Jim Mattsonca0bde22016-11-30 12:03:46 -080011909 u32 *entry_failure_code)
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011910{
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011911 if (cr3 != kvm_read_cr3(vcpu) || (!nested_ept && pdptrs_changed(vcpu))) {
Ladi Prosek1dc35da2016-11-30 16:03:11 +010011912 if (!nested_cr3_valid(vcpu, cr3)) {
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011913 *entry_failure_code = ENTRY_FAIL_DEFAULT;
11914 return 1;
11915 }
11916
11917 /*
11918 * If PAE paging and EPT are both on, CR3 is not used by the CPU and
11919 * must not be dereferenced.
11920 */
11921 if (!is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu) &&
11922 !nested_ept) {
11923 if (!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) {
11924 *entry_failure_code = ENTRY_FAIL_PDPTE;
11925 return 1;
11926 }
11927 }
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011928 }
11929
Junaid Shahid50c28f22018-06-27 14:59:11 -070011930 if (!nested_ept)
Junaid Shahidade61e22018-06-27 14:59:15 -070011931 kvm_mmu_new_cr3(vcpu, cr3, false);
Junaid Shahid50c28f22018-06-27 14:59:11 -070011932
11933 vcpu->arch.cr3 = cr3;
11934 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
11935
11936 kvm_init_mmu(vcpu, false);
11937
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011938 return 0;
11939}
11940
Jim Mattson6514dc32018-04-26 16:09:12 -070011941static void prepare_vmcs02_full(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
Paolo Bonzini74a497f2017-12-20 13:55:39 +010011942{
Paolo Bonzini8665c3f2017-12-20 13:56:53 +010011943 struct vcpu_vmx *vmx = to_vmx(vcpu);
11944
11945 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
11946 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
11947 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
11948 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
11949 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
11950 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
11951 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
11952 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
11953 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
11954 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
11955 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
11956 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
11957 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
11958 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
11959 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
11960 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
11961 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
11962 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
11963 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
11964 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
11965 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
11966 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
11967 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
11968 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
11969 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
11970 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
11971 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
11972 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
11973 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
11974 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
11975 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
Paolo Bonzini25a2e4f2017-12-20 14:05:21 +010011976
11977 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
11978 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
11979 vmcs12->guest_pending_dbg_exceptions);
11980 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
11981 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
11982
11983 if (nested_cpu_has_xsaves(vmcs12))
11984 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
11985 vmcs_write64(VMCS_LINK_POINTER, -1ull);
11986
11987 if (cpu_has_vmx_posted_intr())
11988 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_NESTED_VECTOR);
11989
11990 /*
11991 * Whether page-faults are trapped is determined by a combination of
11992 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
11993 * If enable_ept, L0 doesn't care about page faults and we should
11994 * set all of these to L1's desires. However, if !enable_ept, L0 does
11995 * care about (at least some) page faults, and because it is not easy
11996 * (if at all possible?) to merge L0 and L1's desires, we simply ask
11997 * to exit on each and every L2 page fault. This is done by setting
11998 * MASK=MATCH=0 and (see below) EB.PF=1.
11999 * Note that below we don't need special code to set EB.PF beyond the
12000 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
12001 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
12002 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
12003 */
12004 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
12005 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
12006 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
12007 enable_ept ? vmcs12->page_fault_error_code_match : 0);
12008
12009 /* All VMFUNCs are currently emulated through L0 vmexits. */
12010 if (cpu_has_vmx_vmfunc())
12011 vmcs_write64(VM_FUNCTION_CONTROL, 0);
12012
12013 if (cpu_has_vmx_apicv()) {
12014 vmcs_write64(EOI_EXIT_BITMAP0, vmcs12->eoi_exit_bitmap0);
12015 vmcs_write64(EOI_EXIT_BITMAP1, vmcs12->eoi_exit_bitmap1);
12016 vmcs_write64(EOI_EXIT_BITMAP2, vmcs12->eoi_exit_bitmap2);
12017 vmcs_write64(EOI_EXIT_BITMAP3, vmcs12->eoi_exit_bitmap3);
12018 }
12019
12020 /*
12021 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
12022 * Some constant fields are set here by vmx_set_constant_host_state().
12023 * Other fields are different per CPU, and will be set later when
Sean Christopherson6d6095b2018-07-23 12:32:44 -070012024 * vmx_vcpu_load() is called, and when vmx_prepare_switch_to_guest()
12025 * is called.
Paolo Bonzini25a2e4f2017-12-20 14:05:21 +010012026 */
12027 vmx_set_constant_host_state(vmx);
12028
12029 /*
12030 * Set the MSR load/store lists to match L0's settings.
12031 */
12032 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -040012033 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.host.nr);
12034 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host.val));
12035 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.guest.nr);
12036 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest.val));
Paolo Bonzini25a2e4f2017-12-20 14:05:21 +010012037
12038 set_cr4_guest_host_mask(vmx);
12039
Liran Alon62cf9bd812018-09-14 03:25:54 +030012040 if (kvm_mpx_supported()) {
12041 if (vmx->nested.nested_run_pending &&
12042 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS))
12043 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
12044 else
12045 vmcs_write64(GUEST_BNDCFGS, vmx->nested.vmcs01_guest_bndcfgs);
12046 }
Paolo Bonzini25a2e4f2017-12-20 14:05:21 +010012047
12048 if (enable_vpid) {
12049 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02)
12050 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
12051 else
12052 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
12053 }
12054
12055 /*
12056 * L1 may access the L2's PDPTR, so save them to construct vmcs12
12057 */
12058 if (enable_ept) {
12059 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
12060 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
12061 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
12062 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
12063 }
Radim Krčmář80132f42018-02-02 18:26:58 +010012064
12065 if (cpu_has_vmx_msr_bitmap())
12066 vmcs_write64(MSR_BITMAP, __pa(vmx->nested.vmcs02.msr_bitmap));
Paolo Bonzini74a497f2017-12-20 13:55:39 +010012067}
12068
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012069/*
12070 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
12071 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +080012072 * with L0's requirements for its guest (a.k.a. vmcs01), so we can run the L2
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012073 * guest in a way that will both be appropriate to L1's requests, and our
12074 * needs. In addition to modifying the active vmcs (which is vmcs02), this
12075 * function also has additional necessary side-effects, like setting various
12076 * vcpu->arch fields.
Ladi Prosekee146c12016-11-30 16:03:09 +010012077 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
12078 * is assigned to entry_failure_code on failure.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012079 */
Ladi Prosekee146c12016-11-30 16:03:09 +010012080static int prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
Jim Mattson6514dc32018-04-26 16:09:12 -070012081 u32 *entry_failure_code)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012082{
12083 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das03efce62017-05-05 15:25:15 -040012084 u32 exec_control, vmcs12_exec_ctrl;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012085
Sean Christopherson9d1887e2018-03-05 09:33:27 -080012086 if (vmx->nested.dirty_vmcs12) {
Jim Mattson6514dc32018-04-26 16:09:12 -070012087 prepare_vmcs02_full(vcpu, vmcs12);
Sean Christopherson9d1887e2018-03-05 09:33:27 -080012088 vmx->nested.dirty_vmcs12 = false;
12089 }
12090
Paolo Bonzini8665c3f2017-12-20 13:56:53 +010012091 /*
12092 * First, the fields that are shadowed. This must be kept in sync
12093 * with vmx_shadow_fields.h.
12094 */
12095
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012096 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012097 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012098 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012099 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
12100 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
Paolo Bonzini8665c3f2017-12-20 13:56:53 +010012101
Jim Mattson6514dc32018-04-26 16:09:12 -070012102 if (vmx->nested.nested_run_pending &&
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012103 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) {
Jan Kiszka2996fca2014-06-16 13:59:43 +020012104 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
12105 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
12106 } else {
12107 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
12108 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
12109 }
Jim Mattson6514dc32018-04-26 16:09:12 -070012110 if (vmx->nested.nested_run_pending) {
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012111 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
12112 vmcs12->vm_entry_intr_info_field);
12113 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
12114 vmcs12->vm_entry_exception_error_code);
12115 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
12116 vmcs12->vm_entry_instruction_len);
12117 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
12118 vmcs12->guest_interruptibility_info);
Wanpeng Li2d6144e2017-07-25 03:40:46 -070012119 vmx->loaded_vmcs->nmi_known_unmasked =
12120 !(vmcs12->guest_interruptibility_info & GUEST_INTR_STATE_NMI);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012121 } else {
12122 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
12123 }
Gleb Natapov63fbf592013-07-28 18:31:06 +030012124 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012125
Jan Kiszkaf4124502014-03-07 20:03:13 +010012126 exec_control = vmcs12->pin_based_vm_exec_control;
Wincy Van705699a2015-02-03 23:58:17 +080012127
Sean Christophersonf459a702018-08-27 15:21:11 -070012128 /* Preemption timer setting is computed directly in vmx_vcpu_run. */
Paolo Bonzini93140062016-07-06 13:23:51 +020012129 exec_control |= vmcs_config.pin_based_exec_ctrl;
Sean Christophersonf459a702018-08-27 15:21:11 -070012130 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
12131 vmx->loaded_vmcs->hv_timer_armed = false;
Paolo Bonzini93140062016-07-06 13:23:51 +020012132
12133 /* Posted interrupts setting is only taken from vmcs12. */
Wincy Van705699a2015-02-03 23:58:17 +080012134 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +080012135 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
12136 vmx->nested.pi_pending = false;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080012137 } else {
Wincy Van705699a2015-02-03 23:58:17 +080012138 exec_control &= ~PIN_BASED_POSTED_INTR;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080012139 }
Wincy Van705699a2015-02-03 23:58:17 +080012140
Jan Kiszkaf4124502014-03-07 20:03:13 +010012141 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012142
Jan Kiszkaf4124502014-03-07 20:03:13 +010012143 vmx->nested.preemption_timer_expired = false;
12144 if (nested_cpu_has_preemption_timer(vmcs12))
12145 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +010012146
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012147 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +020012148 exec_control = vmx->secondary_exec_control;
Xiao Guangronge2821622015-09-09 14:05:52 +080012149
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012150 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +020012151 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini90a2db62017-07-27 13:22:13 +020012152 SECONDARY_EXEC_ENABLE_INVPCID |
Jan Kiszkab3a2a902015-03-23 19:27:19 +010012153 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini3db13482017-08-24 14:48:03 +020012154 SECONDARY_EXEC_XSAVES |
Paolo Bonzini696dfd92014-05-07 11:20:54 +020012155 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Bandan Das27c42a12017-08-03 15:54:42 -040012156 SECONDARY_EXEC_APIC_REGISTER_VIRT |
12157 SECONDARY_EXEC_ENABLE_VMFUNC);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012158 if (nested_cpu_has(vmcs12,
Bandan Das03efce62017-05-05 15:25:15 -040012159 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) {
12160 vmcs12_exec_ctrl = vmcs12->secondary_vm_exec_control &
12161 ~SECONDARY_EXEC_ENABLE_PML;
12162 exec_control |= vmcs12_exec_ctrl;
12163 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012164
Liran Alon32c7acf2018-06-23 02:35:11 +030012165 /* VMCS shadowing for L2 is emulated for now */
12166 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
12167
Paolo Bonzini25a2e4f2017-12-20 14:05:21 +010012168 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
Wincy Van608406e2015-02-03 23:57:51 +080012169 vmcs_write16(GUEST_INTR_STATUS,
12170 vmcs12->guest_intr_status);
Wincy Van608406e2015-02-03 23:57:51 +080012171
Jim Mattson6beb7bd2016-11-30 12:03:45 -080012172 /*
12173 * Write an illegal value to APIC_ACCESS_ADDR. Later,
12174 * nested_get_vmcs12_pages will either fix it up or
12175 * remove the VM execution control.
12176 */
12177 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
12178 vmcs_write64(APIC_ACCESS_ADDR, -1ull);
12179
Sean Christopherson0b665d32018-08-14 09:33:34 -070012180 if (exec_control & SECONDARY_EXEC_ENCLS_EXITING)
12181 vmcs_write64(ENCLS_EXITING_BITMAP, -1ull);
12182
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012183 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
12184 }
12185
Jim Mattson83bafef2016-10-04 10:48:38 -070012186 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012187 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
12188 * entry, but only if the current (host) sp changed from the value
12189 * we wrote last (vmx->host_rsp). This cache is no longer relevant
12190 * if we switch vmcs, and rather than hold a separate cache per vmcs,
12191 * here we just force the write to happen on entry.
12192 */
12193 vmx->host_rsp = 0;
12194
12195 exec_control = vmx_exec_control(vmx); /* L0's desires */
12196 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
12197 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
12198 exec_control &= ~CPU_BASED_TPR_SHADOW;
12199 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080012200
Jim Mattson6beb7bd2016-11-30 12:03:45 -080012201 /*
12202 * Write an illegal value to VIRTUAL_APIC_PAGE_ADDR. Later, if
12203 * nested_get_vmcs12_pages can't fix it up, the illegal value
12204 * will result in a VM entry failure.
12205 */
Wanpeng Lia7c0b072014-08-21 19:46:50 +080012206 if (exec_control & CPU_BASED_TPR_SHADOW) {
Jim Mattson6beb7bd2016-11-30 12:03:45 -080012207 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, -1ull);
Wanpeng Lia7c0b072014-08-21 19:46:50 +080012208 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
Jim Mattson51aa68e2017-09-12 13:02:54 -070012209 } else {
12210#ifdef CONFIG_X86_64
12211 exec_control |= CPU_BASED_CR8_LOAD_EXITING |
12212 CPU_BASED_CR8_STORE_EXITING;
12213#endif
Wanpeng Lia7c0b072014-08-21 19:46:50 +080012214 }
12215
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012216 /*
Quan Xu8eb73e22017-12-12 16:44:21 +080012217 * A vmexit (to either L1 hypervisor or L0 userspace) is always needed
12218 * for I/O port accesses.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012219 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012220 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
12221 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
12222
12223 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
12224
12225 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
12226 * bitwise-or of what L1 wants to trap for L2, and what we want to
12227 * trap. Note that CR0.TS also needs updating - we do this later.
12228 */
12229 update_exception_bitmap(vcpu);
12230 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
12231 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
12232
Nadav Har'El8049d652013-08-05 11:07:06 +030012233 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
12234 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
12235 * bits are further modified by vmx_set_efer() below.
12236 */
Jan Kiszkaf4124502014-03-07 20:03:13 +010012237 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +030012238
12239 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
12240 * emulated by vmx_set_efer(), below.
12241 */
Gleb Natapov2961e8762013-11-25 15:37:13 +020012242 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +030012243 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
12244 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012245 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
12246
Jim Mattson6514dc32018-04-26 16:09:12 -070012247 if (vmx->nested.nested_run_pending &&
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012248 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012249 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020012250 vcpu->arch.pat = vmcs12->guest_ia32_pat;
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012251 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012252 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012253 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012254
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020012255 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
12256
Peter Feinerc95ba922016-08-17 09:36:47 -070012257 if (kvm_has_tsc_control)
12258 decache_tsc_multiplier(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012259
12260 if (enable_vpid) {
12261 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -070012262 * There is no direct mapping between vpid02 and vpid12, the
12263 * vpid02 is per-vCPU for L0 and reused while the value of
12264 * vpid12 is changed w/ one invvpid during nested vmentry.
12265 * The vpid12 is allocated by L1 for L2, so it will not
12266 * influence global bitmap(for vpid01 and vpid02 allocation)
12267 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012268 */
Wanpeng Li5c614b32015-10-13 09:18:36 -070012269 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
Wanpeng Li5c614b32015-10-13 09:18:36 -070012270 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
12271 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
Liran Alon6bce30c2018-05-22 17:16:12 +030012272 __vmx_flush_tlb(vcpu, vmx->nested.vpid02, true);
Wanpeng Li5c614b32015-10-13 09:18:36 -070012273 }
12274 } else {
Wanpeng Lic2ba05c2017-12-12 17:33:03 -080012275 vmx_flush_tlb(vcpu, true);
Wanpeng Li5c614b32015-10-13 09:18:36 -070012276 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012277 }
12278
Ladi Prosek1fb883b2017-04-04 14:18:53 +020012279 if (enable_pml) {
12280 /*
12281 * Conceptually we want to copy the PML address and index from
12282 * vmcs01 here, and then back to vmcs01 on nested vmexit. But,
12283 * since we always flush the log on each vmexit, this happens
12284 * to be equivalent to simply resetting the fields in vmcs02.
12285 */
12286 ASSERT(vmx->pml_pg);
12287 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
12288 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
12289 }
12290
Nadav Har'El155a97a2013-08-05 11:07:16 +030012291 if (nested_cpu_has_ept(vmcs12)) {
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020012292 if (nested_ept_init_mmu_context(vcpu)) {
12293 *entry_failure_code = ENTRY_FAIL_DEFAULT;
12294 return 1;
12295 }
Jim Mattsonfb6c8192017-03-16 13:53:59 -070012296 } else if (nested_cpu_has2(vmcs12,
12297 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Junaid Shahida468f2d2018-04-26 13:09:50 -070012298 vmx_flush_tlb(vcpu, true);
Nadav Har'El155a97a2013-08-05 11:07:16 +030012299 }
12300
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012301 /*
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080012302 * This sets GUEST_CR0 to vmcs12->guest_cr0, possibly modifying those
12303 * bits which we consider mandatory enabled.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012304 * The CR0_READ_SHADOW is what L2 should have expected to read given
12305 * the specifications by L1; It's not enough to take
12306 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
12307 * have more bits than L1 expected.
12308 */
12309 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
12310 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
12311
12312 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
12313 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
12314
Jim Mattson6514dc32018-04-26 16:09:12 -070012315 if (vmx->nested.nested_run_pending &&
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012316 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER))
David Matlack5a6a9742016-11-29 18:14:10 -080012317 vcpu->arch.efer = vmcs12->guest_ia32_efer;
12318 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
12319 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
12320 else
12321 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
12322 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
12323 vmx_set_efer(vcpu, vcpu->arch.efer);
12324
Sean Christopherson2bb8caf2018-03-12 10:56:13 -070012325 /*
12326 * Guest state is invalid and unrestricted guest is disabled,
12327 * which means L1 attempted VMEntry to L2 with invalid state.
12328 * Fail the VMEntry.
12329 */
Paolo Bonzini3184a992018-03-21 14:20:18 +010012330 if (vmx->emulation_required) {
12331 *entry_failure_code = ENTRY_FAIL_DEFAULT;
Sean Christopherson2bb8caf2018-03-12 10:56:13 -070012332 return 1;
Paolo Bonzini3184a992018-03-21 14:20:18 +010012333 }
Sean Christopherson2bb8caf2018-03-12 10:56:13 -070012334
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010012335 /* Shadow page tables on either EPT or shadow page tables. */
Ladi Prosek7ad658b2017-03-23 07:18:08 +010012336 if (nested_vmx_load_cr3(vcpu, vmcs12->guest_cr3, nested_cpu_has_ept(vmcs12),
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010012337 entry_failure_code))
12338 return 1;
Ladi Prosek7ca29de2016-11-30 16:03:08 +010012339
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030012340 if (!enable_ept)
12341 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
12342
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012343 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
12344 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
Ladi Prosekee146c12016-11-30 16:03:09 +010012345 return 0;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030012346}
12347
Krish Sadhukhan0c7f6502018-02-20 21:24:39 -050012348static int nested_vmx_check_nmi_controls(struct vmcs12 *vmcs12)
12349{
12350 if (!nested_cpu_has_nmi_exiting(vmcs12) &&
12351 nested_cpu_has_virtual_nmis(vmcs12))
12352 return -EINVAL;
12353
12354 if (!nested_cpu_has_virtual_nmis(vmcs12) &&
12355 nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING))
12356 return -EINVAL;
12357
12358 return 0;
12359}
12360
Jim Mattsonca0bde22016-11-30 12:03:46 -080012361static int check_vmentry_prereqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
12362{
12363 struct vcpu_vmx *vmx = to_vmx(vcpu);
12364
12365 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
12366 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT)
12367 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12368
Krish Sadhukhanba8e23d2018-09-04 14:42:58 -040012369 if (nested_cpu_has_vpid(vmcs12) && !vmcs12->virtual_processor_id)
12370 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12371
Jim Mattson56a20512017-07-06 16:33:06 -070012372 if (nested_vmx_check_io_bitmap_controls(vcpu, vmcs12))
12373 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12374
Jim Mattsonca0bde22016-11-30 12:03:46 -080012375 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12))
12376 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12377
Krish Sadhukhanf0f4cf52018-04-11 01:10:16 -040012378 if (nested_vmx_check_apic_access_controls(vcpu, vmcs12))
12379 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12380
Jim Mattson712b12d2017-08-24 13:24:47 -070012381 if (nested_vmx_check_tpr_shadow_controls(vcpu, vmcs12))
12382 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12383
Jim Mattsonca0bde22016-11-30 12:03:46 -080012384 if (nested_vmx_check_apicv_controls(vcpu, vmcs12))
12385 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12386
12387 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12))
12388 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12389
Bandan Dasc5f983f2017-05-05 15:25:14 -040012390 if (nested_vmx_check_pml_controls(vcpu, vmcs12))
12391 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12392
Liran Alona8a7c022018-06-23 02:35:06 +030012393 if (nested_vmx_check_shadow_vmcs_controls(vcpu, vmcs12))
12394 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12395
Jim Mattsonca0bde22016-11-30 12:03:46 -080012396 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010012397 vmx->nested.msrs.procbased_ctls_low,
12398 vmx->nested.msrs.procbased_ctls_high) ||
Jim Mattson2e5b0bd2017-05-04 11:51:58 -070012399 (nested_cpu_has(vmcs12, CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
12400 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010012401 vmx->nested.msrs.secondary_ctls_low,
12402 vmx->nested.msrs.secondary_ctls_high)) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080012403 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010012404 vmx->nested.msrs.pinbased_ctls_low,
12405 vmx->nested.msrs.pinbased_ctls_high) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080012406 !vmx_control_verify(vmcs12->vm_exit_controls,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010012407 vmx->nested.msrs.exit_ctls_low,
12408 vmx->nested.msrs.exit_ctls_high) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080012409 !vmx_control_verify(vmcs12->vm_entry_controls,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010012410 vmx->nested.msrs.entry_ctls_low,
12411 vmx->nested.msrs.entry_ctls_high))
Jim Mattsonca0bde22016-11-30 12:03:46 -080012412 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12413
Krish Sadhukhan0c7f6502018-02-20 21:24:39 -050012414 if (nested_vmx_check_nmi_controls(vmcs12))
Jim Mattsonca0bde22016-11-30 12:03:46 -080012415 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12416
Bandan Das41ab9372017-08-03 15:54:43 -040012417 if (nested_cpu_has_vmfunc(vmcs12)) {
12418 if (vmcs12->vm_function_control &
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010012419 ~vmx->nested.msrs.vmfunc_controls)
Bandan Das41ab9372017-08-03 15:54:43 -040012420 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12421
12422 if (nested_cpu_has_eptp_switching(vmcs12)) {
12423 if (!nested_cpu_has_ept(vmcs12) ||
12424 !page_address_valid(vcpu, vmcs12->eptp_list_address))
12425 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12426 }
12427 }
Bandan Das27c42a12017-08-03 15:54:42 -040012428
Jim Mattsonc7c2c702017-05-05 11:28:09 -070012429 if (vmcs12->cr3_target_count > nested_cpu_vmx_misc_cr3_count(vcpu))
12430 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12431
Jim Mattsonca0bde22016-11-30 12:03:46 -080012432 if (!nested_host_cr0_valid(vcpu, vmcs12->host_cr0) ||
12433 !nested_host_cr4_valid(vcpu, vmcs12->host_cr4) ||
12434 !nested_cr3_valid(vcpu, vmcs12->host_cr3))
12435 return VMXERR_ENTRY_INVALID_HOST_STATE_FIELD;
12436
Marc Orr04473782018-06-20 17:21:29 -070012437 /*
12438 * From the Intel SDM, volume 3:
12439 * Fields relevant to VM-entry event injection must be set properly.
12440 * These fields are the VM-entry interruption-information field, the
12441 * VM-entry exception error code, and the VM-entry instruction length.
12442 */
12443 if (vmcs12->vm_entry_intr_info_field & INTR_INFO_VALID_MASK) {
12444 u32 intr_info = vmcs12->vm_entry_intr_info_field;
12445 u8 vector = intr_info & INTR_INFO_VECTOR_MASK;
12446 u32 intr_type = intr_info & INTR_INFO_INTR_TYPE_MASK;
12447 bool has_error_code = intr_info & INTR_INFO_DELIVER_CODE_MASK;
12448 bool should_have_error_code;
12449 bool urg = nested_cpu_has2(vmcs12,
12450 SECONDARY_EXEC_UNRESTRICTED_GUEST);
12451 bool prot_mode = !urg || vmcs12->guest_cr0 & X86_CR0_PE;
12452
12453 /* VM-entry interruption-info field: interruption type */
12454 if (intr_type == INTR_TYPE_RESERVED ||
12455 (intr_type == INTR_TYPE_OTHER_EVENT &&
12456 !nested_cpu_supports_monitor_trap_flag(vcpu)))
12457 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12458
12459 /* VM-entry interruption-info field: vector */
12460 if ((intr_type == INTR_TYPE_NMI_INTR && vector != NMI_VECTOR) ||
12461 (intr_type == INTR_TYPE_HARD_EXCEPTION && vector > 31) ||
12462 (intr_type == INTR_TYPE_OTHER_EVENT && vector != 0))
12463 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12464
12465 /* VM-entry interruption-info field: deliver error code */
12466 should_have_error_code =
12467 intr_type == INTR_TYPE_HARD_EXCEPTION && prot_mode &&
12468 x86_exception_has_error_code(vector);
12469 if (has_error_code != should_have_error_code)
12470 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12471
12472 /* VM-entry exception error code */
12473 if (has_error_code &&
12474 vmcs12->vm_entry_exception_error_code & GENMASK(31, 15))
12475 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12476
12477 /* VM-entry interruption-info field: reserved bits */
12478 if (intr_info & INTR_INFO_RESVD_BITS_MASK)
12479 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12480
12481 /* VM-entry instruction length */
12482 switch (intr_type) {
12483 case INTR_TYPE_SOFT_EXCEPTION:
12484 case INTR_TYPE_SOFT_INTR:
12485 case INTR_TYPE_PRIV_SW_EXCEPTION:
12486 if ((vmcs12->vm_entry_instruction_len > 15) ||
12487 (vmcs12->vm_entry_instruction_len == 0 &&
12488 !nested_cpu_has_zero_length_injection(vcpu)))
12489 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
12490 }
12491 }
12492
Jim Mattsonca0bde22016-11-30 12:03:46 -080012493 return 0;
12494}
12495
Liran Alonf145d902018-06-23 02:35:07 +030012496static int nested_vmx_check_vmcs_link_ptr(struct kvm_vcpu *vcpu,
12497 struct vmcs12 *vmcs12)
12498{
12499 int r;
12500 struct page *page;
12501 struct vmcs12 *shadow;
12502
12503 if (vmcs12->vmcs_link_pointer == -1ull)
12504 return 0;
12505
12506 if (!page_address_valid(vcpu, vmcs12->vmcs_link_pointer))
12507 return -EINVAL;
12508
12509 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->vmcs_link_pointer);
12510 if (is_error_page(page))
12511 return -EINVAL;
12512
12513 r = 0;
12514 shadow = kmap(page);
12515 if (shadow->hdr.revision_id != VMCS12_REVISION ||
12516 shadow->hdr.shadow_vmcs != nested_cpu_has_shadow_vmcs(vmcs12))
12517 r = -EINVAL;
12518 kunmap(page);
12519 kvm_release_page_clean(page);
12520 return r;
12521}
12522
Jim Mattsonca0bde22016-11-30 12:03:46 -080012523static int check_vmentry_postreqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
12524 u32 *exit_qual)
12525{
12526 bool ia32e;
12527
12528 *exit_qual = ENTRY_FAIL_DEFAULT;
12529
12530 if (!nested_guest_cr0_valid(vcpu, vmcs12->guest_cr0) ||
12531 !nested_guest_cr4_valid(vcpu, vmcs12->guest_cr4))
12532 return 1;
12533
Liran Alonf145d902018-06-23 02:35:07 +030012534 if (nested_vmx_check_vmcs_link_ptr(vcpu, vmcs12)) {
Jim Mattsonca0bde22016-11-30 12:03:46 -080012535 *exit_qual = ENTRY_FAIL_VMCS_LINK_PTR;
12536 return 1;
12537 }
12538
12539 /*
12540 * If the load IA32_EFER VM-entry control is 1, the following checks
12541 * are performed on the field for the IA32_EFER MSR:
12542 * - Bits reserved in the IA32_EFER MSR must be 0.
12543 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
12544 * the IA-32e mode guest VM-exit control. It must also be identical
12545 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
12546 * CR0.PG) is 1.
12547 */
12548 if (to_vmx(vcpu)->nested.nested_run_pending &&
12549 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) {
12550 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
12551 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
12552 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
12553 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
12554 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME)))
12555 return 1;
12556 }
12557
12558 /*
12559 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
12560 * IA32_EFER MSR must be 0 in the field for that register. In addition,
12561 * the values of the LMA and LME bits in the field must each be that of
12562 * the host address-space size VM-exit control.
12563 */
12564 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
12565 ia32e = (vmcs12->vm_exit_controls &
12566 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
12567 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
12568 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
12569 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME))
12570 return 1;
12571 }
12572
Wanpeng Lif1b026a2017-11-05 16:54:48 -080012573 if ((vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS) &&
12574 (is_noncanonical_address(vmcs12->guest_bndcfgs & PAGE_MASK, vcpu) ||
12575 (vmcs12->guest_bndcfgs & MSR_IA32_BNDCFGS_RSVD)))
12576 return 1;
12577
Jim Mattsonca0bde22016-11-30 12:03:46 -080012578 return 0;
12579}
12580
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012581/*
Jim Mattson8fcc4b52018-07-10 11:27:20 +020012582 * If exit_qual is NULL, this is being called from state restore (either RSM
12583 * or KVM_SET_NESTED_STATE). Otherwise it's called from vmlaunch/vmresume.
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012584 */
12585static int enter_vmx_non_root_mode(struct kvm_vcpu *vcpu, u32 *exit_qual)
Jim Mattson858e25c2016-11-30 12:03:47 -080012586{
12587 struct vcpu_vmx *vmx = to_vmx(vcpu);
12588 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012589 bool from_vmentry = !!exit_qual;
12590 u32 dummy_exit_qual;
Liran Alonb5861e52018-09-03 15:20:22 +030012591 u32 vmcs01_cpu_exec_ctrl;
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012592 int r = 0;
Jim Mattson858e25c2016-11-30 12:03:47 -080012593
Liran Alonb5861e52018-09-03 15:20:22 +030012594 vmcs01_cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
12595
Jim Mattson858e25c2016-11-30 12:03:47 -080012596 enter_guest_mode(vcpu);
12597
12598 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
12599 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
Liran Alon62cf9bd812018-09-14 03:25:54 +030012600 if (kvm_mpx_supported() &&
12601 !(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS))
12602 vmx->nested.vmcs01_guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Jim Mattson858e25c2016-11-30 12:03:47 -080012603
Jim Mattsonde3a0022017-11-27 17:22:25 -060012604 vmx_switch_vmcs(vcpu, &vmx->nested.vmcs02);
Jim Mattson858e25c2016-11-30 12:03:47 -080012605 vmx_segment_cache_clear(vmx);
12606
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020012607 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
12608 vcpu->arch.tsc_offset += vmcs12->tsc_offset;
12609
12610 r = EXIT_REASON_INVALID_STATE;
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012611 if (prepare_vmcs02(vcpu, vmcs12, from_vmentry ? exit_qual : &dummy_exit_qual))
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020012612 goto fail;
Jim Mattson858e25c2016-11-30 12:03:47 -080012613
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012614 if (from_vmentry) {
12615 nested_get_vmcs12_pages(vcpu);
Jim Mattson858e25c2016-11-30 12:03:47 -080012616
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012617 r = EXIT_REASON_MSR_LOAD_FAIL;
12618 *exit_qual = nested_vmx_load_msr(vcpu,
12619 vmcs12->vm_entry_msr_load_addr,
12620 vmcs12->vm_entry_msr_load_count);
12621 if (*exit_qual)
12622 goto fail;
12623 } else {
12624 /*
12625 * The MMU is not initialized to point at the right entities yet and
12626 * "get pages" would need to read data from the guest (i.e. we will
12627 * need to perform gpa to hpa translation). Request a call
12628 * to nested_get_vmcs12_pages before the next VM-entry. The MSRs
12629 * have already been set at vmentry time and should not be reset.
12630 */
12631 kvm_make_request(KVM_REQ_GET_VMCS12_PAGES, vcpu);
12632 }
Jim Mattson858e25c2016-11-30 12:03:47 -080012633
Jim Mattson858e25c2016-11-30 12:03:47 -080012634 /*
Liran Alonb5861e52018-09-03 15:20:22 +030012635 * If L1 had a pending IRQ/NMI until it executed
12636 * VMLAUNCH/VMRESUME which wasn't delivered because it was
12637 * disallowed (e.g. interrupts disabled), L0 needs to
12638 * evaluate if this pending event should cause an exit from L2
12639 * to L1 or delivered directly to L2 (e.g. In case L1 don't
12640 * intercept EXTERNAL_INTERRUPT).
12641 *
12642 * Usually this would be handled by L0 requesting a
12643 * IRQ/NMI window by setting VMCS accordingly. However,
12644 * this setting was done on VMCS01 and now VMCS02 is active
12645 * instead. Thus, we force L0 to perform pending event
12646 * evaluation by requesting a KVM_REQ_EVENT.
12647 */
12648 if (vmcs01_cpu_exec_ctrl &
12649 (CPU_BASED_VIRTUAL_INTR_PENDING | CPU_BASED_VIRTUAL_NMI_PENDING)) {
12650 kvm_make_request(KVM_REQ_EVENT, vcpu);
12651 }
12652
12653 /*
Jim Mattson858e25c2016-11-30 12:03:47 -080012654 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
12655 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
12656 * returned as far as L1 is concerned. It will only return (and set
12657 * the success flag) when L2 exits (see nested_vmx_vmexit()).
12658 */
12659 return 0;
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020012660
12661fail:
12662 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
12663 vcpu->arch.tsc_offset -= vmcs12->tsc_offset;
12664 leave_guest_mode(vcpu);
12665 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012666 return r;
Jim Mattson858e25c2016-11-30 12:03:47 -080012667}
12668
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030012669/*
12670 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
12671 * for running an L2 nested guest.
12672 */
12673static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
12674{
12675 struct vmcs12 *vmcs12;
12676 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070012677 u32 interrupt_shadow = vmx_get_interrupt_shadow(vcpu);
Jim Mattsonca0bde22016-11-30 12:03:46 -080012678 u32 exit_qual;
12679 int ret;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030012680
Kyle Hueyeb277562016-11-29 12:40:39 -080012681 if (!nested_vmx_check_permission(vcpu))
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030012682 return 1;
12683
Kyle Hueyeb277562016-11-29 12:40:39 -080012684 if (!nested_vmx_check_vmcs12(vcpu))
12685 goto out;
12686
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030012687 vmcs12 = get_vmcs12(vcpu);
12688
Liran Alona6192d42018-06-23 02:35:04 +030012689 /*
12690 * Can't VMLAUNCH or VMRESUME a shadow VMCS. Despite the fact
12691 * that there *is* a valid VMCS pointer, RFLAGS.CF is set
12692 * rather than RFLAGS.ZF, and no error number is stored to the
12693 * VM-instruction error field.
12694 */
12695 if (vmcs12->hdr.shadow_vmcs) {
12696 nested_vmx_failInvalid(vcpu);
12697 goto out;
12698 }
12699
Abel Gordon012f83c2013-04-18 14:39:25 +030012700 if (enable_shadow_vmcs)
12701 copy_shadow_to_vmcs12(vmx);
12702
Nadav Har'El7c177932011-05-25 23:12:04 +030012703 /*
12704 * The nested entry process starts with enforcing various prerequisites
12705 * on vmcs12 as required by the Intel SDM, and act appropriately when
12706 * they fail: As the SDM explains, some conditions should cause the
12707 * instruction to fail, while others will cause the instruction to seem
12708 * to succeed, but return an EXIT_REASON_INVALID_STATE.
12709 * To speed up the normal (success) code path, we should avoid checking
12710 * for misconfigurations which will anyway be caught by the processor
12711 * when using the merged vmcs02.
12712 */
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070012713 if (interrupt_shadow & KVM_X86_SHADOW_INT_MOV_SS) {
12714 nested_vmx_failValid(vcpu,
12715 VMXERR_ENTRY_EVENTS_BLOCKED_BY_MOV_SS);
12716 goto out;
12717 }
12718
Nadav Har'El7c177932011-05-25 23:12:04 +030012719 if (vmcs12->launch_state == launch) {
12720 nested_vmx_failValid(vcpu,
12721 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
12722 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
Kyle Hueyeb277562016-11-29 12:40:39 -080012723 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030012724 }
12725
Jim Mattsonca0bde22016-11-30 12:03:46 -080012726 ret = check_vmentry_prereqs(vcpu, vmcs12);
12727 if (ret) {
12728 nested_vmx_failValid(vcpu, ret);
Kyle Hueyeb277562016-11-29 12:40:39 -080012729 goto out;
Paolo Bonzini26539bd2013-04-15 15:00:27 +020012730 }
12731
Nadav Har'El7c177932011-05-25 23:12:04 +030012732 /*
Jim Mattsonca0bde22016-11-30 12:03:46 -080012733 * After this point, the trap flag no longer triggers a singlestep trap
12734 * on the vm entry instructions; don't call kvm_skip_emulated_instruction.
12735 * This is not 100% correct; for performance reasons, we delegate most
12736 * of the checks on host state to the processor. If those fail,
12737 * the singlestep trap is missed.
Jan Kiszka384bb782013-04-20 10:52:36 +020012738 */
Jim Mattsonca0bde22016-11-30 12:03:46 -080012739 skip_emulated_instruction(vcpu);
Jan Kiszka384bb782013-04-20 10:52:36 +020012740
Jim Mattsonca0bde22016-11-30 12:03:46 -080012741 ret = check_vmentry_postreqs(vcpu, vmcs12, &exit_qual);
12742 if (ret) {
12743 nested_vmx_entry_failure(vcpu, vmcs12,
12744 EXIT_REASON_INVALID_STATE, exit_qual);
12745 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +020012746 }
12747
12748 /*
Nadav Har'El7c177932011-05-25 23:12:04 +030012749 * We're finally done with prerequisite checking, and can start with
12750 * the nested entry.
12751 */
12752
Jim Mattson6514dc32018-04-26 16:09:12 -070012753 vmx->nested.nested_run_pending = 1;
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012754 ret = enter_vmx_non_root_mode(vcpu, &exit_qual);
Jim Mattson6514dc32018-04-26 16:09:12 -070012755 if (ret) {
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012756 nested_vmx_entry_failure(vcpu, vmcs12, ret, exit_qual);
Jim Mattson6514dc32018-04-26 16:09:12 -070012757 vmx->nested.nested_run_pending = 0;
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020012758 return 1;
Jim Mattson6514dc32018-04-26 16:09:12 -070012759 }
Wincy Vanff651cb2014-12-11 08:52:58 +030012760
Paolo Bonzinic595cee2018-07-02 13:07:14 +020012761 /* Hide L1D cache contents from the nested guest. */
12762 vmx->vcpu.arch.l1tf_flush_l1d = true;
12763
Chao Gao135a06c2018-02-11 10:06:30 +080012764 /*
Liran Alon61ada742018-06-23 02:35:08 +030012765 * Must happen outside of enter_vmx_non_root_mode() as it will
12766 * also be used as part of restoring nVMX state for
12767 * snapshot restore (migration).
12768 *
12769 * In this flow, it is assumed that vmcs12 cache was
12770 * trasferred as part of captured nVMX state and should
12771 * therefore not be read from guest memory (which may not
12772 * exist on destination host yet).
12773 */
12774 nested_cache_shadow_vmcs12(vcpu, vmcs12);
12775
12776 /*
Chao Gao135a06c2018-02-11 10:06:30 +080012777 * If we're entering a halted L2 vcpu and the L2 vcpu won't be woken
12778 * by event injection, halt vcpu.
12779 */
12780 if ((vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT) &&
Jim Mattson6514dc32018-04-26 16:09:12 -070012781 !(vmcs12->vm_entry_intr_info_field & INTR_INFO_VALID_MASK)) {
12782 vmx->nested.nested_run_pending = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -060012783 return kvm_vcpu_halt(vcpu);
Jim Mattson6514dc32018-04-26 16:09:12 -070012784 }
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030012785 return 1;
Kyle Hueyeb277562016-11-29 12:40:39 -080012786
12787out:
Kyle Huey6affcbe2016-11-29 12:40:40 -080012788 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030012789}
12790
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012791/*
12792 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
12793 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
12794 * This function returns the new value we should put in vmcs12.guest_cr0.
12795 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
12796 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
12797 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
12798 * didn't trap the bit, because if L1 did, so would L0).
12799 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
12800 * been modified by L2, and L1 knows it. So just leave the old value of
12801 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
12802 * isn't relevant, because if L0 traps this bit it can set it to anything.
12803 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
12804 * changed these bits, and therefore they need to be updated, but L0
12805 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
12806 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
12807 */
12808static inline unsigned long
12809vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
12810{
12811 return
12812 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
12813 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
12814 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
12815 vcpu->arch.cr0_guest_owned_bits));
12816}
12817
12818static inline unsigned long
12819vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
12820{
12821 return
12822 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
12823 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
12824 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
12825 vcpu->arch.cr4_guest_owned_bits));
12826}
12827
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012828static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
12829 struct vmcs12 *vmcs12)
12830{
12831 u32 idt_vectoring;
12832 unsigned int nr;
12833
Wanpeng Li664f8e22017-08-24 03:35:09 -070012834 if (vcpu->arch.exception.injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012835 nr = vcpu->arch.exception.nr;
12836 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
12837
12838 if (kvm_exception_is_soft(nr)) {
12839 vmcs12->vm_exit_instruction_len =
12840 vcpu->arch.event_exit_inst_len;
12841 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
12842 } else
12843 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
12844
12845 if (vcpu->arch.exception.has_error_code) {
12846 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
12847 vmcs12->idt_vectoring_error_code =
12848 vcpu->arch.exception.error_code;
12849 }
12850
12851 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010012852 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012853 vmcs12->idt_vectoring_info_field =
12854 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
Liran Alon04140b42018-03-23 03:01:31 +030012855 } else if (vcpu->arch.interrupt.injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012856 nr = vcpu->arch.interrupt.nr;
12857 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
12858
12859 if (vcpu->arch.interrupt.soft) {
12860 idt_vectoring |= INTR_TYPE_SOFT_INTR;
12861 vmcs12->vm_entry_instruction_len =
12862 vcpu->arch.event_exit_inst_len;
12863 } else
12864 idt_vectoring |= INTR_TYPE_EXT_INTR;
12865
12866 vmcs12->idt_vectoring_info_field = idt_vectoring;
12867 }
12868}
12869
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012870static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
12871{
12872 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Libfcf83b2017-08-24 03:35:11 -070012873 unsigned long exit_qual;
Liran Alon917dc602017-11-05 16:07:43 +020012874 bool block_nested_events =
12875 vmx->nested.nested_run_pending || kvm_event_needs_reinjection(vcpu);
Wanpeng Liacc9ab62017-02-27 04:24:39 -080012876
Wanpeng Libfcf83b2017-08-24 03:35:11 -070012877 if (vcpu->arch.exception.pending &&
12878 nested_vmx_check_exception(vcpu, &exit_qual)) {
Liran Alon917dc602017-11-05 16:07:43 +020012879 if (block_nested_events)
Wanpeng Libfcf83b2017-08-24 03:35:11 -070012880 return -EBUSY;
12881 nested_vmx_inject_exception_vmexit(vcpu, exit_qual);
Wanpeng Libfcf83b2017-08-24 03:35:11 -070012882 return 0;
12883 }
12884
Jan Kiszkaf4124502014-03-07 20:03:13 +010012885 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
12886 vmx->nested.preemption_timer_expired) {
Liran Alon917dc602017-11-05 16:07:43 +020012887 if (block_nested_events)
Jan Kiszkaf4124502014-03-07 20:03:13 +010012888 return -EBUSY;
12889 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
12890 return 0;
12891 }
12892
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012893 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Liran Alon917dc602017-11-05 16:07:43 +020012894 if (block_nested_events)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012895 return -EBUSY;
12896 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
12897 NMI_VECTOR | INTR_TYPE_NMI_INTR |
12898 INTR_INFO_VALID_MASK, 0);
12899 /*
12900 * The NMI-triggered VM exit counts as injection:
12901 * clear this one and block further NMIs.
12902 */
12903 vcpu->arch.nmi_pending = 0;
12904 vmx_set_nmi_mask(vcpu, true);
12905 return 0;
12906 }
12907
12908 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
12909 nested_exit_on_intr(vcpu)) {
Liran Alon917dc602017-11-05 16:07:43 +020012910 if (block_nested_events)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012911 return -EBUSY;
12912 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080012913 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012914 }
12915
David Hildenbrand6342c502017-01-25 11:58:58 +010012916 vmx_complete_nested_posted_interrupt(vcpu);
12917 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012918}
12919
Sean Christophersond264ee02018-08-27 15:21:12 -070012920static void vmx_request_immediate_exit(struct kvm_vcpu *vcpu)
12921{
12922 to_vmx(vcpu)->req_immediate_exit = true;
12923}
12924
Jan Kiszkaf4124502014-03-07 20:03:13 +010012925static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
12926{
12927 ktime_t remaining =
12928 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
12929 u64 value;
12930
12931 if (ktime_to_ns(remaining) <= 0)
12932 return 0;
12933
12934 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
12935 do_div(value, 1000000);
12936 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
12937}
12938
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012939/*
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012940 * Update the guest state fields of vmcs12 to reflect changes that
12941 * occurred while L2 was running. (The "IA-32e mode guest" bit of the
12942 * VM-entry controls is also updated, since this is really a guest
12943 * state bit.)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012944 */
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080012945static void sync_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012946{
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012947 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
12948 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
12949
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012950 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
12951 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
12952 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
12953
12954 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
12955 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
12956 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
12957 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
12958 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
12959 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
12960 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
12961 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
12962 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
12963 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
12964 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
12965 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
12966 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
12967 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
12968 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
12969 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
12970 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
12971 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
12972 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
12973 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
12974 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
12975 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
12976 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
12977 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
12978 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
12979 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
12980 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
12981 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
12982 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
12983 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
12984 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
12985 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
12986 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
12987 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
12988 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
12989 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
12990
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012991 vmcs12->guest_interruptibility_info =
12992 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
12993 vmcs12->guest_pending_dbg_exceptions =
12994 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010012995 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
12996 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
12997 else
12998 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012999
Jan Kiszkaf4124502014-03-07 20:03:13 +010013000 if (nested_cpu_has_preemption_timer(vmcs12)) {
13001 if (vmcs12->vm_exit_controls &
13002 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
13003 vmcs12->vmx_preemption_timer_value =
13004 vmx_get_preemption_timer_value(vcpu);
13005 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
13006 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080013007
Nadav Har'El3633cfc2013-08-05 11:07:07 +030013008 /*
13009 * In some cases (usually, nested EPT), L2 is allowed to change its
13010 * own CR3 without exiting. If it has changed it, we must keep it.
13011 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
13012 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
13013 *
13014 * Additionally, restore L2's PDPTR to vmcs12.
13015 */
13016 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010013017 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030013018 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
13019 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
13020 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
13021 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
13022 }
13023
Jim Mattsond281e132017-06-01 12:44:46 -070013024 vmcs12->guest_linear_address = vmcs_readl(GUEST_LINEAR_ADDRESS);
Jan Dakinevich119a9c02016-09-04 21:22:47 +030013025
Wincy Van608406e2015-02-03 23:57:51 +080013026 if (nested_cpu_has_vid(vmcs12))
13027 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
13028
Jan Kiszkac18911a2013-03-13 16:06:41 +010013029 vmcs12->vm_entry_controls =
13030 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020013031 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010013032
Jan Kiszka2996fca2014-06-16 13:59:43 +020013033 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
13034 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
13035 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
13036 }
13037
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013038 /* TODO: These cannot have changed unless we have MSR bitmaps and
13039 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020013040 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013041 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020013042 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
13043 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013044 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
13045 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
13046 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzinia87036a2016-03-08 09:52:13 +010013047 if (kvm_mpx_supported())
Paolo Bonzini36be0b92014-02-24 12:30:04 +010013048 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080013049}
13050
13051/*
13052 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
13053 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
13054 * and this function updates it to reflect the changes to the guest state while
13055 * L2 was running (and perhaps made some exits which were handled directly by L0
13056 * without going back to L1), and to reflect the exit reason.
13057 * Note that we do not have to copy here all VMCS fields, just those that
13058 * could have changed by the L2 guest or the exit - i.e., the guest-state and
13059 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
13060 * which already writes to vmcs12 directly.
13061 */
13062static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
13063 u32 exit_reason, u32 exit_intr_info,
13064 unsigned long exit_qualification)
13065{
13066 /* update guest state fields: */
13067 sync_vmcs12(vcpu, vmcs12);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013068
13069 /* update exit information fields: */
13070
Jan Kiszka533558b2014-01-04 18:47:20 +010013071 vmcs12->vm_exit_reason = exit_reason;
13072 vmcs12->exit_qualification = exit_qualification;
Jan Kiszka533558b2014-01-04 18:47:20 +010013073 vmcs12->vm_exit_intr_info = exit_intr_info;
Paolo Bonzini7313c692017-07-27 10:31:25 +020013074
Jan Kiszka5f3d5792013-04-14 12:12:46 +020013075 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013076 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
13077 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
13078
Jan Kiszka5f3d5792013-04-14 12:12:46 +020013079 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
Jim Mattson7cdc2d62017-07-06 16:33:05 -070013080 vmcs12->launch_state = 1;
13081
Jan Kiszka5f3d5792013-04-14 12:12:46 +020013082 /* vm_entry_intr_info_field is cleared on exit. Emulate this
13083 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013084 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020013085
13086 /*
13087 * Transfer the event that L0 or L1 may wanted to inject into
13088 * L2 to IDT_VECTORING_INFO_FIELD.
13089 */
13090 vmcs12_save_pending_event(vcpu, vmcs12);
13091 }
13092
13093 /*
13094 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
13095 * preserved above and would only end up incorrectly in L1.
13096 */
13097 vcpu->arch.nmi_injected = false;
13098 kvm_clear_exception_queue(vcpu);
13099 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013100}
13101
Wanpeng Li5af41572017-11-05 16:54:49 -080013102static void load_vmcs12_mmu_host_state(struct kvm_vcpu *vcpu,
13103 struct vmcs12 *vmcs12)
13104{
13105 u32 entry_failure_code;
13106
13107 nested_ept_uninit_mmu_context(vcpu);
13108
13109 /*
13110 * Only PDPTE load can fail as the value of cr3 was checked on entry and
13111 * couldn't have changed.
13112 */
13113 if (nested_vmx_load_cr3(vcpu, vmcs12->host_cr3, false, &entry_failure_code))
13114 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_PDPTE_FAIL);
13115
13116 if (!enable_ept)
13117 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
13118}
13119
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013120/*
13121 * A part of what we need to when the nested L2 guest exits and we want to
13122 * run its L1 parent, is to reset L1's guest state to the host state specified
13123 * in vmcs12.
13124 * This function is to be called not only on normal nested exit, but also on
13125 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
13126 * Failures During or After Loading Guest State").
13127 * This function should be called when the active VMCS is L1's (vmcs01).
13128 */
Jan Kiszka733568f2013-02-23 15:07:47 +010013129static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
13130 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013131{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080013132 struct kvm_segment seg;
13133
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013134 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
13135 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020013136 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013137 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
13138 else
13139 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
13140 vmx_set_efer(vcpu, vcpu->arch.efer);
13141
13142 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
13143 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070013144 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013145 /*
13146 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080013147 * actually changed, because vmx_set_cr0 refers to efer set above.
13148 *
13149 * CR0_GUEST_HOST_MASK is already set in the original vmcs01
13150 * (KVM doesn't change it);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013151 */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080013152 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Jan Kiszka9e3e4db2013-09-03 21:11:45 +020013153 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013154
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080013155 /* Same as above - no reason to call set_cr4_guest_host_mask(). */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013156 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
Haozhong Zhang8eb3f872017-10-10 15:01:22 +080013157 vmx_set_cr4(vcpu, vmcs12->host_cr4);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013158
Wanpeng Li5af41572017-11-05 16:54:49 -080013159 load_vmcs12_mmu_host_state(vcpu, vmcs12);
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030013160
Liran Alon6f1e03b2018-05-22 17:16:14 +030013161 /*
13162 * If vmcs01 don't use VPID, CPU flushes TLB on every
13163 * VMEntry/VMExit. Thus, no need to flush TLB.
13164 *
13165 * If vmcs12 uses VPID, TLB entries populated by L2 are
13166 * tagged with vmx->nested.vpid02 while L1 entries are tagged
13167 * with vmx->vpid. Thus, no need to flush TLB.
13168 *
13169 * Therefore, flush TLB only in case vmcs01 uses VPID and
13170 * vmcs12 don't use VPID as in this case L1 & L2 TLB entries
13171 * are both tagged with vmx->vpid.
13172 */
13173 if (enable_vpid &&
13174 !(nested_cpu_has_vpid(vmcs12) && to_vmx(vcpu)->nested.vpid02)) {
Wanpeng Lic2ba05c2017-12-12 17:33:03 -080013175 vmx_flush_tlb(vcpu, true);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013176 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013177
13178 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
13179 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
13180 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
13181 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
13182 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Ladi Prosek21f2d552017-10-11 16:54:42 +020013183 vmcs_write32(GUEST_IDTR_LIMIT, 0xFFFF);
13184 vmcs_write32(GUEST_GDTR_LIMIT, 0xFFFF);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013185
Paolo Bonzini36be0b92014-02-24 12:30:04 +010013186 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
13187 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
13188 vmcs_write64(GUEST_BNDCFGS, 0);
13189
Jan Kiszka44811c02013-08-04 17:17:27 +020013190 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013191 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020013192 vcpu->arch.pat = vmcs12->host_ia32_pat;
13193 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013194 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
13195 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
13196 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010013197
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080013198 /* Set L1 segment info according to Intel SDM
13199 27.5.2 Loading Host Segment and Descriptor-Table Registers */
13200 seg = (struct kvm_segment) {
13201 .base = 0,
13202 .limit = 0xFFFFFFFF,
13203 .selector = vmcs12->host_cs_selector,
13204 .type = 11,
13205 .present = 1,
13206 .s = 1,
13207 .g = 1
13208 };
13209 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
13210 seg.l = 1;
13211 else
13212 seg.db = 1;
13213 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
13214 seg = (struct kvm_segment) {
13215 .base = 0,
13216 .limit = 0xFFFFFFFF,
13217 .type = 3,
13218 .present = 1,
13219 .s = 1,
13220 .db = 1,
13221 .g = 1
13222 };
13223 seg.selector = vmcs12->host_ds_selector;
13224 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
13225 seg.selector = vmcs12->host_es_selector;
13226 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
13227 seg.selector = vmcs12->host_ss_selector;
13228 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
13229 seg.selector = vmcs12->host_fs_selector;
13230 seg.base = vmcs12->host_fs_base;
13231 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
13232 seg.selector = vmcs12->host_gs_selector;
13233 seg.base = vmcs12->host_gs_base;
13234 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
13235 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030013236 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080013237 .limit = 0x67,
13238 .selector = vmcs12->host_tr_selector,
13239 .type = 11,
13240 .present = 1
13241 };
13242 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
13243
Jan Kiszka503cd0c2013-03-03 13:05:44 +010013244 kvm_set_dr(vcpu, 7, 0x400);
13245 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030013246
Wincy Van3af18d92015-02-03 23:49:31 +080013247 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +010013248 vmx_update_msr_bitmap(vcpu);
Wincy Van3af18d92015-02-03 23:49:31 +080013249
Wincy Vanff651cb2014-12-11 08:52:58 +030013250 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
13251 vmcs12->vm_exit_msr_load_count))
13252 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013253}
13254
13255/*
13256 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
13257 * and modify vmcs12 to make it see what it would expect to see there if
13258 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
13259 */
Jan Kiszka533558b2014-01-04 18:47:20 +010013260static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
13261 u32 exit_intr_info,
13262 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013263{
13264 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013265 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
13266
Jan Kiszka5f3d5792013-04-14 12:12:46 +020013267 /* trying to cancel vmlaunch/vmresume is a bug */
13268 WARN_ON_ONCE(vmx->nested.nested_run_pending);
13269
Wanpeng Li6550c4d2017-07-31 19:25:27 -070013270 /*
Jim Mattson4f350c62017-09-14 16:31:44 -070013271 * The only expected VM-instruction error is "VM entry with
13272 * invalid control field(s)." Anything else indicates a
13273 * problem with L0.
Wanpeng Li6550c4d2017-07-31 19:25:27 -070013274 */
Jim Mattson4f350c62017-09-14 16:31:44 -070013275 WARN_ON_ONCE(vmx->fail && (vmcs_read32(VM_INSTRUCTION_ERROR) !=
13276 VMXERR_ENTRY_INVALID_CONTROL_FIELD));
13277
13278 leave_guest_mode(vcpu);
13279
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020013280 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
13281 vcpu->arch.tsc_offset -= vmcs12->tsc_offset;
13282
Jim Mattson4f350c62017-09-14 16:31:44 -070013283 if (likely(!vmx->fail)) {
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013284 if (exit_reason == -1)
13285 sync_vmcs12(vcpu, vmcs12);
13286 else
13287 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
13288 exit_qualification);
Jim Mattson4f350c62017-09-14 16:31:44 -070013289
Liran Alon61ada742018-06-23 02:35:08 +030013290 /*
13291 * Must happen outside of sync_vmcs12() as it will
13292 * also be used to capture vmcs12 cache as part of
13293 * capturing nVMX state for snapshot (migration).
13294 *
13295 * Otherwise, this flush will dirty guest memory at a
13296 * point it is already assumed by user-space to be
13297 * immutable.
13298 */
13299 nested_flush_cached_shadow_vmcs12(vcpu, vmcs12);
13300
Jim Mattson4f350c62017-09-14 16:31:44 -070013301 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
13302 vmcs12->vm_exit_msr_store_count))
13303 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
Bandan Das77b0f5d2014-04-19 18:17:45 -040013304 }
13305
Jim Mattson4f350c62017-09-14 16:31:44 -070013306 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Paolo Bonzini8391ce42016-07-07 14:58:33 +020013307 vm_entry_controls_reset_shadow(vmx);
13308 vm_exit_controls_reset_shadow(vmx);
Jan Kiszka36c3cc42013-02-23 22:35:37 +010013309 vmx_segment_cache_clear(vmx);
13310
Paolo Bonzini93140062016-07-06 13:23:51 +020013311 /* Update any VMCS fields that might have changed while L2 ran */
Konrad Rzeszutek Wilk33966dd62018-06-20 13:58:37 -040013312 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.host.nr);
13313 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.guest.nr);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010013314 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Sean Christophersonf459a702018-08-27 15:21:11 -070013315
Peter Feinerc95ba922016-08-17 09:36:47 -070013316 if (kvm_has_tsc_control)
13317 decache_tsc_multiplier(vmx);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013318
Jim Mattson8d860bb2018-05-09 16:56:05 -040013319 if (vmx->nested.change_vmcs01_virtual_apic_mode) {
13320 vmx->nested.change_vmcs01_virtual_apic_mode = false;
13321 vmx_set_virtual_apic_mode(vcpu);
Jim Mattsonfb6c8192017-03-16 13:53:59 -070013322 } else if (!nested_cpu_has_ept(vmcs12) &&
13323 nested_cpu_has2(vmcs12,
13324 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Junaid Shahida468f2d2018-04-26 13:09:50 -070013325 vmx_flush_tlb(vcpu, true);
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020013326 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013327
13328 /* This is needed for same reason as it was needed in prepare_vmcs02 */
13329 vmx->host_rsp = 0;
13330
13331 /* Unpin physical memory we referred to in vmcs02 */
13332 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020013333 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020013334 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013335 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080013336 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020013337 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020013338 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080013339 }
Wincy Van705699a2015-02-03 23:58:17 +080013340 if (vmx->nested.pi_desc_page) {
13341 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020013342 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +080013343 vmx->nested.pi_desc_page = NULL;
13344 vmx->nested.pi_desc = NULL;
13345 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013346
13347 /*
Tang Chen38b99172014-09-24 15:57:54 +080013348 * We are now running in L2, mmu_notifier will force to reload the
13349 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
13350 */
Wanpeng Lic83b6d12016-09-06 17:20:33 +080013351 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Tang Chen38b99172014-09-24 15:57:54 +080013352
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013353 if (enable_shadow_vmcs && exit_reason != -1)
Abel Gordon012f83c2013-04-18 14:39:25 +030013354 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010013355
13356 /* in case we halted in L2 */
13357 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Jim Mattson4f350c62017-09-14 16:31:44 -070013358
13359 if (likely(!vmx->fail)) {
13360 /*
13361 * TODO: SDM says that with acknowledge interrupt on
13362 * exit, bit 31 of the VM-exit interrupt information
13363 * (valid interrupt) is always set to 1 on
13364 * EXIT_REASON_EXTERNAL_INTERRUPT, so we shouldn't
13365 * need kvm_cpu_has_interrupt(). See the commit
13366 * message for details.
13367 */
13368 if (nested_exit_intr_ack_set(vcpu) &&
13369 exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT &&
13370 kvm_cpu_has_interrupt(vcpu)) {
13371 int irq = kvm_cpu_get_interrupt(vcpu);
13372 WARN_ON(irq < 0);
13373 vmcs12->vm_exit_intr_info = irq |
13374 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
13375 }
13376
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013377 if (exit_reason != -1)
13378 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
13379 vmcs12->exit_qualification,
13380 vmcs12->idt_vectoring_info_field,
13381 vmcs12->vm_exit_intr_info,
13382 vmcs12->vm_exit_intr_error_code,
13383 KVM_ISA_VMX);
Jim Mattson4f350c62017-09-14 16:31:44 -070013384
13385 load_vmcs12_host_state(vcpu, vmcs12);
13386
13387 return;
13388 }
13389
13390 /*
13391 * After an early L2 VM-entry failure, we're now back
13392 * in L1 which thinks it just finished a VMLAUNCH or
13393 * VMRESUME instruction, so we need to set the failure
13394 * flag and the VM-instruction error field of the VMCS
13395 * accordingly.
13396 */
13397 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
Wanpeng Li5af41572017-11-05 16:54:49 -080013398
13399 load_vmcs12_mmu_host_state(vcpu, vmcs12);
13400
Jim Mattson4f350c62017-09-14 16:31:44 -070013401 /*
13402 * The emulated instruction was already skipped in
13403 * nested_vmx_run, but the updated RIP was never
13404 * written back to the vmcs01.
13405 */
13406 skip_emulated_instruction(vcpu);
13407 vmx->fail = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030013408}
13409
Nadav Har'El7c177932011-05-25 23:12:04 +030013410/*
Jan Kiszka42124922014-01-04 18:47:19 +010013411 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
13412 */
13413static void vmx_leave_nested(struct kvm_vcpu *vcpu)
13414{
Wanpeng Li2f707d92017-03-06 04:03:28 -080013415 if (is_guest_mode(vcpu)) {
13416 to_vmx(vcpu)->nested.nested_run_pending = 0;
Jan Kiszka533558b2014-01-04 18:47:20 +010013417 nested_vmx_vmexit(vcpu, -1, 0, 0);
Wanpeng Li2f707d92017-03-06 04:03:28 -080013418 }
Jan Kiszka42124922014-01-04 18:47:19 +010013419 free_nested(to_vmx(vcpu));
13420}
13421
13422/*
Nadav Har'El7c177932011-05-25 23:12:04 +030013423 * L1's failure to enter L2 is a subset of a normal exit, as explained in
13424 * 23.7 "VM-entry failures during or after loading guest state" (this also
13425 * lists the acceptable exit-reason and exit-qualification parameters).
13426 * It should only be called before L2 actually succeeded to run, and when
13427 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
13428 */
13429static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
13430 struct vmcs12 *vmcs12,
13431 u32 reason, unsigned long qualification)
13432{
13433 load_vmcs12_host_state(vcpu, vmcs12);
13434 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
13435 vmcs12->exit_qualification = qualification;
13436 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030013437 if (enable_shadow_vmcs)
13438 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030013439}
13440
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020013441static int vmx_check_intercept(struct kvm_vcpu *vcpu,
13442 struct x86_instruction_info *info,
13443 enum x86_intercept_stage stage)
13444{
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +020013445 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
13446 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
13447
13448 /*
13449 * RDPID causes #UD if disabled through secondary execution controls.
13450 * Because it is marked as EmulateOnUD, we need to intercept it here.
13451 */
13452 if (info->intercept == x86_intercept_rdtscp &&
13453 !nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDTSCP)) {
13454 ctxt->exception.vector = UD_VECTOR;
13455 ctxt->exception.error_code_valid = false;
13456 return X86EMUL_PROPAGATE_FAULT;
13457 }
13458
13459 /* TODO: check more intercepts... */
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020013460 return X86EMUL_CONTINUE;
13461}
13462
Yunhong Jiang64672c92016-06-13 14:19:59 -070013463#ifdef CONFIG_X86_64
13464/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
13465static inline int u64_shl_div_u64(u64 a, unsigned int shift,
13466 u64 divisor, u64 *result)
13467{
13468 u64 low = a << shift, high = a >> (64 - shift);
13469
13470 /* To avoid the overflow on divq */
13471 if (high >= divisor)
13472 return 1;
13473
13474 /* Low hold the result, high hold rem which is discarded */
13475 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
13476 "rm" (divisor), "0" (low), "1" (high));
13477 *result = low;
13478
13479 return 0;
13480}
13481
13482static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc)
13483{
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +020013484 struct vcpu_vmx *vmx;
Wanpeng Lic5ce8232018-05-29 14:53:17 +080013485 u64 tscl, guest_tscl, delta_tsc, lapic_timer_advance_cycles;
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +020013486
13487 if (kvm_mwait_in_guest(vcpu->kvm))
13488 return -EOPNOTSUPP;
13489
13490 vmx = to_vmx(vcpu);
13491 tscl = rdtsc();
13492 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
13493 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Wanpeng Lic5ce8232018-05-29 14:53:17 +080013494 lapic_timer_advance_cycles = nsec_to_cycles(vcpu, lapic_timer_advance_ns);
13495
13496 if (delta_tsc > lapic_timer_advance_cycles)
13497 delta_tsc -= lapic_timer_advance_cycles;
13498 else
13499 delta_tsc = 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -070013500
13501 /* Convert to host delta tsc if tsc scaling is enabled */
13502 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
13503 u64_shl_div_u64(delta_tsc,
13504 kvm_tsc_scaling_ratio_frac_bits,
13505 vcpu->arch.tsc_scaling_ratio,
13506 &delta_tsc))
13507 return -ERANGE;
13508
13509 /*
13510 * If the delta tsc can't fit in the 32 bit after the multi shift,
13511 * we can't use the preemption timer.
13512 * It's possible that it fits on later vmentries, but checking
13513 * on every vmentry is costly so we just use an hrtimer.
13514 */
13515 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
13516 return -ERANGE;
13517
13518 vmx->hv_deadline_tsc = tscl + delta_tsc;
Wanpeng Lic8533542017-06-29 06:28:09 -070013519 return delta_tsc == 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -070013520}
13521
13522static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
13523{
Sean Christophersonf459a702018-08-27 15:21:11 -070013524 to_vmx(vcpu)->hv_deadline_tsc = -1;
Yunhong Jiang64672c92016-06-13 14:19:59 -070013525}
13526#endif
13527
Paolo Bonzini48d89b92014-08-26 13:27:46 +020013528static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020013529{
Wanpeng Lib31c1142018-03-12 04:53:04 -070013530 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +020013531 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020013532}
13533
Kai Huang843e4332015-01-28 10:54:28 +080013534static void vmx_slot_enable_log_dirty(struct kvm *kvm,
13535 struct kvm_memory_slot *slot)
13536{
13537 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
13538 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
13539}
13540
13541static void vmx_slot_disable_log_dirty(struct kvm *kvm,
13542 struct kvm_memory_slot *slot)
13543{
13544 kvm_mmu_slot_set_dirty(kvm, slot);
13545}
13546
13547static void vmx_flush_log_dirty(struct kvm *kvm)
13548{
13549 kvm_flush_pml_buffers(kvm);
13550}
13551
Bandan Dasc5f983f2017-05-05 15:25:14 -040013552static int vmx_write_pml_buffer(struct kvm_vcpu *vcpu)
13553{
13554 struct vmcs12 *vmcs12;
13555 struct vcpu_vmx *vmx = to_vmx(vcpu);
13556 gpa_t gpa;
13557 struct page *page = NULL;
13558 u64 *pml_address;
13559
13560 if (is_guest_mode(vcpu)) {
13561 WARN_ON_ONCE(vmx->nested.pml_full);
13562
13563 /*
13564 * Check if PML is enabled for the nested guest.
13565 * Whether eptp bit 6 is set is already checked
13566 * as part of A/D emulation.
13567 */
13568 vmcs12 = get_vmcs12(vcpu);
13569 if (!nested_cpu_has_pml(vmcs12))
13570 return 0;
13571
Dan Carpenter47698862017-05-10 22:43:17 +030013572 if (vmcs12->guest_pml_index >= PML_ENTITY_NUM) {
Bandan Dasc5f983f2017-05-05 15:25:14 -040013573 vmx->nested.pml_full = true;
13574 return 1;
13575 }
13576
13577 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS) & ~0xFFFull;
13578
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020013579 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->pml_address);
13580 if (is_error_page(page))
Bandan Dasc5f983f2017-05-05 15:25:14 -040013581 return 0;
13582
13583 pml_address = kmap(page);
13584 pml_address[vmcs12->guest_pml_index--] = gpa;
13585 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020013586 kvm_release_page_clean(page);
Bandan Dasc5f983f2017-05-05 15:25:14 -040013587 }
13588
13589 return 0;
13590}
13591
Kai Huang843e4332015-01-28 10:54:28 +080013592static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
13593 struct kvm_memory_slot *memslot,
13594 gfn_t offset, unsigned long mask)
13595{
13596 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
13597}
13598
Paolo Bonzinicd39e112017-06-06 12:57:04 +020013599static void __pi_post_block(struct kvm_vcpu *vcpu)
13600{
13601 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
13602 struct pi_desc old, new;
13603 unsigned int dest;
Paolo Bonzinicd39e112017-06-06 12:57:04 +020013604
13605 do {
13606 old.control = new.control = pi_desc->control;
Paolo Bonzini8b306e22017-06-06 12:57:05 +020013607 WARN(old.nv != POSTED_INTR_WAKEUP_VECTOR,
13608 "Wakeup handler not enabled while the VCPU is blocked\n");
Paolo Bonzinicd39e112017-06-06 12:57:04 +020013609
13610 dest = cpu_physical_id(vcpu->cpu);
13611
13612 if (x2apic_enabled())
13613 new.ndst = dest;
13614 else
13615 new.ndst = (dest << 8) & 0xFF00;
13616
Paolo Bonzinicd39e112017-06-06 12:57:04 +020013617 /* set 'NV' to 'notification vector' */
13618 new.nv = POSTED_INTR_VECTOR;
Paolo Bonzinic0a16662017-09-28 17:58:41 +020013619 } while (cmpxchg64(&pi_desc->control, old.control,
13620 new.control) != old.control);
Paolo Bonzinicd39e112017-06-06 12:57:04 +020013621
Paolo Bonzini8b306e22017-06-06 12:57:05 +020013622 if (!WARN_ON_ONCE(vcpu->pre_pcpu == -1)) {
13623 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
Paolo Bonzinicd39e112017-06-06 12:57:04 +020013624 list_del(&vcpu->blocked_vcpu_list);
Paolo Bonzini8b306e22017-06-06 12:57:05 +020013625 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
Paolo Bonzinicd39e112017-06-06 12:57:04 +020013626 vcpu->pre_pcpu = -1;
13627 }
13628}
13629
Feng Wuefc64402015-09-18 22:29:51 +080013630/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080013631 * This routine does the following things for vCPU which is going
13632 * to be blocked if VT-d PI is enabled.
13633 * - Store the vCPU to the wakeup list, so when interrupts happen
13634 * we can find the right vCPU to wake up.
13635 * - Change the Posted-interrupt descriptor as below:
13636 * 'NDST' <-- vcpu->pre_pcpu
13637 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
13638 * - If 'ON' is set during this process, which means at least one
13639 * interrupt is posted for this vCPU, we cannot block it, in
13640 * this case, return 1, otherwise, return 0.
13641 *
13642 */
Yunhong Jiangbc225122016-06-13 14:19:58 -070013643static int pi_pre_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080013644{
Feng Wubf9f6ac2015-09-18 22:29:55 +080013645 unsigned int dest;
13646 struct pi_desc old, new;
13647 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
13648
13649 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080013650 !irq_remapping_cap(IRQ_POSTING_CAP) ||
13651 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080013652 return 0;
13653
Paolo Bonzini8b306e22017-06-06 12:57:05 +020013654 WARN_ON(irqs_disabled());
13655 local_irq_disable();
13656 if (!WARN_ON_ONCE(vcpu->pre_pcpu != -1)) {
13657 vcpu->pre_pcpu = vcpu->cpu;
13658 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
13659 list_add_tail(&vcpu->blocked_vcpu_list,
13660 &per_cpu(blocked_vcpu_on_cpu,
13661 vcpu->pre_pcpu));
13662 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
13663 }
Feng Wubf9f6ac2015-09-18 22:29:55 +080013664
13665 do {
13666 old.control = new.control = pi_desc->control;
13667
Feng Wubf9f6ac2015-09-18 22:29:55 +080013668 WARN((pi_desc->sn == 1),
13669 "Warning: SN field of posted-interrupts "
13670 "is set before blocking\n");
13671
13672 /*
13673 * Since vCPU can be preempted during this process,
13674 * vcpu->cpu could be different with pre_pcpu, we
13675 * need to set pre_pcpu as the destination of wakeup
13676 * notification event, then we can find the right vCPU
13677 * to wakeup in wakeup handler if interrupts happen
13678 * when the vCPU is in blocked state.
13679 */
13680 dest = cpu_physical_id(vcpu->pre_pcpu);
13681
13682 if (x2apic_enabled())
13683 new.ndst = dest;
13684 else
13685 new.ndst = (dest << 8) & 0xFF00;
13686
13687 /* set 'NV' to 'wakeup vector' */
13688 new.nv = POSTED_INTR_WAKEUP_VECTOR;
Paolo Bonzinic0a16662017-09-28 17:58:41 +020013689 } while (cmpxchg64(&pi_desc->control, old.control,
13690 new.control) != old.control);
Feng Wubf9f6ac2015-09-18 22:29:55 +080013691
Paolo Bonzini8b306e22017-06-06 12:57:05 +020013692 /* We should not block the vCPU if an interrupt is posted for it. */
13693 if (pi_test_on(pi_desc) == 1)
13694 __pi_post_block(vcpu);
13695
13696 local_irq_enable();
13697 return (vcpu->pre_pcpu == -1);
Feng Wubf9f6ac2015-09-18 22:29:55 +080013698}
13699
Yunhong Jiangbc225122016-06-13 14:19:58 -070013700static int vmx_pre_block(struct kvm_vcpu *vcpu)
13701{
13702 if (pi_pre_block(vcpu))
13703 return 1;
13704
Yunhong Jiang64672c92016-06-13 14:19:59 -070013705 if (kvm_lapic_hv_timer_in_use(vcpu))
13706 kvm_lapic_switch_to_sw_timer(vcpu);
13707
Yunhong Jiangbc225122016-06-13 14:19:58 -070013708 return 0;
13709}
13710
13711static void pi_post_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080013712{
Paolo Bonzini8b306e22017-06-06 12:57:05 +020013713 if (vcpu->pre_pcpu == -1)
Feng Wubf9f6ac2015-09-18 22:29:55 +080013714 return;
13715
Paolo Bonzini8b306e22017-06-06 12:57:05 +020013716 WARN_ON(irqs_disabled());
13717 local_irq_disable();
Paolo Bonzinicd39e112017-06-06 12:57:04 +020013718 __pi_post_block(vcpu);
Paolo Bonzini8b306e22017-06-06 12:57:05 +020013719 local_irq_enable();
Feng Wubf9f6ac2015-09-18 22:29:55 +080013720}
13721
Yunhong Jiangbc225122016-06-13 14:19:58 -070013722static void vmx_post_block(struct kvm_vcpu *vcpu)
13723{
Yunhong Jiang64672c92016-06-13 14:19:59 -070013724 if (kvm_x86_ops->set_hv_timer)
13725 kvm_lapic_switch_to_hv_timer(vcpu);
13726
Yunhong Jiangbc225122016-06-13 14:19:58 -070013727 pi_post_block(vcpu);
13728}
13729
Feng Wubf9f6ac2015-09-18 22:29:55 +080013730/*
Feng Wuefc64402015-09-18 22:29:51 +080013731 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
13732 *
13733 * @kvm: kvm
13734 * @host_irq: host irq of the interrupt
13735 * @guest_irq: gsi of the interrupt
13736 * @set: set or unset PI
13737 * returns 0 on success, < 0 on failure
13738 */
13739static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
13740 uint32_t guest_irq, bool set)
13741{
13742 struct kvm_kernel_irq_routing_entry *e;
13743 struct kvm_irq_routing_table *irq_rt;
13744 struct kvm_lapic_irq irq;
13745 struct kvm_vcpu *vcpu;
13746 struct vcpu_data vcpu_info;
Jan H. Schönherr3a8b0672017-09-07 19:02:30 +010013747 int idx, ret = 0;
Feng Wuefc64402015-09-18 22:29:51 +080013748
13749 if (!kvm_arch_has_assigned_device(kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080013750 !irq_remapping_cap(IRQ_POSTING_CAP) ||
13751 !kvm_vcpu_apicv_active(kvm->vcpus[0]))
Feng Wuefc64402015-09-18 22:29:51 +080013752 return 0;
13753
13754 idx = srcu_read_lock(&kvm->irq_srcu);
13755 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
Jan H. Schönherr3a8b0672017-09-07 19:02:30 +010013756 if (guest_irq >= irq_rt->nr_rt_entries ||
13757 hlist_empty(&irq_rt->map[guest_irq])) {
13758 pr_warn_once("no route for guest_irq %u/%u (broken user space?)\n",
13759 guest_irq, irq_rt->nr_rt_entries);
13760 goto out;
13761 }
Feng Wuefc64402015-09-18 22:29:51 +080013762
13763 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
13764 if (e->type != KVM_IRQ_ROUTING_MSI)
13765 continue;
13766 /*
13767 * VT-d PI cannot support posting multicast/broadcast
13768 * interrupts to a vCPU, we still use interrupt remapping
13769 * for these kind of interrupts.
13770 *
13771 * For lowest-priority interrupts, we only support
13772 * those with single CPU as the destination, e.g. user
13773 * configures the interrupts via /proc/irq or uses
13774 * irqbalance to make the interrupts single-CPU.
13775 *
13776 * We will support full lowest-priority interrupt later.
13777 */
13778
Radim Krčmář371313132016-07-12 22:09:27 +020013779 kvm_set_msi_irq(kvm, e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080013780 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
13781 /*
13782 * Make sure the IRTE is in remapped mode if
13783 * we don't handle it in posted mode.
13784 */
13785 ret = irq_set_vcpu_affinity(host_irq, NULL);
13786 if (ret < 0) {
13787 printk(KERN_INFO
13788 "failed to back to remapped mode, irq: %u\n",
13789 host_irq);
13790 goto out;
13791 }
13792
Feng Wuefc64402015-09-18 22:29:51 +080013793 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080013794 }
Feng Wuefc64402015-09-18 22:29:51 +080013795
13796 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
13797 vcpu_info.vector = irq.vector;
13798
hu huajun2698d822018-04-11 15:16:40 +080013799 trace_kvm_pi_irte_update(host_irq, vcpu->vcpu_id, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080013800 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
13801
13802 if (set)
13803 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
Haozhong Zhangdc91f2e2017-09-18 09:56:49 +080013804 else
Feng Wuefc64402015-09-18 22:29:51 +080013805 ret = irq_set_vcpu_affinity(host_irq, NULL);
Feng Wuefc64402015-09-18 22:29:51 +080013806
13807 if (ret < 0) {
13808 printk(KERN_INFO "%s: failed to update PI IRTE\n",
13809 __func__);
13810 goto out;
13811 }
13812 }
13813
13814 ret = 0;
13815out:
13816 srcu_read_unlock(&kvm->irq_srcu, idx);
13817 return ret;
13818}
13819
Ashok Rajc45dcc72016-06-22 14:59:56 +080013820static void vmx_setup_mce(struct kvm_vcpu *vcpu)
13821{
13822 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
13823 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
13824 FEATURE_CONTROL_LMCE;
13825 else
13826 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
13827 ~FEATURE_CONTROL_LMCE;
13828}
13829
Ladi Prosek72d7b372017-10-11 16:54:41 +020013830static int vmx_smi_allowed(struct kvm_vcpu *vcpu)
13831{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013832 /* we need a nested vmexit to enter SMM, postpone if run is pending */
13833 if (to_vmx(vcpu)->nested.nested_run_pending)
13834 return 0;
Ladi Prosek72d7b372017-10-11 16:54:41 +020013835 return 1;
13836}
13837
Ladi Prosek0234bf82017-10-11 16:54:40 +020013838static int vmx_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
13839{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013840 struct vcpu_vmx *vmx = to_vmx(vcpu);
13841
13842 vmx->nested.smm.guest_mode = is_guest_mode(vcpu);
13843 if (vmx->nested.smm.guest_mode)
13844 nested_vmx_vmexit(vcpu, -1, 0, 0);
13845
13846 vmx->nested.smm.vmxon = vmx->nested.vmxon;
13847 vmx->nested.vmxon = false;
Wanpeng Licaa057a2018-03-12 04:53:03 -070013848 vmx_clear_hlt(vcpu);
Ladi Prosek0234bf82017-10-11 16:54:40 +020013849 return 0;
13850}
13851
13852static int vmx_pre_leave_smm(struct kvm_vcpu *vcpu, u64 smbase)
13853{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013854 struct vcpu_vmx *vmx = to_vmx(vcpu);
13855 int ret;
13856
13857 if (vmx->nested.smm.vmxon) {
13858 vmx->nested.vmxon = true;
13859 vmx->nested.smm.vmxon = false;
13860 }
13861
13862 if (vmx->nested.smm.guest_mode) {
13863 vcpu->arch.hflags &= ~HF_SMM_MASK;
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020013864 ret = enter_vmx_non_root_mode(vcpu, NULL);
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020013865 vcpu->arch.hflags |= HF_SMM_MASK;
13866 if (ret)
13867 return ret;
13868
13869 vmx->nested.smm.guest_mode = false;
13870 }
Ladi Prosek0234bf82017-10-11 16:54:40 +020013871 return 0;
13872}
13873
Ladi Prosekcc3d9672017-10-17 16:02:39 +020013874static int enable_smi_window(struct kvm_vcpu *vcpu)
13875{
13876 return 0;
13877}
13878
Jim Mattson8fcc4b52018-07-10 11:27:20 +020013879static int vmx_get_nested_state(struct kvm_vcpu *vcpu,
13880 struct kvm_nested_state __user *user_kvm_nested_state,
13881 u32 user_data_size)
13882{
13883 struct vcpu_vmx *vmx;
13884 struct vmcs12 *vmcs12;
13885 struct kvm_nested_state kvm_state = {
13886 .flags = 0,
13887 .format = 0,
13888 .size = sizeof(kvm_state),
13889 .vmx.vmxon_pa = -1ull,
13890 .vmx.vmcs_pa = -1ull,
13891 };
13892
13893 if (!vcpu)
13894 return kvm_state.size + 2 * VMCS12_SIZE;
13895
13896 vmx = to_vmx(vcpu);
13897 vmcs12 = get_vmcs12(vcpu);
13898 if (nested_vmx_allowed(vcpu) &&
13899 (vmx->nested.vmxon || vmx->nested.smm.vmxon)) {
13900 kvm_state.vmx.vmxon_pa = vmx->nested.vmxon_ptr;
13901 kvm_state.vmx.vmcs_pa = vmx->nested.current_vmptr;
13902
Paolo Bonzinifa58a9f2018-07-18 19:45:51 +020013903 if (vmx->nested.current_vmptr != -1ull) {
Jim Mattson8fcc4b52018-07-10 11:27:20 +020013904 kvm_state.size += VMCS12_SIZE;
13905
Paolo Bonzinifa58a9f2018-07-18 19:45:51 +020013906 if (is_guest_mode(vcpu) &&
13907 nested_cpu_has_shadow_vmcs(vmcs12) &&
13908 vmcs12->vmcs_link_pointer != -1ull)
13909 kvm_state.size += VMCS12_SIZE;
13910 }
13911
Jim Mattson8fcc4b52018-07-10 11:27:20 +020013912 if (vmx->nested.smm.vmxon)
13913 kvm_state.vmx.smm.flags |= KVM_STATE_NESTED_SMM_VMXON;
13914
13915 if (vmx->nested.smm.guest_mode)
13916 kvm_state.vmx.smm.flags |= KVM_STATE_NESTED_SMM_GUEST_MODE;
13917
13918 if (is_guest_mode(vcpu)) {
13919 kvm_state.flags |= KVM_STATE_NESTED_GUEST_MODE;
13920
13921 if (vmx->nested.nested_run_pending)
13922 kvm_state.flags |= KVM_STATE_NESTED_RUN_PENDING;
13923 }
13924 }
13925
13926 if (user_data_size < kvm_state.size)
13927 goto out;
13928
13929 if (copy_to_user(user_kvm_nested_state, &kvm_state, sizeof(kvm_state)))
13930 return -EFAULT;
13931
13932 if (vmx->nested.current_vmptr == -1ull)
13933 goto out;
13934
13935 /*
13936 * When running L2, the authoritative vmcs12 state is in the
13937 * vmcs02. When running L1, the authoritative vmcs12 state is
13938 * in the shadow vmcs linked to vmcs01, unless
13939 * sync_shadow_vmcs is set, in which case, the authoritative
13940 * vmcs12 state is in the vmcs12 already.
13941 */
13942 if (is_guest_mode(vcpu))
13943 sync_vmcs12(vcpu, vmcs12);
13944 else if (enable_shadow_vmcs && !vmx->nested.sync_shadow_vmcs)
13945 copy_shadow_to_vmcs12(vmx);
13946
13947 if (copy_to_user(user_kvm_nested_state->data, vmcs12, sizeof(*vmcs12)))
13948 return -EFAULT;
13949
Paolo Bonzinifa58a9f2018-07-18 19:45:51 +020013950 if (nested_cpu_has_shadow_vmcs(vmcs12) &&
13951 vmcs12->vmcs_link_pointer != -1ull) {
13952 if (copy_to_user(user_kvm_nested_state->data + VMCS12_SIZE,
13953 get_shadow_vmcs12(vcpu), sizeof(*vmcs12)))
13954 return -EFAULT;
13955 }
13956
Jim Mattson8fcc4b52018-07-10 11:27:20 +020013957out:
13958 return kvm_state.size;
13959}
13960
13961static int vmx_set_nested_state(struct kvm_vcpu *vcpu,
13962 struct kvm_nested_state __user *user_kvm_nested_state,
13963 struct kvm_nested_state *kvm_state)
13964{
13965 struct vcpu_vmx *vmx = to_vmx(vcpu);
13966 struct vmcs12 *vmcs12;
13967 u32 exit_qual;
13968 int ret;
13969
13970 if (kvm_state->format != 0)
13971 return -EINVAL;
13972
13973 if (!nested_vmx_allowed(vcpu))
13974 return kvm_state->vmx.vmxon_pa == -1ull ? 0 : -EINVAL;
13975
13976 if (kvm_state->vmx.vmxon_pa == -1ull) {
13977 if (kvm_state->vmx.smm.flags)
13978 return -EINVAL;
13979
13980 if (kvm_state->vmx.vmcs_pa != -1ull)
13981 return -EINVAL;
13982
13983 vmx_leave_nested(vcpu);
13984 return 0;
13985 }
13986
13987 if (!page_address_valid(vcpu, kvm_state->vmx.vmxon_pa))
13988 return -EINVAL;
13989
13990 if (kvm_state->size < sizeof(kvm_state) + sizeof(*vmcs12))
13991 return -EINVAL;
13992
13993 if (kvm_state->vmx.vmcs_pa == kvm_state->vmx.vmxon_pa ||
13994 !page_address_valid(vcpu, kvm_state->vmx.vmcs_pa))
13995 return -EINVAL;
13996
13997 if ((kvm_state->vmx.smm.flags & KVM_STATE_NESTED_SMM_GUEST_MODE) &&
13998 (kvm_state->flags & KVM_STATE_NESTED_GUEST_MODE))
13999 return -EINVAL;
14000
14001 if (kvm_state->vmx.smm.flags &
14002 ~(KVM_STATE_NESTED_SMM_GUEST_MODE | KVM_STATE_NESTED_SMM_VMXON))
14003 return -EINVAL;
14004
Paolo Bonzini5bea5122018-09-18 15:19:17 +020014005 /*
14006 * SMM temporarily disables VMX, so we cannot be in guest mode,
14007 * nor can VMLAUNCH/VMRESUME be pending. Outside SMM, SMM flags
14008 * must be zero.
14009 */
14010 if (is_smm(vcpu) ? kvm_state->flags : kvm_state->vmx.smm.flags)
14011 return -EINVAL;
14012
Jim Mattson8fcc4b52018-07-10 11:27:20 +020014013 if ((kvm_state->vmx.smm.flags & KVM_STATE_NESTED_SMM_GUEST_MODE) &&
14014 !(kvm_state->vmx.smm.flags & KVM_STATE_NESTED_SMM_VMXON))
14015 return -EINVAL;
14016
14017 vmx_leave_nested(vcpu);
14018 if (kvm_state->vmx.vmxon_pa == -1ull)
14019 return 0;
14020
14021 vmx->nested.vmxon_ptr = kvm_state->vmx.vmxon_pa;
14022 ret = enter_vmx_operation(vcpu);
14023 if (ret)
14024 return ret;
14025
14026 set_current_vmptr(vmx, kvm_state->vmx.vmcs_pa);
14027
14028 if (kvm_state->vmx.smm.flags & KVM_STATE_NESTED_SMM_VMXON) {
14029 vmx->nested.smm.vmxon = true;
14030 vmx->nested.vmxon = false;
14031
14032 if (kvm_state->vmx.smm.flags & KVM_STATE_NESTED_SMM_GUEST_MODE)
14033 vmx->nested.smm.guest_mode = true;
14034 }
14035
14036 vmcs12 = get_vmcs12(vcpu);
14037 if (copy_from_user(vmcs12, user_kvm_nested_state->data, sizeof(*vmcs12)))
14038 return -EFAULT;
14039
Liran Alon392b2f22018-06-23 02:35:01 +030014040 if (vmcs12->hdr.revision_id != VMCS12_REVISION)
Jim Mattson8fcc4b52018-07-10 11:27:20 +020014041 return -EINVAL;
14042
14043 if (!(kvm_state->flags & KVM_STATE_NESTED_GUEST_MODE))
14044 return 0;
14045
14046 vmx->nested.nested_run_pending =
14047 !!(kvm_state->flags & KVM_STATE_NESTED_RUN_PENDING);
14048
Paolo Bonzinifa58a9f2018-07-18 19:45:51 +020014049 if (nested_cpu_has_shadow_vmcs(vmcs12) &&
14050 vmcs12->vmcs_link_pointer != -1ull) {
14051 struct vmcs12 *shadow_vmcs12 = get_shadow_vmcs12(vcpu);
14052 if (kvm_state->size < sizeof(kvm_state) + 2 * sizeof(*vmcs12))
14053 return -EINVAL;
14054
14055 if (copy_from_user(shadow_vmcs12,
14056 user_kvm_nested_state->data + VMCS12_SIZE,
14057 sizeof(*vmcs12)))
14058 return -EFAULT;
14059
14060 if (shadow_vmcs12->hdr.revision_id != VMCS12_REVISION ||
14061 !shadow_vmcs12->hdr.shadow_vmcs)
14062 return -EINVAL;
14063 }
14064
Jim Mattson8fcc4b52018-07-10 11:27:20 +020014065 if (check_vmentry_prereqs(vcpu, vmcs12) ||
14066 check_vmentry_postreqs(vcpu, vmcs12, &exit_qual))
14067 return -EINVAL;
14068
Jim Mattson8fcc4b52018-07-10 11:27:20 +020014069 vmx->nested.dirty_vmcs12 = true;
14070 ret = enter_vmx_non_root_mode(vcpu, NULL);
14071 if (ret)
14072 return -EINVAL;
14073
14074 return 0;
14075}
14076
Kees Cook404f6aa2016-08-08 16:29:06 -070014077static struct kvm_x86_ops vmx_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080014078 .cpu_has_kvm_support = cpu_has_kvm_support,
14079 .disabled_by_bios = vmx_disabled_by_bios,
14080 .hardware_setup = hardware_setup,
14081 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030014082 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014083 .hardware_enable = hardware_enable,
14084 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080014085 .cpu_has_accelerated_tpr = report_flexpriority,
Tom Lendackybc226f02018-05-10 22:06:39 +020014086 .has_emulated_msr = vmx_has_emulated_msr,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014087
Wanpeng Lib31c1142018-03-12 04:53:04 -070014088 .vm_init = vmx_vm_init,
Sean Christopherson434a1e92018-03-20 12:17:18 -070014089 .vm_alloc = vmx_vm_alloc,
14090 .vm_free = vmx_vm_free,
Wanpeng Lib31c1142018-03-12 04:53:04 -070014091
Avi Kivity6aa8b732006-12-10 02:21:36 -080014092 .vcpu_create = vmx_create_vcpu,
14093 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030014094 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014095
Sean Christopherson6d6095b2018-07-23 12:32:44 -070014096 .prepare_guest_switch = vmx_prepare_switch_to_guest,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014097 .vcpu_load = vmx_vcpu_load,
14098 .vcpu_put = vmx_vcpu_put,
14099
Paolo Bonzinia96036b2015-11-10 11:55:36 +010014100 .update_bp_intercept = update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -060014101 .get_msr_feature = vmx_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014102 .get_msr = vmx_get_msr,
14103 .set_msr = vmx_set_msr,
14104 .get_segment_base = vmx_get_segment_base,
14105 .get_segment = vmx_get_segment,
14106 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020014107 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014108 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020014109 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020014110 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030014111 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014112 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014113 .set_cr3 = vmx_set_cr3,
14114 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014115 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014116 .get_idt = vmx_get_idt,
14117 .set_idt = vmx_set_idt,
14118 .get_gdt = vmx_get_gdt,
14119 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010014120 .get_dr6 = vmx_get_dr6,
14121 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030014122 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010014123 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030014124 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014125 .get_rflags = vmx_get_rflags,
14126 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +080014127
Avi Kivity6aa8b732006-12-10 02:21:36 -080014128 .tlb_flush = vmx_flush_tlb,
Junaid Shahidfaff8752018-06-29 13:10:05 -070014129 .tlb_flush_gva = vmx_flush_tlb_gva,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014130
Avi Kivity6aa8b732006-12-10 02:21:36 -080014131 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020014132 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014133 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040014134 .set_interrupt_shadow = vmx_set_interrupt_shadow,
14135 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020014136 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030014137 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030014138 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020014139 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030014140 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020014141 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030014142 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010014143 .get_nmi_mask = vmx_get_nmi_mask,
14144 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030014145 .enable_nmi_window = enable_nmi_window,
14146 .enable_irq_window = enable_irq_window,
14147 .update_cr8_intercept = update_cr8_intercept,
Jim Mattson8d860bb2018-05-09 16:56:05 -040014148 .set_virtual_apic_mode = vmx_set_virtual_apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080014149 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030014150 .get_enable_apicv = vmx_get_enable_apicv,
14151 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080014152 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +010014153 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Yang Zhangc7c9c562013-01-25 10:18:51 +080014154 .hwapic_irr_update = vmx_hwapic_irr_update,
14155 .hwapic_isr_update = vmx_hwapic_isr_update,
Liran Alone6c67d82018-09-04 10:56:52 +030014156 .guest_apic_has_interrupt = vmx_guest_apic_has_interrupt,
Yang Zhanga20ed542013-04-11 19:25:15 +080014157 .sync_pir_to_irr = vmx_sync_pir_to_irr,
14158 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030014159
Izik Eiduscbc94022007-10-25 00:29:55 +020014160 .set_tss_addr = vmx_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -070014161 .set_identity_map_addr = vmx_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080014162 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080014163 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030014164
Avi Kivity586f9602010-11-18 13:09:54 +020014165 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020014166
Sheng Yang17cc3932010-01-05 19:02:27 +080014167 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080014168
14169 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080014170
14171 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000014172 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020014173
14174 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080014175
14176 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100014177
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020014178 .read_l1_tsc_offset = vmx_read_l1_tsc_offset,
Zachary Amsden99e3e302010-08-19 22:07:17 -100014179 .write_tsc_offset = vmx_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020014180
14181 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020014182
14183 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080014184 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000014185 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080014186 .xsaves_supported = vmx_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +020014187 .umip_emulated = vmx_umip_emulated,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010014188
14189 .check_nested_events = vmx_check_nested_events,
Sean Christophersond264ee02018-08-27 15:21:12 -070014190 .request_immediate_exit = vmx_request_immediate_exit,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020014191
14192 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080014193
14194 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
14195 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
14196 .flush_log_dirty = vmx_flush_log_dirty,
14197 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Bandan Dasc5f983f2017-05-05 15:25:14 -040014198 .write_log_dirty = vmx_write_pml_buffer,
Wei Huang25462f72015-06-19 15:45:05 +020014199
Feng Wubf9f6ac2015-09-18 22:29:55 +080014200 .pre_block = vmx_pre_block,
14201 .post_block = vmx_post_block,
14202
Wei Huang25462f72015-06-19 15:45:05 +020014203 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080014204
14205 .update_pi_irte = vmx_update_pi_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -070014206
14207#ifdef CONFIG_X86_64
14208 .set_hv_timer = vmx_set_hv_timer,
14209 .cancel_hv_timer = vmx_cancel_hv_timer,
14210#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +080014211
14212 .setup_mce = vmx_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +020014213
Jim Mattson8fcc4b52018-07-10 11:27:20 +020014214 .get_nested_state = vmx_get_nested_state,
14215 .set_nested_state = vmx_set_nested_state,
Paolo Bonzini7f7f1ba2018-07-18 18:49:01 +020014216 .get_vmcs12_pages = nested_get_vmcs12_pages,
14217
Ladi Prosek72d7b372017-10-11 16:54:41 +020014218 .smi_allowed = vmx_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +020014219 .pre_enter_smm = vmx_pre_enter_smm,
14220 .pre_leave_smm = vmx_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +020014221 .enable_smi_window = enable_smi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -080014222};
14223
Thomas Gleixner72c6d2d2018-07-13 16:23:16 +020014224static void vmx_cleanup_l1d_flush(void)
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020014225{
14226 if (vmx_l1d_flush_pages) {
14227 free_pages((unsigned long)vmx_l1d_flush_pages, L1D_CACHE_ORDER);
14228 vmx_l1d_flush_pages = NULL;
14229 }
Thomas Gleixner72c6d2d2018-07-13 16:23:16 +020014230 /* Restore state so sysfs ignores VMX */
14231 l1tf_vmx_mitigation = VMENTER_L1D_FLUSH_AUTO;
Konrad Rzeszutek Wilka3994772018-07-02 12:29:30 +020014232}
14233
Thomas Gleixnera7b90202018-07-13 16:23:18 +020014234static void vmx_exit(void)
14235{
14236#ifdef CONFIG_KEXEC_CORE
14237 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
14238 synchronize_rcu();
14239#endif
14240
14241 kvm_exit();
14242
14243#if IS_ENABLED(CONFIG_HYPERV)
14244 if (static_branch_unlikely(&enable_evmcs)) {
14245 int cpu;
14246 struct hv_vp_assist_page *vp_ap;
14247 /*
14248 * Reset everything to support using non-enlightened VMCS
14249 * access later (e.g. when we reload the module with
14250 * enlightened_vmcs=0)
14251 */
14252 for_each_online_cpu(cpu) {
14253 vp_ap = hv_get_vp_assist_page(cpu);
14254
14255 if (!vp_ap)
14256 continue;
14257
14258 vp_ap->current_nested_vmcs = 0;
14259 vp_ap->enlighten_vmentry = 0;
14260 }
14261
14262 static_branch_disable(&enable_evmcs);
14263 }
14264#endif
14265 vmx_cleanup_l1d_flush();
14266}
14267module_exit(vmx_exit);
14268
Avi Kivity6aa8b732006-12-10 02:21:36 -080014269static int __init vmx_init(void)
14270{
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010014271 int r;
14272
14273#if IS_ENABLED(CONFIG_HYPERV)
14274 /*
14275 * Enlightened VMCS usage should be recommended and the host needs
14276 * to support eVMCS v1 or above. We can also disable eVMCS support
14277 * with module parameter.
14278 */
14279 if (enlightened_vmcs &&
14280 ms_hyperv.hints & HV_X64_ENLIGHTENED_VMCS_RECOMMENDED &&
14281 (ms_hyperv.nested_features & HV_X64_ENLIGHTENED_VMCS_VERSION) >=
14282 KVM_EVMCS_VERSION) {
14283 int cpu;
14284
14285 /* Check that we have assist pages on all online CPUs */
14286 for_each_online_cpu(cpu) {
14287 if (!hv_get_vp_assist_page(cpu)) {
14288 enlightened_vmcs = false;
14289 break;
14290 }
14291 }
14292
14293 if (enlightened_vmcs) {
14294 pr_info("KVM: vmx: using Hyper-V Enlightened VMCS\n");
14295 static_branch_enable(&enable_evmcs);
14296 }
14297 } else {
14298 enlightened_vmcs = false;
14299 }
14300#endif
14301
14302 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
Thomas Gleixnera7b90202018-07-13 16:23:18 +020014303 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030014304 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080014305 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080014306
Thomas Gleixnera7b90202018-07-13 16:23:18 +020014307 /*
Thomas Gleixner7db92e12018-07-13 16:23:19 +020014308 * Must be called after kvm_init() so enable_ept is properly set
14309 * up. Hand the parameter mitigation value in which was stored in
14310 * the pre module init parser. If no parameter was given, it will
14311 * contain 'auto' which will be turned into the default 'cond'
14312 * mitigation mode.
Thomas Gleixnera7b90202018-07-13 16:23:18 +020014313 */
Thomas Gleixner7db92e12018-07-13 16:23:19 +020014314 if (boot_cpu_has(X86_BUG_L1TF)) {
14315 r = vmx_setup_l1d_flush(vmentry_l1d_flush_param);
14316 if (r) {
14317 vmx_exit();
14318 return r;
14319 }
Paolo Bonzinia47dd5f2018-07-02 12:47:38 +020014320 }
14321
Dave Young2965faa2015-09-09 15:38:55 -070014322#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080014323 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
14324 crash_vmclear_local_loaded_vmcss);
14325#endif
Jim Mattson21ebf532018-05-01 15:40:28 -070014326 vmx_check_vmcs12_offsets();
Zhang Yanfei8f536b72012-12-06 23:43:34 +080014327
He, Qingfdef3ad2007-04-30 09:45:24 +030014328 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080014329}
Thomas Gleixnera7b90202018-07-13 16:23:18 +020014330module_init(vmx_init);