blob: a547b0052396a9d4bef9183645c54257a3e05e51 [file] [log] [blame]
Thomas Gleixner20c8ccb2019-06-04 10:11:32 +02001// SPDX-License-Identifier: GPL-2.0-only
Carsten Otte043405e2007-10-10 17:16:19 +02002/*
3 * Kernel-based Virtual Machine driver for Linux
4 *
5 * derived from drivers/kvm/kvm_main.c
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03008 * Copyright (C) 2008 Qumranet, Inc.
9 * Copyright IBM Corporation, 2008
Nicolas Kaiser9611c182010-10-06 14:23:22 +020010 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Carsten Otte043405e2007-10-10 17:16:19 +020011 *
12 * Authors:
13 * Avi Kivity <avi@qumranet.com>
14 * Yaniv Kamay <yaniv@qumranet.com>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030015 * Amit Shah <amit.shah@qumranet.com>
16 * Ben-Ami Yassour <benami@il.ibm.com>
Carsten Otte043405e2007-10-10 17:16:19 +020017 */
18
Avi Kivityedf88412007-12-16 11:02:48 +020019#include <linux/kvm_host.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020020#include "irq.h"
彭浩(Richard)88197e62020-05-21 05:57:49 +000021#include "ioapic.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080022#include "mmu.h"
Sheng Yang78376992008-01-28 05:10:22 +080023#include "i8254.h"
Izik Eidus37817f22008-03-24 23:14:53 +020024#include "tss.h"
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030025#include "kvm_cache_regs.h"
Sean Christopherson2f728d62020-02-18 15:29:49 -080026#include "kvm_emulate.h"
Avi Kivity26eef702008-07-03 14:59:22 +030027#include "x86.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020028#include "cpuid.h"
Wei Huang474a5bb2015-06-19 13:54:23 +020029#include "pmu.h"
Andrey Smetanine83d5882015-07-03 15:01:34 +030030#include "hyperv.h"
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -060031#include "lapic.h"
Carsten Otte313a3dc2007-10-11 19:16:52 +020032
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020033#include <linux/clocksource.h>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030034#include <linux/interrupt.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020035#include <linux/kvm.h>
36#include <linux/fs.h>
37#include <linux/vmalloc.h>
Paul Gortmaker1767e932016-07-13 20:19:00 -040038#include <linux/export.h>
39#include <linux/moduleparam.h>
Zhang Xiantao0de10342007-11-20 16:25:04 +080040#include <linux/mman.h>
Marcelo Tosatti2bacc552007-12-12 10:46:12 -050041#include <linux/highmem.h>
Joerg Roedel19de40a2008-12-03 14:43:34 +010042#include <linux/iommu.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030043#include <linux/intel-iommu.h>
Gerd Hoffmannc8076602009-02-04 17:52:04 +010044#include <linux/cpufreq.h>
Avi Kivity18863bd2009-09-07 11:12:18 +030045#include <linux/user-return-notifier.h>
Marcelo Tosattia983fb22009-12-23 14:35:23 -020046#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090047#include <linux/slab.h>
Zhang, Yanminff9d07a2010-04-19 13:32:45 +080048#include <linux/perf_event.h>
Lai Jiangshan7bee3422010-06-02 17:06:03 +080049#include <linux/uaccess.h>
Gleb Natapovaf585b92010-10-14 11:22:46 +020050#include <linux/hash.h>
Joerg Roedela1b60c12011-09-06 18:46:34 +020051#include <linux/pci.h>
Marcelo Tosatti16e8d742012-11-27 23:29:00 -020052#include <linux/timekeeper_internal.h>
53#include <linux/pvclock_gtod.h>
Feng Wu87276882015-09-18 22:29:40 +080054#include <linux/kvm_irqfd.h>
55#include <linux/irqbypass.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010056#include <linux/sched/stat.h>
Wanpeng Li0c5f81d2019-07-06 09:26:51 +080057#include <linux/sched/isolation.h>
Tom Lendackyd0ec49d2017-07-17 16:10:27 -050058#include <linux/mem_encrypt.h>
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +020059#include <linux/entry-kvm.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010060
Avi Kivityaec51dc2009-07-01 16:01:02 +030061#include <trace/events/kvm.h>
Xiao Guangrong2ed152a2010-03-10 19:00:43 +080062
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020063#include <asm/debugreg.h>
Zhang Xiantaod825ed02007-11-14 20:08:51 +080064#include <asm/msr.h>
Avi Kivitya5f61302008-02-20 17:57:21 +020065#include <asm/desc.h>
Huang Ying890ca9a2009-05-11 16:48:15 +080066#include <asm/mce.h>
Ingo Molnarf89e32e2015-04-22 10:58:10 +020067#include <linux/kernel_stat.h>
Ingo Molnar78f7f1e2015-04-24 02:54:44 +020068#include <asm/fpu/internal.h> /* Ugh! */
Zachary Amsden1d5f0662010-08-19 22:07:30 -100069#include <asm/pvclock.h>
Avi Kivity217fc9c2010-08-26 13:38:03 +030070#include <asm/div64.h>
Feng Wuefc64402015-09-18 22:29:51 +080071#include <asm/irq_remapping.h>
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010072#include <asm/mshyperv.h>
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +010073#include <asm/hypervisor.h>
Babu Moger97150922020-09-11 14:29:12 -050074#include <asm/tlbflush.h>
Chao Pengbf8c55d2018-10-24 16:05:14 +080075#include <asm/intel_pt.h>
Masami Hiramatsub3dc0692019-09-06 22:13:59 +090076#include <asm/emulate_prefix.h>
Michael Kelleydd2cb342019-07-01 04:26:06 +000077#include <clocksource/hyperv_timer.h>
Carsten Otte043405e2007-10-10 17:16:19 +020078
Dave Hansend1898b72016-06-01 10:42:20 -070079#define CREATE_TRACE_POINTS
80#include "trace.h"
81
Carsten Otte313a3dc2007-10-11 19:16:52 +020082#define MAX_IO_MSRS 256
Huang Ying890ca9a2009-05-11 16:48:15 +080083#define KVM_MAX_MCE_BANKS 32
Ashok Rajc45dcc72016-06-22 14:59:56 +080084u64 __read_mostly kvm_mce_cap_supported = MCG_CTL_P | MCG_SER_P;
85EXPORT_SYMBOL_GPL(kvm_mce_cap_supported);
Huang Ying890ca9a2009-05-11 16:48:15 +080086
Avi Kivity0f65dd72011-04-20 13:37:53 +030087#define emul_to_vcpu(ctxt) \
Sean Christophersonc9b8b072020-02-18 15:29:48 -080088 ((struct kvm_vcpu *)(ctxt)->vcpu)
Avi Kivity0f65dd72011-04-20 13:37:53 +030089
Joerg Roedel50a37eb2008-01-31 14:57:38 +010090/* EFER defaults:
91 * - enable syscall per default because its emulated by KVM
92 * - enable LME and LMA per default on 64 bit KVM
93 */
94#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080095static
96u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +010097#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080098static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +010099#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +0200100
Sean Christophersonb11306b2019-12-10 14:44:13 -0800101static u64 __read_mostly cr4_reserved_bits = CR4_RESERVED_BITS;
102
Radim Krčmářc5192652016-07-12 22:09:28 +0200103#define KVM_X2APIC_API_VALID_FLAGS (KVM_X2APIC_API_USE_32BIT_IDS | \
104 KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
Radim Krčmář371313132016-07-12 22:09:27 +0200105
Gleb Natapovcb142eb2009-08-09 15:17:40 +0300106static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300107static void process_nmi(struct kvm_vcpu *vcpu);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +0200108static void enter_smm(struct kvm_vcpu *vcpu);
Paolo Bonzini6addfc42014-03-27 11:29:28 +0100109static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
Ken Hofsass01643c52018-01-31 16:03:36 -0800110static void store_regs(struct kvm_vcpu *vcpu);
111static int sync_regs(struct kvm_vcpu *vcpu);
Avi Kivity674eea02008-02-11 18:37:23 +0200112
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700113struct kvm_x86_ops kvm_x86_ops __read_mostly;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300114EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +0800115
Paolo Bonzini893590c2015-11-06 11:46:24 +0100116static bool __read_mostly ignore_msrs = 0;
Rusty Russell476bc002012-01-13 09:32:18 +1030117module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +0200118
Eyal Moscovicifab0aa32017-11-08 14:32:08 +0200119static bool __read_mostly report_ignored_msrs = true;
120module_param(report_ignored_msrs, bool, S_IRUGO | S_IWUSR);
121
Wanpeng Li4c276252018-05-05 04:02:32 -0700122unsigned int min_timer_period_us = 200;
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -0200123module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
124
Marcelo Tosatti630994b2015-05-12 22:42:04 -0300125static bool __read_mostly kvmclock_periodic_sync = true;
126module_param(kvmclock_periodic_sync, bool, S_IRUGO);
127
Paolo Bonzini893590c2015-11-06 11:46:24 +0100128bool __read_mostly kvm_has_tsc_control;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100129EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
Paolo Bonzini893590c2015-11-06 11:46:24 +0100130u32 __read_mostly kvm_max_guest_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100131EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800132u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits;
133EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits);
134u64 __read_mostly kvm_max_tsc_scaling_ratio;
135EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio);
Yunhong Jiang64672c92016-06-13 14:19:59 -0700136u64 __read_mostly kvm_default_tsc_scaling_ratio;
137EXPORT_SYMBOL_GPL(kvm_default_tsc_scaling_ratio);
Joerg Roedel92a1f122011-03-25 09:44:51 +0100138
Zachary Amsdencc578282012-02-03 15:43:50 -0200139/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100140static u32 __read_mostly tsc_tolerance_ppm = 250;
Zachary Amsdencc578282012-02-03 15:43:50 -0200141module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
142
Sean Christophersonc3941d92019-04-17 10:15:33 -0700143/*
144 * lapic timer advance (tscdeadline mode only) in nanoseconds. '-1' enables
145 * adaptive tuning starting from default advancment of 1000ns. '0' disables
146 * advancement entirely. Any other value is used as-is and disables adaptive
147 * tuning, i.e. allows priveleged userspace to set an exact advancement time.
148 */
149static int __read_mostly lapic_timer_advance_ns = -1;
Wanpeng Li0e6edce2019-05-20 16:18:06 +0800150module_param(lapic_timer_advance_ns, int, S_IRUGO | S_IWUSR);
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500151
Feng Wu520040142016-01-25 16:53:33 +0800152static bool __read_mostly vector_hashing = true;
153module_param(vector_hashing, bool, S_IRUGO);
154
Liran Alonc4ae60e2018-03-12 13:12:47 +0200155bool __read_mostly enable_vmware_backdoor = false;
156module_param(enable_vmware_backdoor, bool, S_IRUGO);
157EXPORT_SYMBOL_GPL(enable_vmware_backdoor);
158
Wanpeng Li6c86eed2018-04-03 16:28:49 -0700159static bool __read_mostly force_emulation_prefix = false;
160module_param(force_emulation_prefix, bool, S_IRUGO);
161
Wanpeng Li0c5f81d2019-07-06 09:26:51 +0800162int __read_mostly pi_inject_timer = -1;
163module_param(pi_inject_timer, bint, S_IRUGO | S_IWUSR);
164
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700165/*
166 * Restoring the host value for MSRs that are only consumed when running in
167 * usermode, e.g. SYSCALL MSRs and TSC_AUX, can be deferred until the CPU
168 * returns to userspace, i.e. the kernel can run with the guest's value.
169 */
170#define KVM_MAX_NR_USER_RETURN_MSRS 16
Avi Kivity18863bd2009-09-07 11:12:18 +0300171
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700172struct kvm_user_return_msrs_global {
Avi Kivity18863bd2009-09-07 11:12:18 +0300173 int nr;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700174 u32 msrs[KVM_MAX_NR_USER_RETURN_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300175};
176
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700177struct kvm_user_return_msrs {
Avi Kivity18863bd2009-09-07 11:12:18 +0300178 struct user_return_notifier urn;
179 bool registered;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700180 struct kvm_user_return_msr_values {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800181 u64 host;
182 u64 curr;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700183 } values[KVM_MAX_NR_USER_RETURN_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300184};
185
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700186static struct kvm_user_return_msrs_global __read_mostly user_return_msrs_global;
187static struct kvm_user_return_msrs __percpu *user_return_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300188
Sean Christophersoncfc48182020-03-02 15:56:23 -0800189#define KVM_SUPPORTED_XCR0 (XFEATURE_MASK_FP | XFEATURE_MASK_SSE \
190 | XFEATURE_MASK_YMM | XFEATURE_MASK_BNDREGS \
191 | XFEATURE_MASK_BNDCSR | XFEATURE_MASK_AVX512 \
192 | XFEATURE_MASK_PKRU)
193
Sean Christopherson91661982020-03-02 15:57:06 -0800194u64 __read_mostly host_efer;
195EXPORT_SYMBOL_GPL(host_efer);
196
Mohammed Gamal3edd6832020-07-10 17:48:11 +0200197bool __read_mostly allow_smaller_maxphyaddr;
198EXPORT_SYMBOL_GPL(allow_smaller_maxphyaddr);
199
Aaron Lewis139a12c2019-10-21 16:30:25 -0700200static u64 __read_mostly host_xss;
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100201u64 __read_mostly supported_xss;
202EXPORT_SYMBOL_GPL(supported_xss);
Aaron Lewis139a12c2019-10-21 16:30:25 -0700203
Hollis Blanchard417bc302007-10-31 17:24:23 -0500204struct kvm_stats_debugfs_item debugfs_entries[] = {
Emanuele Giuseppe Esposito812756a2020-04-14 17:56:25 +0200205 VCPU_STAT("pf_fixed", pf_fixed),
206 VCPU_STAT("pf_guest", pf_guest),
207 VCPU_STAT("tlb_flush", tlb_flush),
208 VCPU_STAT("invlpg", invlpg),
209 VCPU_STAT("exits", exits),
210 VCPU_STAT("io_exits", io_exits),
211 VCPU_STAT("mmio_exits", mmio_exits),
212 VCPU_STAT("signal_exits", signal_exits),
213 VCPU_STAT("irq_window", irq_window_exits),
214 VCPU_STAT("nmi_window", nmi_window_exits),
215 VCPU_STAT("halt_exits", halt_exits),
216 VCPU_STAT("halt_successful_poll", halt_successful_poll),
217 VCPU_STAT("halt_attempted_poll", halt_attempted_poll),
218 VCPU_STAT("halt_poll_invalid", halt_poll_invalid),
219 VCPU_STAT("halt_wakeup", halt_wakeup),
220 VCPU_STAT("hypercalls", hypercalls),
221 VCPU_STAT("request_irq", request_irq_exits),
222 VCPU_STAT("irq_exits", irq_exits),
223 VCPU_STAT("host_state_reload", host_state_reload),
224 VCPU_STAT("fpu_reload", fpu_reload),
225 VCPU_STAT("insn_emulation", insn_emulation),
226 VCPU_STAT("insn_emulation_fail", insn_emulation_fail),
227 VCPU_STAT("irq_injections", irq_injections),
228 VCPU_STAT("nmi_injections", nmi_injections),
229 VCPU_STAT("req_event", req_event),
230 VCPU_STAT("l1d_flush", l1d_flush),
David Matlackcb953122020-05-08 11:22:40 -0700231 VCPU_STAT("halt_poll_success_ns", halt_poll_success_ns),
232 VCPU_STAT("halt_poll_fail_ns", halt_poll_fail_ns),
Emanuele Giuseppe Esposito812756a2020-04-14 17:56:25 +0200233 VM_STAT("mmu_shadow_zapped", mmu_shadow_zapped),
234 VM_STAT("mmu_pte_write", mmu_pte_write),
235 VM_STAT("mmu_pte_updated", mmu_pte_updated),
236 VM_STAT("mmu_pde_zapped", mmu_pde_zapped),
237 VM_STAT("mmu_flooded", mmu_flooded),
238 VM_STAT("mmu_recycled", mmu_recycled),
239 VM_STAT("mmu_cache_miss", mmu_cache_miss),
240 VM_STAT("mmu_unsync", mmu_unsync),
241 VM_STAT("remote_tlb_flush", remote_tlb_flush),
242 VM_STAT("largepages", lpages, .mode = 0444),
243 VM_STAT("nx_largepages_splitted", nx_lpage_splits, .mode = 0444),
244 VM_STAT("max_mmu_page_hash_collisions", max_mmu_page_hash_collisions),
Hollis Blanchard417bc302007-10-31 17:24:23 -0500245 { NULL }
246};
247
Dexuan Cui2acf9232010-06-10 11:27:12 +0800248u64 __read_mostly host_xcr0;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800249u64 __read_mostly supported_xcr0;
250EXPORT_SYMBOL_GPL(supported_xcr0);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800251
Sean Christopherson80fbd282020-06-08 11:02:18 -0700252static struct kmem_cache *x86_fpu_cache;
Marc Orrb666a4b2018-11-06 14:53:56 -0800253
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800254static struct kmem_cache *x86_emulator_cache;
255
Peter Xu6abe9c12020-06-22 18:04:41 -0400256/*
257 * When called, it means the previous get/set msr reached an invalid msr.
258 * Return 0 if we want to ignore/silent this failed msr access, or 1 if we want
259 * to fail the caller.
260 */
261static int kvm_msr_ignored_check(struct kvm_vcpu *vcpu, u32 msr,
262 u64 data, bool write)
263{
264 const char *op = write ? "wrmsr" : "rdmsr";
265
266 if (ignore_msrs) {
267 if (report_ignored_msrs)
268 vcpu_unimpl(vcpu, "ignored %s: 0x%x data 0x%llx\n",
269 op, msr, data);
270 /* Mask the error */
271 return 0;
272 } else {
273 vcpu_debug_ratelimited(vcpu, "unhandled %s: 0x%x data 0x%llx\n",
274 op, msr, data);
275 return 1;
276 }
277}
278
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800279static struct kmem_cache *kvm_alloc_emulator_cache(void)
280{
Sean Christopherson06add252020-02-18 15:29:50 -0800281 unsigned int useroffset = offsetof(struct x86_emulate_ctxt, src);
282 unsigned int size = sizeof(struct x86_emulate_ctxt);
283
284 return kmem_cache_create_usercopy("x86_emulator", size,
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800285 __alignof__(struct x86_emulate_ctxt),
Sean Christopherson06add252020-02-18 15:29:50 -0800286 SLAB_ACCOUNT, useroffset,
287 size - useroffset, NULL);
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800288}
289
Jan Kiszkab6785de2012-09-20 07:43:17 +0200290static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300291
Gleb Natapovaf585b92010-10-14 11:22:46 +0200292static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
293{
294 int i;
Peter Xudd03bca2020-04-16 11:58:59 -0400295 for (i = 0; i < ASYNC_PF_PER_VCPU; i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +0200296 vcpu->arch.apf.gfns[i] = ~0;
297}
298
Avi Kivity18863bd2009-09-07 11:12:18 +0300299static void kvm_on_user_return(struct user_return_notifier *urn)
300{
301 unsigned slot;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700302 struct kvm_user_return_msrs *msrs
303 = container_of(urn, struct kvm_user_return_msrs, urn);
304 struct kvm_user_return_msr_values *values;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700305 unsigned long flags;
Avi Kivity18863bd2009-09-07 11:12:18 +0300306
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700307 /*
308 * Disabling irqs at this point since the following code could be
309 * interrupted and executed through kvm_arch_hardware_disable()
310 */
311 local_irq_save(flags);
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700312 if (msrs->registered) {
313 msrs->registered = false;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700314 user_return_notifier_unregister(urn);
315 }
316 local_irq_restore(flags);
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700317 for (slot = 0; slot < user_return_msrs_global.nr; ++slot) {
318 values = &msrs->values[slot];
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800319 if (values->host != values->curr) {
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700320 wrmsrl(user_return_msrs_global.msrs[slot], values->host);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800321 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300322 }
323 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300324}
325
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700326void kvm_define_user_return_msr(unsigned slot, u32 msr)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800327{
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700328 BUG_ON(slot >= KVM_MAX_NR_USER_RETURN_MSRS);
329 user_return_msrs_global.msrs[slot] = msr;
330 if (slot >= user_return_msrs_global.nr)
331 user_return_msrs_global.nr = slot + 1;
Avi Kivity18863bd2009-09-07 11:12:18 +0300332}
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700333EXPORT_SYMBOL_GPL(kvm_define_user_return_msr);
Avi Kivity18863bd2009-09-07 11:12:18 +0300334
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700335static void kvm_user_return_msr_cpu_online(void)
Avi Kivity18863bd2009-09-07 11:12:18 +0300336{
Sean Christopherson05c19c22019-11-22 12:04:50 -0800337 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700338 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Sean Christopherson05c19c22019-11-22 12:04:50 -0800339 u64 value;
340 int i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300341
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700342 for (i = 0; i < user_return_msrs_global.nr; ++i) {
343 rdmsrl_safe(user_return_msrs_global.msrs[i], &value);
344 msrs->values[i].host = value;
345 msrs->values[i].curr = value;
Sean Christopherson05c19c22019-11-22 12:04:50 -0800346 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300347}
348
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700349int kvm_set_user_return_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300350{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200351 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700352 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Andy Honig8b3c3102014-08-27 11:16:44 -0700353 int err;
Avi Kivity18863bd2009-09-07 11:12:18 +0300354
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700355 value = (value & mask) | (msrs->values[slot].host & ~mask);
356 if (value == msrs->values[slot].curr)
Andy Honig8b3c3102014-08-27 11:16:44 -0700357 return 0;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700358 err = wrmsrl_safe(user_return_msrs_global.msrs[slot], value);
Andy Honig8b3c3102014-08-27 11:16:44 -0700359 if (err)
360 return 1;
361
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700362 msrs->values[slot].curr = value;
363 if (!msrs->registered) {
364 msrs->urn.on_user_return = kvm_on_user_return;
365 user_return_notifier_register(&msrs->urn);
366 msrs->registered = true;
Avi Kivity18863bd2009-09-07 11:12:18 +0300367 }
Andy Honig8b3c3102014-08-27 11:16:44 -0700368 return 0;
Avi Kivity18863bd2009-09-07 11:12:18 +0300369}
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700370EXPORT_SYMBOL_GPL(kvm_set_user_return_msr);
Avi Kivity18863bd2009-09-07 11:12:18 +0300371
Radim Krčmář13a34e02014-08-28 15:13:03 +0200372static void drop_user_return_notifiers(void)
Avi Kivity3548bab2009-11-28 14:18:47 +0200373{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200374 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700375 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200376
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700377 if (msrs->registered)
378 kvm_on_user_return(&msrs->urn);
Avi Kivity3548bab2009-11-28 14:18:47 +0200379}
380
Carsten Otte6866b832007-10-29 16:09:10 +0100381u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
382{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300383 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100384}
385EXPORT_SYMBOL_GPL(kvm_get_apic_base);
386
Jim Mattson58871642018-05-09 16:56:04 -0400387enum lapic_mode kvm_get_apic_mode(struct kvm_vcpu *vcpu)
388{
389 return kvm_apic_mode(kvm_get_apic_base(vcpu));
390}
391EXPORT_SYMBOL_GPL(kvm_get_apic_mode);
392
Jan Kiszka58cb6282014-01-24 16:48:44 +0100393int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte6866b832007-10-29 16:09:10 +0100394{
Jim Mattson58871642018-05-09 16:56:04 -0400395 enum lapic_mode old_mode = kvm_get_apic_mode(vcpu);
396 enum lapic_mode new_mode = kvm_apic_mode(msr_info->data);
Radim Krčmářd6321d42017-08-05 00:12:49 +0200397 u64 reserved_bits = ((~0ULL) << cpuid_maxphyaddr(vcpu)) | 0x2ff |
398 (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC) ? 0 : X2APIC_ENABLE);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100399
Jim Mattson58871642018-05-09 16:56:04 -0400400 if ((msr_info->data & reserved_bits) != 0 || new_mode == LAPIC_MODE_INVALID)
Jim Mattsond3802282017-08-10 10:14:13 -0700401 return 1;
Jim Mattson58871642018-05-09 16:56:04 -0400402 if (!msr_info->host_initiated) {
403 if (old_mode == LAPIC_MODE_X2APIC && new_mode == LAPIC_MODE_XAPIC)
404 return 1;
405 if (old_mode == LAPIC_MODE_DISABLED && new_mode == LAPIC_MODE_X2APIC)
406 return 1;
407 }
Jan Kiszka58cb6282014-01-24 16:48:44 +0100408
409 kvm_lapic_set_base(vcpu, msr_info->data);
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800410 kvm_recalculate_apic_map(vcpu->kvm);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100411 return 0;
Carsten Otte6866b832007-10-29 16:09:10 +0100412}
413EXPORT_SYMBOL_GPL(kvm_set_apic_base);
414
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +0200415asmlinkage __visible noinstr void kvm_spurious_fault(void)
Geoff Levande3ba45b2013-04-05 19:20:30 +0000416{
417 /* Fault while not rebooting. We want the trace. */
kbuild test robotb4fdcf62019-09-29 18:43:28 +0200418 BUG_ON(!kvm_rebooting);
Geoff Levande3ba45b2013-04-05 19:20:30 +0000419}
420EXPORT_SYMBOL_GPL(kvm_spurious_fault);
421
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200422#define EXCPT_BENIGN 0
423#define EXCPT_CONTRIBUTORY 1
424#define EXCPT_PF 2
425
426static int exception_class(int vector)
427{
428 switch (vector) {
429 case PF_VECTOR:
430 return EXCPT_PF;
431 case DE_VECTOR:
432 case TS_VECTOR:
433 case NP_VECTOR:
434 case SS_VECTOR:
435 case GP_VECTOR:
436 return EXCPT_CONTRIBUTORY;
437 default:
438 break;
439 }
440 return EXCPT_BENIGN;
441}
442
Nadav Amitd6e8c852014-07-24 14:51:24 +0300443#define EXCPT_FAULT 0
444#define EXCPT_TRAP 1
445#define EXCPT_ABORT 2
446#define EXCPT_INTERRUPT 3
447
448static int exception_type(int vector)
449{
450 unsigned int mask;
451
452 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
453 return EXCPT_INTERRUPT;
454
455 mask = 1 << vector;
456
457 /* #DB is trap, as instruction watchpoints are handled elsewhere */
458 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
459 return EXCPT_TRAP;
460
461 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
462 return EXCPT_ABORT;
463
464 /* Reserved exceptions will result in fault */
465 return EXCPT_FAULT;
466}
467
Jim Mattsonda998b42018-10-16 14:29:22 -0700468void kvm_deliver_exception_payload(struct kvm_vcpu *vcpu)
469{
470 unsigned nr = vcpu->arch.exception.nr;
471 bool has_payload = vcpu->arch.exception.has_payload;
472 unsigned long payload = vcpu->arch.exception.payload;
473
474 if (!has_payload)
475 return;
476
477 switch (nr) {
Jim Mattsonf10c7292018-10-16 14:29:23 -0700478 case DB_VECTOR:
479 /*
480 * "Certain debug exceptions may clear bit 0-3. The
481 * remaining contents of the DR6 register are never
482 * cleared by the processor".
483 */
484 vcpu->arch.dr6 &= ~DR_TRAP_BITS;
485 /*
486 * DR6.RTM is set by all #DB exceptions that don't clear it.
487 */
488 vcpu->arch.dr6 |= DR6_RTM;
489 vcpu->arch.dr6 |= payload;
490 /*
491 * Bit 16 should be set in the payload whenever the #DB
492 * exception should clear DR6.RTM. This makes the payload
493 * compatible with the pending debug exceptions under VMX.
494 * Though not currently documented in the SDM, this also
495 * makes the payload compatible with the exit qualification
496 * for #DB exceptions under VMX.
497 */
498 vcpu->arch.dr6 ^= payload & DR6_RTM;
Oliver Upton307f1cf2020-02-07 02:36:04 -0800499
500 /*
501 * The #DB payload is defined as compatible with the 'pending
502 * debug exceptions' field under VMX, not DR6. While bit 12 is
503 * defined in the 'pending debug exceptions' field (enabled
504 * breakpoint), it is reserved and must be zero in DR6.
505 */
506 vcpu->arch.dr6 &= ~BIT(12);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700507 break;
Jim Mattsonda998b42018-10-16 14:29:22 -0700508 case PF_VECTOR:
509 vcpu->arch.cr2 = payload;
510 break;
511 }
512
513 vcpu->arch.exception.has_payload = false;
514 vcpu->arch.exception.payload = 0;
515}
516EXPORT_SYMBOL_GPL(kvm_deliver_exception_payload);
517
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200518static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200519 unsigned nr, bool has_error, u32 error_code,
Jim Mattson91e86d22018-10-16 14:29:21 -0700520 bool has_payload, unsigned long payload, bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200521{
522 u32 prev_nr;
523 int class1, class2;
524
Avi Kivity3842d132010-07-27 12:30:24 +0300525 kvm_make_request(KVM_REQ_EVENT, vcpu);
526
Wanpeng Li664f8e22017-08-24 03:35:09 -0700527 if (!vcpu->arch.exception.pending && !vcpu->arch.exception.injected) {
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200528 queue:
Nadav Amit3ffb2462014-11-02 11:54:42 +0200529 if (has_error && !is_protmode(vcpu))
530 has_error = false;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700531 if (reinject) {
532 /*
533 * On vmentry, vcpu->arch.exception.pending is only
534 * true if an event injection was blocked by
535 * nested_run_pending. In that case, however,
536 * vcpu_enter_guest requests an immediate exit,
537 * and the guest shouldn't proceed far enough to
538 * need reinjection.
539 */
540 WARN_ON_ONCE(vcpu->arch.exception.pending);
541 vcpu->arch.exception.injected = true;
Jim Mattson91e86d22018-10-16 14:29:21 -0700542 if (WARN_ON_ONCE(has_payload)) {
543 /*
544 * A reinjected event has already
545 * delivered its payload.
546 */
547 has_payload = false;
548 payload = 0;
549 }
Wanpeng Li664f8e22017-08-24 03:35:09 -0700550 } else {
551 vcpu->arch.exception.pending = true;
552 vcpu->arch.exception.injected = false;
553 }
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200554 vcpu->arch.exception.has_error_code = has_error;
555 vcpu->arch.exception.nr = nr;
556 vcpu->arch.exception.error_code = error_code;
Jim Mattson91e86d22018-10-16 14:29:21 -0700557 vcpu->arch.exception.has_payload = has_payload;
558 vcpu->arch.exception.payload = payload;
Oliver Uptona06230b2020-02-07 02:36:06 -0800559 if (!is_guest_mode(vcpu))
Jim Mattsonda998b42018-10-16 14:29:22 -0700560 kvm_deliver_exception_payload(vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200561 return;
562 }
563
564 /* to check exception */
565 prev_nr = vcpu->arch.exception.nr;
566 if (prev_nr == DF_VECTOR) {
567 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300568 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200569 return;
570 }
571 class1 = exception_class(prev_nr);
572 class2 = exception_class(nr);
573 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
574 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
Wanpeng Li664f8e22017-08-24 03:35:09 -0700575 /*
576 * Generate double fault per SDM Table 5-5. Set
577 * exception.pending = true so that the double fault
578 * can trigger a nested vmexit.
579 */
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200580 vcpu->arch.exception.pending = true;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700581 vcpu->arch.exception.injected = false;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200582 vcpu->arch.exception.has_error_code = true;
583 vcpu->arch.exception.nr = DF_VECTOR;
584 vcpu->arch.exception.error_code = 0;
Jim Mattsonc8514362018-10-16 14:29:19 -0700585 vcpu->arch.exception.has_payload = false;
586 vcpu->arch.exception.payload = 0;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200587 } else
588 /* replace previous exception with a new one in a hope
589 that instruction re-execution will regenerate lost
590 exception */
591 goto queue;
592}
593
Avi Kivity298101d2007-11-25 13:41:11 +0200594void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
595{
Jim Mattson91e86d22018-10-16 14:29:21 -0700596 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200597}
598EXPORT_SYMBOL_GPL(kvm_queue_exception);
599
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200600void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
601{
Jim Mattson91e86d22018-10-16 14:29:21 -0700602 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200603}
604EXPORT_SYMBOL_GPL(kvm_requeue_exception);
605
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400606void kvm_queue_exception_p(struct kvm_vcpu *vcpu, unsigned nr,
607 unsigned long payload)
Jim Mattsonf10c7292018-10-16 14:29:23 -0700608{
609 kvm_multiple_exception(vcpu, nr, false, 0, true, payload, false);
610}
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400611EXPORT_SYMBOL_GPL(kvm_queue_exception_p);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700612
Jim Mattsonda998b42018-10-16 14:29:22 -0700613static void kvm_queue_exception_e_p(struct kvm_vcpu *vcpu, unsigned nr,
614 u32 error_code, unsigned long payload)
615{
616 kvm_multiple_exception(vcpu, nr, true, error_code,
617 true, payload, false);
618}
619
Kyle Huey6affcbe2016-11-29 12:40:40 -0800620int kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200621{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100622 if (err)
623 kvm_inject_gp(vcpu, 0);
624 else
Kyle Huey6affcbe2016-11-29 12:40:40 -0800625 return kvm_skip_emulated_instruction(vcpu);
626
627 return 1;
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100628}
629EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200630
Avi Kivity6389ee92010-11-29 16:12:30 +0200631void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200632{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200633 ++vcpu->stat.pf_guest;
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700634 vcpu->arch.exception.nested_apf =
635 is_guest_mode(vcpu) && fault->async_page_fault;
Jim Mattsonda998b42018-10-16 14:29:22 -0700636 if (vcpu->arch.exception.nested_apf) {
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700637 vcpu->arch.apf.nested_apf_token = fault->address;
Jim Mattsonda998b42018-10-16 14:29:22 -0700638 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
639 } else {
640 kvm_queue_exception_e_p(vcpu, PF_VECTOR, fault->error_code,
641 fault->address);
642 }
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200643}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300644EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200645
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700646bool kvm_inject_emulated_page_fault(struct kvm_vcpu *vcpu,
647 struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200648{
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400649 struct kvm_mmu *fault_mmu;
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700650 WARN_ON_ONCE(fault->vector != PF_VECTOR);
651
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400652 fault_mmu = fault->nested_page_fault ? vcpu->arch.mmu :
653 vcpu->arch.walk_mmu;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200654
Junaid Shahidee1fa202020-03-20 14:28:03 -0700655 /*
656 * Invalidate the TLB entry for the faulting address, if it exists,
657 * else the access will fault indefinitely (and to emulate hardware).
658 */
659 if ((fault->error_code & PFERR_PRESENT_MASK) &&
660 !(fault->error_code & PFERR_RSVD_MASK))
661 kvm_mmu_invalidate_gva(vcpu, fault_mmu, fault->address,
662 fault_mmu->root_hpa);
663
664 fault_mmu->inject_page_fault(vcpu, fault);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200665 return fault->nested_page_fault;
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200666}
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700667EXPORT_SYMBOL_GPL(kvm_inject_emulated_page_fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200668
Sheng Yang3419ffc2008-05-15 09:52:48 +0800669void kvm_inject_nmi(struct kvm_vcpu *vcpu)
670{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300671 atomic_inc(&vcpu->arch.nmi_queued);
672 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800673}
674EXPORT_SYMBOL_GPL(kvm_inject_nmi);
675
Avi Kivity298101d2007-11-25 13:41:11 +0200676void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
677{
Jim Mattson91e86d22018-10-16 14:29:21 -0700678 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200679}
680EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
681
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200682void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
683{
Jim Mattson91e86d22018-10-16 14:29:21 -0700684 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200685}
686EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
687
Carsten Ottea03490e2007-10-29 16:09:35 +0100688/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300689 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
690 * a #GP and return false.
691 */
692bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200693{
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700694 if (kvm_x86_ops.get_cpl(vcpu) <= required_cpl)
Avi Kivity0a79b002009-09-01 12:03:25 +0300695 return true;
696 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
697 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100698}
Avi Kivity0a79b002009-09-01 12:03:25 +0300699EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100700
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300701bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
702{
703 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
704 return true;
705
706 kvm_queue_exception(vcpu, UD_VECTOR);
707 return false;
708}
709EXPORT_SYMBOL_GPL(kvm_require_dr);
710
Carsten Ottea03490e2007-10-29 16:09:35 +0100711/*
Joerg Roedelec92fe42010-09-10 17:30:51 +0200712 * This function will be used to read from the physical memory of the currently
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200713 * running guest. The difference to kvm_vcpu_read_guest_page is that this function
Joerg Roedelec92fe42010-09-10 17:30:51 +0200714 * can read from guest physical or from the guest's guest physical memory.
715 */
716int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
717 gfn_t ngfn, void *data, int offset, int len,
718 u32 access)
719{
Paolo Bonzini54987b72014-09-02 13:23:06 +0200720 struct x86_exception exception;
Joerg Roedelec92fe42010-09-10 17:30:51 +0200721 gfn_t real_gfn;
722 gpa_t ngpa;
723
724 ngpa = gfn_to_gpa(ngfn);
Paolo Bonzini54987b72014-09-02 13:23:06 +0200725 real_gfn = mmu->translate_gpa(vcpu, ngpa, access, &exception);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200726 if (real_gfn == UNMAPPED_GVA)
727 return -EFAULT;
728
729 real_gfn = gpa_to_gfn(real_gfn);
730
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200731 return kvm_vcpu_read_guest_page(vcpu, real_gfn, data, offset, len);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200732}
733EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu);
734
Fengguang Wu69b00492015-01-19 22:33:39 +0800735static int kvm_read_nested_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200736 void *data, int offset, int len, u32 access)
737{
738 return kvm_read_guest_page_mmu(vcpu, vcpu->arch.walk_mmu, gfn,
739 data, offset, len, access);
740}
741
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700742static inline u64 pdptr_rsvd_bits(struct kvm_vcpu *vcpu)
743{
744 return rsvd_bits(cpuid_maxphyaddr(vcpu), 63) | rsvd_bits(5, 8) |
745 rsvd_bits(1, 2);
746}
747
Joerg Roedelec92fe42010-09-10 17:30:51 +0200748/*
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700749 * Load the pae pdptrs. Return 1 if they are all valid, 0 otherwise.
Carsten Ottea03490e2007-10-29 16:09:35 +0100750 */
Joerg Roedelff03a072010-09-10 17:30:57 +0200751int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100752{
753 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
754 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
755 int i;
756 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200757 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100758
Joerg Roedelff03a072010-09-10 17:30:57 +0200759 ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte,
760 offset * sizeof(u64), sizeof(pdpte),
761 PFERR_USER_MASK|PFERR_WRITE_MASK);
Carsten Ottea03490e2007-10-29 16:09:35 +0100762 if (ret < 0) {
763 ret = 0;
764 goto out;
765 }
766 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Bandan Das812f30b2016-07-12 18:18:50 -0400767 if ((pdpte[i] & PT_PRESENT_MASK) &&
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700768 (pdpte[i] & pdptr_rsvd_bits(vcpu))) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100769 ret = 0;
770 goto out;
771 }
772 }
773 ret = 1;
774
Joerg Roedelff03a072010-09-10 17:30:57 +0200775 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
Sean Christophersoncb3c1e22019-09-27 14:45:22 -0700776 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
777
Carsten Ottea03490e2007-10-29 16:09:35 +0100778out:
Carsten Ottea03490e2007-10-29 16:09:35 +0100779
780 return ret;
781}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100782EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100783
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +0100784bool pdptrs_changed(struct kvm_vcpu *vcpu)
Avi Kivityd835dfe2007-11-21 02:57:59 +0200785{
Joerg Roedelff03a072010-09-10 17:30:57 +0200786 u64 pdpte[ARRAY_SIZE(vcpu->arch.walk_mmu->pdptrs)];
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200787 int offset;
788 gfn_t gfn;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200789 int r;
790
Paolo Bonzinibf03d4f2019-06-06 18:52:44 +0200791 if (!is_pae_paging(vcpu))
Avi Kivityd835dfe2007-11-21 02:57:59 +0200792 return false;
793
Sean Christophersoncb3c1e22019-09-27 14:45:22 -0700794 if (!kvm_register_is_available(vcpu, VCPU_EXREG_PDPTR))
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300795 return true;
796
Paolo Bonzinia5121772017-07-24 18:54:38 +0200797 gfn = (kvm_read_cr3(vcpu) & 0xffffffe0ul) >> PAGE_SHIFT;
798 offset = (kvm_read_cr3(vcpu) & 0xffffffe0ul) & (PAGE_SIZE - 1);
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200799 r = kvm_read_nested_guest_page(vcpu, gfn, pdpte, offset, sizeof(pdpte),
800 PFERR_USER_MASK | PFERR_WRITE_MASK);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200801 if (r < 0)
Miaohe Lin7f7f0d92019-10-25 18:54:34 +0800802 return true;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200803
Miaohe Lin7f7f0d92019-10-25 18:54:34 +0800804 return memcmp(pdpte, vcpu->arch.walk_mmu->pdptrs, sizeof(pdpte)) != 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200805}
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +0100806EXPORT_SYMBOL_GPL(pdptrs_changed);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200807
Avi Kivity49a9b072010-06-10 17:02:14 +0300808int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100809{
Sheng Yangaad82702010-05-12 16:40:42 +0800810 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Jim Mattsond42e3fa2020-07-07 15:36:30 -0700811 unsigned long pdptr_bits = X86_CR0_CD | X86_CR0_NW | X86_CR0_PG;
Xiao Guangrongd81135a2015-05-13 14:42:28 +0800812 unsigned long update_bits = X86_CR0_PG | X86_CR0_WP;
Sheng Yangaad82702010-05-12 16:40:42 +0800813
Avi Kivityf9a48e62010-01-06 19:10:22 +0200814 cr0 |= X86_CR0_ET;
815
Gleb Natapovab344822010-01-21 15:28:46 +0200816#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300817 if (cr0 & 0xffffffff00000000UL)
818 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200819#endif
820
821 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100822
Gleb Natapov0f122442010-04-28 19:15:31 +0300823 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
824 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100825
Gleb Natapov0f122442010-04-28 19:15:31 +0300826 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
827 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100828
Carsten Ottea03490e2007-10-29 16:09:35 +0100829#ifdef CONFIG_X86_64
Sean Christopherson05487212020-07-13 18:57:32 -0700830 if ((vcpu->arch.efer & EFER_LME) && !is_paging(vcpu) &&
831 (cr0 & X86_CR0_PG)) {
832 int cs_db, cs_l;
Carsten Ottea03490e2007-10-29 16:09:35 +0100833
Sean Christopherson05487212020-07-13 18:57:32 -0700834 if (!is_pae(vcpu))
835 return 1;
836 kvm_x86_ops.get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
837 if (cs_l)
Gleb Natapov0f122442010-04-28 19:15:31 +0300838 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100839 }
Sean Christopherson05487212020-07-13 18:57:32 -0700840#endif
841 if (!(vcpu->arch.efer & EFER_LME) && (cr0 & X86_CR0_PG) &&
842 is_pae(vcpu) && ((cr0 ^ old_cr0) & pdptr_bits) &&
843 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu)))
844 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100845
Mao, Junjiead756a12012-07-02 01:18:48 +0000846 if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
847 return 1;
848
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700849 kvm_x86_ops.set_cr0(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100850
Lai Jiangshand170c412011-02-21 11:21:30 +0800851 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800852 kvm_clear_async_pf_completion_queue(vcpu);
Lai Jiangshand170c412011-02-21 11:21:30 +0800853 kvm_async_pf_hash_reset(vcpu);
854 }
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800855
Sheng Yangaad82702010-05-12 16:40:42 +0800856 if ((cr0 ^ old_cr0) & update_bits)
857 kvm_mmu_reset_context(vcpu);
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800858
Laszlo Ersek879ae182015-11-04 12:54:41 +0100859 if (((cr0 ^ old_cr0) & X86_CR0_CD) &&
860 kvm_arch_has_noncoherent_dma(vcpu->kvm) &&
861 !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800862 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
863
Gleb Natapov0f122442010-04-28 19:15:31 +0300864 return 0;
865}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200866EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100867
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200868void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100869{
Avi Kivity49a9b072010-06-10 17:02:14 +0300870 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100871}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200872EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100873
Aaron Lewis139a12c2019-10-21 16:30:25 -0700874void kvm_load_guest_xsave_state(struct kvm_vcpu *vcpu)
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300875{
Aaron Lewis139a12c2019-10-21 16:30:25 -0700876 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300877
Aaron Lewis139a12c2019-10-21 16:30:25 -0700878 if (vcpu->arch.xcr0 != host_xcr0)
879 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
880
881 if (vcpu->arch.xsaves_enabled &&
882 vcpu->arch.ia32_xss != host_xss)
883 wrmsrl(MSR_IA32_XSS, vcpu->arch.ia32_xss);
884 }
Babu Moger37486132020-05-12 18:59:06 -0500885
886 if (static_cpu_has(X86_FEATURE_PKU) &&
887 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
888 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU)) &&
889 vcpu->arch.pkru != vcpu->arch.host_pkru)
890 __write_pkru(vcpu->arch.pkru);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300891}
Aaron Lewis139a12c2019-10-21 16:30:25 -0700892EXPORT_SYMBOL_GPL(kvm_load_guest_xsave_state);
893
894void kvm_load_host_xsave_state(struct kvm_vcpu *vcpu)
895{
Babu Moger37486132020-05-12 18:59:06 -0500896 if (static_cpu_has(X86_FEATURE_PKU) &&
897 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
898 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU))) {
899 vcpu->arch.pkru = rdpkru();
900 if (vcpu->arch.pkru != vcpu->arch.host_pkru)
901 __write_pkru(vcpu->arch.host_pkru);
902 }
903
Aaron Lewis139a12c2019-10-21 16:30:25 -0700904 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
905
906 if (vcpu->arch.xcr0 != host_xcr0)
907 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
908
909 if (vcpu->arch.xsaves_enabled &&
910 vcpu->arch.ia32_xss != host_xss)
911 wrmsrl(MSR_IA32_XSS, host_xss);
912 }
913
914}
915EXPORT_SYMBOL_GPL(kvm_load_host_xsave_state);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300916
Fengguang Wu69b00492015-01-19 22:33:39 +0800917static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800918{
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000919 u64 xcr0 = xcr;
920 u64 old_xcr0 = vcpu->arch.xcr0;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200921 u64 valid_bits;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800922
923 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
924 if (index != XCR_XFEATURE_ENABLED_MASK)
925 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700926 if (!(xcr0 & XFEATURE_MASK_FP))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800927 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700928 if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800929 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200930
931 /*
932 * Do not allow the guest to set bits that we do not support
933 * saving. However, xcr0 bit 0 is always set, even if the
934 * emulated CPU does not support XSAVE (see fx_init).
935 */
Dave Hansend91cab72015-09-02 16:31:26 -0700936 valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200937 if (xcr0 & ~valid_bits)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800938 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200939
Dave Hansend91cab72015-09-02 16:31:26 -0700940 if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) !=
941 (!(xcr0 & XFEATURE_MASK_BNDCSR)))
Liu, Jinsong390bd522014-02-24 10:58:09 +0000942 return 1;
943
Dave Hansend91cab72015-09-02 16:31:26 -0700944 if (xcr0 & XFEATURE_MASK_AVX512) {
945 if (!(xcr0 & XFEATURE_MASK_YMM))
Chao Peng612263b2014-10-22 17:35:24 +0800946 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700947 if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512)
Chao Peng612263b2014-10-22 17:35:24 +0800948 return 1;
949 }
Dexuan Cui2acf9232010-06-10 11:27:12 +0800950 vcpu->arch.xcr0 = xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000951
Dave Hansend91cab72015-09-02 16:31:26 -0700952 if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND)
Xiaoyao Liaedbaf42020-07-09 12:34:23 +0800953 kvm_update_cpuid_runtime(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800954 return 0;
955}
956
957int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
958{
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700959 if (kvm_x86_ops.get_cpl(vcpu) != 0 ||
Zhanghaoyu (A)764bcbc2013-06-14 07:36:13 +0000960 __kvm_set_xcr(vcpu, index, xcr)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +0800961 kvm_inject_gp(vcpu, 0);
962 return 1;
963 }
964 return 0;
965}
966EXPORT_SYMBOL_GPL(kvm_set_xcr);
967
Krish Sadhukhan761e4162020-07-08 00:39:56 +0000968int kvm_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Wanpeng Li3ca94192019-09-18 17:50:10 +0800969{
Sean Christophersonb11306b2019-12-10 14:44:13 -0800970 if (cr4 & cr4_reserved_bits)
Wanpeng Li3ca94192019-09-18 17:50:10 +0800971 return -EINVAL;
972
Krish Sadhukhanb899c132020-07-08 00:39:55 +0000973 if (cr4 & vcpu->arch.cr4_guest_rsvd_bits)
Wanpeng Li3ca94192019-09-18 17:50:10 +0800974 return -EINVAL;
975
976 return 0;
977}
Krish Sadhukhan761e4162020-07-08 00:39:56 +0000978EXPORT_SYMBOL_GPL(kvm_valid_cr4);
Wanpeng Li3ca94192019-09-18 17:50:10 +0800979
Avi Kivitya83b29c2010-06-10 17:02:15 +0300980int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +0100981{
Avi Kivityfc78f512009-12-07 12:16:48 +0200982 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +0800983 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
Jim Mattsoncb957ad2020-08-17 11:16:54 -0700984 X86_CR4_SMEP;
Xiao Guangrong0be02262015-05-11 22:55:21 +0800985
Wanpeng Li3ca94192019-09-18 17:50:10 +0800986 if (kvm_valid_cr4(vcpu, cr4))
Paolo Bonziniae3e61e2016-07-12 10:36:41 +0200987 return 1;
988
Carsten Ottea03490e2007-10-29 16:09:35 +0100989 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +0300990 if (!(cr4 & X86_CR4_PAE))
991 return 1;
Sean Christophersond74fcfc2020-07-02 19:17:14 -0700992 if ((cr4 ^ old_cr4) & X86_CR4_LA57)
993 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +0300994 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
995 && ((cr4 ^ old_cr4) & pdptr_bits)
Avi Kivity9f8fe502010-12-05 17:30:00 +0200996 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
997 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300998 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100999
Mao, Junjiead756a12012-07-02 01:18:48 +00001000 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
Radim Krčmářd6321d42017-08-05 00:12:49 +02001001 if (!guest_cpuid_has(vcpu, X86_FEATURE_PCID))
Mao, Junjiead756a12012-07-02 01:18:48 +00001002 return 1;
1003
1004 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
1005 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
1006 return 1;
1007 }
1008
Sean Christophersonafaf0b22020-03-21 13:26:00 -07001009 if (kvm_x86_ops.set_cr4(vcpu, cr4))
Gleb Natapov0f122442010-04-28 19:15:31 +03001010 return 1;
1011
Mao, Junjiead756a12012-07-02 01:18:48 +00001012 if (((cr4 ^ old_cr4) & pdptr_bits) ||
1013 (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE)))
Sheng Yangaad82702010-05-12 16:40:42 +08001014 kvm_mmu_reset_context(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +03001015
Huaitong Hanb9baba82016-03-22 16:51:21 +08001016 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08001017 kvm_update_cpuid_runtime(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001018
Gleb Natapov0f122442010-04-28 19:15:31 +03001019 return 0;
1020}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001021EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +01001022
Avi Kivity23902182010-06-10 17:02:16 +03001023int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +01001024{
Junaid Shahidade61e22018-06-27 14:59:15 -07001025 bool skip_tlb_flush = false;
Paolo Bonziniac146232014-11-10 13:53:25 +01001026#ifdef CONFIG_X86_64
Junaid Shahidc19986f2018-05-04 11:37:13 -07001027 bool pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
1028
Junaid Shahidade61e22018-06-27 14:59:15 -07001029 if (pcid_enabled) {
Junaid Shahid208320b2018-06-27 14:59:21 -07001030 skip_tlb_flush = cr3 & X86_CR3_PCID_NOFLUSH;
1031 cr3 &= ~X86_CR3_PCID_NOFLUSH;
Junaid Shahidade61e22018-06-27 14:59:15 -07001032 }
Paolo Bonziniac146232014-11-10 13:53:25 +01001033#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +02001034
Avi Kivity9f8fe502010-12-05 17:30:00 +02001035 if (cr3 == kvm_read_cr3(vcpu) && !pdptrs_changed(vcpu)) {
Junaid Shahid956bf352018-06-27 14:59:18 -07001036 if (!skip_tlb_flush) {
1037 kvm_mmu_sync_roots(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07001038 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
Junaid Shahid956bf352018-06-27 14:59:18 -07001039 }
Gleb Natapov0f122442010-04-28 19:15:31 +03001040 return 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +02001041 }
1042
Yu Zhangd1cd3ce2017-08-24 20:27:53 +08001043 if (is_long_mode(vcpu) &&
Wanpeng Lia780a3e2018-05-13 02:24:47 -07001044 (cr3 & rsvd_bits(cpuid_maxphyaddr(vcpu), 63)))
Yu Zhangd1cd3ce2017-08-24 20:27:53 +08001045 return 1;
Paolo Bonzinibf03d4f2019-06-06 18:52:44 +02001046 else if (is_pae_paging(vcpu) &&
1047 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +03001048 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001049
Sean Christophersonbe01e8e2020-03-20 14:28:32 -07001050 kvm_mmu_new_pgd(vcpu, cr3, skip_tlb_flush, skip_tlb_flush);
Gleb Natapov0f122442010-04-28 19:15:31 +03001051 vcpu->arch.cr3 = cr3;
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001052 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Junaid Shahid7c390d32018-06-27 14:59:06 -07001053
Gleb Natapov0f122442010-04-28 19:15:31 +03001054 return 0;
1055}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001056EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +01001057
Andre Przywaraeea1cff2010-12-21 11:12:00 +01001058int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +01001059{
Gleb Natapov0f122442010-04-28 19:15:31 +03001060 if (cr8 & CR8_RESERVED_BITS)
1061 return 1;
Paolo Bonzini35754c92015-07-29 12:05:37 +02001062 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001063 kvm_lapic_set_tpr(vcpu, cr8);
1064 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001065 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +03001066 return 0;
1067}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001068EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001069
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001070unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +01001071{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001072 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001073 return kvm_lapic_get_cr8(vcpu);
1074 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001075 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +01001076}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001077EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001078
Nadav Amitae561ed2015-04-02 03:10:37 +03001079static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
1080{
1081 int i;
1082
1083 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
1084 for (i = 0; i < KVM_NR_DB_REGS; i++)
1085 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
1086 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD;
1087 }
1088}
1089
Paolo Bonzini7c866632020-05-16 08:42:28 -04001090void kvm_update_dr7(struct kvm_vcpu *vcpu)
Jan Kiszkac8639012012-09-21 05:42:55 +02001091{
1092 unsigned long dr7;
1093
1094 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1095 dr7 = vcpu->arch.guest_debug_dr7;
1096 else
1097 dr7 = vcpu->arch.dr7;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07001098 kvm_x86_ops.set_dr7(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +01001099 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
1100 if (dr7 & DR7_BP_EN_MASK)
1101 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +02001102}
Paolo Bonzini7c866632020-05-16 08:42:28 -04001103EXPORT_SYMBOL_GPL(kvm_update_dr7);
Jan Kiszkac8639012012-09-21 05:42:55 +02001104
Nadav Amit6f43ed02014-07-15 17:37:46 +03001105static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
1106{
1107 u64 fixed = DR6_FIXED_1;
1108
Radim Krčmářd6321d42017-08-05 00:12:49 +02001109 if (!guest_cpuid_has(vcpu, X86_FEATURE_RTM))
Nadav Amit6f43ed02014-07-15 17:37:46 +03001110 fixed |= DR6_RTM;
1111 return fixed;
1112}
1113
Gleb Natapov338dbc92010-04-28 19:15:32 +03001114static int __kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +03001115{
Marios Pomonisea740052019-12-11 12:47:52 -08001116 size_t size = ARRAY_SIZE(vcpu->arch.db);
1117
Gleb Natapov020df072010-04-13 10:05:23 +03001118 switch (dr) {
1119 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001120 vcpu->arch.db[array_index_nospec(dr, size)] = val;
Gleb Natapov020df072010-04-13 10:05:23 +03001121 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
1122 vcpu->arch.eff_db[dr] = val;
1123 break;
1124 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001125 case 6:
Krish Sadhukhanf5f61452020-05-22 18:19:51 -04001126 if (!kvm_dr6_valid(val))
Gleb Natapov338dbc92010-04-28 19:15:32 +03001127 return -1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +03001128 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001129 break;
1130 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001131 default: /* 7 */
Krish Sadhukhanb91991b2020-01-15 19:54:32 -05001132 if (!kvm_dr7_valid(val))
Gleb Natapov338dbc92010-04-28 19:15:32 +03001133 return -1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +03001134 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02001135 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001136 break;
1137 }
1138
1139 return 0;
1140}
Gleb Natapov338dbc92010-04-28 19:15:32 +03001141
1142int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
1143{
Nadav Amit16f8a6f2014-10-03 01:10:05 +03001144 if (__kvm_set_dr(vcpu, dr, val)) {
Gleb Natapov338dbc92010-04-28 19:15:32 +03001145 kvm_inject_gp(vcpu, 0);
Nadav Amit16f8a6f2014-10-03 01:10:05 +03001146 return 1;
1147 }
1148 return 0;
Gleb Natapov338dbc92010-04-28 19:15:32 +03001149}
Gleb Natapov020df072010-04-13 10:05:23 +03001150EXPORT_SYMBOL_GPL(kvm_set_dr);
1151
Nadav Amit16f8a6f2014-10-03 01:10:05 +03001152int kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +03001153{
Marios Pomonisea740052019-12-11 12:47:52 -08001154 size_t size = ARRAY_SIZE(vcpu->arch.db);
1155
Gleb Natapov020df072010-04-13 10:05:23 +03001156 switch (dr) {
1157 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001158 *val = vcpu->arch.db[array_index_nospec(dr, size)];
Gleb Natapov020df072010-04-13 10:05:23 +03001159 break;
1160 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001161 case 6:
Paolo Bonzini5679b802020-05-04 11:28:25 -04001162 *val = vcpu->arch.dr6;
Gleb Natapov020df072010-04-13 10:05:23 +03001163 break;
1164 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001165 default: /* 7 */
1166 *val = vcpu->arch.dr7;
1167 break;
1168 }
Gleb Natapov338dbc92010-04-28 19:15:32 +03001169 return 0;
1170}
Gleb Natapov020df072010-04-13 10:05:23 +03001171EXPORT_SYMBOL_GPL(kvm_get_dr);
1172
Avi Kivity022cd0e2011-11-10 14:57:23 +02001173bool kvm_rdpmc(struct kvm_vcpu *vcpu)
1174{
Sean Christophersonde3cd112019-04-30 10:36:17 -07001175 u32 ecx = kvm_rcx_read(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001176 u64 data;
1177 int err;
1178
Wei Huangc6702c92015-06-19 13:44:45 +02001179 err = kvm_pmu_rdpmc(vcpu, ecx, &data);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001180 if (err)
1181 return err;
Sean Christophersonde3cd112019-04-30 10:36:17 -07001182 kvm_rax_write(vcpu, (u32)data);
1183 kvm_rdx_write(vcpu, data >> 32);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001184 return err;
1185}
1186EXPORT_SYMBOL_GPL(kvm_rdpmc);
1187
Carsten Otte043405e2007-10-10 17:16:19 +02001188/*
1189 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
1190 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
1191 *
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001192 * The three MSR lists(msrs_to_save, emulated_msrs, msr_based_features)
1193 * extract the supported MSRs from the related const lists.
1194 * msrs_to_save is selected from the msrs_to_save_all to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -04001195 * capabilities of the host cpu. This capabilities test skips MSRs that are
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001196 * kvm-specific. Those are put in emulated_msrs_all; filtering of emulated_msrs
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001197 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +02001198 */
Glauber Costae3267cb2009-10-06 13:24:50 -04001199
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001200static const u32 msrs_to_save_all[] = {
Carsten Otte043405e2007-10-10 17:16:19 +02001201 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -04001202 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +02001203#ifdef CONFIG_X86_64
1204 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
1205#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +08001206 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001207 MSR_IA32_FEAT_CTL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001208 MSR_IA32_SPEC_CTRL,
Chao Pengbf8c55d2018-10-24 16:05:14 +08001209 MSR_IA32_RTIT_CTL, MSR_IA32_RTIT_STATUS, MSR_IA32_RTIT_CR3_MATCH,
1210 MSR_IA32_RTIT_OUTPUT_BASE, MSR_IA32_RTIT_OUTPUT_MASK,
1211 MSR_IA32_RTIT_ADDR0_A, MSR_IA32_RTIT_ADDR0_B,
1212 MSR_IA32_RTIT_ADDR1_A, MSR_IA32_RTIT_ADDR1_B,
1213 MSR_IA32_RTIT_ADDR2_A, MSR_IA32_RTIT_ADDR2_B,
1214 MSR_IA32_RTIT_ADDR3_A, MSR_IA32_RTIT_ADDR3_B,
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001215 MSR_IA32_UMWAIT_CONTROL,
1216
Jim Mattsone2ada662019-08-21 11:20:04 -07001217 MSR_ARCH_PERFMON_FIXED_CTR0, MSR_ARCH_PERFMON_FIXED_CTR1,
1218 MSR_ARCH_PERFMON_FIXED_CTR0 + 2, MSR_ARCH_PERFMON_FIXED_CTR0 + 3,
1219 MSR_CORE_PERF_FIXED_CTR_CTRL, MSR_CORE_PERF_GLOBAL_STATUS,
1220 MSR_CORE_PERF_GLOBAL_CTRL, MSR_CORE_PERF_GLOBAL_OVF_CTRL,
1221 MSR_ARCH_PERFMON_PERFCTR0, MSR_ARCH_PERFMON_PERFCTR1,
1222 MSR_ARCH_PERFMON_PERFCTR0 + 2, MSR_ARCH_PERFMON_PERFCTR0 + 3,
1223 MSR_ARCH_PERFMON_PERFCTR0 + 4, MSR_ARCH_PERFMON_PERFCTR0 + 5,
1224 MSR_ARCH_PERFMON_PERFCTR0 + 6, MSR_ARCH_PERFMON_PERFCTR0 + 7,
1225 MSR_ARCH_PERFMON_PERFCTR0 + 8, MSR_ARCH_PERFMON_PERFCTR0 + 9,
1226 MSR_ARCH_PERFMON_PERFCTR0 + 10, MSR_ARCH_PERFMON_PERFCTR0 + 11,
1227 MSR_ARCH_PERFMON_PERFCTR0 + 12, MSR_ARCH_PERFMON_PERFCTR0 + 13,
1228 MSR_ARCH_PERFMON_PERFCTR0 + 14, MSR_ARCH_PERFMON_PERFCTR0 + 15,
1229 MSR_ARCH_PERFMON_PERFCTR0 + 16, MSR_ARCH_PERFMON_PERFCTR0 + 17,
Jim Mattsone2ada662019-08-21 11:20:04 -07001230 MSR_ARCH_PERFMON_EVENTSEL0, MSR_ARCH_PERFMON_EVENTSEL1,
1231 MSR_ARCH_PERFMON_EVENTSEL0 + 2, MSR_ARCH_PERFMON_EVENTSEL0 + 3,
1232 MSR_ARCH_PERFMON_EVENTSEL0 + 4, MSR_ARCH_PERFMON_EVENTSEL0 + 5,
1233 MSR_ARCH_PERFMON_EVENTSEL0 + 6, MSR_ARCH_PERFMON_EVENTSEL0 + 7,
1234 MSR_ARCH_PERFMON_EVENTSEL0 + 8, MSR_ARCH_PERFMON_EVENTSEL0 + 9,
1235 MSR_ARCH_PERFMON_EVENTSEL0 + 10, MSR_ARCH_PERFMON_EVENTSEL0 + 11,
1236 MSR_ARCH_PERFMON_EVENTSEL0 + 12, MSR_ARCH_PERFMON_EVENTSEL0 + 13,
1237 MSR_ARCH_PERFMON_EVENTSEL0 + 14, MSR_ARCH_PERFMON_EVENTSEL0 + 15,
1238 MSR_ARCH_PERFMON_EVENTSEL0 + 16, MSR_ARCH_PERFMON_EVENTSEL0 + 17,
Carsten Otte043405e2007-10-10 17:16:19 +02001239};
1240
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001241static u32 msrs_to_save[ARRAY_SIZE(msrs_to_save_all)];
Carsten Otte043405e2007-10-10 17:16:19 +02001242static unsigned num_msrs_to_save;
1243
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001244static const u32 emulated_msrs_all[] = {
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001245 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
1246 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
1247 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
1248 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
Ladi Prosek72c139b2017-07-26 13:32:59 +02001249 HV_X64_MSR_TSC_FREQUENCY, HV_X64_MSR_APIC_FREQUENCY,
Andrey Smetanine7d95132015-07-03 15:01:37 +03001250 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
1251 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
Andrey Smetanine516ceb2015-09-16 12:29:48 +03001252 HV_X64_MSR_RESET,
Andrey Smetanin11c4b1c2015-09-16 12:29:49 +03001253 HV_X64_MSR_VP_INDEX,
Andrey Smetanin9eec50b2015-09-16 12:29:50 +03001254 HV_X64_MSR_VP_RUNTIME,
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001255 HV_X64_MSR_SCONTROL,
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03001256 HV_X64_MSR_STIMER0_CONFIG,
Ladi Prosekd4abc572018-03-20 15:02:07 +01001257 HV_X64_MSR_VP_ASSIST_PAGE,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001258 HV_X64_MSR_REENLIGHTENMENT_CONTROL, HV_X64_MSR_TSC_EMULATION_CONTROL,
1259 HV_X64_MSR_TSC_EMULATION_STATUS,
Jon Doronf97f5a52020-05-29 16:45:40 +03001260 HV_X64_MSR_SYNDBG_OPTIONS,
1261 HV_X64_MSR_SYNDBG_CONTROL, HV_X64_MSR_SYNDBG_STATUS,
1262 HV_X64_MSR_SYNDBG_SEND_BUFFER, HV_X64_MSR_SYNDBG_RECV_BUFFER,
1263 HV_X64_MSR_SYNDBG_PENDING_BUFFER,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001264
1265 MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02001266 MSR_KVM_PV_EOI_EN, MSR_KVM_ASYNC_PF_INT, MSR_KVM_ASYNC_PF_ACK,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001267
Will Auldba904632012-11-29 12:42:50 -08001268 MSR_IA32_TSC_ADJUST,
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001269 MSR_IA32_TSCDEADLINE,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001270 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001271 MSR_IA32_PERF_CAPABILITIES,
Carsten Otte043405e2007-10-10 17:16:19 +02001272 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +03001273 MSR_IA32_MCG_STATUS,
1274 MSR_IA32_MCG_CTL,
Ashok Rajc45dcc72016-06-22 14:59:56 +08001275 MSR_IA32_MCG_EXT_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +02001276 MSR_IA32_SMBASE,
Liran Alon52797bf2017-11-15 13:43:14 +02001277 MSR_SMI_COUNT,
Kyle Hueydb2336a2017-03-20 01:16:28 -07001278 MSR_PLATFORM_INFO,
1279 MSR_MISC_FEATURES_ENABLES,
Tom Lendackybc226f02018-05-10 22:06:39 +02001280 MSR_AMD64_VIRT_SPEC_CTRL,
Liran Alon6c6a2ab2019-04-15 18:45:26 +03001281 MSR_IA32_POWER_CTL,
Paolo Bonzini99634e32020-01-20 14:22:55 +01001282 MSR_IA32_UCODE_REV,
Borislav Petkov191c8132019-04-18 18:32:50 +02001283
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001284 /*
1285 * The following list leaves out MSRs whose values are determined
1286 * by arch/x86/kvm/vmx/nested.c based on CPUID or other MSRs.
1287 * We always support the "true" VMX control MSRs, even if the host
1288 * processor does not, so I am putting these registers here rather
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001289 * than in msrs_to_save_all.
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001290 */
1291 MSR_IA32_VMX_BASIC,
1292 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1293 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1294 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1295 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1296 MSR_IA32_VMX_MISC,
1297 MSR_IA32_VMX_CR0_FIXED0,
1298 MSR_IA32_VMX_CR4_FIXED0,
1299 MSR_IA32_VMX_VMCS_ENUM,
1300 MSR_IA32_VMX_PROCBASED_CTLS2,
1301 MSR_IA32_VMX_EPT_VPID_CAP,
1302 MSR_IA32_VMX_VMFUNC,
1303
Borislav Petkov191c8132019-04-18 18:32:50 +02001304 MSR_K7_HWCR,
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03001305 MSR_KVM_POLL_CONTROL,
Carsten Otte043405e2007-10-10 17:16:19 +02001306};
1307
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001308static u32 emulated_msrs[ARRAY_SIZE(emulated_msrs_all)];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001309static unsigned num_emulated_msrs;
1310
Tom Lendacky801e4592018-02-21 13:39:51 -06001311/*
1312 * List of msr numbers which are used to expose MSR-based features that
1313 * can be used by a hypervisor to validate requested CPU features.
1314 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001315static const u32 msr_based_features_all[] = {
Paolo Bonzini13893092018-02-26 13:40:09 +01001316 MSR_IA32_VMX_BASIC,
1317 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1318 MSR_IA32_VMX_PINBASED_CTLS,
1319 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1320 MSR_IA32_VMX_PROCBASED_CTLS,
1321 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1322 MSR_IA32_VMX_EXIT_CTLS,
1323 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1324 MSR_IA32_VMX_ENTRY_CTLS,
1325 MSR_IA32_VMX_MISC,
1326 MSR_IA32_VMX_CR0_FIXED0,
1327 MSR_IA32_VMX_CR0_FIXED1,
1328 MSR_IA32_VMX_CR4_FIXED0,
1329 MSR_IA32_VMX_CR4_FIXED1,
1330 MSR_IA32_VMX_VMCS_ENUM,
1331 MSR_IA32_VMX_PROCBASED_CTLS2,
1332 MSR_IA32_VMX_EPT_VPID_CAP,
1333 MSR_IA32_VMX_VMFUNC,
1334
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01001335 MSR_F10H_DECFG,
Wanpeng Li518e7b92018-02-28 14:03:31 +08001336 MSR_IA32_UCODE_REV,
Paolo Bonzinicd283252018-06-25 14:04:37 +02001337 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001338 MSR_IA32_PERF_CAPABILITIES,
Tom Lendacky801e4592018-02-21 13:39:51 -06001339};
1340
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001341static u32 msr_based_features[ARRAY_SIZE(msr_based_features_all)];
Tom Lendacky801e4592018-02-21 13:39:51 -06001342static unsigned int num_msr_based_features;
1343
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001344static u64 kvm_get_arch_capabilities(void)
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001345{
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001346 u64 data = 0;
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001347
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001348 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES))
1349 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, data);
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001350
1351 /*
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001352 * If nx_huge_pages is enabled, KVM's shadow paging will ensure that
1353 * the nested hypervisor runs with NX huge pages. If it is not,
1354 * L1 is anyway vulnerable to ITLB_MULTIHIT explots from other
1355 * L1 guests, so it need not worry about its own (L2) guests.
1356 */
1357 data |= ARCH_CAP_PSCHANGE_MC_NO;
1358
1359 /*
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001360 * If we're doing cache flushes (either "always" or "cond")
1361 * we will do one whenever the guest does a vmlaunch/vmresume.
1362 * If an outer hypervisor is doing the cache flush for us
1363 * (VMENTER_L1D_FLUSH_NESTED_VM), we can safely pass that
1364 * capability to the guest too, and if EPT is disabled we're not
1365 * vulnerable. Overall, only VMENTER_L1D_FLUSH_NEVER will
1366 * require a nested hypervisor to do a flush of its own.
1367 */
1368 if (l1tf_vmx_mitigation != VMENTER_L1D_FLUSH_NEVER)
1369 data |= ARCH_CAP_SKIP_VMENTRY_L1DFLUSH;
1370
Paolo Bonzini0c549142019-08-19 17:24:07 +02001371 if (!boot_cpu_has_bug(X86_BUG_CPU_MELTDOWN))
1372 data |= ARCH_CAP_RDCL_NO;
1373 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
1374 data |= ARCH_CAP_SSB_NO;
1375 if (!boot_cpu_has_bug(X86_BUG_MDS))
1376 data |= ARCH_CAP_MDS_NO;
1377
Pawan Guptae1d38b62019-10-23 12:23:33 +02001378 /*
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05001379 * On TAA affected systems:
1380 * - nothing to do if TSX is disabled on the host.
1381 * - we emulate TSX_CTRL if present on the host.
1382 * This lets the guest use VERW to clear CPU buffers.
Pawan Guptae1d38b62019-10-23 12:23:33 +02001383 */
Paolo Bonzinicbbaa272019-11-18 18:58:26 +01001384 if (!boot_cpu_has(X86_FEATURE_RTM))
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05001385 data &= ~(ARCH_CAP_TAA_NO | ARCH_CAP_TSX_CTRL_MSR);
Paolo Bonzinicbbaa272019-11-18 18:58:26 +01001386 else if (!boot_cpu_has_bug(X86_BUG_TAA))
1387 data |= ARCH_CAP_TAA_NO;
Pawan Guptae1d38b62019-10-23 12:23:33 +02001388
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001389 return data;
1390}
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001391
Wanpeng Li66421c12018-02-28 14:03:30 +08001392static int kvm_get_msr_feature(struct kvm_msr_entry *msr)
1393{
1394 switch (msr->index) {
Paolo Bonzinicd283252018-06-25 14:04:37 +02001395 case MSR_IA32_ARCH_CAPABILITIES:
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001396 msr->data = kvm_get_arch_capabilities();
1397 break;
1398 case MSR_IA32_UCODE_REV:
Paolo Bonzinicd283252018-06-25 14:04:37 +02001399 rdmsrl_safe(msr->index, &msr->data);
Wanpeng Li518e7b92018-02-28 14:03:31 +08001400 break;
Wanpeng Li66421c12018-02-28 14:03:30 +08001401 default:
Peter Xu12bc2132020-06-22 18:04:42 -04001402 return kvm_x86_ops.get_msr_feature(msr);
Wanpeng Li66421c12018-02-28 14:03:30 +08001403 }
1404 return 0;
1405}
1406
Tom Lendacky801e4592018-02-21 13:39:51 -06001407static int do_get_msr_feature(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1408{
1409 struct kvm_msr_entry msr;
Wanpeng Li66421c12018-02-28 14:03:30 +08001410 int r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001411
1412 msr.index = index;
Wanpeng Li66421c12018-02-28 14:03:30 +08001413 r = kvm_get_msr_feature(&msr);
Peter Xu12bc2132020-06-22 18:04:42 -04001414
1415 if (r == KVM_MSR_RET_INVALID) {
1416 /* Unconditionally clear the output for simplicity */
1417 *data = 0;
1418 r = kvm_msr_ignored_check(vcpu, index, 0, false);
1419 }
1420
Wanpeng Li66421c12018-02-28 14:03:30 +08001421 if (r)
1422 return r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001423
1424 *data = msr.data;
1425
1426 return 0;
1427}
1428
Sean Christopherson11988492019-04-02 08:19:15 -07001429static bool __kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
1430{
1431 if (efer & EFER_FFXSR && !guest_cpuid_has(vcpu, X86_FEATURE_FXSR_OPT))
1432 return false;
1433
1434 if (efer & EFER_SVME && !guest_cpuid_has(vcpu, X86_FEATURE_SVM))
1435 return false;
1436
Sean Christopherson0a629562019-04-02 08:19:16 -07001437 if (efer & (EFER_LME | EFER_LMA) &&
1438 !guest_cpuid_has(vcpu, X86_FEATURE_LM))
1439 return false;
1440
1441 if (efer & EFER_NX && !guest_cpuid_has(vcpu, X86_FEATURE_NX))
1442 return false;
1443
Sean Christopherson11988492019-04-02 08:19:15 -07001444 return true;
1445
1446}
Jan Kiszka384bb782013-04-20 10:52:36 +02001447bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +01001448{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001449 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +02001450 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +01001451
Sean Christopherson11988492019-04-02 08:19:15 -07001452 return __kvm_valid_efer(vcpu, efer);
Jan Kiszka384bb782013-04-20 10:52:36 +02001453}
1454EXPORT_SYMBOL_GPL(kvm_valid_efer);
1455
Sean Christopherson11988492019-04-02 08:19:15 -07001456static int set_efer(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Jan Kiszka384bb782013-04-20 10:52:36 +02001457{
1458 u64 old_efer = vcpu->arch.efer;
Sean Christopherson11988492019-04-02 08:19:15 -07001459 u64 efer = msr_info->data;
Jan Kiszka384bb782013-04-20 10:52:36 +02001460
Sean Christopherson11988492019-04-02 08:19:15 -07001461 if (efer & efer_reserved_bits)
Paolo Bonzini66f61c92019-05-24 21:52:46 +02001462 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +02001463
Sean Christopherson11988492019-04-02 08:19:15 -07001464 if (!msr_info->host_initiated) {
1465 if (!__kvm_valid_efer(vcpu, efer))
1466 return 1;
1467
1468 if (is_paging(vcpu) &&
1469 (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1470 return 1;
1471 }
Jan Kiszka384bb782013-04-20 10:52:36 +02001472
Carsten Otte15c4a642007-10-30 18:44:17 +01001473 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001474 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001475
Sean Christophersonafaf0b22020-03-21 13:26:00 -07001476 kvm_x86_ops.set_efer(vcpu, efer);
Sheng Yanga3d204e2010-05-12 16:40:40 +08001477
Sheng Yangaad82702010-05-12 16:40:42 +08001478 /* Update reserved bits */
1479 if ((efer ^ old_efer) & EFER_NX)
1480 kvm_mmu_reset_context(vcpu);
1481
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001482 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001483}
1484
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001485void kvm_enable_efer_bits(u64 mask)
1486{
1487 efer_reserved_bits &= ~mask;
1488}
1489EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1490
Carsten Otte15c4a642007-10-30 18:44:17 +01001491/*
Sean Christophersonf20935d2019-09-05 14:22:54 -07001492 * Write @data into the MSR specified by @index. Select MSR specific fault
1493 * checks are bypassed if @host_initiated is %true.
Carsten Otte15c4a642007-10-30 18:44:17 +01001494 * Returns 0 on success, non-0 otherwise.
1495 * Assumes vcpu_load() was already called.
1496 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001497static int __kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data,
1498 bool host_initiated)
Carsten Otte15c4a642007-10-30 18:44:17 +01001499{
Sean Christophersonf20935d2019-09-05 14:22:54 -07001500 struct msr_data msr;
1501
1502 switch (index) {
Nadav Amit854e8bb2014-09-16 03:24:05 +03001503 case MSR_FS_BASE:
1504 case MSR_GS_BASE:
1505 case MSR_KERNEL_GS_BASE:
1506 case MSR_CSTAR:
1507 case MSR_LSTAR:
Sean Christophersonf20935d2019-09-05 14:22:54 -07001508 if (is_noncanonical_address(data, vcpu))
Nadav Amit854e8bb2014-09-16 03:24:05 +03001509 return 1;
1510 break;
1511 case MSR_IA32_SYSENTER_EIP:
1512 case MSR_IA32_SYSENTER_ESP:
1513 /*
1514 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1515 * non-canonical address is written on Intel but not on
1516 * AMD (which ignores the top 32-bits, because it does
1517 * not implement 64-bit SYSENTER).
1518 *
1519 * 64-bit code should hence be able to write a non-canonical
1520 * value on AMD. Making the address canonical ensures that
1521 * vmentry does not fail on Intel after writing a non-canonical
1522 * value, and that something deterministic happens if the guest
1523 * invokes 64-bit SYSENTER.
1524 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001525 data = get_canonical(data, vcpu_virt_addr_bits(vcpu));
Nadav Amit854e8bb2014-09-16 03:24:05 +03001526 }
Sean Christophersonf20935d2019-09-05 14:22:54 -07001527
1528 msr.data = data;
1529 msr.index = index;
1530 msr.host_initiated = host_initiated;
1531
Sean Christophersonafaf0b22020-03-21 13:26:00 -07001532 return kvm_x86_ops.set_msr(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001533}
1534
Peter Xu6abe9c12020-06-22 18:04:41 -04001535static int kvm_set_msr_ignored_check(struct kvm_vcpu *vcpu,
1536 u32 index, u64 data, bool host_initiated)
1537{
1538 int ret = __kvm_set_msr(vcpu, index, data, host_initiated);
1539
1540 if (ret == KVM_MSR_RET_INVALID)
1541 ret = kvm_msr_ignored_check(vcpu, index, data, true);
1542
1543 return ret;
1544}
1545
Sean Christophersonf20935d2019-09-05 14:22:54 -07001546/*
1547 * Read the MSR specified by @index into @data. Select MSR specific fault
1548 * checks are bypassed if @host_initiated is %true.
1549 * Returns 0 on success, non-0 otherwise.
1550 * Assumes vcpu_load() was already called.
1551 */
Paolo Bonziniedef5c32019-11-18 12:23:00 -05001552int __kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data,
1553 bool host_initiated)
Sean Christophersonf20935d2019-09-05 14:22:54 -07001554{
1555 struct msr_data msr;
1556 int ret;
1557
1558 msr.index = index;
1559 msr.host_initiated = host_initiated;
1560
Sean Christophersonafaf0b22020-03-21 13:26:00 -07001561 ret = kvm_x86_ops.get_msr(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001562 if (!ret)
1563 *data = msr.data;
1564 return ret;
1565}
1566
Peter Xu6abe9c12020-06-22 18:04:41 -04001567static int kvm_get_msr_ignored_check(struct kvm_vcpu *vcpu,
1568 u32 index, u64 *data, bool host_initiated)
1569{
1570 int ret = __kvm_get_msr(vcpu, index, data, host_initiated);
1571
1572 if (ret == KVM_MSR_RET_INVALID) {
1573 /* Unconditionally clear *data for simplicity */
1574 *data = 0;
1575 ret = kvm_msr_ignored_check(vcpu, index, 0, false);
1576 }
1577
1578 return ret;
1579}
1580
Sean Christophersonf20935d2019-09-05 14:22:54 -07001581int kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data)
1582{
Peter Xu6abe9c12020-06-22 18:04:41 -04001583 return kvm_get_msr_ignored_check(vcpu, index, data, false);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001584}
1585EXPORT_SYMBOL_GPL(kvm_get_msr);
1586
1587int kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data)
1588{
Peter Xu6abe9c12020-06-22 18:04:41 -04001589 return kvm_set_msr_ignored_check(vcpu, index, data, false);
Carsten Otte15c4a642007-10-30 18:44:17 +01001590}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001591EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001592
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001593int kvm_emulate_rdmsr(struct kvm_vcpu *vcpu)
1594{
1595 u32 ecx = kvm_rcx_read(vcpu);
1596 u64 data;
1597
1598 if (kvm_get_msr(vcpu, ecx, &data)) {
1599 trace_kvm_msr_read_ex(ecx);
1600 kvm_inject_gp(vcpu, 0);
1601 return 1;
1602 }
1603
1604 trace_kvm_msr_read(ecx, data);
1605
1606 kvm_rax_write(vcpu, data & -1u);
1607 kvm_rdx_write(vcpu, (data >> 32) & -1u);
1608 return kvm_skip_emulated_instruction(vcpu);
1609}
1610EXPORT_SYMBOL_GPL(kvm_emulate_rdmsr);
1611
1612int kvm_emulate_wrmsr(struct kvm_vcpu *vcpu)
1613{
1614 u32 ecx = kvm_rcx_read(vcpu);
1615 u64 data = kvm_read_edx_eax(vcpu);
1616
1617 if (kvm_set_msr(vcpu, ecx, data)) {
1618 trace_kvm_msr_write_ex(ecx, data);
1619 kvm_inject_gp(vcpu, 0);
1620 return 1;
1621 }
1622
1623 trace_kvm_msr_write(ecx, data);
1624 return kvm_skip_emulated_instruction(vcpu);
1625}
1626EXPORT_SYMBOL_GPL(kvm_emulate_wrmsr);
1627
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001628bool kvm_vcpu_exit_request(struct kvm_vcpu *vcpu)
1629{
1630 return vcpu->mode == EXITING_GUEST_MODE || kvm_request_pending(vcpu) ||
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02001631 xfer_to_guest_mode_work_pending();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001632}
1633EXPORT_SYMBOL_GPL(kvm_vcpu_exit_request);
1634
Carsten Otte313a3dc2007-10-11 19:16:52 +02001635/*
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001636 * The fast path for frequent and performance sensitive wrmsr emulation,
1637 * i.e. the sending of IPI, sending IPI early in the VM-Exit flow reduces
1638 * the latency of virtual IPI by avoiding the expensive bits of transitioning
1639 * from guest to host, e.g. reacquiring KVM's SRCU lock. In contrast to the
1640 * other cases which must be called after interrupts are enabled on the host.
1641 */
1642static int handle_fastpath_set_x2apic_icr_irqoff(struct kvm_vcpu *vcpu, u64 data)
1643{
Wanpeng Lie1be9ac2020-03-26 10:20:01 +08001644 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(vcpu->arch.apic))
1645 return 1;
1646
1647 if (((data & APIC_SHORT_MASK) == APIC_DEST_NOSHORT) &&
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001648 ((data & APIC_DEST_MASK) == APIC_DEST_PHYSICAL) &&
Wanpeng Li4064a4c2020-04-02 16:20:26 +08001649 ((data & APIC_MODE_MASK) == APIC_DM_FIXED) &&
1650 ((u32)(data >> 32) != X2APIC_BROADCAST)) {
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001651
Wanpeng Lid5361672020-03-26 10:20:02 +08001652 data &= ~(1 << 12);
1653 kvm_apic_send_ipi(vcpu->arch.apic, (u32)data, (u32)(data >> 32));
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001654 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR2, (u32)(data >> 32));
Wanpeng Lid5361672020-03-26 10:20:02 +08001655 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR, (u32)data);
1656 trace_kvm_apic_write(APIC_ICR, (u32)data);
1657 return 0;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001658 }
1659
1660 return 1;
1661}
1662
Wanpeng Liae95f562020-04-28 14:23:28 +08001663static int handle_fastpath_set_tscdeadline(struct kvm_vcpu *vcpu, u64 data)
1664{
1665 if (!kvm_can_use_hv_timer(vcpu))
1666 return 1;
1667
1668 kvm_set_lapic_tscdeadline_msr(vcpu, data);
1669 return 0;
1670}
1671
Wanpeng Li404d5d72020-04-28 14:23:25 +08001672fastpath_t handle_fastpath_set_msr_irqoff(struct kvm_vcpu *vcpu)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001673{
1674 u32 msr = kvm_rcx_read(vcpu);
Wanpeng Li8a1038d2020-03-26 10:20:00 +08001675 u64 data;
Wanpeng Li404d5d72020-04-28 14:23:25 +08001676 fastpath_t ret = EXIT_FASTPATH_NONE;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001677
1678 switch (msr) {
1679 case APIC_BASE_MSR + (APIC_ICR >> 4):
Wanpeng Li8a1038d2020-03-26 10:20:00 +08001680 data = kvm_read_edx_eax(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08001681 if (!handle_fastpath_set_x2apic_icr_irqoff(vcpu, data)) {
1682 kvm_skip_emulated_instruction(vcpu);
1683 ret = EXIT_FASTPATH_EXIT_HANDLED;
Haiwei Li80bc97f2020-05-18 09:31:38 +08001684 }
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001685 break;
Wanpeng Liae95f562020-04-28 14:23:28 +08001686 case MSR_IA32_TSCDEADLINE:
1687 data = kvm_read_edx_eax(vcpu);
1688 if (!handle_fastpath_set_tscdeadline(vcpu, data)) {
1689 kvm_skip_emulated_instruction(vcpu);
1690 ret = EXIT_FASTPATH_REENTER_GUEST;
1691 }
1692 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001693 default:
Wanpeng Li404d5d72020-04-28 14:23:25 +08001694 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001695 }
1696
Wanpeng Li404d5d72020-04-28 14:23:25 +08001697 if (ret != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001698 trace_kvm_msr_write(msr, data);
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001699
Wanpeng Li404d5d72020-04-28 14:23:25 +08001700 return ret;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001701}
1702EXPORT_SYMBOL_GPL(handle_fastpath_set_msr_irqoff);
1703
1704/*
Carsten Otte313a3dc2007-10-11 19:16:52 +02001705 * Adapt set_msr() to msr_io()'s calling convention
1706 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001707static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1708{
Peter Xu6abe9c12020-06-22 18:04:41 -04001709 return kvm_get_msr_ignored_check(vcpu, index, data, true);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001710}
1711
Carsten Otte313a3dc2007-10-11 19:16:52 +02001712static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1713{
Peter Xu6abe9c12020-06-22 18:04:41 -04001714 return kvm_set_msr_ignored_check(vcpu, index, *data, true);
Carsten Otte313a3dc2007-10-11 19:16:52 +02001715}
1716
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001717#ifdef CONFIG_X86_64
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02001718struct pvclock_clock {
1719 int vclock_mode;
1720 u64 cycle_last;
1721 u64 mask;
1722 u32 mult;
1723 u32 shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01001724 u64 base_cycles;
1725 u64 offset;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02001726};
1727
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001728struct pvclock_gtod_data {
1729 seqcount_t seq;
1730
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02001731 struct pvclock_clock clock; /* extract of a clocksource struct */
1732 struct pvclock_clock raw_clock; /* extract of a clocksource struct */
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001733
Paolo Bonzini917f9472020-01-22 14:32:20 +01001734 ktime_t offs_boot;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02001735 u64 wall_time_sec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001736};
1737
1738static struct pvclock_gtod_data pvclock_gtod_data;
1739
1740static void update_pvclock_gtod(struct timekeeper *tk)
1741{
1742 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
1743
1744 write_seqcount_begin(&vdata->seq);
1745
1746 /* copy pvclock gtod data */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01001747 vdata->clock.vclock_mode = tk->tkr_mono.clock->vdso_clock_mode;
Peter Zijlstra876e7882015-03-19 10:09:06 +01001748 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
1749 vdata->clock.mask = tk->tkr_mono.mask;
1750 vdata->clock.mult = tk->tkr_mono.mult;
1751 vdata->clock.shift = tk->tkr_mono.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01001752 vdata->clock.base_cycles = tk->tkr_mono.xtime_nsec;
1753 vdata->clock.offset = tk->tkr_mono.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001754
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01001755 vdata->raw_clock.vclock_mode = tk->tkr_raw.clock->vdso_clock_mode;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02001756 vdata->raw_clock.cycle_last = tk->tkr_raw.cycle_last;
1757 vdata->raw_clock.mask = tk->tkr_raw.mask;
1758 vdata->raw_clock.mult = tk->tkr_raw.mult;
1759 vdata->raw_clock.shift = tk->tkr_raw.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01001760 vdata->raw_clock.base_cycles = tk->tkr_raw.xtime_nsec;
1761 vdata->raw_clock.offset = tk->tkr_raw.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001762
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02001763 vdata->wall_time_sec = tk->xtime_sec;
1764
Paolo Bonzini917f9472020-01-22 14:32:20 +01001765 vdata->offs_boot = tk->offs_boot;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02001766
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001767 write_seqcount_end(&vdata->seq);
1768}
Paolo Bonzini8171cd62020-01-22 14:36:09 +01001769
1770static s64 get_kvmclock_base_ns(void)
1771{
1772 /* Count up from boot time, but with the frequency of the raw clock. */
1773 return ktime_to_ns(ktime_add(ktime_get_raw(), pvclock_gtod_data.offs_boot));
1774}
1775#else
1776static s64 get_kvmclock_base_ns(void)
1777{
1778 /* Master clock not used, so we can just use CLOCK_BOOTTIME. */
1779 return ktime_get_boottime_ns();
1780}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001781#endif
1782
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001783static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock)
1784{
Avi Kivity9ed3c442010-05-04 15:00:37 +03001785 int version;
1786 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001787 struct pvclock_wall_clock wc;
Paolo Bonzini8171cd62020-01-22 14:36:09 +01001788 u64 wall_nsec;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001789
1790 if (!wall_clock)
1791 return;
1792
Avi Kivity9ed3c442010-05-04 15:00:37 +03001793 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
1794 if (r)
1795 return;
1796
1797 if (version & 1)
1798 ++version; /* first time write, random junk */
1799
1800 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001801
Nicholas Krause1dab1342015-12-30 13:08:46 -05001802 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
1803 return;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001804
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001805 /*
1806 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10001807 * system time (updated by kvm_guest_time_update below) to the
Paolo Bonzini8171cd62020-01-22 14:36:09 +01001808 * wall clock specified here. We do the reverse here.
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001809 */
Paolo Bonzini8171cd62020-01-22 14:36:09 +01001810 wall_nsec = ktime_get_real_ns() - get_kvmclock_ns(kvm);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001811
Paolo Bonzini8171cd62020-01-22 14:36:09 +01001812 wc.nsec = do_div(wall_nsec, 1000000000);
1813 wc.sec = (u32)wall_nsec; /* overflow in 2106 guest time */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001814 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001815
1816 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
1817
1818 version++;
1819 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001820}
1821
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001822static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
1823{
Paolo Bonzinib51012d2016-01-22 11:39:22 +01001824 do_shl32_div32(dividend, divisor);
1825 return dividend;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001826}
1827
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001828static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001829 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001830{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001831 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001832 int32_t shift = 0;
1833 uint64_t tps64;
1834 uint32_t tps32;
1835
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001836 tps64 = base_hz;
1837 scaled64 = scaled_hz;
Jan Kiszka50933622010-09-26 13:00:53 +02001838 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001839 tps64 >>= 1;
1840 shift--;
1841 }
1842
1843 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02001844 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
1845 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001846 scaled64 >>= 1;
1847 else
1848 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001849 shift++;
1850 }
1851
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001852 *pshift = shift;
1853 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001854}
1855
Marcelo Tosattid8281992012-11-27 23:29:01 -02001856#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001857static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001858#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001859
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001860static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08001861static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001862
Zachary Amsdencc578282012-02-03 15:43:50 -02001863static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10001864{
Zachary Amsdencc578282012-02-03 15:43:50 -02001865 u64 v = (u64)khz * (1000000 + ppm);
1866 do_div(v, 1000000);
1867 return v;
1868}
1869
Haozhong Zhang381d5852015-10-20 15:39:04 +08001870static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
1871{
1872 u64 ratio;
1873
1874 /* Guest TSC same frequency as host TSC? */
1875 if (!scale) {
1876 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
1877 return 0;
1878 }
1879
1880 /* TSC scaling supported? */
1881 if (!kvm_has_tsc_control) {
1882 if (user_tsc_khz > tsc_khz) {
1883 vcpu->arch.tsc_catchup = 1;
1884 vcpu->arch.tsc_always_catchup = 1;
1885 return 0;
1886 } else {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02001887 pr_warn_ratelimited("user requested TSC rate below hardware speed\n");
Haozhong Zhang381d5852015-10-20 15:39:04 +08001888 return -1;
1889 }
1890 }
1891
1892 /* TSC scaling required - calculate ratio */
1893 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
1894 user_tsc_khz, tsc_khz);
1895
1896 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02001897 pr_warn_ratelimited("Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
1898 user_tsc_khz);
Haozhong Zhang381d5852015-10-20 15:39:04 +08001899 return -1;
1900 }
1901
1902 vcpu->arch.tsc_scaling_ratio = ratio;
1903 return 0;
1904}
1905
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001906static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
Zachary Amsdencc578282012-02-03 15:43:50 -02001907{
1908 u32 thresh_lo, thresh_hi;
1909 int use_scaling = 0;
1910
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001911 /* tsc_khz can be zero if TSC calibration fails */
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001912 if (user_tsc_khz == 0) {
Haozhong Zhangad7218832015-10-20 15:39:02 +08001913 /* set tsc_scaling_ratio to a safe value */
1914 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
Haozhong Zhang381d5852015-10-20 15:39:04 +08001915 return -1;
Haozhong Zhangad7218832015-10-20 15:39:02 +08001916 }
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001917
Zachary Amsdenc2855452010-09-18 14:38:15 -10001918 /* Compute a scale to convert nanoseconds in TSC cycles */
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001919 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
Zachary Amsdencc578282012-02-03 15:43:50 -02001920 &vcpu->arch.virtual_tsc_shift,
1921 &vcpu->arch.virtual_tsc_mult);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001922 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
Zachary Amsdencc578282012-02-03 15:43:50 -02001923
1924 /*
1925 * Compute the variation in TSC rate which is acceptable
1926 * within the range of tolerance and decide if the
1927 * rate being applied is within that bounds of the hardware
1928 * rate. If so, no scaling or compensation need be done.
1929 */
1930 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
1931 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001932 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
1933 pr_debug("kvm: requested TSC rate %u falls outside tolerance [%u,%u]\n", user_tsc_khz, thresh_lo, thresh_hi);
Zachary Amsdencc578282012-02-03 15:43:50 -02001934 use_scaling = 1;
1935 }
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001936 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001937}
1938
1939static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
1940{
Zachary Amsdene26101b2012-02-03 15:43:57 -02001941 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02001942 vcpu->arch.virtual_tsc_mult,
1943 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001944 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10001945 return tsc;
1946}
1947
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01001948static inline int gtod_is_based_on_tsc(int mode)
1949{
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01001950 return mode == VDSO_CLOCKMODE_TSC || mode == VDSO_CLOCKMODE_HVCLOCK;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01001951}
1952
Fengguang Wu69b00492015-01-19 22:33:39 +08001953static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001954{
1955#ifdef CONFIG_X86_64
1956 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001957 struct kvm_arch *ka = &vcpu->kvm->arch;
1958 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1959
1960 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1961 atomic_read(&vcpu->kvm->online_vcpus));
1962
Marcelo Tosatti7f187922014-11-04 21:30:44 -02001963 /*
1964 * Once the masterclock is enabled, always perform request in
1965 * order to update it.
1966 *
1967 * In order to enable masterclock, the host clocksource must be TSC
1968 * and the vcpus need to have matched TSCs. When that happens,
1969 * perform request to enable masterclock.
1970 */
1971 if (ka->use_master_clock ||
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01001972 (gtod_is_based_on_tsc(gtod->clock.vclock_mode) && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001973 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
1974
1975 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
1976 atomic_read(&vcpu->kvm->online_vcpus),
1977 ka->use_master_clock, gtod->clock.vclock_mode);
1978#endif
1979}
1980
Will Auldba904632012-11-29 12:42:50 -08001981static void update_ia32_tsc_adjust_msr(struct kvm_vcpu *vcpu, s64 offset)
1982{
Sean Christopherson56ba77a2020-05-01 21:32:25 -07001983 u64 curr_offset = vcpu->arch.l1_tsc_offset;
Will Auldba904632012-11-29 12:42:50 -08001984 vcpu->arch.ia32_tsc_adjust_msr += offset - curr_offset;
1985}
1986
Haozhong Zhang35181e82015-10-20 15:39:03 +08001987/*
1988 * Multiply tsc by a fixed point number represented by ratio.
1989 *
1990 * The most significant 64-N bits (mult) of ratio represent the
1991 * integral part of the fixed point number; the remaining N bits
1992 * (frac) represent the fractional part, ie. ratio represents a fixed
1993 * point number (mult + frac * 2^(-N)).
1994 *
1995 * N equals to kvm_tsc_scaling_ratio_frac_bits.
1996 */
1997static inline u64 __scale_tsc(u64 ratio, u64 tsc)
1998{
1999 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
2000}
2001
2002u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc)
2003{
2004 u64 _tsc = tsc;
2005 u64 ratio = vcpu->arch.tsc_scaling_ratio;
2006
2007 if (ratio != kvm_default_tsc_scaling_ratio)
2008 _tsc = __scale_tsc(ratio, tsc);
2009
2010 return _tsc;
2011}
2012EXPORT_SYMBOL_GPL(kvm_scale_tsc);
2013
Haozhong Zhang07c14192015-10-20 15:39:05 +08002014static u64 kvm_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
2015{
2016 u64 tsc;
2017
2018 tsc = kvm_scale_tsc(vcpu, rdtsc());
2019
2020 return target_tsc - tsc;
2021}
2022
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002023u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
2024{
Sean Christopherson56ba77a2020-05-01 21:32:25 -07002025 return vcpu->arch.l1_tsc_offset + kvm_scale_tsc(vcpu, host_tsc);
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002026}
2027EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
2028
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002029static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
2030{
Sean Christopherson56ba77a2020-05-01 21:32:25 -07002031 vcpu->arch.l1_tsc_offset = offset;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07002032 vcpu->arch.tsc_offset = kvm_x86_ops.write_l1_tsc_offset(vcpu, offset);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002033}
2034
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002035static inline bool kvm_check_tsc_unstable(void)
2036{
2037#ifdef CONFIG_X86_64
2038 /*
2039 * TSC is marked unstable when we're running on Hyper-V,
2040 * 'TSC page' clocksource is good.
2041 */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002042 if (pvclock_gtod_data.clock.vclock_mode == VDSO_CLOCKMODE_HVCLOCK)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002043 return false;
2044#endif
2045 return check_tsc_unstable();
2046}
2047
Will Auld8fe8ab42012-11-29 12:42:12 -08002048void kvm_write_tsc(struct kvm_vcpu *vcpu, struct msr_data *msr)
Zachary Amsden99e3e302010-08-19 22:07:17 -10002049{
2050 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002051 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002052 unsigned long flags;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002053 bool matched;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002054 bool already_matched;
Will Auld8fe8ab42012-11-29 12:42:12 -08002055 u64 data = msr->data;
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002056 bool synchronizing = false;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002057
Jan Kiszka038f8c12011-02-04 10:49:11 +01002058 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Haozhong Zhang07c14192015-10-20 15:39:05 +08002059 offset = kvm_compute_tsc_offset(vcpu, data);
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002060 ns = get_kvmclock_base_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002061 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002062
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002063 if (vcpu->arch.virtual_tsc_khz) {
Denis Plotnikovbd8fab32017-04-07 12:09:53 +03002064 if (data == 0 && msr->host_initiated) {
2065 /*
2066 * detection of vcpu initialization -- need to sync
2067 * with other vCPUs. This particularly helps to keep
2068 * kvm_clock stable after CPU hotplug
2069 */
2070 synchronizing = true;
2071 } else {
2072 u64 tsc_exp = kvm->arch.last_tsc_write +
2073 nsec_to_cycles(vcpu, elapsed);
2074 u64 tsc_hz = vcpu->arch.virtual_tsc_khz * 1000LL;
2075 /*
2076 * Special case: TSC write with a small delta (1 second)
2077 * of virtual cycle time against real time is
2078 * interpreted as an attempt to synchronize the CPU.
2079 */
2080 synchronizing = data < tsc_exp + tsc_hz &&
2081 data + tsc_hz > tsc_exp;
2082 }
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002083 }
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002084
2085 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002086 * For a reliable TSC, we can match TSC offsets, and for an unstable
2087 * TSC, we add elapsed time in this computation. We could let the
2088 * compensation code attempt to catch up if we fall behind, but
2089 * it's better to try to match offsets from the beginning.
2090 */
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002091 if (synchronizing &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002092 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002093 if (!kvm_check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02002094 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002095 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01002096 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002097 data += delta;
Haozhong Zhang07c14192015-10-20 15:39:05 +08002098 offset = kvm_compute_tsc_offset(vcpu, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002099 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002100 matched = true;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002101 already_matched = (vcpu->arch.this_tsc_generation == kvm->arch.cur_tsc_generation);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002102 } else {
2103 /*
2104 * We split periods of matched TSC writes into generations.
2105 * For each generation, we track the original measured
2106 * nanosecond time, offset, and write, so if TSCs are in
2107 * sync, we can match exact offset, and if not, we can match
Guo Chao4a969982012-06-28 15:17:27 +08002108 * exact software computation in compute_guest_tsc()
Zachary Amsdene26101b2012-02-03 15:43:57 -02002109 *
2110 * These values are tracked in kvm->arch.cur_xxx variables.
2111 */
2112 kvm->arch.cur_tsc_generation++;
2113 kvm->arch.cur_tsc_nsec = ns;
2114 kvm->arch.cur_tsc_write = data;
2115 kvm->arch.cur_tsc_offset = offset;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002116 matched = false;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002117 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02002118
2119 /*
2120 * We also track th most recent recorded KHZ, write and time to
2121 * allow the matching interval to be extended at each write.
2122 */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002123 kvm->arch.last_tsc_nsec = ns;
2124 kvm->arch.last_tsc_write = data;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002125 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002126
Zachary Amsdenb183aa52012-02-03 15:43:53 -02002127 vcpu->arch.last_guest_tsc = data;
Zachary Amsdene26101b2012-02-03 15:43:57 -02002128
2129 /* Keep track of which generation this VCPU has synchronized to */
2130 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
2131 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
2132 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
2133
Radim Krčmářd6321d42017-08-05 00:12:49 +02002134 if (!msr->host_initiated && guest_cpuid_has(vcpu, X86_FEATURE_TSC_ADJUST))
Will Auldba904632012-11-29 12:42:50 -08002135 update_ia32_tsc_adjust_msr(vcpu, offset);
Radim Krčmářd6321d42017-08-05 00:12:49 +02002136
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002137 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002138 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002139
2140 spin_lock(&kvm->arch.pvclock_gtod_sync_lock);
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002141 if (!matched) {
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002142 kvm->arch.nr_vcpus_matched_tsc = 0;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002143 } else if (!already_matched) {
2144 kvm->arch.nr_vcpus_matched_tsc++;
2145 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002146
2147 kvm_track_tsc_matching(vcpu);
2148 spin_unlock(&kvm->arch.pvclock_gtod_sync_lock);
Zachary Amsden99e3e302010-08-19 22:07:17 -10002149}
Zachary Amsdene26101b2012-02-03 15:43:57 -02002150
Zachary Amsden99e3e302010-08-19 22:07:17 -10002151EXPORT_SYMBOL_GPL(kvm_write_tsc);
2152
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002153static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
2154 s64 adjustment)
2155{
Sean Christopherson56ba77a2020-05-01 21:32:25 -07002156 u64 tsc_offset = vcpu->arch.l1_tsc_offset;
Leonid Shatz326e7422018-11-06 12:14:25 +02002157 kvm_vcpu_write_tsc_offset(vcpu, tsc_offset + adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002158}
2159
2160static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
2161{
2162 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
2163 WARN_ON(adjustment < 0);
2164 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01002165 adjust_tsc_offset_guest(vcpu, adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002166}
2167
Marcelo Tosattid8281992012-11-27 23:29:01 -02002168#ifdef CONFIG_X86_64
2169
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002170static u64 read_tsc(void)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002171{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002172 u64 ret = (u64)rdtsc_ordered();
Andy Lutomirski03b97302015-06-25 18:44:08 +02002173 u64 last = pvclock_gtod_data.clock.cycle_last;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002174
2175 if (likely(ret >= last))
2176 return ret;
2177
2178 /*
2179 * GCC likes to generate cmov here, but this branch is extremely
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08002180 * predictable (it's just a function of time and the likely is
Marcelo Tosattid8281992012-11-27 23:29:01 -02002181 * very likely) and there's a data dependence, so force GCC
2182 * to generate a branch instead. I don't barrier() because
2183 * we don't actually need a barrier, and if this function
2184 * ever gets inlined it will generate worse code.
2185 */
2186 asm volatile ("");
2187 return last;
2188}
2189
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002190static inline u64 vgettsc(struct pvclock_clock *clock, u64 *tsc_timestamp,
2191 int *mode)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002192{
2193 long v;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002194 u64 tsc_pg_val;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002195
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002196 switch (clock->vclock_mode) {
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002197 case VDSO_CLOCKMODE_HVCLOCK:
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002198 tsc_pg_val = hv_read_tsc_page_tsc(hv_get_tsc_page(),
2199 tsc_timestamp);
2200 if (tsc_pg_val != U64_MAX) {
2201 /* TSC page valid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002202 *mode = VDSO_CLOCKMODE_HVCLOCK;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002203 v = (tsc_pg_val - clock->cycle_last) &
2204 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002205 } else {
2206 /* TSC page invalid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002207 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002208 }
2209 break;
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002210 case VDSO_CLOCKMODE_TSC:
2211 *mode = VDSO_CLOCKMODE_TSC;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002212 *tsc_timestamp = read_tsc();
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002213 v = (*tsc_timestamp - clock->cycle_last) &
2214 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002215 break;
2216 default:
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002217 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002218 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002219
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002220 if (*mode == VDSO_CLOCKMODE_NONE)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002221 *tsc_timestamp = v = 0;
2222
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002223 return v * clock->mult;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002224}
2225
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002226static int do_monotonic_raw(s64 *t, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002227{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002228 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002229 unsigned long seq;
2230 int mode;
2231 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002232
Marcelo Tosattid8281992012-11-27 23:29:01 -02002233 do {
2234 seq = read_seqcount_begin(&gtod->seq);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002235 ns = gtod->raw_clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002236 ns += vgettsc(&gtod->raw_clock, tsc_timestamp, &mode);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002237 ns >>= gtod->raw_clock.shift;
2238 ns += ktime_to_ns(ktime_add(gtod->raw_clock.offset, gtod->offs_boot));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002239 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002240 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002241
2242 return mode;
2243}
2244
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002245static int do_realtime(struct timespec64 *ts, u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002246{
2247 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2248 unsigned long seq;
2249 int mode;
2250 u64 ns;
2251
2252 do {
2253 seq = read_seqcount_begin(&gtod->seq);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002254 ts->tv_sec = gtod->wall_time_sec;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002255 ns = gtod->clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002256 ns += vgettsc(&gtod->clock, tsc_timestamp, &mode);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002257 ns >>= gtod->clock.shift;
2258 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
2259
2260 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
2261 ts->tv_nsec = ns;
2262
2263 return mode;
2264}
2265
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002266/* returns true if host is using TSC based clocksource */
2267static bool kvm_get_time_and_clockread(s64 *kernel_ns, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002268{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002269 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002270 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosattid8281992012-11-27 23:29:01 -02002271 return false;
2272
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002273 return gtod_is_based_on_tsc(do_monotonic_raw(kernel_ns,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002274 tsc_timestamp));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002275}
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002276
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002277/* returns true if host is using TSC based clocksource */
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002278static bool kvm_get_walltime_and_clockread(struct timespec64 *ts,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002279 u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002280{
2281 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002282 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002283 return false;
2284
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002285 return gtod_is_based_on_tsc(do_realtime(ts, tsc_timestamp));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002286}
Marcelo Tosattid8281992012-11-27 23:29:01 -02002287#endif
2288
2289/*
2290 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002291 * Assuming a stable TSC across physical CPUS, and a stable TSC
2292 * across virtual CPUs, the following condition is possible.
2293 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02002294 * CPUs at the next numbered event.
2295 *
2296 * "timespecX" represents host monotonic time. "tscX" represents
2297 * RDTSC value.
2298 *
2299 * VCPU0 on CPU0 | VCPU1 on CPU1
2300 *
2301 * 1. read timespec0,tsc0
2302 * 2. | timespec1 = timespec0 + N
2303 * | tsc1 = tsc0 + M
2304 * 3. transition to guest | transition to guest
2305 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
2306 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
2307 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
2308 *
2309 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
2310 *
2311 * - ret0 < ret1
2312 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
2313 * ...
2314 * - 0 < N - M => M < N
2315 *
2316 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
2317 * always the case (the difference between two distinct xtime instances
2318 * might be smaller then the difference between corresponding TSC reads,
2319 * when updating guest vcpus pvclock areas).
2320 *
2321 * To avoid that problem, do not allow visibility of distinct
2322 * system_timestamp/tsc_timestamp values simultaneously: use a master
2323 * copy of host monotonic time values. Update that master copy
2324 * in lockstep.
2325 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002326 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02002327 *
2328 */
2329
2330static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
2331{
2332#ifdef CONFIG_X86_64
2333 struct kvm_arch *ka = &kvm->arch;
2334 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002335 bool host_tsc_clocksource, vcpus_matched;
2336
2337 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2338 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002339
2340 /*
2341 * If the host uses TSC clock, then passthrough TSC as stable
2342 * to the guest.
2343 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002344 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02002345 &ka->master_kernel_ns,
2346 &ka->master_cycle_now);
2347
Marcelo Tosatti16a96022014-05-14 12:43:24 -03002348 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Ladi Proseka826faf2017-06-26 09:56:43 +02002349 && !ka->backwards_tsc_observed
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002350 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002351
Marcelo Tosattid8281992012-11-27 23:29:01 -02002352 if (ka->use_master_clock)
2353 atomic_set(&kvm_guest_has_master_clock, 1);
2354
2355 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002356 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
2357 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002358#endif
2359}
2360
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01002361void kvm_make_mclock_inprogress_request(struct kvm *kvm)
2362{
2363 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
2364}
2365
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002366static void kvm_gen_update_masterclock(struct kvm *kvm)
2367{
2368#ifdef CONFIG_X86_64
2369 int i;
2370 struct kvm_vcpu *vcpu;
2371 struct kvm_arch *ka = &kvm->arch;
2372
2373 spin_lock(&ka->pvclock_gtod_sync_lock);
2374 kvm_make_mclock_inprogress_request(kvm);
2375 /* no guest entries from this point */
2376 pvclock_update_vm_gtod_copy(kvm);
2377
2378 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002379 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002380
2381 /* guest entries allowed */
2382 kvm_for_each_vcpu(i, vcpu, kvm)
Radim Krčmář72875d82017-04-26 22:32:19 +02002383 kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002384
2385 spin_unlock(&ka->pvclock_gtod_sync_lock);
2386#endif
2387}
2388
Marcelo Tosattie891a322017-04-17 12:51:37 -03002389u64 get_kvmclock_ns(struct kvm *kvm)
Paolo Bonzini108b2492016-09-01 14:21:03 +02002390{
Paolo Bonzini108b2492016-09-01 14:21:03 +02002391 struct kvm_arch *ka = &kvm->arch;
Paolo Bonzini8b953442016-11-16 18:31:30 +01002392 struct pvclock_vcpu_time_info hv_clock;
Wanpeng Lie2c22062017-05-11 18:12:05 -07002393 u64 ret;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002394
Paolo Bonzini8b953442016-11-16 18:31:30 +01002395 spin_lock(&ka->pvclock_gtod_sync_lock);
2396 if (!ka->use_master_clock) {
2397 spin_unlock(&ka->pvclock_gtod_sync_lock);
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002398 return get_kvmclock_base_ns() + ka->kvmclock_offset;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002399 }
2400
Paolo Bonzini8b953442016-11-16 18:31:30 +01002401 hv_clock.tsc_timestamp = ka->master_cycle_now;
2402 hv_clock.system_time = ka->master_kernel_ns + ka->kvmclock_offset;
2403 spin_unlock(&ka->pvclock_gtod_sync_lock);
2404
Wanpeng Lie2c22062017-05-11 18:12:05 -07002405 /* both __this_cpu_read() and rdtsc() should be on the same cpu */
2406 get_cpu();
2407
Wanpeng Lie70b57a2017-11-20 14:55:05 -08002408 if (__this_cpu_read(cpu_tsc_khz)) {
2409 kvm_get_time_scale(NSEC_PER_SEC, __this_cpu_read(cpu_tsc_khz) * 1000LL,
2410 &hv_clock.tsc_shift,
2411 &hv_clock.tsc_to_system_mul);
2412 ret = __pvclock_read_cycles(&hv_clock, rdtsc());
2413 } else
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002414 ret = get_kvmclock_base_ns() + ka->kvmclock_offset;
Wanpeng Lie2c22062017-05-11 18:12:05 -07002415
2416 put_cpu();
2417
2418 return ret;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002419}
2420
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002421static void kvm_setup_pvclock_page(struct kvm_vcpu *v)
2422{
2423 struct kvm_vcpu_arch *vcpu = &v->arch;
2424 struct pvclock_vcpu_time_info guest_hv_clock;
2425
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002426 if (unlikely(kvm_read_guest_cached(v->kvm, &vcpu->pv_time,
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002427 &guest_hv_clock, sizeof(guest_hv_clock))))
2428 return;
2429
2430 /* This VCPU is paused, but it's legal for a guest to read another
2431 * VCPU's kvmclock, so we really have to follow the specification where
2432 * it says that version is odd if data is being modified, and even after
2433 * it is consistent.
2434 *
2435 * Version field updates must be kept separate. This is because
2436 * kvm_write_guest_cached might use a "rep movs" instruction, and
2437 * writes within a string instruction are weakly ordered. So there
2438 * are three writes overall.
2439 *
2440 * As a small optimization, only write the version field in the first
2441 * and third write. The vcpu->pv_time cache is still valid, because the
2442 * version field is the first in the struct.
2443 */
2444 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
2445
Liran Alon51c4b8b2017-11-05 16:11:30 +02002446 if (guest_hv_clock.version & 1)
2447 ++guest_hv_clock.version; /* first time write, random junk */
2448
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002449 vcpu->hv_clock.version = guest_hv_clock.version + 1;
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002450 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
2451 &vcpu->hv_clock,
2452 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002453
2454 smp_wmb();
2455
2456 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
2457 vcpu->hv_clock.flags |= (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
2458
2459 if (vcpu->pvclock_set_guest_stopped_request) {
2460 vcpu->hv_clock.flags |= PVCLOCK_GUEST_STOPPED;
2461 vcpu->pvclock_set_guest_stopped_request = false;
2462 }
2463
2464 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
2465
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002466 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
2467 &vcpu->hv_clock,
2468 sizeof(vcpu->hv_clock));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002469
2470 smp_wmb();
2471
2472 vcpu->hv_clock.version++;
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002473 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
2474 &vcpu->hv_clock,
2475 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002476}
2477
Zachary Amsden34c238a2010-09-18 14:38:14 -10002478static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002479{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002480 unsigned long flags, tgt_tsc_khz;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002481 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002482 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02002483 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002484 u64 tsc_timestamp, host_tsc;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002485 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002486 bool use_master_clock;
2487
2488 kernel_ns = 0;
2489 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002490
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002491 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02002492 * If the host uses TSC clock, then passthrough TSC as stable
2493 * to the guest.
2494 */
2495 spin_lock(&ka->pvclock_gtod_sync_lock);
2496 use_master_clock = ka->use_master_clock;
2497 if (use_master_clock) {
2498 host_tsc = ka->master_cycle_now;
2499 kernel_ns = ka->master_kernel_ns;
2500 }
2501 spin_unlock(&ka->pvclock_gtod_sync_lock);
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002502
2503 /* Keep irq disabled to prevent changes to the clock */
2504 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002505 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
2506 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002507 local_irq_restore(flags);
2508 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
2509 return 1;
2510 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002511 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002512 host_tsc = rdtsc();
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002513 kernel_ns = get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02002514 }
2515
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002516 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002517
2518 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10002519 * We may have to catch up the TSC to match elapsed wall clock
2520 * time for two reasons, even if kvmclock is used.
2521 * 1) CPU could have been running below the maximum TSC rate
2522 * 2) Broken TSC compensation resets the base at each VCPU
2523 * entry to avoid unknown leaps of TSC even when running
2524 * again on the same CPU. This may cause apparent elapsed
2525 * time to disappear, and the guest to stand still or run
2526 * very slowly.
2527 */
2528 if (vcpu->tsc_catchup) {
2529 u64 tsc = compute_guest_tsc(v, kernel_ns);
2530 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02002531 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002532 tsc_timestamp = tsc;
2533 }
2534 }
2535
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002536 local_irq_restore(flags);
2537
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002538 /* With all the info we got, fill in the values */
Zachary Amsdenc2855452010-09-18 14:38:15 -10002539
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002540 if (kvm_has_tsc_control)
2541 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz);
2542
2543 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002544 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002545 &vcpu->hv_clock.tsc_shift,
2546 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002547 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10002548 }
2549
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002550 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10002551 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10002552 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002553
Marcelo Tosattid8281992012-11-27 23:29:01 -02002554 /* If the host uses TSC clocksource, then it is stable */
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002555 pvclock_flags = 0;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002556 if (use_master_clock)
2557 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
2558
Marcelo Tosatti78c03372012-11-27 23:28:47 -02002559 vcpu->hv_clock.flags = pvclock_flags;
2560
Paolo Bonzini095cf552016-02-08 12:54:12 +01002561 if (vcpu->pv_time_enabled)
2562 kvm_setup_pvclock_page(v);
2563 if (v == kvm_get_vcpu(v->kvm, 0))
2564 kvm_hv_setup_tsc_page(v->kvm, &vcpu->hv_clock);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10002565 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002566}
2567
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002568/*
2569 * kvmclock updates which are isolated to a given vcpu, such as
2570 * vcpu->cpu migration, should not allow system_timestamp from
2571 * the rest of the vcpus to remain static. Otherwise ntp frequency
2572 * correction applies to one vcpu's system_timestamp but not
2573 * the others.
2574 *
2575 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01002576 * We need to rate-limit these requests though, as they can
2577 * considerably slow guests that have a large number of vcpus.
2578 * The time for a remote vcpu to update its kvmclock is bound
2579 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002580 */
2581
Andrew Jones7e44e442014-02-28 12:52:54 +01002582#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
2583
2584static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002585{
2586 int i;
Andrew Jones7e44e442014-02-28 12:52:54 +01002587 struct delayed_work *dwork = to_delayed_work(work);
2588 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
2589 kvmclock_update_work);
2590 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002591 struct kvm_vcpu *vcpu;
2592
2593 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002594 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002595 kvm_vcpu_kick(vcpu);
2596 }
2597}
2598
Andrew Jones7e44e442014-02-28 12:52:54 +01002599static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
2600{
2601 struct kvm *kvm = v->kvm;
2602
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002603 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01002604 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
2605 KVMCLOCK_UPDATE_DELAY);
2606}
2607
Andrew Jones332967a2014-02-28 12:52:55 +01002608#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
2609
2610static void kvmclock_sync_fn(struct work_struct *work)
2611{
2612 struct delayed_work *dwork = to_delayed_work(work);
2613 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
2614 kvmclock_sync_work);
2615 struct kvm *kvm = container_of(ka, struct kvm, arch);
2616
Marcelo Tosatti630994b2015-05-12 22:42:04 -03002617 if (!kvmclock_periodic_sync)
2618 return;
2619
Andrew Jones332967a2014-02-28 12:52:55 +01002620 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
2621 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
2622 KVMCLOCK_SYNC_PERIOD);
2623}
2624
Borislav Petkov191c8132019-04-18 18:32:50 +02002625/*
2626 * On AMD, HWCR[McStatusWrEn] controls whether setting MCi_STATUS results in #GP.
2627 */
2628static bool can_set_mci_status(struct kvm_vcpu *vcpu)
2629{
2630 /* McStatusWrEn enabled? */
Sean Christopherson23493d02020-03-04 17:34:33 -08002631 if (guest_cpuid_is_amd_or_hygon(vcpu))
Borislav Petkov191c8132019-04-18 18:32:50 +02002632 return !!(vcpu->arch.msr_hwcr & BIT_ULL(18));
2633
2634 return false;
2635}
2636
Wanpeng Li9ffd9862017-10-19 06:47:56 -07002637static int set_msr_mce(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Huang Ying890ca9a2009-05-11 16:48:15 +08002638{
2639 u64 mcg_cap = vcpu->arch.mcg_cap;
2640 unsigned bank_num = mcg_cap & 0xff;
Wanpeng Li9ffd9862017-10-19 06:47:56 -07002641 u32 msr = msr_info->index;
2642 u64 data = msr_info->data;
Huang Ying890ca9a2009-05-11 16:48:15 +08002643
2644 switch (msr) {
2645 case MSR_IA32_MCG_STATUS:
2646 vcpu->arch.mcg_status = data;
2647 break;
2648 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02002649 if (!(mcg_cap & MCG_CTL_P) &&
2650 (data || !msr_info->host_initiated))
Huang Ying890ca9a2009-05-11 16:48:15 +08002651 return 1;
2652 if (data != 0 && data != ~(u64)0)
Paolo Bonzini44883f02018-07-26 13:01:52 +02002653 return 1;
Huang Ying890ca9a2009-05-11 16:48:15 +08002654 vcpu->arch.mcg_ctl = data;
2655 break;
2656 default:
2657 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08002658 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08002659 u32 offset = array_index_nospec(
2660 msr - MSR_IA32_MC0_CTL,
2661 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
2662
Andre Przywara114be422010-03-24 17:46:42 +01002663 /* only 0 or all 1s can be written to IA32_MCi_CTL
2664 * some Linux kernels though clear bit 10 in bank 4 to
2665 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
2666 * this to avoid an uncatched #GP in the guest
2667 */
Huang Ying890ca9a2009-05-11 16:48:15 +08002668 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01002669 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08002670 return -1;
Borislav Petkov191c8132019-04-18 18:32:50 +02002671
2672 /* MCi_STATUS */
Wanpeng Li9ffd9862017-10-19 06:47:56 -07002673 if (!msr_info->host_initiated &&
Borislav Petkov191c8132019-04-18 18:32:50 +02002674 (offset & 0x3) == 1 && data != 0) {
2675 if (!can_set_mci_status(vcpu))
2676 return -1;
2677 }
2678
Huang Ying890ca9a2009-05-11 16:48:15 +08002679 vcpu->arch.mce_banks[offset] = data;
2680 break;
2681 }
2682 return 1;
2683 }
2684 return 0;
2685}
2686
Ed Swierkffde22a2009-10-15 15:21:43 -07002687static int xen_hvm_config(struct kvm_vcpu *vcpu, u64 data)
2688{
2689 struct kvm *kvm = vcpu->kvm;
2690 int lm = is_long_mode(vcpu);
2691 u8 *blob_addr = lm ? (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_64
2692 : (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_32;
2693 u8 blob_size = lm ? kvm->arch.xen_hvm_config.blob_size_64
2694 : kvm->arch.xen_hvm_config.blob_size_32;
2695 u32 page_num = data & ~PAGE_MASK;
2696 u64 page_addr = data & PAGE_MASK;
2697 u8 *page;
2698 int r;
2699
2700 r = -E2BIG;
2701 if (page_num >= blob_size)
2702 goto out;
2703 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002704 page = memdup_user(blob_addr + (page_num * PAGE_SIZE), PAGE_SIZE);
2705 if (IS_ERR(page)) {
2706 r = PTR_ERR(page);
Ed Swierkffde22a2009-10-15 15:21:43 -07002707 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002708 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002709 if (kvm_vcpu_write_guest(vcpu, page_addr, page, PAGE_SIZE))
Ed Swierkffde22a2009-10-15 15:21:43 -07002710 goto out_free;
2711 r = 0;
2712out_free:
2713 kfree(page);
2714out:
2715 return r;
2716}
2717
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02002718static inline bool kvm_pv_async_pf_enabled(struct kvm_vcpu *vcpu)
2719{
2720 u64 mask = KVM_ASYNC_PF_ENABLED | KVM_ASYNC_PF_DELIVERY_AS_INT;
2721
2722 return (vcpu->arch.apf.msr_en_val & mask) == mask;
2723}
2724
Gleb Natapov344d9582010-10-14 11:22:50 +02002725static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
2726{
2727 gpa_t gpa = data & ~0x3f;
2728
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02002729 /* Bits 4:5 are reserved, Should be zero */
2730 if (data & 0x30)
Gleb Natapov344d9582010-10-14 11:22:50 +02002731 return 1;
2732
Wanpeng Li9d3c4472020-06-29 18:26:31 +08002733 if (!lapic_in_kernel(vcpu))
Vitaly Kuznetsovd831de12020-09-11 11:31:47 +02002734 return data ? 1 : 0;
Wanpeng Li9d3c4472020-06-29 18:26:31 +08002735
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02002736 vcpu->arch.apf.msr_en_val = data;
Gleb Natapov344d9582010-10-14 11:22:50 +02002737
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02002738 if (!kvm_pv_async_pf_enabled(vcpu)) {
Gleb Natapov344d9582010-10-14 11:22:50 +02002739 kvm_clear_async_pf_completion_queue(vcpu);
2740 kvm_async_pf_hash_reset(vcpu);
2741 return 0;
2742 }
2743
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002744 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02002745 sizeof(u64)))
Gleb Natapov344d9582010-10-14 11:22:50 +02002746 return 1;
2747
Gleb Natapov6adba522010-10-14 11:22:55 +02002748 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Wanpeng Li52a5c152017-07-13 18:30:42 -07002749 vcpu->arch.apf.delivery_as_pf_vmexit = data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02002750
Gleb Natapov344d9582010-10-14 11:22:50 +02002751 kvm_async_pf_wakeup_all(vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02002752
2753 return 0;
2754}
2755
2756static int kvm_pv_enable_async_pf_int(struct kvm_vcpu *vcpu, u64 data)
2757{
2758 /* Bits 8-63 are reserved */
2759 if (data >> 8)
2760 return 1;
2761
2762 if (!lapic_in_kernel(vcpu))
2763 return 1;
2764
2765 vcpu->arch.apf.msr_int_val = data;
2766
2767 vcpu->arch.apf.vec = data & KVM_ASYNC_PF_VEC_MASK;
2768
Gleb Natapov344d9582010-10-14 11:22:50 +02002769 return 0;
2770}
2771
Glauber Costa12f9a482011-02-01 14:16:40 -05002772static void kvmclock_reset(struct kvm_vcpu *vcpu)
2773{
Andy Honig0b794592013-02-20 14:48:10 -08002774 vcpu->arch.pv_time_enabled = false;
Paolo Bonzini49dedf02019-10-10 12:49:22 +02002775 vcpu->arch.time = 0;
Glauber Costa12f9a482011-02-01 14:16:40 -05002776}
2777
Sean Christopherson77809382020-03-20 14:28:18 -07002778static void kvm_vcpu_flush_tlb_all(struct kvm_vcpu *vcpu)
Wanpeng Lif38a7b72017-12-12 17:33:04 -08002779{
2780 ++vcpu->stat.tlb_flush;
Sean Christopherson77809382020-03-20 14:28:18 -07002781 kvm_x86_ops.tlb_flush_all(vcpu);
Wanpeng Lif38a7b72017-12-12 17:33:04 -08002782}
2783
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04002784static void kvm_vcpu_flush_tlb_guest(struct kvm_vcpu *vcpu)
2785{
2786 ++vcpu->stat.tlb_flush;
2787 kvm_x86_ops.tlb_flush_guest(vcpu);
2788}
2789
Glauber Costac9aaa892011-07-11 15:28:14 -04002790static void record_steal_time(struct kvm_vcpu *vcpu)
2791{
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002792 struct kvm_host_map map;
2793 struct kvm_steal_time *st;
2794
Glauber Costac9aaa892011-07-11 15:28:14 -04002795 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
2796 return;
2797
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002798 /* -EAGAIN is returned in atomic context so we can just return. */
2799 if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT,
2800 &map, &vcpu->arch.st.cache, false))
Glauber Costac9aaa892011-07-11 15:28:14 -04002801 return;
2802
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002803 st = map.hva +
2804 offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS);
2805
Wanpeng Lif38a7b72017-12-12 17:33:04 -08002806 /*
2807 * Doing a TLB flush here, on the guest's behalf, can avoid
2808 * expensive IPIs.
2809 */
Wanpeng Lib382f442019-08-05 10:03:24 +08002810 trace_kvm_pv_tlb_flush(vcpu->vcpu_id,
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002811 st->preempted & KVM_VCPU_FLUSH_TLB);
2812 if (xchg(&st->preempted, 0) & KVM_VCPU_FLUSH_TLB)
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04002813 kvm_vcpu_flush_tlb_guest(vcpu);
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04002814
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00002815 vcpu->arch.st.preempted = 0;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002816
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002817 if (st->version & 1)
2818 st->version += 1; /* first time write, random junk */
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002819
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002820 st->version += 1;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002821
2822 smp_wmb();
2823
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002824 st->steal += current->sched_info.run_delay -
Liang Chenc54cdf12016-03-16 19:33:16 +08002825 vcpu->arch.st.last_steal;
2826 vcpu->arch.st.last_steal = current->sched_info.run_delay;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002827
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002828 smp_wmb();
2829
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002830 st->version += 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04002831
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002832 kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, false);
Glauber Costac9aaa892011-07-11 15:28:14 -04002833}
2834
Will Auld8fe8ab42012-11-29 12:42:12 -08002835int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01002836{
Gleb Natapov57537852012-01-15 14:17:22 +02002837 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08002838 u32 msr = msr_info->index;
2839 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02002840
Carsten Otte15c4a642007-10-30 18:44:17 +01002841 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01002842 case MSR_AMD64_NB_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01002843 case MSR_IA32_UCODE_WRITE:
2844 case MSR_VM_HSAVE_PA:
2845 case MSR_AMD64_PATCH_LOADER:
2846 case MSR_AMD64_BU_CFG2:
Ladi Prosek405a3532017-04-06 15:22:20 +02002847 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02002848 case MSR_F15H_EX_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01002849 break;
2850
Wanpeng Li518e7b92018-02-28 14:03:31 +08002851 case MSR_IA32_UCODE_REV:
2852 if (msr_info->host_initiated)
2853 vcpu->arch.microcode_version = data;
2854 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08002855 case MSR_IA32_ARCH_CAPABILITIES:
2856 if (!msr_info->host_initiated)
2857 return 1;
2858 vcpu->arch.arch_capabilities = data;
2859 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02002860 case MSR_IA32_PERF_CAPABILITIES: {
2861 struct kvm_msr_entry msr_ent = {.index = msr, .data = 0};
2862
2863 if (!msr_info->host_initiated)
2864 return 1;
2865 if (guest_cpuid_has(vcpu, X86_FEATURE_PDCM) && kvm_get_msr_feature(&msr_ent))
2866 return 1;
2867 if (data & ~msr_ent.data)
2868 return 1;
2869
2870 vcpu->arch.perf_capabilities = data;
2871
2872 return 0;
2873 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002874 case MSR_EFER:
Sean Christopherson11988492019-04-02 08:19:15 -07002875 return set_efer(vcpu, msr_info);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002876 case MSR_K7_HWCR:
2877 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01002878 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08002879 data &= ~(u64)0x8; /* ignore TLB cache disable */
Borislav Petkov191c8132019-04-18 18:32:50 +02002880
2881 /* Handle McStatusWrEn */
2882 if (data == BIT_ULL(18)) {
2883 vcpu->arch.msr_hwcr = data;
2884 } else if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002885 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
2886 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002887 return 1;
2888 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002889 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002890 case MSR_FAM10H_MMIO_CONF_BASE:
2891 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002892 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
2893 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002894 return 1;
2895 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002896 break;
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002897 case MSR_IA32_DEBUGCTLMSR:
2898 if (!data) {
2899 /* We support the non-activated case already */
2900 break;
2901 } else if (data & ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_BTF)) {
2902 /* Values other than LBR and BTF are vendor-specific,
2903 thus reserved and should throw a #GP */
2904 return 1;
2905 }
Christoffer Dalla737f252012-06-03 21:17:48 +03002906 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTLMSR 0x%llx, nop\n",
2907 __func__, data);
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002908 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002909 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08002910 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01002911 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01002912 return kvm_set_apic_base(vcpu, msr_info);
Xiaoyao Libf10bd02020-06-16 15:33:07 +08002913 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002914 return kvm_x2apic_msr_write(vcpu, msr, data);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002915 case MSR_IA32_TSCDEADLINE:
2916 kvm_set_lapic_tscdeadline_msr(vcpu, data);
2917 break;
Will Auldba904632012-11-29 12:42:50 -08002918 case MSR_IA32_TSC_ADJUST:
Radim Krčmářd6321d42017-08-05 00:12:49 +02002919 if (guest_cpuid_has(vcpu, X86_FEATURE_TSC_ADJUST)) {
Will Auldba904632012-11-29 12:42:50 -08002920 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06002921 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08002922 adjust_tsc_offset_guest(vcpu, adj);
Will Auldba904632012-11-29 12:42:50 -08002923 }
2924 vcpu->arch.ia32_tsc_adjust_msr = data;
2925 }
2926 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002927 case MSR_IA32_MISC_ENABLE:
Wanpeng Li511a85562019-05-21 14:06:54 +08002928 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT) &&
2929 ((vcpu->arch.ia32_misc_enable_msr ^ data) & MSR_IA32_MISC_ENABLE_MWAIT)) {
2930 if (!guest_cpuid_has(vcpu, X86_FEATURE_XMM3))
2931 return 1;
2932 vcpu->arch.ia32_misc_enable_msr = data;
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08002933 kvm_update_cpuid_runtime(vcpu);
Wanpeng Li511a85562019-05-21 14:06:54 +08002934 } else {
2935 vcpu->arch.ia32_misc_enable_msr = data;
2936 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002937 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02002938 case MSR_IA32_SMBASE:
2939 if (!msr_info->host_initiated)
2940 return 1;
2941 vcpu->arch.smbase = data;
2942 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02002943 case MSR_IA32_POWER_CTL:
2944 vcpu->arch.msr_ia32_power_ctl = data;
2945 break;
Paolo Bonzinidd259932018-04-13 11:38:35 +02002946 case MSR_IA32_TSC:
2947 kvm_write_tsc(vcpu, msr_info);
2948 break;
Aaron Lewis864e2ab2019-10-21 16:30:26 -07002949 case MSR_IA32_XSS:
2950 if (!msr_info->host_initiated &&
2951 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
2952 return 1;
2953 /*
Sean Christophersona1bead22020-03-02 15:57:00 -08002954 * KVM supports exposing PT to the guest, but does not support
2955 * IA32_XSS[bit 8]. Guests have to use RDMSR/WRMSR rather than
2956 * XSAVES/XRSTORS to save/restore PT MSRs.
Aaron Lewis864e2ab2019-10-21 16:30:26 -07002957 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01002958 if (data & ~supported_xss)
Aaron Lewis864e2ab2019-10-21 16:30:26 -07002959 return 1;
2960 vcpu->arch.ia32_xss = data;
2961 break;
Liran Alon52797bf2017-11-15 13:43:14 +02002962 case MSR_SMI_COUNT:
2963 if (!msr_info->host_initiated)
2964 return 1;
2965 vcpu->arch.smi_count = data;
2966 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002967 case MSR_KVM_WALL_CLOCK_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002968 case MSR_KVM_WALL_CLOCK:
2969 vcpu->kvm->arch.wall_clock = data;
2970 kvm_write_wall_clock(vcpu->kvm, data);
2971 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002972 case MSR_KVM_SYSTEM_TIME_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002973 case MSR_KVM_SYSTEM_TIME: {
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002974 struct kvm_arch *ka = &vcpu->kvm->arch;
2975
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002976 if (vcpu->vcpu_id == 0 && !msr_info->host_initiated) {
2977 bool tmp = (msr == MSR_KVM_SYSTEM_TIME);
2978
2979 if (ka->boot_vcpu_runs_old_kvmclock != tmp)
Radim Krčmář1bd20092017-04-26 22:32:20 +02002980 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002981
2982 ka->boot_vcpu_runs_old_kvmclock = tmp;
2983 }
2984
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002985 vcpu->arch.time = data;
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002986 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002987
2988 /* we verify if the enable bit is set... */
Paolo Bonzini49dedf02019-10-10 12:49:22 +02002989 vcpu->arch.pv_time_enabled = false;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002990 if (!(data & 1))
2991 break;
2992
Paolo Bonzini49dedf02019-10-10 12:49:22 +02002993 if (!kvm_gfn_to_hva_cache_init(vcpu->kvm,
Andrew Honig8f964522013-03-29 09:35:21 -07002994 &vcpu->arch.pv_time, data & ~1ULL,
2995 sizeof(struct pvclock_vcpu_time_info)))
Andy Honig0b794592013-02-20 14:48:10 -08002996 vcpu->arch.pv_time_enabled = true;
Xiao Guangrong32cad842012-08-03 15:42:52 +08002997
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002998 break;
2999 }
Gleb Natapov344d9582010-10-14 11:22:50 +02003000 case MSR_KVM_ASYNC_PF_EN:
3001 if (kvm_pv_enable_async_pf(vcpu, data))
3002 return 1;
3003 break;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003004 case MSR_KVM_ASYNC_PF_INT:
3005 if (kvm_pv_enable_async_pf_int(vcpu, data))
3006 return 1;
3007 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003008 case MSR_KVM_ASYNC_PF_ACK:
3009 if (data & 0x1) {
3010 vcpu->arch.apf.pageready_pending = false;
3011 kvm_check_async_pf_completion(vcpu);
3012 }
3013 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003014 case MSR_KVM_STEAL_TIME:
3015
3016 if (unlikely(!sched_info_on()))
3017 return 1;
3018
3019 if (data & KVM_STEAL_RESERVED_MASK)
3020 return 1;
3021
Glauber Costac9aaa892011-07-11 15:28:14 -04003022 vcpu->arch.st.msr_val = data;
3023
3024 if (!(data & KVM_MSR_ENABLED))
3025 break;
3026
Glauber Costac9aaa892011-07-11 15:28:14 -04003027 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
3028
3029 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003030 case MSR_KVM_PV_EOI_EN:
Ladi Prosek72bbf932018-10-16 18:49:59 +02003031 if (kvm_lapic_enable_pv_eoi(vcpu, data, sizeof(u8)))
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003032 return 1;
3033 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003034
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003035 case MSR_KVM_POLL_CONTROL:
3036 /* only enable bit supported */
3037 if (data & (-1ULL << 1))
3038 return 1;
3039
3040 vcpu->arch.msr_kvm_poll_control = data;
3041 break;
3042
Huang Ying890ca9a2009-05-11 16:48:15 +08003043 case MSR_IA32_MCG_CTL:
3044 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003045 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003046 return set_msr_mce(vcpu, msr_info);
Andre Przywara71db6022009-06-12 22:01:29 +02003047
Wei Huang6912ac32015-06-12 01:34:56 -04003048 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3049 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05003050 pr = true;
3051 fallthrough;
Wei Huang6912ac32015-06-12 01:34:56 -04003052 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3053 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003054 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003055 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02003056
3057 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03003058 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
3059 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02003060 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003061 case MSR_K7_CLK_CTL:
3062 /*
3063 * Ignore all writes to this no longer documented MSR.
3064 * Writes are only relevant for old K7 processors,
3065 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08003066 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003067 * affected processor models on the command line, hence
3068 * the need to ignore the workaround.
3069 */
3070 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003071 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003072 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3073 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003074 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3075 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003076 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003077 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3078 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3079 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003080 return kvm_hv_set_msr_common(vcpu, msr, data,
3081 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003082 case MSR_IA32_BBL_CR_CTL3:
3083 /* Drop writes to this legacy MSR -- see rdmsr
3084 * counterpart for further detail.
3085 */
Eyal Moscovicifab0aa32017-11-08 14:32:08 +02003086 if (report_ignored_msrs)
3087 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n",
3088 msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05003089 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003090 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003091 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003092 return 1;
3093 vcpu->arch.osvw.length = data;
3094 break;
3095 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003096 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003097 return 1;
3098 vcpu->arch.osvw.status = data;
3099 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003100 case MSR_PLATFORM_INFO:
3101 if (!msr_info->host_initiated ||
Kyle Hueydb2336a2017-03-20 01:16:28 -07003102 (!(data & MSR_PLATFORM_INFO_CPUID_FAULT) &&
3103 cpuid_fault_enabled(vcpu)))
3104 return 1;
3105 vcpu->arch.msr_platform_info = data;
3106 break;
3107 case MSR_MISC_FEATURES_ENABLES:
3108 if (data & ~MSR_MISC_FEATURES_ENABLES_CPUID_FAULT ||
3109 (data & MSR_MISC_FEATURES_ENABLES_CPUID_FAULT &&
3110 !supports_cpuid_fault(vcpu)))
3111 return 1;
3112 vcpu->arch.msr_misc_features_enables = data;
3113 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003114 default:
Ed Swierkffde22a2009-10-15 15:21:43 -07003115 if (msr && (msr == vcpu->kvm->arch.xen_hvm_config.msr))
3116 return xen_hvm_config(vcpu, data);
Wei Huangc6702c92015-06-19 13:44:45 +02003117 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003118 return kvm_pmu_set_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003119 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003120 }
3121 return 0;
3122}
3123EXPORT_SYMBOL_GPL(kvm_set_msr_common);
3124
Paolo Bonzini44883f02018-07-26 13:01:52 +02003125static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata, bool host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003126{
3127 u64 data;
3128 u64 mcg_cap = vcpu->arch.mcg_cap;
3129 unsigned bank_num = mcg_cap & 0xff;
3130
3131 switch (msr) {
3132 case MSR_IA32_P5_MC_ADDR:
3133 case MSR_IA32_P5_MC_TYPE:
3134 data = 0;
3135 break;
3136 case MSR_IA32_MCG_CAP:
3137 data = vcpu->arch.mcg_cap;
3138 break;
3139 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003140 if (!(mcg_cap & MCG_CTL_P) && !host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003141 return 1;
3142 data = vcpu->arch.mcg_ctl;
3143 break;
3144 case MSR_IA32_MCG_STATUS:
3145 data = vcpu->arch.mcg_status;
3146 break;
3147 default:
3148 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003149 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003150 u32 offset = array_index_nospec(
3151 msr - MSR_IA32_MC0_CTL,
3152 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3153
Huang Ying890ca9a2009-05-11 16:48:15 +08003154 data = vcpu->arch.mce_banks[offset];
3155 break;
3156 }
3157 return 1;
3158 }
3159 *pdata = data;
3160 return 0;
3161}
3162
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003163int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003164{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003165 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01003166 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01003167 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02003168 case MSR_IA32_DEBUGCTLMSR:
3169 case MSR_IA32_LASTBRANCHFROMIP:
3170 case MSR_IA32_LASTBRANCHTOIP:
3171 case MSR_IA32_LASTINTFROMIP:
3172 case MSR_IA32_LASTINTTOIP:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05303173 case MSR_K8_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02003174 case MSR_K8_TSEG_ADDR:
3175 case MSR_K8_TSEG_MASK:
Avi Kivity61a6bd62008-12-29 17:32:28 +02003176 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02003177 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02003178 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003179 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003180 case MSR_AMD64_BU_CFG2:
Dmitry Bilunov0c2df2a2016-05-31 17:38:24 +03003181 case MSR_IA32_PERF_CTL:
Ladi Prosek405a3532017-04-06 15:22:20 +02003182 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003183 case MSR_F15H_EX_CFG:
Venkatesh Srinivas2ca1a062020-04-16 11:42:54 -07003184 /*
3185 * Intel Sandy Bridge CPUs must support the RAPL (running average power
3186 * limit) MSRs. Just return 0, as we do not want to expose the host
3187 * data here. Do not conditionalize this on CPUID, as KVM does not do
3188 * so for existing CPU-specific MSRs.
3189 */
3190 case MSR_RAPL_POWER_UNIT:
3191 case MSR_PP0_ENERGY_STATUS: /* Power plane 0 (core) */
3192 case MSR_PP1_ENERGY_STATUS: /* Power plane 1 (graphics uncore) */
3193 case MSR_PKG_ENERGY_STATUS: /* Total package */
3194 case MSR_DRAM_ENERGY_STATUS: /* DRAM controller */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003195 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01003196 break;
Janakarajan Natarajanc51eb522018-02-05 13:24:52 -06003197 case MSR_F15H_PERF_CTL0 ... MSR_F15H_PERF_CTR5:
Wei Huang6912ac32015-06-12 01:34:56 -04003198 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3199 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3200 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
3201 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003202 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003203 return kvm_pmu_get_msr(vcpu, msr_info);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003204 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02003205 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003206 case MSR_IA32_UCODE_REV:
Wanpeng Li518e7b92018-02-28 14:03:31 +08003207 msr_info->data = vcpu->arch.microcode_version;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003208 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003209 case MSR_IA32_ARCH_CAPABILITIES:
3210 if (!msr_info->host_initiated &&
3211 !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES))
3212 return 1;
3213 msr_info->data = vcpu->arch.arch_capabilities;
3214 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003215 case MSR_IA32_PERF_CAPABILITIES:
3216 if (!msr_info->host_initiated &&
3217 !guest_cpuid_has(vcpu, X86_FEATURE_PDCM))
3218 return 1;
3219 msr_info->data = vcpu->arch.perf_capabilities;
3220 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003221 case MSR_IA32_POWER_CTL:
3222 msr_info->data = vcpu->arch.msr_ia32_power_ctl;
3223 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003224 case MSR_IA32_TSC: {
3225 /*
3226 * Intel SDM states that MSR_IA32_TSC read adds the TSC offset
3227 * even when not intercepted. AMD manual doesn't explicitly
3228 * state this but appears to behave the same.
3229 *
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07003230 * Unconditionally return L1's TSC offset on userspace reads
3231 * so that userspace reads and writes always operate on L1's
3232 * offset, e.g. to ensure deterministic behavior for migration.
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003233 */
3234 u64 tsc_offset = msr_info->host_initiated ? vcpu->arch.l1_tsc_offset :
3235 vcpu->arch.tsc_offset;
3236
3237 msr_info->data = kvm_scale_tsc(vcpu, rdtsc()) + tsc_offset;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003238 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003239 }
Avi Kivity9ba075a2008-05-26 20:06:35 +03003240 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03003241 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003242 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003243 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003244 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01003245 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02003246 /*
3247 * MSR_EBC_FREQUENCY_ID
3248 * Conservative value valid for even the basic CPU models.
3249 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
3250 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
3251 * and 266MHz for model 3, or 4. Set Core Clock
3252 * Frequency to System Bus Frequency Ratio to 1 (bits
3253 * 31:24) even though these are only valid for CPU
3254 * models > 2, however guests may end up dividing or
3255 * multiplying by zero otherwise.
3256 */
3257 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003258 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02003259 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003260 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003261 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01003262 break;
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003263 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003264 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003265 case MSR_IA32_TSCDEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003266 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003267 break;
Will Auldba904632012-11-29 12:42:50 -08003268 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003269 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08003270 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003271 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003272 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01003273 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003274 case MSR_IA32_SMBASE:
3275 if (!msr_info->host_initiated)
3276 return 1;
3277 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01003278 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003279 case MSR_SMI_COUNT:
3280 msr_info->data = vcpu->arch.smi_count;
3281 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003282 case MSR_IA32_PERF_STATUS:
3283 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003284 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003285 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08003286 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01003287 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003288 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003289 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01003290 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003291 case MSR_KVM_WALL_CLOCK:
Glauber Costa11c6bff2010-05-11 12:17:41 -04003292 case MSR_KVM_WALL_CLOCK_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003293 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003294 break;
3295 case MSR_KVM_SYSTEM_TIME:
Glauber Costa11c6bff2010-05-11 12:17:41 -04003296 case MSR_KVM_SYSTEM_TIME_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003297 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003298 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003299 case MSR_KVM_ASYNC_PF_EN:
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003300 msr_info->data = vcpu->arch.apf.msr_en_val;
3301 break;
3302 case MSR_KVM_ASYNC_PF_INT:
3303 msr_info->data = vcpu->arch.apf.msr_int_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02003304 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003305 case MSR_KVM_ASYNC_PF_ACK:
3306 msr_info->data = 0;
3307 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003308 case MSR_KVM_STEAL_TIME:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003309 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04003310 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003311 case MSR_KVM_PV_EOI_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003312 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003313 break;
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003314 case MSR_KVM_POLL_CONTROL:
3315 msr_info->data = vcpu->arch.msr_kvm_poll_control;
3316 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08003317 case MSR_IA32_P5_MC_ADDR:
3318 case MSR_IA32_P5_MC_TYPE:
3319 case MSR_IA32_MCG_CAP:
3320 case MSR_IA32_MCG_CTL:
3321 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003322 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003323 return get_msr_mce(vcpu, msr_info->index, &msr_info->data,
3324 msr_info->host_initiated);
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003325 case MSR_IA32_XSS:
3326 if (!msr_info->host_initiated &&
3327 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3328 return 1;
3329 msr_info->data = vcpu->arch.ia32_xss;
3330 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003331 case MSR_K7_CLK_CTL:
3332 /*
3333 * Provide expected ramp-up count for K7. All other
3334 * are set to zero, indicating minimum divisors for
3335 * every field.
3336 *
3337 * This prevents guest kernels on AMD host with CPU
3338 * type 6, model 8 and higher from exploding due to
3339 * the rdmsr failing.
3340 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003341 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003342 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003343 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003344 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3345 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003346 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3347 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003348 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003349 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3350 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3351 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine83d5882015-07-03 15:01:34 +03003352 return kvm_hv_get_msr_common(vcpu,
Paolo Bonzini44883f02018-07-26 13:01:52 +02003353 msr_info->index, &msr_info->data,
3354 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003355 case MSR_IA32_BBL_CR_CTL3:
3356 /* This legacy MSR exists but isn't fully documented in current
3357 * silicon. It is however accessed by winxp in very narrow
3358 * scenarios where it sets bit #19, itself documented as
3359 * a "reserved" bit. Best effort attempt to source coherent
3360 * read data here should the balance of the register be
3361 * interpreted by the guest:
3362 *
3363 * L2 cache control register 3: 64GB range, 256KB size,
3364 * enabled, latency 0x1, configured
3365 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003366 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05003367 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003368 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003369 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003370 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003371 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003372 break;
3373 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003374 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003375 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003376 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003377 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003378 case MSR_PLATFORM_INFO:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07003379 if (!msr_info->host_initiated &&
3380 !vcpu->kvm->arch.guest_can_read_msr_platform_info)
3381 return 1;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003382 msr_info->data = vcpu->arch.msr_platform_info;
3383 break;
3384 case MSR_MISC_FEATURES_ENABLES:
3385 msr_info->data = vcpu->arch.msr_misc_features_enables;
3386 break;
Borislav Petkov191c8132019-04-18 18:32:50 +02003387 case MSR_K7_HWCR:
3388 msr_info->data = vcpu->arch.msr_hwcr;
3389 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003390 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003391 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003392 return kvm_pmu_get_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003393 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003394 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003395 return 0;
3396}
3397EXPORT_SYMBOL_GPL(kvm_get_msr_common);
3398
Carsten Otte313a3dc2007-10-11 19:16:52 +02003399/*
3400 * Read or write a bunch of msrs. All parameters are kernel addresses.
3401 *
3402 * @return number of msrs set successfully.
3403 */
3404static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
3405 struct kvm_msr_entry *entries,
3406 int (*do_msr)(struct kvm_vcpu *vcpu,
3407 unsigned index, u64 *data))
3408{
Tom Lendacky801e4592018-02-21 13:39:51 -06003409 int i;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003410
Carsten Otte313a3dc2007-10-11 19:16:52 +02003411 for (i = 0; i < msrs->nmsrs; ++i)
3412 if (do_msr(vcpu, entries[i].index, &entries[i].data))
3413 break;
3414
Carsten Otte313a3dc2007-10-11 19:16:52 +02003415 return i;
3416}
3417
3418/*
3419 * Read or write a bunch of msrs. Parameters are user addresses.
3420 *
3421 * @return number of msrs set successfully.
3422 */
3423static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
3424 int (*do_msr)(struct kvm_vcpu *vcpu,
3425 unsigned index, u64 *data),
3426 int writeback)
3427{
3428 struct kvm_msrs msrs;
3429 struct kvm_msr_entry *entries;
3430 int r, n;
3431 unsigned size;
3432
3433 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00003434 if (copy_from_user(&msrs, user_msrs, sizeof(msrs)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02003435 goto out;
3436
3437 r = -E2BIG;
3438 if (msrs.nmsrs >= MAX_IO_MSRS)
3439 goto out;
3440
Carsten Otte313a3dc2007-10-11 19:16:52 +02003441 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003442 entries = memdup_user(user_msrs->entries, size);
3443 if (IS_ERR(entries)) {
3444 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003445 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003446 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003447
3448 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
3449 if (r < 0)
3450 goto out_free;
3451
3452 r = -EFAULT;
3453 if (writeback && copy_to_user(user_msrs->entries, entries, size))
3454 goto out_free;
3455
3456 r = n;
3457
3458out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03003459 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003460out:
3461 return r;
3462}
3463
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003464static inline bool kvm_can_mwait_in_guest(void)
3465{
3466 return boot_cpu_has(X86_FEATURE_MWAIT) &&
KarimAllah Ahmed8e9b29b2018-04-11 11:16:03 +02003467 !boot_cpu_has_bug(X86_BUG_MONITOR) &&
3468 boot_cpu_has(X86_FEATURE_ARAT);
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003469}
3470
Alexander Graf784aa3d2014-07-14 18:27:35 +02003471int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003472{
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003473 int r = 0;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003474
3475 switch (ext) {
3476 case KVM_CAP_IRQCHIP:
3477 case KVM_CAP_HLT:
3478 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003479 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02003480 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02003481 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01003482 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08003483 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05003484 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03003485 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03003486 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08003487 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003488 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02003489 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003490 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03003491 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003492 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04003493 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08003494 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Ed Swierkffde22a2009-10-15 15:21:43 -07003495 case KVM_CAP_XEN_HVM:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003496 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003497 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02003498 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02003499 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003500 case KVM_CAP_HYPERV_SYNIC:
Roman Kaganefc479e2017-06-22 16:51:01 +03003501 case KVM_CAP_HYPERV_SYNIC2:
Roman Kagand3457c82017-07-14 17:13:20 +03003502 case KVM_CAP_HYPERV_VP_INDEX:
Roman Kaganfaeb7832018-02-01 16:48:32 +03003503 case KVM_CAP_HYPERV_EVENTFD:
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02003504 case KVM_CAP_HYPERV_TLBFLUSH:
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02003505 case KVM_CAP_HYPERV_SEND_IPI:
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01003506 case KVM_CAP_HYPERV_CPUID:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08003507 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003508 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01003509 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003510 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02003511 case KVM_CAP_ASYNC_PF:
Vitaly Kuznetsov72de5fa4c2020-05-25 16:41:22 +02003512 case KVM_CAP_ASYNC_PF_INT:
Joerg Roedel92a1f122011-03-25 09:44:51 +01003513 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003514 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08003515 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01003516 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05003517 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01003518 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03003519 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02003520 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07003521 case KVM_CAP_SPLIT_IRQCHIP:
Paolo Bonzini460df4c2017-02-08 11:50:15 +01003522 case KVM_CAP_IMMEDIATE_EXIT:
Eric Hankland66bb8a02019-07-10 18:25:15 -07003523 case KVM_CAP_PMU_EVENT_FILTER:
Tom Lendacky801e4592018-02-21 13:39:51 -06003524 case KVM_CAP_GET_MSR_FEATURES:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07003525 case KVM_CAP_MSR_PLATFORM_INFO:
Jim Mattsonc4f55192018-10-16 14:29:24 -07003526 case KVM_CAP_EXCEPTION_PAYLOAD:
Peter Xub9b27822020-05-05 11:47:50 -04003527 case KVM_CAP_SET_GUEST_DEBUG:
Jim Mattson1aa561b2020-06-03 16:56:21 -07003528 case KVM_CAP_LAST_CPU:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003529 r = 1;
3530 break;
Ken Hofsass01643c52018-01-31 16:03:36 -08003531 case KVM_CAP_SYNC_REGS:
3532 r = KVM_SYNC_X86_VALID_FIELDS;
3533 break;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01003534 case KVM_CAP_ADJUST_CLOCK:
3535 r = KVM_CLOCK_TSC_STABLE;
3536 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003537 case KVM_CAP_X86_DISABLE_EXITS:
Wanpeng Lib5170062019-05-21 14:06:53 +08003538 r |= KVM_X86_DISABLE_EXITS_HLT | KVM_X86_DISABLE_EXITS_PAUSE |
3539 KVM_X86_DISABLE_EXITS_CSTATE;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003540 if(kvm_can_mwait_in_guest())
3541 r |= KVM_X86_DISABLE_EXITS_MWAIT;
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02003542 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02003543 case KVM_CAP_X86_SMM:
3544 /* SMBASE is usually relocated above 1M on modern chipsets,
3545 * and SMM handlers might indeed rely on 4G segment limits,
3546 * so do not report SMM to be available if real mode is
3547 * emulated via vm86 mode. Still, do not go to great lengths
3548 * to avoid userspace's usage of the feature, because it is a
3549 * fringe case that is not enabled except via specific settings
3550 * of the module parameters.
3551 */
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003552 r = kvm_x86_ops.has_emulated_msr(MSR_IA32_SMBASE);
Paolo Bonzini6d396b52015-04-01 14:25:33 +02003553 break;
Avi Kivity774ead32007-12-26 13:57:04 +02003554 case KVM_CAP_VAPIC:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003555 r = !kvm_x86_ops.cpu_has_accelerated_tpr();
Avi Kivity774ead32007-12-26 13:57:04 +02003556 break;
Avi Kivityf7252302008-02-20 11:53:16 +02003557 case KVM_CAP_NR_VCPUS:
Sasha Levin8c3ba332011-07-18 17:17:15 +03003558 r = KVM_SOFT_MAX_VCPUS;
3559 break;
3560 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02003561 r = KVM_MAX_VCPUS;
3562 break;
Thomas Hutha86cb412019-05-23 18:43:08 +02003563 case KVM_CAP_MAX_VCPU_ID:
3564 r = KVM_MAX_VCPU_ID;
3565 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03003566 case KVM_CAP_PV_MMU: /* obsolete */
3567 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05003568 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08003569 case KVM_CAP_MCE:
3570 r = KVM_MAX_MCE_BANKS;
3571 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003572 case KVM_CAP_XCRS:
Borislav Petkovd366bf72016-04-04 22:25:02 +02003573 r = boot_cpu_has(X86_FEATURE_XSAVE);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003574 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003575 case KVM_CAP_TSC_CONTROL:
3576 r = kvm_has_tsc_control;
3577 break;
Radim Krčmář371313132016-07-12 22:09:27 +02003578 case KVM_CAP_X2APIC_API:
3579 r = KVM_X2APIC_API_VALID_FLAGS;
3580 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02003581 case KVM_CAP_NESTED_STATE:
Paolo Bonzini33b22172020-04-17 10:24:18 -04003582 r = kvm_x86_ops.nested_ops->get_state ?
3583 kvm_x86_ops.nested_ops->get_state(NULL, NULL, 0) : 0;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02003584 break;
Tianyu Lan344c6c82019-08-22 22:30:20 +08003585 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003586 r = kvm_x86_ops.enable_direct_tlbflush != NULL;
Vitaly Kuznetsov5a0165f2019-08-28 09:59:05 +02003587 break;
3588 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04003589 r = kvm_x86_ops.nested_ops->enable_evmcs != NULL;
Tianyu Lan344c6c82019-08-22 22:30:20 +08003590 break;
Mohammed Gamal3edd6832020-07-10 17:48:11 +02003591 case KVM_CAP_SMALLER_MAXPHYADDR:
3592 r = (int) allow_smaller_maxphyaddr;
3593 break;
Andrew Jones004a0122020-08-04 19:06:04 +02003594 case KVM_CAP_STEAL_TIME:
3595 r = sched_info_on();
3596 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003597 default:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003598 break;
3599 }
3600 return r;
3601
3602}
3603
Carsten Otte043405e2007-10-10 17:16:19 +02003604long kvm_arch_dev_ioctl(struct file *filp,
3605 unsigned int ioctl, unsigned long arg)
3606{
3607 void __user *argp = (void __user *)arg;
3608 long r;
3609
3610 switch (ioctl) {
3611 case KVM_GET_MSR_INDEX_LIST: {
3612 struct kvm_msr_list __user *user_msr_list = argp;
3613 struct kvm_msr_list msr_list;
3614 unsigned n;
3615
3616 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00003617 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02003618 goto out;
3619 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02003620 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Jordan Borgner0e96f312018-10-28 12:58:28 +00003621 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02003622 goto out;
3623 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02003624 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02003625 goto out;
3626 r = -EFAULT;
3627 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
3628 num_msrs_to_save * sizeof(u32)))
3629 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02003630 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02003631 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02003632 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02003633 goto out;
3634 r = 0;
3635 break;
3636 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02003637 case KVM_GET_SUPPORTED_CPUID:
3638 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02003639 struct kvm_cpuid2 __user *cpuid_arg = argp;
3640 struct kvm_cpuid2 cpuid;
3641
3642 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00003643 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02003644 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02003645
3646 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
3647 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02003648 if (r)
3649 goto out;
3650
3651 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00003652 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02003653 goto out;
3654 r = 0;
3655 break;
3656 }
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08003657 case KVM_X86_GET_MCE_CAP_SUPPORTED:
Huang Ying890ca9a2009-05-11 16:48:15 +08003658 r = -EFAULT;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003659 if (copy_to_user(argp, &kvm_mce_cap_supported,
3660 sizeof(kvm_mce_cap_supported)))
Huang Ying890ca9a2009-05-11 16:48:15 +08003661 goto out;
3662 r = 0;
3663 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06003664 case KVM_GET_MSR_FEATURE_INDEX_LIST: {
3665 struct kvm_msr_list __user *user_msr_list = argp;
3666 struct kvm_msr_list msr_list;
3667 unsigned int n;
3668
3669 r = -EFAULT;
3670 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
3671 goto out;
3672 n = msr_list.nmsrs;
3673 msr_list.nmsrs = num_msr_based_features;
3674 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
3675 goto out;
3676 r = -E2BIG;
3677 if (n < msr_list.nmsrs)
3678 goto out;
3679 r = -EFAULT;
3680 if (copy_to_user(user_msr_list->indices, &msr_based_features,
3681 num_msr_based_features * sizeof(u32)))
3682 goto out;
3683 r = 0;
3684 break;
3685 }
3686 case KVM_GET_MSRS:
3687 r = msr_io(NULL, argp, do_get_msr_feature, 1);
3688 break;
Carsten Otte043405e2007-10-10 17:16:19 +02003689 default:
3690 r = -EINVAL;
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08003691 break;
Carsten Otte043405e2007-10-10 17:16:19 +02003692 }
3693out:
3694 return r;
3695}
3696
Sheng Yangf5f48ee2010-06-30 12:25:15 +08003697static void wbinvd_ipi(void *garbage)
3698{
3699 wbinvd();
3700}
3701
3702static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
3703{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06003704 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08003705}
3706
Carsten Otte313a3dc2007-10-11 19:16:52 +02003707void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
3708{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08003709 /* Address WBINVD may be executed by guest */
3710 if (need_emulate_wbinvd(vcpu)) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003711 if (kvm_x86_ops.has_wbinvd_exit())
Sheng Yangf5f48ee2010-06-30 12:25:15 +08003712 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
3713 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
3714 smp_call_function_single(vcpu->cpu,
3715 wbinvd_ipi, NULL, 1);
3716 }
3717
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003718 kvm_x86_ops.vcpu_load(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02003719
Babu Moger37486132020-05-12 18:59:06 -05003720 /* Save host pkru register if supported */
3721 vcpu->arch.host_pkru = read_pkru();
3722
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02003723 /* Apply any externally detected TSC adjustments (due to suspend) */
3724 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
3725 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
3726 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003727 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02003728 }
3729
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01003730 if (unlikely(vcpu->cpu != cpu) || kvm_check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02003731 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02003732 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10003733 if (tsc_delta < 0)
3734 mark_tsc_unstable("KVM discovered backwards TSC");
Yunhong Jiangce7a0582016-06-13 14:20:01 -07003735
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01003736 if (kvm_check_tsc_unstable()) {
Haozhong Zhang07c14192015-10-20 15:39:05 +08003737 u64 offset = kvm_compute_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02003738 vcpu->arch.last_guest_tsc);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04003739 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10003740 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10003741 }
Paolo Bonzinia749e242017-06-29 17:14:50 +02003742
3743 if (kvm_lapic_hv_timer_in_use(vcpu))
3744 kvm_lapic_restart_hv_timer(vcpu);
3745
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02003746 /*
3747 * On a host with synchronized TSC, there is no need to update
3748 * kvmclock on vcpu->cpu migration
3749 */
3750 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003751 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10003752 if (vcpu->cpu != cpu)
Radim Krčmář1bd20092017-04-26 22:32:20 +02003753 kvm_make_request(KVM_REQ_MIGRATE_TIMER, vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10003754 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10003755 }
Glauber Costac9aaa892011-07-11 15:28:14 -04003756
Glauber Costac9aaa892011-07-11 15:28:14 -04003757 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003758}
3759
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003760static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu)
3761{
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003762 struct kvm_host_map map;
3763 struct kvm_steal_time *st;
3764
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003765 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
3766 return;
3767
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00003768 if (vcpu->arch.st.preempted)
Boris Ostrovsky8c6de562019-10-30 19:01:31 +00003769 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003770
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003771 if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT, &map,
3772 &vcpu->arch.st.cache, true))
3773 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003774
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003775 st = map.hva +
3776 offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS);
3777
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00003778 st->preempted = vcpu->arch.st.preempted = KVM_VCPU_PREEMPTED;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003779
3780 kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, true);
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003781}
3782
Carsten Otte313a3dc2007-10-11 19:16:52 +02003783void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
3784{
Andrea Arcangelicc0d9072016-12-17 19:13:32 +01003785 int idx;
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08003786
3787 if (vcpu->preempted)
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003788 vcpu->arch.preempted_in_kernel = !kvm_x86_ops.get_cpl(vcpu);
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08003789
Andrea Arcangeli931f2612016-12-17 18:43:52 +01003790 /*
3791 * Disable page faults because we're in atomic context here.
3792 * kvm_write_guest_offset_cached() would call might_fault()
3793 * that relies on pagefault_disable() to tell if there's a
3794 * bug. NOTE: the write to guest memory may not go through if
3795 * during postcopy live migration or if there's heavy guest
3796 * paging.
3797 */
3798 pagefault_disable();
Andrea Arcangelicc0d9072016-12-17 19:13:32 +01003799 /*
3800 * kvm_memslots() will be called by
3801 * kvm_write_guest_offset_cached() so take the srcu lock.
3802 */
3803 idx = srcu_read_lock(&vcpu->kvm->srcu);
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003804 kvm_steal_time_set_preempted(vcpu);
Andrea Arcangelicc0d9072016-12-17 19:13:32 +01003805 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Andrea Arcangeli931f2612016-12-17 18:43:52 +01003806 pagefault_enable();
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003807 kvm_x86_ops.vcpu_put(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02003808 vcpu->arch.last_host_tsc = rdtsc();
Wanpeng Liefdab992017-12-13 10:46:40 +01003809 /*
Radim Krčmářf9dcf082018-10-23 16:31:38 +02003810 * If userspace has set any breakpoints or watchpoints, dr6 is restored
3811 * on every vmexit, but if not, we might have a stale dr6 from the
3812 * guest. do_debug expects dr6 to be cleared after it runs, do the same.
Wanpeng Liefdab992017-12-13 10:46:40 +01003813 */
Radim Krčmářf9dcf082018-10-23 16:31:38 +02003814 set_debugreg(0, 6);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003815}
3816
Carsten Otte313a3dc2007-10-11 19:16:52 +02003817static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
3818 struct kvm_lapic_state *s)
3819{
Liran Alonfa59cc02017-12-24 18:12:53 +02003820 if (vcpu->arch.apicv_active)
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003821 kvm_x86_ops.sync_pir_to_irr(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03003822
Radim Krčmářa92e2542016-07-12 22:09:22 +02003823 return kvm_apic_get_state(vcpu, s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003824}
3825
3826static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
3827 struct kvm_lapic_state *s)
3828{
Radim Krčmářa92e2542016-07-12 22:09:22 +02003829 int r;
3830
3831 r = kvm_apic_set_state(vcpu, s);
3832 if (r)
3833 return r;
Gleb Natapovcb142eb2009-08-09 15:17:40 +03003834 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003835
3836 return 0;
3837}
3838
Matt Gingell127a4572015-11-17 17:32:05 +01003839static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
3840{
3841 return (!lapic_in_kernel(vcpu) ||
3842 kvm_apic_accept_pic_intr(vcpu));
3843}
3844
Matt Gingell782d4222015-11-16 15:26:00 -08003845/*
3846 * if userspace requested an interrupt window, check that the
3847 * interrupt window is open.
3848 *
3849 * No need to exit to userspace if we already have an interrupt queued.
3850 */
3851static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
3852{
3853 return kvm_arch_interrupt_allowed(vcpu) &&
3854 !kvm_cpu_has_interrupt(vcpu) &&
3855 !kvm_event_needs_reinjection(vcpu) &&
3856 kvm_cpu_accept_dm_intr(vcpu);
3857}
3858
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003859static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
3860 struct kvm_interrupt *irq)
3861{
Chen Gang02cdb502013-02-27 11:33:25 +08003862 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003863 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02003864
3865 if (!irqchip_in_kernel(vcpu->kvm)) {
3866 kvm_queue_interrupt(vcpu, irq->irq, false);
3867 kvm_make_request(KVM_REQ_EVENT, vcpu);
3868 return 0;
3869 }
3870
3871 /*
3872 * With in-kernel LAPIC, we only use this to inject EXTINT, so
3873 * fail for in-kernel 8259.
3874 */
3875 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003876 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003877
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02003878 if (vcpu->arch.pending_external_vector != -1)
3879 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003880
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02003881 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08003882 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003883 return 0;
3884}
3885
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003886static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
3887{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003888 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003889
3890 return 0;
3891}
3892
Paolo Bonzinif0778252015-04-01 15:06:40 +02003893static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
3894{
Paolo Bonzini64d60672015-05-07 11:36:11 +02003895 kvm_make_request(KVM_REQ_SMI, vcpu);
3896
Paolo Bonzinif0778252015-04-01 15:06:40 +02003897 return 0;
3898}
3899
Avi Kivityb209749f2007-10-22 16:50:39 +02003900static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
3901 struct kvm_tpr_access_ctl *tac)
3902{
3903 if (tac->flags)
3904 return -EINVAL;
3905 vcpu->arch.tpr_access_reporting = !!tac->enabled;
3906 return 0;
3907}
3908
Huang Ying890ca9a2009-05-11 16:48:15 +08003909static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
3910 u64 mcg_cap)
3911{
3912 int r;
3913 unsigned bank_num = mcg_cap & 0xff, bank;
3914
3915 r = -EINVAL;
Jim Mattsonc4e0e4ab2020-05-11 15:56:16 -07003916 if (!bank_num || bank_num > KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08003917 goto out;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003918 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
Huang Ying890ca9a2009-05-11 16:48:15 +08003919 goto out;
3920 r = 0;
3921 vcpu->arch.mcg_cap = mcg_cap;
3922 /* Init IA32_MCG_CTL to all 1s */
3923 if (mcg_cap & MCG_CTL_P)
3924 vcpu->arch.mcg_ctl = ~(u64)0;
3925 /* Init IA32_MCi_CTL to all 1s */
3926 for (bank = 0; bank < bank_num; bank++)
3927 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003928
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003929 kvm_x86_ops.setup_mce(vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08003930out:
3931 return r;
3932}
3933
3934static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
3935 struct kvm_x86_mce *mce)
3936{
3937 u64 mcg_cap = vcpu->arch.mcg_cap;
3938 unsigned bank_num = mcg_cap & 0xff;
3939 u64 *banks = vcpu->arch.mce_banks;
3940
3941 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
3942 return -EINVAL;
3943 /*
3944 * if IA32_MCG_CTL is not all 1s, the uncorrected error
3945 * reporting is disabled
3946 */
3947 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
3948 vcpu->arch.mcg_ctl != ~(u64)0)
3949 return 0;
3950 banks += 4 * mce->bank;
3951 /*
3952 * if IA32_MCi_CTL is not all 1s, the uncorrected error
3953 * reporting is disabled for the bank
3954 */
3955 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
3956 return 0;
3957 if (mce->status & MCI_STATUS_UC) {
3958 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02003959 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03003960 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08003961 return 0;
3962 }
3963 if (banks[1] & MCI_STATUS_VAL)
3964 mce->status |= MCI_STATUS_OVER;
3965 banks[2] = mce->addr;
3966 banks[3] = mce->misc;
3967 vcpu->arch.mcg_status = mce->mcg_status;
3968 banks[1] = mce->status;
3969 kvm_queue_exception(vcpu, MC_VECTOR);
3970 } else if (!(banks[1] & MCI_STATUS_VAL)
3971 || !(banks[1] & MCI_STATUS_UC)) {
3972 if (banks[1] & MCI_STATUS_VAL)
3973 mce->status |= MCI_STATUS_OVER;
3974 banks[2] = mce->addr;
3975 banks[3] = mce->misc;
3976 banks[1] = mce->status;
3977 } else
3978 banks[1] |= MCI_STATUS_OVER;
3979 return 0;
3980}
3981
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003982static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
3983 struct kvm_vcpu_events *events)
3984{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03003985 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07003986
Wanpeng Li664f8e22017-08-24 03:35:09 -07003987 /*
Oliver Uptona06230b2020-02-07 02:36:06 -08003988 * In guest mode, payload delivery should be deferred,
3989 * so that the L1 hypervisor can intercept #PF before
3990 * CR2 is modified (or intercept #DB before DR6 is
3991 * modified under nVMX). Unless the per-VM capability,
3992 * KVM_CAP_EXCEPTION_PAYLOAD, is set, we may not defer the delivery of
3993 * an exception payload and handle after a KVM_GET_VCPU_EVENTS. Since we
3994 * opportunistically defer the exception payload, deliver it if the
3995 * capability hasn't been requested before processing a
3996 * KVM_GET_VCPU_EVENTS.
3997 */
3998 if (!vcpu->kvm->arch.exception_payload_enabled &&
3999 vcpu->arch.exception.pending && vcpu->arch.exception.has_payload)
4000 kvm_deliver_exception_payload(vcpu);
4001
4002 /*
Jim Mattson59073aa2018-10-16 14:29:20 -07004003 * The API doesn't provide the instruction length for software
4004 * exceptions, so don't report them. As long as the guest RIP
4005 * isn't advanced, we should expect to encounter the exception
4006 * again.
Wanpeng Li664f8e22017-08-24 03:35:09 -07004007 */
Jim Mattson59073aa2018-10-16 14:29:20 -07004008 if (kvm_exception_is_soft(vcpu->arch.exception.nr)) {
4009 events->exception.injected = 0;
4010 events->exception.pending = 0;
4011 } else {
4012 events->exception.injected = vcpu->arch.exception.injected;
4013 events->exception.pending = vcpu->arch.exception.pending;
4014 /*
4015 * For ABI compatibility, deliberately conflate
4016 * pending and injected exceptions when
4017 * KVM_CAP_EXCEPTION_PAYLOAD isn't enabled.
4018 */
4019 if (!vcpu->kvm->arch.exception_payload_enabled)
4020 events->exception.injected |=
4021 vcpu->arch.exception.pending;
4022 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004023 events->exception.nr = vcpu->arch.exception.nr;
4024 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
4025 events->exception.error_code = vcpu->arch.exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004026 events->exception_has_payload = vcpu->arch.exception.has_payload;
4027 events->exception_payload = vcpu->arch.exception.payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004028
Jan Kiszka03b82a32010-02-15 10:45:41 +01004029 events->interrupt.injected =
Liran Alon04140b42018-03-23 03:01:31 +03004030 vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004031 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01004032 events->interrupt.soft = 0;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004033 events->interrupt.shadow = kvm_x86_ops.get_interrupt_shadow(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004034
4035 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004036 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004037 events->nmi.masked = kvm_x86_ops.get_nmi_mask(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004038 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004039
Jan Kiszka66450a22013-03-13 12:42:34 +01004040 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004041
Paolo Bonzinif0778252015-04-01 15:06:40 +02004042 events->smi.smm = is_smm(vcpu);
4043 events->smi.pending = vcpu->arch.smi_pending;
4044 events->smi.smm_inside_nmi =
4045 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
4046 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
4047
Jan Kiszkadab4b912009-12-06 18:24:15 +01004048 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02004049 | KVM_VCPUEVENT_VALID_SHADOW
4050 | KVM_VCPUEVENT_VALID_SMM);
Jim Mattson59073aa2018-10-16 14:29:20 -07004051 if (vcpu->kvm->arch.exception_payload_enabled)
4052 events->flags |= KVM_VCPUEVENT_VALID_PAYLOAD;
4053
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004054 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004055}
4056
Sean Christophersonc5833c72019-04-02 08:03:10 -07004057static void kvm_smm_changed(struct kvm_vcpu *vcpu);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004058
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004059static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
4060 struct kvm_vcpu_events *events)
4061{
Jan Kiszkadab4b912009-12-06 18:24:15 +01004062 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01004063 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02004064 | KVM_VCPUEVENT_VALID_SHADOW
Jim Mattson59073aa2018-10-16 14:29:20 -07004065 | KVM_VCPUEVENT_VALID_SMM
4066 | KVM_VCPUEVENT_VALID_PAYLOAD))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004067 return -EINVAL;
4068
Jim Mattson59073aa2018-10-16 14:29:20 -07004069 if (events->flags & KVM_VCPUEVENT_VALID_PAYLOAD) {
4070 if (!vcpu->kvm->arch.exception_payload_enabled)
4071 return -EINVAL;
4072 if (events->exception.pending)
4073 events->exception.injected = 0;
4074 else
4075 events->exception_has_payload = 0;
4076 } else {
4077 events->exception.pending = 0;
4078 events->exception_has_payload = 0;
4079 }
4080
4081 if ((events->exception.injected || events->exception.pending) &&
4082 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR))
Paolo Bonzini78e546c2016-06-01 14:09:20 +02004083 return -EINVAL;
4084
David Hildenbrand28bf2882017-03-23 11:46:03 +01004085 /* INITs are latched while in SMM */
4086 if (events->flags & KVM_VCPUEVENT_VALID_SMM &&
4087 (events->smi.smm || events->smi.pending) &&
4088 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED)
4089 return -EINVAL;
4090
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004091 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004092 vcpu->arch.exception.injected = events->exception.injected;
4093 vcpu->arch.exception.pending = events->exception.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004094 vcpu->arch.exception.nr = events->exception.nr;
4095 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
4096 vcpu->arch.exception.error_code = events->exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004097 vcpu->arch.exception.has_payload = events->exception_has_payload;
4098 vcpu->arch.exception.payload = events->exception_payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004099
Liran Alon04140b42018-03-23 03:01:31 +03004100 vcpu->arch.interrupt.injected = events->interrupt.injected;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004101 vcpu->arch.interrupt.nr = events->interrupt.nr;
4102 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01004103 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004104 kvm_x86_ops.set_interrupt_shadow(vcpu,
Jan Kiszka48005f62010-02-19 19:38:07 +01004105 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004106
4107 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01004108 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
4109 vcpu->arch.nmi_pending = events->nmi.pending;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004110 kvm_x86_ops.set_nmi_mask(vcpu, events->nmi.masked);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004111
Jan Kiszka66450a22013-03-13 12:42:34 +01004112 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004113 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01004114 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004115
Paolo Bonzinif0778252015-04-01 15:06:40 +02004116 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
Sean Christophersonc5833c72019-04-02 08:03:10 -07004117 if (!!(vcpu->arch.hflags & HF_SMM_MASK) != events->smi.smm) {
4118 if (events->smi.smm)
4119 vcpu->arch.hflags |= HF_SMM_MASK;
4120 else
4121 vcpu->arch.hflags &= ~HF_SMM_MASK;
4122 kvm_smm_changed(vcpu);
4123 }
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004124
Paolo Bonzinif0778252015-04-01 15:06:40 +02004125 vcpu->arch.smi_pending = events->smi.pending;
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004126
4127 if (events->smi.smm) {
4128 if (events->smi.smm_inside_nmi)
4129 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinif0778252015-04-01 15:06:40 +02004130 else
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004131 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Liran Alonff90afa2019-11-11 11:16:39 +02004132 }
4133
4134 if (lapic_in_kernel(vcpu)) {
4135 if (events->smi.latched_init)
4136 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
4137 else
4138 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
Paolo Bonzinif0778252015-04-01 15:06:40 +02004139 }
4140 }
4141
Avi Kivity3842d132010-07-27 12:30:24 +03004142 kvm_make_request(KVM_REQ_EVENT, vcpu);
4143
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004144 return 0;
4145}
4146
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004147static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
4148 struct kvm_debugregs *dbgregs)
4149{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004150 unsigned long val;
4151
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004152 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004153 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004154 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004155 dbgregs->dr7 = vcpu->arch.dr7;
4156 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004157 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004158}
4159
4160static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
4161 struct kvm_debugregs *dbgregs)
4162{
4163 if (dbgregs->flags)
4164 return -EINVAL;
4165
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004166 if (dbgregs->dr6 & ~0xffffffffull)
4167 return -EINVAL;
4168 if (dbgregs->dr7 & ~0xffffffffull)
4169 return -EINVAL;
4170
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004171 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03004172 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004173 vcpu->arch.dr6 = dbgregs->dr6;
4174 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01004175 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004176
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004177 return 0;
4178}
4179
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004180#define XSTATE_COMPACTION_ENABLED (1ULL << 63)
4181
4182static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu)
4183{
Marc Orrb666a4b2018-11-06 14:53:56 -08004184 struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave;
Ingo Molnar400e4b22015-04-24 10:19:47 +02004185 u64 xstate_bv = xsave->header.xfeatures;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004186 u64 valid;
4187
4188 /*
4189 * Copy legacy XSAVE area, to avoid complications with CPUID
4190 * leaves 0 and 1 in the loop below.
4191 */
4192 memcpy(dest, xsave, XSAVE_HDR_OFFSET);
4193
4194 /* Set XSTATE_BV */
Radim Krčmář00c87e92017-02-01 14:19:53 +01004195 xstate_bv &= vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004196 *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv;
4197
4198 /*
4199 * Copy each region from the possibly compacted offset to the
4200 * non-compacted offset.
4201 */
Dave Hansend91cab72015-09-02 16:31:26 -07004202 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004203 while (valid) {
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004204 u64 xfeature_mask = valid & -valid;
4205 int xfeature_nr = fls64(xfeature_mask) - 1;
4206 void *src = get_xsave_addr(xsave, xfeature_nr);
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004207
4208 if (src) {
4209 u32 size, offset, ecx, edx;
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004210 cpuid_count(XSTATE_CPUID, xfeature_nr,
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004211 &size, &offset, &ecx, &edx);
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004212 if (xfeature_nr == XFEATURE_PKRU)
Paolo Bonzini38cfd5e2017-08-23 23:16:29 +02004213 memcpy(dest + offset, &vcpu->arch.pkru,
4214 sizeof(vcpu->arch.pkru));
4215 else
4216 memcpy(dest + offset, src, size);
4217
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004218 }
4219
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004220 valid -= xfeature_mask;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004221 }
4222}
4223
4224static void load_xsave(struct kvm_vcpu *vcpu, u8 *src)
4225{
Marc Orrb666a4b2018-11-06 14:53:56 -08004226 struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004227 u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET);
4228 u64 valid;
4229
4230 /*
4231 * Copy legacy XSAVE area, to avoid complications with CPUID
4232 * leaves 0 and 1 in the loop below.
4233 */
4234 memcpy(xsave, src, XSAVE_HDR_OFFSET);
4235
4236 /* Set XSTATE_BV and possibly XCOMP_BV. */
Ingo Molnar400e4b22015-04-24 10:19:47 +02004237 xsave->header.xfeatures = xstate_bv;
Borislav Petkov782511b2016-04-04 22:25:03 +02004238 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar3a544502015-04-24 10:14:36 +02004239 xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004240
4241 /*
4242 * Copy each region from the non-compacted offset to the
4243 * possibly compacted offset.
4244 */
Dave Hansend91cab72015-09-02 16:31:26 -07004245 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004246 while (valid) {
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004247 u64 xfeature_mask = valid & -valid;
4248 int xfeature_nr = fls64(xfeature_mask) - 1;
4249 void *dest = get_xsave_addr(xsave, xfeature_nr);
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004250
4251 if (dest) {
4252 u32 size, offset, ecx, edx;
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004253 cpuid_count(XSTATE_CPUID, xfeature_nr,
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004254 &size, &offset, &ecx, &edx);
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004255 if (xfeature_nr == XFEATURE_PKRU)
Paolo Bonzini38cfd5e2017-08-23 23:16:29 +02004256 memcpy(&vcpu->arch.pkru, src + offset,
4257 sizeof(vcpu->arch.pkru));
4258 else
4259 memcpy(dest, src + offset, size);
Wanpeng Liee4100d2015-07-09 15:44:52 +08004260 }
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004261
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004262 valid -= xfeature_mask;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004263 }
4264}
4265
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004266static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
4267 struct kvm_xsave *guest_xsave)
4268{
Borislav Petkovd366bf72016-04-04 22:25:02 +02004269 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004270 memset(guest_xsave, 0, sizeof(struct kvm_xsave));
4271 fill_xsave((u8 *) guest_xsave->region, vcpu);
Paolo Bonzini4344ee92013-10-02 16:06:16 +02004272 } else {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004273 memcpy(guest_xsave->region,
Marc Orrb666a4b2018-11-06 14:53:56 -08004274 &vcpu->arch.guest_fpu->state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02004275 sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004276 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] =
Dave Hansend91cab72015-09-02 16:31:26 -07004277 XFEATURE_MASK_FPSSE;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004278 }
4279}
4280
Wanpeng Lia5758132017-05-11 02:58:55 -07004281#define XSAVE_MXCSR_OFFSET 24
4282
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004283static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
4284 struct kvm_xsave *guest_xsave)
4285{
4286 u64 xstate_bv =
4287 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)];
Wanpeng Lia5758132017-05-11 02:58:55 -07004288 u32 mxcsr = *(u32 *)&guest_xsave->region[XSAVE_MXCSR_OFFSET / sizeof(u32)];
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004289
Borislav Petkovd366bf72016-04-04 22:25:02 +02004290 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004291 /*
4292 * Here we allow setting states that are not present in
4293 * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility
4294 * with old userspace.
4295 */
Sean Christophersoncfc48182020-03-02 15:56:23 -08004296 if (xstate_bv & ~supported_xcr0 || mxcsr & ~mxcsr_feature_mask)
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004297 return -EINVAL;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004298 load_xsave(vcpu, (u8 *)guest_xsave->region);
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004299 } else {
Wanpeng Lia5758132017-05-11 02:58:55 -07004300 if (xstate_bv & ~XFEATURE_MASK_FPSSE ||
4301 mxcsr & ~mxcsr_feature_mask)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004302 return -EINVAL;
Marc Orrb666a4b2018-11-06 14:53:56 -08004303 memcpy(&vcpu->arch.guest_fpu->state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02004304 guest_xsave->region, sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004305 }
4306 return 0;
4307}
4308
4309static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
4310 struct kvm_xcrs *guest_xcrs)
4311{
Borislav Petkovd366bf72016-04-04 22:25:02 +02004312 if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004313 guest_xcrs->nr_xcrs = 0;
4314 return;
4315 }
4316
4317 guest_xcrs->nr_xcrs = 1;
4318 guest_xcrs->flags = 0;
4319 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
4320 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
4321}
4322
4323static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
4324 struct kvm_xcrs *guest_xcrs)
4325{
4326 int i, r = 0;
4327
Borislav Petkovd366bf72016-04-04 22:25:02 +02004328 if (!boot_cpu_has(X86_FEATURE_XSAVE))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004329 return -EINVAL;
4330
4331 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
4332 return -EINVAL;
4333
4334 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
4335 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004336 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004337 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004338 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004339 break;
4340 }
4341 if (r)
4342 r = -EINVAL;
4343 return r;
4344}
4345
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004346/*
4347 * kvm_set_guest_paused() indicates to the guest kernel that it has been
4348 * stopped by the hypervisor. This function will be called from the host only.
4349 * EINVAL is returned when the host attempts to set the flag for a guest that
4350 * does not support pv clocks.
4351 */
4352static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
4353{
Andy Honig0b794592013-02-20 14:48:10 -08004354 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004355 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03004356 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004357 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
4358 return 0;
4359}
4360
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004361static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
4362 struct kvm_enable_cap *cap)
4363{
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004364 int r;
4365 uint16_t vmcs_version;
4366 void __user *user_ptr;
4367
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004368 if (cap->flags)
4369 return -EINVAL;
4370
4371 switch (cap->cap) {
Roman Kaganefc479e2017-06-22 16:51:01 +03004372 case KVM_CAP_HYPERV_SYNIC2:
4373 if (cap->args[0])
4374 return -EINVAL;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004375 fallthrough;
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06004376
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004377 case KVM_CAP_HYPERV_SYNIC:
Wanpeng Li546d87e2017-01-03 18:56:19 -08004378 if (!irqchip_in_kernel(vcpu->kvm))
4379 return -EINVAL;
Roman Kaganefc479e2017-06-22 16:51:01 +03004380 return kvm_hv_activate_synic(vcpu, cap->cap ==
4381 KVM_CAP_HYPERV_SYNIC2);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004382 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004383 if (!kvm_x86_ops.nested_ops->enable_evmcs)
Sean Christopherson51589172018-12-03 13:53:10 -08004384 return -ENOTTY;
Paolo Bonzini33b22172020-04-17 10:24:18 -04004385 r = kvm_x86_ops.nested_ops->enable_evmcs(vcpu, &vmcs_version);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004386 if (!r) {
4387 user_ptr = (void __user *)(uintptr_t)cap->args[0];
4388 if (copy_to_user(user_ptr, &vmcs_version,
4389 sizeof(vmcs_version)))
4390 r = -EFAULT;
4391 }
4392 return r;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004393 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004394 if (!kvm_x86_ops.enable_direct_tlbflush)
Tianyu Lan344c6c82019-08-22 22:30:20 +08004395 return -ENOTTY;
4396
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004397 return kvm_x86_ops.enable_direct_tlbflush(vcpu);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004398
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004399 default:
4400 return -EINVAL;
4401 }
4402}
4403
Carsten Otte313a3dc2007-10-11 19:16:52 +02004404long kvm_arch_vcpu_ioctl(struct file *filp,
4405 unsigned int ioctl, unsigned long arg)
4406{
4407 struct kvm_vcpu *vcpu = filp->private_data;
4408 void __user *argp = (void __user *)arg;
4409 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004410 union {
4411 struct kvm_lapic_state *lapic;
4412 struct kvm_xsave *xsave;
4413 struct kvm_xcrs *xcrs;
4414 void *buffer;
4415 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02004416
Christoffer Dall9b0624712017-12-04 21:35:36 +01004417 vcpu_load(vcpu);
4418
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004419 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02004420 switch (ioctl) {
4421 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004422 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004423 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004424 goto out;
Ben Gardon254272c2019-02-11 11:02:50 -08004425 u.lapic = kzalloc(sizeof(struct kvm_lapic_state),
4426 GFP_KERNEL_ACCOUNT);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004427
Dave Hansenb772ff32008-08-11 10:01:47 -07004428 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004429 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07004430 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004431 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004432 if (r)
4433 goto out;
4434 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004435 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02004436 goto out;
4437 r = 0;
4438 break;
4439 }
4440 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004441 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004442 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004443 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004444 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Christoffer Dall9b0624712017-12-04 21:35:36 +01004445 if (IS_ERR(u.lapic)) {
4446 r = PTR_ERR(u.lapic);
4447 goto out_nofree;
4448 }
Sasha Levinff5c2c02011-12-04 19:36:29 +02004449
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004450 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004451 break;
4452 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004453 case KVM_INTERRUPT: {
4454 struct kvm_interrupt irq;
4455
4456 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004457 if (copy_from_user(&irq, argp, sizeof(irq)))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004458 goto out;
4459 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004460 break;
4461 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004462 case KVM_NMI: {
4463 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004464 break;
4465 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02004466 case KVM_SMI: {
4467 r = kvm_vcpu_ioctl_smi(vcpu);
4468 break;
4469 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02004470 case KVM_SET_CPUID: {
4471 struct kvm_cpuid __user *cpuid_arg = argp;
4472 struct kvm_cpuid cpuid;
4473
4474 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004475 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02004476 goto out;
4477 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004478 break;
4479 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02004480 case KVM_SET_CPUID2: {
4481 struct kvm_cpuid2 __user *cpuid_arg = argp;
4482 struct kvm_cpuid2 cpuid;
4483
4484 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004485 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02004486 goto out;
4487 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00004488 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02004489 break;
4490 }
4491 case KVM_GET_CPUID2: {
4492 struct kvm_cpuid2 __user *cpuid_arg = argp;
4493 struct kvm_cpuid2 cpuid;
4494
4495 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004496 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02004497 goto out;
4498 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00004499 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02004500 if (r)
4501 goto out;
4502 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004503 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02004504 goto out;
4505 r = 0;
4506 break;
4507 }
Tom Lendacky801e4592018-02-21 13:39:51 -06004508 case KVM_GET_MSRS: {
4509 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004510 r = msr_io(vcpu, argp, do_get_msr, 1);
Tom Lendacky801e4592018-02-21 13:39:51 -06004511 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004512 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06004513 }
4514 case KVM_SET_MSRS: {
4515 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004516 r = msr_io(vcpu, argp, do_set_msr, 0);
Tom Lendacky801e4592018-02-21 13:39:51 -06004517 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004518 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06004519 }
Avi Kivityb209749f2007-10-22 16:50:39 +02004520 case KVM_TPR_ACCESS_REPORTING: {
4521 struct kvm_tpr_access_ctl tac;
4522
4523 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004524 if (copy_from_user(&tac, argp, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02004525 goto out;
4526 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
4527 if (r)
4528 goto out;
4529 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004530 if (copy_to_user(argp, &tac, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02004531 goto out;
4532 r = 0;
4533 break;
4534 };
Avi Kivityb93463a2007-10-25 16:52:32 +02004535 case KVM_SET_VAPIC_ADDR: {
4536 struct kvm_vapic_addr va;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01004537 int idx;
Avi Kivityb93463a2007-10-25 16:52:32 +02004538
4539 r = -EINVAL;
Paolo Bonzini35754c92015-07-29 12:05:37 +02004540 if (!lapic_in_kernel(vcpu))
Avi Kivityb93463a2007-10-25 16:52:32 +02004541 goto out;
4542 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004543 if (copy_from_user(&va, argp, sizeof(va)))
Avi Kivityb93463a2007-10-25 16:52:32 +02004544 goto out;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01004545 idx = srcu_read_lock(&vcpu->kvm->srcu);
Andy Honigfda4e2e2013-11-20 10:23:22 -08004546 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01004547 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivityb93463a2007-10-25 16:52:32 +02004548 break;
4549 }
Huang Ying890ca9a2009-05-11 16:48:15 +08004550 case KVM_X86_SETUP_MCE: {
4551 u64 mcg_cap;
4552
4553 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004554 if (copy_from_user(&mcg_cap, argp, sizeof(mcg_cap)))
Huang Ying890ca9a2009-05-11 16:48:15 +08004555 goto out;
4556 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
4557 break;
4558 }
4559 case KVM_X86_SET_MCE: {
4560 struct kvm_x86_mce mce;
4561
4562 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004563 if (copy_from_user(&mce, argp, sizeof(mce)))
Huang Ying890ca9a2009-05-11 16:48:15 +08004564 goto out;
4565 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
4566 break;
4567 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004568 case KVM_GET_VCPU_EVENTS: {
4569 struct kvm_vcpu_events events;
4570
4571 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
4572
4573 r = -EFAULT;
4574 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
4575 break;
4576 r = 0;
4577 break;
4578 }
4579 case KVM_SET_VCPU_EVENTS: {
4580 struct kvm_vcpu_events events;
4581
4582 r = -EFAULT;
4583 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
4584 break;
4585
4586 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
4587 break;
4588 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004589 case KVM_GET_DEBUGREGS: {
4590 struct kvm_debugregs dbgregs;
4591
4592 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
4593
4594 r = -EFAULT;
4595 if (copy_to_user(argp, &dbgregs,
4596 sizeof(struct kvm_debugregs)))
4597 break;
4598 r = 0;
4599 break;
4600 }
4601 case KVM_SET_DEBUGREGS: {
4602 struct kvm_debugregs dbgregs;
4603
4604 r = -EFAULT;
4605 if (copy_from_user(&dbgregs, argp,
4606 sizeof(struct kvm_debugregs)))
4607 break;
4608
4609 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
4610 break;
4611 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004612 case KVM_GET_XSAVE: {
Ben Gardon254272c2019-02-11 11:02:50 -08004613 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004614 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004615 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004616 break;
4617
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004618 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004619
4620 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004621 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004622 break;
4623 r = 0;
4624 break;
4625 }
4626 case KVM_SET_XSAVE: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02004627 u.xsave = memdup_user(argp, sizeof(*u.xsave));
Christoffer Dall9b0624712017-12-04 21:35:36 +01004628 if (IS_ERR(u.xsave)) {
4629 r = PTR_ERR(u.xsave);
4630 goto out_nofree;
4631 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004632
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004633 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004634 break;
4635 }
4636 case KVM_GET_XCRS: {
Ben Gardon254272c2019-02-11 11:02:50 -08004637 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004638 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004639 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004640 break;
4641
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004642 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004643
4644 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004645 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004646 sizeof(struct kvm_xcrs)))
4647 break;
4648 r = 0;
4649 break;
4650 }
4651 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02004652 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Christoffer Dall9b0624712017-12-04 21:35:36 +01004653 if (IS_ERR(u.xcrs)) {
4654 r = PTR_ERR(u.xcrs);
4655 goto out_nofree;
4656 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004657
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004658 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004659 break;
4660 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01004661 case KVM_SET_TSC_KHZ: {
4662 u32 user_tsc_khz;
4663
4664 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01004665 user_tsc_khz = (u32)arg;
4666
Marcelo Tosatti26769f92020-06-16 08:47:41 -03004667 if (kvm_has_tsc_control &&
4668 user_tsc_khz >= kvm_max_guest_tsc_khz)
Joerg Roedel92a1f122011-03-25 09:44:51 +01004669 goto out;
4670
Zachary Amsdencc578282012-02-03 15:43:50 -02004671 if (user_tsc_khz == 0)
4672 user_tsc_khz = tsc_khz;
4673
Haozhong Zhang381d5852015-10-20 15:39:04 +08004674 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
4675 r = 0;
Joerg Roedel92a1f122011-03-25 09:44:51 +01004676
Joerg Roedel92a1f122011-03-25 09:44:51 +01004677 goto out;
4678 }
4679 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02004680 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01004681 goto out;
4682 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004683 case KVM_KVMCLOCK_CTRL: {
4684 r = kvm_set_guest_paused(vcpu);
4685 goto out;
4686 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004687 case KVM_ENABLE_CAP: {
4688 struct kvm_enable_cap cap;
4689
4690 r = -EFAULT;
4691 if (copy_from_user(&cap, argp, sizeof(cap)))
4692 goto out;
4693 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
4694 break;
4695 }
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004696 case KVM_GET_NESTED_STATE: {
4697 struct kvm_nested_state __user *user_kvm_nested_state = argp;
4698 u32 user_data_size;
4699
4700 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04004701 if (!kvm_x86_ops.nested_ops->get_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004702 break;
4703
4704 BUILD_BUG_ON(sizeof(user_data_size) != sizeof(user_kvm_nested_state->size));
Liran Alon26b471c2018-09-16 14:28:20 +03004705 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004706 if (get_user(user_data_size, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03004707 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004708
Paolo Bonzini33b22172020-04-17 10:24:18 -04004709 r = kvm_x86_ops.nested_ops->get_state(vcpu, user_kvm_nested_state,
4710 user_data_size);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004711 if (r < 0)
Liran Alon26b471c2018-09-16 14:28:20 +03004712 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004713
4714 if (r > user_data_size) {
4715 if (put_user(r, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03004716 r = -EFAULT;
4717 else
4718 r = -E2BIG;
4719 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004720 }
Liran Alon26b471c2018-09-16 14:28:20 +03004721
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004722 r = 0;
4723 break;
4724 }
4725 case KVM_SET_NESTED_STATE: {
4726 struct kvm_nested_state __user *user_kvm_nested_state = argp;
4727 struct kvm_nested_state kvm_state;
Sean Christophersonad5996d2019-11-22 08:58:18 -08004728 int idx;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004729
4730 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04004731 if (!kvm_x86_ops.nested_ops->set_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004732 break;
4733
Liran Alon26b471c2018-09-16 14:28:20 +03004734 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004735 if (copy_from_user(&kvm_state, user_kvm_nested_state, sizeof(kvm_state)))
Liran Alon26b471c2018-09-16 14:28:20 +03004736 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004737
Liran Alon26b471c2018-09-16 14:28:20 +03004738 r = -EINVAL;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004739 if (kvm_state.size < sizeof(kvm_state))
Liran Alon26b471c2018-09-16 14:28:20 +03004740 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004741
4742 if (kvm_state.flags &
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02004743 ~(KVM_STATE_NESTED_RUN_PENDING | KVM_STATE_NESTED_GUEST_MODE
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04004744 | KVM_STATE_NESTED_EVMCS | KVM_STATE_NESTED_MTF_PENDING
4745 | KVM_STATE_NESTED_GIF_SET))
Liran Alon26b471c2018-09-16 14:28:20 +03004746 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004747
4748 /* nested_run_pending implies guest_mode. */
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02004749 if ((kvm_state.flags & KVM_STATE_NESTED_RUN_PENDING)
4750 && !(kvm_state.flags & KVM_STATE_NESTED_GUEST_MODE))
Liran Alon26b471c2018-09-16 14:28:20 +03004751 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004752
Sean Christophersonad5996d2019-11-22 08:58:18 -08004753 idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini33b22172020-04-17 10:24:18 -04004754 r = kvm_x86_ops.nested_ops->set_state(vcpu, user_kvm_nested_state, &kvm_state);
Sean Christophersonad5996d2019-11-22 08:58:18 -08004755 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004756 break;
4757 }
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004758 case KVM_GET_SUPPORTED_HV_CPUID: {
4759 struct kvm_cpuid2 __user *cpuid_arg = argp;
4760 struct kvm_cpuid2 cpuid;
4761
4762 r = -EFAULT;
4763 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
4764 goto out;
4765
4766 r = kvm_vcpu_ioctl_get_hv_cpuid(vcpu, &cpuid,
4767 cpuid_arg->entries);
4768 if (r)
4769 goto out;
4770
4771 r = -EFAULT;
4772 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
4773 goto out;
4774 r = 0;
4775 break;
4776 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02004777 default:
4778 r = -EINVAL;
4779 }
4780out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004781 kfree(u.buffer);
Christoffer Dall9b0624712017-12-04 21:35:36 +01004782out_nofree:
4783 vcpu_put(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004784 return r;
4785}
4786
Souptick Joarder1499fa82018-04-19 00:49:58 +05304787vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
Carsten Otte5b1c1492012-01-04 10:25:23 +01004788{
4789 return VM_FAULT_SIGBUS;
4790}
4791
Carsten Otte1fe779f2007-10-29 16:08:35 +01004792static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
4793{
4794 int ret;
4795
4796 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08004797 return -EINVAL;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004798 ret = kvm_x86_ops.set_tss_addr(kvm, addr);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004799 return ret;
4800}
4801
Sheng Yangb927a3c2009-07-21 10:42:48 +08004802static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
4803 u64 ident_addr)
4804{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004805 return kvm_x86_ops.set_identity_map_addr(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08004806}
4807
Carsten Otte1fe779f2007-10-29 16:08:35 +01004808static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
Ben Gardonbc8a3d82019-04-08 11:07:30 -07004809 unsigned long kvm_nr_mmu_pages)
Carsten Otte1fe779f2007-10-29 16:08:35 +01004810{
4811 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
4812 return -EINVAL;
4813
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004814 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004815
4816 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08004817 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004818
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004819 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004820 return 0;
4821}
4822
Ben Gardonbc8a3d82019-04-08 11:07:30 -07004823static unsigned long kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
Carsten Otte1fe779f2007-10-29 16:08:35 +01004824{
Dave Hansen39de71e2010-08-19 18:11:14 -07004825 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004826}
4827
Carsten Otte1fe779f2007-10-29 16:08:35 +01004828static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
4829{
David Hildenbrand90bca052017-04-07 10:50:23 +02004830 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004831 int r;
4832
4833 r = 0;
4834 switch (chip->chip_id) {
4835 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02004836 memcpy(&chip->chip.pic, &pic->pics[0],
Carsten Otte1fe779f2007-10-29 16:08:35 +01004837 sizeof(struct kvm_pic_state));
4838 break;
4839 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02004840 memcpy(&chip->chip.pic, &pic->pics[1],
Carsten Otte1fe779f2007-10-29 16:08:35 +01004841 sizeof(struct kvm_pic_state));
4842 break;
4843 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02004844 kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004845 break;
4846 default:
4847 r = -EINVAL;
4848 break;
4849 }
4850 return r;
4851}
4852
4853static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
4854{
David Hildenbrand90bca052017-04-07 10:50:23 +02004855 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004856 int r;
4857
4858 r = 0;
4859 switch (chip->chip_id) {
4860 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02004861 spin_lock(&pic->lock);
4862 memcpy(&pic->pics[0], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01004863 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02004864 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004865 break;
4866 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02004867 spin_lock(&pic->lock);
4868 memcpy(&pic->pics[1], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01004869 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02004870 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004871 break;
4872 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02004873 kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004874 break;
4875 default:
4876 r = -EINVAL;
4877 break;
4878 }
David Hildenbrand90bca052017-04-07 10:50:23 +02004879 kvm_pic_update_irq(pic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004880 return r;
4881}
4882
Sheng Yange0f63cb2008-03-04 00:50:59 +08004883static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
4884{
Radim Krčmář34f39412016-03-02 22:56:50 +01004885 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state;
4886
4887 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
4888
4889 mutex_lock(&kps->lock);
4890 memcpy(ps, &kps->channels, sizeof(*ps));
4891 mutex_unlock(&kps->lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05304892 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08004893}
4894
4895static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
4896{
Andrew Honig01856042015-11-18 14:50:23 -08004897 int i;
Radim Krčmář09edea72016-03-02 22:56:43 +01004898 struct kvm_pit *pit = kvm->arch.vpit;
4899
4900 mutex_lock(&pit->pit_state.lock);
Radim Krčmář34f39412016-03-02 22:56:50 +01004901 memcpy(&pit->pit_state.channels, ps, sizeof(*ps));
Andrew Honig01856042015-11-18 14:50:23 -08004902 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01004903 kvm_pit_load_count(pit, i, ps->channels[i].count, 0);
4904 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05304905 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04004906}
4907
4908static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
4909{
Beth Kone9f42752009-07-07 11:50:38 -04004910 mutex_lock(&kvm->arch.vpit->pit_state.lock);
4911 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
4912 sizeof(ps->channels));
4913 ps->flags = kvm->arch.vpit->pit_state.flags;
4914 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004915 memset(&ps->reserved, 0, sizeof(ps->reserved));
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05304916 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04004917}
4918
4919static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
4920{
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05304921 int start = 0;
Andrew Honig01856042015-11-18 14:50:23 -08004922 int i;
Beth Kone9f42752009-07-07 11:50:38 -04004923 u32 prev_legacy, cur_legacy;
Radim Krčmář09edea72016-03-02 22:56:43 +01004924 struct kvm_pit *pit = kvm->arch.vpit;
4925
4926 mutex_lock(&pit->pit_state.lock);
4927 prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
Beth Kone9f42752009-07-07 11:50:38 -04004928 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
4929 if (!prev_legacy && cur_legacy)
4930 start = 1;
Radim Krčmář09edea72016-03-02 22:56:43 +01004931 memcpy(&pit->pit_state.channels, &ps->channels,
4932 sizeof(pit->pit_state.channels));
4933 pit->pit_state.flags = ps->flags;
Andrew Honig01856042015-11-18 14:50:23 -08004934 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01004935 kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count,
Paolo Bonzinie5e57e72016-01-07 13:50:38 +01004936 start && i == 0);
Radim Krčmář09edea72016-03-02 22:56:43 +01004937 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05304938 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08004939}
4940
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004941static int kvm_vm_ioctl_reinject(struct kvm *kvm,
4942 struct kvm_reinject_control *control)
4943{
Radim Krčmář71474e22016-03-02 22:56:45 +01004944 struct kvm_pit *pit = kvm->arch.vpit;
4945
Radim Krčmář71474e22016-03-02 22:56:45 +01004946 /* pit->pit_state.lock was overloaded to prevent userspace from getting
4947 * an inconsistent state after running multiple KVM_REINJECT_CONTROL
4948 * ioctls in parallel. Use a separate lock if that ioctl isn't rare.
4949 */
4950 mutex_lock(&pit->pit_state.lock);
4951 kvm_pit_set_reinject(pit, control->pit_reinject);
4952 mutex_unlock(&pit->pit_state.lock);
Radim Krčmářb39c90b2016-03-02 22:56:44 +01004953
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004954 return 0;
4955}
4956
Sean Christopherson0dff0842020-02-18 13:07:29 -08004957void kvm_arch_sync_dirty_log(struct kvm *kvm, struct kvm_memory_slot *memslot)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08004958{
Kai Huang88178fd2015-01-28 10:54:27 +08004959 /*
4960 * Flush potentially hardware-cached dirty pages to dirty_bitmap.
4961 */
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004962 if (kvm_x86_ops.flush_log_dirty)
4963 kvm_x86_ops.flush_log_dirty(kvm);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08004964}
4965
Yang Zhangaa2fbe62013-04-11 19:21:40 +08004966int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
4967 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04004968{
4969 if (!irqchip_in_kernel(kvm))
4970 return -ENXIO;
4971
4972 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08004973 irq_event->irq, irq_event->level,
4974 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04004975 return 0;
4976}
4977
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01004978int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
4979 struct kvm_enable_cap *cap)
Nadav Amit90de4a12015-04-13 01:53:41 +03004980{
4981 int r;
4982
4983 if (cap->flags)
4984 return -EINVAL;
4985
4986 switch (cap->cap) {
4987 case KVM_CAP_DISABLE_QUIRKS:
4988 kvm->arch.disabled_quirks = cap->args[0];
4989 r = 0;
4990 break;
Steve Rutherford49df6392015-07-29 23:21:40 -07004991 case KVM_CAP_SPLIT_IRQCHIP: {
4992 mutex_lock(&kvm->lock);
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07004993 r = -EINVAL;
4994 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
4995 goto split_irqchip_unlock;
Steve Rutherford49df6392015-07-29 23:21:40 -07004996 r = -EEXIST;
4997 if (irqchip_in_kernel(kvm))
4998 goto split_irqchip_unlock;
Paolo Bonzini557abc42016-06-13 14:50:04 +02004999 if (kvm->created_vcpus)
Steve Rutherford49df6392015-07-29 23:21:40 -07005000 goto split_irqchip_unlock;
5001 r = kvm_setup_empty_irq_routing(kvm);
David Hildenbrand5c0aea02017-04-28 17:06:20 +02005002 if (r)
Steve Rutherford49df6392015-07-29 23:21:40 -07005003 goto split_irqchip_unlock;
5004 /* Pairs with irqchip_in_kernel. */
5005 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01005006 kvm->arch.irqchip_mode = KVM_IRQCHIP_SPLIT;
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005007 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
Steve Rutherford49df6392015-07-29 23:21:40 -07005008 r = 0;
5009split_irqchip_unlock:
5010 mutex_unlock(&kvm->lock);
5011 break;
5012 }
Radim Krčmář371313132016-07-12 22:09:27 +02005013 case KVM_CAP_X2APIC_API:
5014 r = -EINVAL;
5015 if (cap->args[0] & ~KVM_X2APIC_API_VALID_FLAGS)
5016 break;
5017
5018 if (cap->args[0] & KVM_X2APIC_API_USE_32BIT_IDS)
5019 kvm->arch.x2apic_format = true;
Radim Krčmářc5192652016-07-12 22:09:28 +02005020 if (cap->args[0] & KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
5021 kvm->arch.x2apic_broadcast_quirk_disabled = true;
Radim Krčmář371313132016-07-12 22:09:27 +02005022
5023 r = 0;
5024 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005025 case KVM_CAP_X86_DISABLE_EXITS:
5026 r = -EINVAL;
5027 if (cap->args[0] & ~KVM_X86_DISABLE_VALID_EXITS)
5028 break;
5029
5030 if ((cap->args[0] & KVM_X86_DISABLE_EXITS_MWAIT) &&
5031 kvm_can_mwait_in_guest())
5032 kvm->arch.mwait_in_guest = true;
Michael S. Tsirkin766d3572018-06-08 02:19:53 +03005033 if (cap->args[0] & KVM_X86_DISABLE_EXITS_HLT)
Wanpeng Licaa057a2018-03-12 04:53:03 -07005034 kvm->arch.hlt_in_guest = true;
Wanpeng Lib31c1142018-03-12 04:53:04 -07005035 if (cap->args[0] & KVM_X86_DISABLE_EXITS_PAUSE)
5036 kvm->arch.pause_in_guest = true;
Wanpeng Lib5170062019-05-21 14:06:53 +08005037 if (cap->args[0] & KVM_X86_DISABLE_EXITS_CSTATE)
5038 kvm->arch.cstate_in_guest = true;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005039 r = 0;
5040 break;
Drew Schmitt6fbbde92018-08-20 10:32:15 -07005041 case KVM_CAP_MSR_PLATFORM_INFO:
5042 kvm->arch.guest_can_read_msr_platform_info = cap->args[0];
5043 r = 0;
5044 break;
Jim Mattsonc4f55192018-10-16 14:29:24 -07005045 case KVM_CAP_EXCEPTION_PAYLOAD:
5046 kvm->arch.exception_payload_enabled = cap->args[0];
5047 r = 0;
5048 break;
Nadav Amit90de4a12015-04-13 01:53:41 +03005049 default:
5050 r = -EINVAL;
5051 break;
5052 }
5053 return r;
5054}
5055
Carsten Otte1fe779f2007-10-29 16:08:35 +01005056long kvm_arch_vm_ioctl(struct file *filp,
5057 unsigned int ioctl, unsigned long arg)
5058{
5059 struct kvm *kvm = filp->private_data;
5060 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03005061 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07005062 /*
5063 * This union makes it completely explicit to gcc-3.x
5064 * that these two variables' stack usage should be
5065 * combined, not added together.
5066 */
5067 union {
5068 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04005069 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005070 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07005071 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005072
5073 switch (ioctl) {
5074 case KVM_SET_TSS_ADDR:
5075 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005076 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005077 case KVM_SET_IDENTITY_MAP_ADDR: {
5078 u64 ident_addr;
5079
David Hildenbrand1af1ac92017-08-24 20:51:36 +02005080 mutex_lock(&kvm->lock);
5081 r = -EINVAL;
5082 if (kvm->created_vcpus)
5083 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005084 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005085 if (copy_from_user(&ident_addr, argp, sizeof(ident_addr)))
David Hildenbrand1af1ac92017-08-24 20:51:36 +02005086 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005087 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
David Hildenbrand1af1ac92017-08-24 20:51:36 +02005088set_identity_unlock:
5089 mutex_unlock(&kvm->lock);
Sheng Yangb927a3c2009-07-21 10:42:48 +08005090 break;
5091 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01005092 case KVM_SET_NR_MMU_PAGES:
5093 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005094 break;
5095 case KVM_GET_NR_MMU_PAGES:
5096 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
5097 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005098 case KVM_CREATE_IRQCHIP: {
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005099 mutex_lock(&kvm->lock);
Radim Krčmář09941362016-12-16 16:10:03 +01005100
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005101 r = -EEXIST;
Radim Krčmář35e6eaa2016-12-16 16:10:01 +01005102 if (irqchip_in_kernel(kvm))
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005103 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01005104
Avi Kivity3e515702012-03-05 14:23:29 +02005105 r = -EINVAL;
Paolo Bonzini557abc42016-06-13 14:50:04 +02005106 if (kvm->created_vcpus)
Avi Kivity3e515702012-03-05 14:23:29 +02005107 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01005108
5109 r = kvm_pic_init(kvm);
5110 if (r)
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005111 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01005112
5113 r = kvm_ioapic_init(kvm);
5114 if (r) {
Radim Krčmář09941362016-12-16 16:10:03 +01005115 kvm_pic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01005116 goto create_irqchip_unlock;
5117 }
5118
Avi Kivity399ec802008-11-19 13:58:46 +02005119 r = kvm_setup_default_irq_routing(kvm);
5120 if (r) {
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08005121 kvm_ioapic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01005122 kvm_pic_destroy(kvm);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02005123 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02005124 }
Radim Krčmář49776fa2016-12-16 16:10:02 +01005125 /* Write kvm->irq_routing before enabling irqchip_in_kernel. */
Paolo Bonzini71ba9942015-07-29 12:31:15 +02005126 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01005127 kvm->arch.irqchip_mode = KVM_IRQCHIP_KERNEL;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005128 create_irqchip_unlock:
5129 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005130 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005131 }
Sheng Yang78376992008-01-28 05:10:22 +08005132 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005133 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
5134 goto create_pit;
5135 case KVM_CREATE_PIT2:
5136 r = -EFAULT;
5137 if (copy_from_user(&u.pit_config, argp,
5138 sizeof(struct kvm_pit_config)))
5139 goto out;
5140 create_pit:
Paolo Bonzini250715a2016-06-01 14:09:24 +02005141 mutex_lock(&kvm->lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02005142 r = -EEXIST;
5143 if (kvm->arch.vpit)
5144 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08005145 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005146 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08005147 if (kvm->arch.vpit)
5148 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02005149 create_pit_unlock:
Paolo Bonzini250715a2016-06-01 14:09:24 +02005150 mutex_unlock(&kvm->lock);
Sheng Yang78376992008-01-28 05:10:22 +08005151 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005152 case KVM_GET_IRQCHIP: {
5153 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02005154 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005155
Sasha Levinff5c2c02011-12-04 19:36:29 +02005156 chip = memdup_user(argp, sizeof(*chip));
5157 if (IS_ERR(chip)) {
5158 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005159 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02005160 }
5161
Carsten Otte1fe779f2007-10-29 16:08:35 +01005162 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01005163 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07005164 goto get_irqchip_out;
5165 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
5166 if (r)
5167 goto get_irqchip_out;
5168 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005169 if (copy_to_user(argp, chip, sizeof(*chip)))
Dave Hansenf0d66272008-08-11 10:01:45 -07005170 goto get_irqchip_out;
5171 r = 0;
5172 get_irqchip_out:
5173 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005174 break;
5175 }
5176 case KVM_SET_IRQCHIP: {
5177 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02005178 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005179
Sasha Levinff5c2c02011-12-04 19:36:29 +02005180 chip = memdup_user(argp, sizeof(*chip));
5181 if (IS_ERR(chip)) {
5182 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005183 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02005184 }
5185
Carsten Otte1fe779f2007-10-29 16:08:35 +01005186 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01005187 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07005188 goto set_irqchip_out;
5189 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
Dave Hansenf0d66272008-08-11 10:01:45 -07005190 set_irqchip_out:
5191 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005192 break;
5193 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08005194 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08005195 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07005196 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08005197 goto out;
5198 r = -ENXIO;
5199 if (!kvm->arch.vpit)
5200 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07005201 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08005202 if (r)
5203 goto out;
5204 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07005205 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08005206 goto out;
5207 r = 0;
5208 break;
5209 }
5210 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08005211 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005212 if (copy_from_user(&u.ps, argp, sizeof(u.ps)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08005213 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005214 mutex_lock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08005215 r = -ENXIO;
5216 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005217 goto set_pit_out;
Dave Hansenf0d66272008-08-11 10:01:45 -07005218 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005219set_pit_out:
5220 mutex_unlock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08005221 break;
5222 }
Beth Kone9f42752009-07-07 11:50:38 -04005223 case KVM_GET_PIT2: {
5224 r = -ENXIO;
5225 if (!kvm->arch.vpit)
5226 goto out;
5227 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
5228 if (r)
5229 goto out;
5230 r = -EFAULT;
5231 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
5232 goto out;
5233 r = 0;
5234 break;
5235 }
5236 case KVM_SET_PIT2: {
5237 r = -EFAULT;
5238 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
5239 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005240 mutex_lock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04005241 r = -ENXIO;
5242 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005243 goto set_pit2_out;
Beth Kone9f42752009-07-07 11:50:38 -04005244 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005245set_pit2_out:
5246 mutex_unlock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04005247 break;
5248 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005249 case KVM_REINJECT_CONTROL: {
5250 struct kvm_reinject_control control;
5251 r = -EFAULT;
5252 if (copy_from_user(&control, argp, sizeof(control)))
5253 goto out;
Miaohe Lincad23e72019-12-07 17:25:22 +08005254 r = -ENXIO;
5255 if (!kvm->arch.vpit)
5256 goto out;
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005257 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005258 break;
5259 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02005260 case KVM_SET_BOOT_CPU_ID:
5261 r = 0;
5262 mutex_lock(&kvm->lock);
Paolo Bonzini557abc42016-06-13 14:50:04 +02005263 if (kvm->created_vcpus)
Paolo Bonzinid71ba782015-07-29 11:56:48 +02005264 r = -EBUSY;
5265 else
5266 kvm->arch.bsp_vcpu_id = arg;
5267 mutex_unlock(&kvm->lock);
5268 break;
Ed Swierkffde22a2009-10-15 15:21:43 -07005269 case KVM_XEN_HVM_CONFIG: {
Paolo Bonzini51776042017-10-26 15:45:47 +02005270 struct kvm_xen_hvm_config xhc;
Ed Swierkffde22a2009-10-15 15:21:43 -07005271 r = -EFAULT;
Paolo Bonzini51776042017-10-26 15:45:47 +02005272 if (copy_from_user(&xhc, argp, sizeof(xhc)))
Ed Swierkffde22a2009-10-15 15:21:43 -07005273 goto out;
5274 r = -EINVAL;
Paolo Bonzini51776042017-10-26 15:45:47 +02005275 if (xhc.flags)
Ed Swierkffde22a2009-10-15 15:21:43 -07005276 goto out;
Paolo Bonzini51776042017-10-26 15:45:47 +02005277 memcpy(&kvm->arch.xen_hvm_config, &xhc, sizeof(xhc));
Ed Swierkffde22a2009-10-15 15:21:43 -07005278 r = 0;
5279 break;
5280 }
Glauber Costaafbcf7a2009-10-16 15:28:36 -04005281 case KVM_SET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04005282 struct kvm_clock_data user_ns;
5283 u64 now_ns;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04005284
5285 r = -EFAULT;
5286 if (copy_from_user(&user_ns, argp, sizeof(user_ns)))
5287 goto out;
5288
5289 r = -EINVAL;
5290 if (user_ns.flags)
5291 goto out;
5292
5293 r = 0;
Radim Krčmář0bc48be2017-05-16 22:50:00 +02005294 /*
5295 * TODO: userspace has to take care of races with VCPU_RUN, so
5296 * kvm_gen_update_masterclock() can be cut down to locked
5297 * pvclock_update_vm_gtod_copy().
5298 */
5299 kvm_gen_update_masterclock(kvm);
Marcelo Tosattie891a322017-04-17 12:51:37 -03005300 now_ns = get_kvmclock_ns(kvm);
Paolo Bonzini108b2492016-09-01 14:21:03 +02005301 kvm->arch.kvmclock_offset += user_ns.clock - now_ns;
Radim Krčmář0bc48be2017-05-16 22:50:00 +02005302 kvm_make_all_cpus_request(kvm, KVM_REQ_CLOCK_UPDATE);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04005303 break;
5304 }
5305 case KVM_GET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04005306 struct kvm_clock_data user_ns;
5307 u64 now_ns;
5308
Marcelo Tosattie891a322017-04-17 12:51:37 -03005309 now_ns = get_kvmclock_ns(kvm);
Paolo Bonzini108b2492016-09-01 14:21:03 +02005310 user_ns.clock = now_ns;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01005311 user_ns.flags = kvm->arch.use_master_clock ? KVM_CLOCK_TSC_STABLE : 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04005312 memset(&user_ns.pad, 0, sizeof(user_ns.pad));
Glauber Costaafbcf7a2009-10-16 15:28:36 -04005313
5314 r = -EFAULT;
5315 if (copy_to_user(argp, &user_ns, sizeof(user_ns)))
5316 goto out;
5317 r = 0;
5318 break;
5319 }
Brijesh Singh5acc5c02017-12-04 10:57:26 -06005320 case KVM_MEMORY_ENCRYPT_OP: {
5321 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005322 if (kvm_x86_ops.mem_enc_op)
5323 r = kvm_x86_ops.mem_enc_op(kvm, argp);
Brijesh Singh5acc5c02017-12-04 10:57:26 -06005324 break;
5325 }
Brijesh Singh69eaede2017-12-04 10:57:26 -06005326 case KVM_MEMORY_ENCRYPT_REG_REGION: {
5327 struct kvm_enc_region region;
5328
5329 r = -EFAULT;
5330 if (copy_from_user(&region, argp, sizeof(region)))
5331 goto out;
5332
5333 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005334 if (kvm_x86_ops.mem_enc_reg_region)
5335 r = kvm_x86_ops.mem_enc_reg_region(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06005336 break;
5337 }
5338 case KVM_MEMORY_ENCRYPT_UNREG_REGION: {
5339 struct kvm_enc_region region;
5340
5341 r = -EFAULT;
5342 if (copy_from_user(&region, argp, sizeof(region)))
5343 goto out;
5344
5345 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005346 if (kvm_x86_ops.mem_enc_unreg_region)
5347 r = kvm_x86_ops.mem_enc_unreg_region(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06005348 break;
5349 }
Roman Kaganfaeb7832018-02-01 16:48:32 +03005350 case KVM_HYPERV_EVENTFD: {
5351 struct kvm_hyperv_eventfd hvevfd;
5352
5353 r = -EFAULT;
5354 if (copy_from_user(&hvevfd, argp, sizeof(hvevfd)))
5355 goto out;
5356 r = kvm_vm_ioctl_hv_eventfd(kvm, &hvevfd);
5357 break;
5358 }
Eric Hankland66bb8a02019-07-10 18:25:15 -07005359 case KVM_SET_PMU_EVENT_FILTER:
5360 r = kvm_vm_ioctl_set_pmu_event_filter(kvm, argp);
5361 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005362 default:
Paolo Bonziniad6260d2017-03-27 14:30:40 +02005363 r = -ENOTTY;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005364 }
5365out:
5366 return r;
5367}
5368
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08005369static void kvm_init_msr_list(void)
Carsten Otte043405e2007-10-10 17:16:19 +02005370{
Paolo Bonzini24c29b72019-10-01 15:18:26 +02005371 struct x86_pmu_capability x86_pmu;
Carsten Otte043405e2007-10-10 17:16:19 +02005372 u32 dummy[2];
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005373 unsigned i;
Carsten Otte043405e2007-10-10 17:16:19 +02005374
Jim Mattsone2ada662019-08-21 11:20:04 -07005375 BUILD_BUG_ON_MSG(INTEL_PMC_MAX_FIXED != 4,
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005376 "Please update the fixed PMCs in msrs_to_saved_all[]");
Paolo Bonzini24c29b72019-10-01 15:18:26 +02005377
5378 perf_get_x86_pmu_capability(&x86_pmu);
Jim Mattsone2ada662019-08-21 11:20:04 -07005379
Xiaoyao Li6cbee2b2019-11-13 09:15:21 +08005380 num_msrs_to_save = 0;
5381 num_emulated_msrs = 0;
5382 num_msr_based_features = 0;
5383
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005384 for (i = 0; i < ARRAY_SIZE(msrs_to_save_all); i++) {
5385 if (rdmsr_safe(msrs_to_save_all[i], &dummy[0], &dummy[1]) < 0)
Carsten Otte043405e2007-10-10 17:16:19 +02005386 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005387
5388 /*
5389 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01005390 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005391 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005392 switch (msrs_to_save_all[i]) {
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005393 case MSR_IA32_BNDCFGS:
Liran Alon503234b2018-09-14 03:25:53 +03005394 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005395 continue;
5396 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01005397 case MSR_TSC_AUX:
Sean Christopherson13908512020-03-02 15:56:57 -08005398 if (!kvm_cpu_cap_has(X86_FEATURE_RDTSCP))
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01005399 continue;
5400 break;
Maxim Levitskyf4cfcd22020-05-23 19:14:55 +03005401 case MSR_IA32_UMWAIT_CONTROL:
5402 if (!kvm_cpu_cap_has(X86_FEATURE_WAITPKG))
5403 continue;
5404 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08005405 case MSR_IA32_RTIT_CTL:
5406 case MSR_IA32_RTIT_STATUS:
Sean Christopherson7b874c22020-03-02 15:56:59 -08005407 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT))
Chao Pengbf8c55d2018-10-24 16:05:14 +08005408 continue;
5409 break;
5410 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson7b874c22020-03-02 15:56:59 -08005411 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08005412 !intel_pt_validate_hw_cap(PT_CAP_cr3_filtering))
5413 continue;
5414 break;
5415 case MSR_IA32_RTIT_OUTPUT_BASE:
5416 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson7b874c22020-03-02 15:56:59 -08005417 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08005418 (!intel_pt_validate_hw_cap(PT_CAP_topa_output) &&
5419 !intel_pt_validate_hw_cap(PT_CAP_single_range_output)))
5420 continue;
5421 break;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08005422 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christopherson7b874c22020-03-02 15:56:59 -08005423 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005424 msrs_to_save_all[i] - MSR_IA32_RTIT_ADDR0_A >=
Chao Pengbf8c55d2018-10-24 16:05:14 +08005425 intel_pt_validate_hw_cap(PT_CAP_num_address_ranges) * 2)
5426 continue;
5427 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02005428 case MSR_ARCH_PERFMON_PERFCTR0 ... MSR_ARCH_PERFMON_PERFCTR0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005429 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_PERFCTR0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02005430 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
5431 continue;
5432 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02005433 case MSR_ARCH_PERFMON_EVENTSEL0 ... MSR_ARCH_PERFMON_EVENTSEL0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005434 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_EVENTSEL0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02005435 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
5436 continue;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08005437 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005438 default:
5439 break;
5440 }
5441
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005442 msrs_to_save[num_msrs_to_save++] = msrs_to_save_all[i];
Carsten Otte043405e2007-10-10 17:16:19 +02005443 }
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02005444
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005445 for (i = 0; i < ARRAY_SIZE(emulated_msrs_all); i++) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005446 if (!kvm_x86_ops.has_emulated_msr(emulated_msrs_all[i]))
Tom Lendackybc226f02018-05-10 22:06:39 +02005447 continue;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02005448
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005449 emulated_msrs[num_emulated_msrs++] = emulated_msrs_all[i];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02005450 }
Tom Lendacky801e4592018-02-21 13:39:51 -06005451
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005452 for (i = 0; i < ARRAY_SIZE(msr_based_features_all); i++) {
Tom Lendacky801e4592018-02-21 13:39:51 -06005453 struct kvm_msr_entry msr;
5454
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005455 msr.index = msr_based_features_all[i];
Wanpeng Li66421c12018-02-28 14:03:30 +08005456 if (kvm_get_msr_feature(&msr))
Tom Lendacky801e4592018-02-21 13:39:51 -06005457 continue;
5458
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005459 msr_based_features[num_msr_based_features++] = msr_based_features_all[i];
Tom Lendacky801e4592018-02-21 13:39:51 -06005460 }
Carsten Otte043405e2007-10-10 17:16:19 +02005461}
5462
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03005463static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
5464 const void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005465{
Avi Kivity70252a12010-01-19 12:51:22 +02005466 int handled = 0;
5467 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005468
Avi Kivity70252a12010-01-19 12:51:22 +02005469 do {
5470 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01005471 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00005472 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
5473 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02005474 break;
5475 handled += n;
5476 addr += n;
5477 len -= n;
5478 v += n;
5479 } while (len);
5480
5481 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005482}
5483
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03005484static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005485{
Avi Kivity70252a12010-01-19 12:51:22 +02005486 int handled = 0;
5487 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005488
Avi Kivity70252a12010-01-19 12:51:22 +02005489 do {
5490 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01005491 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00005492 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
5493 addr, n, v))
5494 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02005495 break;
Wanpeng Lie39d200f2017-12-14 17:40:50 -08005496 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, v);
Avi Kivity70252a12010-01-19 12:51:22 +02005497 handled += n;
5498 addr += n;
5499 len -= n;
5500 v += n;
5501 } while (len);
5502
5503 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005504}
5505
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005506static void kvm_set_segment(struct kvm_vcpu *vcpu,
5507 struct kvm_segment *var, int seg)
5508{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005509 kvm_x86_ops.set_segment(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005510}
5511
5512void kvm_get_segment(struct kvm_vcpu *vcpu,
5513 struct kvm_segment *var, int seg)
5514{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005515 kvm_x86_ops.get_segment(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005516}
5517
Paolo Bonzini54987b72014-09-02 13:23:06 +02005518gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
5519 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02005520{
5521 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02005522
5523 BUG_ON(!mmu_is_nested(vcpu));
5524
5525 /* NPT walks are always user-walks */
5526 access |= PFERR_USER_MASK;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02005527 t_gpa = vcpu->arch.mmu->gva_to_gpa(vcpu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02005528
5529 return t_gpa;
5530}
5531
Avi Kivityab9ae312010-11-22 17:53:26 +02005532gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
5533 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02005534{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005535 u32 access = (kvm_x86_ops.get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02005536 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02005537}
5538
Avi Kivityab9ae312010-11-22 17:53:26 +02005539 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
5540 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02005541{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005542 u32 access = (kvm_x86_ops.get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02005543 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02005544 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02005545}
5546
Avi Kivityab9ae312010-11-22 17:53:26 +02005547gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
5548 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02005549{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005550 u32 access = (kvm_x86_ops.get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02005551 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02005552 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02005553}
5554
5555/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02005556gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
5557 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02005558{
Avi Kivityab9ae312010-11-22 17:53:26 +02005559 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02005560}
5561
5562static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
5563 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02005564 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005565{
5566 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005567 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005568
5569 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02005570 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02005571 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005572 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02005573 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005574 int ret;
5575
Avi Kivitybcc55cb2010-11-22 17:53:22 +02005576 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02005577 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005578 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
5579 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005580 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005581 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005582 goto out;
5583 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01005584
Izik Eidus77c20022008-12-29 01:42:19 +02005585 bytes -= toread;
5586 data += toread;
5587 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005588 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005589out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005590 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005591}
Izik Eidus77c20022008-12-29 01:42:19 +02005592
Gleb Natapov1871c602010-02-10 14:21:32 +02005593/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03005594static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
5595 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02005596 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02005597{
Avi Kivity0f65dd72011-04-20 13:37:53 +03005598 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005599 u32 access = (kvm_x86_ops.get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02005600 unsigned offset;
5601 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03005602
Paolo Bonzini44583cb2014-05-13 14:02:13 +02005603 /* Inline kvm_read_guest_virt_helper for speed. */
5604 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK,
5605 exception);
5606 if (unlikely(gpa == UNMAPPED_GVA))
5607 return X86EMUL_PROPAGATE_FAULT;
5608
5609 offset = addr & (PAGE_SIZE-1);
5610 if (WARN_ON(offset + bytes > PAGE_SIZE))
5611 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005612 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
5613 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02005614 if (unlikely(ret < 0))
5615 return X86EMUL_IO_NEEDED;
5616
5617 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02005618}
5619
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005620int kvm_read_guest_virt(struct kvm_vcpu *vcpu,
Avi Kivity0f65dd72011-04-20 13:37:53 +03005621 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02005622 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02005623{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005624 u32 access = (kvm_x86_ops.get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03005625
Paolo Bonzini353c0952019-01-29 18:41:16 +01005626 /*
5627 * FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED
5628 * is returned, but our callers are not ready for that and they blindly
5629 * call kvm_inject_page_fault. Ensure that they at least do not leak
5630 * uninitialized kernel stack memory into cr2 and error code.
5631 */
5632 memset(exception, 0, sizeof(*exception));
Gleb Natapov1871c602010-02-10 14:21:32 +02005633 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02005634 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02005635}
Nadav Har'El064aea72011-05-25 23:04:56 +03005636EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02005637
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005638static int emulator_read_std(struct x86_emulate_ctxt *ctxt,
5639 gva_t addr, void *val, unsigned int bytes,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02005640 struct x86_exception *exception, bool system)
Gleb Natapov1871c602010-02-10 14:21:32 +02005641{
Avi Kivity0f65dd72011-04-20 13:37:53 +03005642 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02005643 u32 access = 0;
5644
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005645 if (!system && kvm_x86_ops.get_cpl(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02005646 access |= PFERR_USER_MASK;
5647
5648 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02005649}
5650
Radim Krčmář7a036a62015-10-30 16:36:24 +01005651static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
5652 unsigned long addr, void *val, unsigned int bytes)
5653{
5654 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
5655 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
5656
5657 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
5658}
5659
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005660static int kvm_write_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
5661 struct kvm_vcpu *vcpu, u32 access,
5662 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02005663{
5664 void *data = val;
5665 int r = X86EMUL_CONTINUE;
5666
5667 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02005668 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005669 access,
Avi Kivityab9ae312010-11-22 17:53:26 +02005670 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02005671 unsigned offset = addr & (PAGE_SIZE-1);
5672 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
5673 int ret;
5674
Avi Kivitybcc55cb2010-11-22 17:53:22 +02005675 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02005676 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005677 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02005678 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005679 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02005680 goto out;
5681 }
5682
5683 bytes -= towrite;
5684 data += towrite;
5685 addr += towrite;
5686 }
5687out:
5688 return r;
5689}
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005690
5691static int emulator_write_std(struct x86_emulate_ctxt *ctxt, gva_t addr, void *val,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02005692 unsigned int bytes, struct x86_exception *exception,
5693 bool system)
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005694{
5695 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02005696 u32 access = PFERR_WRITE_MASK;
5697
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005698 if (!system && kvm_x86_ops.get_cpl(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02005699 access |= PFERR_USER_MASK;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005700
5701 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02005702 access, exception);
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005703}
5704
5705int kvm_write_guest_virt_system(struct kvm_vcpu *vcpu, gva_t addr, void *val,
5706 unsigned int bytes, struct x86_exception *exception)
5707{
Paolo Bonzinic595cee2018-07-02 13:07:14 +02005708 /* kvm_write_guest_virt_system can pull in tons of pages. */
5709 vcpu->arch.l1tf_flush_l1d = true;
5710
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005711 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
5712 PFERR_WRITE_MASK, exception);
5713}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03005714EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02005715
Wanpeng Li082d06e2018-04-03 16:28:48 -07005716int handle_ud(struct kvm_vcpu *vcpu)
5717{
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09005718 static const char kvm_emulate_prefix[] = { __KVM_EMULATE_PREFIX };
Wanpeng Li6c86eed2018-04-03 16:28:49 -07005719 int emul_type = EMULTYPE_TRAP_UD;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07005720 char sig[5]; /* ud2; .ascii "kvm" */
5721 struct x86_exception e;
Wanpeng Li082d06e2018-04-03 16:28:48 -07005722
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07005723 if (unlikely(!kvm_x86_ops.can_emulate_instruction(vcpu, NULL, 0)))
5724 return 1;
5725
Wanpeng Li6c86eed2018-04-03 16:28:49 -07005726 if (force_emulation_prefix &&
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02005727 kvm_read_guest_virt(vcpu, kvm_get_linear_rip(vcpu),
5728 sig, sizeof(sig), &e) == 0 &&
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09005729 memcmp(sig, kvm_emulate_prefix, sizeof(sig)) == 0) {
Wanpeng Li6c86eed2018-04-03 16:28:49 -07005730 kvm_rip_write(vcpu, kvm_rip_read(vcpu) + sizeof(sig));
Sean Christophersonb4000602019-08-27 14:40:32 -07005731 emul_type = EMULTYPE_TRAP_UD_FORCED;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07005732 }
5733
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005734 return kvm_emulate_instruction(vcpu, emul_type);
Wanpeng Li082d06e2018-04-03 16:28:48 -07005735}
5736EXPORT_SYMBOL_GPL(handle_ud);
5737
Tom Lendacky0f89b202016-12-14 14:59:23 -05005738static int vcpu_is_mmio_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
5739 gpa_t gpa, bool write)
5740{
5741 /* For APIC access vmexit */
5742 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
5743 return 1;
5744
5745 if (vcpu_match_mmio_gpa(vcpu, gpa)) {
5746 trace_vcpu_match_mmio(gva, gpa, write, true);
5747 return 1;
5748 }
5749
5750 return 0;
5751}
5752
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08005753static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
5754 gpa_t *gpa, struct x86_exception *exception,
5755 bool write)
5756{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005757 u32 access = ((kvm_x86_ops.get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0)
Avi Kivity97d64b72012-09-12 14:52:00 +03005758 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08005759
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08005760 /*
5761 * currently PKRU is only applied to ept enabled guest so
5762 * there is no pkey in EPT page table for L1 guest or EPT
5763 * shadow page table for L2 guest.
5764 */
Avi Kivity97d64b72012-09-12 14:52:00 +03005765 if (vcpu_match_mmio_gva(vcpu, gva)
Feng Wu97ec8c02014-04-01 17:46:34 +08005766 && !permission_fault(vcpu, vcpu->arch.walk_mmu,
Sean Christopherson871bd032019-08-01 13:35:21 -07005767 vcpu->arch.mmio_access, 0, access)) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08005768 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
5769 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08005770 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08005771 return 1;
5772 }
5773
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08005774 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
5775
5776 if (*gpa == UNMAPPED_GVA)
5777 return -1;
5778
Tom Lendacky0f89b202016-12-14 14:59:23 -05005779 return vcpu_is_mmio_gpa(vcpu, gva, *gpa, write);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08005780}
5781
Marcelo Tosatti3200f402008-03-29 20:17:59 -03005782int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02005783 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02005784{
5785 int ret;
5786
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005787 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02005788 if (ret < 0)
5789 return 0;
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08005790 kvm_page_track_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02005791 return 1;
5792}
5793
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005794struct read_write_emulator_ops {
5795 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
5796 int bytes);
5797 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
5798 void *val, int bytes);
5799 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
5800 int bytes, void *val);
5801 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
5802 void *val, int bytes);
5803 bool write;
5804};
5805
5806static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
5807{
5808 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005809 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Wanpeng Lie39d200f2017-12-14 17:40:50 -08005810 vcpu->mmio_fragments[0].gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005811 vcpu->mmio_read_completed = 0;
5812 return 1;
5813 }
5814
5815 return 0;
5816}
5817
5818static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
5819 void *val, int bytes)
5820{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005821 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005822}
5823
5824static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
5825 void *val, int bytes)
5826{
5827 return emulator_write_phys(vcpu, gpa, val, bytes);
5828}
5829
5830static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
5831{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08005832 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005833 return vcpu_mmio_write(vcpu, gpa, bytes, val);
5834}
5835
5836static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
5837 void *val, int bytes)
5838{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08005839 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, NULL);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005840 return X86EMUL_IO_NEEDED;
5841}
5842
5843static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
5844 void *val, int bytes)
5845{
Avi Kivityf78146b2012-04-18 19:22:47 +03005846 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
5847
Xiao Guangrong87da7e62012-10-24 14:07:59 +08005848 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005849 return X86EMUL_CONTINUE;
5850}
5851
Mathias Krause0fbe9b02012-08-30 01:30:17 +02005852static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005853 .read_write_prepare = read_prepare,
5854 .read_write_emulate = read_emulate,
5855 .read_write_mmio = vcpu_mmio_read,
5856 .read_write_exit_mmio = read_exit_mmio,
5857};
5858
Mathias Krause0fbe9b02012-08-30 01:30:17 +02005859static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005860 .read_write_emulate = write_emulate,
5861 .read_write_mmio = write_mmio,
5862 .read_write_exit_mmio = write_exit_mmio,
5863 .write = true,
5864};
5865
Xiao Guangrong22388a32011-07-13 14:32:31 +08005866static int emulator_read_write_onepage(unsigned long addr, void *val,
5867 unsigned int bytes,
5868 struct x86_exception *exception,
5869 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02005870 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005871{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08005872 gpa_t gpa;
5873 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08005874 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03005875 struct kvm_mmio_fragment *frag;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08005876 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Tom Lendacky0f89b202016-12-14 14:59:23 -05005877
5878 /*
5879 * If the exit was due to a NPF we may already have a GPA.
5880 * If the GPA is present, use it to avoid the GVA to GPA table walk.
5881 * Note, this cannot be used on string operations since string
5882 * operation using rep will only have the initial GPA from the NPF
5883 * occurred.
5884 */
Sean Christopherson744e6992020-02-18 15:03:09 -08005885 if (ctxt->gpa_available && emulator_can_use_gpa(ctxt) &&
5886 (addr & ~PAGE_MASK) == (ctxt->gpa_val & ~PAGE_MASK)) {
5887 gpa = ctxt->gpa_val;
Brijesh Singh618232e2017-08-17 18:36:57 +02005888 ret = vcpu_is_mmio_gpa(vcpu, addr, gpa, write);
5889 } else {
5890 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
5891 if (ret < 0)
5892 return X86EMUL_PROPAGATE_FAULT;
Tom Lendacky0f89b202016-12-14 14:59:23 -05005893 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08005894
Brijesh Singh618232e2017-08-17 18:36:57 +02005895 if (!ret && ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01005896 return X86EMUL_CONTINUE;
5897
Carsten Ottebbd9b642007-10-30 18:44:21 +01005898 /*
5899 * Is this MMIO handled locally?
5900 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08005901 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02005902 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005903 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005904
Avi Kivity70252a12010-01-19 12:51:22 +02005905 gpa += handled;
5906 bytes -= handled;
5907 val += handled;
5908
Xiao Guangrong87da7e62012-10-24 14:07:59 +08005909 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
5910 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
5911 frag->gpa = gpa;
5912 frag->data = val;
5913 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03005914 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005915}
5916
Xiubo Li52eb5a62015-03-13 17:39:45 +08005917static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
5918 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08005919 void *val, unsigned int bytes,
5920 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02005921 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005922{
Avi Kivity0f65dd72011-04-20 13:37:53 +03005923 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03005924 gpa_t gpa;
5925 int rc;
5926
5927 if (ops->read_write_prepare &&
5928 ops->read_write_prepare(vcpu, val, bytes))
5929 return X86EMUL_CONTINUE;
5930
5931 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03005932
Carsten Ottebbd9b642007-10-30 18:44:21 +01005933 /* Crossing a page boundary? */
5934 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03005935 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005936
5937 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08005938 rc = emulator_read_write_onepage(addr, val, now, exception,
5939 vcpu, ops);
5940
Carsten Ottebbd9b642007-10-30 18:44:21 +01005941 if (rc != X86EMUL_CONTINUE)
5942 return rc;
5943 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02005944 if (ctxt->mode != X86EMUL_MODE_PROT64)
5945 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005946 val += now;
5947 bytes -= now;
5948 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08005949
Avi Kivityf78146b2012-04-18 19:22:47 +03005950 rc = emulator_read_write_onepage(addr, val, bytes, exception,
5951 vcpu, ops);
5952 if (rc != X86EMUL_CONTINUE)
5953 return rc;
5954
5955 if (!vcpu->mmio_nr_fragments)
5956 return rc;
5957
5958 gpa = vcpu->mmio_fragments[0].gpa;
5959
5960 vcpu->mmio_needed = 1;
5961 vcpu->mmio_cur_fragment = 0;
5962
Xiao Guangrong87da7e62012-10-24 14:07:59 +08005963 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03005964 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
5965 vcpu->run->exit_reason = KVM_EXIT_MMIO;
5966 vcpu->run->mmio.phys_addr = gpa;
5967
5968 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08005969}
5970
5971static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
5972 unsigned long addr,
5973 void *val,
5974 unsigned int bytes,
5975 struct x86_exception *exception)
5976{
5977 return emulator_read_write(ctxt, addr, val, bytes,
5978 exception, &read_emultor);
5979}
5980
Xiubo Li52eb5a62015-03-13 17:39:45 +08005981static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08005982 unsigned long addr,
5983 const void *val,
5984 unsigned int bytes,
5985 struct x86_exception *exception)
5986{
5987 return emulator_read_write(ctxt, addr, (void *)val, bytes,
5988 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005989}
Carsten Ottebbd9b642007-10-30 18:44:21 +01005990
Avi Kivitydaea3e72010-03-15 13:59:54 +02005991#define CMPXCHG_TYPE(t, ptr, old, new) \
5992 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
5993
5994#ifdef CONFIG_X86_64
5995# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
5996#else
5997# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01005998 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02005999#endif
6000
Avi Kivity0f65dd72011-04-20 13:37:53 +03006001static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
6002 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01006003 const void *old,
6004 const void *new,
6005 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03006006 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006007{
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006008 struct kvm_host_map map;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006009 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02006010 u64 page_line_mask;
Avi Kivitydaea3e72010-03-15 13:59:54 +02006011 gpa_t gpa;
Avi Kivitydaea3e72010-03-15 13:59:54 +02006012 char *kaddr;
6013 bool exchanged;
6014
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006015 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02006016 if (bytes > 8 || (bytes & (bytes - 1)))
6017 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006018
Avi Kivitydaea3e72010-03-15 13:59:54 +02006019 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006020
Avi Kivitydaea3e72010-03-15 13:59:54 +02006021 if (gpa == UNMAPPED_GVA ||
6022 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
6023 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006024
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02006025 /*
6026 * Emulate the atomic as a straight write to avoid #AC if SLD is
6027 * enabled in the host and the access splits a cache line.
6028 */
6029 if (boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
6030 page_line_mask = ~(cache_line_size() - 1);
6031 else
6032 page_line_mask = PAGE_MASK;
6033
6034 if (((gpa + bytes - 1) & page_line_mask) != (gpa & page_line_mask))
Avi Kivitydaea3e72010-03-15 13:59:54 +02006035 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006036
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006037 if (kvm_vcpu_map(vcpu, gpa_to_gfn(gpa), &map))
Wei Yongjunc19b8bd2010-07-15 08:51:58 +08006038 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02006039
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006040 kaddr = map.hva + offset_in_page(gpa);
6041
Avi Kivitydaea3e72010-03-15 13:59:54 +02006042 switch (bytes) {
6043 case 1:
6044 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
6045 break;
6046 case 2:
6047 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
6048 break;
6049 case 4:
6050 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
6051 break;
6052 case 8:
6053 exchanged = CMPXCHG64(kaddr, old, new);
6054 break;
6055 default:
6056 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006057 }
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006058
6059 kvm_vcpu_unmap(vcpu, &map, true);
Avi Kivitydaea3e72010-03-15 13:59:54 +02006060
6061 if (!exchanged)
6062 return X86EMUL_CMPXCHG_FAILED;
6063
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08006064 kvm_page_track_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03006065
6066 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02006067
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006068emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02006069 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006070
Avi Kivity0f65dd72011-04-20 13:37:53 +03006071 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006072}
6073
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006074static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
6075{
Wanpeng Licbfc6c92017-05-19 02:46:56 -07006076 int r = 0, i;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006077
Wanpeng Licbfc6c92017-05-19 02:46:56 -07006078 for (i = 0; i < vcpu->arch.pio.count; i++) {
6079 if (vcpu->arch.pio.in)
6080 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
6081 vcpu->arch.pio.size, pd);
6082 else
6083 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
6084 vcpu->arch.pio.port, vcpu->arch.pio.size,
6085 pd);
6086 if (r)
6087 break;
6088 pd += vcpu->arch.pio.size;
6089 }
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006090 return r;
6091}
6092
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006093static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
6094 unsigned short port, void *val,
6095 unsigned int count, bool in)
6096{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006097 vcpu->arch.pio.port = port;
6098 vcpu->arch.pio.in = in;
6099 vcpu->arch.pio.count = count;
6100 vcpu->arch.pio.size = size;
6101
6102 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
6103 vcpu->arch.pio.count = 0;
6104 return 1;
6105 }
6106
6107 vcpu->run->exit_reason = KVM_EXIT_IO;
6108 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
6109 vcpu->run->io.size = size;
6110 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
6111 vcpu->run->io.count = count;
6112 vcpu->run->io.port = port;
6113
6114 return 0;
6115}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006116
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006117static int emulator_pio_in(struct kvm_vcpu *vcpu, int size,
6118 unsigned short port, void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006119{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006120 int ret;
Avi Kivityca1d4a92011-04-20 13:37:53 +03006121
Gleb Natapov79729952010-03-18 15:20:24 +02006122 if (vcpu->arch.pio.count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006123 goto data_avail;
6124
Wanpeng Licbfc6c92017-05-19 02:46:56 -07006125 memset(vcpu->arch.pio_data, 0, size * count);
6126
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006127 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
6128 if (ret) {
6129data_avail:
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006130 memcpy(val, vcpu->arch.pio_data, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02006131 trace_kvm_pio(KVM_PIO_IN, port, size, count, vcpu->arch.pio_data);
Gleb Natapov79729952010-03-18 15:20:24 +02006132 vcpu->arch.pio.count = 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006133 return 1;
6134 }
6135
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006136 return 0;
6137}
6138
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006139static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
6140 int size, unsigned short port, void *val,
6141 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006142{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006143 return emulator_pio_in(emul_to_vcpu(ctxt), size, port, val, count);
Avi Kivityca1d4a92011-04-20 13:37:53 +03006144
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006145}
6146
6147static int emulator_pio_out(struct kvm_vcpu *vcpu, int size,
6148 unsigned short port, const void *val,
6149 unsigned int count)
6150{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006151 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02006152 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006153 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006154}
6155
Carsten Ottebbd9b642007-10-30 18:44:21 +01006156static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
6157 int size, unsigned short port,
6158 const void *val, unsigned int count)
6159{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006160 return emulator_pio_out(emul_to_vcpu(ctxt), size, port, val, count);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006161}
6162
6163static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
6164{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006165 return kvm_x86_ops.get_segment_base(vcpu, seg);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006166}
6167
Avi Kivity3cb16fe2011-04-20 15:38:44 +03006168static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006169{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03006170 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006171}
6172
Jiang Biaoae6a2372016-11-07 08:54:51 +08006173static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006174{
6175 if (!need_emulate_wbinvd(vcpu))
6176 return X86EMUL_CONTINUE;
6177
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006178 if (kvm_x86_ops.has_wbinvd_exit()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01006179 int cpu = get_cpu();
6180
6181 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006182 smp_call_function_many(vcpu->arch.wbinvd_dirty_mask,
6183 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01006184 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006185 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01006186 } else
6187 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006188 return X86EMUL_CONTINUE;
6189}
Joel Schopp5cb56052015-03-02 13:43:31 -06006190
6191int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
6192{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006193 kvm_emulate_wbinvd_noskip(vcpu);
6194 return kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06006195}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006196EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
6197
Joel Schopp5cb56052015-03-02 13:43:31 -06006198
6199
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03006200static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
6201{
Joel Schopp5cb56052015-03-02 13:43:31 -06006202 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03006203}
6204
Xiubo Li52eb5a62015-03-13 17:39:45 +08006205static int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
6206 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006207{
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006208 return kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006209}
6210
Xiubo Li52eb5a62015-03-13 17:39:45 +08006211static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
6212 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006213{
Gleb Natapov338dbc92010-04-28 19:15:32 +03006214
Avi Kivity717746e2011-04-20 13:37:53 +03006215 return __kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006216}
6217
Gleb Natapov52a46612010-03-18 15:20:03 +02006218static u64 mk_cr_64(u64 curr_cr, u32 new_val)
6219{
6220 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
6221}
6222
Avi Kivity717746e2011-04-20 13:37:53 +03006223static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02006224{
Avi Kivity717746e2011-04-20 13:37:53 +03006225 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02006226 unsigned long value;
6227
6228 switch (cr) {
6229 case 0:
6230 value = kvm_read_cr0(vcpu);
6231 break;
6232 case 2:
6233 value = vcpu->arch.cr2;
6234 break;
6235 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02006236 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02006237 break;
6238 case 4:
6239 value = kvm_read_cr4(vcpu);
6240 break;
6241 case 8:
6242 value = kvm_get_cr8(vcpu);
6243 break;
6244 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03006245 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02006246 return 0;
6247 }
6248
6249 return value;
6250}
6251
Avi Kivity717746e2011-04-20 13:37:53 +03006252static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02006253{
Avi Kivity717746e2011-04-20 13:37:53 +03006254 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03006255 int res = 0;
6256
Gleb Natapov52a46612010-03-18 15:20:03 +02006257 switch (cr) {
6258 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03006259 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02006260 break;
6261 case 2:
6262 vcpu->arch.cr2 = val;
6263 break;
6264 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03006265 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02006266 break;
6267 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03006268 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02006269 break;
6270 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01006271 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02006272 break;
6273 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03006274 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03006275 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02006276 }
Gleb Natapov0f122442010-04-28 19:15:31 +03006277
6278 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02006279}
6280
Avi Kivity717746e2011-04-20 13:37:53 +03006281static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02006282{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006283 return kvm_x86_ops.get_cpl(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02006284}
6285
Avi Kivity4bff1e862011-04-20 13:37:53 +03006286static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006287{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006288 kvm_x86_ops.get_gdt(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006289}
6290
Avi Kivity4bff1e862011-04-20 13:37:53 +03006291static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03006292{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006293 kvm_x86_ops.get_idt(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03006294}
6295
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03006296static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
6297{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006298 kvm_x86_ops.set_gdt(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03006299}
6300
6301static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
6302{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006303 kvm_x86_ops.set_idt(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03006304}
6305
Avi Kivity4bff1e862011-04-20 13:37:53 +03006306static unsigned long emulator_get_cached_segment_base(
6307 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03006308{
Avi Kivity4bff1e862011-04-20 13:37:53 +03006309 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03006310}
6311
Avi Kivity1aa36612011-04-27 13:20:30 +03006312static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
6313 struct desc_struct *desc, u32 *base3,
6314 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006315{
6316 struct kvm_segment var;
6317
Avi Kivity4bff1e862011-04-20 13:37:53 +03006318 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03006319 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006320
Gleb Natapov378a8b02013-01-21 15:36:48 +02006321 if (var.unusable) {
6322 memset(desc, 0, sizeof(*desc));
Radim Krčmářf0367ee2017-05-18 19:37:30 +02006323 if (base3)
6324 *base3 = 0;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006325 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02006326 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006327
6328 if (var.g)
6329 var.limit >>= 12;
6330 set_desc_limit(desc, var.limit);
6331 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02006332#ifdef CONFIG_X86_64
6333 if (base3)
6334 *base3 = var.base >> 32;
6335#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006336 desc->type = var.type;
6337 desc->s = var.s;
6338 desc->dpl = var.dpl;
6339 desc->p = var.present;
6340 desc->avl = var.avl;
6341 desc->l = var.l;
6342 desc->d = var.db;
6343 desc->g = var.g;
6344
6345 return true;
6346}
6347
Avi Kivity1aa36612011-04-27 13:20:30 +03006348static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
6349 struct desc_struct *desc, u32 base3,
6350 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006351{
Avi Kivity4bff1e862011-04-20 13:37:53 +03006352 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006353 struct kvm_segment var;
6354
Avi Kivity1aa36612011-04-27 13:20:30 +03006355 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006356 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02006357#ifdef CONFIG_X86_64
6358 var.base |= ((u64)base3) << 32;
6359#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006360 var.limit = get_desc_limit(desc);
6361 if (desc->g)
6362 var.limit = (var.limit << 12) | 0xfff;
6363 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006364 var.dpl = desc->dpl;
6365 var.db = desc->d;
6366 var.s = desc->s;
6367 var.l = desc->l;
6368 var.g = desc->g;
6369 var.avl = desc->avl;
6370 var.present = desc->p;
6371 var.unusable = !var.present;
6372 var.padding = 0;
6373
6374 kvm_set_segment(vcpu, &var, seg);
6375 return;
6376}
6377
Avi Kivity717746e2011-04-20 13:37:53 +03006378static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
6379 u32 msr_index, u64 *pdata)
6380{
Sean Christophersonf20935d2019-09-05 14:22:54 -07006381 return kvm_get_msr(emul_to_vcpu(ctxt), msr_index, pdata);
Avi Kivity717746e2011-04-20 13:37:53 +03006382}
6383
6384static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
6385 u32 msr_index, u64 data)
6386{
Sean Christophersonf20935d2019-09-05 14:22:54 -07006387 return kvm_set_msr(emul_to_vcpu(ctxt), msr_index, data);
Avi Kivity717746e2011-04-20 13:37:53 +03006388}
6389
Paolo Bonzini64d60672015-05-07 11:36:11 +02006390static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
6391{
6392 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6393
6394 return vcpu->arch.smbase;
6395}
6396
6397static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
6398{
6399 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6400
6401 vcpu->arch.smbase = smbase;
6402}
6403
Nadav Amit67f4d422014-06-02 18:34:09 +03006404static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
6405 u32 pmc)
6406{
Like Xu98ff80f2019-10-27 18:52:40 +08006407 return kvm_pmu_is_valid_rdpmc_ecx(emul_to_vcpu(ctxt), pmc);
Nadav Amit67f4d422014-06-02 18:34:09 +03006408}
6409
Avi Kivity222d21a2011-11-10 14:57:30 +02006410static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
6411 u32 pmc, u64 *pdata)
6412{
Wei Huangc6702c92015-06-19 13:44:45 +02006413 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02006414}
6415
Avi Kivity6c3287f2011-04-20 15:43:05 +03006416static void emulator_halt(struct x86_emulate_ctxt *ctxt)
6417{
6418 emul_to_vcpu(ctxt)->arch.halt_request = 1;
6419}
6420
Avi Kivity29535382011-04-20 13:37:53 +03006421static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006422 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02006423 enum x86_intercept_stage stage)
6424{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006425 return kvm_x86_ops.check_intercept(emul_to_vcpu(ctxt), info, stage,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08006426 &ctxt->exception);
Avi Kivityc4f035c2011-04-04 12:39:22 +02006427}
6428
Yu Zhange911eb32017-08-24 20:27:52 +08006429static bool emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Sean Christophersonf91af512020-03-04 17:34:37 -08006430 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx,
6431 bool exact_only)
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01006432{
Sean Christophersonf91af512020-03-04 17:34:37 -08006433 return kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx, exact_only);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01006434}
6435
Sean Christopherson5ae78e92019-12-17 13:32:38 -08006436static bool emulator_guest_has_long_mode(struct x86_emulate_ctxt *ctxt)
6437{
6438 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_LM);
6439}
6440
6441static bool emulator_guest_has_movbe(struct x86_emulate_ctxt *ctxt)
6442{
6443 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_MOVBE);
6444}
6445
6446static bool emulator_guest_has_fxsr(struct x86_emulate_ctxt *ctxt)
6447{
6448 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_FXSR);
6449}
6450
Avi Kivitydd856ef2012-08-27 23:46:17 +03006451static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
6452{
6453 return kvm_register_read(emul_to_vcpu(ctxt), reg);
6454}
6455
6456static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
6457{
6458 kvm_register_write(emul_to_vcpu(ctxt), reg, val);
6459}
6460
Nadav Amit801806d2015-01-26 09:32:23 +02006461static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
6462{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006463 kvm_x86_ops.set_nmi_mask(emul_to_vcpu(ctxt), masked);
Nadav Amit801806d2015-01-26 09:32:23 +02006464}
6465
Ladi Prosek6ed071f2017-04-25 16:42:44 +02006466static unsigned emulator_get_hflags(struct x86_emulate_ctxt *ctxt)
6467{
6468 return emul_to_vcpu(ctxt)->arch.hflags;
6469}
6470
6471static void emulator_set_hflags(struct x86_emulate_ctxt *ctxt, unsigned emul_flags)
6472{
Sean Christophersonc5833c72019-04-02 08:03:10 -07006473 emul_to_vcpu(ctxt)->arch.hflags = emul_flags;
Ladi Prosek6ed071f2017-04-25 16:42:44 +02006474}
6475
Sean Christophersoned193212019-04-02 08:03:09 -07006476static int emulator_pre_leave_smm(struct x86_emulate_ctxt *ctxt,
6477 const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02006478{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006479 return kvm_x86_ops.pre_leave_smm(emul_to_vcpu(ctxt), smstate);
Ladi Prosek0234bf82017-10-11 16:54:40 +02006480}
6481
Sean Christophersonc5833c72019-04-02 08:03:10 -07006482static void emulator_post_leave_smm(struct x86_emulate_ctxt *ctxt)
6483{
6484 kvm_smm_changed(emul_to_vcpu(ctxt));
6485}
6486
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02006487static int emulator_set_xcr(struct x86_emulate_ctxt *ctxt, u32 index, u64 xcr)
6488{
6489 return __kvm_set_xcr(emul_to_vcpu(ctxt), index, xcr);
6490}
6491
Mathias Krause0225fb52012-08-30 01:30:16 +02006492static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03006493 .read_gpr = emulator_read_gpr,
6494 .write_gpr = emulator_write_gpr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006495 .read_std = emulator_read_std,
6496 .write_std = emulator_write_std,
Radim Krčmář7a036a62015-10-30 16:36:24 +01006497 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02006498 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01006499 .read_emulated = emulator_read_emulated,
6500 .write_emulated = emulator_write_emulated,
6501 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03006502 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006503 .pio_in_emulated = emulator_pio_in_emulated,
6504 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03006505 .get_segment = emulator_get_segment,
6506 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03006507 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006508 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03006509 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03006510 .set_gdt = emulator_set_gdt,
6511 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02006512 .get_cr = emulator_get_cr,
6513 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02006514 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03006515 .get_dr = emulator_get_dr,
6516 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02006517 .get_smbase = emulator_get_smbase,
6518 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03006519 .set_msr = emulator_set_msr,
6520 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03006521 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02006522 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03006523 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03006524 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03006525 .fix_hypercall = emulator_fix_hypercall,
Avi Kivityc4f035c2011-04-04 12:39:22 +02006526 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01006527 .get_cpuid = emulator_get_cpuid,
Sean Christopherson5ae78e92019-12-17 13:32:38 -08006528 .guest_has_long_mode = emulator_guest_has_long_mode,
6529 .guest_has_movbe = emulator_guest_has_movbe,
6530 .guest_has_fxsr = emulator_guest_has_fxsr,
Nadav Amit801806d2015-01-26 09:32:23 +02006531 .set_nmi_mask = emulator_set_nmi_mask,
Ladi Prosek6ed071f2017-04-25 16:42:44 +02006532 .get_hflags = emulator_get_hflags,
6533 .set_hflags = emulator_set_hflags,
Ladi Prosek0234bf82017-10-11 16:54:40 +02006534 .pre_leave_smm = emulator_pre_leave_smm,
Sean Christophersonc5833c72019-04-02 08:03:10 -07006535 .post_leave_smm = emulator_post_leave_smm,
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02006536 .set_xcr = emulator_set_xcr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01006537};
6538
Gleb Natapov95cb2292010-04-28 19:15:43 +03006539static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
6540{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006541 u32 int_shadow = kvm_x86_ops.get_interrupt_shadow(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03006542 /*
6543 * an sti; sti; sequence only disable interrupts for the first
6544 * instruction. So, if the last instruction, be it emulated or
6545 * not, left the system with the INT_STI flag enabled, it
6546 * means that the last instruction is an sti. We should not
6547 * leave the flag on in this case. The same goes for mov ss
6548 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02006549 if (int_shadow & mask)
6550 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01006551 if (unlikely(int_shadow || mask)) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006552 kvm_x86_ops.set_interrupt_shadow(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01006553 if (!mask)
6554 kvm_make_request(KVM_REQ_EVENT, vcpu);
6555 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03006556}
6557
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02006558static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03006559{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006560 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02006561 if (ctxt->exception.vector == PF_VECTOR)
Sean Christopherson53b3d8e2020-03-20 14:28:01 -07006562 return kvm_inject_emulated_page_fault(vcpu, &ctxt->exception);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02006563
6564 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02006565 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
6566 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03006567 else
Avi Kivityda9cb572010-11-22 17:53:21 +02006568 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02006569 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03006570}
6571
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006572static struct x86_emulate_ctxt *alloc_emulate_ctxt(struct kvm_vcpu *vcpu)
6573{
6574 struct x86_emulate_ctxt *ctxt;
6575
6576 ctxt = kmem_cache_zalloc(x86_emulator_cache, GFP_KERNEL_ACCOUNT);
6577 if (!ctxt) {
6578 pr_err("kvm: failed to allocate vcpu's emulator\n");
6579 return NULL;
6580 }
6581
6582 ctxt->vcpu = vcpu;
6583 ctxt->ops = &emulate_ops;
6584 vcpu->arch.emulate_ctxt = ctxt;
6585
6586 return ctxt;
6587}
6588
Mohammed Gamal8ec47222010-08-16 00:47:01 +03006589static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
6590{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006591 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03006592 int cs_db, cs_l;
6593
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006594 kvm_x86_ops.get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
Mohammed Gamal8ec47222010-08-16 00:47:01 +03006595
Sean Christopherson744e6992020-02-18 15:03:09 -08006596 ctxt->gpa_available = false;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09006597 ctxt->eflags = kvm_get_rflags(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02006598 ctxt->tf = (ctxt->eflags & X86_EFLAGS_TF) != 0;
6599
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09006600 ctxt->eip = kvm_rip_read(vcpu);
6601 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
6602 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03006603 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09006604 cs_db ? X86EMUL_MODE_PROT32 :
6605 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02006606 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006607 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
6608 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09006609
Avi Kivitydd856ef2012-08-27 23:46:17 +03006610 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006611 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03006612}
6613
Sean Christopherson9497e1f2019-08-27 14:40:36 -07006614void kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02006615{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006616 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02006617 int ret;
6618
6619 init_emulate_ctxt(vcpu);
6620
Avi Kivity9dac77f2011-06-01 15:34:25 +03006621 ctxt->op_bytes = 2;
6622 ctxt->ad_bytes = 2;
6623 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006624 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02006625
Sean Christopherson9497e1f2019-08-27 14:40:36 -07006626 if (ret != X86EMUL_CONTINUE) {
6627 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
6628 } else {
6629 ctxt->eip = ctxt->_eip;
6630 kvm_rip_write(vcpu, ctxt->eip);
6631 kvm_set_rflags(vcpu, ctxt->eflags);
6632 }
Mohammed Gamal63995652010-09-19 14:34:06 +02006633}
6634EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
6635
Liran Alone2366172018-03-12 13:12:49 +02006636static int handle_emulation_failure(struct kvm_vcpu *vcpu, int emulation_type)
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006637{
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006638 ++vcpu->stat.insn_emulation_fail;
6639 trace_kvm_emulate_insn_failed(vcpu);
Liran Alone2366172018-03-12 13:12:49 +02006640
Sean Christopherson42cbf062019-08-27 14:40:31 -07006641 if (emulation_type & EMULTYPE_VMWARE_GP) {
6642 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006643 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07006644 }
Liran Alone2366172018-03-12 13:12:49 +02006645
Sean Christopherson738fece2019-08-27 14:40:34 -07006646 if (emulation_type & EMULTYPE_SKIP) {
6647 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6648 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6649 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006650 return 0;
Sean Christopherson738fece2019-08-27 14:40:34 -07006651 }
6652
Sean Christopherson22da61c2019-08-27 14:40:28 -07006653 kvm_queue_exception(vcpu, UD_VECTOR);
6654
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006655 if (!is_guest_mode(vcpu) && kvm_x86_ops.get_cpl(vcpu) == 0) {
Joerg Roedelfc3a9152010-11-29 17:51:49 +01006656 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6657 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6658 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006659 return 0;
Joerg Roedelfc3a9152010-11-29 17:51:49 +01006660 }
Liran Alone2366172018-03-12 13:12:49 +02006661
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006662 return 1;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006663}
6664
Sean Christopherson736c2912019-12-06 15:57:14 -08006665static bool reexecute_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
Gleb Natapov991eebf2013-04-11 12:10:51 +03006666 bool write_fault_to_shadow_pgtable,
6667 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03006668{
Sean Christopherson736c2912019-12-06 15:57:14 -08006669 gpa_t gpa = cr2_or_gpa;
Dan Williamsba049e92016-01-15 16:56:11 -08006670 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03006671
Sean Christopherson92daa482020-02-18 15:03:08 -08006672 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Gleb Natapov991eebf2013-04-11 12:10:51 +03006673 return false;
6674
Sean Christopherson92daa482020-02-18 15:03:08 -08006675 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
6676 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07006677 return false;
6678
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02006679 if (!vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08006680 /*
6681 * Write permission should be allowed since only
6682 * write access need to be emulated.
6683 */
Sean Christopherson736c2912019-12-06 15:57:14 -08006684 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03006685
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08006686 /*
6687 * If the mapping is invalid in guest, let cpu retry
6688 * it to generate fault.
6689 */
6690 if (gpa == UNMAPPED_GVA)
6691 return true;
6692 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03006693
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08006694 /*
6695 * Do not retry the unhandleable instruction if it faults on the
6696 * readonly host memory, otherwise it will goto a infinite loop:
6697 * retry instruction -> write #PF -> emulation fail -> retry
6698 * instruction -> ...
6699 */
6700 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08006701
6702 /*
6703 * If the instruction failed on the error pfn, it can not be fixed,
6704 * report the error to userspace.
6705 */
6706 if (is_error_noslot_pfn(pfn))
6707 return false;
6708
6709 kvm_release_pfn_clean(pfn);
6710
6711 /* The instructions are well-emulated on direct mmu. */
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02006712 if (vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08006713 unsigned int indirect_shadow_pages;
6714
6715 spin_lock(&vcpu->kvm->mmu_lock);
6716 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
6717 spin_unlock(&vcpu->kvm->mmu_lock);
6718
6719 if (indirect_shadow_pages)
6720 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
6721
Gleb Natapova6f177e2010-07-08 12:41:12 +03006722 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08006723 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03006724
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08006725 /*
6726 * if emulation was due to access to shadowed page table
6727 * and it failed try to unshadow page and re-enter the
6728 * guest to let CPU execute the instruction.
6729 */
6730 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08006731
6732 /*
6733 * If the access faults on its page table, it can not
6734 * be fixed by unprotecting shadow page and it should
6735 * be reported to userspace.
6736 */
6737 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03006738}
6739
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006740static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
Sean Christopherson736c2912019-12-06 15:57:14 -08006741 gpa_t cr2_or_gpa, int emulation_type)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006742{
6743 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Sean Christopherson736c2912019-12-06 15:57:14 -08006744 unsigned long last_retry_eip, last_retry_addr, gpa = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006745
6746 last_retry_eip = vcpu->arch.last_retry_eip;
6747 last_retry_addr = vcpu->arch.last_retry_addr;
6748
6749 /*
6750 * If the emulation is caused by #PF and it is non-page_table
6751 * writing instruction, it means the VM-EXIT is caused by shadow
6752 * page protected, we can zap the shadow page and retry this
6753 * instruction directly.
6754 *
6755 * Note: if the guest uses a non-page-table modifying instruction
6756 * on the PDE that points to the instruction, then we will unmap
6757 * the instruction and go to an infinite loop. So, we cache the
6758 * last retried eip and the last fault address, if we meet the eip
6759 * and the address again, we can break out of the potential infinite
6760 * loop.
6761 */
6762 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
6763
Sean Christopherson92daa482020-02-18 15:03:08 -08006764 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006765 return false;
6766
Sean Christopherson92daa482020-02-18 15:03:08 -08006767 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
6768 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07006769 return false;
6770
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006771 if (x86_page_table_writing_insn(ctxt))
6772 return false;
6773
Sean Christopherson736c2912019-12-06 15:57:14 -08006774 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2_or_gpa)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006775 return false;
6776
6777 vcpu->arch.last_retry_eip = ctxt->eip;
Sean Christopherson736c2912019-12-06 15:57:14 -08006778 vcpu->arch.last_retry_addr = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006779
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02006780 if (!vcpu->arch.mmu->direct_map)
Sean Christopherson736c2912019-12-06 15:57:14 -08006781 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006782
Xiao Guangrong22368022013-01-13 23:44:12 +08006783 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006784
6785 return true;
6786}
6787
Gleb Natapov716d51a2012-09-03 15:24:26 +03006788static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
6789static int complete_emulated_pio(struct kvm_vcpu *vcpu);
6790
Paolo Bonzini64d60672015-05-07 11:36:11 +02006791static void kvm_smm_changed(struct kvm_vcpu *vcpu)
Paolo Bonzinia5845392015-04-01 18:18:53 +02006792{
Paolo Bonzini64d60672015-05-07 11:36:11 +02006793 if (!(vcpu->arch.hflags & HF_SMM_MASK)) {
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006794 /* This is a good place to trace that we are exiting SMM. */
6795 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, false);
6796
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006797 /* Process a latched INIT or SMI, if any. */
6798 kvm_make_request(KVM_REQ_EVENT, vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006799 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02006800
6801 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006802}
6803
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006804static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
6805 unsigned long *db)
6806{
6807 u32 dr6 = 0;
6808 int i;
6809 u32 enable, rwlen;
6810
6811 enable = dr7;
6812 rwlen = dr7 >> 16;
6813 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
6814 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
6815 dr6 |= (1 << i);
6816 return dr6;
6817}
6818
Sean Christopherson120c2c42019-08-27 14:40:29 -07006819static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02006820{
6821 struct kvm_run *kvm_run = vcpu->run;
6822
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02006823 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
6824 kvm_run->debug.arch.dr6 = DR6_BS | DR6_FIXED_1 | DR6_RTM;
Peter Xud5d260c2020-05-05 16:49:59 -04006825 kvm_run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02006826 kvm_run->debug.arch.exception = DB_VECTOR;
6827 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006828 return 0;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02006829 }
Sean Christopherson120c2c42019-08-27 14:40:29 -07006830 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BS);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006831 return 1;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02006832}
6833
Kyle Huey6affcbe2016-11-29 12:40:40 -08006834int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu)
6835{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006836 unsigned long rflags = kvm_x86_ops.get_rflags(vcpu);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02006837 int r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006838
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006839 r = kvm_x86_ops.skip_emulated_instruction(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006840 if (unlikely(!r))
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02006841 return 0;
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02006842
6843 /*
6844 * rflags is the old, "raw" value of the flags. The new value has
6845 * not been saved yet.
6846 *
6847 * This is correct even for TF set by the guest, because "the
6848 * processor will not generate this exception after the instruction
6849 * that sets the TF flag".
6850 */
6851 if (unlikely(rflags & X86_EFLAGS_TF))
Sean Christopherson120c2c42019-08-27 14:40:29 -07006852 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006853 return r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006854}
6855EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction);
6856
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006857static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
6858{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006859 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
6860 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02006861 struct kvm_run *kvm_run = vcpu->run;
6862 unsigned long eip = kvm_get_linear_rip(vcpu);
6863 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006864 vcpu->arch.guest_debug_dr7,
6865 vcpu->arch.eff_db);
6866
6867 if (dr6 != 0) {
Nadav Amit6f43ed02014-07-15 17:37:46 +03006868 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1 | DR6_RTM;
Nadav Amit82b32772014-11-02 11:54:45 +02006869 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006870 kvm_run->debug.arch.exception = DB_VECTOR;
6871 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006872 *r = 0;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006873 return true;
6874 }
6875 }
6876
Nadav Amit4161a562014-07-17 01:19:31 +03006877 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
6878 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02006879 unsigned long eip = kvm_get_linear_rip(vcpu);
6880 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006881 vcpu->arch.dr7,
6882 vcpu->arch.db);
6883
6884 if (dr6 != 0) {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04006885 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006886 *r = 1;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006887 return true;
6888 }
6889 }
6890
6891 return false;
6892}
6893
Liran Alon04789b62018-03-12 13:12:50 +02006894static bool is_vmware_backdoor_opcode(struct x86_emulate_ctxt *ctxt)
6895{
Arbel Moshe2d7921c2018-03-12 13:12:53 +02006896 switch (ctxt->opcode_len) {
6897 case 1:
6898 switch (ctxt->b) {
6899 case 0xe4: /* IN */
6900 case 0xe5:
6901 case 0xec:
6902 case 0xed:
6903 case 0xe6: /* OUT */
6904 case 0xe7:
6905 case 0xee:
6906 case 0xef:
6907 case 0x6c: /* INS */
6908 case 0x6d:
6909 case 0x6e: /* OUTS */
6910 case 0x6f:
6911 return true;
6912 }
6913 break;
6914 case 2:
6915 switch (ctxt->b) {
6916 case 0x33: /* RDPMC */
6917 return true;
6918 }
6919 break;
Liran Alon04789b62018-03-12 13:12:50 +02006920 }
6921
6922 return false;
6923}
6924
Sean Christopherson736c2912019-12-06 15:57:14 -08006925int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
6926 int emulation_type, void *insn, int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006927{
Gleb Natapov95cb2292010-04-28 19:15:43 +03006928 int r;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006929 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006930 bool writeback = true;
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07006931 bool write_fault_to_spt;
6932
6933 if (unlikely(!kvm_x86_ops.can_emulate_instruction(vcpu, insn, insn_len)))
6934 return 1;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006935
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006936 vcpu->arch.l1tf_flush_l1d = true;
6937
Xiao Guangrong93c05d32013-01-13 23:49:07 +08006938 /*
6939 * Clear write_fault_to_shadow_pgtable here to ensure it is
6940 * never reused.
6941 */
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07006942 write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08006943 vcpu->arch.write_fault_to_shadow_pgtable = false;
Avi Kivity26eef702008-07-03 14:59:22 +03006944 kvm_clear_exception_queue(vcpu);
Gleb Natapov8d7d81022011-04-12 12:36:21 +03006945
Sheng Yang571008d2008-01-02 14:49:22 +08006946 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Mohammed Gamal8ec47222010-08-16 00:47:01 +03006947 init_emulate_ctxt(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006948
6949 /*
6950 * We will reenter on the same instruction since
6951 * we do not set complete_userspace_io. This does not
6952 * handle watchpoints yet, those would be handled in
6953 * the emulate_ops.
6954 */
Vitaly Kuznetsovd391f122018-01-25 16:37:07 +01006955 if (!(emulation_type & EMULTYPE_SKIP) &&
6956 kvm_vcpu_check_breakpoint(vcpu, &r))
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006957 return r;
6958
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006959 ctxt->interruptibility = 0;
6960 ctxt->have_exception = false;
Paolo Bonzinie0ad0b42014-08-20 10:08:23 +02006961 ctxt->exception.vector = -1;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006962 ctxt->perm_ok = false;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006963
Borislav Petkovb51e9742013-09-22 16:44:52 +02006964 ctxt->ud = emulation_type & EMULTYPE_TRAP_UD;
Avi Kivity40059962011-02-01 16:32:04 +02006965
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006966 r = x86_decode_insn(ctxt, insn, insn_len);
Joerg Roedeld47f00a2010-09-10 17:30:56 +02006967
Avi Kivitye46479f2010-04-11 13:05:16 +03006968 trace_kvm_emulate_insn_start(vcpu);
Avi Kivityf2b57562007-11-18 15:17:51 +02006969 ++vcpu->stat.insn_emulation;
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09006970 if (r != EMULATION_OK) {
Sean Christophersonb4000602019-08-27 14:40:32 -07006971 if ((emulation_type & EMULTYPE_TRAP_UD) ||
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07006972 (emulation_type & EMULTYPE_TRAP_UD_FORCED)) {
6973 kvm_queue_exception(vcpu, UD_VECTOR);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006974 return 1;
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07006975 }
Sean Christopherson736c2912019-12-06 15:57:14 -08006976 if (reexecute_instruction(vcpu, cr2_or_gpa,
6977 write_fault_to_spt,
6978 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006979 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00006980 if (ctxt->have_exception) {
Jan Dakinevichc8848ce2019-08-27 13:07:08 +00006981 /*
6982 * #UD should result in just EMULATION_FAILED, and trap-like
6983 * exception should not be encountered during decode.
6984 */
6985 WARN_ON_ONCE(ctxt->exception.vector == UD_VECTOR ||
6986 exception_type(ctxt->exception.vector) == EXCPT_TRAP);
Jan Dakinevich8530a792019-08-27 13:07:09 +00006987 inject_emulated_exception(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006988 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00006989 }
Liran Alone2366172018-03-12 13:12:49 +02006990 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006991 }
6992 }
6993
Sean Christopherson42cbf062019-08-27 14:40:31 -07006994 if ((emulation_type & EMULTYPE_VMWARE_GP) &&
6995 !is_vmware_backdoor_opcode(ctxt)) {
6996 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006997 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07006998 }
Liran Alon04789b62018-03-12 13:12:50 +02006999
Sean Christopherson1957aa62019-08-27 14:40:39 -07007000 /*
7001 * Note, EMULTYPE_SKIP is intended for use *only* by vendor callbacks
7002 * for kvm_skip_emulated_instruction(). The caller is responsible for
7003 * updating interruptibility state and injecting single-step #DBs.
7004 */
Gleb Natapovba8afb62009-04-12 13:36:57 +03007005 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03007006 kvm_rip_write(vcpu, ctxt->_eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03007007 if (ctxt->eflags & X86_EFLAGS_RF)
7008 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007009 return 1;
Gleb Natapovba8afb62009-04-12 13:36:57 +03007010 }
7011
Sean Christopherson736c2912019-12-06 15:57:14 -08007012 if (retry_instruction(ctxt, cr2_or_gpa, emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007013 return 1;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007014
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007015 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03007016 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007017 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
7018 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03007019 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007020 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03007021
Gleb Natapov5cd21912010-03-18 15:20:26 +02007022restart:
Sean Christopherson92daa482020-02-18 15:03:08 -08007023 if (emulation_type & EMULTYPE_PF) {
7024 /* Save the faulting GPA (cr2) in the address field */
7025 ctxt->exception.address = cr2_or_gpa;
7026
7027 /* With shadow page tables, cr2 contains a GVA or nGPA. */
7028 if (vcpu->arch.mmu->direct_map) {
Sean Christopherson744e6992020-02-18 15:03:09 -08007029 ctxt->gpa_available = true;
7030 ctxt->gpa_val = cr2_or_gpa;
Sean Christopherson92daa482020-02-18 15:03:08 -08007031 }
7032 } else {
7033 /* Sanitize the address out of an abundance of paranoia. */
7034 ctxt->exception.address = 0;
7035 }
Tom Lendacky0f89b202016-12-14 14:59:23 -05007036
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007037 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03007038
Joerg Roedel775fde82011-04-04 12:39:24 +02007039 if (r == EMULATION_INTERCEPTED)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007040 return 1;
Joerg Roedel775fde82011-04-04 12:39:24 +02007041
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03007042 if (r == EMULATION_FAILED) {
Sean Christopherson736c2912019-12-06 15:57:14 -08007043 if (reexecute_instruction(vcpu, cr2_or_gpa, write_fault_to_spt,
Gleb Natapov991eebf2013-04-11 12:10:51 +03007044 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007045 return 1;
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03007046
Liran Alone2366172018-03-12 13:12:49 +02007047 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007048 }
7049
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007050 if (ctxt->have_exception) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007051 r = 1;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007052 if (inject_emulated_exception(vcpu))
7053 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03007054 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02007055 if (!vcpu->arch.pio.in) {
7056 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03007057 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02007058 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007059 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03007060 vcpu->arch.complete_userspace_io = complete_emulated_pio;
7061 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007062 r = 0;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007063 } else if (vcpu->mmio_needed) {
Sean Christophersonbc8a0aa2019-08-27 14:40:27 -07007064 ++vcpu->stat.mmio_exits;
7065
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007066 if (!vcpu->mmio_is_write)
7067 writeback = false;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007068 r = 0;
Gleb Natapov716d51a2012-09-03 15:24:26 +03007069 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007070 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03007071 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03007072 else
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007073 r = 1;
Gleb Natapove85d28f2010-07-29 15:11:52 +03007074
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007075 if (writeback) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007076 unsigned long rflags = kvm_x86_ops.get_rflags(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007077 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007078 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Nadav Amit38827db2014-11-02 11:54:53 +02007079 if (!ctxt->have_exception ||
Sean Christopherson75ee23b2019-08-23 13:55:44 -07007080 exception_type(ctxt->exception.vector) == EXCPT_TRAP) {
7081 kvm_rip_write(vcpu, ctxt->eip);
Felipe Franciosi384dea12020-05-19 08:11:22 +00007082 if (r && (ctxt->tf || (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)))
Sean Christopherson120c2c42019-08-27 14:40:29 -07007083 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007084 if (kvm_x86_ops.update_emulated_instruction)
7085 kvm_x86_ops.update_emulated_instruction(vcpu);
Nadav Amit38827db2014-11-02 11:54:53 +02007086 __kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson75ee23b2019-08-23 13:55:44 -07007087 }
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007088
7089 /*
7090 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
7091 * do nothing, and it will be requested again as soon as
7092 * the shadow expires. But we still need to check here,
7093 * because POPF has no interrupt shadow.
7094 */
7095 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
7096 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007097 } else
7098 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03007099
Gleb Natapove85d28f2010-07-29 15:11:52 +03007100 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01007101}
Sean Christophersonc60658d2018-08-23 13:56:53 -07007102
7103int kvm_emulate_instruction(struct kvm_vcpu *vcpu, int emulation_type)
7104{
7105 return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
7106}
7107EXPORT_SYMBOL_GPL(kvm_emulate_instruction);
7108
7109int kvm_emulate_instruction_from_buffer(struct kvm_vcpu *vcpu,
7110 void *insn, int insn_len)
7111{
7112 return x86_emulate_instruction(vcpu, 0, 0, insn, insn_len);
7113}
7114EXPORT_SYMBOL_GPL(kvm_emulate_instruction_from_buffer);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007115
Sean Christopherson8764ed52019-04-29 07:04:15 -07007116static int complete_fast_pio_out_port_0x7e(struct kvm_vcpu *vcpu)
7117{
7118 vcpu->arch.pio.count = 0;
7119 return 1;
7120}
7121
Sean Christopherson45def772019-03-11 20:01:05 -07007122static int complete_fast_pio_out(struct kvm_vcpu *vcpu)
7123{
7124 vcpu->arch.pio.count = 0;
7125
7126 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip)))
7127 return 1;
7128
7129 return kvm_skip_emulated_instruction(vcpu);
7130}
7131
Sean Christophersondca7f122018-03-08 08:57:27 -08007132static int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size,
7133 unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01007134{
Sean Christophersonde3cd112019-04-30 10:36:17 -07007135 unsigned long val = kvm_rax_read(vcpu);
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007136 int ret = emulator_pio_out(vcpu, size, port, &val, 1);
7137
Sean Christopherson8764ed52019-04-29 07:04:15 -07007138 if (ret)
7139 return ret;
Sean Christopherson45def772019-03-11 20:01:05 -07007140
Sean Christopherson8764ed52019-04-29 07:04:15 -07007141 /*
7142 * Workaround userspace that relies on old KVM behavior of %rip being
7143 * incremented prior to exiting to userspace to handle "OUT 0x7e".
7144 */
7145 if (port == 0x7e &&
7146 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_OUT_7E_INC_RIP)) {
7147 vcpu->arch.complete_userspace_io =
7148 complete_fast_pio_out_port_0x7e;
7149 kvm_skip_emulated_instruction(vcpu);
7150 } else {
Sean Christopherson45def772019-03-11 20:01:05 -07007151 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
7152 vcpu->arch.complete_userspace_io = complete_fast_pio_out;
7153 }
Sean Christopherson8764ed52019-04-29 07:04:15 -07007154 return 0;
Carsten Ottede7d7892007-10-30 18:44:25 +01007155}
Carsten Ottede7d7892007-10-30 18:44:25 +01007156
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007157static int complete_fast_pio_in(struct kvm_vcpu *vcpu)
7158{
7159 unsigned long val;
7160
7161 /* We should only ever be called with arch.pio.count equal to 1 */
7162 BUG_ON(vcpu->arch.pio.count != 1);
7163
Sean Christopherson45def772019-03-11 20:01:05 -07007164 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip))) {
7165 vcpu->arch.pio.count = 0;
7166 return 1;
7167 }
7168
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007169 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07007170 val = (vcpu->arch.pio.size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007171
7172 /*
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007173 * Since vcpu->arch.pio.count == 1 let emulator_pio_in perform
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007174 * the copy and tracing
7175 */
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007176 emulator_pio_in(vcpu, vcpu->arch.pio.size, vcpu->arch.pio.port, &val, 1);
Sean Christophersonde3cd112019-04-30 10:36:17 -07007177 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007178
Sean Christopherson45def772019-03-11 20:01:05 -07007179 return kvm_skip_emulated_instruction(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007180}
7181
Sean Christophersondca7f122018-03-08 08:57:27 -08007182static int kvm_fast_pio_in(struct kvm_vcpu *vcpu, int size,
7183 unsigned short port)
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007184{
7185 unsigned long val;
7186 int ret;
7187
7188 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07007189 val = (size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007190
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007191 ret = emulator_pio_in(vcpu, size, port, &val, 1);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007192 if (ret) {
Sean Christophersonde3cd112019-04-30 10:36:17 -07007193 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007194 return ret;
7195 }
7196
Sean Christopherson45def772019-03-11 20:01:05 -07007197 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007198 vcpu->arch.complete_userspace_io = complete_fast_pio_in;
7199
7200 return 0;
7201}
Sean Christophersondca7f122018-03-08 08:57:27 -08007202
7203int kvm_fast_pio(struct kvm_vcpu *vcpu, int size, unsigned short port, int in)
7204{
Sean Christopherson45def772019-03-11 20:01:05 -07007205 int ret;
Sean Christophersondca7f122018-03-08 08:57:27 -08007206
Sean Christophersondca7f122018-03-08 08:57:27 -08007207 if (in)
Sean Christopherson45def772019-03-11 20:01:05 -07007208 ret = kvm_fast_pio_in(vcpu, size, port);
Sean Christophersondca7f122018-03-08 08:57:27 -08007209 else
Sean Christopherson45def772019-03-11 20:01:05 -07007210 ret = kvm_fast_pio_out(vcpu, size, port);
7211 return ret && kvm_skip_emulated_instruction(vcpu);
Sean Christophersondca7f122018-03-08 08:57:27 -08007212}
7213EXPORT_SYMBOL_GPL(kvm_fast_pio);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007214
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00007215static int kvmclock_cpu_down_prep(unsigned int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007216{
Tejun Heo0a3aee02010-12-18 16:28:55 +01007217 __this_cpu_write(cpu_tsc_khz, 0);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00007218 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10007219}
7220
7221static void tsc_khz_changed(void *data)
7222{
7223 struct cpufreq_freqs *freq = data;
7224 unsigned long khz = 0;
7225
7226 if (data)
7227 khz = freq->new;
7228 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
7229 khz = cpufreq_quick_get(raw_smp_processor_id());
7230 if (!khz)
7231 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01007232 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007233}
7234
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01007235#ifdef CONFIG_X86_64
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007236static void kvm_hyperv_tsc_notifier(void)
7237{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007238 struct kvm *kvm;
7239 struct kvm_vcpu *vcpu;
7240 int cpu;
7241
Junaid Shahid0d9ce162019-01-03 17:14:28 -08007242 mutex_lock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007243 list_for_each_entry(kvm, &vm_list, vm_list)
7244 kvm_make_mclock_inprogress_request(kvm);
7245
7246 hyperv_stop_tsc_emulation();
7247
7248 /* TSC frequency always matches when on Hyper-V */
7249 for_each_present_cpu(cpu)
7250 per_cpu(cpu_tsc_khz, cpu) = tsc_khz;
7251 kvm_max_guest_tsc_khz = tsc_khz;
7252
7253 list_for_each_entry(kvm, &vm_list, vm_list) {
7254 struct kvm_arch *ka = &kvm->arch;
7255
7256 spin_lock(&ka->pvclock_gtod_sync_lock);
7257
7258 pvclock_update_vm_gtod_copy(kvm);
7259
7260 kvm_for_each_vcpu(cpu, vcpu, kvm)
7261 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
7262
7263 kvm_for_each_vcpu(cpu, vcpu, kvm)
7264 kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu);
7265
7266 spin_unlock(&ka->pvclock_gtod_sync_lock);
7267 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08007268 mutex_unlock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007269}
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01007270#endif
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007271
Viresh Kumardf240142019-04-29 15:03:58 +05307272static void __kvmclock_cpufreq_notifier(struct cpufreq_freqs *freq, int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007273{
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007274 struct kvm *kvm;
7275 struct kvm_vcpu *vcpu;
7276 int i, send_ipi = 0;
7277
Zachary Amsden8cfdc002010-08-19 22:07:21 -10007278 /*
7279 * We allow guests to temporarily run on slowing clocks,
7280 * provided we notify them after, or to run on accelerating
7281 * clocks, provided we notify them before. Thus time never
7282 * goes backwards.
7283 *
7284 * However, we have a problem. We can't atomically update
7285 * the frequency of a given CPU from this function; it is
7286 * merely a notifier, which can be called from any CPU.
7287 * Changing the TSC frequency at arbitrary points in time
7288 * requires a recomputation of local variables related to
7289 * the TSC for each VCPU. We must flag these local variables
7290 * to be updated and be sure the update takes place with the
7291 * new frequency before any guests proceed.
7292 *
7293 * Unfortunately, the combination of hotplug CPU and frequency
7294 * change creates an intractable locking scenario; the order
7295 * of when these callouts happen is undefined with respect to
7296 * CPU hotplug, and they can race with each other. As such,
7297 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
7298 * undefined; you can actually have a CPU frequency change take
7299 * place in between the computation of X and the setting of the
7300 * variable. To protect against this problem, all updates of
7301 * the per_cpu tsc_khz variable are done in an interrupt
7302 * protected IPI, and all callers wishing to update the value
7303 * must wait for a synchronous IPI to complete (which is trivial
7304 * if the caller is on the CPU already). This establishes the
7305 * necessary total order on variable updates.
7306 *
7307 * Note that because a guest time update may take place
7308 * anytime after the setting of the VCPU's request bit, the
7309 * correct TSC value must be set before the request. However,
7310 * to ensure the update actually makes it to any guest which
7311 * starts running in hardware virtualization between the set
7312 * and the acquisition of the spinlock, we must also ping the
7313 * CPU after setting the request bit.
7314 *
7315 */
7316
Viresh Kumardf240142019-04-29 15:03:58 +05307317 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007318
Junaid Shahid0d9ce162019-01-03 17:14:28 -08007319 mutex_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007320 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007321 kvm_for_each_vcpu(i, vcpu, kvm) {
Viresh Kumardf240142019-04-29 15:03:58 +05307322 if (vcpu->cpu != cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007323 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10007324 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08007325 if (vcpu->cpu != raw_smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10007326 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007327 }
7328 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08007329 mutex_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007330
7331 if (freq->old < freq->new && send_ipi) {
7332 /*
7333 * We upscale the frequency. Must make the guest
7334 * doesn't see old kvmclock values while running with
7335 * the new frequency, otherwise we risk the guest sees
7336 * time go backwards.
7337 *
7338 * In case we update the frequency for another cpu
7339 * (which might be in guest context) send an interrupt
7340 * to kick the cpu out of guest context. Next time
7341 * guest context is entered kvmclock will be updated,
7342 * so the guest will not see stale values.
7343 */
Viresh Kumardf240142019-04-29 15:03:58 +05307344 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007345 }
Viresh Kumardf240142019-04-29 15:03:58 +05307346}
7347
7348static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
7349 void *data)
7350{
7351 struct cpufreq_freqs *freq = data;
7352 int cpu;
7353
7354 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
7355 return 0;
7356 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
7357 return 0;
7358
7359 for_each_cpu(cpu, freq->policy->cpus)
7360 __kvmclock_cpufreq_notifier(freq, cpu);
7361
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007362 return 0;
7363}
7364
7365static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10007366 .notifier_call = kvmclock_cpufreq_notifier
7367};
7368
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00007369static int kvmclock_cpu_online(unsigned int cpu)
Zachary Amsden8cfdc002010-08-19 22:07:21 -10007370{
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00007371 tsc_khz_changed(NULL);
7372 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10007373}
7374
Zachary Amsdenb820cc02009-09-29 11:38:34 -10007375static void kvm_timer_init(void)
7376{
Zachary Amsdenc2855452010-09-18 14:38:15 -10007377 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05307378
Zachary Amsdenb820cc02009-09-29 11:38:34 -10007379 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10007380#ifdef CONFIG_CPU_FREQ
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01007381 struct cpufreq_policy *policy;
Borislav Petkov758f5882016-09-04 19:13:57 +02007382 int cpu;
7383
Avi Kivity3e26f232010-12-16 12:16:34 +02007384 cpu = get_cpu();
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01007385 policy = cpufreq_cpu_get(cpu);
Wanpeng Li9a119972020-03-02 15:15:36 +08007386 if (policy) {
7387 if (policy->cpuinfo.max_freq)
7388 max_tsc_khz = policy->cpuinfo.max_freq;
7389 cpufreq_cpu_put(policy);
7390 }
Avi Kivity3e26f232010-12-16 12:16:34 +02007391 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10007392#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10007393 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
7394 CPUFREQ_TRANSITION_NOTIFIER);
7395 }
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05307396
Thomas Gleixner73c1b412016-12-21 20:19:54 +01007397 cpuhp_setup_state(CPUHP_AP_X86_KVM_CLK_ONLINE, "x86/kvm/clk:online",
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00007398 kvmclock_cpu_online, kvmclock_cpu_down_prep);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10007399}
7400
Andi Kleendd60d212017-07-25 17:20:32 -07007401DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
7402EXPORT_PER_CPU_SYMBOL_GPL(current_vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007403
Gleb Natapovf5132b02011-11-10 14:57:22 +02007404int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007405{
Alex,Shi086c9852011-10-20 15:34:01 +08007406 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007407}
7408
7409static int kvm_is_user_mode(void)
7410{
7411 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08007412
Alex,Shi086c9852011-10-20 15:34:01 +08007413 if (__this_cpu_read(current_vcpu))
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007414 user_mode = kvm_x86_ops.get_cpl(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08007415
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007416 return user_mode != 0;
7417}
7418
7419static unsigned long kvm_get_guest_ip(void)
7420{
7421 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08007422
Alex,Shi086c9852011-10-20 15:34:01 +08007423 if (__this_cpu_read(current_vcpu))
7424 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08007425
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007426 return ip;
7427}
7428
Luwei Kang8479e042019-02-18 19:26:07 -05007429static void kvm_handle_intel_pt_intr(void)
7430{
7431 struct kvm_vcpu *vcpu = __this_cpu_read(current_vcpu);
7432
7433 kvm_make_request(KVM_REQ_PMI, vcpu);
7434 __set_bit(MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI_BIT,
7435 (unsigned long *)&vcpu->arch.pmu.global_status);
7436}
7437
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007438static struct perf_guest_info_callbacks kvm_guest_cbs = {
7439 .is_in_guest = kvm_is_in_guest,
7440 .is_user_mode = kvm_is_user_mode,
7441 .get_guest_ip = kvm_get_guest_ip,
Luwei Kang8479e042019-02-18 19:26:07 -05007442 .handle_intel_pt_intr = kvm_handle_intel_pt_intr,
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007443};
7444
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02007445#ifdef CONFIG_X86_64
7446static void pvclock_gtod_update_fn(struct work_struct *work)
7447{
Marcelo Tosattid8281992012-11-27 23:29:01 -02007448 struct kvm *kvm;
7449
7450 struct kvm_vcpu *vcpu;
7451 int i;
7452
Junaid Shahid0d9ce162019-01-03 17:14:28 -08007453 mutex_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02007454 list_for_each_entry(kvm, &vm_list, vm_list)
7455 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08007456 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02007457 atomic_set(&kvm_guest_has_master_clock, 0);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08007458 mutex_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02007459}
7460
7461static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
7462
7463/*
7464 * Notification about pvclock gtod data update.
7465 */
7466static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
7467 void *priv)
7468{
7469 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
7470 struct timekeeper *tk = priv;
7471
7472 update_pvclock_gtod(tk);
7473
7474 /* disable master clock if host does not trust, or does not
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01007475 * use, TSC based clocksource.
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02007476 */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01007477 if (!gtod_is_based_on_tsc(gtod->clock.vclock_mode) &&
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02007478 atomic_read(&kvm_guest_has_master_clock) != 0)
7479 queue_work(system_long_wq, &pvclock_gtod_work);
7480
7481 return 0;
7482}
7483
7484static struct notifier_block pvclock_gtod_notifier = {
7485 .notifier_call = pvclock_gtod_notify,
7486};
7487#endif
7488
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007489int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02007490{
Sean Christophersond008dfd2020-03-21 13:25:56 -07007491 struct kvm_x86_init_ops *ops = opaque;
Zachary Amsdenb820cc02009-09-29 11:38:34 -10007492 int r;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007493
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007494 if (kvm_x86_ops.hardware_enable) {
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007495 printk(KERN_ERR "kvm: already loaded the other module\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08007496 r = -EEXIST;
7497 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007498 }
7499
7500 if (!ops->cpu_has_kvm_support()) {
Erwan Veluef935c252020-02-27 19:00:46 +01007501 pr_err_ratelimited("kvm: no hardware support\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08007502 r = -EOPNOTSUPP;
7503 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007504 }
7505 if (ops->disabled_by_bios()) {
Erwan Veluef935c252020-02-27 19:00:46 +01007506 pr_err_ratelimited("kvm: disabled by bios\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08007507 r = -EOPNOTSUPP;
7508 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007509 }
7510
Marc Orrb666a4b2018-11-06 14:53:56 -08007511 /*
7512 * KVM explicitly assumes that the guest has an FPU and
7513 * FXSAVE/FXRSTOR. For example, the KVM_GET_FPU explicitly casts the
7514 * vCPU's FPU state as a fxregs_state struct.
7515 */
7516 if (!boot_cpu_has(X86_FEATURE_FPU) || !boot_cpu_has(X86_FEATURE_FXSR)) {
7517 printk(KERN_ERR "kvm: inadequate fpu\n");
7518 r = -EOPNOTSUPP;
7519 goto out;
7520 }
7521
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02007522 r = -ENOMEM;
Paolo Bonzinied8e4812018-12-21 11:25:59 +01007523 x86_fpu_cache = kmem_cache_create("x86_fpu", sizeof(struct fpu),
Marc Orrb666a4b2018-11-06 14:53:56 -08007524 __alignof__(struct fpu), SLAB_ACCOUNT,
7525 NULL);
7526 if (!x86_fpu_cache) {
7527 printk(KERN_ERR "kvm: failed to allocate cache for x86 fpu\n");
7528 goto out;
7529 }
7530
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007531 x86_emulator_cache = kvm_alloc_emulator_cache();
7532 if (!x86_emulator_cache) {
7533 pr_err("kvm: failed to allocate cache for x86 emulator\n");
7534 goto out_free_x86_fpu_cache;
7535 }
7536
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07007537 user_return_msrs = alloc_percpu(struct kvm_user_return_msrs);
7538 if (!user_return_msrs) {
7539 printk(KERN_ERR "kvm: failed to allocate percpu kvm_user_return_msrs\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007540 goto out_free_x86_emulator_cache;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02007541 }
7542
Avi Kivity97db56c2008-01-13 13:23:56 +02007543 r = kvm_mmu_module_init();
7544 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02007545 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02007546
Sheng Yang7b523452008-04-25 21:13:50 +08007547 kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK,
Bandan Dasffb128c2016-07-12 18:18:49 -04007548 PT_DIRTY_MASK, PT64_NX_MASK, 0,
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05007549 PT_PRESENT_MASK, 0, sme_me_mask);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10007550 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007551
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007552 perf_register_guest_info_callbacks(&kvm_guest_cbs);
7553
Sean Christophersoncfc48182020-03-02 15:56:23 -08007554 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +08007555 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
Sean Christophersoncfc48182020-03-02 15:56:23 -08007556 supported_xcr0 = host_xcr0 & KVM_SUPPORTED_XCR0;
7557 }
Dexuan Cui2acf9232010-06-10 11:27:12 +08007558
Gleb Natapovc5cc4212012-08-05 15:58:30 +03007559 kvm_lapic_init();
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08007560 if (pi_inject_timer == -1)
7561 pi_inject_timer = housekeeping_enabled(HK_FLAG_TIMER);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02007562#ifdef CONFIG_X86_64
7563 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007564
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01007565 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007566 set_hv_tscchange_cb(kvm_hyperv_tsc_notifier);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02007567#endif
7568
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007569 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08007570
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02007571out_free_percpu:
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07007572 free_percpu(user_return_msrs);
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007573out_free_x86_emulator_cache:
7574 kmem_cache_destroy(x86_emulator_cache);
Marc Orrb666a4b2018-11-06 14:53:56 -08007575out_free_x86_fpu_cache:
7576 kmem_cache_destroy(x86_fpu_cache);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08007577out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08007578 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02007579}
Hollis Blanchard8776e512007-10-31 17:24:24 -05007580
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007581void kvm_arch_exit(void)
7582{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007583#ifdef CONFIG_X86_64
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01007584 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007585 clear_hv_tscchange_cb();
7586#endif
David Matlackcef84c32016-12-16 14:30:36 -08007587 kvm_lapic_exit();
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007588 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
7589
Jan Kiszka888d2562009-04-17 19:24:58 +02007590 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
7591 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
7592 CPUFREQ_TRANSITION_NOTIFIER);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00007593 cpuhp_remove_state_nocalls(CPUHP_AP_X86_KVM_CLK_ONLINE);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02007594#ifdef CONFIG_X86_64
7595 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
7596#endif
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007597 kvm_x86_ops.hardware_enable = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08007598 kvm_mmu_module_exit();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07007599 free_percpu(user_return_msrs);
Marc Orrb666a4b2018-11-06 14:53:56 -08007600 kmem_cache_destroy(x86_fpu_cache);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08007601}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007602
Joel Schopp5cb56052015-03-02 13:43:31 -06007603int kvm_vcpu_halt(struct kvm_vcpu *vcpu)
Hollis Blanchard8776e512007-10-31 17:24:24 -05007604{
7605 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02007606 if (lapic_in_kernel(vcpu)) {
Avi Kivitya4535292008-04-13 17:54:35 +03007607 vcpu->arch.mp_state = KVM_MP_STATE_HALTED;
Hollis Blanchard8776e512007-10-31 17:24:24 -05007608 return 1;
7609 } else {
7610 vcpu->run->exit_reason = KVM_EXIT_HLT;
7611 return 0;
7612 }
7613}
Joel Schopp5cb56052015-03-02 13:43:31 -06007614EXPORT_SYMBOL_GPL(kvm_vcpu_halt);
7615
7616int kvm_emulate_halt(struct kvm_vcpu *vcpu)
7617{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007618 int ret = kvm_skip_emulated_instruction(vcpu);
7619 /*
7620 * TODO: we might be squashing a GUESTDBG_SINGLESTEP-triggered
7621 * KVM_EXIT_DEBUG here.
7622 */
7623 return kvm_vcpu_halt(vcpu) && ret;
Joel Schopp5cb56052015-03-02 13:43:31 -06007624}
Hollis Blanchard8776e512007-10-31 17:24:24 -05007625EXPORT_SYMBOL_GPL(kvm_emulate_halt);
7626
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01007627#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02007628static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
7629 unsigned long clock_type)
7630{
7631 struct kvm_clock_pairing clock_pairing;
Arnd Bergmann899a31f2018-04-23 10:04:26 +02007632 struct timespec64 ts;
Paolo Bonzini80fbd892017-02-08 10:57:24 +01007633 u64 cycle;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02007634 int ret;
7635
7636 if (clock_type != KVM_CLOCK_PAIRING_WALLCLOCK)
7637 return -KVM_EOPNOTSUPP;
7638
7639 if (kvm_get_walltime_and_clockread(&ts, &cycle) == false)
7640 return -KVM_EOPNOTSUPP;
7641
7642 clock_pairing.sec = ts.tv_sec;
7643 clock_pairing.nsec = ts.tv_nsec;
7644 clock_pairing.tsc = kvm_read_l1_tsc(vcpu, cycle);
7645 clock_pairing.flags = 0;
Liran Alonbcbfbd82018-11-08 00:43:06 +02007646 memset(&clock_pairing.pad, 0, sizeof(clock_pairing.pad));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02007647
7648 ret = 0;
7649 if (kvm_write_guest(vcpu->kvm, paddr, &clock_pairing,
7650 sizeof(struct kvm_clock_pairing)))
7651 ret = -KVM_EFAULT;
7652
7653 return ret;
7654}
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01007655#endif
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02007656
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307657/*
7658 * kvm_pv_kick_cpu_op: Kick a vcpu.
7659 *
7660 * @apicid - apicid of vcpu to be kicked.
7661 */
7662static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
7663{
Raghavendra K T24d21662013-08-26 14:18:35 +05307664 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307665
Peter Xu150a84f2019-12-04 20:07:21 +01007666 lapic_irq.shorthand = APIC_DEST_NOSHORT;
Peter Xuc96001c2019-12-04 20:07:18 +01007667 lapic_irq.dest_mode = APIC_DEST_PHYSICAL;
Longpeng(Mike)ebd28fc2017-08-02 11:20:51 +08007668 lapic_irq.level = 0;
Raghavendra K T24d21662013-08-26 14:18:35 +05307669 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06007670 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307671
Raghavendra K T24d21662013-08-26 14:18:35 +05307672 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08007673 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307674}
7675
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06007676bool kvm_apicv_activated(struct kvm *kvm)
7677{
7678 return (READ_ONCE(kvm->arch.apicv_inhibit_reasons) == 0);
7679}
7680EXPORT_SYMBOL_GPL(kvm_apicv_activated);
7681
7682void kvm_apicv_init(struct kvm *kvm, bool enable)
7683{
7684 if (enable)
7685 clear_bit(APICV_INHIBIT_REASON_DISABLE,
7686 &kvm->arch.apicv_inhibit_reasons);
7687 else
7688 set_bit(APICV_INHIBIT_REASON_DISABLE,
7689 &kvm->arch.apicv_inhibit_reasons);
7690}
7691EXPORT_SYMBOL_GPL(kvm_apicv_init);
7692
Wanpeng Li71506292019-06-11 20:23:49 +08007693static void kvm_sched_yield(struct kvm *kvm, unsigned long dest_id)
7694{
7695 struct kvm_vcpu *target = NULL;
7696 struct kvm_apic_map *map;
7697
7698 rcu_read_lock();
7699 map = rcu_dereference(kvm->arch.apic_map);
7700
7701 if (likely(map) && dest_id <= map->max_apic_id && map->phys_map[dest_id])
7702 target = map->phys_map[dest_id]->vcpu;
7703
7704 rcu_read_unlock();
7705
Wanpeng Li266e85a2019-07-24 17:43:13 +08007706 if (target && READ_ONCE(target->ready))
Wanpeng Li71506292019-06-11 20:23:49 +08007707 kvm_vcpu_yield_to(target);
7708}
7709
Hollis Blanchard8776e512007-10-31 17:24:24 -05007710int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
7711{
7712 unsigned long nr, a0, a1, a2, a3, ret;
Marian Rotariu6356ee02018-04-30 12:23:01 +03007713 int op_64_bit;
Hollis Blanchard8776e512007-10-31 17:24:24 -05007714
Radim Krčmář696ca772018-05-24 17:50:56 +02007715 if (kvm_hv_hypercall_enabled(vcpu->kvm))
7716 return kvm_hv_hypercall(vcpu);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02007717
Sean Christophersonde3cd112019-04-30 10:36:17 -07007718 nr = kvm_rax_read(vcpu);
7719 a0 = kvm_rbx_read(vcpu);
7720 a1 = kvm_rcx_read(vcpu);
7721 a2 = kvm_rdx_read(vcpu);
7722 a3 = kvm_rsi_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05007723
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007724 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04007725
Nadav Amita449c7a2014-06-18 17:19:24 +03007726 op_64_bit = is_64_bit_mode(vcpu);
7727 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05007728 nr &= 0xFFFFFFFF;
7729 a0 &= 0xFFFFFFFF;
7730 a1 &= 0xFFFFFFFF;
7731 a2 &= 0xFFFFFFFF;
7732 a3 &= 0xFFFFFFFF;
7733 }
7734
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007735 if (kvm_x86_ops.get_cpl(vcpu) != 0) {
Jan Kiszka07708c42009-08-03 18:43:28 +02007736 ret = -KVM_EPERM;
Radim Krčmář696ca772018-05-24 17:50:56 +02007737 goto out;
Jan Kiszka07708c42009-08-03 18:43:28 +02007738 }
7739
Hollis Blanchard8776e512007-10-31 17:24:24 -05007740 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02007741 case KVM_HC_VAPIC_POLL_IRQ:
7742 ret = 0;
7743 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307744 case KVM_HC_KICK_CPU:
7745 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
Wanpeng Li266e85a2019-07-24 17:43:13 +08007746 kvm_sched_yield(vcpu->kvm, a1);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307747 ret = 0;
7748 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01007749#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02007750 case KVM_HC_CLOCK_PAIRING:
7751 ret = kvm_pv_clock_pairing(vcpu, a0, a1);
7752 break;
Sean Christopherson1ed199a2019-01-23 09:22:39 -08007753#endif
Wanpeng Li4180bf12018-07-23 14:39:54 +08007754 case KVM_HC_SEND_IPI:
7755 ret = kvm_pv_send_ipi(vcpu->kvm, a0, a1, a2, a3, op_64_bit);
7756 break;
Wanpeng Li71506292019-06-11 20:23:49 +08007757 case KVM_HC_SCHED_YIELD:
7758 kvm_sched_yield(vcpu->kvm, a0);
7759 ret = 0;
7760 break;
Hollis Blanchard8776e512007-10-31 17:24:24 -05007761 default:
7762 ret = -KVM_ENOSYS;
7763 break;
7764 }
Radim Krčmář696ca772018-05-24 17:50:56 +02007765out:
Nadav Amita449c7a2014-06-18 17:19:24 +03007766 if (!op_64_bit)
7767 ret = (u32)ret;
Sean Christophersonde3cd112019-04-30 10:36:17 -07007768 kvm_rax_write(vcpu, ret);
Marian Rotariu6356ee02018-04-30 12:23:01 +03007769
Amit Shahf11c3a82008-02-21 01:00:30 +05307770 ++vcpu->stat.hypercalls;
Marian Rotariu6356ee02018-04-30 12:23:01 +03007771 return kvm_skip_emulated_instruction(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05007772}
7773EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
7774
Jan Kiszkab6785de2012-09-20 07:43:17 +02007775static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05007776{
Avi Kivityd6aa1002011-04-20 15:47:13 +03007777 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05007778 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007779 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05007780
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007781 kvm_x86_ops.patch_hypercall(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05007782
Dmitry Vyukovce2e8522017-01-17 14:51:04 +01007783 return emulator_write_emulated(ctxt, rip, instruction, 3,
7784 &ctxt->exception);
Hollis Blanchard8776e512007-10-31 17:24:24 -05007785}
7786
Avi Kivity851ba692009-08-24 11:10:17 +03007787static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007788{
Matt Gingell782d4222015-11-16 15:26:00 -08007789 return vcpu->run->request_interrupt_window &&
7790 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007791}
7792
Avi Kivity851ba692009-08-24 11:10:17 +03007793static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007794{
Avi Kivity851ba692009-08-24 11:10:17 +03007795 struct kvm_run *kvm_run = vcpu->run;
7796
Jan Kiszka91586a32009-10-05 13:07:21 +02007797 kvm_run->if_flag = (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
Paolo Bonzinif0778252015-04-01 15:06:40 +02007798 kvm_run->flags = is_smm(vcpu) ? KVM_RUN_X86_SMM : 0;
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02007799 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007800 kvm_run->apic_base = kvm_get_apic_base(vcpu);
Matt Gingell127a4572015-11-17 17:32:05 +01007801 kvm_run->ready_for_interrupt_injection =
7802 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08007803 kvm_vcpu_ready_for_interrupt_injection(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007804}
7805
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007806static void update_cr8_intercept(struct kvm_vcpu *vcpu)
7807{
7808 int max_irr, tpr;
7809
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007810 if (!kvm_x86_ops.update_cr8_intercept)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007811 return;
7812
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01007813 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03007814 return;
7815
Andrey Smetanind62caab2015-11-10 15:36:33 +03007816 if (vcpu->arch.apicv_active)
7817 return;
7818
Gleb Natapov8db3baa2009-05-11 13:35:54 +03007819 if (!vcpu->arch.apic->vapic_addr)
7820 max_irr = kvm_lapic_find_highest_irr(vcpu);
7821 else
7822 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007823
7824 if (max_irr != -1)
7825 max_irr >>= 4;
7826
7827 tpr = kvm_lapic_get_cr8(vcpu);
7828
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007829 kvm_x86_ops.update_cr8_intercept(vcpu, tpr, max_irr);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007830}
7831
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007832static void inject_pending_event(struct kvm_vcpu *vcpu, bool *req_immediate_exit)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007833{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01007834 int r;
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04007835 bool can_inject = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +01007836
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007837 /* try to reinject previous events if any */
Wanpeng Li664f8e22017-08-24 03:35:09 -07007838
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04007839 if (vcpu->arch.exception.injected) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007840 kvm_x86_ops.queue_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04007841 can_inject = false;
7842 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07007843 /*
Liran Alona042c262018-03-23 03:01:32 +03007844 * Do not inject an NMI or interrupt if there is a pending
7845 * exception. Exceptions and interrupts are recognized at
7846 * instruction boundaries, i.e. the start of an instruction.
7847 * Trap-like exceptions, e.g. #DB, have higher priority than
7848 * NMIs and interrupts, i.e. traps are recognized before an
7849 * NMI/interrupt that's pending on the same instruction.
7850 * Fault-like exceptions, e.g. #GP and #PF, are the lowest
7851 * priority, but are only generated (pended) during instruction
7852 * execution, i.e. a pending fault-like exception means the
7853 * fault occurred on the *previous* instruction and must be
7854 * serviced prior to recognizing any new events in order to
7855 * fully complete the previous instruction.
Wanpeng Li664f8e22017-08-24 03:35:09 -07007856 */
Liran Alon1a680e32018-03-23 03:01:33 +03007857 else if (!vcpu->arch.exception.pending) {
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04007858 if (vcpu->arch.nmi_injected) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007859 kvm_x86_ops.set_nmi(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04007860 can_inject = false;
7861 } else if (vcpu->arch.interrupt.injected) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007862 kvm_x86_ops.set_irq(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04007863 can_inject = false;
7864 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07007865 }
7866
Sean Christopherson3b82b8d2020-04-22 19:25:47 -07007867 WARN_ON_ONCE(vcpu->arch.exception.injected &&
7868 vcpu->arch.exception.pending);
7869
Liran Alon1a680e32018-03-23 03:01:33 +03007870 /*
7871 * Call check_nested_events() even if we reinjected a previous event
7872 * in order for caller to determine if it should require immediate-exit
7873 * from L2 to L1 due to pending L1 events which require exit
7874 * from L2 to L1.
7875 */
Paolo Bonzini56083bd2020-04-17 10:32:53 -04007876 if (is_guest_mode(vcpu)) {
Paolo Bonzini33b22172020-04-17 10:24:18 -04007877 r = kvm_x86_ops.nested_ops->check_events(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007878 if (r < 0)
7879 goto busy;
Wanpeng Li664f8e22017-08-24 03:35:09 -07007880 }
7881
7882 /* try to inject new event if pending */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03007883 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d02010-03-11 13:01:59 +02007884 trace_kvm_inj_exception(vcpu->arch.exception.nr,
7885 vcpu->arch.exception.has_error_code,
7886 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03007887
Wanpeng Li664f8e22017-08-24 03:35:09 -07007888 vcpu->arch.exception.pending = false;
7889 vcpu->arch.exception.injected = true;
7890
Nadav Amitd6e8c852014-07-24 14:51:24 +03007891 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
7892 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
7893 X86_EFLAGS_RF);
7894
Jim Mattsonf10c7292018-10-16 14:29:23 -07007895 if (vcpu->arch.exception.nr == DB_VECTOR) {
Jim Mattsonf10c7292018-10-16 14:29:23 -07007896 kvm_deliver_exception_payload(vcpu);
7897 if (vcpu->arch.dr7 & DR7_GD) {
7898 vcpu->arch.dr7 &= ~DR7_GD;
7899 kvm_update_dr7(vcpu);
7900 }
Nadav Amit6bdf0662014-09-30 20:49:14 +03007901 }
7902
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007903 kvm_x86_ops.queue_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04007904 can_inject = false;
Liran Alon1a680e32018-03-23 03:01:33 +03007905 }
7906
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007907 /*
7908 * Finally, inject interrupt events. If an event cannot be injected
7909 * due to architectural conditions (e.g. IF=0) a window-open exit
7910 * will re-request KVM_REQ_EVENT. Sometimes however an event is pending
7911 * and can architecturally be injected, but we cannot do it right now:
7912 * an interrupt could have arrived just now and we have to inject it
7913 * as a vmexit, or there could already an event in the queue, which is
7914 * indicated by can_inject. In that case we request an immediate exit
7915 * in order to make progress and get back here for another iteration.
7916 * The kvm_x86_ops hooks communicate this by returning -EBUSY.
7917 */
7918 if (vcpu->arch.smi_pending) {
7919 r = can_inject ? kvm_x86_ops.smi_allowed(vcpu, true) : -EBUSY;
7920 if (r < 0)
7921 goto busy;
7922 if (r) {
7923 vcpu->arch.smi_pending = false;
7924 ++vcpu->arch.smi_count;
7925 enter_smm(vcpu);
7926 can_inject = false;
7927 } else
7928 kvm_x86_ops.enable_smi_window(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007929 }
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02007930
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007931 if (vcpu->arch.nmi_pending) {
7932 r = can_inject ? kvm_x86_ops.nmi_allowed(vcpu, true) : -EBUSY;
7933 if (r < 0)
7934 goto busy;
7935 if (r) {
7936 --vcpu->arch.nmi_pending;
7937 vcpu->arch.nmi_injected = true;
7938 kvm_x86_ops.set_nmi(vcpu);
7939 can_inject = false;
7940 WARN_ON(kvm_x86_ops.nmi_allowed(vcpu, true) < 0);
7941 }
7942 if (vcpu->arch.nmi_pending)
7943 kvm_x86_ops.enable_nmi_window(vcpu);
7944 }
7945
7946 if (kvm_cpu_has_injectable_intr(vcpu)) {
7947 r = can_inject ? kvm_x86_ops.interrupt_allowed(vcpu, true) : -EBUSY;
7948 if (r < 0)
7949 goto busy;
7950 if (r) {
7951 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu), false);
7952 kvm_x86_ops.set_irq(vcpu);
7953 WARN_ON(kvm_x86_ops.interrupt_allowed(vcpu, true) < 0);
7954 }
7955 if (kvm_cpu_has_injectable_intr(vcpu))
7956 kvm_x86_ops.enable_irq_window(vcpu);
7957 }
7958
7959 if (is_guest_mode(vcpu) &&
7960 kvm_x86_ops.nested_ops->hv_timer_pending &&
7961 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
7962 *req_immediate_exit = true;
7963
7964 WARN_ON(vcpu->arch.exception.pending);
7965 return;
7966
7967busy:
7968 *req_immediate_exit = true;
7969 return;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007970}
7971
Avi Kivity7460fb4a2011-09-20 13:43:14 +03007972static void process_nmi(struct kvm_vcpu *vcpu)
7973{
7974 unsigned limit = 2;
7975
7976 /*
7977 * x86 is limited to one NMI running, and one NMI pending after it.
7978 * If an NMI is already in progress, limit further NMIs to just one.
7979 * Otherwise, allow two (and we'll inject the first one immediately).
7980 */
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007981 if (kvm_x86_ops.get_nmi_mask(vcpu) || vcpu->arch.nmi_injected)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03007982 limit = 1;
7983
7984 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
7985 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
7986 kvm_make_request(KVM_REQ_EVENT, vcpu);
7987}
7988
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02007989static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02007990{
7991 u32 flags = 0;
7992 flags |= seg->g << 23;
7993 flags |= seg->db << 22;
7994 flags |= seg->l << 21;
7995 flags |= seg->avl << 20;
7996 flags |= seg->present << 15;
7997 flags |= seg->dpl << 13;
7998 flags |= seg->s << 12;
7999 flags |= seg->type << 8;
8000 return flags;
8001}
8002
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008003static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008004{
8005 struct kvm_segment seg;
8006 int offset;
8007
8008 kvm_get_segment(vcpu, &seg, n);
8009 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
8010
8011 if (n < 3)
8012 offset = 0x7f84 + n * 12;
8013 else
8014 offset = 0x7f2c + (n - 3) * 12;
8015
8016 put_smstate(u32, buf, offset + 8, seg.base);
8017 put_smstate(u32, buf, offset + 4, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008018 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008019}
8020
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06008021#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008022static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008023{
8024 struct kvm_segment seg;
8025 int offset;
8026 u16 flags;
8027
8028 kvm_get_segment(vcpu, &seg, n);
8029 offset = 0x7e00 + n * 16;
8030
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008031 flags = enter_smm_get_segment_flags(&seg) >> 8;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008032 put_smstate(u16, buf, offset, seg.selector);
8033 put_smstate(u16, buf, offset + 2, flags);
8034 put_smstate(u32, buf, offset + 4, seg.limit);
8035 put_smstate(u64, buf, offset + 8, seg.base);
8036}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06008037#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008038
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008039static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008040{
8041 struct desc_ptr dt;
8042 struct kvm_segment seg;
8043 unsigned long val;
8044 int i;
8045
8046 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
8047 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
8048 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
8049 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
8050
8051 for (i = 0; i < 8; i++)
8052 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read(vcpu, i));
8053
8054 kvm_get_dr(vcpu, 6, &val);
8055 put_smstate(u32, buf, 0x7fcc, (u32)val);
8056 kvm_get_dr(vcpu, 7, &val);
8057 put_smstate(u32, buf, 0x7fc8, (u32)val);
8058
8059 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
8060 put_smstate(u32, buf, 0x7fc4, seg.selector);
8061 put_smstate(u32, buf, 0x7f64, seg.base);
8062 put_smstate(u32, buf, 0x7f60, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008063 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008064
8065 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
8066 put_smstate(u32, buf, 0x7fc0, seg.selector);
8067 put_smstate(u32, buf, 0x7f80, seg.base);
8068 put_smstate(u32, buf, 0x7f7c, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008069 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008070
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008071 kvm_x86_ops.get_gdt(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008072 put_smstate(u32, buf, 0x7f74, dt.address);
8073 put_smstate(u32, buf, 0x7f70, dt.size);
8074
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008075 kvm_x86_ops.get_idt(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008076 put_smstate(u32, buf, 0x7f58, dt.address);
8077 put_smstate(u32, buf, 0x7f54, dt.size);
8078
8079 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008080 enter_smm_save_seg_32(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008081
8082 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
8083
8084 /* revision id */
8085 put_smstate(u32, buf, 0x7efc, 0x00020000);
8086 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
8087}
8088
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07008089#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008090static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008091{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008092 struct desc_ptr dt;
8093 struct kvm_segment seg;
8094 unsigned long val;
8095 int i;
8096
8097 for (i = 0; i < 16; i++)
8098 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read(vcpu, i));
8099
8100 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
8101 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
8102
8103 kvm_get_dr(vcpu, 6, &val);
8104 put_smstate(u64, buf, 0x7f68, val);
8105 kvm_get_dr(vcpu, 7, &val);
8106 put_smstate(u64, buf, 0x7f60, val);
8107
8108 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
8109 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
8110 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
8111
8112 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
8113
8114 /* revision id */
8115 put_smstate(u32, buf, 0x7efc, 0x00020064);
8116
8117 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
8118
8119 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
8120 put_smstate(u16, buf, 0x7e90, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008121 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008122 put_smstate(u32, buf, 0x7e94, seg.limit);
8123 put_smstate(u64, buf, 0x7e98, seg.base);
8124
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008125 kvm_x86_ops.get_idt(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008126 put_smstate(u32, buf, 0x7e84, dt.size);
8127 put_smstate(u64, buf, 0x7e88, dt.address);
8128
8129 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
8130 put_smstate(u16, buf, 0x7e70, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008131 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008132 put_smstate(u32, buf, 0x7e74, seg.limit);
8133 put_smstate(u64, buf, 0x7e78, seg.base);
8134
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008135 kvm_x86_ops.get_gdt(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008136 put_smstate(u32, buf, 0x7e64, dt.size);
8137 put_smstate(u64, buf, 0x7e68, dt.address);
8138
8139 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008140 enter_smm_save_seg_64(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008141}
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07008142#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008143
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008144static void enter_smm(struct kvm_vcpu *vcpu)
Paolo Bonzini64d60672015-05-07 11:36:11 +02008145{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008146 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02008147 struct desc_ptr dt;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008148 char buf[512];
8149 u32 cr0;
8150
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008151 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, true);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008152 memset(buf, 0, 512);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07008153#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02008154 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008155 enter_smm_save_state_64(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008156 else
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07008157#endif
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008158 enter_smm_save_state_32(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008159
Ladi Prosek0234bf82017-10-11 16:54:40 +02008160 /*
8161 * Give pre_enter_smm() a chance to make ISA-specific changes to the
8162 * vCPU state (e.g. leave guest mode) after we've saved the state into
8163 * the SMM state-save area.
8164 */
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008165 kvm_x86_ops.pre_enter_smm(vcpu, buf);
Ladi Prosek0234bf82017-10-11 16:54:40 +02008166
8167 vcpu->arch.hflags |= HF_SMM_MASK;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008168 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008169
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008170 if (kvm_x86_ops.get_nmi_mask(vcpu))
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008171 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
8172 else
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008173 kvm_x86_ops.set_nmi_mask(vcpu, true);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008174
8175 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
8176 kvm_rip_write(vcpu, 0x8000);
8177
8178 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008179 kvm_x86_ops.set_cr0(vcpu, cr0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008180 vcpu->arch.cr0 = cr0;
8181
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008182 kvm_x86_ops.set_cr4(vcpu, 0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008183
Paolo Bonzini18c36262015-08-07 12:27:54 +02008184 /* Undocumented: IDT limit is set to zero on entry to SMM. */
8185 dt.address = dt.size = 0;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008186 kvm_x86_ops.set_idt(vcpu, &dt);
Paolo Bonzini18c36262015-08-07 12:27:54 +02008187
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008188 __kvm_set_dr(vcpu, 7, DR7_FIXED_1);
8189
8190 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
8191 cs.base = vcpu->arch.smbase;
8192
8193 ds.selector = 0;
8194 ds.base = 0;
8195
8196 cs.limit = ds.limit = 0xffffffff;
8197 cs.type = ds.type = 0x3;
8198 cs.dpl = ds.dpl = 0;
8199 cs.db = ds.db = 0;
8200 cs.s = ds.s = 1;
8201 cs.l = ds.l = 0;
8202 cs.g = ds.g = 1;
8203 cs.avl = ds.avl = 0;
8204 cs.present = ds.present = 1;
8205 cs.unusable = ds.unusable = 0;
8206 cs.padding = ds.padding = 0;
8207
8208 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
8209 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
8210 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
8211 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
8212 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
8213 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
8214
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07008215#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02008216 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008217 kvm_x86_ops.set_efer(vcpu, 0);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07008218#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008219
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08008220 kvm_update_cpuid_runtime(vcpu);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008221 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02008222}
8223
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008224static void process_smi(struct kvm_vcpu *vcpu)
Paolo Bonzinic43203c2016-06-01 22:26:00 +02008225{
8226 vcpu->arch.smi_pending = true;
8227 kvm_make_request(KVM_REQ_EVENT, vcpu);
8228}
8229
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05008230void kvm_make_scan_ioapic_request_mask(struct kvm *kvm,
8231 unsigned long *vcpu_bitmap)
8232{
8233 cpumask_var_t cpus;
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05008234
8235 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
8236
Mao Wenandb5a95e2019-11-19 11:06:40 +08008237 kvm_make_vcpus_request_mask(kvm, KVM_REQ_SCAN_IOAPIC,
Suravee Suthikulpanit54163a32020-05-06 08:17:53 -05008238 NULL, vcpu_bitmap, cpus);
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05008239
8240 free_cpumask_var(cpus);
8241}
8242
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01008243void kvm_make_scan_ioapic_request(struct kvm *kvm)
8244{
8245 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
8246}
8247
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06008248void kvm_vcpu_update_apicv(struct kvm_vcpu *vcpu)
8249{
8250 if (!lapic_in_kernel(vcpu))
8251 return;
8252
8253 vcpu->arch.apicv_active = kvm_apicv_activated(vcpu->kvm);
8254 kvm_apic_update_apicv(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008255 kvm_x86_ops.refresh_apicv_exec_ctrl(vcpu);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06008256}
8257EXPORT_SYMBOL_GPL(kvm_vcpu_update_apicv);
8258
8259/*
8260 * NOTE: Do not hold any lock prior to calling this.
8261 *
8262 * In particular, kvm_request_apicv_update() expects kvm->srcu not to be
8263 * locked, because it calls __x86_set_memory_region() which does
8264 * synchronize_srcu(&kvm->srcu).
8265 */
8266void kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
8267{
Suravee Suthikulpanit7d611232020-05-06 21:35:39 -05008268 struct kvm_vcpu *except;
Paolo Bonzini8e205a62020-03-14 12:29:23 +01008269 unsigned long old, new, expected;
8270
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008271 if (!kvm_x86_ops.check_apicv_inhibit_reasons ||
8272 !kvm_x86_ops.check_apicv_inhibit_reasons(bit))
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06008273 return;
8274
Paolo Bonzini8e205a62020-03-14 12:29:23 +01008275 old = READ_ONCE(kvm->arch.apicv_inhibit_reasons);
8276 do {
8277 expected = new = old;
8278 if (activate)
8279 __clear_bit(bit, &new);
8280 else
8281 __set_bit(bit, &new);
8282 if (new == old)
8283 break;
8284 old = cmpxchg(&kvm->arch.apicv_inhibit_reasons, expected, new);
8285 } while (old != expected);
8286
8287 if (!!old == !!new)
8288 return;
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06008289
Suravee Suthikulpanit24bbf742019-11-14 14:15:07 -06008290 trace_kvm_apicv_update_request(activate, bit);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008291 if (kvm_x86_ops.pre_update_apicv_exec_ctrl)
8292 kvm_x86_ops.pre_update_apicv_exec_ctrl(kvm, activate);
Suravee Suthikulpanit7d611232020-05-06 21:35:39 -05008293
8294 /*
8295 * Sending request to update APICV for all other vcpus,
8296 * while update the calling vcpu immediately instead of
8297 * waiting for another #VMEXIT to handle the request.
8298 */
8299 except = kvm_get_running_vcpu();
8300 kvm_make_all_cpus_request_except(kvm, KVM_REQ_APICV_UPDATE,
8301 except);
8302 if (except)
8303 kvm_vcpu_update_apicv(except);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06008304}
8305EXPORT_SYMBOL_GPL(kvm_request_apicv_update);
8306
Yang Zhang3d81bc72013-04-11 19:25:13 +08008307static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008308{
Wanpeng Lidcbd3e42018-12-17 10:43:23 +08008309 if (!kvm_apic_present(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08008310 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008311
Andrey Smetanin63086302015-11-10 15:36:32 +03008312 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08008313
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07008314 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03008315 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02008316 else {
Liran Alonfa59cc02017-12-24 18:12:53 +02008317 if (vcpu->arch.apicv_active)
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008318 kvm_x86_ops.sync_pir_to_irr(vcpu);
Wanpeng Lie97f8522018-11-20 16:34:18 +08008319 if (ioapic_in_kernel(vcpu->kvm))
8320 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02008321 }
Liran Alone40ff1d2018-03-21 02:50:31 +02008322
8323 if (is_guest_mode(vcpu))
8324 vcpu->arch.load_eoi_exitmap_pending = true;
8325 else
8326 kvm_make_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu);
8327}
8328
8329static void vcpu_load_eoi_exitmap(struct kvm_vcpu *vcpu)
8330{
8331 u64 eoi_exit_bitmap[4];
8332
8333 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
8334 return;
8335
Andrey Smetanin5c9194122015-11-10 15:36:34 +03008336 bitmap_or((ulong *)eoi_exit_bitmap, vcpu->arch.ioapic_handled_vectors,
8337 vcpu_to_synic(vcpu)->vec_bitmap, 256);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008338 kvm_x86_ops.load_eoi_exitmap(vcpu, eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +08008339}
8340
Eiichi Tsukatae649b3f2020-06-06 13:26:27 +09008341void kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
8342 unsigned long start, unsigned long end)
Radim Krčmářb1394e72017-11-30 19:05:45 +01008343{
8344 unsigned long apic_address;
8345
8346 /*
8347 * The physical address of apic access page is stored in the VMCS.
8348 * Update it when it becomes invalid.
8349 */
8350 apic_address = gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
8351 if (start <= apic_address && apic_address < end)
8352 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
8353}
8354
Tang Chen4256f432014-09-24 15:57:54 +08008355void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
8356{
Paolo Bonzini35754c92015-07-29 12:05:37 +02008357 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02008358 return;
8359
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008360 if (!kvm_x86_ops.set_apic_access_page_addr)
Tang Chen4256f432014-09-24 15:57:54 +08008361 return;
8362
Sean Christophersona4148b72020-03-20 14:28:24 -07008363 kvm_x86_ops.set_apic_access_page_addr(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08008364}
Tang Chen4256f432014-09-24 15:57:54 +08008365
Sean Christophersond264ee02018-08-27 15:21:12 -07008366void __kvm_request_immediate_exit(struct kvm_vcpu *vcpu)
8367{
8368 smp_send_reschedule(vcpu->cpu);
8369}
8370EXPORT_SYMBOL_GPL(__kvm_request_immediate_exit);
8371
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09008372/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01008373 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09008374 * exiting to the userspace. Otherwise, the value will be returned to the
8375 * userspace.
8376 */
Avi Kivity851ba692009-08-24 11:10:17 +03008377static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008378{
8379 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08008380 bool req_int_win =
8381 dm_request_for_irq_injection(vcpu) &&
8382 kvm_cpu_accept_dm_intr(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08008383 fastpath_t exit_fastpath;
Matt Gingell62a193e2015-11-16 15:26:07 -08008384
Jan Kiszka730dca42013-04-28 10:50:52 +02008385 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008386
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +02008387 if (kvm_request_pending(vcpu)) {
Jim Mattson671ddc72019-10-15 10:44:05 -07008388 if (kvm_check_request(KVM_REQ_GET_VMCS12_PAGES, vcpu)) {
Paolo Bonzini33b22172020-04-17 10:24:18 -04008389 if (unlikely(!kvm_x86_ops.nested_ops->get_vmcs12_pages(vcpu))) {
Jim Mattson671ddc72019-10-15 10:44:05 -07008390 r = 0;
8391 goto out;
8392 }
8393 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03008394 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05008395 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03008396 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03008397 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008398 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
8399 kvm_gen_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03008400 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
8401 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10008402 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
8403 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008404 if (unlikely(r))
8405 goto out;
8406 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03008407 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03008408 kvm_mmu_sync_roots(vcpu);
Paolo Bonzini727a7e22020-03-05 03:52:50 -05008409 if (kvm_check_request(KVM_REQ_LOAD_MMU_PGD, vcpu))
8410 kvm_mmu_load_pgd(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07008411 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) {
Sean Christopherson77809382020-03-20 14:28:18 -07008412 kvm_vcpu_flush_tlb_all(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07008413
8414 /* Flushing all ASIDs flushes the current ASID... */
8415 kvm_clear_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
8416 }
8417 if (kvm_check_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu))
8418 kvm_vcpu_flush_tlb_current(vcpu);
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04008419 if (kvm_check_request(KVM_REQ_HV_TLB_FLUSH, vcpu))
8420 kvm_vcpu_flush_tlb_guest(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07008421
Avi Kivitya8eeb042010-05-10 12:34:53 +03008422 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008423 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02008424 r = 0;
8425 goto out;
8426 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03008427 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008428 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07008429 vcpu->mmio_needed = 0;
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01008430 r = 0;
8431 goto out;
8432 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02008433 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
8434 /* Page is swapped out. Do synthetic halt */
8435 vcpu->arch.apf.halted = true;
8436 r = 1;
8437 goto out;
8438 }
Glauber Costac9aaa892011-07-11 15:28:14 -04008439 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
8440 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02008441 if (kvm_check_request(KVM_REQ_SMI, vcpu))
8442 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03008443 if (kvm_check_request(KVM_REQ_NMI, vcpu))
8444 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02008445 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02008446 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02008447 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02008448 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07008449 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
8450 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
8451 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03008452 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07008453 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
8454 vcpu->run->eoi.vector =
8455 vcpu->arch.pending_ioapic_eoi;
8456 r = 0;
8457 goto out;
8458 }
8459 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08008460 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
8461 vcpu_scan_ioapic(vcpu);
Liran Alone40ff1d2018-03-21 02:50:31 +02008462 if (kvm_check_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu))
8463 vcpu_load_eoi_exitmap(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08008464 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
8465 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03008466 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
8467 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
8468 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
8469 r = 0;
8470 goto out;
8471 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03008472 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
8473 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
8474 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
8475 r = 0;
8476 goto out;
8477 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03008478 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
8479 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
8480 vcpu->run->hyperv = vcpu->arch.hyperv.exit;
8481 r = 0;
8482 goto out;
8483 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03008484
8485 /*
8486 * KVM_REQ_HV_STIMER has to be processed after
8487 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
8488 * depend on the guest clock being up-to-date
8489 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03008490 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
8491 kvm_hv_process_stimers(vcpu);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06008492 if (kvm_check_request(KVM_REQ_APICV_UPDATE, vcpu))
8493 kvm_vcpu_update_apicv(vcpu);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02008494 if (kvm_check_request(KVM_REQ_APF_READY, vcpu))
8495 kvm_check_async_pf_completion(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02008496 }
Avi Kivityb93463a2007-10-25 16:52:32 +02008497
Avi Kivityb463a6f2010-07-20 15:06:17 +03008498 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win) {
Paolo Bonzini0f1e2612016-12-17 16:05:19 +01008499 ++vcpu->stat.req_event;
Jan Kiszka66450a22013-03-13 12:42:34 +01008500 kvm_apic_accept_events(vcpu);
8501 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
8502 r = 1;
8503 goto out;
8504 }
8505
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008506 inject_pending_event(vcpu, &req_immediate_exit);
8507 if (req_int_win)
8508 kvm_x86_ops.enable_irq_window(vcpu);
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03008509
Avi Kivity3842d132010-07-27 12:30:24 +03008510 if (kvm_lapic_enabled(vcpu)) {
8511 update_cr8_intercept(vcpu);
8512 kvm_lapic_sync_to_vapic(vcpu);
8513 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008514 }
Avi Kivityb93463a2007-10-25 16:52:32 +02008515
Avi Kivityd8368af2012-05-14 18:07:56 +03008516 r = kvm_mmu_reload(vcpu);
8517 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03008518 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03008519 }
8520
Jan Kiszka42dbaa52008-12-15 13:52:10 +01008521 preempt_disable();
8522
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008523 kvm_x86_ops.prepare_guest_switch(vcpu);
Paolo Bonzinib95234c2016-12-19 13:57:33 +01008524
8525 /*
8526 * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt
8527 * IPI are then delayed after guest entry, which ensures that they
8528 * result in virtual interrupt delivery.
8529 */
8530 local_irq_disable();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08008531 vcpu->mode = IN_GUEST_MODE;
8532
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02008533 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
8534
Lan Tianyu0f127d12016-03-13 11:10:29 +08008535 /*
Paolo Bonzinib95234c2016-12-19 13:57:33 +01008536 * 1) We should set ->mode before checking ->requests. Please see
Andrew Jonescde9af62017-04-26 22:32:24 +02008537 * the comment in kvm_vcpu_exiting_guest_mode().
Paolo Bonzinib95234c2016-12-19 13:57:33 +01008538 *
Luwei Kang81b01662019-01-31 16:52:02 +08008539 * 2) For APICv, we should set ->mode before checking PID.ON. This
Paolo Bonzinib95234c2016-12-19 13:57:33 +01008540 * pairs with the memory barrier implicit in pi_test_and_set_on
8541 * (see vmx_deliver_posted_interrupt).
8542 *
8543 * 3) This also orders the write to mode from any reads to the page
8544 * tables done while the VCPU is running. Please see the comment
8545 * in kvm_flush_remote_tlbs.
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08008546 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02008547 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008548
Paolo Bonzinib95234c2016-12-19 13:57:33 +01008549 /*
8550 * This handles the case where a posted interrupt was
8551 * notified with kvm_vcpu_kick.
8552 */
Liran Alonfa59cc02017-12-24 18:12:53 +02008553 if (kvm_lapic_enabled(vcpu) && vcpu->arch.apicv_active)
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008554 kvm_x86_ops.sync_pir_to_irr(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008555
Wanpeng Li5a9f5442020-04-28 14:23:26 +08008556 if (kvm_vcpu_exit_request(vcpu)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08008557 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008558 smp_wmb();
8559 local_irq_enable();
8560 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02008561 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008562 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03008563 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008564 }
8565
Paolo Bonzinic43203c2016-06-01 22:26:00 +02008566 if (req_immediate_exit) {
8567 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008568 kvm_x86_ops.request_immediate_exit(vcpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02008569 }
Nadav Har'Eld6185f22011-09-22 13:52:56 +03008570
Sean Christophersonb2d52252020-09-23 13:13:43 -07008571 trace_kvm_entry(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008572
Sean Christopherson2620fe22020-01-17 11:30:51 -08008573 fpregs_assert_state_consistent();
8574 if (test_thread_flag(TIF_NEED_FPU_LOAD))
8575 switch_fpu_return();
Rik van Riel5f409e22019-04-03 18:41:52 +02008576
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008577 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008578 set_debugreg(0, 7);
8579 set_debugreg(vcpu->arch.eff_db[0], 0);
8580 set_debugreg(vcpu->arch.eff_db[1], 1);
8581 set_debugreg(vcpu->arch.eff_db[2], 2);
8582 set_debugreg(vcpu->arch.eff_db[3], 3);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01008583 set_debugreg(vcpu->arch.dr6, 6);
Nadav Amitae561ed2015-04-02 03:10:37 +03008584 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008585 }
8586
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07008587 exit_fastpath = kvm_x86_ops.run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008588
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02008589 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01008590 * Do this here before restoring debug registers on the host. And
8591 * since we do this before handling the vmexit, a DR access vmexit
8592 * can (a) read the correct value of the debug registers, (b) set
8593 * KVM_DEBUGREG_WONT_EXIT again.
8594 */
8595 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01008596 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008597 kvm_x86_ops.sync_dirty_debug_regs(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01008598 kvm_update_dr0123(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01008599 kvm_update_dr7(vcpu);
8600 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01008601 }
8602
8603 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02008604 * If the guest has used debug registers, at least dr7
8605 * will be disabled while returning to the host.
8606 * If we don't have active breakpoints in the host, we don't
8607 * care about the messed up debug address registers. But if
8608 * we have some of them active, restore the old state.
8609 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01008610 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02008611 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008612
Jim Mattsonc9671182020-06-03 16:56:23 -07008613 vcpu->arch.last_vmentry_cpu = vcpu->cpu;
Haozhong Zhang4ba76532015-10-20 15:39:07 +08008614 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10008615
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08008616 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03008617 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08008618
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07008619 kvm_x86_ops.handle_exit_irqoff(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008620
Sean Christophersond7a08882019-07-10 09:07:34 -07008621 /*
8622 * Consume any pending interrupts, including the possible source of
8623 * VM-Exit on SVM and any ticks that occur between VM-Exit and now.
8624 * An instruction is required after local_irq_enable() to fully unblock
8625 * interrupts on processors that implement an interrupt shadow, the
8626 * stat.exits increment will do nicely.
8627 */
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008628 kvm_before_interrupt(vcpu);
Sean Christophersond7a08882019-07-10 09:07:34 -07008629 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008630 ++vcpu->stat.exits;
Sean Christophersond7a08882019-07-10 09:07:34 -07008631 local_irq_disable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008632 kvm_after_interrupt(vcpu);
8633
Wanpeng Liec0671d2019-05-20 16:18:08 +08008634 if (lapic_in_kernel(vcpu)) {
8635 s64 delta = vcpu->arch.apic->lapic_timer.advance_expire_delta;
8636 if (delta != S64_MIN) {
8637 trace_kvm_wait_lapic_expire(vcpu->vcpu_id, delta);
8638 vcpu->arch.apic->lapic_timer.advance_expire_delta = S64_MIN;
8639 }
8640 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008641
Paolo Bonzinif2485b32016-06-15 15:23:11 +02008642 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008643 preempt_enable();
8644
Marcelo Tosattif656ce02009-12-23 14:35:25 -02008645 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -03008646
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008647 /*
8648 * Profile KVM exit RIPs:
8649 */
8650 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03008651 unsigned long rip = kvm_rip_read(vcpu);
8652 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008653 }
8654
Zachary Amsdencc578282012-02-03 15:43:50 -02008655 if (unlikely(vcpu->arch.tsc_always_catchup))
8656 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02008657
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +03008658 if (vcpu->arch.apic_attention)
8659 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +02008660
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008661 r = kvm_x86_ops.handle_exit(vcpu, exit_fastpath);
Michael S. Tsirkind905c062012-06-24 19:25:00 +03008662 return r;
8663
8664cancel_injection:
Sean Christopherson8081ad02020-04-22 19:25:40 -07008665 if (req_immediate_exit)
8666 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008667 kvm_x86_ops.cancel_injection(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03008668 if (unlikely(vcpu->arch.apic_attention))
8669 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008670out:
Marcelo Tosattid7690172008-09-08 15:23:48 -03008671 return r;
8672}
8673
Paolo Bonzini362c6982015-02-06 12:48:04 +01008674static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
8675{
Feng Wubf9f6ac2015-09-18 22:29:55 +08008676 if (!kvm_arch_vcpu_runnable(vcpu) &&
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008677 (!kvm_x86_ops.pre_block || kvm_x86_ops.pre_block(vcpu) == 0)) {
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01008678 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
8679 kvm_vcpu_block(vcpu);
8680 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08008681
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008682 if (kvm_x86_ops.post_block)
8683 kvm_x86_ops.post_block(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08008684
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01008685 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
8686 return 1;
8687 }
Gleb Natapov09cec752009-03-23 15:11:44 +02008688
Paolo Bonzini362c6982015-02-06 12:48:04 +01008689 kvm_apic_accept_events(vcpu);
8690 switch(vcpu->arch.mp_state) {
8691 case KVM_MP_STATE_HALTED:
8692 vcpu->arch.pv.pv_unhalted = false;
8693 vcpu->arch.mp_state =
8694 KVM_MP_STATE_RUNNABLE;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05008695 fallthrough;
Paolo Bonzini362c6982015-02-06 12:48:04 +01008696 case KVM_MP_STATE_RUNNABLE:
8697 vcpu->arch.apf.halted = false;
8698 break;
8699 case KVM_MP_STATE_INIT_RECEIVED:
8700 break;
8701 default:
8702 return -EINTR;
Paolo Bonzini362c6982015-02-06 12:48:04 +01008703 }
8704 return 1;
8705}
8706
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008707static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
8708{
Paolo Bonzini56083bd2020-04-17 10:32:53 -04008709 if (is_guest_mode(vcpu))
Paolo Bonzini33b22172020-04-17 10:24:18 -04008710 kvm_x86_ops.nested_ops->check_events(vcpu);
Paolo Bonzini0ad3bed2016-12-19 15:23:54 +01008711
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008712 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
8713 !vcpu->arch.apf.halted);
8714}
8715
Paolo Bonzini362c6982015-02-06 12:48:04 +01008716static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -03008717{
8718 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02008719 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -03008720
Marcelo Tosattif656ce02009-12-23 14:35:25 -02008721 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Paolo Bonzinic595cee2018-07-02 13:07:14 +02008722 vcpu->arch.l1tf_flush_l1d = true;
Marcelo Tosattid7690172008-09-08 15:23:48 -03008723
Paolo Bonzini362c6982015-02-06 12:48:04 +01008724 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +02008725 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008726 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08008727 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +01008728 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08008729 }
8730
Gleb Natapov09cec752009-03-23 15:11:44 +02008731 if (r <= 0)
8732 break;
8733
Radim Krčmář72875d82017-04-26 22:32:19 +02008734 kvm_clear_request(KVM_REQ_PENDING_TIMER, vcpu);
Gleb Natapov09cec752009-03-23 15:11:44 +02008735 if (kvm_cpu_has_pending_timer(vcpu))
8736 kvm_inject_pending_timer_irqs(vcpu);
8737
Matt Gingell782d4222015-11-16 15:26:00 -08008738 if (dm_request_for_irq_injection(vcpu) &&
8739 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +02008740 r = 0;
8741 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +02008742 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01008743 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02008744 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02008745
Thomas Gleixnerf3020b82020-07-30 09:19:01 +02008746 if (__xfer_to_guest_mode_work_pending()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02008747 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02008748 r = xfer_to_guest_mode_handle_work(vcpu);
8749 if (r)
8750 return r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02008751 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03008752 }
8753 }
8754
Marcelo Tosattif656ce02009-12-23 14:35:25 -02008755 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008756
8757 return r;
8758}
8759
Gleb Natapov716d51a2012-09-03 15:24:26 +03008760static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
8761{
8762 int r;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008763
Gleb Natapov716d51a2012-09-03 15:24:26 +03008764 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Sean Christopherson0ce97a22018-08-23 13:56:52 -07008765 r = kvm_emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
Gleb Natapov716d51a2012-09-03 15:24:26 +03008766 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008767 return r;
Gleb Natapov716d51a2012-09-03 15:24:26 +03008768}
8769
8770static int complete_emulated_pio(struct kvm_vcpu *vcpu)
8771{
8772 BUG_ON(!vcpu->arch.pio.count);
8773
8774 return complete_emulated_io(vcpu);
8775}
8776
Avi Kivityf78146b2012-04-18 19:22:47 +03008777/*
8778 * Implements the following, as a state machine:
8779 *
8780 * read:
8781 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08008782 * for each mmio piece in the fragment
8783 * write gpa, len
8784 * exit
8785 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +03008786 * execute insn
8787 *
8788 * write:
8789 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08008790 * for each mmio piece in the fragment
8791 * write gpa, len
8792 * copy data
8793 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +03008794 */
Gleb Natapov716d51a2012-09-03 15:24:26 +03008795static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +02008796{
8797 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +03008798 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +08008799 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +02008800
Gleb Natapov716d51a2012-09-03 15:24:26 +03008801 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02008802
Gleb Natapov716d51a2012-09-03 15:24:26 +03008803 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +08008804 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
8805 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03008806 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08008807 memcpy(frag->data, run->mmio.data, len);
8808
8809 if (frag->len <= 8) {
8810 /* Switch to the next fragment. */
8811 frag++;
8812 vcpu->mmio_cur_fragment++;
8813 } else {
8814 /* Go forward to the next mmio piece. */
8815 frag->data += len;
8816 frag->gpa += len;
8817 frag->len -= len;
8818 }
8819
Andrew Honiga08d3b32014-02-27 19:35:14 +01008820 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +03008821 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02008822
8823 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +02008824 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +03008825 return 1;
8826 vcpu->mmio_read_completed = 1;
8827 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +02008828 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +08008829
Gleb Natapov716d51a2012-09-03 15:24:26 +03008830 run->exit_reason = KVM_EXIT_MMIO;
8831 run->mmio.phys_addr = frag->gpa;
8832 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08008833 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
8834 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03008835 run->mmio.is_write = vcpu->mmio_is_write;
8836 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
8837 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +02008838}
8839
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08008840static void kvm_save_current_fpu(struct fpu *fpu)
8841{
8842 /*
8843 * If the target FPU state is not resident in the CPU registers, just
8844 * memcpy() from current, else save CPU state directly to the target.
8845 */
8846 if (test_thread_flag(TIF_NEED_FPU_LOAD))
8847 memcpy(&fpu->state, &current->thread.fpu.state,
8848 fpu_kernel_xstate_size);
8849 else
8850 copy_fpregs_to_fpstate(fpu);
8851}
8852
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02008853/* Swap (qemu) user FPU context for the guest FPU context. */
8854static void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
8855{
Rik van Riel5f409e22019-04-03 18:41:52 +02008856 fpregs_lock();
8857
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08008858 kvm_save_current_fpu(vcpu->arch.user_fpu);
8859
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008860 /* PKRU is separately restored in kvm_x86_ops.run. */
Marc Orrb666a4b2018-11-06 14:53:56 -08008861 __copy_kernel_to_fpregs(&vcpu->arch.guest_fpu->state,
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02008862 ~XFEATURE_MASK_PKRU);
Rik van Riel5f409e22019-04-03 18:41:52 +02008863
8864 fpregs_mark_activate();
8865 fpregs_unlock();
8866
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02008867 trace_kvm_fpu(1);
8868}
8869
8870/* When vcpu_run ends, restore user space FPU context. */
8871static void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
8872{
Rik van Riel5f409e22019-04-03 18:41:52 +02008873 fpregs_lock();
8874
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08008875 kvm_save_current_fpu(vcpu->arch.guest_fpu);
8876
Wanpeng Lid9a710e2019-07-22 12:26:21 +08008877 copy_kernel_to_fpregs(&vcpu->arch.user_fpu->state);
Rik van Riel5f409e22019-04-03 18:41:52 +02008878
8879 fpregs_mark_activate();
8880 fpregs_unlock();
8881
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02008882 ++vcpu->stat.fpu_reload;
8883 trace_kvm_fpu(0);
8884}
8885
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08008886int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008887{
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08008888 struct kvm_run *kvm_run = vcpu->run;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008889 int r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008890
Christoffer Dallaccb7572017-12-04 21:35:25 +01008891 vcpu_load(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +01008892 kvm_sigset_activate(vcpu);
Peter Xu5663d8f2017-12-12 17:15:02 +01008893 kvm_load_guest_fpu(vcpu);
8894
Avi Kivityac9f6dc2008-07-06 15:48:31 +03008895 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
Jan H. Schönherr2f173d22017-09-06 18:34:06 +02008896 if (kvm_run->immediate_exit) {
8897 r = -EINTR;
8898 goto out;
8899 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +03008900 kvm_vcpu_block(vcpu);
Jan Kiszka66450a22013-03-13 12:42:34 +01008901 kvm_apic_accept_events(vcpu);
Radim Krčmář72875d82017-04-26 22:32:19 +02008902 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Avi Kivityac9f6dc2008-07-06 15:48:31 +03008903 r = -EAGAIN;
Jan H. Schönherra0595002017-09-06 00:27:19 +02008904 if (signal_pending(current)) {
8905 r = -EINTR;
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08008906 kvm_run->exit_reason = KVM_EXIT_INTR;
Jan H. Schönherra0595002017-09-06 00:27:19 +02008907 ++vcpu->stat.signal_exits;
8908 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +03008909 goto out;
8910 }
8911
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08008912 if (kvm_run->kvm_valid_regs & ~KVM_SYNC_X86_VALID_FIELDS) {
Ken Hofsass01643c52018-01-31 16:03:36 -08008913 r = -EINVAL;
8914 goto out;
8915 }
8916
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08008917 if (kvm_run->kvm_dirty_regs) {
Ken Hofsass01643c52018-01-31 16:03:36 -08008918 r = sync_regs(vcpu);
8919 if (r != 0)
8920 goto out;
8921 }
8922
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008923 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +02008924 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +01008925 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
8926 r = -EINVAL;
8927 goto out;
8928 }
8929 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008930
Gleb Natapov716d51a2012-09-03 15:24:26 +03008931 if (unlikely(vcpu->arch.complete_userspace_io)) {
8932 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
8933 vcpu->arch.complete_userspace_io = NULL;
8934 r = cui(vcpu);
8935 if (r <= 0)
Peter Xu5663d8f2017-12-12 17:15:02 +01008936 goto out;
Gleb Natapov716d51a2012-09-03 15:24:26 +03008937 } else
8938 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02008939
Paolo Bonzini460df4c2017-02-08 11:50:15 +01008940 if (kvm_run->immediate_exit)
8941 r = -EINTR;
8942 else
8943 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008944
8945out:
Peter Xu5663d8f2017-12-12 17:15:02 +01008946 kvm_put_guest_fpu(vcpu);
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08008947 if (kvm_run->kvm_valid_regs)
Ken Hofsass01643c52018-01-31 16:03:36 -08008948 store_regs(vcpu);
Marcelo Tosattif1d86e42010-05-03 23:04:27 -03008949 post_kvm_run_save(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +01008950 kvm_sigset_deactivate(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008951
Christoffer Dallaccb7572017-12-04 21:35:25 +01008952 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008953 return r;
8954}
8955
Ken Hofsass01643c52018-01-31 16:03:36 -08008956static void __get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008957{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008958 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
8959 /*
8960 * We are here if userspace calls get_regs() in the middle of
8961 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +08008962 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008963 * that usually, but some bad designed PV devices (vmware
8964 * backdoor interface) need this to work
8965 */
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008966 emulator_writeback_register_cache(vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008967 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
8968 }
Sean Christophersonde3cd112019-04-30 10:36:17 -07008969 regs->rax = kvm_rax_read(vcpu);
8970 regs->rbx = kvm_rbx_read(vcpu);
8971 regs->rcx = kvm_rcx_read(vcpu);
8972 regs->rdx = kvm_rdx_read(vcpu);
8973 regs->rsi = kvm_rsi_read(vcpu);
8974 regs->rdi = kvm_rdi_read(vcpu);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02008975 regs->rsp = kvm_rsp_read(vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -07008976 regs->rbp = kvm_rbp_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008977#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -07008978 regs->r8 = kvm_r8_read(vcpu);
8979 regs->r9 = kvm_r9_read(vcpu);
8980 regs->r10 = kvm_r10_read(vcpu);
8981 regs->r11 = kvm_r11_read(vcpu);
8982 regs->r12 = kvm_r12_read(vcpu);
8983 regs->r13 = kvm_r13_read(vcpu);
8984 regs->r14 = kvm_r14_read(vcpu);
8985 regs->r15 = kvm_r15_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008986#endif
8987
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03008988 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +02008989 regs->rflags = kvm_get_rflags(vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -08008990}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008991
Ken Hofsass01643c52018-01-31 16:03:36 -08008992int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
8993{
8994 vcpu_load(vcpu);
8995 __get_regs(vcpu, regs);
Christoffer Dall1fc9b762017-12-04 21:35:26 +01008996 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008997 return 0;
8998}
8999
Ken Hofsass01643c52018-01-31 16:03:36 -08009000static void __set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009001{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02009002 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
9003 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
9004
Sean Christophersonde3cd112019-04-30 10:36:17 -07009005 kvm_rax_write(vcpu, regs->rax);
9006 kvm_rbx_write(vcpu, regs->rbx);
9007 kvm_rcx_write(vcpu, regs->rcx);
9008 kvm_rdx_write(vcpu, regs->rdx);
9009 kvm_rsi_write(vcpu, regs->rsi);
9010 kvm_rdi_write(vcpu, regs->rdi);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02009011 kvm_rsp_write(vcpu, regs->rsp);
Sean Christophersonde3cd112019-04-30 10:36:17 -07009012 kvm_rbp_write(vcpu, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009013#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -07009014 kvm_r8_write(vcpu, regs->r8);
9015 kvm_r9_write(vcpu, regs->r9);
9016 kvm_r10_write(vcpu, regs->r10);
9017 kvm_r11_write(vcpu, regs->r11);
9018 kvm_r12_write(vcpu, regs->r12);
9019 kvm_r13_write(vcpu, regs->r13);
9020 kvm_r14_write(vcpu, regs->r14);
9021 kvm_r15_write(vcpu, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009022#endif
9023
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009024 kvm_rip_write(vcpu, regs->rip);
Wanpeng Lid73235d2017-12-07 00:30:08 -08009025 kvm_set_rflags(vcpu, regs->rflags | X86_EFLAGS_FIXED);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009026
Jan Kiszkab4f14ab2008-04-30 17:59:04 +02009027 vcpu->arch.exception.pending = false;
9028
Avi Kivity3842d132010-07-27 12:30:24 +03009029 kvm_make_request(KVM_REQ_EVENT, vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -08009030}
Avi Kivity3842d132010-07-27 12:30:24 +03009031
Ken Hofsass01643c52018-01-31 16:03:36 -08009032int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
9033{
9034 vcpu_load(vcpu);
9035 __set_regs(vcpu, regs);
Christoffer Dall875656f2017-12-04 21:35:27 +01009036 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009037 return 0;
9038}
9039
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009040void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
9041{
9042 struct kvm_segment cs;
9043
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02009044 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009045 *db = cs.db;
9046 *l = cs.l;
9047}
9048EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
9049
Ken Hofsass01643c52018-01-31 16:03:36 -08009050static void __get_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009051{
Gleb Natapov89a27f42010-02-16 10:51:48 +02009052 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009053
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02009054 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
9055 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
9056 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
9057 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
9058 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
9059 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009060
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02009061 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
9062 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009063
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009064 kvm_x86_ops.get_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02009065 sregs->idt.limit = dt.size;
9066 sregs->idt.base = dt.address;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009067 kvm_x86_ops.get_gdt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02009068 sregs->gdt.limit = dt.size;
9069 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009070
Avi Kivity4d4ec082009-12-29 18:07:30 +02009071 sregs->cr0 = kvm_read_cr0(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009072 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02009073 sregs->cr3 = kvm_read_cr3(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +02009074 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02009075 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +02009076 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009077 sregs->apic_base = kvm_get_apic_base(vcpu);
9078
Jordan Borgner0e96f312018-10-28 12:58:28 +00009079 memset(sregs->interrupt_bitmap, 0, sizeof(sregs->interrupt_bitmap));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009080
Liran Alon04140b42018-03-23 03:01:31 +03009081 if (vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +03009082 set_bit(vcpu->arch.interrupt.nr,
9083 (unsigned long *)sregs->interrupt_bitmap);
Ken Hofsass01643c52018-01-31 16:03:36 -08009084}
Gleb Natapov16d7a192009-04-21 17:45:10 +03009085
Ken Hofsass01643c52018-01-31 16:03:36 -08009086int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
9087 struct kvm_sregs *sregs)
9088{
9089 vcpu_load(vcpu);
9090 __get_sregs(vcpu, sregs);
Christoffer Dallbcdec412017-12-04 21:35:28 +01009091 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009092 return 0;
9093}
9094
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03009095int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
9096 struct kvm_mp_state *mp_state)
9097{
Christoffer Dallfd232562017-12-04 21:35:30 +01009098 vcpu_load(vcpu);
Sean Christophersonf958bd22019-12-09 12:19:31 -08009099 if (kvm_mpx_supported())
9100 kvm_load_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +01009101
Jan Kiszka66450a22013-03-13 12:42:34 +01009102 kvm_apic_accept_events(vcpu);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05309103 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED &&
9104 vcpu->arch.pv.pv_unhalted)
9105 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
9106 else
9107 mp_state->mp_state = vcpu->arch.mp_state;
9108
Sean Christophersonf958bd22019-12-09 12:19:31 -08009109 if (kvm_mpx_supported())
9110 kvm_put_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +01009111 vcpu_put(vcpu);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03009112 return 0;
9113}
9114
9115int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
9116 struct kvm_mp_state *mp_state)
9117{
Christoffer Dalle83dff52017-12-04 21:35:31 +01009118 int ret = -EINVAL;
9119
9120 vcpu_load(vcpu);
9121
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01009122 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +01009123 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
Christoffer Dalle83dff52017-12-04 21:35:31 +01009124 goto out;
Jan Kiszka66450a22013-03-13 12:42:34 +01009125
Liran Alon27cbe7d2019-11-11 11:16:40 +02009126 /*
9127 * KVM_MP_STATE_INIT_RECEIVED means the processor is in
9128 * INIT state; latched init should be reported using
9129 * KVM_SET_VCPU_EVENTS, so reject it here.
9130 */
9131 if ((kvm_vcpu_latch_init(vcpu) || vcpu->arch.smi_pending) &&
David Hildenbrand28bf2882017-03-23 11:46:03 +01009132 (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED ||
9133 mp_state->mp_state == KVM_MP_STATE_INIT_RECEIVED))
Christoffer Dalle83dff52017-12-04 21:35:31 +01009134 goto out;
David Hildenbrand28bf2882017-03-23 11:46:03 +01009135
Jan Kiszka66450a22013-03-13 12:42:34 +01009136 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
9137 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
9138 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
9139 } else
9140 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +03009141 kvm_make_request(KVM_REQ_EVENT, vcpu);
Christoffer Dalle83dff52017-12-04 21:35:31 +01009142
9143 ret = 0;
9144out:
9145 vcpu_put(vcpu);
9146 return ret;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03009147}
9148
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01009149int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
9150 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009151{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08009152 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03009153 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009154
Mohammed Gamal8ec47222010-08-16 00:47:01 +03009155 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02009156
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01009157 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09009158 has_error_code, error_code);
Sean Christopherson10517782019-08-27 14:40:35 -07009159 if (ret) {
9160 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
9161 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
9162 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07009163 return 0;
Sean Christopherson10517782019-08-27 14:40:35 -07009164 }
Gleb Natapovc6975182010-02-18 12:15:01 +02009165
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09009166 kvm_rip_write(vcpu, ctxt->eip);
9167 kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07009168 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02009169}
9170EXPORT_SYMBOL_GPL(kvm_task_switch);
9171
Peng Hao3140c152018-04-02 09:15:32 +08009172static int kvm_valid_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Lan Tianyuf2981032017-12-14 03:01:52 -05009173{
Tianyu Lan37b95952018-01-16 17:34:07 +08009174 if ((sregs->efer & EFER_LME) && (sregs->cr0 & X86_CR0_PG)) {
Lan Tianyuf2981032017-12-14 03:01:52 -05009175 /*
9176 * When EFER.LME and CR0.PG are set, the processor is in
9177 * 64-bit mode (though maybe in a 32-bit code segment).
9178 * CR4.PAE and EFER.LMA must be set.
9179 */
Tianyu Lan37b95952018-01-16 17:34:07 +08009180 if (!(sregs->cr4 & X86_CR4_PAE)
Lan Tianyuf2981032017-12-14 03:01:52 -05009181 || !(sregs->efer & EFER_LMA))
9182 return -EINVAL;
9183 } else {
9184 /*
9185 * Not in 64-bit mode: EFER.LMA is clear and the code
9186 * segment cannot be 64-bit.
9187 */
9188 if (sregs->efer & EFER_LMA || sregs->cs.l)
9189 return -EINVAL;
9190 }
9191
Wanpeng Li3ca94192019-09-18 17:50:10 +08009192 return kvm_valid_cr4(vcpu, sregs->cr4);
Lan Tianyuf2981032017-12-14 03:01:52 -05009193}
9194
Ken Hofsass01643c52018-01-31 16:03:36 -08009195static int __set_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009196{
Jan Kiszka58cb6282014-01-24 16:48:44 +01009197 struct msr_data apic_base_msr;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009198 int mmu_reset_needed = 0;
Wei Huangc4d21882018-05-01 09:49:54 -05009199 int cpuid_update_needed = 0;
Xiao Guangrong63f42e02011-01-12 15:39:18 +08009200 int pending_vec, max_bits, idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +02009201 struct desc_ptr dt;
Christoffer Dallb4ef9d42017-12-04 21:35:29 +01009202 int ret = -EINVAL;
9203
Lan Tianyuf2981032017-12-14 03:01:52 -05009204 if (kvm_valid_sregs(vcpu, sregs))
Eric Biggers8dbfb2b2017-12-20 16:24:27 -08009205 goto out;
Lan Tianyuf2981032017-12-14 03:01:52 -05009206
Jim Mattsond3802282017-08-10 10:14:13 -07009207 apic_base_msr.data = sregs->apic_base;
9208 apic_base_msr.host_initiated = true;
9209 if (kvm_set_apic_base(vcpu, &apic_base_msr))
Christoffer Dallb4ef9d42017-12-04 21:35:29 +01009210 goto out;
Petr Matousek6d1068b2012-11-06 19:24:07 +01009211
Gleb Natapov89a27f42010-02-16 10:51:48 +02009212 dt.size = sregs->idt.limit;
9213 dt.address = sregs->idt.base;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009214 kvm_x86_ops.set_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02009215 dt.size = sregs->gdt.limit;
9216 dt.address = sregs->gdt.base;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009217 kvm_x86_ops.set_gdt(vcpu, &dt);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009218
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009219 vcpu->arch.cr2 = sregs->cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02009220 mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +02009221 vcpu->arch.cr3 = sregs->cr3;
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07009222 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009223
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02009224 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009225
Avi Kivityf6801df2010-01-21 15:31:50 +02009226 mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009227 kvm_x86_ops.set_efer(vcpu, sregs->efer);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009228
Avi Kivity4d4ec082009-12-29 18:07:30 +02009229 mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009230 kvm_x86_ops.set_cr0(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +00009231 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009232
Avi Kivityfc78f512009-12-07 12:16:48 +02009233 mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Wei Huangc4d21882018-05-01 09:49:54 -05009234 cpuid_update_needed |= ((kvm_read_cr4(vcpu) ^ sregs->cr4) &
9235 (X86_CR4_OSXSAVE | X86_CR4_PKE));
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009236 kvm_x86_ops.set_cr4(vcpu, sregs->cr4);
Wei Huangc4d21882018-05-01 09:49:54 -05009237 if (cpuid_update_needed)
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08009238 kvm_update_cpuid_runtime(vcpu);
Xiao Guangrong63f42e02011-01-12 15:39:18 +08009239
9240 idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzinibf03d4f2019-06-06 18:52:44 +02009241 if (is_pae_paging(vcpu)) {
Avi Kivity9f8fe502010-12-05 17:30:00 +02009242 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02009243 mmu_reset_needed = 1;
9244 }
Xiao Guangrong63f42e02011-01-12 15:39:18 +08009245 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009246
9247 if (mmu_reset_needed)
9248 kvm_mmu_reset_context(vcpu);
9249
Michael S. Tsirkina50abc32012-09-05 20:00:52 +03009250 max_bits = KVM_NR_INTERRUPTS;
Gleb Natapov923c61b2009-05-11 13:35:48 +03009251 pending_vec = find_first_bit(
9252 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
9253 if (pending_vec < max_bits) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009254 kvm_queue_interrupt(vcpu, pending_vec, false);
Gleb Natapov923c61b2009-05-11 13:35:48 +03009255 pr_debug("Set back pending irq %d\n", pending_vec);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009256 }
9257
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02009258 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
9259 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
9260 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
9261 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
9262 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
9263 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009264
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02009265 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
9266 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009267
Mikhail Ershov5f0269f2009-08-03 14:58:25 +03009268 update_cr8_intercept(vcpu);
9269
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03009270 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03009271 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03009272 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +02009273 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03009274 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
9275
Avi Kivity3842d132010-07-27 12:30:24 +03009276 kvm_make_request(KVM_REQ_EVENT, vcpu);
9277
Christoffer Dallb4ef9d42017-12-04 21:35:29 +01009278 ret = 0;
9279out:
Ken Hofsass01643c52018-01-31 16:03:36 -08009280 return ret;
9281}
9282
9283int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
9284 struct kvm_sregs *sregs)
9285{
9286 int ret;
9287
9288 vcpu_load(vcpu);
9289 ret = __set_sregs(vcpu, sregs);
Christoffer Dallb4ef9d42017-12-04 21:35:29 +01009290 vcpu_put(vcpu);
9291 return ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009292}
9293
Jan Kiszkad0bfb942008-12-15 13:52:10 +01009294int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
9295 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009296{
Jan Kiszka355be0b2009-10-03 00:31:21 +02009297 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +01009298 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009299
Christoffer Dall66b56562017-12-04 21:35:33 +01009300 vcpu_load(vcpu);
9301
Jan Kiszka4f926bf22009-10-30 12:46:59 +01009302 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
9303 r = -EBUSY;
9304 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +03009305 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +01009306 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
9307 kvm_queue_exception(vcpu, DB_VECTOR);
9308 else
9309 kvm_queue_exception(vcpu, BP_VECTOR);
9310 }
9311
Jan Kiszka91586a32009-10-05 13:07:21 +02009312 /*
9313 * Read rflags as long as potentially injected trace flags are still
9314 * filtered out.
9315 */
9316 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02009317
9318 vcpu->guest_debug = dbg->control;
9319 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
9320 vcpu->guest_debug = 0;
9321
9322 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +01009323 for (i = 0; i < KVM_NR_DB_REGS; ++i)
9324 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +02009325 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01009326 } else {
9327 for (i = 0; i < KVM_NR_DB_REGS; i++)
9328 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01009329 }
Jan Kiszkac8639012012-09-21 05:42:55 +02009330 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +01009331
Jan Kiszkaf92653e2010-02-23 17:47:55 +01009332 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
9333 vcpu->arch.singlestep_rip = kvm_rip_read(vcpu) +
9334 get_segment_base(vcpu, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009335
Jan Kiszka91586a32009-10-05 13:07:21 +02009336 /*
9337 * Trigger an rflags update that will inject or remove the trace
9338 * flags.
9339 */
9340 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01009341
Paolo Bonzini69869822020-07-10 17:48:06 +02009342 kvm_x86_ops.update_exception_bitmap(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02009343
Jan Kiszka4f926bf22009-10-30 12:46:59 +01009344 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009345
Avi Kivity2122ff52010-05-13 11:25:04 +03009346out:
Christoffer Dall66b56562017-12-04 21:35:33 +01009347 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009348 return r;
9349}
9350
9351/*
Zhang Xiantao8b006792007-11-16 13:05:55 +08009352 * Translate a guest virtual address to a guest physical address.
9353 */
9354int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
9355 struct kvm_translation *tr)
9356{
9357 unsigned long vaddr = tr->linear_address;
9358 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009359 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +08009360
Christoffer Dall1da5b612017-12-04 21:35:32 +01009361 vcpu_load(vcpu);
9362
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009363 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +02009364 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009365 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +08009366 tr->physical_address = gpa;
9367 tr->valid = gpa != UNMAPPED_GVA;
9368 tr->writeable = 1;
9369 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +08009370
Christoffer Dall1da5b612017-12-04 21:35:32 +01009371 vcpu_put(vcpu);
Zhang Xiantao8b006792007-11-16 13:05:55 +08009372 return 0;
9373}
9374
Hollis Blanchardd0752062007-10-31 17:24:25 -05009375int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
9376{
Christoffer Dall13931232017-12-04 21:35:34 +01009377 struct fxregs_state *fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05009378
Christoffer Dall13931232017-12-04 21:35:34 +01009379 vcpu_load(vcpu);
9380
Marc Orrb666a4b2018-11-06 14:53:56 -08009381 fxsave = &vcpu->arch.guest_fpu->state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05009382 memcpy(fpu->fpr, fxsave->st_space, 128);
9383 fpu->fcw = fxsave->cwd;
9384 fpu->fsw = fxsave->swd;
9385 fpu->ftwx = fxsave->twd;
9386 fpu->last_opcode = fxsave->fop;
9387 fpu->last_ip = fxsave->rip;
9388 fpu->last_dp = fxsave->rdp;
Jordan Borgner0e96f312018-10-28 12:58:28 +00009389 memcpy(fpu->xmm, fxsave->xmm_space, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -05009390
Christoffer Dall13931232017-12-04 21:35:34 +01009391 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -05009392 return 0;
9393}
9394
9395int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
9396{
Christoffer Dall6a96bc72017-12-04 21:35:35 +01009397 struct fxregs_state *fxsave;
9398
9399 vcpu_load(vcpu);
9400
Marc Orrb666a4b2018-11-06 14:53:56 -08009401 fxsave = &vcpu->arch.guest_fpu->state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05009402
Hollis Blanchardd0752062007-10-31 17:24:25 -05009403 memcpy(fxsave->st_space, fpu->fpr, 128);
9404 fxsave->cwd = fpu->fcw;
9405 fxsave->swd = fpu->fsw;
9406 fxsave->twd = fpu->ftwx;
9407 fxsave->fop = fpu->last_opcode;
9408 fxsave->rip = fpu->last_ip;
9409 fxsave->rdp = fpu->last_dp;
Jordan Borgner0e96f312018-10-28 12:58:28 +00009410 memcpy(fxsave->xmm_space, fpu->xmm, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -05009411
Christoffer Dall6a96bc72017-12-04 21:35:35 +01009412 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -05009413 return 0;
9414}
9415
Ken Hofsass01643c52018-01-31 16:03:36 -08009416static void store_regs(struct kvm_vcpu *vcpu)
9417{
9418 BUILD_BUG_ON(sizeof(struct kvm_sync_regs) > SYNC_REGS_SIZE_BYTES);
9419
9420 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_REGS)
9421 __get_regs(vcpu, &vcpu->run->s.regs.regs);
9422
9423 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_SREGS)
9424 __get_sregs(vcpu, &vcpu->run->s.regs.sregs);
9425
9426 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_EVENTS)
9427 kvm_vcpu_ioctl_x86_get_vcpu_events(
9428 vcpu, &vcpu->run->s.regs.events);
9429}
9430
9431static int sync_regs(struct kvm_vcpu *vcpu)
9432{
9433 if (vcpu->run->kvm_dirty_regs & ~KVM_SYNC_X86_VALID_FIELDS)
9434 return -EINVAL;
9435
9436 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_REGS) {
9437 __set_regs(vcpu, &vcpu->run->s.regs.regs);
9438 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_REGS;
9439 }
9440 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_SREGS) {
9441 if (__set_sregs(vcpu, &vcpu->run->s.regs.sregs))
9442 return -EINVAL;
9443 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_SREGS;
9444 }
9445 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_EVENTS) {
9446 if (kvm_vcpu_ioctl_x86_set_vcpu_events(
9447 vcpu, &vcpu->run->s.regs.events))
9448 return -EINVAL;
9449 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_EVENTS;
9450 }
9451
9452 return 0;
9453}
9454
Ingo Molnar0ee6a512015-04-27 06:58:22 +02009455static void fx_init(struct kvm_vcpu *vcpu)
Hollis Blanchardd0752062007-10-31 17:24:25 -05009456{
Marc Orrb666a4b2018-11-06 14:53:56 -08009457 fpstate_init(&vcpu->arch.guest_fpu->state);
Borislav Petkov782511b2016-04-04 22:25:03 +02009458 if (boot_cpu_has(X86_FEATURE_XSAVES))
Marc Orrb666a4b2018-11-06 14:53:56 -08009459 vcpu->arch.guest_fpu->state.xsave.header.xcomp_bv =
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01009460 host_xcr0 | XSTATE_COMPACTION_ENABLED;
Hollis Blanchardd0752062007-10-31 17:24:25 -05009461
Dexuan Cui2acf9232010-06-10 11:27:12 +08009462 /*
9463 * Ensure guest xcr0 is valid for loading
9464 */
Dave Hansend91cab72015-09-02 16:31:26 -07009465 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Dexuan Cui2acf9232010-06-10 11:27:12 +08009466
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009467 vcpu->arch.cr0 |= X86_CR0_ET;
Hollis Blanchardd0752062007-10-31 17:24:25 -05009468}
Hollis Blanchardd0752062007-10-31 17:24:25 -05009469
Sean Christopherson897cc382019-12-18 13:55:09 -08009470int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009471{
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01009472 if (kvm_check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
Sean Christopherson897cc382019-12-18 13:55:09 -08009473 pr_warn_once("kvm: SMP vm created on host with unstable TSC; "
9474 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +08009475
Sean Christopherson897cc382019-12-18 13:55:09 -08009476 return 0;
Avi Kivity26e52152007-11-20 15:30:24 +02009477}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009478
Sean Christophersone529ef62019-12-18 13:55:15 -08009479int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
Avi Kivity26e52152007-11-20 15:30:24 +02009480{
Sean Christopherson95a0d012019-12-18 13:55:23 -08009481 struct page *page;
9482 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009483
Sean Christopherson95a0d012019-12-18 13:55:23 -08009484 if (!irqchip_in_kernel(vcpu->kvm) || kvm_vcpu_is_reset_bsp(vcpu))
9485 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
9486 else
9487 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
9488
9489 kvm_set_tsc_khz(vcpu, max_tsc_khz);
9490
9491 r = kvm_mmu_create(vcpu);
9492 if (r < 0)
9493 return r;
9494
9495 if (irqchip_in_kernel(vcpu->kvm)) {
Sean Christopherson95a0d012019-12-18 13:55:23 -08009496 r = kvm_create_lapic(vcpu, lapic_timer_advance_ns);
9497 if (r < 0)
9498 goto fail_mmu_destroy;
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06009499 if (kvm_apicv_activated(vcpu->kvm))
9500 vcpu->arch.apicv_active = true;
Sean Christopherson95a0d012019-12-18 13:55:23 -08009501 } else
9502 static_key_slow_inc(&kvm_no_apic_vcpu);
9503
9504 r = -ENOMEM;
9505
9506 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
9507 if (!page)
9508 goto fail_free_lapic;
9509 vcpu->arch.pio_data = page_address(page);
9510
9511 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
9512 GFP_KERNEL_ACCOUNT);
9513 if (!vcpu->arch.mce_banks)
9514 goto fail_free_pio_data;
9515 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
9516
9517 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask,
9518 GFP_KERNEL_ACCOUNT))
9519 goto fail_free_mce_banks;
9520
Sean Christophersonc9b8b072020-02-18 15:29:48 -08009521 if (!alloc_emulate_ctxt(vcpu))
9522 goto free_wbinvd_dirty_mask;
9523
Sean Christopherson95a0d012019-12-18 13:55:23 -08009524 vcpu->arch.user_fpu = kmem_cache_zalloc(x86_fpu_cache,
9525 GFP_KERNEL_ACCOUNT);
9526 if (!vcpu->arch.user_fpu) {
9527 pr_err("kvm: failed to allocate userspace's fpu\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -08009528 goto free_emulate_ctxt;
Sean Christopherson95a0d012019-12-18 13:55:23 -08009529 }
9530
9531 vcpu->arch.guest_fpu = kmem_cache_zalloc(x86_fpu_cache,
9532 GFP_KERNEL_ACCOUNT);
9533 if (!vcpu->arch.guest_fpu) {
9534 pr_err("kvm: failed to allocate vcpu's fpu\n");
9535 goto free_user_fpu;
9536 }
9537 fx_init(vcpu);
9538
Sean Christopherson95a0d012019-12-18 13:55:23 -08009539 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
9540
9541 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
9542
9543 kvm_async_pf_hash_reset(vcpu);
9544 kvm_pmu_init(vcpu);
9545
9546 vcpu->arch.pending_external_vector = -1;
9547 vcpu->arch.preempted_in_kernel = false;
9548
9549 kvm_hv_vcpu_init(vcpu);
9550
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009551 r = kvm_x86_ops.vcpu_create(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -08009552 if (r)
9553 goto free_guest_fpu;
Sean Christopherson5f73db12019-12-18 13:55:18 -08009554
Sean Christopherson0cf91352019-03-07 15:43:02 -08009555 vcpu->arch.arch_capabilities = kvm_get_arch_capabilities();
Jim Mattsone53d88af2018-10-30 12:20:21 -07009556 vcpu->arch.msr_platform_info = MSR_PLATFORM_INFO_CPUID_FAULT;
Xiao Guangrong19efffa2015-06-15 16:55:31 +08009557 kvm_vcpu_mtrr_init(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +01009558 vcpu_load(vcpu);
Nadav Amitd28bc9d2015-04-13 14:34:08 +03009559 kvm_vcpu_reset(vcpu, false);
Paolo Bonzinie1732992018-10-08 21:28:09 +02009560 kvm_init_mmu(vcpu, false);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009561 vcpu_put(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +01009562 return 0;
Sean Christopherson95a0d012019-12-18 13:55:23 -08009563
9564free_guest_fpu:
9565 kmem_cache_free(x86_fpu_cache, vcpu->arch.guest_fpu);
9566free_user_fpu:
9567 kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu);
Sean Christophersonc9b8b072020-02-18 15:29:48 -08009568free_emulate_ctxt:
9569 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson95a0d012019-12-18 13:55:23 -08009570free_wbinvd_dirty_mask:
9571 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
9572fail_free_mce_banks:
9573 kfree(vcpu->arch.mce_banks);
9574fail_free_pio_data:
9575 free_page((unsigned long)vcpu->arch.pio_data);
9576fail_free_lapic:
9577 kvm_free_lapic(vcpu);
9578fail_mmu_destroy:
9579 kvm_mmu_destroy(vcpu);
9580 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009581}
9582
Dominik Dingel31928aa2014-12-04 15:47:07 +01009583void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -02009584{
Will Auld8fe8ab42012-11-29 12:42:12 -08009585 struct msr_data msr;
Andrew Jones332967a2014-02-28 12:52:55 +01009586 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -02009587
Roman Kagand3457c82017-07-14 17:13:20 +03009588 kvm_hv_vcpu_postcreate(vcpu);
9589
Christoffer Dallec7660c2017-12-04 21:35:23 +01009590 if (mutex_lock_killable(&vcpu->mutex))
Dominik Dingel31928aa2014-12-04 15:47:07 +01009591 return;
Christoffer Dallec7660c2017-12-04 21:35:23 +01009592 vcpu_load(vcpu);
Will Auld8fe8ab42012-11-29 12:42:12 -08009593 msr.data = 0x0;
9594 msr.index = MSR_IA32_TSC;
9595 msr.host_initiated = true;
9596 kvm_write_tsc(vcpu, &msr);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02009597 vcpu_put(vcpu);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03009598
9599 /* poll control enabled by default */
9600 vcpu->arch.msr_kvm_poll_control = 1;
9601
Christoffer Dallec7660c2017-12-04 21:35:23 +01009602 mutex_unlock(&vcpu->mutex);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02009603
Wanpeng Lib34de572020-02-28 11:18:41 +08009604 if (kvmclock_periodic_sync && vcpu->vcpu_idx == 0)
9605 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
9606 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02009607}
9608
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06009609void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009610{
Paolo Bonzini4cbc4182020-01-30 18:47:38 +01009611 struct gfn_to_pfn_cache *cache = &vcpu->arch.st.cache;
Sean Christopherson95a0d012019-12-18 13:55:23 -08009612 int idx;
Gleb Natapov344d9582010-10-14 11:22:50 +02009613
Paolo Bonzini4cbc4182020-01-30 18:47:38 +01009614 kvm_release_pfn(cache->pfn, cache->dirty, cache);
9615
Sean Christopherson50b143e2019-12-18 13:55:07 -08009616 kvmclock_reset(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009617
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009618 kvm_x86_ops.vcpu_free(vcpu);
Sean Christopherson50b143e2019-12-18 13:55:07 -08009619
Sean Christophersonc9b8b072020-02-18 15:29:48 -08009620 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson50b143e2019-12-18 13:55:07 -08009621 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
9622 kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu);
9623 kmem_cache_free(x86_fpu_cache, vcpu->arch.guest_fpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -08009624
9625 kvm_hv_vcpu_uninit(vcpu);
9626 kvm_pmu_destroy(vcpu);
9627 kfree(vcpu->arch.mce_banks);
9628 kvm_free_lapic(vcpu);
9629 idx = srcu_read_lock(&vcpu->kvm->srcu);
9630 kvm_mmu_destroy(vcpu);
9631 srcu_read_unlock(&vcpu->kvm->srcu, idx);
9632 free_page((unsigned long)vcpu->arch.pio_data);
9633 if (!lapic_in_kernel(vcpu))
9634 static_key_slow_dec(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009635}
9636
Nadav Amitd28bc9d2015-04-13 14:34:08 +03009637void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009638{
Radim Krčmářb7e31be2018-03-01 15:24:25 +01009639 kvm_lapic_reset(vcpu, init_event);
9640
Paolo Bonzinie69fab52015-06-04 10:44:44 +02009641 vcpu->arch.hflags = 0;
9642
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009643 vcpu->arch.smi_pending = 0;
Liran Alon52797bf2017-11-15 13:43:14 +02009644 vcpu->arch.smi_count = 0;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009645 atomic_set(&vcpu->arch.nmi_queued, 0);
9646 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +02009647 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +03009648 kvm_clear_interrupt_queue(vcpu);
9649 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +02009650
Jan Kiszka42dbaa52008-12-15 13:52:10 +01009651 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03009652 kvm_update_dr0123(vcpu);
Nadav Amit6f43ed02014-07-15 17:37:46 +03009653 vcpu->arch.dr6 = DR6_INIT;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01009654 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02009655 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01009656
Nadav Amit11190222015-04-02 03:10:38 +03009657 vcpu->arch.cr2 = 0;
9658
Avi Kivity3842d132010-07-27 12:30:24 +03009659 kvm_make_request(KVM_REQ_EVENT, vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02009660 vcpu->arch.apf.msr_en_val = 0;
9661 vcpu->arch.apf.msr_int_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -04009662 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +03009663
Glauber Costa12f9a482011-02-01 14:16:40 -05009664 kvmclock_reset(vcpu);
9665
Gleb Natapovaf585b92010-10-14 11:22:46 +02009666 kvm_clear_async_pf_completion_queue(vcpu);
9667 kvm_async_pf_hash_reset(vcpu);
9668 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009669
Wanpeng Lia554d202017-10-11 05:10:19 -07009670 if (kvm_mpx_supported()) {
9671 void *mpx_state_buffer;
9672
9673 /*
9674 * To avoid have the INIT path from kvm_apic_has_events() that be
9675 * called with loaded FPU and does not let userspace fix the state.
9676 */
Rik van Rielf775b132017-11-14 16:54:23 -05009677 if (init_event)
9678 kvm_put_guest_fpu(vcpu);
Marc Orrb666a4b2018-11-06 14:53:56 -08009679 mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave,
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02009680 XFEATURE_BNDREGS);
Wanpeng Lia554d202017-10-11 05:10:19 -07009681 if (mpx_state_buffer)
9682 memset(mpx_state_buffer, 0, sizeof(struct mpx_bndreg_state));
Marc Orrb666a4b2018-11-06 14:53:56 -08009683 mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave,
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02009684 XFEATURE_BNDCSR);
Wanpeng Lia554d202017-10-11 05:10:19 -07009685 if (mpx_state_buffer)
9686 memset(mpx_state_buffer, 0, sizeof(struct mpx_bndcsr));
Rik van Rielf775b132017-11-14 16:54:23 -05009687 if (init_event)
9688 kvm_load_guest_fpu(vcpu);
Wanpeng Lia554d202017-10-11 05:10:19 -07009689 }
9690
Paolo Bonzini64d60672015-05-07 11:36:11 +02009691 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +03009692 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009693 vcpu->arch.smbase = 0x30000;
Kyle Hueydb2336a2017-03-20 01:16:28 -07009694
Kyle Hueydb2336a2017-03-20 01:16:28 -07009695 vcpu->arch.msr_misc_features_enables = 0;
Wanpeng Lia554d202017-10-11 05:10:19 -07009696
9697 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Paolo Bonzini64d60672015-05-07 11:36:11 +02009698 }
Gleb Natapovf5132b02011-11-10 14:57:22 +02009699
Julian Stecklina66f7b722012-12-05 15:26:19 +01009700 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
9701 vcpu->arch.regs_avail = ~0;
9702 vcpu->arch.regs_dirty = ~0;
9703
Wanpeng Lia554d202017-10-11 05:10:19 -07009704 vcpu->arch.ia32_xss = 0;
9705
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009706 kvm_x86_ops.vcpu_reset(vcpu, init_event);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009707}
9708
Paolo Bonzini2b4a2732014-11-24 14:35:24 +01009709void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +01009710{
9711 struct kvm_segment cs;
9712
9713 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
9714 cs.selector = vector << 8;
9715 cs.base = vector << 12;
9716 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
9717 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009718}
9719
Radim Krčmář13a34e02014-08-28 15:13:03 +02009720int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009721{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10009722 struct kvm *kvm;
9723 struct kvm_vcpu *vcpu;
9724 int i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02009725 int ret;
9726 u64 local_tsc;
9727 u64 max_tsc = 0;
9728 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +03009729
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07009730 kvm_user_return_msr_cpu_online();
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009731 ret = kvm_x86_ops.hardware_enable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02009732 if (ret != 0)
9733 return ret;
9734
Andy Lutomirski4ea16362015-06-25 18:44:07 +02009735 local_tsc = rdtsc();
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01009736 stable = !kvm_check_tsc_unstable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02009737 list_for_each_entry(kvm, &vm_list, vm_list) {
9738 kvm_for_each_vcpu(i, vcpu, kvm) {
9739 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +08009740 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02009741 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
9742 backwards_tsc = true;
9743 if (vcpu->arch.last_host_tsc > max_tsc)
9744 max_tsc = vcpu->arch.last_host_tsc;
9745 }
9746 }
9747 }
9748
9749 /*
9750 * Sometimes, even reliable TSCs go backwards. This happens on
9751 * platforms that reset TSC during suspend or hibernate actions, but
9752 * maintain synchronization. We must compensate. Fortunately, we can
9753 * detect that condition here, which happens early in CPU bringup,
9754 * before any KVM threads can be running. Unfortunately, we can't
9755 * bring the TSCs fully up to date with real time, as we aren't yet far
9756 * enough into CPU bringup that we know how much real time has actually
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +02009757 * elapsed; our helper function, ktime_get_boottime_ns() will be using boot
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02009758 * variables that haven't been updated yet.
9759 *
9760 * So we simply find the maximum observed TSC above, then record the
9761 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
9762 * the adjustment will be applied. Note that we accumulate
9763 * adjustments, in case multiple suspend cycles happen before some VCPU
9764 * gets a chance to run again. In the event that no KVM threads get a
9765 * chance to run, we will miss the entire elapsed period, as we'll have
9766 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
9767 * loose cycle time. This isn't too big a deal, since the loss will be
9768 * uniform across all VCPUs (not to mention the scenario is extremely
9769 * unlikely). It is possible that a second hibernate recovery happens
9770 * much faster than a first, causing the observed TSC here to be
9771 * smaller; this would require additional padding adjustment, which is
9772 * why we set last_host_tsc to the local tsc observed here.
9773 *
9774 * N.B. - this code below runs only on platforms with reliable TSC,
9775 * as that is the only way backwards_tsc is set above. Also note
9776 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
9777 * have the same delta_cyc adjustment applied if backwards_tsc
9778 * is detected. Note further, this adjustment is only done once,
9779 * as we reset last_host_tsc on all VCPUs to stop this from being
9780 * called multiple times (one for each physical CPU bringup).
9781 *
Guo Chao4a969982012-06-28 15:17:27 +08009782 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02009783 * will be compensated by the logic in vcpu_load, which sets the TSC to
9784 * catchup mode. This will catchup all VCPUs to real time, but cannot
9785 * guarantee that they stay in perfect synchronization.
9786 */
9787 if (backwards_tsc) {
9788 u64 delta_cyc = max_tsc - local_tsc;
9789 list_for_each_entry(kvm, &vm_list, vm_list) {
Ladi Proseka826faf2017-06-26 09:56:43 +02009790 kvm->arch.backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02009791 kvm_for_each_vcpu(i, vcpu, kvm) {
9792 vcpu->arch.tsc_offset_adjustment += delta_cyc;
9793 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08009794 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02009795 }
9796
9797 /*
9798 * We have to disable TSC offset matching.. if you were
9799 * booting a VM while issuing an S4 host suspend....
9800 * you may have some problem. Solving this issue is
9801 * left as an exercise to the reader.
9802 */
9803 kvm->arch.last_tsc_nsec = 0;
9804 kvm->arch.last_tsc_write = 0;
9805 }
9806
9807 }
9808 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009809}
9810
Radim Krčmář13a34e02014-08-28 15:13:03 +02009811void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009812{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009813 kvm_x86_ops.hardware_disable();
Radim Krčmář13a34e02014-08-28 15:13:03 +02009814 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009815}
9816
Sean Christophersonb9904082020-03-21 13:25:55 -07009817int kvm_arch_hardware_setup(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009818{
Sean Christophersond008dfd2020-03-21 13:25:56 -07009819 struct kvm_x86_init_ops *ops = opaque;
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03009820 int r;
9821
Sean Christopherson91661982020-03-02 15:57:06 -08009822 rdmsrl_safe(MSR_EFER, &host_efer);
9823
Paolo Bonzini408e9a32020-03-05 16:11:56 +01009824 if (boot_cpu_has(X86_FEATURE_XSAVES))
9825 rdmsrl(MSR_IA32_XSS, host_xss);
9826
Sean Christophersond008dfd2020-03-21 13:25:56 -07009827 r = ops->hardware_setup();
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03009828 if (r != 0)
9829 return r;
9830
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009831 memcpy(&kvm_x86_ops, ops->runtime_ops, sizeof(kvm_x86_ops));
Sean Christopherson69c6f692020-03-21 13:25:59 -07009832
Paolo Bonzini408e9a32020-03-05 16:11:56 +01009833 if (!kvm_cpu_cap_has(X86_FEATURE_XSAVES))
9834 supported_xss = 0;
9835
Paolo Bonzini139f7422020-05-05 09:40:46 -04009836#define __kvm_cpu_cap_has(UNUSED_, f) kvm_cpu_cap_has(f)
9837 cr4_reserved_bits = __cr4_reserved_bits(__kvm_cpu_cap_has, UNUSED_);
9838#undef __kvm_cpu_cap_has
Sean Christophersonb11306b2019-12-10 14:44:13 -08009839
Haozhong Zhang35181e82015-10-20 15:39:03 +08009840 if (kvm_has_tsc_control) {
9841 /*
9842 * Make sure the user can only configure tsc_khz values that
9843 * fit into a signed integer.
Marcelo Tosatti273ba452018-06-11 14:12:10 -03009844 * A min value is not calculated because it will always
Haozhong Zhang35181e82015-10-20 15:39:03 +08009845 * be 1 on all machines.
9846 */
9847 u64 max = min(0x7fffffffULL,
9848 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
9849 kvm_max_guest_tsc_khz = max;
9850
Haozhong Zhangad7218832015-10-20 15:39:02 +08009851 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +08009852 }
Haozhong Zhangad7218832015-10-20 15:39:02 +08009853
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03009854 kvm_init_msr_list();
9855 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009856}
9857
9858void kvm_arch_hardware_unsetup(void)
9859{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009860 kvm_x86_ops.hardware_unsetup();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009861}
9862
Sean Christophersonb9904082020-03-21 13:25:55 -07009863int kvm_arch_check_processor_compat(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009864{
Sean Christophersonf1cdecf2019-12-10 14:44:14 -08009865 struct cpuinfo_x86 *c = &cpu_data(smp_processor_id());
Sean Christophersond008dfd2020-03-21 13:25:56 -07009866 struct kvm_x86_init_ops *ops = opaque;
Sean Christophersonf1cdecf2019-12-10 14:44:14 -08009867
9868 WARN_ON(!irqs_disabled());
9869
Paolo Bonzini139f7422020-05-05 09:40:46 -04009870 if (__cr4_reserved_bits(cpu_has, c) !=
9871 __cr4_reserved_bits(cpu_has, &boot_cpu_data))
Sean Christophersonf1cdecf2019-12-10 14:44:14 -08009872 return -EIO;
9873
Sean Christophersond008dfd2020-03-21 13:25:56 -07009874 return ops->check_processor_compatibility();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009875}
9876
Paolo Bonzinid71ba782015-07-29 11:56:48 +02009877bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
9878{
9879 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
9880}
9881EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
9882
9883bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
9884{
9885 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
9886}
9887
Gleb Natapov54e98182012-08-05 15:58:32 +03009888struct static_key kvm_no_apic_vcpu __read_mostly;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01009889EXPORT_SYMBOL_GPL(kvm_no_apic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +03009890
Radim Krčmáře790d9e2014-08-21 18:08:05 +02009891void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
9892{
Like Xub35e5542019-10-27 18:52:43 +08009893 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
9894
Paolo Bonzinic595cee2018-07-02 13:07:14 +02009895 vcpu->arch.l1tf_flush_l1d = true;
Like Xub35e5542019-10-27 18:52:43 +08009896 if (pmu->version && unlikely(pmu->event_count)) {
9897 pmu->need_cleanup = true;
9898 kvm_make_request(KVM_REQ_PMU, vcpu);
9899 }
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009900 kvm_x86_ops.sched_in(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +02009901}
9902
Sean Christopherson562b6b02020-01-26 16:41:13 -08009903void kvm_arch_free_vm(struct kvm *kvm)
9904{
9905 kfree(kvm->arch.hyperv.hv_pa_pg);
9906 vfree(kvm);
9907}
9908
9909
Carsten Ottee08b9632012-01-04 10:25:20 +01009910int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009911{
Carsten Ottee08b9632012-01-04 10:25:20 +01009912 if (type)
9913 return -EINVAL;
9914
Paolo Bonzini6ef768f2014-11-20 13:45:31 +01009915 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08009916 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Sean Christopherson10605202019-09-12 19:46:10 -07009917 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Junaid Shahid1aa9b952019-11-04 20:26:00 +01009918 INIT_LIST_HEAD(&kvm->arch.lpage_disallowed_mmu_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03009919 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06009920 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009921
Sheng Yang5550af42008-10-15 20:15:06 +08009922 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
9923 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -06009924 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
9925 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
9926 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +08009927
Jan Kiszka038f8c12011-02-04 10:49:11 +01009928 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03009929 mutex_init(&kvm->arch.apic_map_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02009930 spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock);
9931
Paolo Bonzini8171cd62020-01-22 14:36:09 +01009932 kvm->arch.kvmclock_offset = -get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02009933 pvclock_update_vm_gtod_copy(kvm);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01009934
Drew Schmitt6fbbde92018-08-20 10:32:15 -07009935 kvm->arch.guest_can_read_msr_platform_info = true;
9936
Andrew Jones7e44e442014-02-28 12:52:54 +01009937 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +01009938 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +01009939
Roman Kagancbc02362018-02-01 16:48:31 +03009940 kvm_hv_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08009941 kvm_page_track_init(kvm);
Xiao Guangrong13d268c2016-02-24 17:51:16 +08009942 kvm_mmu_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08009943
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009944 return kvm_x86_ops.vm_init(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009945}
9946
Junaid Shahid1aa9b952019-11-04 20:26:00 +01009947int kvm_arch_post_init_vm(struct kvm *kvm)
9948{
9949 return kvm_mmu_post_init_vm(kvm);
9950}
9951
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009952static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
9953{
Christoffer Dallec7660c2017-12-04 21:35:23 +01009954 vcpu_load(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009955 kvm_mmu_unload(vcpu);
9956 vcpu_put(vcpu);
9957}
9958
9959static void kvm_free_vcpus(struct kvm *kvm)
9960{
9961 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03009962 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009963
9964 /*
9965 * Unpin any mmu pages first.
9966 */
Gleb Natapovaf585b92010-10-14 11:22:46 +02009967 kvm_for_each_vcpu(i, vcpu, kvm) {
9968 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +03009969 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02009970 }
Gleb Natapov988a2ca2009-06-09 15:56:29 +03009971 kvm_for_each_vcpu(i, vcpu, kvm)
Sean Christopherson4543bdc2019-12-18 13:55:14 -08009972 kvm_vcpu_destroy(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009973
Gleb Natapov988a2ca2009-06-09 15:56:29 +03009974 mutex_lock(&kvm->lock);
9975 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
9976 kvm->vcpus[i] = NULL;
9977
9978 atomic_set(&kvm->online_vcpus, 0);
9979 mutex_unlock(&kvm->lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009980}
9981
Sheng Yangad8ba2c2009-01-06 10:03:02 +08009982void kvm_arch_sync_events(struct kvm *kvm)
9983{
Andrew Jones332967a2014-02-28 12:52:55 +01009984 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +01009985 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Xiao Guangrongaea924f2010-07-10 17:37:56 +08009986 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +08009987}
9988
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02009989int __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02009990{
9991 int i, r;
Kees Cook3f649ab2020-06-03 13:09:38 -07009992 unsigned long hva, old_npages;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02009993 struct kvm_memslots *slots = kvm_memslots(kvm);
Sean Christopherson0577d1a2020-02-18 13:07:31 -08009994 struct kvm_memory_slot *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02009995
9996 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02009997 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
9998 return -EINVAL;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02009999
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020010000 slot = id_to_memslot(slots, id);
10001 if (size) {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080010002 if (slot && slot->npages)
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020010003 return -EEXIST;
10004
10005 /*
10006 * MAP_SHARED to prevent internal slot pages from being moved
10007 * by fork()/COW.
10008 */
10009 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
10010 MAP_SHARED | MAP_ANONYMOUS, 0);
10011 if (IS_ERR((void *)hva))
10012 return PTR_ERR((void *)hva);
10013 } else {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080010014 if (!slot || !slot->npages)
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020010015 return 0;
10016
Sean Christopherson0577d1a2020-02-18 13:07:31 -080010017 old_npages = slot->npages;
Paolo Bonzinie0135a12020-06-11 14:01:51 -040010018 hva = 0;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020010019 }
10020
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020010021 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020010022 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020010023
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020010024 m.slot = id | (i << 16);
10025 m.flags = 0;
10026 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020010027 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020010028 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020010029 r = __kvm_set_memory_region(kvm, &m);
10030 if (r < 0)
10031 return r;
10032 }
10033
Eric Biggers103c7632018-01-31 17:30:21 -080010034 if (!size)
Sean Christopherson0577d1a2020-02-18 13:07:31 -080010035 vm_munmap(hva, old_npages * PAGE_SIZE);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020010036
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020010037 return 0;
10038}
10039EXPORT_SYMBOL_GPL(__x86_set_memory_region);
10040
Junaid Shahid1aa9b952019-11-04 20:26:00 +010010041void kvm_arch_pre_destroy_vm(struct kvm *kvm)
10042{
10043 kvm_mmu_pre_destroy_vm(kvm);
10044}
10045
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080010046void kvm_arch_destroy_vm(struct kvm *kvm)
10047{
Andrew Honig27469d22013-04-18 09:38:14 -070010048 if (current->mm == kvm->mm) {
10049 /*
10050 * Free memory regions allocated on behalf of userspace,
10051 * unless the the memory map has changed due to process exit
10052 * or fd copying.
10053 */
Peter Xu6a3c6232020-01-09 09:57:16 -050010054 mutex_lock(&kvm->slots_lock);
10055 __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
10056 0, 0);
10057 __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
10058 0, 0);
10059 __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
10060 mutex_unlock(&kvm->slots_lock);
Andrew Honig27469d22013-04-18 09:38:14 -070010061 }
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010062 if (kvm_x86_ops.vm_destroy)
10063 kvm_x86_ops.vm_destroy(kvm);
Peter Xuc7611592017-03-15 16:01:19 +080010064 kvm_pic_destroy(kvm);
10065 kvm_ioapic_destroy(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080010066 kvm_free_vcpus(kvm);
Radim Krčmářaf1bae52016-07-12 22:09:30 +020010067 kvfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Eric Hankland66bb8a02019-07-10 18:25:15 -070010068 kfree(srcu_dereference_check(kvm->arch.pmu_event_filter, &kvm->srcu, 1));
Xiao Guangrong13d268c2016-02-24 17:51:16 +080010069 kvm_mmu_uninit_vm(kvm);
Paolo Bonzini2beb6dad2017-03-27 17:53:50 +020010070 kvm_page_track_cleanup(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030010071 kvm_hv_destroy_vm(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080010072}
Zhang Xiantao0de10342007-11-20 16:25:04 +080010073
Sean Christophersone96c81e2020-02-18 13:07:27 -080010074void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010075{
10076 int i;
10077
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010078 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080010079 kvfree(slot->arch.rmap[i]);
10080 slot->arch.rmap[i] = NULL;
10081
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010082 if (i == 0)
10083 continue;
10084
Sean Christophersone96c81e2020-02-18 13:07:27 -080010085 kvfree(slot->arch.lpage_info[i - 1]);
10086 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010087 }
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080010088
Sean Christophersone96c81e2020-02-18 13:07:27 -080010089 kvm_page_track_free_memslot(slot);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010090}
10091
Sean Christopherson0dab98b2020-02-18 13:07:19 -080010092static int kvm_alloc_memslot_metadata(struct kvm_memory_slot *slot,
10093 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010094{
10095 int i;
10096
Sean Christophersonedd4fa32020-02-18 13:07:15 -080010097 /*
10098 * Clear out the previous array pointers for the KVM_MR_MOVE case. The
10099 * old arrays will be freed by __kvm_set_memory_region() if installing
10100 * the new memslot is successful.
10101 */
10102 memset(&slot->arch, 0, sizeof(slot->arch));
10103
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010104 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +080010105 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010106 unsigned long ugfn;
10107 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010108 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010109
10110 lpages = gfn_to_index(slot->base_gfn + npages - 1,
10111 slot->base_gfn, level) + 1;
10112
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010113 slot->arch.rmap[i] =
Kees Cook778e1cd2018-06-12 14:04:48 -070010114 kvcalloc(lpages, sizeof(*slot->arch.rmap[i]),
Ben Gardon254272c2019-02-11 11:02:50 -080010115 GFP_KERNEL_ACCOUNT);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010116 if (!slot->arch.rmap[i])
Takuya Yoshikawa77d11302012-07-02 17:57:17 +090010117 goto out_free;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010118 if (i == 0)
10119 continue;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +090010120
Ben Gardon254272c2019-02-11 11:02:50 -080010121 linfo = kvcalloc(lpages, sizeof(*linfo), GFP_KERNEL_ACCOUNT);
Xiao Guangrong92f94f12016-02-24 17:51:06 +080010122 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010123 goto out_free;
10124
Xiao Guangrong92f94f12016-02-24 17:51:06 +080010125 slot->arch.lpage_info[i - 1] = linfo;
10126
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010127 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080010128 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010129 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080010130 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010131 ugfn = slot->userspace_addr >> PAGE_SHIFT;
10132 /*
10133 * If the gfn and userspace address are not aligned wrt each
Sean Christopherson600087b2020-03-02 15:57:05 -080010134 * other, disable large page support for this slot.
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010135 */
Sean Christopherson600087b2020-03-02 15:57:05 -080010136 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1)) {
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010137 unsigned long j;
10138
10139 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +080010140 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010141 }
10142 }
10143
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080010144 if (kvm_page_track_create_memslot(slot, npages))
10145 goto out_free;
10146
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010147 return 0;
10148
10149out_free:
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010150 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +010010151 kvfree(slot->arch.rmap[i]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010152 slot->arch.rmap[i] = NULL;
10153 if (i == 0)
10154 continue;
10155
Thomas Huth548ef282015-02-24 21:29:25 +010010156 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010157 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010158 }
10159 return -ENOMEM;
10160}
10161
Sean Christopherson15248252019-02-05 12:54:17 -080010162void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090010163{
Boris Ostrovsky91724812019-12-05 01:30:51 +000010164 struct kvm_vcpu *vcpu;
10165 int i;
10166
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +090010167 /*
10168 * memslots->generation has been incremented.
10169 * mmio generation may have reached its maximum value.
10170 */
Sean Christopherson15248252019-02-05 12:54:17 -080010171 kvm_mmu_invalidate_mmio_sptes(kvm, gen);
Boris Ostrovsky91724812019-12-05 01:30:51 +000010172
10173 /* Force re-initialization of steal_time cache */
10174 kvm_for_each_vcpu(i, vcpu, kvm)
10175 kvm_vcpu_kick(vcpu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090010176}
10177
Marcelo Tosattif7784b82009-12-23 14:35:18 -020010178int kvm_arch_prepare_memory_region(struct kvm *kvm,
10179 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +020010180 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +090010181 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +080010182{
Sean Christopherson0dab98b2020-02-18 13:07:19 -080010183 if (change == KVM_MR_CREATE || change == KVM_MR_MOVE)
10184 return kvm_alloc_memslot_metadata(memslot,
10185 mem->memory_size >> PAGE_SHIFT);
Marcelo Tosattif7784b82009-12-23 14:35:18 -020010186 return 0;
10187}
10188
Kai Huang88178fd2015-01-28 10:54:27 +080010189static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
Anthony Yznaga37416792020-06-02 13:07:30 -070010190 struct kvm_memory_slot *old,
10191 struct kvm_memory_slot *new,
10192 enum kvm_mr_change change)
Kai Huang88178fd2015-01-28 10:54:27 +080010193{
Anthony Yznaga37416792020-06-02 13:07:30 -070010194 /*
10195 * Nothing to do for RO slots or CREATE/MOVE/DELETE of a slot.
10196 * See comments below.
10197 */
10198 if ((change != KVM_MR_FLAGS_ONLY) || (new->flags & KVM_MEM_READONLY))
Kai Huang88178fd2015-01-28 10:54:27 +080010199 return;
Kai Huang88178fd2015-01-28 10:54:27 +080010200
10201 /*
Anthony Yznaga37416792020-06-02 13:07:30 -070010202 * Dirty logging tracks sptes in 4k granularity, meaning that large
10203 * sptes have to be split. If live migration is successful, the guest
10204 * in the source machine will be destroyed and large sptes will be
10205 * created in the destination. However, if the guest continues to run
10206 * in the source machine (for example if live migration fails), small
10207 * sptes will remain around and cause bad performance.
Kai Huang88178fd2015-01-28 10:54:27 +080010208 *
Anthony Yznaga37416792020-06-02 13:07:30 -070010209 * Scan sptes if dirty logging has been stopped, dropping those
10210 * which can be collapsed into a single large-page spte. Later
10211 * page faults will create the large-page sptes.
Kai Huang88178fd2015-01-28 10:54:27 +080010212 *
Anthony Yznaga37416792020-06-02 13:07:30 -070010213 * There is no need to do this in any of the following cases:
10214 * CREATE: No dirty mappings will already exist.
10215 * MOVE/DELETE: The old mappings will already have been cleaned up by
10216 * kvm_arch_flush_shadow_memslot()
10217 */
10218 if ((old->flags & KVM_MEM_LOG_DIRTY_PAGES) &&
10219 !(new->flags & KVM_MEM_LOG_DIRTY_PAGES))
10220 kvm_mmu_zap_collapsible_sptes(kvm, new);
10221
10222 /*
10223 * Enable or disable dirty logging for the slot.
Kai Huang88178fd2015-01-28 10:54:27 +080010224 *
Anthony Yznaga37416792020-06-02 13:07:30 -070010225 * For KVM_MR_DELETE and KVM_MR_MOVE, the shadow pages of the old
10226 * slot have been zapped so no dirty logging updates are needed for
10227 * the old slot.
10228 * For KVM_MR_CREATE and KVM_MR_MOVE, once the new slot is visible
10229 * any mappings that might be created in it will consume the
10230 * properties of the new slot and do not need to be updated here.
Kai Huang88178fd2015-01-28 10:54:27 +080010231 *
Anthony Yznaga37416792020-06-02 13:07:30 -070010232 * When PML is enabled, the kvm_x86_ops dirty logging hooks are
10233 * called to enable/disable dirty logging.
Kai Huang88178fd2015-01-28 10:54:27 +080010234 *
Anthony Yznaga37416792020-06-02 13:07:30 -070010235 * When disabling dirty logging with PML enabled, the D-bit is set
10236 * for sptes in the slot in order to prevent unnecessary GPA
10237 * logging in the PML buffer (and potential PML buffer full VMEXIT).
10238 * This guarantees leaving PML enabled for the guest's lifetime
10239 * won't have any additional overhead from PML when the guest is
10240 * running with dirty logging disabled.
Kai Huang88178fd2015-01-28 10:54:27 +080010241 *
Anthony Yznaga37416792020-06-02 13:07:30 -070010242 * When enabling dirty logging, large sptes are write-protected
10243 * so they can be split on first write. New large sptes cannot
10244 * be created for this slot until the end of the logging.
Kai Huang88178fd2015-01-28 10:54:27 +080010245 * See the comments in fast_page_fault().
Anthony Yznaga37416792020-06-02 13:07:30 -070010246 * For small sptes, nothing is done if the dirty log is in the
10247 * initial-all-set state. Otherwise, depending on whether pml
10248 * is enabled the D-bit or the W-bit will be cleared.
Kai Huang88178fd2015-01-28 10:54:27 +080010249 */
10250 if (new->flags & KVM_MEM_LOG_DIRTY_PAGES) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010251 if (kvm_x86_ops.slot_enable_log_dirty) {
10252 kvm_x86_ops.slot_enable_log_dirty(kvm, new);
Jay Zhou3c9bd402020-02-27 09:32:27 +080010253 } else {
10254 int level =
10255 kvm_dirty_log_manual_protect_and_init_set(kvm) ?
Sean Christopherson3bae0452020-04-27 17:54:22 -070010256 PG_LEVEL_2M : PG_LEVEL_4K;
Jay Zhou3c9bd402020-02-27 09:32:27 +080010257
10258 /*
10259 * If we're with initial-all-set, we don't need
10260 * to write protect any small page because
10261 * they're reported as dirty already. However
10262 * we still need to write-protect huge pages
10263 * so that the page split can happen lazily on
10264 * the first write to the huge page.
10265 */
10266 kvm_mmu_slot_remove_write_access(kvm, new, level);
10267 }
Kai Huang88178fd2015-01-28 10:54:27 +080010268 } else {
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010269 if (kvm_x86_ops.slot_disable_log_dirty)
10270 kvm_x86_ops.slot_disable_log_dirty(kvm, new);
Kai Huang88178fd2015-01-28 10:54:27 +080010271 }
10272}
10273
Marcelo Tosattif7784b82009-12-23 14:35:18 -020010274void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +020010275 const struct kvm_userspace_memory_region *mem,
Sean Christopherson9d4c1972020-02-18 13:07:24 -080010276 struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +020010277 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +090010278 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -020010279{
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +080010280 if (!kvm->arch.n_requested_mmu_pages)
Wei Yang4d666232018-09-27 08:31:26 +080010281 kvm_mmu_change_mmu_pages(kvm,
10282 kvm_mmu_calculate_default_mmu_pages(kvm));
Kai Huang1c91cad42015-01-28 10:54:26 +080010283
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +090010284 /*
Paolo Bonzinif36f3f22015-05-18 13:20:23 +020010285 * FIXME: const-ify all uses of struct kvm_memory_slot.
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +090010286 */
Anthony Yznaga37416792020-06-02 13:07:30 -070010287 kvm_mmu_slot_apply_flags(kvm, old, (struct kvm_memory_slot *) new, change);
Sean Christopherson21198842020-02-18 13:07:25 -080010288
10289 /* Free the arrays associated with the old memslot. */
10290 if (change == KVM_MR_MOVE)
Sean Christophersone96c81e2020-02-18 13:07:27 -080010291 kvm_arch_free_memslot(kvm, old);
Zhang Xiantao0de10342007-11-20 16:25:04 +080010292}
Zhang Xiantao1d737c82007-12-14 09:35:10 +080010293
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030010294void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030010295{
Sean Christopherson7390de12019-02-05 13:01:31 -080010296 kvm_mmu_zap_all(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030010297}
10298
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030010299void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
10300 struct kvm_memory_slot *slot)
10301{
Xiaoguang Chenae7cd872016-10-09 15:41:44 +080010302 kvm_page_track_flush_slot(kvm, slot);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030010303}
10304
Liran Alone6c67d82018-09-04 10:56:52 +030010305static inline bool kvm_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
10306{
10307 return (is_guest_mode(vcpu) &&
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010308 kvm_x86_ops.guest_apic_has_interrupt &&
10309 kvm_x86_ops.guest_apic_has_interrupt(vcpu));
Liran Alone6c67d82018-09-04 10:56:52 +030010310}
10311
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010312static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
10313{
10314 if (!list_empty_careful(&vcpu->async_pf.done))
10315 return true;
10316
10317 if (kvm_apic_has_events(vcpu))
10318 return true;
10319
10320 if (vcpu->arch.pv.pv_unhalted)
10321 return true;
10322
Wanpeng Lia5f01f82017-09-13 04:04:01 -070010323 if (vcpu->arch.exception.pending)
10324 return true;
10325
ZhuangYanying47a66ee2017-05-26 13:16:48 +080010326 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
10327 (vcpu->arch.nmi_pending &&
Paolo Bonzinic300ab92020-04-23 14:08:58 -040010328 kvm_x86_ops.nmi_allowed(vcpu, false)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010329 return true;
10330
ZhuangYanying47a66ee2017-05-26 13:16:48 +080010331 if (kvm_test_request(KVM_REQ_SMI, vcpu) ||
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -040010332 (vcpu->arch.smi_pending &&
Paolo Bonzinic300ab92020-04-23 14:08:58 -040010333 kvm_x86_ops.smi_allowed(vcpu, false)))
Paolo Bonzini73917732015-10-13 10:19:35 +020010334 return true;
10335
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010336 if (kvm_arch_interrupt_allowed(vcpu) &&
Liran Alone6c67d82018-09-04 10:56:52 +030010337 (kvm_cpu_has_interrupt(vcpu) ||
10338 kvm_guest_apic_has_interrupt(vcpu)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010339 return true;
10340
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +030010341 if (kvm_hv_has_stimer_pending(vcpu))
10342 return true;
10343
Sean Christophersond2060bd2020-04-22 19:25:39 -070010344 if (is_guest_mode(vcpu) &&
10345 kvm_x86_ops.nested_ops->hv_timer_pending &&
10346 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
10347 return true;
10348
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010349 return false;
10350}
10351
Zhang Xiantao1d737c82007-12-14 09:35:10 +080010352int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
10353{
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010354 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +080010355}
Zhang Xiantao57361992007-12-17 14:21:40 +080010356
Wanpeng Li17e433b2019-08-05 10:03:19 +080010357bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
10358{
10359 if (READ_ONCE(vcpu->arch.pv.pv_unhalted))
10360 return true;
10361
10362 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
10363 kvm_test_request(KVM_REQ_SMI, vcpu) ||
10364 kvm_test_request(KVM_REQ_EVENT, vcpu))
10365 return true;
10366
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010367 if (vcpu->arch.apicv_active && kvm_x86_ops.dy_apicv_has_pending_interrupt(vcpu))
Wanpeng Li17e433b2019-08-05 10:03:19 +080010368 return true;
10369
10370 return false;
10371}
10372
Longpeng(Mike)199b5762017-08-08 12:05:32 +080010373bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
10374{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +080010375 return vcpu->arch.preempted_in_kernel;
Longpeng(Mike)199b5762017-08-08 12:05:32 +080010376}
10377
Christoffer Dallb6d33832012-03-08 16:44:24 -050010378int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +080010379{
Christoffer Dallb6d33832012-03-08 16:44:24 -050010380 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +080010381}
Gleb Natapov78646122009-03-23 12:12:11 +020010382
10383int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
10384{
Paolo Bonzinic300ab92020-04-23 14:08:58 -040010385 return kvm_x86_ops.interrupt_allowed(vcpu, false);
Gleb Natapov78646122009-03-23 12:12:11 +020010386}
Marcelo Tosatti229456f2009-06-17 09:22:14 -030010387
Nadav Amit82b32772014-11-02 11:54:45 +020010388unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
10389{
10390 if (is_64_bit_mode(vcpu))
10391 return kvm_rip_read(vcpu);
10392 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
10393 kvm_rip_read(vcpu));
10394}
10395EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
10396
Jan Kiszkaf92653e2010-02-23 17:47:55 +010010397bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
10398{
Nadav Amit82b32772014-11-02 11:54:45 +020010399 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +010010400}
10401EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
10402
Jan Kiszka94fe45d2009-10-18 13:24:44 +020010403unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
10404{
10405 unsigned long rflags;
10406
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010407 rflags = kvm_x86_ops.get_rflags(vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020010408 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +010010409 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +020010410 return rflags;
10411}
10412EXPORT_SYMBOL_GPL(kvm_get_rflags);
10413
Paolo Bonzini6addfc42014-03-27 11:29:28 +010010414static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +020010415{
10416 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +010010417 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +010010418 rflags |= X86_EFLAGS_TF;
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010419 kvm_x86_ops.set_rflags(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +010010420}
10421
10422void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
10423{
10424 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +030010425 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020010426}
10427EXPORT_SYMBOL_GPL(kvm_set_rflags);
10428
Gleb Natapov56028d02010-10-17 18:13:42 +020010429void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
10430{
10431 int r;
10432
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020010433 if ((vcpu->arch.mmu->direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +080010434 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +020010435 return;
10436
10437 r = kvm_mmu_reload(vcpu);
10438 if (unlikely(r))
10439 return;
10440
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020010441 if (!vcpu->arch.mmu->direct_map &&
Sean Christophersond8dd54e2020-03-02 18:02:39 -080010442 work->arch.cr3 != vcpu->arch.mmu->get_guest_pgd(vcpu))
Xiao Guangrongfb67e142010-12-07 10:35:25 +080010443 return;
10444
Sean Christopherson7a026742020-02-06 14:14:34 -080010445 kvm_mmu_do_page_fault(vcpu, work->cr2_or_gpa, 0, true);
Gleb Natapov56028d02010-10-17 18:13:42 +020010446}
10447
Gleb Natapovaf585b92010-10-14 11:22:46 +020010448static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
10449{
Peter Xudd03bca2020-04-16 11:58:59 -040010450 BUILD_BUG_ON(!is_power_of_2(ASYNC_PF_PER_VCPU));
10451
Gleb Natapovaf585b92010-10-14 11:22:46 +020010452 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
10453}
10454
10455static inline u32 kvm_async_pf_next_probe(u32 key)
10456{
Peter Xudd03bca2020-04-16 11:58:59 -040010457 return (key + 1) & (ASYNC_PF_PER_VCPU - 1);
Gleb Natapovaf585b92010-10-14 11:22:46 +020010458}
10459
10460static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
10461{
10462 u32 key = kvm_async_pf_hash_fn(gfn);
10463
10464 while (vcpu->arch.apf.gfns[key] != ~0)
10465 key = kvm_async_pf_next_probe(key);
10466
10467 vcpu->arch.apf.gfns[key] = gfn;
10468}
10469
10470static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
10471{
10472 int i;
10473 u32 key = kvm_async_pf_hash_fn(gfn);
10474
Peter Xudd03bca2020-04-16 11:58:59 -040010475 for (i = 0; i < ASYNC_PF_PER_VCPU &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +080010476 (vcpu->arch.apf.gfns[key] != gfn &&
10477 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +020010478 key = kvm_async_pf_next_probe(key);
10479
10480 return key;
10481}
10482
10483bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
10484{
10485 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
10486}
10487
10488static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
10489{
10490 u32 i, j, k;
10491
10492 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
Peter Xu0fd46042020-04-16 11:59:10 -040010493
10494 if (WARN_ON_ONCE(vcpu->arch.apf.gfns[i] != gfn))
10495 return;
10496
Gleb Natapovaf585b92010-10-14 11:22:46 +020010497 while (true) {
10498 vcpu->arch.apf.gfns[i] = ~0;
10499 do {
10500 j = kvm_async_pf_next_probe(j);
10501 if (vcpu->arch.apf.gfns[j] == ~0)
10502 return;
10503 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
10504 /*
10505 * k lies cyclically in ]i,j]
10506 * | i.k.j |
10507 * |....j i.k.| or |.k..j i...|
10508 */
10509 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
10510 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
10511 i = j;
10512 }
10513}
10514
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020010515static inline int apf_put_user_notpresent(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020010516{
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020010517 u32 reason = KVM_PV_REASON_PAGE_NOT_PRESENT;
10518
10519 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &reason,
10520 sizeof(reason));
10521}
10522
10523static inline int apf_put_user_ready(struct kvm_vcpu *vcpu, u32 token)
10524{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020010525 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
Paolo Bonzini4e335d92017-05-02 16:20:18 +020010526
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020010527 return kvm_write_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
10528 &token, offset, sizeof(token));
10529}
10530
10531static inline bool apf_pageready_slot_free(struct kvm_vcpu *vcpu)
10532{
10533 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
10534 u32 val;
10535
10536 if (kvm_read_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
10537 &val, offset, sizeof(val)))
10538 return false;
10539
10540 return !val;
Gleb Natapov7c907052010-10-14 11:22:53 +020010541}
10542
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020010543static bool kvm_can_deliver_async_pf(struct kvm_vcpu *vcpu)
10544{
10545 if (!vcpu->arch.apf.delivery_as_pf_vmexit && is_guest_mode(vcpu))
10546 return false;
10547
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020010548 if (!kvm_pv_async_pf_enabled(vcpu) ||
10549 (vcpu->arch.apf.send_user_only && kvm_x86_ops.get_cpl(vcpu) == 0))
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020010550 return false;
10551
10552 return true;
10553}
10554
10555bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu)
10556{
10557 if (unlikely(!lapic_in_kernel(vcpu) ||
10558 kvm_event_needs_reinjection(vcpu) ||
10559 vcpu->arch.exception.pending))
10560 return false;
10561
10562 if (kvm_hlt_in_guest(vcpu->kvm) && !kvm_can_deliver_async_pf(vcpu))
10563 return false;
10564
10565 /*
10566 * If interrupts are off we cannot even use an artificial
10567 * halt state.
10568 */
Paolo Bonzinic300ab92020-04-23 14:08:58 -040010569 return kvm_arch_interrupt_allowed(vcpu);
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020010570}
10571
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020010572bool kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
Gleb Natapovaf585b92010-10-14 11:22:46 +020010573 struct kvm_async_pf *work)
10574{
Avi Kivity6389ee92010-11-29 16:12:30 +020010575 struct x86_exception fault;
10576
Sean Christopherson736c2912019-12-06 15:57:14 -080010577 trace_kvm_async_pf_not_present(work->arch.token, work->cr2_or_gpa);
Gleb Natapovaf585b92010-10-14 11:22:46 +020010578 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +020010579
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020010580 if (kvm_can_deliver_async_pf(vcpu) &&
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020010581 !apf_put_user_notpresent(vcpu)) {
Avi Kivity6389ee92010-11-29 16:12:30 +020010582 fault.vector = PF_VECTOR;
10583 fault.error_code_valid = true;
10584 fault.error_code = 0;
10585 fault.nested_page_fault = false;
10586 fault.address = work->arch.token;
Wanpeng Liadfe20f2017-07-13 18:30:41 -070010587 fault.async_page_fault = true;
Avi Kivity6389ee92010-11-29 16:12:30 +020010588 kvm_inject_page_fault(vcpu, &fault);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020010589 return true;
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020010590 } else {
10591 /*
10592 * It is not possible to deliver a paravirtualized asynchronous
10593 * page fault, but putting the guest in an artificial halt state
10594 * can be beneficial nevertheless: if an interrupt arrives, we
10595 * can deliver it timely and perhaps the guest will schedule
10596 * another process. When the instruction that triggered a page
10597 * fault is retried, hopefully the page will be ready in the host.
10598 */
10599 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020010600 return false;
Gleb Natapov7c907052010-10-14 11:22:53 +020010601 }
Gleb Natapovaf585b92010-10-14 11:22:46 +020010602}
10603
10604void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
10605 struct kvm_async_pf *work)
10606{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020010607 struct kvm_lapic_irq irq = {
10608 .delivery_mode = APIC_DM_FIXED,
10609 .vector = vcpu->arch.apf.vec
10610 };
Avi Kivity6389ee92010-11-29 16:12:30 +020010611
chai wenf2e10662013-10-14 22:22:33 +080010612 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +020010613 work->arch.token = ~0; /* broadcast wakeup */
10614 else
10615 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
Sean Christopherson736c2912019-12-06 15:57:14 -080010616 trace_kvm_async_pf_ready(work->arch.token, work->cr2_or_gpa);
Gleb Natapov7c907052010-10-14 11:22:53 +020010617
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020010618 if ((work->wakeup_all || work->notpresent_injected) &&
10619 kvm_pv_async_pf_enabled(vcpu) &&
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020010620 !apf_put_user_ready(vcpu, work->arch.token)) {
10621 vcpu->arch.apf.pageready_pending = true;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020010622 kvm_apic_set_irq(vcpu, &irq, NULL);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020010623 }
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020010624
Xiao Guangronge6d53e32010-11-01 17:01:28 +080010625 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +030010626 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +020010627}
10628
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020010629void kvm_arch_async_page_present_queued(struct kvm_vcpu *vcpu)
10630{
10631 kvm_make_request(KVM_REQ_APF_READY, vcpu);
10632 if (!vcpu->arch.apf.pageready_pending)
10633 kvm_vcpu_kick(vcpu);
10634}
10635
Vitaly Kuznetsov7c0ade62020-05-25 16:41:18 +020010636bool kvm_arch_can_dequeue_async_page_present(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020010637{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020010638 if (!kvm_pv_async_pf_enabled(vcpu))
Gleb Natapov7c907052010-10-14 11:22:53 +020010639 return true;
10640 else
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020010641 return apf_pageready_slot_free(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020010642}
10643
Paolo Bonzini5544eb92015-07-07 15:41:58 +020010644void kvm_arch_start_assignment(struct kvm *kvm)
10645{
10646 atomic_inc(&kvm->arch.assigned_device_count);
10647}
10648EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
10649
10650void kvm_arch_end_assignment(struct kvm *kvm)
10651{
10652 atomic_dec(&kvm->arch.assigned_device_count);
10653}
10654EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
10655
10656bool kvm_arch_has_assigned_device(struct kvm *kvm)
10657{
10658 return atomic_read(&kvm->arch.assigned_device_count);
10659}
10660EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
10661
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060010662void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
10663{
10664 atomic_inc(&kvm->arch.noncoherent_dma_count);
10665}
10666EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
10667
10668void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
10669{
10670 atomic_dec(&kvm->arch.noncoherent_dma_count);
10671}
10672EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
10673
10674bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
10675{
10676 return atomic_read(&kvm->arch.noncoherent_dma_count);
10677}
10678EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
10679
Alex Williamson14717e22016-05-05 11:58:35 -060010680bool kvm_arch_has_irq_bypass(void)
10681{
Sean Christopherson92735b12019-08-02 15:06:17 -070010682 return true;
Alex Williamson14717e22016-05-05 11:58:35 -060010683}
10684
Feng Wu87276882015-09-18 22:29:40 +080010685int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
10686 struct irq_bypass_producer *prod)
10687{
10688 struct kvm_kernel_irqfd *irqfd =
10689 container_of(cons, struct kvm_kernel_irqfd, consumer);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080010690 int ret;
Feng Wu87276882015-09-18 22:29:40 +080010691
Alex Williamson14717e22016-05-05 11:58:35 -060010692 irqfd->producer = prod;
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080010693 kvm_arch_start_assignment(irqfd->kvm);
10694 ret = kvm_x86_ops.update_pi_irte(irqfd->kvm,
10695 prod->irq, irqfd->gsi, 1);
Feng Wu87276882015-09-18 22:29:40 +080010696
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080010697 if (ret)
10698 kvm_arch_end_assignment(irqfd->kvm);
10699
10700 return ret;
Feng Wu87276882015-09-18 22:29:40 +080010701}
10702
10703void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
10704 struct irq_bypass_producer *prod)
10705{
10706 int ret;
10707 struct kvm_kernel_irqfd *irqfd =
10708 container_of(cons, struct kvm_kernel_irqfd, consumer);
10709
Feng Wu87276882015-09-18 22:29:40 +080010710 WARN_ON(irqfd->producer != prod);
10711 irqfd->producer = NULL;
10712
10713 /*
10714 * When producer of consumer is unregistered, we change back to
10715 * remapped mode, so we can re-use the current implementation
Andrea Gelminibb3541f2016-05-21 14:14:44 +020010716 * when the irq is masked/disabled or the consumer side (KVM
Feng Wu87276882015-09-18 22:29:40 +080010717 * int this case doesn't want to receive the interrupts.
10718 */
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010719 ret = kvm_x86_ops.update_pi_irte(irqfd->kvm, prod->irq, irqfd->gsi, 0);
Feng Wu87276882015-09-18 22:29:40 +080010720 if (ret)
10721 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
10722 " fails: %d\n", irqfd->consumer.token, ret);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080010723
10724 kvm_arch_end_assignment(irqfd->kvm);
Feng Wu87276882015-09-18 22:29:40 +080010725}
10726
10727int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
10728 uint32_t guest_irq, bool set)
10729{
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010730 return kvm_x86_ops.update_pi_irte(kvm, host_irq, guest_irq, set);
Feng Wu87276882015-09-18 22:29:40 +080010731}
10732
Feng Wu520040142016-01-25 16:53:33 +080010733bool kvm_vector_hashing_enabled(void)
10734{
10735 return vector_hashing;
10736}
Feng Wu520040142016-01-25 16:53:33 +080010737
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030010738bool kvm_arch_no_poll(struct kvm_vcpu *vcpu)
10739{
10740 return (vcpu->arch.msr_kvm_poll_control & 1) == 0;
10741}
10742EXPORT_SYMBOL_GPL(kvm_arch_no_poll);
10743
Maxim Levitsky841c2be2020-07-08 14:57:31 +030010744
10745int kvm_spec_ctrl_test_value(u64 value)
Paolo Bonzini6441fa62020-01-20 16:33:06 +010010746{
Maxim Levitsky841c2be2020-07-08 14:57:31 +030010747 /*
10748 * test that setting IA32_SPEC_CTRL to given value
10749 * is allowed by the host processor
10750 */
Paolo Bonzini6441fa62020-01-20 16:33:06 +010010751
Maxim Levitsky841c2be2020-07-08 14:57:31 +030010752 u64 saved_value;
10753 unsigned long flags;
10754 int ret = 0;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010010755
Maxim Levitsky841c2be2020-07-08 14:57:31 +030010756 local_irq_save(flags);
Paolo Bonzini6441fa62020-01-20 16:33:06 +010010757
Maxim Levitsky841c2be2020-07-08 14:57:31 +030010758 if (rdmsrl_safe(MSR_IA32_SPEC_CTRL, &saved_value))
10759 ret = 1;
10760 else if (wrmsrl_safe(MSR_IA32_SPEC_CTRL, value))
10761 ret = 1;
10762 else
10763 wrmsrl(MSR_IA32_SPEC_CTRL, saved_value);
10764
10765 local_irq_restore(flags);
10766
10767 return ret;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010010768}
Maxim Levitsky841c2be2020-07-08 14:57:31 +030010769EXPORT_SYMBOL_GPL(kvm_spec_ctrl_test_value);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030010770
Mohammed Gamal89786142020-07-10 17:48:03 +020010771void kvm_fixup_and_inject_pf_error(struct kvm_vcpu *vcpu, gva_t gva, u16 error_code)
10772{
10773 struct x86_exception fault;
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040010774 u32 access = error_code &
10775 (PFERR_WRITE_MASK | PFERR_FETCH_MASK | PFERR_USER_MASK);
Mohammed Gamal89786142020-07-10 17:48:03 +020010776
10777 if (!(error_code & PFERR_PRESENT_MASK) ||
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040010778 vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, &fault) != UNMAPPED_GVA) {
Mohammed Gamal89786142020-07-10 17:48:03 +020010779 /*
10780 * If vcpu->arch.walk_mmu->gva_to_gpa succeeded, the page
10781 * tables probably do not match the TLB. Just proceed
10782 * with the error code that the processor gave.
10783 */
10784 fault.vector = PF_VECTOR;
10785 fault.error_code_valid = true;
10786 fault.error_code = error_code;
10787 fault.nested_page_fault = false;
10788 fault.address = gva;
10789 }
10790 vcpu->arch.walk_mmu->inject_page_fault(vcpu, &fault);
10791}
10792EXPORT_SYMBOL_GPL(kvm_fixup_and_inject_pf_error);
Carsten Otte043405e2007-10-10 17:16:19 +020010793
Babu Moger3f3393b2020-09-11 14:29:05 -050010794/*
10795 * Handles kvm_read/write_guest_virt*() result and either injects #PF or returns
10796 * KVM_EXIT_INTERNAL_ERROR for cases not currently handled by KVM. Return value
10797 * indicates whether exit to userspace is needed.
10798 */
10799int kvm_handle_memory_failure(struct kvm_vcpu *vcpu, int r,
10800 struct x86_exception *e)
10801{
10802 if (r == X86EMUL_PROPAGATE_FAULT) {
10803 kvm_inject_emulated_page_fault(vcpu, e);
10804 return 1;
10805 }
10806
10807 /*
10808 * In case kvm_read/write_guest_virt*() failed with X86EMUL_IO_NEEDED
10809 * while handling a VMX instruction KVM could've handled the request
10810 * correctly by exiting to userspace and performing I/O but there
10811 * doesn't seem to be a real use-case behind such requests, just return
10812 * KVM_EXIT_INTERNAL_ERROR for now.
10813 */
10814 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
10815 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
10816 vcpu->run->internal.ndata = 0;
10817
10818 return 0;
10819}
10820EXPORT_SYMBOL_GPL(kvm_handle_memory_failure);
10821
Babu Moger97150922020-09-11 14:29:12 -050010822int kvm_handle_invpcid(struct kvm_vcpu *vcpu, unsigned long type, gva_t gva)
10823{
10824 bool pcid_enabled;
10825 struct x86_exception e;
10826 unsigned i;
10827 unsigned long roots_to_free = 0;
10828 struct {
10829 u64 pcid;
10830 u64 gla;
10831 } operand;
10832 int r;
10833
10834 r = kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e);
10835 if (r != X86EMUL_CONTINUE)
10836 return kvm_handle_memory_failure(vcpu, r, &e);
10837
10838 if (operand.pcid >> 12 != 0) {
10839 kvm_inject_gp(vcpu, 0);
10840 return 1;
10841 }
10842
10843 pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
10844
10845 switch (type) {
10846 case INVPCID_TYPE_INDIV_ADDR:
10847 if ((!pcid_enabled && (operand.pcid != 0)) ||
10848 is_noncanonical_address(operand.gla, vcpu)) {
10849 kvm_inject_gp(vcpu, 0);
10850 return 1;
10851 }
10852 kvm_mmu_invpcid_gva(vcpu, operand.gla, operand.pcid);
10853 return kvm_skip_emulated_instruction(vcpu);
10854
10855 case INVPCID_TYPE_SINGLE_CTXT:
10856 if (!pcid_enabled && (operand.pcid != 0)) {
10857 kvm_inject_gp(vcpu, 0);
10858 return 1;
10859 }
10860
10861 if (kvm_get_active_pcid(vcpu) == operand.pcid) {
10862 kvm_mmu_sync_roots(vcpu);
10863 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
10864 }
10865
10866 for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++)
10867 if (kvm_get_pcid(vcpu, vcpu->arch.mmu->prev_roots[i].pgd)
10868 == operand.pcid)
10869 roots_to_free |= KVM_MMU_ROOT_PREVIOUS(i);
10870
10871 kvm_mmu_free_roots(vcpu, vcpu->arch.mmu, roots_to_free);
10872 /*
10873 * If neither the current cr3 nor any of the prev_roots use the
10874 * given PCID, then nothing needs to be done here because a
10875 * resync will happen anyway before switching to any other CR3.
10876 */
10877
10878 return kvm_skip_emulated_instruction(vcpu);
10879
10880 case INVPCID_TYPE_ALL_NON_GLOBAL:
10881 /*
10882 * Currently, KVM doesn't mark global entries in the shadow
10883 * page tables, so a non-global flush just degenerates to a
10884 * global flush. If needed, we could optimize this later by
10885 * keeping track of global entries in shadow page tables.
10886 */
10887
10888 fallthrough;
10889 case INVPCID_TYPE_ALL_INCL_GLOBAL:
10890 kvm_mmu_unload(vcpu);
10891 return kvm_skip_emulated_instruction(vcpu);
10892
10893 default:
10894 BUG(); /* We have already checked above that type <= 3 */
10895 }
10896}
10897EXPORT_SYMBOL_GPL(kvm_handle_invpcid);
10898
Carsten Otte043405e2007-10-10 17:16:19 +020010899EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
10900EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
10901EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
10902EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
10903EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
10904EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
10905EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
10906EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
10907EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
10908EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Sean Christopherson5497b952019-07-11 08:58:29 -070010909EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmenter_failed);
Carsten Otte043405e2007-10-10 17:16:19 +020010910EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
10911EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
10912EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
10913EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Peter Xu4f75bcc2019-09-06 10:17:22 +080010914EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window_update);
Carsten Otte043405e2007-10-10 17:16:19 +020010915EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
10916EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
10917EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
10918EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);
Suravee Suthikulpanitab56f8e2020-03-12 05:39:28 -050010919EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_ga_log);
Suravee Suthikulpanit24bbf742019-11-14 14:15:07 -060010920EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_apicv_update_request);