blob: 4fbde3a9b9d0d27a304fbaa0184d2035f2f8f715 [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"
Joao Martins23200b72018-06-13 09:55:44 -040032#include "xen.h"
Carsten Otte313a3dc2007-10-11 19:16:52 +020033
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020034#include <linux/clocksource.h>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030035#include <linux/interrupt.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020036#include <linux/kvm.h>
37#include <linux/fs.h>
38#include <linux/vmalloc.h>
Paul Gortmaker1767e932016-07-13 20:19:00 -040039#include <linux/export.h>
40#include <linux/moduleparam.h>
Zhang Xiantao0de10342007-11-20 16:25:04 +080041#include <linux/mman.h>
Marcelo Tosatti2bacc552007-12-12 10:46:12 -050042#include <linux/highmem.h>
Joerg Roedel19de40a2008-12-03 14:43:34 +010043#include <linux/iommu.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030044#include <linux/intel-iommu.h>
Gerd Hoffmannc8076602009-02-04 17:52:04 +010045#include <linux/cpufreq.h>
Avi Kivity18863bd2009-09-07 11:12:18 +030046#include <linux/user-return-notifier.h>
Marcelo Tosattia983fb22009-12-23 14:35:23 -020047#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090048#include <linux/slab.h>
Zhang, Yanminff9d07a2010-04-19 13:32:45 +080049#include <linux/perf_event.h>
Lai Jiangshan7bee3422010-06-02 17:06:03 +080050#include <linux/uaccess.h>
Gleb Natapovaf585b92010-10-14 11:22:46 +020051#include <linux/hash.h>
Joerg Roedela1b60c12011-09-06 18:46:34 +020052#include <linux/pci.h>
Marcelo Tosatti16e8d742012-11-27 23:29:00 -020053#include <linux/timekeeper_internal.h>
54#include <linux/pvclock_gtod.h>
Feng Wu87276882015-09-18 22:29:40 +080055#include <linux/kvm_irqfd.h>
56#include <linux/irqbypass.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010057#include <linux/sched/stat.h>
Wanpeng Li0c5f81d2019-07-06 09:26:51 +080058#include <linux/sched/isolation.h>
Tom Lendackyd0ec49d2017-07-17 16:10:27 -050059#include <linux/mem_encrypt.h>
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +020060#include <linux/entry-kvm.h>
Sergey Senozhatsky7d628742021-06-06 11:10:45 +090061#include <linux/suspend.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010062
Avi Kivityaec51dc2009-07-01 16:01:02 +030063#include <trace/events/kvm.h>
Xiao Guangrong2ed152a2010-03-10 19:00:43 +080064
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020065#include <asm/debugreg.h>
Zhang Xiantaod825ed02007-11-14 20:08:51 +080066#include <asm/msr.h>
Avi Kivitya5f61302008-02-20 17:57:21 +020067#include <asm/desc.h>
Huang Ying890ca9a2009-05-11 16:48:15 +080068#include <asm/mce.h>
Dave Hansen784a46612021-06-23 14:02:05 +020069#include <asm/pkru.h>
Ingo Molnarf89e32e2015-04-22 10:58:10 +020070#include <linux/kernel_stat.h>
Thomas Gleixnera0ff0612021-10-15 03:16:12 +020071#include <asm/fpu/api.h>
72#include <asm/fpu/xcr.h>
73#include <asm/fpu/xstate.h>
Zachary Amsden1d5f0662010-08-19 22:07:30 -100074#include <asm/pvclock.h>
Avi Kivity217fc9c2010-08-26 13:38:03 +030075#include <asm/div64.h>
Feng Wuefc64402015-09-18 22:29:51 +080076#include <asm/irq_remapping.h>
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010077#include <asm/mshyperv.h>
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +010078#include <asm/hypervisor.h>
Babu Moger97150922020-09-11 14:29:12 -050079#include <asm/tlbflush.h>
Chao Pengbf8c55d2018-10-24 16:05:14 +080080#include <asm/intel_pt.h>
Masami Hiramatsub3dc0692019-09-06 22:13:59 +090081#include <asm/emulate_prefix.h>
Sean Christophersonfe7e9482021-04-12 16:21:43 +120082#include <asm/sgx.h>
Michael Kelleydd2cb342019-07-01 04:26:06 +000083#include <clocksource/hyperv_timer.h>
Carsten Otte043405e2007-10-10 17:16:19 +020084
Dave Hansend1898b72016-06-01 10:42:20 -070085#define CREATE_TRACE_POINTS
86#include "trace.h"
87
Carsten Otte313a3dc2007-10-11 19:16:52 +020088#define MAX_IO_MSRS 256
Huang Ying890ca9a2009-05-11 16:48:15 +080089#define KVM_MAX_MCE_BANKS 32
Ashok Rajc45dcc72016-06-22 14:59:56 +080090u64 __read_mostly kvm_mce_cap_supported = MCG_CTL_P | MCG_SER_P;
91EXPORT_SYMBOL_GPL(kvm_mce_cap_supported);
Huang Ying890ca9a2009-05-11 16:48:15 +080092
Avi Kivity0f65dd72011-04-20 13:37:53 +030093#define emul_to_vcpu(ctxt) \
Sean Christophersonc9b8b072020-02-18 15:29:48 -080094 ((struct kvm_vcpu *)(ctxt)->vcpu)
Avi Kivity0f65dd72011-04-20 13:37:53 +030095
Joerg Roedel50a37eb2008-01-31 14:57:38 +010096/* EFER defaults:
97 * - enable syscall per default because its emulated by KVM
98 * - enable LME and LMA per default on 64 bit KVM
99 */
100#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +0800101static
102u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100103#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +0800104static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100105#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +0200106
Sean Christophersonb11306b2019-12-10 14:44:13 -0800107static u64 __read_mostly cr4_reserved_bits = CR4_RESERVED_BITS;
108
Ashish Kalra0dbb1122021-06-08 18:05:43 +0000109#define KVM_EXIT_HYPERCALL_VALID_MASK (1 << KVM_HC_MAP_GPA_RANGE)
110
Radim Krčmářc5192652016-07-12 22:09:28 +0200111#define KVM_X2APIC_API_VALID_FLAGS (KVM_X2APIC_API_USE_32BIT_IDS | \
112 KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
Radim Krčmář371313132016-07-12 22:09:27 +0200113
Gleb Natapovcb142eb2009-08-09 15:17:40 +0300114static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300115static void process_nmi(struct kvm_vcpu *vcpu);
Jay Zhou1f7becf2021-01-18 16:47:20 +0800116static void process_smi(struct kvm_vcpu *vcpu);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +0200117static void enter_smm(struct kvm_vcpu *vcpu);
Paolo Bonzini6addfc42014-03-27 11:29:28 +0100118static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
Ken Hofsass01643c52018-01-31 16:03:36 -0800119static void store_regs(struct kvm_vcpu *vcpu);
120static int sync_regs(struct kvm_vcpu *vcpu);
Hou Wenlongd2f7d492021-11-02 17:15:31 +0800121static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu);
Avi Kivity674eea02008-02-11 18:37:23 +0200122
Maxim Levitsky6dba9402021-06-07 12:02:02 +0300123static int __set_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2);
124static void __get_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2);
125
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700126struct kvm_x86_ops kvm_x86_ops __read_mostly;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300127EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +0800128
Jason Baron9af54712021-01-14 22:27:55 -0500129#define KVM_X86_OP(func) \
130 DEFINE_STATIC_CALL_NULL(kvm_x86_##func, \
131 *(((struct kvm_x86_ops *)0)->func));
132#define KVM_X86_OP_NULL KVM_X86_OP
133#include <asm/kvm-x86-ops.h>
134EXPORT_STATIC_CALL_GPL(kvm_x86_get_cs_db_l_bits);
135EXPORT_STATIC_CALL_GPL(kvm_x86_cache_reg);
136EXPORT_STATIC_CALL_GPL(kvm_x86_tlb_flush_current);
137
Paolo Bonzini893590c2015-11-06 11:46:24 +0100138static bool __read_mostly ignore_msrs = 0;
Rusty Russell476bc002012-01-13 09:32:18 +1030139module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +0200140
Like Xud8550662021-01-08 09:36:55 +0800141bool __read_mostly report_ignored_msrs = true;
Eyal Moscovicifab0aa32017-11-08 14:32:08 +0200142module_param(report_ignored_msrs, bool, S_IRUGO | S_IWUSR);
Like Xud8550662021-01-08 09:36:55 +0800143EXPORT_SYMBOL_GPL(report_ignored_msrs);
Eyal Moscovicifab0aa32017-11-08 14:32:08 +0200144
Wanpeng Li4c276252018-05-05 04:02:32 -0700145unsigned int min_timer_period_us = 200;
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -0200146module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
147
Marcelo Tosatti630994b2015-05-12 22:42:04 -0300148static bool __read_mostly kvmclock_periodic_sync = true;
149module_param(kvmclock_periodic_sync, bool, S_IRUGO);
150
Paolo Bonzini893590c2015-11-06 11:46:24 +0100151bool __read_mostly kvm_has_tsc_control;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100152EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
Paolo Bonzini893590c2015-11-06 11:46:24 +0100153u32 __read_mostly kvm_max_guest_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100154EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800155u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits;
156EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits);
157u64 __read_mostly kvm_max_tsc_scaling_ratio;
158EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio);
Yunhong Jiang64672c92016-06-13 14:19:59 -0700159u64 __read_mostly kvm_default_tsc_scaling_ratio;
160EXPORT_SYMBOL_GPL(kvm_default_tsc_scaling_ratio);
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +0800161bool __read_mostly kvm_has_bus_lock_exit;
162EXPORT_SYMBOL_GPL(kvm_has_bus_lock_exit);
Joerg Roedel92a1f122011-03-25 09:44:51 +0100163
Zachary Amsdencc578282012-02-03 15:43:50 -0200164/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100165static u32 __read_mostly tsc_tolerance_ppm = 250;
Zachary Amsdencc578282012-02-03 15:43:50 -0200166module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
167
Sean Christophersonc3941d92019-04-17 10:15:33 -0700168/*
169 * lapic timer advance (tscdeadline mode only) in nanoseconds. '-1' enables
Ingo Molnard9f6e122021-03-18 15:28:01 +0100170 * adaptive tuning starting from default advancement of 1000ns. '0' disables
Sean Christophersonc3941d92019-04-17 10:15:33 -0700171 * advancement entirely. Any other value is used as-is and disables adaptive
Ingo Molnard9f6e122021-03-18 15:28:01 +0100172 * tuning, i.e. allows privileged userspace to set an exact advancement time.
Sean Christophersonc3941d92019-04-17 10:15:33 -0700173 */
174static int __read_mostly lapic_timer_advance_ns = -1;
Wanpeng Li0e6edce2019-05-20 16:18:06 +0800175module_param(lapic_timer_advance_ns, int, S_IRUGO | S_IWUSR);
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500176
Feng Wu520040142016-01-25 16:53:33 +0800177static bool __read_mostly vector_hashing = true;
178module_param(vector_hashing, bool, S_IRUGO);
179
Liran Alonc4ae60e2018-03-12 13:12:47 +0200180bool __read_mostly enable_vmware_backdoor = false;
181module_param(enable_vmware_backdoor, bool, S_IRUGO);
182EXPORT_SYMBOL_GPL(enable_vmware_backdoor);
183
Wanpeng Li6c86eed2018-04-03 16:28:49 -0700184static bool __read_mostly force_emulation_prefix = false;
185module_param(force_emulation_prefix, bool, S_IRUGO);
186
Wanpeng Li0c5f81d2019-07-06 09:26:51 +0800187int __read_mostly pi_inject_timer = -1;
188module_param(pi_inject_timer, bint, S_IRUGO | S_IWUSR);
189
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700190/*
191 * Restoring the host value for MSRs that are only consumed when running in
192 * usermode, e.g. SYSCALL MSRs and TSC_AUX, can be deferred until the CPU
193 * returns to userspace, i.e. the kernel can run with the guest's value.
194 */
195#define KVM_MAX_NR_USER_RETURN_MSRS 16
Avi Kivity18863bd2009-09-07 11:12:18 +0300196
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700197struct kvm_user_return_msrs {
Avi Kivity18863bd2009-09-07 11:12:18 +0300198 struct user_return_notifier urn;
199 bool registered;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700200 struct kvm_user_return_msr_values {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800201 u64 host;
202 u64 curr;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700203 } values[KVM_MAX_NR_USER_RETURN_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300204};
205
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700206u32 __read_mostly kvm_nr_uret_msrs;
207EXPORT_SYMBOL_GPL(kvm_nr_uret_msrs);
208static u32 __read_mostly kvm_uret_msrs_list[KVM_MAX_NR_USER_RETURN_MSRS];
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700209static struct kvm_user_return_msrs __percpu *user_return_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300210
Sean Christophersoncfc48182020-03-02 15:56:23 -0800211#define KVM_SUPPORTED_XCR0 (XFEATURE_MASK_FP | XFEATURE_MASK_SSE \
212 | XFEATURE_MASK_YMM | XFEATURE_MASK_BNDREGS \
213 | XFEATURE_MASK_BNDCSR | XFEATURE_MASK_AVX512 \
214 | XFEATURE_MASK_PKRU)
215
Sean Christopherson91661982020-03-02 15:57:06 -0800216u64 __read_mostly host_efer;
217EXPORT_SYMBOL_GPL(host_efer);
218
Mohammed Gamalb96e6502020-09-03 16:11:22 +0200219bool __read_mostly allow_smaller_maxphyaddr = 0;
Mohammed Gamal3edd6832020-07-10 17:48:11 +0200220EXPORT_SYMBOL_GPL(allow_smaller_maxphyaddr);
221
Vitaly Kuznetsovfdf513e2021-06-09 17:09:08 +0200222bool __read_mostly enable_apicv = true;
223EXPORT_SYMBOL_GPL(enable_apicv);
224
Tom Lendacky86137772020-12-10 11:10:07 -0600225u64 __read_mostly host_xss;
226EXPORT_SYMBOL_GPL(host_xss);
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100227u64 __read_mostly supported_xss;
228EXPORT_SYMBOL_GPL(supported_xss);
Aaron Lewis139a12c2019-10-21 16:30:25 -0700229
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000230const struct _kvm_stats_desc kvm_vm_stats_desc[] = {
231 KVM_GENERIC_VM_STATS(),
232 STATS_DESC_COUNTER(VM, mmu_shadow_zapped),
233 STATS_DESC_COUNTER(VM, mmu_pte_write),
234 STATS_DESC_COUNTER(VM, mmu_pde_zapped),
235 STATS_DESC_COUNTER(VM, mmu_flooded),
236 STATS_DESC_COUNTER(VM, mmu_recycled),
237 STATS_DESC_COUNTER(VM, mmu_cache_miss),
238 STATS_DESC_ICOUNTER(VM, mmu_unsync),
Mingwei Zhang71f51d22021-08-02 21:46:07 -0700239 STATS_DESC_ICOUNTER(VM, pages_4k),
240 STATS_DESC_ICOUNTER(VM, pages_2m),
241 STATS_DESC_ICOUNTER(VM, pages_1g),
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000242 STATS_DESC_ICOUNTER(VM, nx_lpage_splits),
Peter Xuec1cf692021-06-25 11:32:06 -0400243 STATS_DESC_PCOUNTER(VM, max_mmu_rmap_size),
Jing Zhangbc9e9e62021-06-23 17:28:46 -0400244 STATS_DESC_PCOUNTER(VM, max_mmu_page_hash_collisions)
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000245};
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000246
247const struct kvm_stats_header kvm_vm_stats_header = {
248 .name_size = KVM_STATS_NAME_SIZE,
249 .num_desc = ARRAY_SIZE(kvm_vm_stats_desc),
250 .id_offset = sizeof(struct kvm_stats_header),
251 .desc_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE,
252 .data_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE +
253 sizeof(kvm_vm_stats_desc),
254};
255
Jing Zhangce55c042021-06-18 22:27:06 +0000256const struct _kvm_stats_desc kvm_vcpu_stats_desc[] = {
257 KVM_GENERIC_VCPU_STATS(),
258 STATS_DESC_COUNTER(VCPU, pf_fixed),
259 STATS_DESC_COUNTER(VCPU, pf_guest),
260 STATS_DESC_COUNTER(VCPU, tlb_flush),
261 STATS_DESC_COUNTER(VCPU, invlpg),
262 STATS_DESC_COUNTER(VCPU, exits),
263 STATS_DESC_COUNTER(VCPU, io_exits),
264 STATS_DESC_COUNTER(VCPU, mmio_exits),
265 STATS_DESC_COUNTER(VCPU, signal_exits),
266 STATS_DESC_COUNTER(VCPU, irq_window_exits),
267 STATS_DESC_COUNTER(VCPU, nmi_window_exits),
268 STATS_DESC_COUNTER(VCPU, l1d_flush),
269 STATS_DESC_COUNTER(VCPU, halt_exits),
270 STATS_DESC_COUNTER(VCPU, request_irq_exits),
271 STATS_DESC_COUNTER(VCPU, irq_exits),
272 STATS_DESC_COUNTER(VCPU, host_state_reload),
273 STATS_DESC_COUNTER(VCPU, fpu_reload),
274 STATS_DESC_COUNTER(VCPU, insn_emulation),
275 STATS_DESC_COUNTER(VCPU, insn_emulation_fail),
276 STATS_DESC_COUNTER(VCPU, hypercalls),
277 STATS_DESC_COUNTER(VCPU, irq_injections),
278 STATS_DESC_COUNTER(VCPU, nmi_injections),
279 STATS_DESC_COUNTER(VCPU, req_event),
280 STATS_DESC_COUNTER(VCPU, nested_run),
281 STATS_DESC_COUNTER(VCPU, directed_yield_attempted),
282 STATS_DESC_COUNTER(VCPU, directed_yield_successful),
283 STATS_DESC_ICOUNTER(VCPU, guest_mode)
284};
Jing Zhangce55c042021-06-18 22:27:06 +0000285
286const struct kvm_stats_header kvm_vcpu_stats_header = {
287 .name_size = KVM_STATS_NAME_SIZE,
288 .num_desc = ARRAY_SIZE(kvm_vcpu_stats_desc),
289 .id_offset = sizeof(struct kvm_stats_header),
290 .desc_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE,
291 .data_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE +
292 sizeof(kvm_vcpu_stats_desc),
293};
294
Dexuan Cui2acf9232010-06-10 11:27:12 +0800295u64 __read_mostly host_xcr0;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800296u64 __read_mostly supported_xcr0;
297EXPORT_SYMBOL_GPL(supported_xcr0);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800298
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800299static struct kmem_cache *x86_emulator_cache;
300
Peter Xu6abe9c12020-06-22 18:04:41 -0400301/*
302 * When called, it means the previous get/set msr reached an invalid msr.
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200303 * Return true if we want to ignore/silent this failed msr access.
Peter Xu6abe9c12020-06-22 18:04:41 -0400304 */
Haiwei Lid6328262021-03-13 13:10:32 +0800305static bool kvm_msr_ignored_check(u32 msr, u64 data, bool write)
Peter Xu6abe9c12020-06-22 18:04:41 -0400306{
307 const char *op = write ? "wrmsr" : "rdmsr";
308
309 if (ignore_msrs) {
310 if (report_ignored_msrs)
Takashi Iwaid383b312020-10-30 16:14:14 +0100311 kvm_pr_unimpl("ignored %s: 0x%x data 0x%llx\n",
312 op, msr, data);
Peter Xu6abe9c12020-06-22 18:04:41 -0400313 /* Mask the error */
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200314 return true;
Peter Xu6abe9c12020-06-22 18:04:41 -0400315 } else {
Takashi Iwaid383b312020-10-30 16:14:14 +0100316 kvm_debug_ratelimited("unhandled %s: 0x%x data 0x%llx\n",
317 op, msr, data);
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200318 return false;
Peter Xu6abe9c12020-06-22 18:04:41 -0400319 }
320}
321
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800322static struct kmem_cache *kvm_alloc_emulator_cache(void)
323{
Sean Christopherson06add252020-02-18 15:29:50 -0800324 unsigned int useroffset = offsetof(struct x86_emulate_ctxt, src);
325 unsigned int size = sizeof(struct x86_emulate_ctxt);
326
327 return kmem_cache_create_usercopy("x86_emulator", size,
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800328 __alignof__(struct x86_emulate_ctxt),
Sean Christopherson06add252020-02-18 15:29:50 -0800329 SLAB_ACCOUNT, useroffset,
330 size - useroffset, NULL);
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800331}
332
Jan Kiszkab6785de2012-09-20 07:43:17 +0200333static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300334
Gleb Natapovaf585b92010-10-14 11:22:46 +0200335static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
336{
337 int i;
Peter Xudd03bca2020-04-16 11:58:59 -0400338 for (i = 0; i < ASYNC_PF_PER_VCPU; i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +0200339 vcpu->arch.apf.gfns[i] = ~0;
340}
341
Avi Kivity18863bd2009-09-07 11:12:18 +0300342static void kvm_on_user_return(struct user_return_notifier *urn)
343{
344 unsigned slot;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700345 struct kvm_user_return_msrs *msrs
346 = container_of(urn, struct kvm_user_return_msrs, urn);
347 struct kvm_user_return_msr_values *values;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700348 unsigned long flags;
Avi Kivity18863bd2009-09-07 11:12:18 +0300349
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700350 /*
351 * Disabling irqs at this point since the following code could be
352 * interrupted and executed through kvm_arch_hardware_disable()
353 */
354 local_irq_save(flags);
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700355 if (msrs->registered) {
356 msrs->registered = false;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700357 user_return_notifier_unregister(urn);
358 }
359 local_irq_restore(flags);
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700360 for (slot = 0; slot < kvm_nr_uret_msrs; ++slot) {
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700361 values = &msrs->values[slot];
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800362 if (values->host != values->curr) {
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700363 wrmsrl(kvm_uret_msrs_list[slot], values->host);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800364 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300365 }
366 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300367}
368
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700369static int kvm_probe_user_return_msr(u32 msr)
Sean Christopherson5104d7f2021-05-04 10:17:24 -0700370{
371 u64 val;
372 int ret;
373
374 preempt_disable();
375 ret = rdmsrl_safe(msr, &val);
376 if (ret)
377 goto out;
378 ret = wrmsrl_safe(msr, val);
379out:
380 preempt_enable();
381 return ret;
382}
Sean Christopherson5104d7f2021-05-04 10:17:24 -0700383
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700384int kvm_add_user_return_msr(u32 msr)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800385{
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700386 BUG_ON(kvm_nr_uret_msrs >= KVM_MAX_NR_USER_RETURN_MSRS);
387
388 if (kvm_probe_user_return_msr(msr))
389 return -1;
390
391 kvm_uret_msrs_list[kvm_nr_uret_msrs] = msr;
392 return kvm_nr_uret_msrs++;
Avi Kivity18863bd2009-09-07 11:12:18 +0300393}
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700394EXPORT_SYMBOL_GPL(kvm_add_user_return_msr);
Avi Kivity18863bd2009-09-07 11:12:18 +0300395
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700396int kvm_find_user_return_msr(u32 msr)
397{
398 int i;
399
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700400 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
401 if (kvm_uret_msrs_list[i] == msr)
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700402 return i;
403 }
404 return -1;
405}
406EXPORT_SYMBOL_GPL(kvm_find_user_return_msr);
407
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700408static void kvm_user_return_msr_cpu_online(void)
Avi Kivity18863bd2009-09-07 11:12:18 +0300409{
Sean Christopherson05c19c22019-11-22 12:04:50 -0800410 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700411 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Sean Christopherson05c19c22019-11-22 12:04:50 -0800412 u64 value;
413 int i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300414
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700415 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
416 rdmsrl_safe(kvm_uret_msrs_list[i], &value);
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700417 msrs->values[i].host = value;
418 msrs->values[i].curr = value;
Sean Christopherson05c19c22019-11-22 12:04:50 -0800419 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300420}
421
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700422int kvm_set_user_return_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300423{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200424 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700425 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Andy Honig8b3c3102014-08-27 11:16:44 -0700426 int err;
Avi Kivity18863bd2009-09-07 11:12:18 +0300427
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700428 value = (value & mask) | (msrs->values[slot].host & ~mask);
429 if (value == msrs->values[slot].curr)
Andy Honig8b3c3102014-08-27 11:16:44 -0700430 return 0;
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700431 err = wrmsrl_safe(kvm_uret_msrs_list[slot], value);
Andy Honig8b3c3102014-08-27 11:16:44 -0700432 if (err)
433 return 1;
434
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700435 msrs->values[slot].curr = value;
436 if (!msrs->registered) {
437 msrs->urn.on_user_return = kvm_on_user_return;
438 user_return_notifier_register(&msrs->urn);
439 msrs->registered = true;
Avi Kivity18863bd2009-09-07 11:12:18 +0300440 }
Andy Honig8b3c3102014-08-27 11:16:44 -0700441 return 0;
Avi Kivity18863bd2009-09-07 11:12:18 +0300442}
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700443EXPORT_SYMBOL_GPL(kvm_set_user_return_msr);
Avi Kivity18863bd2009-09-07 11:12:18 +0300444
Radim Krčmář13a34e02014-08-28 15:13:03 +0200445static void drop_user_return_notifiers(void)
Avi Kivity3548bab2009-11-28 14:18:47 +0200446{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200447 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700448 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200449
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700450 if (msrs->registered)
451 kvm_on_user_return(&msrs->urn);
Avi Kivity3548bab2009-11-28 14:18:47 +0200452}
453
Carsten Otte6866b832007-10-29 16:09:10 +0100454u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
455{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300456 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100457}
458EXPORT_SYMBOL_GPL(kvm_get_apic_base);
459
Jim Mattson58871642018-05-09 16:56:04 -0400460enum lapic_mode kvm_get_apic_mode(struct kvm_vcpu *vcpu)
461{
462 return kvm_apic_mode(kvm_get_apic_base(vcpu));
463}
464EXPORT_SYMBOL_GPL(kvm_get_apic_mode);
465
Jan Kiszka58cb6282014-01-24 16:48:44 +0100466int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte6866b832007-10-29 16:09:10 +0100467{
Jim Mattson58871642018-05-09 16:56:04 -0400468 enum lapic_mode old_mode = kvm_get_apic_mode(vcpu);
469 enum lapic_mode new_mode = kvm_apic_mode(msr_info->data);
Sean Christophersona8ac8642021-02-03 16:01:15 -0800470 u64 reserved_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu) | 0x2ff |
Radim Krčmářd6321d42017-08-05 00:12:49 +0200471 (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC) ? 0 : X2APIC_ENABLE);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100472
Jim Mattson58871642018-05-09 16:56:04 -0400473 if ((msr_info->data & reserved_bits) != 0 || new_mode == LAPIC_MODE_INVALID)
Jim Mattsond3802282017-08-10 10:14:13 -0700474 return 1;
Jim Mattson58871642018-05-09 16:56:04 -0400475 if (!msr_info->host_initiated) {
476 if (old_mode == LAPIC_MODE_X2APIC && new_mode == LAPIC_MODE_XAPIC)
477 return 1;
478 if (old_mode == LAPIC_MODE_DISABLED && new_mode == LAPIC_MODE_X2APIC)
479 return 1;
480 }
Jan Kiszka58cb6282014-01-24 16:48:44 +0100481
482 kvm_lapic_set_base(vcpu, msr_info->data);
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800483 kvm_recalculate_apic_map(vcpu->kvm);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100484 return 0;
Carsten Otte6866b832007-10-29 16:09:10 +0100485}
486EXPORT_SYMBOL_GPL(kvm_set_apic_base);
487
Sean Christophersonad0577c2021-08-09 10:39:54 -0700488/*
489 * Handle a fault on a hardware virtualization (VMX or SVM) instruction.
490 *
491 * Hardware virtualization extension instructions may fault if a reboot turns
492 * off virtualization while processes are running. Usually after catching the
493 * fault we just panic; during reboot instead the instruction is ignored.
494 */
495noinstr void kvm_spurious_fault(void)
Geoff Levande3ba45b2013-04-05 19:20:30 +0000496{
497 /* Fault while not rebooting. We want the trace. */
kbuild test robotb4fdcf62019-09-29 18:43:28 +0200498 BUG_ON(!kvm_rebooting);
Geoff Levande3ba45b2013-04-05 19:20:30 +0000499}
500EXPORT_SYMBOL_GPL(kvm_spurious_fault);
501
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200502#define EXCPT_BENIGN 0
503#define EXCPT_CONTRIBUTORY 1
504#define EXCPT_PF 2
505
506static int exception_class(int vector)
507{
508 switch (vector) {
509 case PF_VECTOR:
510 return EXCPT_PF;
511 case DE_VECTOR:
512 case TS_VECTOR:
513 case NP_VECTOR:
514 case SS_VECTOR:
515 case GP_VECTOR:
516 return EXCPT_CONTRIBUTORY;
517 default:
518 break;
519 }
520 return EXCPT_BENIGN;
521}
522
Nadav Amitd6e8c852014-07-24 14:51:24 +0300523#define EXCPT_FAULT 0
524#define EXCPT_TRAP 1
525#define EXCPT_ABORT 2
526#define EXCPT_INTERRUPT 3
527
528static int exception_type(int vector)
529{
530 unsigned int mask;
531
532 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
533 return EXCPT_INTERRUPT;
534
535 mask = 1 << vector;
536
537 /* #DB is trap, as instruction watchpoints are handled elsewhere */
538 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
539 return EXCPT_TRAP;
540
541 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
542 return EXCPT_ABORT;
543
544 /* Reserved exceptions will result in fault */
545 return EXCPT_FAULT;
546}
547
Jim Mattsonda998b42018-10-16 14:29:22 -0700548void kvm_deliver_exception_payload(struct kvm_vcpu *vcpu)
549{
550 unsigned nr = vcpu->arch.exception.nr;
551 bool has_payload = vcpu->arch.exception.has_payload;
552 unsigned long payload = vcpu->arch.exception.payload;
553
554 if (!has_payload)
555 return;
556
557 switch (nr) {
Jim Mattsonf10c7292018-10-16 14:29:23 -0700558 case DB_VECTOR:
559 /*
560 * "Certain debug exceptions may clear bit 0-3. The
561 * remaining contents of the DR6 register are never
562 * cleared by the processor".
563 */
564 vcpu->arch.dr6 &= ~DR_TRAP_BITS;
565 /*
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800566 * In order to reflect the #DB exception payload in guest
567 * dr6, three components need to be considered: active low
568 * bit, FIXED_1 bits and active high bits (e.g. DR6_BD,
569 * DR6_BS and DR6_BT)
570 * DR6_ACTIVE_LOW contains the FIXED_1 and active low bits.
571 * In the target guest dr6:
572 * FIXED_1 bits should always be set.
573 * Active low bits should be cleared if 1-setting in payload.
574 * Active high bits should be set if 1-setting in payload.
575 *
576 * Note, the payload is compatible with the pending debug
577 * exceptions/exit qualification under VMX, that active_low bits
578 * are active high in payload.
579 * So they need to be flipped for DR6.
Jim Mattsonf10c7292018-10-16 14:29:23 -0700580 */
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800581 vcpu->arch.dr6 |= DR6_ACTIVE_LOW;
Jim Mattsonf10c7292018-10-16 14:29:23 -0700582 vcpu->arch.dr6 |= payload;
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800583 vcpu->arch.dr6 ^= payload & DR6_ACTIVE_LOW;
Oliver Upton307f1cf2020-02-07 02:36:04 -0800584
585 /*
586 * The #DB payload is defined as compatible with the 'pending
587 * debug exceptions' field under VMX, not DR6. While bit 12 is
588 * defined in the 'pending debug exceptions' field (enabled
589 * breakpoint), it is reserved and must be zero in DR6.
590 */
591 vcpu->arch.dr6 &= ~BIT(12);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700592 break;
Jim Mattsonda998b42018-10-16 14:29:22 -0700593 case PF_VECTOR:
594 vcpu->arch.cr2 = payload;
595 break;
596 }
597
598 vcpu->arch.exception.has_payload = false;
599 vcpu->arch.exception.payload = 0;
600}
601EXPORT_SYMBOL_GPL(kvm_deliver_exception_payload);
602
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200603static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200604 unsigned nr, bool has_error, u32 error_code,
Jim Mattson91e86d22018-10-16 14:29:21 -0700605 bool has_payload, unsigned long payload, bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200606{
607 u32 prev_nr;
608 int class1, class2;
609
Avi Kivity3842d132010-07-27 12:30:24 +0300610 kvm_make_request(KVM_REQ_EVENT, vcpu);
611
Wanpeng Li664f8e22017-08-24 03:35:09 -0700612 if (!vcpu->arch.exception.pending && !vcpu->arch.exception.injected) {
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200613 queue:
Wanpeng Li664f8e22017-08-24 03:35:09 -0700614 if (reinject) {
615 /*
616 * On vmentry, vcpu->arch.exception.pending is only
617 * true if an event injection was blocked by
618 * nested_run_pending. In that case, however,
619 * vcpu_enter_guest requests an immediate exit,
620 * and the guest shouldn't proceed far enough to
621 * need reinjection.
622 */
623 WARN_ON_ONCE(vcpu->arch.exception.pending);
624 vcpu->arch.exception.injected = true;
Jim Mattson91e86d22018-10-16 14:29:21 -0700625 if (WARN_ON_ONCE(has_payload)) {
626 /*
627 * A reinjected event has already
628 * delivered its payload.
629 */
630 has_payload = false;
631 payload = 0;
632 }
Wanpeng Li664f8e22017-08-24 03:35:09 -0700633 } else {
634 vcpu->arch.exception.pending = true;
635 vcpu->arch.exception.injected = false;
636 }
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200637 vcpu->arch.exception.has_error_code = has_error;
638 vcpu->arch.exception.nr = nr;
639 vcpu->arch.exception.error_code = error_code;
Jim Mattson91e86d22018-10-16 14:29:21 -0700640 vcpu->arch.exception.has_payload = has_payload;
641 vcpu->arch.exception.payload = payload;
Oliver Uptona06230b2020-02-07 02:36:06 -0800642 if (!is_guest_mode(vcpu))
Jim Mattsonda998b42018-10-16 14:29:22 -0700643 kvm_deliver_exception_payload(vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200644 return;
645 }
646
647 /* to check exception */
648 prev_nr = vcpu->arch.exception.nr;
649 if (prev_nr == DF_VECTOR) {
650 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300651 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200652 return;
653 }
654 class1 = exception_class(prev_nr);
655 class2 = exception_class(nr);
656 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
657 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
Wanpeng Li664f8e22017-08-24 03:35:09 -0700658 /*
659 * Generate double fault per SDM Table 5-5. Set
660 * exception.pending = true so that the double fault
661 * can trigger a nested vmexit.
662 */
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200663 vcpu->arch.exception.pending = true;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700664 vcpu->arch.exception.injected = false;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200665 vcpu->arch.exception.has_error_code = true;
666 vcpu->arch.exception.nr = DF_VECTOR;
667 vcpu->arch.exception.error_code = 0;
Jim Mattsonc8514362018-10-16 14:29:19 -0700668 vcpu->arch.exception.has_payload = false;
669 vcpu->arch.exception.payload = 0;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200670 } else
671 /* replace previous exception with a new one in a hope
672 that instruction re-execution will regenerate lost
673 exception */
674 goto queue;
675}
676
Avi Kivity298101d2007-11-25 13:41:11 +0200677void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
678{
Jim Mattson91e86d22018-10-16 14:29:21 -0700679 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200680}
681EXPORT_SYMBOL_GPL(kvm_queue_exception);
682
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200683void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
684{
Jim Mattson91e86d22018-10-16 14:29:21 -0700685 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200686}
687EXPORT_SYMBOL_GPL(kvm_requeue_exception);
688
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400689void kvm_queue_exception_p(struct kvm_vcpu *vcpu, unsigned nr,
690 unsigned long payload)
Jim Mattsonf10c7292018-10-16 14:29:23 -0700691{
692 kvm_multiple_exception(vcpu, nr, false, 0, true, payload, false);
693}
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400694EXPORT_SYMBOL_GPL(kvm_queue_exception_p);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700695
Jim Mattsonda998b42018-10-16 14:29:22 -0700696static void kvm_queue_exception_e_p(struct kvm_vcpu *vcpu, unsigned nr,
697 u32 error_code, unsigned long payload)
698{
699 kvm_multiple_exception(vcpu, nr, true, error_code,
700 true, payload, false);
701}
702
Kyle Huey6affcbe2016-11-29 12:40:40 -0800703int kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200704{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100705 if (err)
706 kvm_inject_gp(vcpu, 0);
707 else
Kyle Huey6affcbe2016-11-29 12:40:40 -0800708 return kvm_skip_emulated_instruction(vcpu);
709
710 return 1;
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100711}
712EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200713
Hou Wenlongd2f7d492021-11-02 17:15:31 +0800714static int complete_emulated_insn_gp(struct kvm_vcpu *vcpu, int err)
715{
716 if (err) {
717 kvm_inject_gp(vcpu, 0);
718 return 1;
719 }
720
721 return kvm_emulate_instruction(vcpu, EMULTYPE_NO_DECODE | EMULTYPE_SKIP |
722 EMULTYPE_COMPLETE_USER_EXIT);
723}
724
Avi Kivity6389ee92010-11-29 16:12:30 +0200725void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200726{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200727 ++vcpu->stat.pf_guest;
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700728 vcpu->arch.exception.nested_apf =
729 is_guest_mode(vcpu) && fault->async_page_fault;
Jim Mattsonda998b42018-10-16 14:29:22 -0700730 if (vcpu->arch.exception.nested_apf) {
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700731 vcpu->arch.apf.nested_apf_token = fault->address;
Jim Mattsonda998b42018-10-16 14:29:22 -0700732 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
733 } else {
734 kvm_queue_exception_e_p(vcpu, PF_VECTOR, fault->error_code,
735 fault->address);
736 }
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200737}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300738EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200739
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700740bool kvm_inject_emulated_page_fault(struct kvm_vcpu *vcpu,
741 struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200742{
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400743 struct kvm_mmu *fault_mmu;
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700744 WARN_ON_ONCE(fault->vector != PF_VECTOR);
745
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400746 fault_mmu = fault->nested_page_fault ? vcpu->arch.mmu :
747 vcpu->arch.walk_mmu;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200748
Junaid Shahidee1fa202020-03-20 14:28:03 -0700749 /*
750 * Invalidate the TLB entry for the faulting address, if it exists,
751 * else the access will fault indefinitely (and to emulate hardware).
752 */
753 if ((fault->error_code & PFERR_PRESENT_MASK) &&
754 !(fault->error_code & PFERR_RSVD_MASK))
755 kvm_mmu_invalidate_gva(vcpu, fault_mmu, fault->address,
756 fault_mmu->root_hpa);
757
758 fault_mmu->inject_page_fault(vcpu, fault);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200759 return fault->nested_page_fault;
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200760}
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700761EXPORT_SYMBOL_GPL(kvm_inject_emulated_page_fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200762
Sheng Yang3419ffc2008-05-15 09:52:48 +0800763void kvm_inject_nmi(struct kvm_vcpu *vcpu)
764{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300765 atomic_inc(&vcpu->arch.nmi_queued);
766 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800767}
768EXPORT_SYMBOL_GPL(kvm_inject_nmi);
769
Avi Kivity298101d2007-11-25 13:41:11 +0200770void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
771{
Jim Mattson91e86d22018-10-16 14:29:21 -0700772 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200773}
774EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
775
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200776void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
777{
Jim Mattson91e86d22018-10-16 14:29:21 -0700778 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200779}
780EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
781
Carsten Ottea03490e2007-10-29 16:09:35 +0100782/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300783 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
784 * a #GP and return false.
785 */
786bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200787{
Jason Baronb36464772021-01-14 22:27:56 -0500788 if (static_call(kvm_x86_get_cpl)(vcpu) <= required_cpl)
Avi Kivity0a79b002009-09-01 12:03:25 +0300789 return true;
790 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
791 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100792}
Avi Kivity0a79b002009-09-01 12:03:25 +0300793EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100794
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300795bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
796{
797 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
798 return true;
799
800 kvm_queue_exception(vcpu, UD_VECTOR);
801 return false;
802}
803EXPORT_SYMBOL_GPL(kvm_require_dr);
804
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700805static inline u64 pdptr_rsvd_bits(struct kvm_vcpu *vcpu)
806{
Sean Christopherson5b7f5752021-02-03 16:01:13 -0800807 return vcpu->arch.reserved_gpa_bits | rsvd_bits(5, 8) | rsvd_bits(1, 2);
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700808}
809
Joerg Roedelec92fe42010-09-10 17:30:51 +0200810/*
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700811 * Load the pae pdptrs. Return 1 if they are all valid, 0 otherwise.
Carsten Ottea03490e2007-10-29 16:09:35 +0100812 */
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +0800813int load_pdptrs(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100814{
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +0800815 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Carsten Ottea03490e2007-10-29 16:09:35 +0100816 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700817 gpa_t real_gpa;
Carsten Ottea03490e2007-10-29 16:09:35 +0100818 int i;
819 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200820 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100821
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700822 /*
823 * If the MMU is nested, CR3 holds an L2 GPA and needs to be translated
824 * to an L1 GPA.
825 */
Lai Jiangshanc59a0f52021-11-24 20:20:45 +0800826 real_gpa = kvm_translate_gpa(vcpu, mmu, gfn_to_gpa(pdpt_gfn),
827 PFERR_USER_MASK | PFERR_WRITE_MASK, NULL);
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700828 if (real_gpa == UNMAPPED_GVA)
829 return 0;
830
Sean Christopherson94c641b2021-08-31 09:42:24 -0700831 /* Note the offset, PDPTRs are 32 byte aligned when using PAE paging. */
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700832 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(real_gpa), pdpte,
Sean Christopherson94c641b2021-08-31 09:42:24 -0700833 cr3 & GENMASK(11, 5), sizeof(pdpte));
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700834 if (ret < 0)
835 return 0;
836
Carsten Ottea03490e2007-10-29 16:09:35 +0100837 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Bandan Das812f30b2016-07-12 18:18:50 -0400838 if ((pdpte[i] & PT_PRESENT_MASK) &&
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700839 (pdpte[i] & pdptr_rsvd_bits(vcpu))) {
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700840 return 0;
Carsten Ottea03490e2007-10-29 16:09:35 +0100841 }
842 }
Carsten Ottea03490e2007-10-29 16:09:35 +0100843
Lai Jiangshan6b123c32021-12-16 10:19:37 +0800844 /*
845 * Marking VCPU_EXREG_PDPTR dirty doesn't work for !tdp_enabled.
846 * Shadow page roots need to be reconstructed instead.
847 */
848 if (!tdp_enabled && memcmp(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs)))
849 kvm_mmu_free_roots(vcpu, mmu, KVM_MMU_ROOT_CURRENT);
850
Paolo Bonzini46cbc042021-12-10 18:13:37 -0500851 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
852 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
853 kvm_make_request(KVM_REQ_LOAD_MMU_PGD, vcpu);
Maxim Levitsky158a48e2021-06-07 12:02:03 +0300854 vcpu->arch.pdptrs_from_userspace = false;
855
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700856 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100857}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100858EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100859
Tom Lendackyf27ad382020-12-10 11:09:56 -0600860void kvm_post_set_cr0(struct kvm_vcpu *vcpu, unsigned long old_cr0, unsigned long cr0)
861{
Tom Lendackyf27ad382020-12-10 11:09:56 -0600862 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
863 kvm_clear_async_pf_completion_queue(vcpu);
864 kvm_async_pf_hash_reset(vcpu);
865 }
866
Sean Christopherson20f632b2021-06-22 10:57:02 -0700867 if ((cr0 ^ old_cr0) & KVM_MMU_CR0_ROLE_BITS)
Tom Lendackyf27ad382020-12-10 11:09:56 -0600868 kvm_mmu_reset_context(vcpu);
869
870 if (((cr0 ^ old_cr0) & X86_CR0_CD) &&
871 kvm_arch_has_noncoherent_dma(vcpu->kvm) &&
872 !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
873 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
874}
875EXPORT_SYMBOL_GPL(kvm_post_set_cr0);
876
Avi Kivity49a9b072010-06-10 17:02:14 +0300877int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100878{
Sheng Yangaad82702010-05-12 16:40:42 +0800879 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Sheng Yangaad82702010-05-12 16:40:42 +0800880
Avi Kivityf9a48e62010-01-06 19:10:22 +0200881 cr0 |= X86_CR0_ET;
882
Gleb Natapovab344822010-01-21 15:28:46 +0200883#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300884 if (cr0 & 0xffffffff00000000UL)
885 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200886#endif
887
888 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100889
Gleb Natapov0f122442010-04-28 19:15:31 +0300890 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
891 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100892
Gleb Natapov0f122442010-04-28 19:15:31 +0300893 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
894 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100895
Carsten Ottea03490e2007-10-29 16:09:35 +0100896#ifdef CONFIG_X86_64
Sean Christopherson05487212020-07-13 18:57:32 -0700897 if ((vcpu->arch.efer & EFER_LME) && !is_paging(vcpu) &&
898 (cr0 & X86_CR0_PG)) {
899 int cs_db, cs_l;
Carsten Ottea03490e2007-10-29 16:09:35 +0100900
Sean Christopherson05487212020-07-13 18:57:32 -0700901 if (!is_pae(vcpu))
902 return 1;
Jason Baronb36464772021-01-14 22:27:56 -0500903 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
Sean Christopherson05487212020-07-13 18:57:32 -0700904 if (cs_l)
Gleb Natapov0f122442010-04-28 19:15:31 +0300905 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100906 }
Sean Christopherson05487212020-07-13 18:57:32 -0700907#endif
908 if (!(vcpu->arch.efer & EFER_LME) && (cr0 & X86_CR0_PG) &&
Lai Jiangshane63f3152021-11-08 20:43:58 +0800909 is_pae(vcpu) && ((cr0 ^ old_cr0) & X86_CR0_PDPTR_BITS) &&
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +0800910 !load_pdptrs(vcpu, kvm_read_cr3(vcpu)))
Sean Christopherson05487212020-07-13 18:57:32 -0700911 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100912
Lai Jiangshan777ab822021-12-07 17:52:30 +0800913 if (!(cr0 & X86_CR0_PG) &&
914 (is_64_bit_mode(vcpu) || kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE)))
Mao, Junjiead756a12012-07-02 01:18:48 +0000915 return 1;
916
Jason Baronb36464772021-01-14 22:27:56 -0500917 static_call(kvm_x86_set_cr0)(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100918
Tom Lendackyf27ad382020-12-10 11:09:56 -0600919 kvm_post_set_cr0(vcpu, old_cr0, cr0);
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800920
Gleb Natapov0f122442010-04-28 19:15:31 +0300921 return 0;
922}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200923EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100924
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200925void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100926{
Avi Kivity49a9b072010-06-10 17:02:14 +0300927 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100928}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200929EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100930
Aaron Lewis139a12c2019-10-21 16:30:25 -0700931void kvm_load_guest_xsave_state(struct kvm_vcpu *vcpu)
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300932{
Tom Lendacky16809ec2020-12-10 11:10:08 -0600933 if (vcpu->arch.guest_state_protected)
934 return;
935
Aaron Lewis139a12c2019-10-21 16:30:25 -0700936 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300937
Aaron Lewis139a12c2019-10-21 16:30:25 -0700938 if (vcpu->arch.xcr0 != host_xcr0)
939 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
940
941 if (vcpu->arch.xsaves_enabled &&
942 vcpu->arch.ia32_xss != host_xss)
943 wrmsrl(MSR_IA32_XSS, vcpu->arch.ia32_xss);
944 }
Babu Moger37486132020-05-12 18:59:06 -0500945
946 if (static_cpu_has(X86_FEATURE_PKU) &&
947 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
948 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU)) &&
949 vcpu->arch.pkru != vcpu->arch.host_pkru)
Thomas Gleixner72a6c082021-06-23 14:02:23 +0200950 write_pkru(vcpu->arch.pkru);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300951}
Aaron Lewis139a12c2019-10-21 16:30:25 -0700952EXPORT_SYMBOL_GPL(kvm_load_guest_xsave_state);
953
954void kvm_load_host_xsave_state(struct kvm_vcpu *vcpu)
955{
Tom Lendacky16809ec2020-12-10 11:10:08 -0600956 if (vcpu->arch.guest_state_protected)
957 return;
958
Babu Moger37486132020-05-12 18:59:06 -0500959 if (static_cpu_has(X86_FEATURE_PKU) &&
960 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
961 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU))) {
962 vcpu->arch.pkru = rdpkru();
963 if (vcpu->arch.pkru != vcpu->arch.host_pkru)
Thomas Gleixner72a6c082021-06-23 14:02:23 +0200964 write_pkru(vcpu->arch.host_pkru);
Babu Moger37486132020-05-12 18:59:06 -0500965 }
966
Aaron Lewis139a12c2019-10-21 16:30:25 -0700967 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
968
969 if (vcpu->arch.xcr0 != host_xcr0)
970 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
971
972 if (vcpu->arch.xsaves_enabled &&
973 vcpu->arch.ia32_xss != host_xss)
974 wrmsrl(MSR_IA32_XSS, host_xss);
975 }
976
977}
978EXPORT_SYMBOL_GPL(kvm_load_host_xsave_state);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300979
Fengguang Wu69b00492015-01-19 22:33:39 +0800980static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800981{
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000982 u64 xcr0 = xcr;
983 u64 old_xcr0 = vcpu->arch.xcr0;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200984 u64 valid_bits;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800985
986 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
987 if (index != XCR_XFEATURE_ENABLED_MASK)
988 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700989 if (!(xcr0 & XFEATURE_MASK_FP))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800990 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700991 if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800992 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200993
994 /*
995 * Do not allow the guest to set bits that we do not support
996 * saving. However, xcr0 bit 0 is always set, even if the
Sean Christophersone8f65b92021-09-20 17:02:58 -0700997 * emulated CPU does not support XSAVE (see kvm_vcpu_reset()).
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200998 */
Dave Hansend91cab72015-09-02 16:31:26 -0700999 valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +02001000 if (xcr0 & ~valid_bits)
Dexuan Cui2acf9232010-06-10 11:27:12 +08001001 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +02001002
Dave Hansend91cab72015-09-02 16:31:26 -07001003 if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) !=
1004 (!(xcr0 & XFEATURE_MASK_BNDCSR)))
Liu, Jinsong390bd522014-02-24 10:58:09 +00001005 return 1;
1006
Dave Hansend91cab72015-09-02 16:31:26 -07001007 if (xcr0 & XFEATURE_MASK_AVX512) {
1008 if (!(xcr0 & XFEATURE_MASK_YMM))
Chao Peng612263b2014-10-22 17:35:24 +08001009 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -07001010 if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512)
Chao Peng612263b2014-10-22 17:35:24 +08001011 return 1;
1012 }
Dexuan Cui2acf9232010-06-10 11:27:12 +08001013 vcpu->arch.xcr0 = xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +00001014
Dave Hansend91cab72015-09-02 16:31:26 -07001015 if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND)
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08001016 kvm_update_cpuid_runtime(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001017 return 0;
1018}
1019
Sean Christopherson92f98952021-02-04 16:57:46 -08001020int kvm_emulate_xsetbv(struct kvm_vcpu *vcpu)
Dexuan Cui2acf9232010-06-10 11:27:12 +08001021{
Sean Christopherson92f98952021-02-04 16:57:46 -08001022 if (static_call(kvm_x86_get_cpl)(vcpu) != 0 ||
1023 __kvm_set_xcr(vcpu, kvm_rcx_read(vcpu), kvm_read_edx_eax(vcpu))) {
1024 kvm_inject_gp(vcpu, 0);
1025 return 1;
1026 }
Paolo Bonzinibbefd4f2020-12-14 07:49:54 -05001027
Sean Christopherson92f98952021-02-04 16:57:46 -08001028 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001029}
Sean Christopherson92f98952021-02-04 16:57:46 -08001030EXPORT_SYMBOL_GPL(kvm_emulate_xsetbv);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001031
Sean Christophersonee69c922020-10-06 18:44:16 -07001032bool kvm_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Wanpeng Li3ca94192019-09-18 17:50:10 +08001033{
Sean Christophersonb11306b2019-12-10 14:44:13 -08001034 if (cr4 & cr4_reserved_bits)
Sean Christophersonee69c922020-10-06 18:44:16 -07001035 return false;
Wanpeng Li3ca94192019-09-18 17:50:10 +08001036
Krish Sadhukhanb899c132020-07-08 00:39:55 +00001037 if (cr4 & vcpu->arch.cr4_guest_rsvd_bits)
Sean Christophersonee69c922020-10-06 18:44:16 -07001038 return false;
Wanpeng Li3ca94192019-09-18 17:50:10 +08001039
Jason Baronb36464772021-01-14 22:27:56 -05001040 return static_call(kvm_x86_is_valid_cr4)(vcpu, cr4);
Wanpeng Li3ca94192019-09-18 17:50:10 +08001041}
Sean Christophersonee69c922020-10-06 18:44:16 -07001042EXPORT_SYMBOL_GPL(kvm_is_valid_cr4);
Wanpeng Li3ca94192019-09-18 17:50:10 +08001043
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001044void kvm_post_set_cr4(struct kvm_vcpu *vcpu, unsigned long old_cr4, unsigned long cr4)
1045{
Lai Jiangshan509bfe32021-10-19 19:01:52 +08001046 /*
1047 * If any role bit is changed, the MMU needs to be reset.
1048 *
1049 * If CR4.PCIDE is changed 1 -> 0, the guest TLB must be flushed.
1050 * If CR4.PCIDE is changed 0 -> 1, there is no need to flush the TLB
1051 * according to the SDM; however, stale prev_roots could be reused
1052 * incorrectly in the future after a MOV to CR3 with NOFLUSH=1, so we
1053 * free them all. KVM_REQ_MMU_RELOAD is fit for the both cases; it
1054 * is slow, but changing CR4.PCIDE is a rare case.
1055 *
1056 * If CR4.PGE is changed, the guest TLB must be flushed.
1057 *
1058 * Note: resetting MMU is a superset of KVM_REQ_MMU_RELOAD and
1059 * KVM_REQ_MMU_RELOAD is a superset of KVM_REQ_TLB_FLUSH_GUEST, hence
1060 * the usage of "else if".
1061 */
Lai Jiangshan55261732021-09-19 10:42:45 +08001062 if ((cr4 ^ old_cr4) & KVM_MMU_CR4_ROLE_BITS)
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001063 kvm_mmu_reset_context(vcpu);
Lai Jiangshan509bfe32021-10-19 19:01:52 +08001064 else if ((cr4 ^ old_cr4) & X86_CR4_PCIDE)
1065 kvm_make_request(KVM_REQ_MMU_RELOAD, vcpu);
1066 else if ((cr4 ^ old_cr4) & X86_CR4_PGE)
Lai Jiangshan55261732021-09-19 10:42:45 +08001067 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001068}
1069EXPORT_SYMBOL_GPL(kvm_post_set_cr4);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001070
Avi Kivitya83b29c2010-06-10 17:02:15 +03001071int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +01001072{
Avi Kivityfc78f512009-12-07 12:16:48 +02001073 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +08001074
Sean Christophersonee69c922020-10-06 18:44:16 -07001075 if (!kvm_is_valid_cr4(vcpu, cr4))
Paolo Bonziniae3e61e2016-07-12 10:36:41 +02001076 return 1;
1077
Carsten Ottea03490e2007-10-29 16:09:35 +01001078 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +03001079 if (!(cr4 & X86_CR4_PAE))
1080 return 1;
Sean Christophersond74fcfc2020-07-02 19:17:14 -07001081 if ((cr4 ^ old_cr4) & X86_CR4_LA57)
1082 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +03001083 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
Lai Jiangshana37ebdc2021-11-08 20:43:57 +08001084 && ((cr4 ^ old_cr4) & X86_CR4_PDPTR_BITS)
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +08001085 && !load_pdptrs(vcpu, kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +03001086 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001087
Mao, Junjiead756a12012-07-02 01:18:48 +00001088 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
Radim Krčmářd6321d42017-08-05 00:12:49 +02001089 if (!guest_cpuid_has(vcpu, X86_FEATURE_PCID))
Mao, Junjiead756a12012-07-02 01:18:48 +00001090 return 1;
1091
1092 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
1093 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
1094 return 1;
1095 }
1096
Jason Baronb36464772021-01-14 22:27:56 -05001097 static_call(kvm_x86_set_cr4)(vcpu, cr4);
Gleb Natapov0f122442010-04-28 19:15:31 +03001098
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001099 kvm_post_set_cr4(vcpu, old_cr4, cr4);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001100
Gleb Natapov0f122442010-04-28 19:15:31 +03001101 return 0;
1102}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001103EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +01001104
Sean Christopherson21823fb2021-06-09 16:42:24 -07001105static void kvm_invalidate_pcid(struct kvm_vcpu *vcpu, unsigned long pcid)
1106{
1107 struct kvm_mmu *mmu = vcpu->arch.mmu;
1108 unsigned long roots_to_free = 0;
1109 int i;
1110
1111 /*
Lai Jiangshane45e9e32021-10-19 19:01:51 +08001112 * MOV CR3 and INVPCID are usually not intercepted when using TDP, but
1113 * this is reachable when running EPT=1 and unrestricted_guest=0, and
1114 * also via the emulator. KVM's TDP page tables are not in the scope of
1115 * the invalidation, but the guest's TLB entries need to be flushed as
1116 * the CPU may have cached entries in its TLB for the target PCID.
1117 */
1118 if (unlikely(tdp_enabled)) {
1119 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
1120 return;
1121 }
1122
1123 /*
Sean Christopherson21823fb2021-06-09 16:42:24 -07001124 * If neither the current CR3 nor any of the prev_roots use the given
1125 * PCID, then nothing needs to be done here because a resync will
1126 * happen anyway before switching to any other CR3.
1127 */
1128 if (kvm_get_active_pcid(vcpu) == pcid) {
Sean Christophersone62f1aa2021-06-09 16:42:32 -07001129 kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
Sean Christopherson21823fb2021-06-09 16:42:24 -07001130 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
1131 }
1132
Lai Jiangshan509bfe32021-10-19 19:01:52 +08001133 /*
1134 * If PCID is disabled, there is no need to free prev_roots even if the
1135 * PCIDs for them are also 0, because MOV to CR3 always flushes the TLB
1136 * with PCIDE=0.
1137 */
1138 if (!kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
1139 return;
1140
Sean Christopherson21823fb2021-06-09 16:42:24 -07001141 for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++)
1142 if (kvm_get_pcid(vcpu, mmu->prev_roots[i].pgd) == pcid)
1143 roots_to_free |= KVM_MMU_ROOT_PREVIOUS(i);
1144
1145 kvm_mmu_free_roots(vcpu, mmu, roots_to_free);
1146}
1147
Avi Kivity23902182010-06-10 17:02:16 +03001148int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +01001149{
Junaid Shahidade61e22018-06-27 14:59:15 -07001150 bool skip_tlb_flush = false;
Sean Christopherson21823fb2021-06-09 16:42:24 -07001151 unsigned long pcid = 0;
Paolo Bonziniac146232014-11-10 13:53:25 +01001152#ifdef CONFIG_X86_64
Junaid Shahidc19986f2018-05-04 11:37:13 -07001153 bool pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
1154
Junaid Shahidade61e22018-06-27 14:59:15 -07001155 if (pcid_enabled) {
Junaid Shahid208320b2018-06-27 14:59:21 -07001156 skip_tlb_flush = cr3 & X86_CR3_PCID_NOFLUSH;
1157 cr3 &= ~X86_CR3_PCID_NOFLUSH;
Sean Christopherson21823fb2021-06-09 16:42:24 -07001158 pcid = cr3 & X86_CR3_PCID_MASK;
Junaid Shahidade61e22018-06-27 14:59:15 -07001159 }
Paolo Bonziniac146232014-11-10 13:53:25 +01001160#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +02001161
Sean Christophersonc7313152021-06-07 12:01:58 +03001162 /* PDPTRs are always reloaded for PAE paging. */
Sean Christopherson21823fb2021-06-09 16:42:24 -07001163 if (cr3 == kvm_read_cr3(vcpu) && !is_pae_paging(vcpu))
1164 goto handle_tlb_flush;
Avi Kivityd835dfe2007-11-21 02:57:59 +02001165
Sean Christopherson886bbcc2021-04-21 19:21:21 -07001166 /*
1167 * Do not condition the GPA check on long mode, this helper is used to
1168 * stuff CR3, e.g. for RSM emulation, and there is no guarantee that
1169 * the current vCPU mode is accurate.
1170 */
1171 if (kvm_vcpu_is_illegal_gpa(vcpu, cr3))
Yu Zhangd1cd3ce2017-08-24 20:27:53 +08001172 return 1;
Sean Christopherson886bbcc2021-04-21 19:21:21 -07001173
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +08001174 if (is_pae_paging(vcpu) && !load_pdptrs(vcpu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +03001175 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001176
Sean Christopherson21823fb2021-06-09 16:42:24 -07001177 if (cr3 != kvm_read_cr3(vcpu))
Sean Christophersonb5129102021-06-09 16:42:27 -07001178 kvm_mmu_new_pgd(vcpu, cr3);
Sean Christopherson21823fb2021-06-09 16:42:24 -07001179
Gleb Natapov0f122442010-04-28 19:15:31 +03001180 vcpu->arch.cr3 = cr3;
Lai Jiangshan3883bc9d2021-11-08 20:44:02 +08001181 kvm_register_mark_dirty(vcpu, VCPU_EXREG_CR3);
Junaid Shahid7c390d32018-06-27 14:59:06 -07001182
Sean Christopherson21823fb2021-06-09 16:42:24 -07001183handle_tlb_flush:
1184 /*
1185 * A load of CR3 that flushes the TLB flushes only the current PCID,
1186 * even if PCID is disabled, in which case PCID=0 is flushed. It's a
1187 * moot point in the end because _disabling_ PCID will flush all PCIDs,
1188 * and it's impossible to use a non-zero PCID when PCID is disabled,
1189 * i.e. only PCID=0 can be relevant.
1190 */
1191 if (!skip_tlb_flush)
1192 kvm_invalidate_pcid(vcpu, pcid);
1193
Gleb Natapov0f122442010-04-28 19:15:31 +03001194 return 0;
1195}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001196EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +01001197
Andre Przywaraeea1cff2010-12-21 11:12:00 +01001198int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +01001199{
Gleb Natapov0f122442010-04-28 19:15:31 +03001200 if (cr8 & CR8_RESERVED_BITS)
1201 return 1;
Paolo Bonzini35754c92015-07-29 12:05:37 +02001202 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001203 kvm_lapic_set_tpr(vcpu, cr8);
1204 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001205 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +03001206 return 0;
1207}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001208EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001209
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001210unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +01001211{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001212 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001213 return kvm_lapic_get_cr8(vcpu);
1214 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001215 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +01001216}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001217EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001218
Nadav Amitae561ed2015-04-02 03:10:37 +03001219static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
1220{
1221 int i;
1222
1223 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
1224 for (i = 0; i < KVM_NR_DB_REGS; i++)
1225 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Nadav Amitae561ed2015-04-02 03:10:37 +03001226 }
1227}
1228
Paolo Bonzini7c866632020-05-16 08:42:28 -04001229void kvm_update_dr7(struct kvm_vcpu *vcpu)
Jan Kiszkac8639012012-09-21 05:42:55 +02001230{
1231 unsigned long dr7;
1232
1233 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1234 dr7 = vcpu->arch.guest_debug_dr7;
1235 else
1236 dr7 = vcpu->arch.dr7;
Jason Baronb36464772021-01-14 22:27:56 -05001237 static_call(kvm_x86_set_dr7)(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +01001238 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
1239 if (dr7 & DR7_BP_EN_MASK)
1240 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +02001241}
Paolo Bonzini7c866632020-05-16 08:42:28 -04001242EXPORT_SYMBOL_GPL(kvm_update_dr7);
Jan Kiszkac8639012012-09-21 05:42:55 +02001243
Nadav Amit6f43ed02014-07-15 17:37:46 +03001244static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
1245{
1246 u64 fixed = DR6_FIXED_1;
1247
Radim Krčmářd6321d42017-08-05 00:12:49 +02001248 if (!guest_cpuid_has(vcpu, X86_FEATURE_RTM))
Nadav Amit6f43ed02014-07-15 17:37:46 +03001249 fixed |= DR6_RTM;
Chenyi Qiange8ea85f2021-02-02 17:04:32 +08001250
1251 if (!guest_cpuid_has(vcpu, X86_FEATURE_BUS_LOCK_DETECT))
1252 fixed |= DR6_BUS_LOCK;
Nadav Amit6f43ed02014-07-15 17:37:46 +03001253 return fixed;
1254}
1255
Paolo Bonzini996ff542020-12-14 07:49:54 -05001256int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +03001257{
Marios Pomonisea740052019-12-11 12:47:52 -08001258 size_t size = ARRAY_SIZE(vcpu->arch.db);
1259
Gleb Natapov020df072010-04-13 10:05:23 +03001260 switch (dr) {
1261 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001262 vcpu->arch.db[array_index_nospec(dr, size)] = val;
Gleb Natapov020df072010-04-13 10:05:23 +03001263 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
1264 vcpu->arch.eff_db[dr] = val;
1265 break;
1266 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001267 case 6:
Krish Sadhukhanf5f61452020-05-22 18:19:51 -04001268 if (!kvm_dr6_valid(val))
Paolo Bonzini996ff542020-12-14 07:49:54 -05001269 return 1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +03001270 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001271 break;
1272 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001273 default: /* 7 */
Krish Sadhukhanb91991b2020-01-15 19:54:32 -05001274 if (!kvm_dr7_valid(val))
Paolo Bonzini996ff542020-12-14 07:49:54 -05001275 return 1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +03001276 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02001277 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001278 break;
1279 }
1280
1281 return 0;
1282}
1283EXPORT_SYMBOL_GPL(kvm_set_dr);
1284
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05001285void kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +03001286{
Marios Pomonisea740052019-12-11 12:47:52 -08001287 size_t size = ARRAY_SIZE(vcpu->arch.db);
1288
Gleb Natapov020df072010-04-13 10:05:23 +03001289 switch (dr) {
1290 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001291 *val = vcpu->arch.db[array_index_nospec(dr, size)];
Gleb Natapov020df072010-04-13 10:05:23 +03001292 break;
1293 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001294 case 6:
Paolo Bonzini5679b802020-05-04 11:28:25 -04001295 *val = vcpu->arch.dr6;
Gleb Natapov020df072010-04-13 10:05:23 +03001296 break;
1297 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001298 default: /* 7 */
1299 *val = vcpu->arch.dr7;
1300 break;
1301 }
Gleb Natapov338dbc92010-04-28 19:15:32 +03001302}
Gleb Natapov020df072010-04-13 10:05:23 +03001303EXPORT_SYMBOL_GPL(kvm_get_dr);
1304
Sean Christophersonc483c452021-02-04 16:57:48 -08001305int kvm_emulate_rdpmc(struct kvm_vcpu *vcpu)
Avi Kivity022cd0e2011-11-10 14:57:23 +02001306{
Sean Christophersonde3cd112019-04-30 10:36:17 -07001307 u32 ecx = kvm_rcx_read(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001308 u64 data;
Avi Kivity022cd0e2011-11-10 14:57:23 +02001309
Sean Christophersonc483c452021-02-04 16:57:48 -08001310 if (kvm_pmu_rdpmc(vcpu, ecx, &data)) {
1311 kvm_inject_gp(vcpu, 0);
1312 return 1;
1313 }
1314
Sean Christophersonde3cd112019-04-30 10:36:17 -07001315 kvm_rax_write(vcpu, (u32)data);
1316 kvm_rdx_write(vcpu, data >> 32);
Sean Christophersonc483c452021-02-04 16:57:48 -08001317 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001318}
Sean Christophersonc483c452021-02-04 16:57:48 -08001319EXPORT_SYMBOL_GPL(kvm_emulate_rdpmc);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001320
Carsten Otte043405e2007-10-10 17:16:19 +02001321/*
1322 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
1323 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
1324 *
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001325 * The three MSR lists(msrs_to_save, emulated_msrs, msr_based_features)
1326 * extract the supported MSRs from the related const lists.
1327 * msrs_to_save is selected from the msrs_to_save_all to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -04001328 * capabilities of the host cpu. This capabilities test skips MSRs that are
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001329 * kvm-specific. Those are put in emulated_msrs_all; filtering of emulated_msrs
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001330 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +02001331 */
Glauber Costae3267cb2009-10-06 13:24:50 -04001332
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001333static const u32 msrs_to_save_all[] = {
Carsten Otte043405e2007-10-10 17:16:19 +02001334 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -04001335 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +02001336#ifdef CONFIG_X86_64
1337 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
1338#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +08001339 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001340 MSR_IA32_FEAT_CTL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001341 MSR_IA32_SPEC_CTRL,
Chao Pengbf8c55d2018-10-24 16:05:14 +08001342 MSR_IA32_RTIT_CTL, MSR_IA32_RTIT_STATUS, MSR_IA32_RTIT_CR3_MATCH,
1343 MSR_IA32_RTIT_OUTPUT_BASE, MSR_IA32_RTIT_OUTPUT_MASK,
1344 MSR_IA32_RTIT_ADDR0_A, MSR_IA32_RTIT_ADDR0_B,
1345 MSR_IA32_RTIT_ADDR1_A, MSR_IA32_RTIT_ADDR1_B,
1346 MSR_IA32_RTIT_ADDR2_A, MSR_IA32_RTIT_ADDR2_B,
1347 MSR_IA32_RTIT_ADDR3_A, MSR_IA32_RTIT_ADDR3_B,
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001348 MSR_IA32_UMWAIT_CONTROL,
1349
Jim Mattsone2ada662019-08-21 11:20:04 -07001350 MSR_ARCH_PERFMON_FIXED_CTR0, MSR_ARCH_PERFMON_FIXED_CTR1,
Wei Wang9fb12fe2021-12-17 07:49:34 -05001351 MSR_ARCH_PERFMON_FIXED_CTR0 + 2,
Jim Mattsone2ada662019-08-21 11:20:04 -07001352 MSR_CORE_PERF_FIXED_CTR_CTRL, MSR_CORE_PERF_GLOBAL_STATUS,
1353 MSR_CORE_PERF_GLOBAL_CTRL, MSR_CORE_PERF_GLOBAL_OVF_CTRL,
1354 MSR_ARCH_PERFMON_PERFCTR0, MSR_ARCH_PERFMON_PERFCTR1,
1355 MSR_ARCH_PERFMON_PERFCTR0 + 2, MSR_ARCH_PERFMON_PERFCTR0 + 3,
1356 MSR_ARCH_PERFMON_PERFCTR0 + 4, MSR_ARCH_PERFMON_PERFCTR0 + 5,
1357 MSR_ARCH_PERFMON_PERFCTR0 + 6, MSR_ARCH_PERFMON_PERFCTR0 + 7,
1358 MSR_ARCH_PERFMON_PERFCTR0 + 8, MSR_ARCH_PERFMON_PERFCTR0 + 9,
1359 MSR_ARCH_PERFMON_PERFCTR0 + 10, MSR_ARCH_PERFMON_PERFCTR0 + 11,
1360 MSR_ARCH_PERFMON_PERFCTR0 + 12, MSR_ARCH_PERFMON_PERFCTR0 + 13,
1361 MSR_ARCH_PERFMON_PERFCTR0 + 14, MSR_ARCH_PERFMON_PERFCTR0 + 15,
1362 MSR_ARCH_PERFMON_PERFCTR0 + 16, MSR_ARCH_PERFMON_PERFCTR0 + 17,
Jim Mattsone2ada662019-08-21 11:20:04 -07001363 MSR_ARCH_PERFMON_EVENTSEL0, MSR_ARCH_PERFMON_EVENTSEL1,
1364 MSR_ARCH_PERFMON_EVENTSEL0 + 2, MSR_ARCH_PERFMON_EVENTSEL0 + 3,
1365 MSR_ARCH_PERFMON_EVENTSEL0 + 4, MSR_ARCH_PERFMON_EVENTSEL0 + 5,
1366 MSR_ARCH_PERFMON_EVENTSEL0 + 6, MSR_ARCH_PERFMON_EVENTSEL0 + 7,
1367 MSR_ARCH_PERFMON_EVENTSEL0 + 8, MSR_ARCH_PERFMON_EVENTSEL0 + 9,
1368 MSR_ARCH_PERFMON_EVENTSEL0 + 10, MSR_ARCH_PERFMON_EVENTSEL0 + 11,
1369 MSR_ARCH_PERFMON_EVENTSEL0 + 12, MSR_ARCH_PERFMON_EVENTSEL0 + 13,
1370 MSR_ARCH_PERFMON_EVENTSEL0 + 14, MSR_ARCH_PERFMON_EVENTSEL0 + 15,
1371 MSR_ARCH_PERFMON_EVENTSEL0 + 16, MSR_ARCH_PERFMON_EVENTSEL0 + 17,
Fares Mehannae1fc1552021-09-15 13:39:50 +00001372
1373 MSR_K7_EVNTSEL0, MSR_K7_EVNTSEL1, MSR_K7_EVNTSEL2, MSR_K7_EVNTSEL3,
1374 MSR_K7_PERFCTR0, MSR_K7_PERFCTR1, MSR_K7_PERFCTR2, MSR_K7_PERFCTR3,
1375 MSR_F15H_PERF_CTL0, MSR_F15H_PERF_CTL1, MSR_F15H_PERF_CTL2,
1376 MSR_F15H_PERF_CTL3, MSR_F15H_PERF_CTL4, MSR_F15H_PERF_CTL5,
1377 MSR_F15H_PERF_CTR0, MSR_F15H_PERF_CTR1, MSR_F15H_PERF_CTR2,
1378 MSR_F15H_PERF_CTR3, MSR_F15H_PERF_CTR4, MSR_F15H_PERF_CTR5,
Carsten Otte043405e2007-10-10 17:16:19 +02001379};
1380
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001381static u32 msrs_to_save[ARRAY_SIZE(msrs_to_save_all)];
Carsten Otte043405e2007-10-10 17:16:19 +02001382static unsigned num_msrs_to_save;
1383
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001384static const u32 emulated_msrs_all[] = {
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001385 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
1386 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
1387 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
1388 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
Ladi Prosek72c139b2017-07-26 13:32:59 +02001389 HV_X64_MSR_TSC_FREQUENCY, HV_X64_MSR_APIC_FREQUENCY,
Andrey Smetanine7d95132015-07-03 15:01:37 +03001390 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
1391 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
Andrey Smetanine516ceb2015-09-16 12:29:48 +03001392 HV_X64_MSR_RESET,
Andrey Smetanin11c4b1c2015-09-16 12:29:49 +03001393 HV_X64_MSR_VP_INDEX,
Andrey Smetanin9eec50b2015-09-16 12:29:50 +03001394 HV_X64_MSR_VP_RUNTIME,
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001395 HV_X64_MSR_SCONTROL,
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03001396 HV_X64_MSR_STIMER0_CONFIG,
Ladi Prosekd4abc572018-03-20 15:02:07 +01001397 HV_X64_MSR_VP_ASSIST_PAGE,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001398 HV_X64_MSR_REENLIGHTENMENT_CONTROL, HV_X64_MSR_TSC_EMULATION_CONTROL,
1399 HV_X64_MSR_TSC_EMULATION_STATUS,
Jon Doronf97f5a52020-05-29 16:45:40 +03001400 HV_X64_MSR_SYNDBG_OPTIONS,
1401 HV_X64_MSR_SYNDBG_CONTROL, HV_X64_MSR_SYNDBG_STATUS,
1402 HV_X64_MSR_SYNDBG_SEND_BUFFER, HV_X64_MSR_SYNDBG_RECV_BUFFER,
1403 HV_X64_MSR_SYNDBG_PENDING_BUFFER,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001404
1405 MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02001406 MSR_KVM_PV_EOI_EN, MSR_KVM_ASYNC_PF_INT, MSR_KVM_ASYNC_PF_ACK,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001407
Will Auldba904632012-11-29 12:42:50 -08001408 MSR_IA32_TSC_ADJUST,
Dave Hansen09141ec2020-03-05 09:47:06 -08001409 MSR_IA32_TSC_DEADLINE,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001410 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001411 MSR_IA32_PERF_CAPABILITIES,
Carsten Otte043405e2007-10-10 17:16:19 +02001412 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +03001413 MSR_IA32_MCG_STATUS,
1414 MSR_IA32_MCG_CTL,
Ashok Rajc45dcc72016-06-22 14:59:56 +08001415 MSR_IA32_MCG_EXT_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +02001416 MSR_IA32_SMBASE,
Liran Alon52797bf2017-11-15 13:43:14 +02001417 MSR_SMI_COUNT,
Kyle Hueydb2336a2017-03-20 01:16:28 -07001418 MSR_PLATFORM_INFO,
1419 MSR_MISC_FEATURES_ENABLES,
Tom Lendackybc226f02018-05-10 22:06:39 +02001420 MSR_AMD64_VIRT_SPEC_CTRL,
Maxim Levitsky5228eb92021-09-14 18:48:24 +03001421 MSR_AMD64_TSC_RATIO,
Liran Alon6c6a2ab2019-04-15 18:45:26 +03001422 MSR_IA32_POWER_CTL,
Paolo Bonzini99634e32020-01-20 14:22:55 +01001423 MSR_IA32_UCODE_REV,
Borislav Petkov191c8132019-04-18 18:32:50 +02001424
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001425 /*
1426 * The following list leaves out MSRs whose values are determined
1427 * by arch/x86/kvm/vmx/nested.c based on CPUID or other MSRs.
1428 * We always support the "true" VMX control MSRs, even if the host
1429 * processor does not, so I am putting these registers here rather
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001430 * than in msrs_to_save_all.
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001431 */
1432 MSR_IA32_VMX_BASIC,
1433 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1434 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1435 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1436 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1437 MSR_IA32_VMX_MISC,
1438 MSR_IA32_VMX_CR0_FIXED0,
1439 MSR_IA32_VMX_CR4_FIXED0,
1440 MSR_IA32_VMX_VMCS_ENUM,
1441 MSR_IA32_VMX_PROCBASED_CTLS2,
1442 MSR_IA32_VMX_EPT_VPID_CAP,
1443 MSR_IA32_VMX_VMFUNC,
1444
Borislav Petkov191c8132019-04-18 18:32:50 +02001445 MSR_K7_HWCR,
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03001446 MSR_KVM_POLL_CONTROL,
Carsten Otte043405e2007-10-10 17:16:19 +02001447};
1448
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001449static u32 emulated_msrs[ARRAY_SIZE(emulated_msrs_all)];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001450static unsigned num_emulated_msrs;
1451
Tom Lendacky801e4592018-02-21 13:39:51 -06001452/*
1453 * List of msr numbers which are used to expose MSR-based features that
1454 * can be used by a hypervisor to validate requested CPU features.
1455 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001456static const u32 msr_based_features_all[] = {
Paolo Bonzini13893092018-02-26 13:40:09 +01001457 MSR_IA32_VMX_BASIC,
1458 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1459 MSR_IA32_VMX_PINBASED_CTLS,
1460 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1461 MSR_IA32_VMX_PROCBASED_CTLS,
1462 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1463 MSR_IA32_VMX_EXIT_CTLS,
1464 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1465 MSR_IA32_VMX_ENTRY_CTLS,
1466 MSR_IA32_VMX_MISC,
1467 MSR_IA32_VMX_CR0_FIXED0,
1468 MSR_IA32_VMX_CR0_FIXED1,
1469 MSR_IA32_VMX_CR4_FIXED0,
1470 MSR_IA32_VMX_CR4_FIXED1,
1471 MSR_IA32_VMX_VMCS_ENUM,
1472 MSR_IA32_VMX_PROCBASED_CTLS2,
1473 MSR_IA32_VMX_EPT_VPID_CAP,
1474 MSR_IA32_VMX_VMFUNC,
1475
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01001476 MSR_F10H_DECFG,
Wanpeng Li518e7b92018-02-28 14:03:31 +08001477 MSR_IA32_UCODE_REV,
Paolo Bonzinicd283252018-06-25 14:04:37 +02001478 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001479 MSR_IA32_PERF_CAPABILITIES,
Tom Lendacky801e4592018-02-21 13:39:51 -06001480};
1481
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001482static u32 msr_based_features[ARRAY_SIZE(msr_based_features_all)];
Tom Lendacky801e4592018-02-21 13:39:51 -06001483static unsigned int num_msr_based_features;
1484
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001485static u64 kvm_get_arch_capabilities(void)
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001486{
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001487 u64 data = 0;
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001488
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001489 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES))
1490 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, data);
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001491
1492 /*
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001493 * If nx_huge_pages is enabled, KVM's shadow paging will ensure that
1494 * the nested hypervisor runs with NX huge pages. If it is not,
Ingo Molnard9f6e122021-03-18 15:28:01 +01001495 * L1 is anyway vulnerable to ITLB_MULTIHIT exploits from other
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001496 * L1 guests, so it need not worry about its own (L2) guests.
1497 */
1498 data |= ARCH_CAP_PSCHANGE_MC_NO;
1499
1500 /*
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001501 * If we're doing cache flushes (either "always" or "cond")
1502 * we will do one whenever the guest does a vmlaunch/vmresume.
1503 * If an outer hypervisor is doing the cache flush for us
1504 * (VMENTER_L1D_FLUSH_NESTED_VM), we can safely pass that
1505 * capability to the guest too, and if EPT is disabled we're not
1506 * vulnerable. Overall, only VMENTER_L1D_FLUSH_NEVER will
1507 * require a nested hypervisor to do a flush of its own.
1508 */
1509 if (l1tf_vmx_mitigation != VMENTER_L1D_FLUSH_NEVER)
1510 data |= ARCH_CAP_SKIP_VMENTRY_L1DFLUSH;
1511
Paolo Bonzini0c549142019-08-19 17:24:07 +02001512 if (!boot_cpu_has_bug(X86_BUG_CPU_MELTDOWN))
1513 data |= ARCH_CAP_RDCL_NO;
1514 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
1515 data |= ARCH_CAP_SSB_NO;
1516 if (!boot_cpu_has_bug(X86_BUG_MDS))
1517 data |= ARCH_CAP_MDS_NO;
1518
Paolo Bonzini71316362021-01-28 11:45:00 -05001519 if (!boot_cpu_has(X86_FEATURE_RTM)) {
1520 /*
1521 * If RTM=0 because the kernel has disabled TSX, the host might
1522 * have TAA_NO or TSX_CTRL. Clear TAA_NO (the guest sees RTM=0
1523 * and therefore knows that there cannot be TAA) but keep
1524 * TSX_CTRL: some buggy userspaces leave it set on tsx=on hosts,
1525 * and we want to allow migrating those guests to tsx=off hosts.
1526 */
1527 data &= ~ARCH_CAP_TAA_NO;
1528 } else if (!boot_cpu_has_bug(X86_BUG_TAA)) {
Paolo Bonzinicbbaa272019-11-18 18:58:26 +01001529 data |= ARCH_CAP_TAA_NO;
Paolo Bonzini71316362021-01-28 11:45:00 -05001530 } else {
1531 /*
1532 * Nothing to do here; we emulate TSX_CTRL if present on the
1533 * host so the guest can choose between disabling TSX or
1534 * using VERW to clear CPU buffers.
1535 */
1536 }
Pawan Guptae1d38b62019-10-23 12:23:33 +02001537
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001538 return data;
1539}
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001540
Wanpeng Li66421c12018-02-28 14:03:30 +08001541static int kvm_get_msr_feature(struct kvm_msr_entry *msr)
1542{
1543 switch (msr->index) {
Paolo Bonzinicd283252018-06-25 14:04:37 +02001544 case MSR_IA32_ARCH_CAPABILITIES:
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001545 msr->data = kvm_get_arch_capabilities();
1546 break;
1547 case MSR_IA32_UCODE_REV:
Paolo Bonzinicd283252018-06-25 14:04:37 +02001548 rdmsrl_safe(msr->index, &msr->data);
Wanpeng Li518e7b92018-02-28 14:03:31 +08001549 break;
Wanpeng Li66421c12018-02-28 14:03:30 +08001550 default:
Jason Baronb36464772021-01-14 22:27:56 -05001551 return static_call(kvm_x86_get_msr_feature)(msr);
Wanpeng Li66421c12018-02-28 14:03:30 +08001552 }
1553 return 0;
1554}
1555
Tom Lendacky801e4592018-02-21 13:39:51 -06001556static int do_get_msr_feature(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1557{
1558 struct kvm_msr_entry msr;
Wanpeng Li66421c12018-02-28 14:03:30 +08001559 int r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001560
1561 msr.index = index;
Wanpeng Li66421c12018-02-28 14:03:30 +08001562 r = kvm_get_msr_feature(&msr);
Peter Xu12bc2132020-06-22 18:04:42 -04001563
1564 if (r == KVM_MSR_RET_INVALID) {
1565 /* Unconditionally clear the output for simplicity */
1566 *data = 0;
Haiwei Lid6328262021-03-13 13:10:32 +08001567 if (kvm_msr_ignored_check(index, 0, false))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001568 r = 0;
Peter Xu12bc2132020-06-22 18:04:42 -04001569 }
1570
Wanpeng Li66421c12018-02-28 14:03:30 +08001571 if (r)
1572 return r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001573
1574 *data = msr.data;
1575
1576 return 0;
1577}
1578
Sean Christopherson11988492019-04-02 08:19:15 -07001579static bool __kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
1580{
1581 if (efer & EFER_FFXSR && !guest_cpuid_has(vcpu, X86_FEATURE_FXSR_OPT))
1582 return false;
1583
1584 if (efer & EFER_SVME && !guest_cpuid_has(vcpu, X86_FEATURE_SVM))
1585 return false;
1586
Sean Christopherson0a629562019-04-02 08:19:16 -07001587 if (efer & (EFER_LME | EFER_LMA) &&
1588 !guest_cpuid_has(vcpu, X86_FEATURE_LM))
1589 return false;
1590
1591 if (efer & EFER_NX && !guest_cpuid_has(vcpu, X86_FEATURE_NX))
1592 return false;
1593
Sean Christopherson11988492019-04-02 08:19:15 -07001594 return true;
1595
1596}
Jan Kiszka384bb782013-04-20 10:52:36 +02001597bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +01001598{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001599 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +02001600 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +01001601
Sean Christopherson11988492019-04-02 08:19:15 -07001602 return __kvm_valid_efer(vcpu, efer);
Jan Kiszka384bb782013-04-20 10:52:36 +02001603}
1604EXPORT_SYMBOL_GPL(kvm_valid_efer);
1605
Sean Christopherson11988492019-04-02 08:19:15 -07001606static int set_efer(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Jan Kiszka384bb782013-04-20 10:52:36 +02001607{
1608 u64 old_efer = vcpu->arch.efer;
Sean Christopherson11988492019-04-02 08:19:15 -07001609 u64 efer = msr_info->data;
Maxim Levitsky72f211e2020-10-01 14:29:53 +03001610 int r;
Jan Kiszka384bb782013-04-20 10:52:36 +02001611
Sean Christopherson11988492019-04-02 08:19:15 -07001612 if (efer & efer_reserved_bits)
Paolo Bonzini66f61c92019-05-24 21:52:46 +02001613 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +02001614
Sean Christopherson11988492019-04-02 08:19:15 -07001615 if (!msr_info->host_initiated) {
1616 if (!__kvm_valid_efer(vcpu, efer))
1617 return 1;
1618
1619 if (is_paging(vcpu) &&
1620 (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1621 return 1;
1622 }
Jan Kiszka384bb782013-04-20 10:52:36 +02001623
Carsten Otte15c4a642007-10-30 18:44:17 +01001624 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001625 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001626
Jason Baronb36464772021-01-14 22:27:56 -05001627 r = static_call(kvm_x86_set_efer)(vcpu, efer);
Maxim Levitsky72f211e2020-10-01 14:29:53 +03001628 if (r) {
1629 WARN_ON(r > 0);
1630 return r;
1631 }
Sheng Yanga3d204e2010-05-12 16:40:40 +08001632
Sheng Yangaad82702010-05-12 16:40:42 +08001633 /* Update reserved bits */
1634 if ((efer ^ old_efer) & EFER_NX)
1635 kvm_mmu_reset_context(vcpu);
1636
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001637 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001638}
1639
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001640void kvm_enable_efer_bits(u64 mask)
1641{
1642 efer_reserved_bits &= ~mask;
1643}
1644EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1645
Alexander Graf51de8152020-09-25 16:34:17 +02001646bool kvm_msr_allowed(struct kvm_vcpu *vcpu, u32 index, u32 type)
1647{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001648 struct kvm_x86_msr_filter *msr_filter;
1649 struct msr_bitmap_range *ranges;
Alexander Graf1a1552542020-09-25 16:34:21 +02001650 struct kvm *kvm = vcpu->kvm;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001651 bool allowed;
Alexander Graf1a1552542020-09-25 16:34:21 +02001652 int idx;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001653 u32 i;
Alexander Graf1a1552542020-09-25 16:34:21 +02001654
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001655 /* x2APIC MSRs do not support filtering. */
1656 if (index >= 0x800 && index <= 0x8ff)
Alexander Graf1a1552542020-09-25 16:34:21 +02001657 return true;
1658
Alexander Graf1a1552542020-09-25 16:34:21 +02001659 idx = srcu_read_lock(&kvm->srcu);
1660
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001661 msr_filter = srcu_dereference(kvm->arch.msr_filter, &kvm->srcu);
1662 if (!msr_filter) {
1663 allowed = true;
1664 goto out;
1665 }
1666
1667 allowed = msr_filter->default_allow;
1668 ranges = msr_filter->ranges;
1669
1670 for (i = 0; i < msr_filter->count; i++) {
Alexander Graf1a1552542020-09-25 16:34:21 +02001671 u32 start = ranges[i].base;
1672 u32 end = start + ranges[i].nmsrs;
1673 u32 flags = ranges[i].flags;
1674 unsigned long *bitmap = ranges[i].bitmap;
1675
1676 if ((index >= start) && (index < end) && (flags & type)) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001677 allowed = !!test_bit(index - start, bitmap);
Alexander Graf1a1552542020-09-25 16:34:21 +02001678 break;
1679 }
1680 }
1681
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001682out:
Alexander Graf1a1552542020-09-25 16:34:21 +02001683 srcu_read_unlock(&kvm->srcu, idx);
1684
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001685 return allowed;
Alexander Graf51de8152020-09-25 16:34:17 +02001686}
1687EXPORT_SYMBOL_GPL(kvm_msr_allowed);
1688
Carsten Otte15c4a642007-10-30 18:44:17 +01001689/*
Sean Christophersonf20935d2019-09-05 14:22:54 -07001690 * Write @data into the MSR specified by @index. Select MSR specific fault
1691 * checks are bypassed if @host_initiated is %true.
Carsten Otte15c4a642007-10-30 18:44:17 +01001692 * Returns 0 on success, non-0 otherwise.
1693 * Assumes vcpu_load() was already called.
1694 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001695static int __kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data,
1696 bool host_initiated)
Carsten Otte15c4a642007-10-30 18:44:17 +01001697{
Sean Christophersonf20935d2019-09-05 14:22:54 -07001698 struct msr_data msr;
1699
Alexander Graf1a1552542020-09-25 16:34:21 +02001700 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_WRITE))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001701 return KVM_MSR_RET_FILTERED;
Alexander Graf1a1552542020-09-25 16:34:21 +02001702
Sean Christophersonf20935d2019-09-05 14:22:54 -07001703 switch (index) {
Nadav Amit854e8bb2014-09-16 03:24:05 +03001704 case MSR_FS_BASE:
1705 case MSR_GS_BASE:
1706 case MSR_KERNEL_GS_BASE:
1707 case MSR_CSTAR:
1708 case MSR_LSTAR:
Sean Christophersonf20935d2019-09-05 14:22:54 -07001709 if (is_noncanonical_address(data, vcpu))
Nadav Amit854e8bb2014-09-16 03:24:05 +03001710 return 1;
1711 break;
1712 case MSR_IA32_SYSENTER_EIP:
1713 case MSR_IA32_SYSENTER_ESP:
1714 /*
1715 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1716 * non-canonical address is written on Intel but not on
1717 * AMD (which ignores the top 32-bits, because it does
1718 * not implement 64-bit SYSENTER).
1719 *
1720 * 64-bit code should hence be able to write a non-canonical
1721 * value on AMD. Making the address canonical ensures that
1722 * vmentry does not fail on Intel after writing a non-canonical
1723 * value, and that something deterministic happens if the guest
1724 * invokes 64-bit SYSENTER.
1725 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001726 data = get_canonical(data, vcpu_virt_addr_bits(vcpu));
Sean Christopherson61a05d42021-05-04 10:17:33 -07001727 break;
1728 case MSR_TSC_AUX:
1729 if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX))
1730 return 1;
1731
1732 if (!host_initiated &&
1733 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) &&
1734 !guest_cpuid_has(vcpu, X86_FEATURE_RDPID))
1735 return 1;
1736
1737 /*
1738 * Per Intel's SDM, bits 63:32 are reserved, but AMD's APM has
1739 * incomplete and conflicting architectural behavior. Current
1740 * AMD CPUs completely ignore bits 63:32, i.e. they aren't
1741 * reserved and always read as zeros. Enforce Intel's reserved
1742 * bits check if and only if the guest CPU is Intel, and clear
1743 * the bits in all other cases. This ensures cross-vendor
1744 * migration will provide consistent behavior for the guest.
1745 */
1746 if (guest_cpuid_is_intel(vcpu) && (data >> 32) != 0)
1747 return 1;
1748
1749 data = (u32)data;
1750 break;
Nadav Amit854e8bb2014-09-16 03:24:05 +03001751 }
Sean Christophersonf20935d2019-09-05 14:22:54 -07001752
1753 msr.data = data;
1754 msr.index = index;
1755 msr.host_initiated = host_initiated;
1756
Jason Baronb36464772021-01-14 22:27:56 -05001757 return static_call(kvm_x86_set_msr)(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001758}
1759
Peter Xu6abe9c12020-06-22 18:04:41 -04001760static int kvm_set_msr_ignored_check(struct kvm_vcpu *vcpu,
1761 u32 index, u64 data, bool host_initiated)
1762{
1763 int ret = __kvm_set_msr(vcpu, index, data, host_initiated);
1764
1765 if (ret == KVM_MSR_RET_INVALID)
Haiwei Lid6328262021-03-13 13:10:32 +08001766 if (kvm_msr_ignored_check(index, data, true))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001767 ret = 0;
Peter Xu6abe9c12020-06-22 18:04:41 -04001768
1769 return ret;
1770}
1771
Sean Christophersonf20935d2019-09-05 14:22:54 -07001772/*
1773 * Read the MSR specified by @index into @data. Select MSR specific fault
1774 * checks are bypassed if @host_initiated is %true.
1775 * Returns 0 on success, non-0 otherwise.
1776 * Assumes vcpu_load() was already called.
1777 */
Paolo Bonziniedef5c32019-11-18 12:23:00 -05001778int __kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data,
1779 bool host_initiated)
Sean Christophersonf20935d2019-09-05 14:22:54 -07001780{
1781 struct msr_data msr;
1782 int ret;
1783
Alexander Graf1a1552542020-09-25 16:34:21 +02001784 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_READ))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001785 return KVM_MSR_RET_FILTERED;
Alexander Graf1a1552542020-09-25 16:34:21 +02001786
Sean Christopherson61a05d42021-05-04 10:17:33 -07001787 switch (index) {
1788 case MSR_TSC_AUX:
1789 if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX))
1790 return 1;
1791
1792 if (!host_initiated &&
1793 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) &&
1794 !guest_cpuid_has(vcpu, X86_FEATURE_RDPID))
1795 return 1;
1796 break;
1797 }
1798
Sean Christophersonf20935d2019-09-05 14:22:54 -07001799 msr.index = index;
1800 msr.host_initiated = host_initiated;
1801
Jason Baronb36464772021-01-14 22:27:56 -05001802 ret = static_call(kvm_x86_get_msr)(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001803 if (!ret)
1804 *data = msr.data;
1805 return ret;
1806}
1807
Peter Xu6abe9c12020-06-22 18:04:41 -04001808static int kvm_get_msr_ignored_check(struct kvm_vcpu *vcpu,
1809 u32 index, u64 *data, bool host_initiated)
1810{
1811 int ret = __kvm_get_msr(vcpu, index, data, host_initiated);
1812
1813 if (ret == KVM_MSR_RET_INVALID) {
1814 /* Unconditionally clear *data for simplicity */
1815 *data = 0;
Haiwei Lid6328262021-03-13 13:10:32 +08001816 if (kvm_msr_ignored_check(index, 0, false))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001817 ret = 0;
Peter Xu6abe9c12020-06-22 18:04:41 -04001818 }
1819
1820 return ret;
1821}
1822
Sean Christophersonf20935d2019-09-05 14:22:54 -07001823int kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data)
1824{
Peter Xu6abe9c12020-06-22 18:04:41 -04001825 return kvm_get_msr_ignored_check(vcpu, index, data, false);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001826}
1827EXPORT_SYMBOL_GPL(kvm_get_msr);
1828
1829int kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data)
1830{
Peter Xu6abe9c12020-06-22 18:04:41 -04001831 return kvm_set_msr_ignored_check(vcpu, index, data, false);
Carsten Otte15c4a642007-10-30 18:44:17 +01001832}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001833EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001834
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001835static void complete_userspace_rdmsr(struct kvm_vcpu *vcpu)
Alexander Graf1ae09952020-09-25 16:34:16 +02001836{
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001837 if (!vcpu->run->msr.error) {
Alexander Graf1ae09952020-09-25 16:34:16 +02001838 kvm_rax_write(vcpu, (u32)vcpu->run->msr.data);
1839 kvm_rdx_write(vcpu, vcpu->run->msr.data >> 32);
1840 }
Alexander Graf1ae09952020-09-25 16:34:16 +02001841}
1842
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001843static int complete_emulated_msr_access(struct kvm_vcpu *vcpu)
1844{
1845 return complete_emulated_insn_gp(vcpu, vcpu->run->msr.error);
1846}
1847
1848static int complete_emulated_rdmsr(struct kvm_vcpu *vcpu)
1849{
1850 complete_userspace_rdmsr(vcpu);
1851 return complete_emulated_msr_access(vcpu);
1852}
1853
1854static int complete_fast_msr_access(struct kvm_vcpu *vcpu)
Alexander Graf1ae09952020-09-25 16:34:16 +02001855{
Jason Baronb36464772021-01-14 22:27:56 -05001856 return static_call(kvm_x86_complete_emulated_msr)(vcpu, vcpu->run->msr.error);
Alexander Graf1ae09952020-09-25 16:34:16 +02001857}
1858
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001859static int complete_fast_rdmsr(struct kvm_vcpu *vcpu)
1860{
1861 complete_userspace_rdmsr(vcpu);
1862 return complete_fast_msr_access(vcpu);
1863}
1864
Alexander Graf1ae09952020-09-25 16:34:16 +02001865static u64 kvm_msr_reason(int r)
1866{
1867 switch (r) {
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001868 case KVM_MSR_RET_INVALID:
Alexander Graf1ae09952020-09-25 16:34:16 +02001869 return KVM_MSR_EXIT_REASON_UNKNOWN;
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001870 case KVM_MSR_RET_FILTERED:
Alexander Graf1a1552542020-09-25 16:34:21 +02001871 return KVM_MSR_EXIT_REASON_FILTER;
Alexander Graf1ae09952020-09-25 16:34:16 +02001872 default:
1873 return KVM_MSR_EXIT_REASON_INVAL;
1874 }
1875}
1876
1877static int kvm_msr_user_space(struct kvm_vcpu *vcpu, u32 index,
1878 u32 exit_reason, u64 data,
1879 int (*completion)(struct kvm_vcpu *vcpu),
1880 int r)
1881{
1882 u64 msr_reason = kvm_msr_reason(r);
1883
1884 /* Check if the user wanted to know about this MSR fault */
1885 if (!(vcpu->kvm->arch.user_space_msr_mask & msr_reason))
1886 return 0;
1887
1888 vcpu->run->exit_reason = exit_reason;
1889 vcpu->run->msr.error = 0;
1890 memset(vcpu->run->msr.pad, 0, sizeof(vcpu->run->msr.pad));
1891 vcpu->run->msr.reason = msr_reason;
1892 vcpu->run->msr.index = index;
1893 vcpu->run->msr.data = data;
1894 vcpu->arch.complete_userspace_io = completion;
1895
1896 return 1;
1897}
1898
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001899int kvm_emulate_rdmsr(struct kvm_vcpu *vcpu)
1900{
1901 u32 ecx = kvm_rcx_read(vcpu);
1902 u64 data;
Alexander Graf1ae09952020-09-25 16:34:16 +02001903 int r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001904
Alexander Graf1ae09952020-09-25 16:34:16 +02001905 r = kvm_get_msr(vcpu, ecx, &data);
1906
Paolo Bonzini8b474422020-12-14 07:44:46 -05001907 if (!r) {
1908 trace_kvm_msr_read(ecx, data);
1909
1910 kvm_rax_write(vcpu, data & -1u);
1911 kvm_rdx_write(vcpu, (data >> 32) & -1u);
1912 } else {
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001913 /* MSR read failed? See if we should ask user space */
1914 if (kvm_msr_user_space(vcpu, ecx, KVM_EXIT_X86_RDMSR, 0,
1915 complete_fast_rdmsr, r))
1916 return 0;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001917 trace_kvm_msr_read_ex(ecx);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001918 }
1919
Jason Baronb36464772021-01-14 22:27:56 -05001920 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001921}
1922EXPORT_SYMBOL_GPL(kvm_emulate_rdmsr);
1923
1924int kvm_emulate_wrmsr(struct kvm_vcpu *vcpu)
1925{
1926 u32 ecx = kvm_rcx_read(vcpu);
1927 u64 data = kvm_read_edx_eax(vcpu);
Alexander Graf1ae09952020-09-25 16:34:16 +02001928 int r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001929
Alexander Graf1ae09952020-09-25 16:34:16 +02001930 r = kvm_set_msr(vcpu, ecx, data);
1931
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001932 if (!r) {
Paolo Bonzini8b474422020-12-14 07:44:46 -05001933 trace_kvm_msr_write(ecx, data);
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001934 } else {
1935 /* MSR write failed? See if we should ask user space */
1936 if (kvm_msr_user_space(vcpu, ecx, KVM_EXIT_X86_WRMSR, data,
1937 complete_fast_msr_access, r))
1938 return 0;
1939 /* Signal all other negative errors to userspace */
1940 if (r < 0)
1941 return r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001942 trace_kvm_msr_write_ex(ecx, data);
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001943 }
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001944
Jason Baronb36464772021-01-14 22:27:56 -05001945 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001946}
1947EXPORT_SYMBOL_GPL(kvm_emulate_wrmsr);
1948
Sean Christopherson5ff3a352021-02-04 16:57:47 -08001949int kvm_emulate_as_nop(struct kvm_vcpu *vcpu)
1950{
1951 return kvm_skip_emulated_instruction(vcpu);
1952}
1953EXPORT_SYMBOL_GPL(kvm_emulate_as_nop);
1954
1955int kvm_emulate_invd(struct kvm_vcpu *vcpu)
1956{
1957 /* Treat an INVD instruction as a NOP and just skip it. */
1958 return kvm_emulate_as_nop(vcpu);
1959}
1960EXPORT_SYMBOL_GPL(kvm_emulate_invd);
1961
1962int kvm_emulate_mwait(struct kvm_vcpu *vcpu)
1963{
1964 pr_warn_once("kvm: MWAIT instruction emulated as NOP!\n");
1965 return kvm_emulate_as_nop(vcpu);
1966}
1967EXPORT_SYMBOL_GPL(kvm_emulate_mwait);
1968
1969int kvm_handle_invalid_op(struct kvm_vcpu *vcpu)
1970{
1971 kvm_queue_exception(vcpu, UD_VECTOR);
1972 return 1;
1973}
1974EXPORT_SYMBOL_GPL(kvm_handle_invalid_op);
1975
1976int kvm_emulate_monitor(struct kvm_vcpu *vcpu)
1977{
1978 pr_warn_once("kvm: MONITOR instruction emulated as NOP!\n");
1979 return kvm_emulate_as_nop(vcpu);
1980}
1981EXPORT_SYMBOL_GPL(kvm_emulate_monitor);
1982
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05001983static inline bool kvm_vcpu_exit_request(struct kvm_vcpu *vcpu)
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001984{
Frederic Weisbecker4ae7dc92021-02-01 00:05:48 +01001985 xfer_to_guest_mode_prepare();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001986 return vcpu->mode == EXITING_GUEST_MODE || kvm_request_pending(vcpu) ||
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02001987 xfer_to_guest_mode_work_pending();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001988}
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001989
Carsten Otte313a3dc2007-10-11 19:16:52 +02001990/*
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001991 * The fast path for frequent and performance sensitive wrmsr emulation,
1992 * i.e. the sending of IPI, sending IPI early in the VM-Exit flow reduces
1993 * the latency of virtual IPI by avoiding the expensive bits of transitioning
1994 * from guest to host, e.g. reacquiring KVM's SRCU lock. In contrast to the
1995 * other cases which must be called after interrupts are enabled on the host.
1996 */
1997static int handle_fastpath_set_x2apic_icr_irqoff(struct kvm_vcpu *vcpu, u64 data)
1998{
Wanpeng Lie1be9ac2020-03-26 10:20:01 +08001999 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(vcpu->arch.apic))
2000 return 1;
2001
2002 if (((data & APIC_SHORT_MASK) == APIC_DEST_NOSHORT) &&
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002003 ((data & APIC_DEST_MASK) == APIC_DEST_PHYSICAL) &&
Wanpeng Li4064a4c2020-04-02 16:20:26 +08002004 ((data & APIC_MODE_MASK) == APIC_DM_FIXED) &&
2005 ((u32)(data >> 32) != X2APIC_BROADCAST)) {
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002006
Wanpeng Lid5361672020-03-26 10:20:02 +08002007 data &= ~(1 << 12);
2008 kvm_apic_send_ipi(vcpu->arch.apic, (u32)data, (u32)(data >> 32));
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002009 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR2, (u32)(data >> 32));
Wanpeng Lid5361672020-03-26 10:20:02 +08002010 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR, (u32)data);
2011 trace_kvm_apic_write(APIC_ICR, (u32)data);
2012 return 0;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002013 }
2014
2015 return 1;
2016}
2017
Wanpeng Liae95f562020-04-28 14:23:28 +08002018static int handle_fastpath_set_tscdeadline(struct kvm_vcpu *vcpu, u64 data)
2019{
2020 if (!kvm_can_use_hv_timer(vcpu))
2021 return 1;
2022
2023 kvm_set_lapic_tscdeadline_msr(vcpu, data);
2024 return 0;
2025}
2026
Wanpeng Li404d5d72020-04-28 14:23:25 +08002027fastpath_t handle_fastpath_set_msr_irqoff(struct kvm_vcpu *vcpu)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002028{
2029 u32 msr = kvm_rcx_read(vcpu);
Wanpeng Li8a1038d2020-03-26 10:20:00 +08002030 u64 data;
Wanpeng Li404d5d72020-04-28 14:23:25 +08002031 fastpath_t ret = EXIT_FASTPATH_NONE;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002032
2033 switch (msr) {
2034 case APIC_BASE_MSR + (APIC_ICR >> 4):
Wanpeng Li8a1038d2020-03-26 10:20:00 +08002035 data = kvm_read_edx_eax(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08002036 if (!handle_fastpath_set_x2apic_icr_irqoff(vcpu, data)) {
2037 kvm_skip_emulated_instruction(vcpu);
2038 ret = EXIT_FASTPATH_EXIT_HANDLED;
Haiwei Li80bc97f2020-05-18 09:31:38 +08002039 }
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002040 break;
Dave Hansen09141ec2020-03-05 09:47:06 -08002041 case MSR_IA32_TSC_DEADLINE:
Wanpeng Liae95f562020-04-28 14:23:28 +08002042 data = kvm_read_edx_eax(vcpu);
2043 if (!handle_fastpath_set_tscdeadline(vcpu, data)) {
2044 kvm_skip_emulated_instruction(vcpu);
2045 ret = EXIT_FASTPATH_REENTER_GUEST;
2046 }
2047 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002048 default:
Wanpeng Li404d5d72020-04-28 14:23:25 +08002049 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002050 }
2051
Wanpeng Li404d5d72020-04-28 14:23:25 +08002052 if (ret != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002053 trace_kvm_msr_write(msr, data);
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002054
Wanpeng Li404d5d72020-04-28 14:23:25 +08002055 return ret;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002056}
2057EXPORT_SYMBOL_GPL(handle_fastpath_set_msr_irqoff);
2058
2059/*
Carsten Otte313a3dc2007-10-11 19:16:52 +02002060 * Adapt set_msr() to msr_io()'s calling convention
2061 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002062static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2063{
Peter Xu6abe9c12020-06-22 18:04:41 -04002064 return kvm_get_msr_ignored_check(vcpu, index, data, true);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002065}
2066
Carsten Otte313a3dc2007-10-11 19:16:52 +02002067static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2068{
Peter Xu6abe9c12020-06-22 18:04:41 -04002069 return kvm_set_msr_ignored_check(vcpu, index, *data, true);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002070}
2071
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002072#ifdef CONFIG_X86_64
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002073struct pvclock_clock {
2074 int vclock_mode;
2075 u64 cycle_last;
2076 u64 mask;
2077 u32 mult;
2078 u32 shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002079 u64 base_cycles;
2080 u64 offset;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002081};
2082
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002083struct pvclock_gtod_data {
2084 seqcount_t seq;
2085
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002086 struct pvclock_clock clock; /* extract of a clocksource struct */
2087 struct pvclock_clock raw_clock; /* extract of a clocksource struct */
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002088
Paolo Bonzini917f9472020-01-22 14:32:20 +01002089 ktime_t offs_boot;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002090 u64 wall_time_sec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002091};
2092
2093static struct pvclock_gtod_data pvclock_gtod_data;
2094
2095static void update_pvclock_gtod(struct timekeeper *tk)
2096{
2097 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
2098
2099 write_seqcount_begin(&vdata->seq);
2100
2101 /* copy pvclock gtod data */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002102 vdata->clock.vclock_mode = tk->tkr_mono.clock->vdso_clock_mode;
Peter Zijlstra876e7882015-03-19 10:09:06 +01002103 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
2104 vdata->clock.mask = tk->tkr_mono.mask;
2105 vdata->clock.mult = tk->tkr_mono.mult;
2106 vdata->clock.shift = tk->tkr_mono.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002107 vdata->clock.base_cycles = tk->tkr_mono.xtime_nsec;
2108 vdata->clock.offset = tk->tkr_mono.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002109
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002110 vdata->raw_clock.vclock_mode = tk->tkr_raw.clock->vdso_clock_mode;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002111 vdata->raw_clock.cycle_last = tk->tkr_raw.cycle_last;
2112 vdata->raw_clock.mask = tk->tkr_raw.mask;
2113 vdata->raw_clock.mult = tk->tkr_raw.mult;
2114 vdata->raw_clock.shift = tk->tkr_raw.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002115 vdata->raw_clock.base_cycles = tk->tkr_raw.xtime_nsec;
2116 vdata->raw_clock.offset = tk->tkr_raw.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002117
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002118 vdata->wall_time_sec = tk->xtime_sec;
2119
Paolo Bonzini917f9472020-01-22 14:32:20 +01002120 vdata->offs_boot = tk->offs_boot;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002121
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002122 write_seqcount_end(&vdata->seq);
2123}
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002124
2125static s64 get_kvmclock_base_ns(void)
2126{
2127 /* Count up from boot time, but with the frequency of the raw clock. */
2128 return ktime_to_ns(ktime_add(ktime_get_raw(), pvclock_gtod_data.offs_boot));
2129}
2130#else
2131static s64 get_kvmclock_base_ns(void)
2132{
2133 /* Master clock not used, so we can just use CLOCK_BOOTTIME. */
2134 return ktime_get_boottime_ns();
2135}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002136#endif
2137
Joao Martins629b5342018-06-28 15:06:43 -04002138void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock, int sec_hi_ofs)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002139{
Avi Kivity9ed3c442010-05-04 15:00:37 +03002140 int version;
2141 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002142 struct pvclock_wall_clock wc;
Joao Martins629b5342018-06-28 15:06:43 -04002143 u32 wc_sec_hi;
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002144 u64 wall_nsec;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002145
2146 if (!wall_clock)
2147 return;
2148
Avi Kivity9ed3c442010-05-04 15:00:37 +03002149 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
2150 if (r)
2151 return;
2152
2153 if (version & 1)
2154 ++version; /* first time write, random junk */
2155
2156 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002157
Nicholas Krause1dab1342015-12-30 13:08:46 -05002158 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
2159 return;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002160
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002161 /*
2162 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10002163 * system time (updated by kvm_guest_time_update below) to the
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002164 * wall clock specified here. We do the reverse here.
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002165 */
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002166 wall_nsec = ktime_get_real_ns() - get_kvmclock_ns(kvm);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002167
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002168 wc.nsec = do_div(wall_nsec, 1000000000);
2169 wc.sec = (u32)wall_nsec; /* overflow in 2106 guest time */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002170 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002171
2172 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
2173
Joao Martins629b5342018-06-28 15:06:43 -04002174 if (sec_hi_ofs) {
2175 wc_sec_hi = wall_nsec >> 32;
2176 kvm_write_guest(kvm, wall_clock + sec_hi_ofs,
2177 &wc_sec_hi, sizeof(wc_sec_hi));
2178 }
2179
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002180 version++;
2181 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002182}
2183
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00002184static void kvm_write_system_time(struct kvm_vcpu *vcpu, gpa_t system_time,
2185 bool old_msr, bool host_initiated)
2186{
2187 struct kvm_arch *ka = &vcpu->kvm->arch;
2188
2189 if (vcpu->vcpu_id == 0 && !host_initiated) {
Oliver Upton1e293d12020-10-27 16:10:43 -07002190 if (ka->boot_vcpu_runs_old_kvmclock != old_msr)
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00002191 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2192
2193 ka->boot_vcpu_runs_old_kvmclock = old_msr;
2194 }
2195
2196 vcpu->arch.time = system_time;
2197 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
2198
2199 /* we verify if the enable bit is set... */
2200 vcpu->arch.pv_time_enabled = false;
2201 if (!(system_time & 1))
2202 return;
2203
2204 if (!kvm_gfn_to_hva_cache_init(vcpu->kvm,
2205 &vcpu->arch.pv_time, system_time & ~1ULL,
2206 sizeof(struct pvclock_vcpu_time_info)))
2207 vcpu->arch.pv_time_enabled = true;
2208
2209 return;
2210}
2211
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002212static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
2213{
Paolo Bonzinib51012d2016-01-22 11:39:22 +01002214 do_shl32_div32(dividend, divisor);
2215 return dividend;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002216}
2217
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002218static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002219 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002220{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002221 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002222 int32_t shift = 0;
2223 uint64_t tps64;
2224 uint32_t tps32;
2225
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002226 tps64 = base_hz;
2227 scaled64 = scaled_hz;
Jan Kiszka50933622010-09-26 13:00:53 +02002228 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002229 tps64 >>= 1;
2230 shift--;
2231 }
2232
2233 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02002234 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
2235 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002236 scaled64 >>= 1;
2237 else
2238 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002239 shift++;
2240 }
2241
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002242 *pshift = shift;
2243 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002244}
2245
Marcelo Tosattid8281992012-11-27 23:29:01 -02002246#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002247static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002248#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002249
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002250static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08002251static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002252
Zachary Amsdencc578282012-02-03 15:43:50 -02002253static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10002254{
Zachary Amsdencc578282012-02-03 15:43:50 -02002255 u64 v = (u64)khz * (1000000 + ppm);
2256 do_div(v, 1000000);
2257 return v;
2258}
2259
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002260static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier);
2261
Haozhong Zhang381d5852015-10-20 15:39:04 +08002262static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
2263{
2264 u64 ratio;
2265
2266 /* Guest TSC same frequency as host TSC? */
2267 if (!scale) {
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002268 kvm_vcpu_write_tsc_multiplier(vcpu, kvm_default_tsc_scaling_ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002269 return 0;
2270 }
2271
2272 /* TSC scaling supported? */
2273 if (!kvm_has_tsc_control) {
2274 if (user_tsc_khz > tsc_khz) {
2275 vcpu->arch.tsc_catchup = 1;
2276 vcpu->arch.tsc_always_catchup = 1;
2277 return 0;
2278 } else {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02002279 pr_warn_ratelimited("user requested TSC rate below hardware speed\n");
Haozhong Zhang381d5852015-10-20 15:39:04 +08002280 return -1;
2281 }
2282 }
2283
2284 /* TSC scaling required - calculate ratio */
2285 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
2286 user_tsc_khz, tsc_khz);
2287
2288 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02002289 pr_warn_ratelimited("Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
2290 user_tsc_khz);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002291 return -1;
2292 }
2293
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002294 kvm_vcpu_write_tsc_multiplier(vcpu, ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002295 return 0;
2296}
2297
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002298static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
Zachary Amsdencc578282012-02-03 15:43:50 -02002299{
2300 u32 thresh_lo, thresh_hi;
2301 int use_scaling = 0;
2302
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002303 /* tsc_khz can be zero if TSC calibration fails */
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002304 if (user_tsc_khz == 0) {
Haozhong Zhangad7218832015-10-20 15:39:02 +08002305 /* set tsc_scaling_ratio to a safe value */
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002306 kvm_vcpu_write_tsc_multiplier(vcpu, kvm_default_tsc_scaling_ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002307 return -1;
Haozhong Zhangad7218832015-10-20 15:39:02 +08002308 }
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002309
Zachary Amsdenc2855452010-09-18 14:38:15 -10002310 /* Compute a scale to convert nanoseconds in TSC cycles */
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002311 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
Zachary Amsdencc578282012-02-03 15:43:50 -02002312 &vcpu->arch.virtual_tsc_shift,
2313 &vcpu->arch.virtual_tsc_mult);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002314 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
Zachary Amsdencc578282012-02-03 15:43:50 -02002315
2316 /*
2317 * Compute the variation in TSC rate which is acceptable
2318 * within the range of tolerance and decide if the
2319 * rate being applied is within that bounds of the hardware
2320 * rate. If so, no scaling or compensation need be done.
2321 */
2322 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
2323 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002324 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
2325 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 -02002326 use_scaling = 1;
2327 }
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002328 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002329}
2330
2331static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
2332{
Zachary Amsdene26101b2012-02-03 15:43:57 -02002333 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02002334 vcpu->arch.virtual_tsc_mult,
2335 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002336 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002337 return tsc;
2338}
2339
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002340static inline int gtod_is_based_on_tsc(int mode)
2341{
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002342 return mode == VDSO_CLOCKMODE_TSC || mode == VDSO_CLOCKMODE_HVCLOCK;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002343}
2344
Fengguang Wu69b00492015-01-19 22:33:39 +08002345static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002346{
2347#ifdef CONFIG_X86_64
2348 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002349 struct kvm_arch *ka = &vcpu->kvm->arch;
2350 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2351
2352 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2353 atomic_read(&vcpu->kvm->online_vcpus));
2354
Marcelo Tosatti7f187922014-11-04 21:30:44 -02002355 /*
2356 * Once the masterclock is enabled, always perform request in
2357 * order to update it.
2358 *
2359 * In order to enable masterclock, the host clocksource must be TSC
2360 * and the vcpus need to have matched TSCs. When that happens,
2361 * perform request to enable masterclock.
2362 */
2363 if (ka->use_master_clock ||
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002364 (gtod_is_based_on_tsc(gtod->clock.vclock_mode) && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002365 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2366
2367 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
2368 atomic_read(&vcpu->kvm->online_vcpus),
2369 ka->use_master_clock, gtod->clock.vclock_mode);
2370#endif
2371}
2372
Haozhong Zhang35181e82015-10-20 15:39:03 +08002373/*
2374 * Multiply tsc by a fixed point number represented by ratio.
2375 *
2376 * The most significant 64-N bits (mult) of ratio represent the
2377 * integral part of the fixed point number; the remaining N bits
2378 * (frac) represent the fractional part, ie. ratio represents a fixed
2379 * point number (mult + frac * 2^(-N)).
2380 *
2381 * N equals to kvm_tsc_scaling_ratio_frac_bits.
2382 */
2383static inline u64 __scale_tsc(u64 ratio, u64 tsc)
2384{
2385 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
2386}
2387
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002388u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc, u64 ratio)
Haozhong Zhang35181e82015-10-20 15:39:03 +08002389{
2390 u64 _tsc = tsc;
Haozhong Zhang35181e82015-10-20 15:39:03 +08002391
2392 if (ratio != kvm_default_tsc_scaling_ratio)
2393 _tsc = __scale_tsc(ratio, tsc);
2394
2395 return _tsc;
2396}
2397EXPORT_SYMBOL_GPL(kvm_scale_tsc);
2398
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002399static u64 kvm_compute_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
Haozhong Zhang07c14192015-10-20 15:39:05 +08002400{
2401 u64 tsc;
2402
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002403 tsc = kvm_scale_tsc(vcpu, rdtsc(), vcpu->arch.l1_tsc_scaling_ratio);
Haozhong Zhang07c14192015-10-20 15:39:05 +08002404
2405 return target_tsc - tsc;
2406}
2407
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002408u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
2409{
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002410 return vcpu->arch.l1_tsc_offset +
2411 kvm_scale_tsc(vcpu, host_tsc, vcpu->arch.l1_tsc_scaling_ratio);
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002412}
2413EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
2414
Ilias Stamatis83150f22021-05-26 19:44:14 +01002415u64 kvm_calc_nested_tsc_offset(u64 l1_offset, u64 l2_offset, u64 l2_multiplier)
2416{
2417 u64 nested_offset;
2418
2419 if (l2_multiplier == kvm_default_tsc_scaling_ratio)
2420 nested_offset = l1_offset;
2421 else
2422 nested_offset = mul_s64_u64_shr((s64) l1_offset, l2_multiplier,
2423 kvm_tsc_scaling_ratio_frac_bits);
2424
2425 nested_offset += l2_offset;
2426 return nested_offset;
2427}
2428EXPORT_SYMBOL_GPL(kvm_calc_nested_tsc_offset);
2429
2430u64 kvm_calc_nested_tsc_multiplier(u64 l1_multiplier, u64 l2_multiplier)
2431{
2432 if (l2_multiplier != kvm_default_tsc_scaling_ratio)
2433 return mul_u64_u64_shr(l1_multiplier, l2_multiplier,
2434 kvm_tsc_scaling_ratio_frac_bits);
2435
2436 return l1_multiplier;
2437}
2438EXPORT_SYMBOL_GPL(kvm_calc_nested_tsc_multiplier);
2439
Ilias Stamatisedcfe542021-05-26 19:44:15 +01002440static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 l1_offset)
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002441{
Ilias Stamatisedcfe542021-05-26 19:44:15 +01002442 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2443 vcpu->arch.l1_tsc_offset,
2444 l1_offset);
2445
2446 vcpu->arch.l1_tsc_offset = l1_offset;
2447
2448 /*
2449 * If we are here because L1 chose not to trap WRMSR to TSC then
2450 * according to the spec this should set L1's TSC (as opposed to
2451 * setting L1's offset for L2).
2452 */
2453 if (is_guest_mode(vcpu))
2454 vcpu->arch.tsc_offset = kvm_calc_nested_tsc_offset(
2455 l1_offset,
2456 static_call(kvm_x86_get_l2_tsc_offset)(vcpu),
2457 static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu));
2458 else
2459 vcpu->arch.tsc_offset = l1_offset;
2460
2461 static_call(kvm_x86_write_tsc_offset)(vcpu, vcpu->arch.tsc_offset);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002462}
2463
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002464static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier)
2465{
2466 vcpu->arch.l1_tsc_scaling_ratio = l1_multiplier;
2467
2468 /* Userspace is changing the multiplier while L2 is active */
2469 if (is_guest_mode(vcpu))
2470 vcpu->arch.tsc_scaling_ratio = kvm_calc_nested_tsc_multiplier(
2471 l1_multiplier,
2472 static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu));
2473 else
2474 vcpu->arch.tsc_scaling_ratio = l1_multiplier;
2475
2476 if (kvm_has_tsc_control)
2477 static_call(kvm_x86_write_tsc_multiplier)(
2478 vcpu, vcpu->arch.tsc_scaling_ratio);
2479}
2480
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002481static inline bool kvm_check_tsc_unstable(void)
2482{
2483#ifdef CONFIG_X86_64
2484 /*
2485 * TSC is marked unstable when we're running on Hyper-V,
2486 * 'TSC page' clocksource is good.
2487 */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002488 if (pvclock_gtod_data.clock.vclock_mode == VDSO_CLOCKMODE_HVCLOCK)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002489 return false;
2490#endif
2491 return check_tsc_unstable();
2492}
2493
Oliver Upton58d42772021-09-16 18:15:37 +00002494/*
2495 * Infers attempts to synchronize the guest's tsc from host writes. Sets the
2496 * offset for the vcpu and tracks the TSC matching generation that the vcpu
2497 * participates in.
2498 */
2499static void __kvm_synchronize_tsc(struct kvm_vcpu *vcpu, u64 offset, u64 tsc,
2500 u64 ns, bool matched)
2501{
2502 struct kvm *kvm = vcpu->kvm;
2503
2504 lockdep_assert_held(&kvm->arch.tsc_write_lock);
2505
2506 /*
2507 * We also track th most recent recorded KHZ, write and time to
2508 * allow the matching interval to be extended at each write.
2509 */
2510 kvm->arch.last_tsc_nsec = ns;
2511 kvm->arch.last_tsc_write = tsc;
2512 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Oliver Upton828ca892021-09-16 18:15:38 +00002513 kvm->arch.last_tsc_offset = offset;
Oliver Upton58d42772021-09-16 18:15:37 +00002514
2515 vcpu->arch.last_guest_tsc = tsc;
2516
2517 kvm_vcpu_write_tsc_offset(vcpu, offset);
2518
2519 if (!matched) {
2520 /*
2521 * We split periods of matched TSC writes into generations.
2522 * For each generation, we track the original measured
2523 * nanosecond time, offset, and write, so if TSCs are in
2524 * sync, we can match exact offset, and if not, we can match
2525 * exact software computation in compute_guest_tsc()
2526 *
2527 * These values are tracked in kvm->arch.cur_xxx variables.
2528 */
2529 kvm->arch.cur_tsc_generation++;
2530 kvm->arch.cur_tsc_nsec = ns;
2531 kvm->arch.cur_tsc_write = tsc;
2532 kvm->arch.cur_tsc_offset = offset;
2533 kvm->arch.nr_vcpus_matched_tsc = 0;
2534 } else if (vcpu->arch.this_tsc_generation != kvm->arch.cur_tsc_generation) {
2535 kvm->arch.nr_vcpus_matched_tsc++;
2536 }
2537
2538 /* Keep track of which generation this VCPU has synchronized to */
2539 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
2540 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
2541 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
2542
2543 kvm_track_tsc_matching(vcpu);
2544}
2545
Paolo Bonzini0c899c22020-09-24 14:45:27 +02002546static void kvm_synchronize_tsc(struct kvm_vcpu *vcpu, u64 data)
Zachary Amsden99e3e302010-08-19 22:07:17 -10002547{
2548 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002549 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002550 unsigned long flags;
Oliver Upton58d42772021-09-16 18:15:37 +00002551 bool matched = false;
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002552 bool synchronizing = false;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002553
Jan Kiszka038f8c12011-02-04 10:49:11 +01002554 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002555 offset = kvm_compute_l1_tsc_offset(vcpu, data);
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002556 ns = get_kvmclock_base_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002557 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002558
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002559 if (vcpu->arch.virtual_tsc_khz) {
Paolo Bonzini0c899c22020-09-24 14:45:27 +02002560 if (data == 0) {
Denis Plotnikovbd8fab32017-04-07 12:09:53 +03002561 /*
2562 * detection of vcpu initialization -- need to sync
2563 * with other vCPUs. This particularly helps to keep
2564 * kvm_clock stable after CPU hotplug
2565 */
2566 synchronizing = true;
2567 } else {
2568 u64 tsc_exp = kvm->arch.last_tsc_write +
2569 nsec_to_cycles(vcpu, elapsed);
2570 u64 tsc_hz = vcpu->arch.virtual_tsc_khz * 1000LL;
2571 /*
2572 * Special case: TSC write with a small delta (1 second)
2573 * of virtual cycle time against real time is
2574 * interpreted as an attempt to synchronize the CPU.
2575 */
2576 synchronizing = data < tsc_exp + tsc_hz &&
2577 data + tsc_hz > tsc_exp;
2578 }
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002579 }
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002580
2581 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002582 * For a reliable TSC, we can match TSC offsets, and for an unstable
2583 * TSC, we add elapsed time in this computation. We could let the
2584 * compensation code attempt to catch up if we fall behind, but
2585 * it's better to try to match offsets from the beginning.
2586 */
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002587 if (synchronizing &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002588 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002589 if (!kvm_check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02002590 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002591 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01002592 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002593 data += delta;
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002594 offset = kvm_compute_l1_tsc_offset(vcpu, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002595 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002596 matched = true;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002597 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02002598
Oliver Upton58d42772021-09-16 18:15:37 +00002599 __kvm_synchronize_tsc(vcpu, offset, data, ns, matched);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002600 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Zachary Amsden99e3e302010-08-19 22:07:17 -10002601}
Zachary Amsdene26101b2012-02-03 15:43:57 -02002602
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002603static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
2604 s64 adjustment)
2605{
Sean Christopherson56ba77a2020-05-01 21:32:25 -07002606 u64 tsc_offset = vcpu->arch.l1_tsc_offset;
Leonid Shatz326e7422018-11-06 12:14:25 +02002607 kvm_vcpu_write_tsc_offset(vcpu, tsc_offset + adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002608}
2609
2610static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
2611{
Ilias Stamatis805d7052021-05-26 19:44:09 +01002612 if (vcpu->arch.l1_tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002613 WARN_ON(adjustment < 0);
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002614 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment,
2615 vcpu->arch.l1_tsc_scaling_ratio);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01002616 adjust_tsc_offset_guest(vcpu, adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002617}
2618
Marcelo Tosattid8281992012-11-27 23:29:01 -02002619#ifdef CONFIG_X86_64
2620
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002621static u64 read_tsc(void)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002622{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002623 u64 ret = (u64)rdtsc_ordered();
Andy Lutomirski03b97302015-06-25 18:44:08 +02002624 u64 last = pvclock_gtod_data.clock.cycle_last;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002625
2626 if (likely(ret >= last))
2627 return ret;
2628
2629 /*
2630 * GCC likes to generate cmov here, but this branch is extremely
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08002631 * predictable (it's just a function of time and the likely is
Marcelo Tosattid8281992012-11-27 23:29:01 -02002632 * very likely) and there's a data dependence, so force GCC
2633 * to generate a branch instead. I don't barrier() because
2634 * we don't actually need a barrier, and if this function
2635 * ever gets inlined it will generate worse code.
2636 */
2637 asm volatile ("");
2638 return last;
2639}
2640
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002641static inline u64 vgettsc(struct pvclock_clock *clock, u64 *tsc_timestamp,
2642 int *mode)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002643{
2644 long v;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002645 u64 tsc_pg_val;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002646
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002647 switch (clock->vclock_mode) {
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002648 case VDSO_CLOCKMODE_HVCLOCK:
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002649 tsc_pg_val = hv_read_tsc_page_tsc(hv_get_tsc_page(),
2650 tsc_timestamp);
2651 if (tsc_pg_val != U64_MAX) {
2652 /* TSC page valid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002653 *mode = VDSO_CLOCKMODE_HVCLOCK;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002654 v = (tsc_pg_val - clock->cycle_last) &
2655 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002656 } else {
2657 /* TSC page invalid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002658 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002659 }
2660 break;
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002661 case VDSO_CLOCKMODE_TSC:
2662 *mode = VDSO_CLOCKMODE_TSC;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002663 *tsc_timestamp = read_tsc();
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002664 v = (*tsc_timestamp - clock->cycle_last) &
2665 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002666 break;
2667 default:
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002668 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002669 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002670
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002671 if (*mode == VDSO_CLOCKMODE_NONE)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002672 *tsc_timestamp = v = 0;
2673
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002674 return v * clock->mult;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002675}
2676
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002677static int do_monotonic_raw(s64 *t, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002678{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002679 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002680 unsigned long seq;
2681 int mode;
2682 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002683
Marcelo Tosattid8281992012-11-27 23:29:01 -02002684 do {
2685 seq = read_seqcount_begin(&gtod->seq);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002686 ns = gtod->raw_clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002687 ns += vgettsc(&gtod->raw_clock, tsc_timestamp, &mode);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002688 ns >>= gtod->raw_clock.shift;
2689 ns += ktime_to_ns(ktime_add(gtod->raw_clock.offset, gtod->offs_boot));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002690 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002691 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002692
2693 return mode;
2694}
2695
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002696static int do_realtime(struct timespec64 *ts, u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002697{
2698 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2699 unsigned long seq;
2700 int mode;
2701 u64 ns;
2702
2703 do {
2704 seq = read_seqcount_begin(&gtod->seq);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002705 ts->tv_sec = gtod->wall_time_sec;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002706 ns = gtod->clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002707 ns += vgettsc(&gtod->clock, tsc_timestamp, &mode);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002708 ns >>= gtod->clock.shift;
2709 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
2710
2711 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
2712 ts->tv_nsec = ns;
2713
2714 return mode;
2715}
2716
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002717/* returns true if host is using TSC based clocksource */
2718static bool kvm_get_time_and_clockread(s64 *kernel_ns, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002719{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002720 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002721 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosattid8281992012-11-27 23:29:01 -02002722 return false;
2723
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002724 return gtod_is_based_on_tsc(do_monotonic_raw(kernel_ns,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002725 tsc_timestamp));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002726}
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002727
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002728/* returns true if host is using TSC based clocksource */
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002729static bool kvm_get_walltime_and_clockread(struct timespec64 *ts,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002730 u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002731{
2732 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002733 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002734 return false;
2735
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002736 return gtod_is_based_on_tsc(do_realtime(ts, tsc_timestamp));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002737}
Marcelo Tosattid8281992012-11-27 23:29:01 -02002738#endif
2739
2740/*
2741 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002742 * Assuming a stable TSC across physical CPUS, and a stable TSC
2743 * across virtual CPUs, the following condition is possible.
2744 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02002745 * CPUs at the next numbered event.
2746 *
2747 * "timespecX" represents host monotonic time. "tscX" represents
2748 * RDTSC value.
2749 *
2750 * VCPU0 on CPU0 | VCPU1 on CPU1
2751 *
2752 * 1. read timespec0,tsc0
2753 * 2. | timespec1 = timespec0 + N
2754 * | tsc1 = tsc0 + M
2755 * 3. transition to guest | transition to guest
2756 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
2757 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
2758 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
2759 *
2760 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
2761 *
2762 * - ret0 < ret1
2763 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
2764 * ...
2765 * - 0 < N - M => M < N
2766 *
2767 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
2768 * always the case (the difference between two distinct xtime instances
2769 * might be smaller then the difference between corresponding TSC reads,
2770 * when updating guest vcpus pvclock areas).
2771 *
2772 * To avoid that problem, do not allow visibility of distinct
2773 * system_timestamp/tsc_timestamp values simultaneously: use a master
2774 * copy of host monotonic time values. Update that master copy
2775 * in lockstep.
2776 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002777 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02002778 *
2779 */
2780
2781static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
2782{
2783#ifdef CONFIG_X86_64
2784 struct kvm_arch *ka = &kvm->arch;
2785 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002786 bool host_tsc_clocksource, vcpus_matched;
2787
Paolo Bonzini869b4422021-09-16 18:15:36 +00002788 lockdep_assert_held(&kvm->arch.tsc_write_lock);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002789 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2790 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002791
2792 /*
2793 * If the host uses TSC clock, then passthrough TSC as stable
2794 * to the guest.
2795 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002796 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02002797 &ka->master_kernel_ns,
2798 &ka->master_cycle_now);
2799
Marcelo Tosatti16a96022014-05-14 12:43:24 -03002800 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Ladi Proseka826faf2017-06-26 09:56:43 +02002801 && !ka->backwards_tsc_observed
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002802 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002803
Marcelo Tosattid8281992012-11-27 23:29:01 -02002804 if (ka->use_master_clock)
2805 atomic_set(&kvm_guest_has_master_clock, 1);
2806
2807 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002808 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
2809 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002810#endif
2811}
2812
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002813static void kvm_make_mclock_inprogress_request(struct kvm *kvm)
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01002814{
2815 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
2816}
2817
Paolo Bonzini869b4422021-09-16 18:15:36 +00002818static void __kvm_start_pvclock_update(struct kvm *kvm)
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002819{
Paolo Bonzini869b4422021-09-16 18:15:36 +00002820 raw_spin_lock_irq(&kvm->arch.tsc_write_lock);
2821 write_seqcount_begin(&kvm->arch.pvclock_sc);
2822}
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002823
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002824static void kvm_start_pvclock_update(struct kvm *kvm)
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002825{
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002826 kvm_make_mclock_inprogress_request(kvm);
Paolo Bonzinic2c647f2021-03-25 14:05:11 -04002827
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002828 /* no guest entries from this point */
Paolo Bonzini869b4422021-09-16 18:15:36 +00002829 __kvm_start_pvclock_update(kvm);
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002830}
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002831
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002832static void kvm_end_pvclock_update(struct kvm *kvm)
2833{
2834 struct kvm_arch *ka = &kvm->arch;
2835 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00002836 unsigned long i;
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002837
Paolo Bonzini869b4422021-09-16 18:15:36 +00002838 write_seqcount_end(&ka->pvclock_sc);
2839 raw_spin_unlock_irq(&ka->tsc_write_lock);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002840 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002841 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002842
2843 /* guest entries allowed */
2844 kvm_for_each_vcpu(i, vcpu, kvm)
Radim Krčmář72875d82017-04-26 22:32:19 +02002845 kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002846}
2847
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002848static void kvm_update_masterclock(struct kvm *kvm)
2849{
2850 kvm_hv_invalidate_tsc_page(kvm);
2851 kvm_start_pvclock_update(kvm);
2852 pvclock_update_vm_gtod_copy(kvm);
2853 kvm_end_pvclock_update(kvm);
Zachary Amsden99e3e302010-08-19 22:07:17 -10002854}
2855
Paolo Bonzini869b4422021-09-16 18:15:36 +00002856/* Called within read_seqcount_begin/retry for kvm->pvclock_sc. */
2857static void __get_kvmclock(struct kvm *kvm, struct kvm_clock_data *data)
Paolo Bonzini108b2492016-09-01 14:21:03 +02002858{
Paolo Bonzini108b2492016-09-01 14:21:03 +02002859 struct kvm_arch *ka = &kvm->arch;
Paolo Bonzini8b953442016-11-16 18:31:30 +01002860 struct pvclock_vcpu_time_info hv_clock;
Paolo Bonzini8b953442016-11-16 18:31:30 +01002861
Wanpeng Lie2c22062017-05-11 18:12:05 -07002862 /* both __this_cpu_read() and rdtsc() should be on the same cpu */
2863 get_cpu();
2864
Paolo Bonzini869b4422021-09-16 18:15:36 +00002865 data->flags = 0;
2866 if (ka->use_master_clock && __this_cpu_read(cpu_tsc_khz)) {
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00002867#ifdef CONFIG_X86_64
2868 struct timespec64 ts;
2869
2870 if (kvm_get_walltime_and_clockread(&ts, &data->host_tsc)) {
2871 data->realtime = ts.tv_nsec + NSEC_PER_SEC * ts.tv_sec;
2872 data->flags |= KVM_CLOCK_REALTIME | KVM_CLOCK_HOST_TSC;
2873 } else
2874#endif
2875 data->host_tsc = rdtsc();
2876
Paolo Bonzini869b4422021-09-16 18:15:36 +00002877 data->flags |= KVM_CLOCK_TSC_STABLE;
2878 hv_clock.tsc_timestamp = ka->master_cycle_now;
2879 hv_clock.system_time = ka->master_kernel_ns + ka->kvmclock_offset;
Wanpeng Lie70b57a2017-11-20 14:55:05 -08002880 kvm_get_time_scale(NSEC_PER_SEC, __this_cpu_read(cpu_tsc_khz) * 1000LL,
2881 &hv_clock.tsc_shift,
2882 &hv_clock.tsc_to_system_mul);
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00002883 data->clock = __pvclock_read_cycles(&hv_clock, data->host_tsc);
Oliver Upton55c0cef2021-09-16 18:15:34 +00002884 } else {
2885 data->clock = get_kvmclock_base_ns() + ka->kvmclock_offset;
2886 }
Wanpeng Lie2c22062017-05-11 18:12:05 -07002887
2888 put_cpu();
Oliver Upton55c0cef2021-09-16 18:15:34 +00002889}
Wanpeng Lie2c22062017-05-11 18:12:05 -07002890
Paolo Bonzini869b4422021-09-16 18:15:36 +00002891static void get_kvmclock(struct kvm *kvm, struct kvm_clock_data *data)
2892{
2893 struct kvm_arch *ka = &kvm->arch;
2894 unsigned seq;
2895
2896 do {
2897 seq = read_seqcount_begin(&ka->pvclock_sc);
2898 __get_kvmclock(kvm, data);
2899 } while (read_seqcount_retry(&ka->pvclock_sc, seq));
2900}
2901
Oliver Upton55c0cef2021-09-16 18:15:34 +00002902u64 get_kvmclock_ns(struct kvm *kvm)
2903{
2904 struct kvm_clock_data data;
2905
Oliver Upton55c0cef2021-09-16 18:15:34 +00002906 get_kvmclock(kvm, &data);
2907 return data.clock;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002908}
2909
Joao Martinsaa096aa2019-02-01 13:01:45 -05002910static void kvm_setup_pvclock_page(struct kvm_vcpu *v,
2911 struct gfn_to_hva_cache *cache,
2912 unsigned int offset)
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002913{
2914 struct kvm_vcpu_arch *vcpu = &v->arch;
2915 struct pvclock_vcpu_time_info guest_hv_clock;
2916
Joao Martinsaa096aa2019-02-01 13:01:45 -05002917 if (unlikely(kvm_read_guest_offset_cached(v->kvm, cache,
2918 &guest_hv_clock, offset, sizeof(guest_hv_clock))))
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002919 return;
2920
2921 /* This VCPU is paused, but it's legal for a guest to read another
2922 * VCPU's kvmclock, so we really have to follow the specification where
2923 * it says that version is odd if data is being modified, and even after
2924 * it is consistent.
2925 *
2926 * Version field updates must be kept separate. This is because
2927 * kvm_write_guest_cached might use a "rep movs" instruction, and
2928 * writes within a string instruction are weakly ordered. So there
2929 * are three writes overall.
2930 *
2931 * As a small optimization, only write the version field in the first
2932 * and third write. The vcpu->pv_time cache is still valid, because the
2933 * version field is the first in the struct.
2934 */
2935 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
2936
Liran Alon51c4b8b2017-11-05 16:11:30 +02002937 if (guest_hv_clock.version & 1)
2938 ++guest_hv_clock.version; /* first time write, random junk */
2939
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002940 vcpu->hv_clock.version = guest_hv_clock.version + 1;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002941 kvm_write_guest_offset_cached(v->kvm, cache,
2942 &vcpu->hv_clock, offset,
2943 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002944
2945 smp_wmb();
2946
2947 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
2948 vcpu->hv_clock.flags |= (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
2949
2950 if (vcpu->pvclock_set_guest_stopped_request) {
2951 vcpu->hv_clock.flags |= PVCLOCK_GUEST_STOPPED;
2952 vcpu->pvclock_set_guest_stopped_request = false;
2953 }
2954
2955 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
2956
Joao Martinsaa096aa2019-02-01 13:01:45 -05002957 kvm_write_guest_offset_cached(v->kvm, cache,
2958 &vcpu->hv_clock, offset,
2959 sizeof(vcpu->hv_clock));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002960
2961 smp_wmb();
2962
2963 vcpu->hv_clock.version++;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002964 kvm_write_guest_offset_cached(v->kvm, cache,
2965 &vcpu->hv_clock, offset,
2966 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002967}
2968
Zachary Amsden34c238a2010-09-18 14:38:14 -10002969static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002970{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002971 unsigned long flags, tgt_tsc_khz;
Paolo Bonzini869b4422021-09-16 18:15:36 +00002972 unsigned seq;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002973 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002974 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02002975 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002976 u64 tsc_timestamp, host_tsc;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002977 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002978 bool use_master_clock;
2979
2980 kernel_ns = 0;
2981 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002982
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002983 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02002984 * If the host uses TSC clock, then passthrough TSC as stable
2985 * to the guest.
2986 */
Paolo Bonzini869b4422021-09-16 18:15:36 +00002987 do {
2988 seq = read_seqcount_begin(&ka->pvclock_sc);
2989 use_master_clock = ka->use_master_clock;
2990 if (use_master_clock) {
2991 host_tsc = ka->master_cycle_now;
2992 kernel_ns = ka->master_kernel_ns;
2993 }
2994 } while (read_seqcount_retry(&ka->pvclock_sc, seq));
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002995
2996 /* Keep irq disabled to prevent changes to the clock */
2997 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002998 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
2999 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03003000 local_irq_restore(flags);
3001 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
3002 return 1;
3003 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02003004 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02003005 host_tsc = rdtsc();
Paolo Bonzini8171cd62020-01-22 14:36:09 +01003006 kernel_ns = get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02003007 }
3008
Haozhong Zhang4ba76532015-10-20 15:39:07 +08003009 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02003010
3011 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10003012 * We may have to catch up the TSC to match elapsed wall clock
3013 * time for two reasons, even if kvmclock is used.
3014 * 1) CPU could have been running below the maximum TSC rate
3015 * 2) Broken TSC compensation resets the base at each VCPU
3016 * entry to avoid unknown leaps of TSC even when running
3017 * again on the same CPU. This may cause apparent elapsed
3018 * time to disappear, and the guest to stand still or run
3019 * very slowly.
3020 */
3021 if (vcpu->tsc_catchup) {
3022 u64 tsc = compute_guest_tsc(v, kernel_ns);
3023 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02003024 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10003025 tsc_timestamp = tsc;
3026 }
3027 }
3028
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003029 local_irq_restore(flags);
3030
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02003031 /* With all the info we got, fill in the values */
Zachary Amsdenc2855452010-09-18 14:38:15 -10003032
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003033 if (kvm_has_tsc_control)
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003034 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz,
3035 v->arch.l1_tsc_scaling_ratio);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003036
3037 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01003038 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10003039 &vcpu->hv_clock.tsc_shift,
3040 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003041 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10003042 }
3043
Zachary Amsden1d5f0662010-08-19 22:07:30 -10003044 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10003045 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10003046 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03003047
Marcelo Tosattid8281992012-11-27 23:29:01 -02003048 /* If the host uses TSC clocksource, then it is stable */
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02003049 pvclock_flags = 0;
Marcelo Tosattid8281992012-11-27 23:29:01 -02003050 if (use_master_clock)
3051 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
3052
Marcelo Tosatti78c03372012-11-27 23:28:47 -02003053 vcpu->hv_clock.flags = pvclock_flags;
3054
Paolo Bonzini095cf552016-02-08 12:54:12 +01003055 if (vcpu->pv_time_enabled)
Joao Martinsaa096aa2019-02-01 13:01:45 -05003056 kvm_setup_pvclock_page(v, &vcpu->pv_time, 0);
3057 if (vcpu->xen.vcpu_info_set)
3058 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_info_cache,
3059 offsetof(struct compat_vcpu_info, time));
Joao Martinsf2340cd2018-07-23 11:20:57 -04003060 if (vcpu->xen.vcpu_time_info_set)
3061 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_time_info_cache, 0);
Sean Christopherson94c245a2021-09-10 11:32:20 -07003062 if (!v->vcpu_idx)
Paolo Bonzini095cf552016-02-08 12:54:12 +01003063 kvm_hv_setup_tsc_page(v->kvm, &vcpu->hv_clock);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10003064 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01003065}
3066
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003067/*
3068 * kvmclock updates which are isolated to a given vcpu, such as
3069 * vcpu->cpu migration, should not allow system_timestamp from
3070 * the rest of the vcpus to remain static. Otherwise ntp frequency
3071 * correction applies to one vcpu's system_timestamp but not
3072 * the others.
3073 *
3074 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01003075 * We need to rate-limit these requests though, as they can
3076 * considerably slow guests that have a large number of vcpus.
3077 * The time for a remote vcpu to update its kvmclock is bound
3078 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003079 */
3080
Andrew Jones7e44e442014-02-28 12:52:54 +01003081#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
3082
3083static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003084{
Marc Zyngier46808a42021-11-16 16:04:02 +00003085 unsigned long i;
Andrew Jones7e44e442014-02-28 12:52:54 +01003086 struct delayed_work *dwork = to_delayed_work(work);
3087 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
3088 kvmclock_update_work);
3089 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003090 struct kvm_vcpu *vcpu;
3091
3092 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003093 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003094 kvm_vcpu_kick(vcpu);
3095 }
3096}
3097
Andrew Jones7e44e442014-02-28 12:52:54 +01003098static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
3099{
3100 struct kvm *kvm = v->kvm;
3101
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003102 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01003103 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
3104 KVMCLOCK_UPDATE_DELAY);
3105}
3106
Andrew Jones332967a2014-02-28 12:52:55 +01003107#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
3108
3109static void kvmclock_sync_fn(struct work_struct *work)
3110{
3111 struct delayed_work *dwork = to_delayed_work(work);
3112 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
3113 kvmclock_sync_work);
3114 struct kvm *kvm = container_of(ka, struct kvm, arch);
3115
Marcelo Tosatti630994b2015-05-12 22:42:04 -03003116 if (!kvmclock_periodic_sync)
3117 return;
3118
Andrew Jones332967a2014-02-28 12:52:55 +01003119 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
3120 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
3121 KVMCLOCK_SYNC_PERIOD);
3122}
3123
Borislav Petkov191c8132019-04-18 18:32:50 +02003124/*
3125 * On AMD, HWCR[McStatusWrEn] controls whether setting MCi_STATUS results in #GP.
3126 */
3127static bool can_set_mci_status(struct kvm_vcpu *vcpu)
3128{
3129 /* McStatusWrEn enabled? */
Sean Christopherson23493d02020-03-04 17:34:33 -08003130 if (guest_cpuid_is_amd_or_hygon(vcpu))
Borislav Petkov191c8132019-04-18 18:32:50 +02003131 return !!(vcpu->arch.msr_hwcr & BIT_ULL(18));
3132
3133 return false;
3134}
3135
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003136static int set_msr_mce(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Huang Ying890ca9a2009-05-11 16:48:15 +08003137{
3138 u64 mcg_cap = vcpu->arch.mcg_cap;
3139 unsigned bank_num = mcg_cap & 0xff;
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003140 u32 msr = msr_info->index;
3141 u64 data = msr_info->data;
Huang Ying890ca9a2009-05-11 16:48:15 +08003142
3143 switch (msr) {
3144 case MSR_IA32_MCG_STATUS:
3145 vcpu->arch.mcg_status = data;
3146 break;
3147 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003148 if (!(mcg_cap & MCG_CTL_P) &&
3149 (data || !msr_info->host_initiated))
Huang Ying890ca9a2009-05-11 16:48:15 +08003150 return 1;
3151 if (data != 0 && data != ~(u64)0)
Paolo Bonzini44883f02018-07-26 13:01:52 +02003152 return 1;
Huang Ying890ca9a2009-05-11 16:48:15 +08003153 vcpu->arch.mcg_ctl = data;
3154 break;
3155 default:
3156 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003157 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003158 u32 offset = array_index_nospec(
3159 msr - MSR_IA32_MC0_CTL,
3160 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3161
Andre Przywara114be422010-03-24 17:46:42 +01003162 /* only 0 or all 1s can be written to IA32_MCi_CTL
3163 * some Linux kernels though clear bit 10 in bank 4 to
3164 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
3165 * this to avoid an uncatched #GP in the guest
3166 */
Huang Ying890ca9a2009-05-11 16:48:15 +08003167 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01003168 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08003169 return -1;
Borislav Petkov191c8132019-04-18 18:32:50 +02003170
3171 /* MCi_STATUS */
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003172 if (!msr_info->host_initiated &&
Borislav Petkov191c8132019-04-18 18:32:50 +02003173 (offset & 0x3) == 1 && data != 0) {
3174 if (!can_set_mci_status(vcpu))
3175 return -1;
3176 }
3177
Huang Ying890ca9a2009-05-11 16:48:15 +08003178 vcpu->arch.mce_banks[offset] = data;
3179 break;
3180 }
3181 return 1;
3182 }
3183 return 0;
3184}
3185
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003186static inline bool kvm_pv_async_pf_enabled(struct kvm_vcpu *vcpu)
3187{
3188 u64 mask = KVM_ASYNC_PF_ENABLED | KVM_ASYNC_PF_DELIVERY_AS_INT;
3189
3190 return (vcpu->arch.apf.msr_en_val & mask) == mask;
3191}
3192
Gleb Natapov344d9582010-10-14 11:22:50 +02003193static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
3194{
3195 gpa_t gpa = data & ~0x3f;
3196
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003197 /* Bits 4:5 are reserved, Should be zero */
3198 if (data & 0x30)
Gleb Natapov344d9582010-10-14 11:22:50 +02003199 return 1;
3200
Oliver Upton66570e92020-08-18 15:24:28 +00003201 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_VMEXIT) &&
3202 (data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT))
3203 return 1;
3204
3205 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT) &&
3206 (data & KVM_ASYNC_PF_DELIVERY_AS_INT))
3207 return 1;
3208
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003209 if (!lapic_in_kernel(vcpu))
Vitaly Kuznetsovd831de12020-09-11 11:31:47 +02003210 return data ? 1 : 0;
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003211
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003212 vcpu->arch.apf.msr_en_val = data;
Gleb Natapov344d9582010-10-14 11:22:50 +02003213
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003214 if (!kvm_pv_async_pf_enabled(vcpu)) {
Gleb Natapov344d9582010-10-14 11:22:50 +02003215 kvm_clear_async_pf_completion_queue(vcpu);
3216 kvm_async_pf_hash_reset(vcpu);
3217 return 0;
3218 }
3219
Paolo Bonzini4e335d92017-05-02 16:20:18 +02003220 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02003221 sizeof(u64)))
Gleb Natapov344d9582010-10-14 11:22:50 +02003222 return 1;
3223
Gleb Natapov6adba522010-10-14 11:22:55 +02003224 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Wanpeng Li52a5c152017-07-13 18:30:42 -07003225 vcpu->arch.apf.delivery_as_pf_vmexit = data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003226
Gleb Natapov344d9582010-10-14 11:22:50 +02003227 kvm_async_pf_wakeup_all(vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003228
3229 return 0;
3230}
3231
3232static int kvm_pv_enable_async_pf_int(struct kvm_vcpu *vcpu, u64 data)
3233{
3234 /* Bits 8-63 are reserved */
3235 if (data >> 8)
3236 return 1;
3237
3238 if (!lapic_in_kernel(vcpu))
3239 return 1;
3240
3241 vcpu->arch.apf.msr_int_val = data;
3242
3243 vcpu->arch.apf.vec = data & KVM_ASYNC_PF_VEC_MASK;
3244
Gleb Natapov344d9582010-10-14 11:22:50 +02003245 return 0;
3246}
3247
Glauber Costa12f9a482011-02-01 14:16:40 -05003248static void kvmclock_reset(struct kvm_vcpu *vcpu)
3249{
Andy Honig0b794592013-02-20 14:48:10 -08003250 vcpu->arch.pv_time_enabled = false;
Paolo Bonzini49dedf02019-10-10 12:49:22 +02003251 vcpu->arch.time = 0;
Glauber Costa12f9a482011-02-01 14:16:40 -05003252}
3253
Sean Christopherson77809382020-03-20 14:28:18 -07003254static void kvm_vcpu_flush_tlb_all(struct kvm_vcpu *vcpu)
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003255{
3256 ++vcpu->stat.tlb_flush;
Jason Baronb36464772021-01-14 22:27:56 -05003257 static_call(kvm_x86_tlb_flush_all)(vcpu);
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003258}
3259
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003260static void kvm_vcpu_flush_tlb_guest(struct kvm_vcpu *vcpu)
3261{
3262 ++vcpu->stat.tlb_flush;
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003263
3264 if (!tdp_enabled) {
Lai Jiangshan61b05a9f2021-10-19 19:01:54 +08003265 /*
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003266 * A TLB flush on behalf of the guest is equivalent to
3267 * INVPCID(all), toggling CR4.PGE, etc., which requires
Lai Jiangshan61b05a9f2021-10-19 19:01:54 +08003268 * a forced sync of the shadow page tables. Ensure all the
3269 * roots are synced and the guest TLB in hardware is clean.
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003270 */
Lai Jiangshan61b05a9f2021-10-19 19:01:54 +08003271 kvm_mmu_sync_roots(vcpu);
3272 kvm_mmu_sync_prev_roots(vcpu);
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003273 }
3274
Jason Baronb36464772021-01-14 22:27:56 -05003275 static_call(kvm_x86_tlb_flush_guest)(vcpu);
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003276}
3277
Sean Christopherson40e5f9082021-11-25 01:49:43 +00003278
3279static inline void kvm_vcpu_flush_tlb_current(struct kvm_vcpu *vcpu)
3280{
3281 ++vcpu->stat.tlb_flush;
3282 static_call(kvm_x86_tlb_flush_current)(vcpu);
3283}
3284
3285/*
3286 * Service "local" TLB flush requests, which are specific to the current MMU
3287 * context. In addition to the generic event handling in vcpu_enter_guest(),
3288 * TLB flushes that are targeted at an MMU context also need to be serviced
3289 * prior before nested VM-Enter/VM-Exit.
3290 */
3291void kvm_service_local_tlb_flush_requests(struct kvm_vcpu *vcpu)
3292{
3293 if (kvm_check_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu))
3294 kvm_vcpu_flush_tlb_current(vcpu);
3295
3296 if (kvm_check_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu))
3297 kvm_vcpu_flush_tlb_guest(vcpu);
3298}
3299EXPORT_SYMBOL_GPL(kvm_service_local_tlb_flush_requests);
3300
Glauber Costac9aaa892011-07-11 15:28:14 -04003301static void record_steal_time(struct kvm_vcpu *vcpu)
3302{
David Woodhouse7e2175e2021-11-02 17:36:39 +00003303 struct gfn_to_hva_cache *ghc = &vcpu->arch.st.cache;
3304 struct kvm_steal_time __user *st;
3305 struct kvm_memslots *slots;
3306 u64 steal;
3307 u32 version;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003308
David Woodhouse30b5c852021-03-01 12:53:09 +00003309 if (kvm_xen_msr_enabled(vcpu->kvm)) {
3310 kvm_xen_runstate_set_running(vcpu);
3311 return;
3312 }
3313
Glauber Costac9aaa892011-07-11 15:28:14 -04003314 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
3315 return;
3316
David Woodhouse7e2175e2021-11-02 17:36:39 +00003317 if (WARN_ON_ONCE(current->mm != vcpu->kvm->mm))
Glauber Costac9aaa892011-07-11 15:28:14 -04003318 return;
3319
David Woodhouse7e2175e2021-11-02 17:36:39 +00003320 slots = kvm_memslots(vcpu->kvm);
3321
3322 if (unlikely(slots->generation != ghc->generation ||
3323 kvm_is_error_hva(ghc->hva) || !ghc->memslot)) {
3324 gfn_t gfn = vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS;
3325
3326 /* We rely on the fact that it fits in a single page. */
3327 BUILD_BUG_ON((sizeof(*st) - 1) & KVM_STEAL_VALID_BITS);
3328
3329 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, ghc, gfn, sizeof(*st)) ||
3330 kvm_is_error_hva(ghc->hva) || !ghc->memslot)
3331 return;
3332 }
3333
3334 st = (struct kvm_steal_time __user *)ghc->hva;
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003335 /*
3336 * Doing a TLB flush here, on the guest's behalf, can avoid
3337 * expensive IPIs.
3338 */
Oliver Upton66570e92020-08-18 15:24:28 +00003339 if (guest_pv_has(vcpu, KVM_FEATURE_PV_TLB_FLUSH)) {
David Woodhouse7e2175e2021-11-02 17:36:39 +00003340 u8 st_preempted = 0;
3341 int err = -EFAULT;
3342
Paolo Bonzini3e067fd2021-11-12 02:53:41 -05003343 if (!user_access_begin(st, sizeof(*st)))
3344 return;
3345
David Woodhouse7e2175e2021-11-02 17:36:39 +00003346 asm volatile("1: xchgb %0, %2\n"
3347 "xor %1, %1\n"
3348 "2:\n"
3349 _ASM_EXTABLE_UA(1b, 2b)
David Woodhouse964b7aa2021-11-14 08:59:02 +00003350 : "+q" (st_preempted),
3351 "+&r" (err),
3352 "+m" (st->preempted));
David Woodhouse7e2175e2021-11-02 17:36:39 +00003353 if (err)
3354 goto out;
3355
3356 user_access_end();
3357
3358 vcpu->arch.st.preempted = 0;
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003359
Oliver Upton66570e92020-08-18 15:24:28 +00003360 trace_kvm_pv_tlb_flush(vcpu->vcpu_id,
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003361 st_preempted & KVM_VCPU_FLUSH_TLB);
3362 if (st_preempted & KVM_VCPU_FLUSH_TLB)
Oliver Upton66570e92020-08-18 15:24:28 +00003363 kvm_vcpu_flush_tlb_guest(vcpu);
David Woodhouse7e2175e2021-11-02 17:36:39 +00003364
3365 if (!user_access_begin(st, sizeof(*st)))
3366 goto dirty;
Wanpeng Li1eff0ad2021-05-18 05:00:33 -07003367 } else {
Paolo Bonzini3e067fd2021-11-12 02:53:41 -05003368 if (!user_access_begin(st, sizeof(*st)))
3369 return;
3370
David Woodhouse7e2175e2021-11-02 17:36:39 +00003371 unsafe_put_user(0, &st->preempted, out);
3372 vcpu->arch.st.preempted = 0;
Oliver Upton66570e92020-08-18 15:24:28 +00003373 }
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003374
David Woodhouse7e2175e2021-11-02 17:36:39 +00003375 unsafe_get_user(version, &st->version, out);
3376 if (version & 1)
3377 version += 1; /* first time write, random junk */
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003378
David Woodhouse7e2175e2021-11-02 17:36:39 +00003379 version += 1;
3380 unsafe_put_user(version, &st->version, out);
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003381
3382 smp_wmb();
3383
David Woodhouse7e2175e2021-11-02 17:36:39 +00003384 unsafe_get_user(steal, &st->steal, out);
3385 steal += current->sched_info.run_delay -
Liang Chenc54cdf12016-03-16 19:33:16 +08003386 vcpu->arch.st.last_steal;
3387 vcpu->arch.st.last_steal = current->sched_info.run_delay;
David Woodhouse7e2175e2021-11-02 17:36:39 +00003388 unsafe_put_user(steal, &st->steal, out);
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003389
David Woodhouse7e2175e2021-11-02 17:36:39 +00003390 version += 1;
3391 unsafe_put_user(version, &st->version, out);
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003392
David Woodhouse7e2175e2021-11-02 17:36:39 +00003393 out:
3394 user_access_end();
3395 dirty:
3396 mark_page_dirty_in_slot(vcpu->kvm, ghc->memslot, gpa_to_gfn(ghc->gpa));
Glauber Costac9aaa892011-07-11 15:28:14 -04003397}
3398
Will Auld8fe8ab42012-11-29 12:42:12 -08003399int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003400{
Gleb Natapov57537852012-01-15 14:17:22 +02003401 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08003402 u32 msr = msr_info->index;
3403 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02003404
Joao Martins1232f8e2018-06-13 06:10:37 -04003405 if (msr && msr == vcpu->kvm->arch.xen_hvm_config.msr)
Joao Martins23200b72018-06-13 09:55:44 -04003406 return kvm_xen_write_hypercall_page(vcpu, data);
Joao Martins1232f8e2018-06-13 06:10:37 -04003407
Carsten Otte15c4a642007-10-30 18:44:17 +01003408 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01003409 case MSR_AMD64_NB_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003410 case MSR_IA32_UCODE_WRITE:
3411 case MSR_VM_HSAVE_PA:
3412 case MSR_AMD64_PATCH_LOADER:
3413 case MSR_AMD64_BU_CFG2:
Ladi Prosek405a3532017-04-06 15:22:20 +02003414 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003415 case MSR_F15H_EX_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003416 break;
3417
Wanpeng Li518e7b92018-02-28 14:03:31 +08003418 case MSR_IA32_UCODE_REV:
3419 if (msr_info->host_initiated)
3420 vcpu->arch.microcode_version = data;
3421 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003422 case MSR_IA32_ARCH_CAPABILITIES:
3423 if (!msr_info->host_initiated)
3424 return 1;
3425 vcpu->arch.arch_capabilities = data;
3426 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003427 case MSR_IA32_PERF_CAPABILITIES: {
3428 struct kvm_msr_entry msr_ent = {.index = msr, .data = 0};
3429
3430 if (!msr_info->host_initiated)
3431 return 1;
Vitaly Kuznetsov1aa2abb2021-12-16 17:52:13 +01003432 if (kvm_get_msr_feature(&msr_ent))
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003433 return 1;
3434 if (data & ~msr_ent.data)
3435 return 1;
3436
3437 vcpu->arch.perf_capabilities = data;
3438
3439 return 0;
3440 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003441 case MSR_EFER:
Sean Christopherson11988492019-04-02 08:19:15 -07003442 return set_efer(vcpu, msr_info);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003443 case MSR_K7_HWCR:
3444 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01003445 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08003446 data &= ~(u64)0x8; /* ignore TLB cache disable */
Borislav Petkov191c8132019-04-18 18:32:50 +02003447
3448 /* Handle McStatusWrEn */
3449 if (data == BIT_ULL(18)) {
3450 vcpu->arch.msr_hwcr = data;
3451 } else if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003452 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
3453 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003454 return 1;
3455 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003456 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003457 case MSR_FAM10H_MMIO_CONF_BASE:
3458 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003459 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
3460 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003461 return 1;
3462 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003463 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03003464 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003465 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003466 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01003467 return kvm_set_apic_base(vcpu, msr_info);
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003468 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03003469 return kvm_x2apic_msr_write(vcpu, msr, data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003470 case MSR_IA32_TSC_DEADLINE:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003471 kvm_set_lapic_tscdeadline_msr(vcpu, data);
3472 break;
Will Auldba904632012-11-29 12:42:50 -08003473 case MSR_IA32_TSC_ADJUST:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003474 if (guest_cpuid_has(vcpu, X86_FEATURE_TSC_ADJUST)) {
Will Auldba904632012-11-29 12:42:50 -08003475 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06003476 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08003477 adjust_tsc_offset_guest(vcpu, adj);
Zelin Dengd9130a22021-04-28 10:22:01 +08003478 /* Before back to guest, tsc_timestamp must be adjusted
3479 * as well, otherwise guest's percpu pvclock time could jump.
3480 */
3481 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Will Auldba904632012-11-29 12:42:50 -08003482 }
3483 vcpu->arch.ia32_tsc_adjust_msr = data;
3484 }
3485 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003486 case MSR_IA32_MISC_ENABLE:
Wanpeng Li511a85562019-05-21 14:06:54 +08003487 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT) &&
3488 ((vcpu->arch.ia32_misc_enable_msr ^ data) & MSR_IA32_MISC_ENABLE_MWAIT)) {
3489 if (!guest_cpuid_has(vcpu, X86_FEATURE_XMM3))
3490 return 1;
3491 vcpu->arch.ia32_misc_enable_msr = data;
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08003492 kvm_update_cpuid_runtime(vcpu);
Wanpeng Li511a85562019-05-21 14:06:54 +08003493 } else {
3494 vcpu->arch.ia32_misc_enable_msr = data;
3495 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003496 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003497 case MSR_IA32_SMBASE:
3498 if (!msr_info->host_initiated)
3499 return 1;
3500 vcpu->arch.smbase = data;
3501 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003502 case MSR_IA32_POWER_CTL:
3503 vcpu->arch.msr_ia32_power_ctl = data;
3504 break;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003505 case MSR_IA32_TSC:
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003506 if (msr_info->host_initiated) {
3507 kvm_synchronize_tsc(vcpu, data);
3508 } else {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01003509 u64 adj = kvm_compute_l1_tsc_offset(vcpu, data) - vcpu->arch.l1_tsc_offset;
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003510 adjust_tsc_offset_guest(vcpu, adj);
3511 vcpu->arch.ia32_tsc_adjust_msr += adj;
3512 }
Paolo Bonzinidd259932018-04-13 11:38:35 +02003513 break;
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003514 case MSR_IA32_XSS:
3515 if (!msr_info->host_initiated &&
3516 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3517 return 1;
3518 /*
Sean Christophersona1bead22020-03-02 15:57:00 -08003519 * KVM supports exposing PT to the guest, but does not support
3520 * IA32_XSS[bit 8]. Guests have to use RDMSR/WRMSR rather than
3521 * XSAVES/XRSTORS to save/restore PT MSRs.
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003522 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01003523 if (data & ~supported_xss)
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003524 return 1;
3525 vcpu->arch.ia32_xss = data;
3526 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003527 case MSR_SMI_COUNT:
3528 if (!msr_info->host_initiated)
3529 return 1;
3530 vcpu->arch.smi_count = data;
3531 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003532 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003533 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3534 return 1;
3535
Joao Martins629b5342018-06-28 15:06:43 -04003536 vcpu->kvm->arch.wall_clock = data;
3537 kvm_write_wall_clock(vcpu->kvm, data, 0);
Oliver Upton66570e92020-08-18 15:24:28 +00003538 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003539 case MSR_KVM_WALL_CLOCK:
Oliver Upton66570e92020-08-18 15:24:28 +00003540 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3541 return 1;
3542
Joao Martins629b5342018-06-28 15:06:43 -04003543 vcpu->kvm->arch.wall_clock = data;
3544 kvm_write_wall_clock(vcpu->kvm, data, 0);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003545 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003546 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003547 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3548 return 1;
3549
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003550 kvm_write_system_time(vcpu, data, false, msr_info->host_initiated);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003551 break;
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003552 case MSR_KVM_SYSTEM_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003553 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3554 return 1;
3555
3556 kvm_write_system_time(vcpu, data, true, msr_info->host_initiated);
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003557 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003558 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003559 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3560 return 1;
3561
Gleb Natapov344d9582010-10-14 11:22:50 +02003562 if (kvm_pv_enable_async_pf(vcpu, data))
3563 return 1;
3564 break;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003565 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton66570e92020-08-18 15:24:28 +00003566 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3567 return 1;
3568
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003569 if (kvm_pv_enable_async_pf_int(vcpu, data))
3570 return 1;
3571 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003572 case MSR_KVM_ASYNC_PF_ACK:
Vitaly Kuznetsov0a31df62021-07-22 14:30:18 +02003573 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
Oliver Upton66570e92020-08-18 15:24:28 +00003574 return 1;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003575 if (data & 0x1) {
3576 vcpu->arch.apf.pageready_pending = false;
3577 kvm_check_async_pf_completion(vcpu);
3578 }
3579 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003580 case MSR_KVM_STEAL_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003581 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3582 return 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04003583
3584 if (unlikely(!sched_info_on()))
3585 return 1;
3586
3587 if (data & KVM_STEAL_RESERVED_MASK)
3588 return 1;
3589
Glauber Costac9aaa892011-07-11 15:28:14 -04003590 vcpu->arch.st.msr_val = data;
3591
3592 if (!(data & KVM_MSR_ENABLED))
3593 break;
3594
Glauber Costac9aaa892011-07-11 15:28:14 -04003595 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
3596
3597 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003598 case MSR_KVM_PV_EOI_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003599 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3600 return 1;
3601
Vitaly Kuznetsov77c33232021-11-08 16:28:18 +01003602 if (kvm_lapic_set_pv_eoi(vcpu, data, sizeof(u8)))
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003603 return 1;
3604 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003605
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003606 case MSR_KVM_POLL_CONTROL:
Oliver Upton66570e92020-08-18 15:24:28 +00003607 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3608 return 1;
3609
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003610 /* only enable bit supported */
3611 if (data & (-1ULL << 1))
3612 return 1;
3613
3614 vcpu->arch.msr_kvm_poll_control = data;
3615 break;
3616
Huang Ying890ca9a2009-05-11 16:48:15 +08003617 case MSR_IA32_MCG_CTL:
3618 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003619 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003620 return set_msr_mce(vcpu, msr_info);
Andre Przywara71db6022009-06-12 22:01:29 +02003621
Wei Huang6912ac32015-06-12 01:34:56 -04003622 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3623 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05003624 pr = true;
3625 fallthrough;
Wei Huang6912ac32015-06-12 01:34:56 -04003626 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3627 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003628 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003629 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02003630
3631 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03003632 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
3633 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02003634 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003635 case MSR_K7_CLK_CTL:
3636 /*
3637 * Ignore all writes to this no longer documented MSR.
3638 * Writes are only relevant for old K7 processors,
3639 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08003640 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003641 * affected processor models on the command line, hence
3642 * the need to ignore the workaround.
3643 */
3644 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003645 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003646 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3647 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003648 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3649 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003650 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003651 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3652 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3653 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003654 return kvm_hv_set_msr_common(vcpu, msr, data,
3655 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003656 case MSR_IA32_BBL_CR_CTL3:
3657 /* Drop writes to this legacy MSR -- see rdmsr
3658 * counterpart for further detail.
3659 */
Eyal Moscovicifab0aa32017-11-08 14:32:08 +02003660 if (report_ignored_msrs)
3661 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n",
3662 msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05003663 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003664 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003665 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003666 return 1;
3667 vcpu->arch.osvw.length = data;
3668 break;
3669 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003670 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003671 return 1;
3672 vcpu->arch.osvw.status = data;
3673 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003674 case MSR_PLATFORM_INFO:
3675 if (!msr_info->host_initiated ||
Kyle Hueydb2336a2017-03-20 01:16:28 -07003676 (!(data & MSR_PLATFORM_INFO_CPUID_FAULT) &&
3677 cpuid_fault_enabled(vcpu)))
3678 return 1;
3679 vcpu->arch.msr_platform_info = data;
3680 break;
3681 case MSR_MISC_FEATURES_ENABLES:
3682 if (data & ~MSR_MISC_FEATURES_ENABLES_CPUID_FAULT ||
3683 (data & MSR_MISC_FEATURES_ENABLES_CPUID_FAULT &&
3684 !supports_cpuid_fault(vcpu)))
3685 return 1;
3686 vcpu->arch.msr_misc_features_enables = data;
3687 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003688 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003689 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003690 return kvm_pmu_set_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003691 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003692 }
3693 return 0;
3694}
3695EXPORT_SYMBOL_GPL(kvm_set_msr_common);
3696
Paolo Bonzini44883f02018-07-26 13:01:52 +02003697static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata, bool host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003698{
3699 u64 data;
3700 u64 mcg_cap = vcpu->arch.mcg_cap;
3701 unsigned bank_num = mcg_cap & 0xff;
3702
3703 switch (msr) {
3704 case MSR_IA32_P5_MC_ADDR:
3705 case MSR_IA32_P5_MC_TYPE:
3706 data = 0;
3707 break;
3708 case MSR_IA32_MCG_CAP:
3709 data = vcpu->arch.mcg_cap;
3710 break;
3711 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003712 if (!(mcg_cap & MCG_CTL_P) && !host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003713 return 1;
3714 data = vcpu->arch.mcg_ctl;
3715 break;
3716 case MSR_IA32_MCG_STATUS:
3717 data = vcpu->arch.mcg_status;
3718 break;
3719 default:
3720 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003721 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003722 u32 offset = array_index_nospec(
3723 msr - MSR_IA32_MC0_CTL,
3724 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3725
Huang Ying890ca9a2009-05-11 16:48:15 +08003726 data = vcpu->arch.mce_banks[offset];
3727 break;
3728 }
3729 return 1;
3730 }
3731 *pdata = data;
3732 return 0;
3733}
3734
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003735int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003736{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003737 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01003738 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01003739 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02003740 case MSR_IA32_LASTBRANCHFROMIP:
3741 case MSR_IA32_LASTBRANCHTOIP:
3742 case MSR_IA32_LASTINTFROMIP:
3743 case MSR_IA32_LASTINTTOIP:
Brijesh Singh059e5c32021-04-27 06:16:36 -05003744 case MSR_AMD64_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02003745 case MSR_K8_TSEG_ADDR:
3746 case MSR_K8_TSEG_MASK:
Avi Kivity61a6bd62008-12-29 17:32:28 +02003747 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02003748 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02003749 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003750 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003751 case MSR_AMD64_BU_CFG2:
Dmitry Bilunov0c2df2a2016-05-31 17:38:24 +03003752 case MSR_IA32_PERF_CTL:
Ladi Prosek405a3532017-04-06 15:22:20 +02003753 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003754 case MSR_F15H_EX_CFG:
Venkatesh Srinivas2ca1a062020-04-16 11:42:54 -07003755 /*
3756 * Intel Sandy Bridge CPUs must support the RAPL (running average power
3757 * limit) MSRs. Just return 0, as we do not want to expose the host
3758 * data here. Do not conditionalize this on CPUID, as KVM does not do
3759 * so for existing CPU-specific MSRs.
3760 */
3761 case MSR_RAPL_POWER_UNIT:
3762 case MSR_PP0_ENERGY_STATUS: /* Power plane 0 (core) */
3763 case MSR_PP1_ENERGY_STATUS: /* Power plane 1 (graphics uncore) */
3764 case MSR_PKG_ENERGY_STATUS: /* Total package */
3765 case MSR_DRAM_ENERGY_STATUS: /* DRAM controller */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003766 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01003767 break;
Janakarajan Natarajanc51eb522018-02-05 13:24:52 -06003768 case MSR_F15H_PERF_CTL0 ... MSR_F15H_PERF_CTR5:
Vitaly Kuznetsovc28fa562021-03-29 14:48:04 +02003769 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
3770 return kvm_pmu_get_msr(vcpu, msr_info);
3771 if (!msr_info->host_initiated)
3772 return 1;
3773 msr_info->data = 0;
3774 break;
Wei Huang6912ac32015-06-12 01:34:56 -04003775 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3776 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3777 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
3778 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003779 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003780 return kvm_pmu_get_msr(vcpu, msr_info);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003781 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02003782 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003783 case MSR_IA32_UCODE_REV:
Wanpeng Li518e7b92018-02-28 14:03:31 +08003784 msr_info->data = vcpu->arch.microcode_version;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003785 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003786 case MSR_IA32_ARCH_CAPABILITIES:
3787 if (!msr_info->host_initiated &&
3788 !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES))
3789 return 1;
3790 msr_info->data = vcpu->arch.arch_capabilities;
3791 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003792 case MSR_IA32_PERF_CAPABILITIES:
3793 if (!msr_info->host_initiated &&
3794 !guest_cpuid_has(vcpu, X86_FEATURE_PDCM))
3795 return 1;
3796 msr_info->data = vcpu->arch.perf_capabilities;
3797 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003798 case MSR_IA32_POWER_CTL:
3799 msr_info->data = vcpu->arch.msr_ia32_power_ctl;
3800 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003801 case MSR_IA32_TSC: {
3802 /*
3803 * Intel SDM states that MSR_IA32_TSC read adds the TSC offset
3804 * even when not intercepted. AMD manual doesn't explicitly
3805 * state this but appears to behave the same.
3806 *
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003807 * On userspace reads and writes, however, we unconditionally
Paolo Bonzinic0623f52020-10-21 18:05:58 -04003808 * return L1's TSC value to ensure backwards-compatible
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003809 * behavior for migration.
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003810 */
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003811 u64 offset, ratio;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003812
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003813 if (msr_info->host_initiated) {
3814 offset = vcpu->arch.l1_tsc_offset;
3815 ratio = vcpu->arch.l1_tsc_scaling_ratio;
3816 } else {
3817 offset = vcpu->arch.tsc_offset;
3818 ratio = vcpu->arch.tsc_scaling_ratio;
3819 }
3820
3821 msr_info->data = kvm_scale_tsc(vcpu, rdtsc(), ratio) + offset;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003822 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003823 }
Avi Kivity9ba075a2008-05-26 20:06:35 +03003824 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03003825 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003826 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003827 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003828 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01003829 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02003830 /*
3831 * MSR_EBC_FREQUENCY_ID
3832 * Conservative value valid for even the basic CPU models.
3833 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
3834 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
3835 * and 266MHz for model 3, or 4. Set Core Clock
3836 * Frequency to System Bus Frequency Ratio to 1 (bits
3837 * 31:24) even though these are only valid for CPU
3838 * models > 2, however guests may end up dividing or
3839 * multiplying by zero otherwise.
3840 */
3841 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003842 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02003843 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003844 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003845 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01003846 break;
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003847 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003848 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003849 case MSR_IA32_TSC_DEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003850 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003851 break;
Will Auldba904632012-11-29 12:42:50 -08003852 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003853 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08003854 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003855 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003856 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01003857 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003858 case MSR_IA32_SMBASE:
3859 if (!msr_info->host_initiated)
3860 return 1;
3861 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01003862 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003863 case MSR_SMI_COUNT:
3864 msr_info->data = vcpu->arch.smi_count;
3865 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003866 case MSR_IA32_PERF_STATUS:
3867 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003868 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003869 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08003870 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01003871 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003872 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003873 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01003874 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003875 case MSR_KVM_WALL_CLOCK:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003876 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3877 return 1;
3878
3879 msr_info->data = vcpu->kvm->arch.wall_clock;
3880 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003881 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003882 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3883 return 1;
3884
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003885 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003886 break;
3887 case MSR_KVM_SYSTEM_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003888 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3889 return 1;
3890
3891 msr_info->data = vcpu->arch.time;
3892 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003893 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003894 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3895 return 1;
3896
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003897 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003898 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003899 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003900 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3901 return 1;
3902
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003903 msr_info->data = vcpu->arch.apf.msr_en_val;
3904 break;
3905 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003906 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3907 return 1;
3908
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003909 msr_info->data = vcpu->arch.apf.msr_int_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02003910 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003911 case MSR_KVM_ASYNC_PF_ACK:
Vitaly Kuznetsov0a31df62021-07-22 14:30:18 +02003912 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
Oliver Upton1930e5d2020-10-27 16:10:41 -07003913 return 1;
3914
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003915 msr_info->data = 0;
3916 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003917 case MSR_KVM_STEAL_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003918 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3919 return 1;
3920
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003921 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04003922 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003923 case MSR_KVM_PV_EOI_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003924 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3925 return 1;
3926
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003927 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003928 break;
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003929 case MSR_KVM_POLL_CONTROL:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003930 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3931 return 1;
3932
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003933 msr_info->data = vcpu->arch.msr_kvm_poll_control;
3934 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08003935 case MSR_IA32_P5_MC_ADDR:
3936 case MSR_IA32_P5_MC_TYPE:
3937 case MSR_IA32_MCG_CAP:
3938 case MSR_IA32_MCG_CTL:
3939 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003940 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003941 return get_msr_mce(vcpu, msr_info->index, &msr_info->data,
3942 msr_info->host_initiated);
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003943 case MSR_IA32_XSS:
3944 if (!msr_info->host_initiated &&
3945 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3946 return 1;
3947 msr_info->data = vcpu->arch.ia32_xss;
3948 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003949 case MSR_K7_CLK_CTL:
3950 /*
3951 * Provide expected ramp-up count for K7. All other
3952 * are set to zero, indicating minimum divisors for
3953 * every field.
3954 *
3955 * This prevents guest kernels on AMD host with CPU
3956 * type 6, model 8 and higher from exploding due to
3957 * the rdmsr failing.
3958 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003959 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003960 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003961 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003962 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3963 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003964 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3965 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003966 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003967 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3968 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3969 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine83d5882015-07-03 15:01:34 +03003970 return kvm_hv_get_msr_common(vcpu,
Paolo Bonzini44883f02018-07-26 13:01:52 +02003971 msr_info->index, &msr_info->data,
3972 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003973 case MSR_IA32_BBL_CR_CTL3:
3974 /* This legacy MSR exists but isn't fully documented in current
3975 * silicon. It is however accessed by winxp in very narrow
3976 * scenarios where it sets bit #19, itself documented as
3977 * a "reserved" bit. Best effort attempt to source coherent
3978 * read data here should the balance of the register be
3979 * interpreted by the guest:
3980 *
3981 * L2 cache control register 3: 64GB range, 256KB size,
3982 * enabled, latency 0x1, configured
3983 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003984 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05003985 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003986 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003987 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003988 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003989 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003990 break;
3991 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003992 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003993 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003994 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003995 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003996 case MSR_PLATFORM_INFO:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07003997 if (!msr_info->host_initiated &&
3998 !vcpu->kvm->arch.guest_can_read_msr_platform_info)
3999 return 1;
Kyle Hueydb2336a2017-03-20 01:16:28 -07004000 msr_info->data = vcpu->arch.msr_platform_info;
4001 break;
4002 case MSR_MISC_FEATURES_ENABLES:
4003 msr_info->data = vcpu->arch.msr_misc_features_enables;
4004 break;
Borislav Petkov191c8132019-04-18 18:32:50 +02004005 case MSR_K7_HWCR:
4006 msr_info->data = vcpu->arch.msr_hwcr;
4007 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01004008 default:
Wei Huangc6702c92015-06-19 13:44:45 +02004009 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08004010 return kvm_pmu_get_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04004011 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01004012 }
Carsten Otte15c4a642007-10-30 18:44:17 +01004013 return 0;
4014}
4015EXPORT_SYMBOL_GPL(kvm_get_msr_common);
4016
Carsten Otte313a3dc2007-10-11 19:16:52 +02004017/*
4018 * Read or write a bunch of msrs. All parameters are kernel addresses.
4019 *
4020 * @return number of msrs set successfully.
4021 */
4022static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
4023 struct kvm_msr_entry *entries,
4024 int (*do_msr)(struct kvm_vcpu *vcpu,
4025 unsigned index, u64 *data))
4026{
Tom Lendacky801e4592018-02-21 13:39:51 -06004027 int i;
Carsten Otte313a3dc2007-10-11 19:16:52 +02004028
Carsten Otte313a3dc2007-10-11 19:16:52 +02004029 for (i = 0; i < msrs->nmsrs; ++i)
4030 if (do_msr(vcpu, entries[i].index, &entries[i].data))
4031 break;
4032
Carsten Otte313a3dc2007-10-11 19:16:52 +02004033 return i;
4034}
4035
4036/*
4037 * Read or write a bunch of msrs. Parameters are user addresses.
4038 *
4039 * @return number of msrs set successfully.
4040 */
4041static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
4042 int (*do_msr)(struct kvm_vcpu *vcpu,
4043 unsigned index, u64 *data),
4044 int writeback)
4045{
4046 struct kvm_msrs msrs;
4047 struct kvm_msr_entry *entries;
4048 int r, n;
4049 unsigned size;
4050
4051 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004052 if (copy_from_user(&msrs, user_msrs, sizeof(msrs)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02004053 goto out;
4054
4055 r = -E2BIG;
4056 if (msrs.nmsrs >= MAX_IO_MSRS)
4057 goto out;
4058
Carsten Otte313a3dc2007-10-11 19:16:52 +02004059 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004060 entries = memdup_user(user_msrs->entries, size);
4061 if (IS_ERR(entries)) {
4062 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004063 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004064 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02004065
4066 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
4067 if (r < 0)
4068 goto out_free;
4069
4070 r = -EFAULT;
4071 if (writeback && copy_to_user(user_msrs->entries, entries, size))
4072 goto out_free;
4073
4074 r = n;
4075
4076out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03004077 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004078out:
4079 return r;
4080}
4081
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004082static inline bool kvm_can_mwait_in_guest(void)
4083{
4084 return boot_cpu_has(X86_FEATURE_MWAIT) &&
KarimAllah Ahmed8e9b29b2018-04-11 11:16:03 +02004085 !boot_cpu_has_bug(X86_BUG_MONITOR) &&
4086 boot_cpu_has(X86_FEATURE_ARAT);
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004087}
4088
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004089static int kvm_ioctl_get_supported_hv_cpuid(struct kvm_vcpu *vcpu,
4090 struct kvm_cpuid2 __user *cpuid_arg)
4091{
4092 struct kvm_cpuid2 cpuid;
4093 int r;
4094
4095 r = -EFAULT;
4096 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
4097 return r;
4098
4099 r = kvm_get_hv_cpuid(vcpu, &cpuid, cpuid_arg->entries);
4100 if (r)
4101 return r;
4102
4103 r = -EFAULT;
4104 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
4105 return r;
4106
4107 return 0;
4108}
4109
Alexander Graf784aa3d2014-07-14 18:27:35 +02004110int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004111{
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004112 int r = 0;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004113
4114 switch (ext) {
4115 case KVM_CAP_IRQCHIP:
4116 case KVM_CAP_HLT:
4117 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004118 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02004119 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004120 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01004121 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08004122 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05004123 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03004124 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03004125 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08004126 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004127 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02004128 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04004129 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03004130 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02004131 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04004132 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08004133 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004134 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02004135 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02004136 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02004137 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004138 case KVM_CAP_HYPERV_SYNIC:
Roman Kaganefc479e2017-06-22 16:51:01 +03004139 case KVM_CAP_HYPERV_SYNIC2:
Roman Kagand3457c82017-07-14 17:13:20 +03004140 case KVM_CAP_HYPERV_VP_INDEX:
Roman Kaganfaeb7832018-02-01 16:48:32 +03004141 case KVM_CAP_HYPERV_EVENTFD:
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02004142 case KVM_CAP_HYPERV_TLBFLUSH:
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02004143 case KVM_CAP_HYPERV_SEND_IPI:
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004144 case KVM_CAP_HYPERV_CPUID:
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02004145 case KVM_CAP_HYPERV_ENFORCE_CPUID:
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004146 case KVM_CAP_SYS_HYPERV_CPUID:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08004147 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004148 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01004149 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004150 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02004151 case KVM_CAP_ASYNC_PF:
Vitaly Kuznetsov72de5fa4c2020-05-25 16:41:22 +02004152 case KVM_CAP_ASYNC_PF_INT:
Joerg Roedel92a1f122011-03-25 09:44:51 +01004153 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004154 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08004155 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01004156 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05004157 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01004158 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03004159 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004160 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07004161 case KVM_CAP_SPLIT_IRQCHIP:
Paolo Bonzini460df4c2017-02-08 11:50:15 +01004162 case KVM_CAP_IMMEDIATE_EXIT:
Eric Hankland66bb8a02019-07-10 18:25:15 -07004163 case KVM_CAP_PMU_EVENT_FILTER:
Tom Lendacky801e4592018-02-21 13:39:51 -06004164 case KVM_CAP_GET_MSR_FEATURES:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07004165 case KVM_CAP_MSR_PLATFORM_INFO:
Jim Mattsonc4f55192018-10-16 14:29:24 -07004166 case KVM_CAP_EXCEPTION_PAYLOAD:
Peter Xub9b27822020-05-05 11:47:50 -04004167 case KVM_CAP_SET_GUEST_DEBUG:
Jim Mattson1aa561b2020-06-03 16:56:21 -07004168 case KVM_CAP_LAST_CPU:
Alexander Graf1ae09952020-09-25 16:34:16 +02004169 case KVM_CAP_X86_USER_SPACE_MSR:
Alexander Graf1a1552542020-09-25 16:34:21 +02004170 case KVM_CAP_X86_MSR_FILTER:
Oliver Upton66570e92020-08-18 15:24:28 +00004171 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
Sean Christophersonfe7e9482021-04-12 16:21:43 +12004172#ifdef CONFIG_X86_SGX_KVM
4173 case KVM_CAP_SGX_ATTRIBUTE:
4174#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00004175 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
Paolo Bonzini30d7c5d2021-11-18 04:41:34 -05004176 case KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM:
Maxim Levitsky6dba9402021-06-07 12:02:02 +03004177 case KVM_CAP_SREGS2:
Aaron Lewis19238e72021-05-10 07:48:33 -07004178 case KVM_CAP_EXIT_ON_EMULATION_FAILURE:
Oliver Upton828ca892021-09-16 18:15:38 +00004179 case KVM_CAP_VCPU_ATTRIBUTES:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004180 r = 1;
4181 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00004182 case KVM_CAP_EXIT_HYPERCALL:
4183 r = KVM_EXIT_HYPERCALL_VALID_MASK;
4184 break;
Maxim Levitsky7e582cc2021-04-01 16:54:45 +03004185 case KVM_CAP_SET_GUEST_DEBUG2:
4186 return KVM_GUESTDBG_VALID_MASK;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004187#ifdef CONFIG_KVM_XEN
Joao Martins23200b72018-06-13 09:55:44 -04004188 case KVM_CAP_XEN_HVM:
4189 r = KVM_XEN_HVM_CONFIG_HYPERCALL_MSR |
David Woodhouse8d4e7e82020-12-04 01:02:04 +00004190 KVM_XEN_HVM_CONFIG_INTERCEPT_HCALL |
4191 KVM_XEN_HVM_CONFIG_SHARED_INFO;
David Woodhouse30b5c852021-03-01 12:53:09 +00004192 if (sched_info_on())
4193 r |= KVM_XEN_HVM_CONFIG_RUNSTATE;
Joao Martins23200b72018-06-13 09:55:44 -04004194 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004195#endif
Ken Hofsass01643c52018-01-31 16:03:36 -08004196 case KVM_CAP_SYNC_REGS:
4197 r = KVM_SYNC_X86_VALID_FIELDS;
4198 break;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004199 case KVM_CAP_ADJUST_CLOCK:
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00004200 r = KVM_CLOCK_VALID_FLAGS;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004201 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004202 case KVM_CAP_X86_DISABLE_EXITS:
Wanpeng Lib5170062019-05-21 14:06:53 +08004203 r |= KVM_X86_DISABLE_EXITS_HLT | KVM_X86_DISABLE_EXITS_PAUSE |
4204 KVM_X86_DISABLE_EXITS_CSTATE;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004205 if(kvm_can_mwait_in_guest())
4206 r |= KVM_X86_DISABLE_EXITS_MWAIT;
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02004207 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004208 case KVM_CAP_X86_SMM:
4209 /* SMBASE is usually relocated above 1M on modern chipsets,
4210 * and SMM handlers might indeed rely on 4G segment limits,
4211 * so do not report SMM to be available if real mode is
4212 * emulated via vm86 mode. Still, do not go to great lengths
4213 * to avoid userspace's usage of the feature, because it is a
4214 * fringe case that is not enabled except via specific settings
4215 * of the module parameters.
4216 */
Jason Baronb36464772021-01-14 22:27:56 -05004217 r = static_call(kvm_x86_has_emulated_msr)(kvm, MSR_IA32_SMBASE);
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004218 break;
Avi Kivity774ead32007-12-26 13:57:04 +02004219 case KVM_CAP_VAPIC:
Jason Baronb36464772021-01-14 22:27:56 -05004220 r = !static_call(kvm_x86_cpu_has_accelerated_tpr)();
Avi Kivity774ead32007-12-26 13:57:04 +02004221 break;
Avi Kivityf7252302008-02-20 11:53:16 +02004222 case KVM_CAP_NR_VCPUS:
Vitaly Kuznetsov2845e732021-11-16 17:34:43 +01004223 r = min_t(unsigned int, num_online_cpus(), KVM_MAX_VCPUS);
Sasha Levin8c3ba332011-07-18 17:17:15 +03004224 break;
4225 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02004226 r = KVM_MAX_VCPUS;
4227 break;
Thomas Hutha86cb412019-05-23 18:43:08 +02004228 case KVM_CAP_MAX_VCPU_ID:
Juergen Grossa1c42dd2021-09-13 15:57:44 +02004229 r = KVM_MAX_VCPU_IDS;
Thomas Hutha86cb412019-05-23 18:43:08 +02004230 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03004231 case KVM_CAP_PV_MMU: /* obsolete */
4232 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05004233 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08004234 case KVM_CAP_MCE:
4235 r = KVM_MAX_MCE_BANKS;
4236 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004237 case KVM_CAP_XCRS:
Borislav Petkovd366bf72016-04-04 22:25:02 +02004238 r = boot_cpu_has(X86_FEATURE_XSAVE);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004239 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01004240 case KVM_CAP_TSC_CONTROL:
4241 r = kvm_has_tsc_control;
4242 break;
Radim Krčmář371313132016-07-12 22:09:27 +02004243 case KVM_CAP_X2APIC_API:
4244 r = KVM_X2APIC_API_VALID_FLAGS;
4245 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004246 case KVM_CAP_NESTED_STATE:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004247 r = kvm_x86_ops.nested_ops->get_state ?
4248 kvm_x86_ops.nested_ops->get_state(NULL, NULL, 0) : 0;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004249 break;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004250 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004251 r = kvm_x86_ops.enable_direct_tlbflush != NULL;
Vitaly Kuznetsov5a0165f2019-08-28 09:59:05 +02004252 break;
4253 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004254 r = kvm_x86_ops.nested_ops->enable_evmcs != NULL;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004255 break;
Mohammed Gamal3edd6832020-07-10 17:48:11 +02004256 case KVM_CAP_SMALLER_MAXPHYADDR:
4257 r = (int) allow_smaller_maxphyaddr;
4258 break;
Andrew Jones004a0122020-08-04 19:06:04 +02004259 case KVM_CAP_STEAL_TIME:
4260 r = sched_info_on();
4261 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08004262 case KVM_CAP_X86_BUS_LOCK_EXIT:
4263 if (kvm_has_bus_lock_exit)
4264 r = KVM_BUS_LOCK_DETECTION_OFF |
4265 KVM_BUS_LOCK_DETECTION_EXIT;
4266 else
4267 r = 0;
4268 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004269 default:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004270 break;
4271 }
4272 return r;
4273
4274}
4275
Carsten Otte043405e2007-10-10 17:16:19 +02004276long kvm_arch_dev_ioctl(struct file *filp,
4277 unsigned int ioctl, unsigned long arg)
4278{
4279 void __user *argp = (void __user *)arg;
4280 long r;
4281
4282 switch (ioctl) {
4283 case KVM_GET_MSR_INDEX_LIST: {
4284 struct kvm_msr_list __user *user_msr_list = argp;
4285 struct kvm_msr_list msr_list;
4286 unsigned n;
4287
4288 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004289 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004290 goto out;
4291 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004292 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004293 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004294 goto out;
4295 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004296 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02004297 goto out;
4298 r = -EFAULT;
4299 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
4300 num_msrs_to_save * sizeof(u32)))
4301 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004302 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02004303 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004304 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02004305 goto out;
4306 r = 0;
4307 break;
4308 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004309 case KVM_GET_SUPPORTED_CPUID:
4310 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02004311 struct kvm_cpuid2 __user *cpuid_arg = argp;
4312 struct kvm_cpuid2 cpuid;
4313
4314 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004315 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004316 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004317
4318 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
4319 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02004320 if (r)
4321 goto out;
4322
4323 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004324 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004325 goto out;
4326 r = 0;
4327 break;
4328 }
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004329 case KVM_X86_GET_MCE_CAP_SUPPORTED:
Huang Ying890ca9a2009-05-11 16:48:15 +08004330 r = -EFAULT;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004331 if (copy_to_user(argp, &kvm_mce_cap_supported,
4332 sizeof(kvm_mce_cap_supported)))
Huang Ying890ca9a2009-05-11 16:48:15 +08004333 goto out;
4334 r = 0;
4335 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06004336 case KVM_GET_MSR_FEATURE_INDEX_LIST: {
4337 struct kvm_msr_list __user *user_msr_list = argp;
4338 struct kvm_msr_list msr_list;
4339 unsigned int n;
4340
4341 r = -EFAULT;
4342 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
4343 goto out;
4344 n = msr_list.nmsrs;
4345 msr_list.nmsrs = num_msr_based_features;
4346 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
4347 goto out;
4348 r = -E2BIG;
4349 if (n < msr_list.nmsrs)
4350 goto out;
4351 r = -EFAULT;
4352 if (copy_to_user(user_msr_list->indices, &msr_based_features,
4353 num_msr_based_features * sizeof(u32)))
4354 goto out;
4355 r = 0;
4356 break;
4357 }
4358 case KVM_GET_MSRS:
4359 r = msr_io(NULL, argp, do_get_msr_feature, 1);
4360 break;
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004361 case KVM_GET_SUPPORTED_HV_CPUID:
4362 r = kvm_ioctl_get_supported_hv_cpuid(NULL, argp);
4363 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004364 default:
4365 r = -EINVAL;
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004366 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004367 }
4368out:
4369 return r;
4370}
4371
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004372static void wbinvd_ipi(void *garbage)
4373{
4374 wbinvd();
4375}
4376
4377static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
4378{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06004379 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004380}
4381
Carsten Otte313a3dc2007-10-11 19:16:52 +02004382void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
4383{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004384 /* Address WBINVD may be executed by guest */
4385 if (need_emulate_wbinvd(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05004386 if (static_call(kvm_x86_has_wbinvd_exit)())
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004387 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
4388 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
4389 smp_call_function_single(vcpu->cpu,
4390 wbinvd_ipi, NULL, 1);
4391 }
4392
Jason Baronb36464772021-01-14 22:27:56 -05004393 static_call(kvm_x86_vcpu_load)(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004394
Babu Moger37486132020-05-12 18:59:06 -05004395 /* Save host pkru register if supported */
4396 vcpu->arch.host_pkru = read_pkru();
4397
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004398 /* Apply any externally detected TSC adjustments (due to suspend) */
4399 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
4400 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
4401 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08004402 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004403 }
4404
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004405 if (unlikely(vcpu->cpu != cpu) || kvm_check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02004406 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004407 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10004408 if (tsc_delta < 0)
4409 mark_tsc_unstable("KVM discovered backwards TSC");
Yunhong Jiangce7a0582016-06-13 14:20:01 -07004410
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004411 if (kvm_check_tsc_unstable()) {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01004412 u64 offset = kvm_compute_l1_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02004413 vcpu->arch.last_guest_tsc);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04004414 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004415 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10004416 }
Paolo Bonzinia749e242017-06-29 17:14:50 +02004417
4418 if (kvm_lapic_hv_timer_in_use(vcpu))
4419 kvm_lapic_restart_hv_timer(vcpu);
4420
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02004421 /*
4422 * On a host with synchronized TSC, there is no need to update
4423 * kvmclock on vcpu->cpu migration
4424 */
4425 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03004426 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004427 if (vcpu->cpu != cpu)
Radim Krčmář1bd20092017-04-26 22:32:20 +02004428 kvm_make_request(KVM_REQ_MIGRATE_TIMER, vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10004429 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10004430 }
Glauber Costac9aaa892011-07-11 15:28:14 -04004431
Glauber Costac9aaa892011-07-11 15:28:14 -04004432 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004433}
4434
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004435static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu)
4436{
David Woodhouse7e2175e2021-11-02 17:36:39 +00004437 struct gfn_to_hva_cache *ghc = &vcpu->arch.st.cache;
4438 struct kvm_steal_time __user *st;
4439 struct kvm_memslots *slots;
4440 static const u8 preempted = KVM_VCPU_PREEMPTED;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004441
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004442 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
4443 return;
4444
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00004445 if (vcpu->arch.st.preempted)
Boris Ostrovsky8c6de562019-10-30 19:01:31 +00004446 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004447
David Woodhouse7e2175e2021-11-02 17:36:39 +00004448 /* This happens on process exit */
4449 if (unlikely(current->mm != vcpu->kvm->mm))
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004450 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004451
David Woodhouse7e2175e2021-11-02 17:36:39 +00004452 slots = kvm_memslots(vcpu->kvm);
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004453
David Woodhouse7e2175e2021-11-02 17:36:39 +00004454 if (unlikely(slots->generation != ghc->generation ||
4455 kvm_is_error_hva(ghc->hva) || !ghc->memslot))
4456 return;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004457
David Woodhouse7e2175e2021-11-02 17:36:39 +00004458 st = (struct kvm_steal_time __user *)ghc->hva;
4459 BUILD_BUG_ON(sizeof(st->preempted) != sizeof(preempted));
4460
4461 if (!copy_to_user_nofault(&st->preempted, &preempted, sizeof(preempted)))
4462 vcpu->arch.st.preempted = KVM_VCPU_PREEMPTED;
4463
4464 mark_page_dirty_in_slot(vcpu->kvm, ghc->memslot, gpa_to_gfn(ghc->gpa));
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004465}
4466
Carsten Otte313a3dc2007-10-11 19:16:52 +02004467void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
4468{
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004469 int idx;
4470
Tom Lendackyf1c63662020-12-14 10:29:50 -05004471 if (vcpu->preempted && !vcpu->arch.guest_state_protected)
Jason Baronb36464772021-01-14 22:27:56 -05004472 vcpu->arch.preempted_in_kernel = !static_call(kvm_x86_get_cpl)(vcpu);
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004473
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004474 /*
4475 * Take the srcu lock as memslots will be accessed to check the gfn
4476 * cache generation against the memslots generation.
4477 */
4478 idx = srcu_read_lock(&vcpu->kvm->srcu);
David Woodhouse30b5c852021-03-01 12:53:09 +00004479 if (kvm_xen_msr_enabled(vcpu->kvm))
4480 kvm_xen_runstate_set_preempted(vcpu);
4481 else
4482 kvm_steal_time_set_preempted(vcpu);
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004483 srcu_read_unlock(&vcpu->kvm->srcu, idx);
David Woodhouse30b5c852021-03-01 12:53:09 +00004484
Jason Baronb36464772021-01-14 22:27:56 -05004485 static_call(kvm_x86_vcpu_put)(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004486 vcpu->arch.last_host_tsc = rdtsc();
Carsten Otte313a3dc2007-10-11 19:16:52 +02004487}
4488
Carsten Otte313a3dc2007-10-11 19:16:52 +02004489static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
4490 struct kvm_lapic_state *s)
4491{
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -05004492 static_call_cond(kvm_x86_sync_pir_to_irr)(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004493
Radim Krčmářa92e2542016-07-12 22:09:22 +02004494 return kvm_apic_get_state(vcpu, s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004495}
4496
4497static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
4498 struct kvm_lapic_state *s)
4499{
Radim Krčmářa92e2542016-07-12 22:09:22 +02004500 int r;
4501
4502 r = kvm_apic_set_state(vcpu, s);
4503 if (r)
4504 return r;
Gleb Natapovcb142eb2009-08-09 15:17:40 +03004505 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004506
4507 return 0;
4508}
4509
Matt Gingell127a4572015-11-17 17:32:05 +01004510static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
4511{
Paolo Bonzini71cc8492020-11-27 09:18:20 +01004512 /*
4513 * We can accept userspace's request for interrupt injection
4514 * as long as we have a place to store the interrupt number.
4515 * The actual injection will happen when the CPU is able to
4516 * deliver the interrupt.
4517 */
4518 if (kvm_cpu_has_extint(vcpu))
4519 return false;
4520
4521 /* Acknowledging ExtINT does not happen if LINT0 is masked. */
Matt Gingell127a4572015-11-17 17:32:05 +01004522 return (!lapic_in_kernel(vcpu) ||
4523 kvm_apic_accept_pic_intr(vcpu));
4524}
4525
Matt Gingell782d4222015-11-16 15:26:00 -08004526static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
4527{
Paolo Bonzinifa7a5492021-07-14 17:37:49 -04004528 /*
4529 * Do not cause an interrupt window exit if an exception
4530 * is pending or an event needs reinjection; userspace
4531 * might want to inject the interrupt manually using KVM_SET_REGS
4532 * or KVM_SET_SREGS. For that to work, we must be at an
4533 * instruction boundary and with no events half-injected.
4534 */
4535 return (kvm_arch_interrupt_allowed(vcpu) &&
4536 kvm_cpu_accept_dm_intr(vcpu) &&
4537 !kvm_event_needs_reinjection(vcpu) &&
4538 !vcpu->arch.exception.pending);
Matt Gingell782d4222015-11-16 15:26:00 -08004539}
4540
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004541static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
4542 struct kvm_interrupt *irq)
4543{
Chen Gang02cdb502013-02-27 11:33:25 +08004544 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004545 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004546
4547 if (!irqchip_in_kernel(vcpu->kvm)) {
4548 kvm_queue_interrupt(vcpu, irq->irq, false);
4549 kvm_make_request(KVM_REQ_EVENT, vcpu);
4550 return 0;
4551 }
4552
4553 /*
4554 * With in-kernel LAPIC, we only use this to inject EXTINT, so
4555 * fail for in-kernel 8259.
4556 */
4557 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004558 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004559
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004560 if (vcpu->arch.pending_external_vector != -1)
4561 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004562
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004563 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08004564 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004565 return 0;
4566}
4567
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004568static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
4569{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004570 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004571
4572 return 0;
4573}
4574
Paolo Bonzinif0778252015-04-01 15:06:40 +02004575static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
4576{
Paolo Bonzini64d60672015-05-07 11:36:11 +02004577 kvm_make_request(KVM_REQ_SMI, vcpu);
4578
Paolo Bonzinif0778252015-04-01 15:06:40 +02004579 return 0;
4580}
4581
Avi Kivityb209749f2007-10-22 16:50:39 +02004582static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
4583 struct kvm_tpr_access_ctl *tac)
4584{
4585 if (tac->flags)
4586 return -EINVAL;
4587 vcpu->arch.tpr_access_reporting = !!tac->enabled;
4588 return 0;
4589}
4590
Huang Ying890ca9a2009-05-11 16:48:15 +08004591static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
4592 u64 mcg_cap)
4593{
4594 int r;
4595 unsigned bank_num = mcg_cap & 0xff, bank;
4596
4597 r = -EINVAL;
Jim Mattsonc4e0e4ab2020-05-11 15:56:16 -07004598 if (!bank_num || bank_num > KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08004599 goto out;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004600 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
Huang Ying890ca9a2009-05-11 16:48:15 +08004601 goto out;
4602 r = 0;
4603 vcpu->arch.mcg_cap = mcg_cap;
4604 /* Init IA32_MCG_CTL to all 1s */
4605 if (mcg_cap & MCG_CTL_P)
4606 vcpu->arch.mcg_ctl = ~(u64)0;
4607 /* Init IA32_MCi_CTL to all 1s */
4608 for (bank = 0; bank < bank_num; bank++)
4609 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004610
Jason Baronb36464772021-01-14 22:27:56 -05004611 static_call(kvm_x86_setup_mce)(vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004612out:
4613 return r;
4614}
4615
4616static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
4617 struct kvm_x86_mce *mce)
4618{
4619 u64 mcg_cap = vcpu->arch.mcg_cap;
4620 unsigned bank_num = mcg_cap & 0xff;
4621 u64 *banks = vcpu->arch.mce_banks;
4622
4623 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
4624 return -EINVAL;
4625 /*
4626 * if IA32_MCG_CTL is not all 1s, the uncorrected error
4627 * reporting is disabled
4628 */
4629 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
4630 vcpu->arch.mcg_ctl != ~(u64)0)
4631 return 0;
4632 banks += 4 * mce->bank;
4633 /*
4634 * if IA32_MCi_CTL is not all 1s, the uncorrected error
4635 * reporting is disabled for the bank
4636 */
4637 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
4638 return 0;
4639 if (mce->status & MCI_STATUS_UC) {
4640 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02004641 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03004642 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004643 return 0;
4644 }
4645 if (banks[1] & MCI_STATUS_VAL)
4646 mce->status |= MCI_STATUS_OVER;
4647 banks[2] = mce->addr;
4648 banks[3] = mce->misc;
4649 vcpu->arch.mcg_status = mce->mcg_status;
4650 banks[1] = mce->status;
4651 kvm_queue_exception(vcpu, MC_VECTOR);
4652 } else if (!(banks[1] & MCI_STATUS_VAL)
4653 || !(banks[1] & MCI_STATUS_UC)) {
4654 if (banks[1] & MCI_STATUS_VAL)
4655 mce->status |= MCI_STATUS_OVER;
4656 banks[2] = mce->addr;
4657 banks[3] = mce->misc;
4658 banks[1] = mce->status;
4659 } else
4660 banks[1] |= MCI_STATUS_OVER;
4661 return 0;
4662}
4663
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004664static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
4665 struct kvm_vcpu_events *events)
4666{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004667 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004668
Jay Zhou1f7becf2021-01-18 16:47:20 +08004669 if (kvm_check_request(KVM_REQ_SMI, vcpu))
4670 process_smi(vcpu);
4671
Wanpeng Li664f8e22017-08-24 03:35:09 -07004672 /*
Oliver Uptona06230b2020-02-07 02:36:06 -08004673 * In guest mode, payload delivery should be deferred,
4674 * so that the L1 hypervisor can intercept #PF before
4675 * CR2 is modified (or intercept #DB before DR6 is
4676 * modified under nVMX). Unless the per-VM capability,
4677 * KVM_CAP_EXCEPTION_PAYLOAD, is set, we may not defer the delivery of
4678 * an exception payload and handle after a KVM_GET_VCPU_EVENTS. Since we
4679 * opportunistically defer the exception payload, deliver it if the
4680 * capability hasn't been requested before processing a
4681 * KVM_GET_VCPU_EVENTS.
4682 */
4683 if (!vcpu->kvm->arch.exception_payload_enabled &&
4684 vcpu->arch.exception.pending && vcpu->arch.exception.has_payload)
4685 kvm_deliver_exception_payload(vcpu);
4686
4687 /*
Jim Mattson59073aa2018-10-16 14:29:20 -07004688 * The API doesn't provide the instruction length for software
4689 * exceptions, so don't report them. As long as the guest RIP
4690 * isn't advanced, we should expect to encounter the exception
4691 * again.
Wanpeng Li664f8e22017-08-24 03:35:09 -07004692 */
Jim Mattson59073aa2018-10-16 14:29:20 -07004693 if (kvm_exception_is_soft(vcpu->arch.exception.nr)) {
4694 events->exception.injected = 0;
4695 events->exception.pending = 0;
4696 } else {
4697 events->exception.injected = vcpu->arch.exception.injected;
4698 events->exception.pending = vcpu->arch.exception.pending;
4699 /*
4700 * For ABI compatibility, deliberately conflate
4701 * pending and injected exceptions when
4702 * KVM_CAP_EXCEPTION_PAYLOAD isn't enabled.
4703 */
4704 if (!vcpu->kvm->arch.exception_payload_enabled)
4705 events->exception.injected |=
4706 vcpu->arch.exception.pending;
4707 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004708 events->exception.nr = vcpu->arch.exception.nr;
4709 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
4710 events->exception.error_code = vcpu->arch.exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004711 events->exception_has_payload = vcpu->arch.exception.has_payload;
4712 events->exception_payload = vcpu->arch.exception.payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004713
Jan Kiszka03b82a32010-02-15 10:45:41 +01004714 events->interrupt.injected =
Liran Alon04140b42018-03-23 03:01:31 +03004715 vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004716 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01004717 events->interrupt.soft = 0;
Jason Baronb36464772021-01-14 22:27:56 -05004718 events->interrupt.shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004719
4720 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004721 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jason Baronb36464772021-01-14 22:27:56 -05004722 events->nmi.masked = static_call(kvm_x86_get_nmi_mask)(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004723 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004724
Jan Kiszka66450a22013-03-13 12:42:34 +01004725 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004726
Paolo Bonzinif0778252015-04-01 15:06:40 +02004727 events->smi.smm = is_smm(vcpu);
4728 events->smi.pending = vcpu->arch.smi_pending;
4729 events->smi.smm_inside_nmi =
4730 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
4731 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
4732
Jan Kiszkadab4b912009-12-06 18:24:15 +01004733 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02004734 | KVM_VCPUEVENT_VALID_SHADOW
4735 | KVM_VCPUEVENT_VALID_SMM);
Jim Mattson59073aa2018-10-16 14:29:20 -07004736 if (vcpu->kvm->arch.exception_payload_enabled)
4737 events->flags |= KVM_VCPUEVENT_VALID_PAYLOAD;
4738
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004739 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004740}
4741
Sean Christophersondc872752021-06-09 11:56:15 -07004742static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004743
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004744static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
4745 struct kvm_vcpu_events *events)
4746{
Jan Kiszkadab4b912009-12-06 18:24:15 +01004747 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01004748 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02004749 | KVM_VCPUEVENT_VALID_SHADOW
Jim Mattson59073aa2018-10-16 14:29:20 -07004750 | KVM_VCPUEVENT_VALID_SMM
4751 | KVM_VCPUEVENT_VALID_PAYLOAD))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004752 return -EINVAL;
4753
Jim Mattson59073aa2018-10-16 14:29:20 -07004754 if (events->flags & KVM_VCPUEVENT_VALID_PAYLOAD) {
4755 if (!vcpu->kvm->arch.exception_payload_enabled)
4756 return -EINVAL;
4757 if (events->exception.pending)
4758 events->exception.injected = 0;
4759 else
4760 events->exception_has_payload = 0;
4761 } else {
4762 events->exception.pending = 0;
4763 events->exception_has_payload = 0;
4764 }
4765
4766 if ((events->exception.injected || events->exception.pending) &&
4767 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR))
Paolo Bonzini78e546c2016-06-01 14:09:20 +02004768 return -EINVAL;
4769
David Hildenbrand28bf2882017-03-23 11:46:03 +01004770 /* INITs are latched while in SMM */
4771 if (events->flags & KVM_VCPUEVENT_VALID_SMM &&
4772 (events->smi.smm || events->smi.pending) &&
4773 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED)
4774 return -EINVAL;
4775
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004776 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004777 vcpu->arch.exception.injected = events->exception.injected;
4778 vcpu->arch.exception.pending = events->exception.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004779 vcpu->arch.exception.nr = events->exception.nr;
4780 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
4781 vcpu->arch.exception.error_code = events->exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004782 vcpu->arch.exception.has_payload = events->exception_has_payload;
4783 vcpu->arch.exception.payload = events->exception_payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004784
Liran Alon04140b42018-03-23 03:01:31 +03004785 vcpu->arch.interrupt.injected = events->interrupt.injected;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004786 vcpu->arch.interrupt.nr = events->interrupt.nr;
4787 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01004788 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
Jason Baronb36464772021-01-14 22:27:56 -05004789 static_call(kvm_x86_set_interrupt_shadow)(vcpu,
4790 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004791
4792 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01004793 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
4794 vcpu->arch.nmi_pending = events->nmi.pending;
Jason Baronb36464772021-01-14 22:27:56 -05004795 static_call(kvm_x86_set_nmi_mask)(vcpu, events->nmi.masked);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004796
Jan Kiszka66450a22013-03-13 12:42:34 +01004797 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004798 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01004799 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004800
Paolo Bonzinif0778252015-04-01 15:06:40 +02004801 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
Sean Christophersondc872752021-06-09 11:56:15 -07004802 if (!!(vcpu->arch.hflags & HF_SMM_MASK) != events->smi.smm)
4803 kvm_smm_changed(vcpu, events->smi.smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004804
Paolo Bonzinif0778252015-04-01 15:06:40 +02004805 vcpu->arch.smi_pending = events->smi.pending;
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004806
4807 if (events->smi.smm) {
4808 if (events->smi.smm_inside_nmi)
4809 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinif0778252015-04-01 15:06:40 +02004810 else
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004811 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Liran Alonff90afa2019-11-11 11:16:39 +02004812 }
4813
4814 if (lapic_in_kernel(vcpu)) {
4815 if (events->smi.latched_init)
4816 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
4817 else
4818 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
Paolo Bonzinif0778252015-04-01 15:06:40 +02004819 }
4820 }
4821
Avi Kivity3842d132010-07-27 12:30:24 +03004822 kvm_make_request(KVM_REQ_EVENT, vcpu);
4823
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004824 return 0;
4825}
4826
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004827static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
4828 struct kvm_debugregs *dbgregs)
4829{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004830 unsigned long val;
4831
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004832 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004833 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004834 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004835 dbgregs->dr7 = vcpu->arch.dr7;
4836 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004837 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004838}
4839
4840static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
4841 struct kvm_debugregs *dbgregs)
4842{
4843 if (dbgregs->flags)
4844 return -EINVAL;
4845
Paolo Bonzinifd238002020-11-13 08:31:09 -05004846 if (!kvm_dr6_valid(dbgregs->dr6))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004847 return -EINVAL;
Paolo Bonzinifd238002020-11-13 08:31:09 -05004848 if (!kvm_dr7_valid(dbgregs->dr7))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004849 return -EINVAL;
4850
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004851 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03004852 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004853 vcpu->arch.dr6 = dbgregs->dr6;
4854 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01004855 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004856
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004857 return 0;
4858}
4859
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004860static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
4861 struct kvm_xsave *guest_xsave)
4862{
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02004863 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
Tom Lendackyed02b212020-12-10 11:10:01 -06004864 return;
4865
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02004866 fpu_copy_guest_fpstate_to_uabi(&vcpu->arch.guest_fpu,
4867 guest_xsave->region,
4868 sizeof(guest_xsave->region),
4869 vcpu->arch.pkru);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004870}
4871
4872static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
4873 struct kvm_xsave *guest_xsave)
4874{
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02004875 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
Tom Lendackyed02b212020-12-10 11:10:01 -06004876 return 0;
4877
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02004878 return fpu_copy_uabi_to_guest_fpstate(&vcpu->arch.guest_fpu,
4879 guest_xsave->region,
4880 supported_xcr0, &vcpu->arch.pkru);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004881}
4882
4883static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
4884 struct kvm_xcrs *guest_xcrs)
4885{
Borislav Petkovd366bf72016-04-04 22:25:02 +02004886 if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004887 guest_xcrs->nr_xcrs = 0;
4888 return;
4889 }
4890
4891 guest_xcrs->nr_xcrs = 1;
4892 guest_xcrs->flags = 0;
4893 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
4894 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
4895}
4896
4897static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
4898 struct kvm_xcrs *guest_xcrs)
4899{
4900 int i, r = 0;
4901
Borislav Petkovd366bf72016-04-04 22:25:02 +02004902 if (!boot_cpu_has(X86_FEATURE_XSAVE))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004903 return -EINVAL;
4904
4905 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
4906 return -EINVAL;
4907
4908 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
4909 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004910 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004911 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004912 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004913 break;
4914 }
4915 if (r)
4916 r = -EINVAL;
4917 return r;
4918}
4919
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004920/*
4921 * kvm_set_guest_paused() indicates to the guest kernel that it has been
4922 * stopped by the hypervisor. This function will be called from the host only.
4923 * EINVAL is returned when the host attempts to set the flag for a guest that
4924 * does not support pv clocks.
4925 */
4926static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
4927{
Andy Honig0b794592013-02-20 14:48:10 -08004928 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004929 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03004930 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004931 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
4932 return 0;
4933}
4934
Oliver Upton828ca892021-09-16 18:15:38 +00004935static int kvm_arch_tsc_has_attr(struct kvm_vcpu *vcpu,
4936 struct kvm_device_attr *attr)
4937{
4938 int r;
4939
4940 switch (attr->attr) {
4941 case KVM_VCPU_TSC_OFFSET:
4942 r = 0;
4943 break;
4944 default:
4945 r = -ENXIO;
4946 }
4947
4948 return r;
4949}
4950
4951static int kvm_arch_tsc_get_attr(struct kvm_vcpu *vcpu,
4952 struct kvm_device_attr *attr)
4953{
4954 u64 __user *uaddr = (u64 __user *)(unsigned long)attr->addr;
4955 int r;
4956
4957 if ((u64)(unsigned long)uaddr != attr->addr)
4958 return -EFAULT;
4959
4960 switch (attr->attr) {
4961 case KVM_VCPU_TSC_OFFSET:
4962 r = -EFAULT;
4963 if (put_user(vcpu->arch.l1_tsc_offset, uaddr))
4964 break;
4965 r = 0;
4966 break;
4967 default:
4968 r = -ENXIO;
4969 }
4970
4971 return r;
4972}
4973
4974static int kvm_arch_tsc_set_attr(struct kvm_vcpu *vcpu,
4975 struct kvm_device_attr *attr)
4976{
4977 u64 __user *uaddr = (u64 __user *)(unsigned long)attr->addr;
4978 struct kvm *kvm = vcpu->kvm;
4979 int r;
4980
4981 if ((u64)(unsigned long)uaddr != attr->addr)
4982 return -EFAULT;
4983
4984 switch (attr->attr) {
4985 case KVM_VCPU_TSC_OFFSET: {
4986 u64 offset, tsc, ns;
4987 unsigned long flags;
4988 bool matched;
4989
4990 r = -EFAULT;
4991 if (get_user(offset, uaddr))
4992 break;
4993
4994 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
4995
4996 matched = (vcpu->arch.virtual_tsc_khz &&
4997 kvm->arch.last_tsc_khz == vcpu->arch.virtual_tsc_khz &&
4998 kvm->arch.last_tsc_offset == offset);
4999
5000 tsc = kvm_scale_tsc(vcpu, rdtsc(), vcpu->arch.l1_tsc_scaling_ratio) + offset;
5001 ns = get_kvmclock_base_ns();
5002
5003 __kvm_synchronize_tsc(vcpu, offset, tsc, ns, matched);
5004 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
5005
5006 r = 0;
5007 break;
5008 }
5009 default:
5010 r = -ENXIO;
5011 }
5012
5013 return r;
5014}
5015
5016static int kvm_vcpu_ioctl_device_attr(struct kvm_vcpu *vcpu,
5017 unsigned int ioctl,
5018 void __user *argp)
5019{
5020 struct kvm_device_attr attr;
5021 int r;
5022
5023 if (copy_from_user(&attr, argp, sizeof(attr)))
5024 return -EFAULT;
5025
5026 if (attr.group != KVM_VCPU_TSC_CTRL)
5027 return -ENXIO;
5028
5029 switch (ioctl) {
5030 case KVM_HAS_DEVICE_ATTR:
5031 r = kvm_arch_tsc_has_attr(vcpu, &attr);
5032 break;
5033 case KVM_GET_DEVICE_ATTR:
5034 r = kvm_arch_tsc_get_attr(vcpu, &attr);
5035 break;
5036 case KVM_SET_DEVICE_ATTR:
5037 r = kvm_arch_tsc_set_attr(vcpu, &attr);
5038 break;
5039 }
5040
5041 return r;
5042}
5043
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005044static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
5045 struct kvm_enable_cap *cap)
5046{
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005047 int r;
5048 uint16_t vmcs_version;
5049 void __user *user_ptr;
5050
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005051 if (cap->flags)
5052 return -EINVAL;
5053
5054 switch (cap->cap) {
Roman Kaganefc479e2017-06-22 16:51:01 +03005055 case KVM_CAP_HYPERV_SYNIC2:
5056 if (cap->args[0])
5057 return -EINVAL;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05005058 fallthrough;
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06005059
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005060 case KVM_CAP_HYPERV_SYNIC:
Wanpeng Li546d87e2017-01-03 18:56:19 -08005061 if (!irqchip_in_kernel(vcpu->kvm))
5062 return -EINVAL;
Roman Kaganefc479e2017-06-22 16:51:01 +03005063 return kvm_hv_activate_synic(vcpu, cap->cap ==
5064 KVM_CAP_HYPERV_SYNIC2);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005065 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04005066 if (!kvm_x86_ops.nested_ops->enable_evmcs)
Sean Christopherson51589172018-12-03 13:53:10 -08005067 return -ENOTTY;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005068 r = kvm_x86_ops.nested_ops->enable_evmcs(vcpu, &vmcs_version);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005069 if (!r) {
5070 user_ptr = (void __user *)(uintptr_t)cap->args[0];
5071 if (copy_to_user(user_ptr, &vmcs_version,
5072 sizeof(vmcs_version)))
5073 r = -EFAULT;
5074 }
5075 return r;
Tianyu Lan344c6c82019-08-22 22:30:20 +08005076 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005077 if (!kvm_x86_ops.enable_direct_tlbflush)
Tianyu Lan344c6c82019-08-22 22:30:20 +08005078 return -ENOTTY;
5079
Jason Baronb36464772021-01-14 22:27:56 -05005080 return static_call(kvm_x86_enable_direct_tlbflush)(vcpu);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005081
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02005082 case KVM_CAP_HYPERV_ENFORCE_CPUID:
5083 return kvm_hv_set_enforce_cpuid(vcpu, cap->args[0]);
5084
Oliver Upton66570e92020-08-18 15:24:28 +00005085 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
5086 vcpu->arch.pv_cpuid.enforce = cap->args[0];
Oliver Upton01b4f512020-10-27 16:10:42 -07005087 if (vcpu->arch.pv_cpuid.enforce)
5088 kvm_update_pv_runtime(vcpu);
Oliver Upton66570e92020-08-18 15:24:28 +00005089
5090 return 0;
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005091 default:
5092 return -EINVAL;
5093 }
5094}
5095
Carsten Otte313a3dc2007-10-11 19:16:52 +02005096long kvm_arch_vcpu_ioctl(struct file *filp,
5097 unsigned int ioctl, unsigned long arg)
5098{
5099 struct kvm_vcpu *vcpu = filp->private_data;
5100 void __user *argp = (void __user *)arg;
5101 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005102 union {
Maxim Levitsky6dba9402021-06-07 12:02:02 +03005103 struct kvm_sregs2 *sregs2;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005104 struct kvm_lapic_state *lapic;
5105 struct kvm_xsave *xsave;
5106 struct kvm_xcrs *xcrs;
5107 void *buffer;
5108 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02005109
Christoffer Dall9b0624712017-12-04 21:35:36 +01005110 vcpu_load(vcpu);
5111
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005112 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02005113 switch (ioctl) {
5114 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005115 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01005116 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005117 goto out;
Ben Gardon254272c2019-02-11 11:02:50 -08005118 u.lapic = kzalloc(sizeof(struct kvm_lapic_state),
5119 GFP_KERNEL_ACCOUNT);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005120
Dave Hansenb772ff32008-08-11 10:01:47 -07005121 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005122 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07005123 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005124 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005125 if (r)
5126 goto out;
5127 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005128 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02005129 goto out;
5130 r = 0;
5131 break;
5132 }
5133 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005134 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01005135 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005136 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02005137 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005138 if (IS_ERR(u.lapic)) {
5139 r = PTR_ERR(u.lapic);
5140 goto out_nofree;
5141 }
Sasha Levinff5c2c02011-12-04 19:36:29 +02005142
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005143 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005144 break;
5145 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005146 case KVM_INTERRUPT: {
5147 struct kvm_interrupt irq;
5148
5149 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005150 if (copy_from_user(&irq, argp, sizeof(irq)))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005151 goto out;
5152 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005153 break;
5154 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02005155 case KVM_NMI: {
5156 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02005157 break;
5158 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02005159 case KVM_SMI: {
5160 r = kvm_vcpu_ioctl_smi(vcpu);
5161 break;
5162 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02005163 case KVM_SET_CPUID: {
5164 struct kvm_cpuid __user *cpuid_arg = argp;
5165 struct kvm_cpuid cpuid;
5166
Vitaly Kuznetsovfeb627e2021-11-22 18:58:18 +01005167 /*
5168 * KVM does not correctly handle changing guest CPUID after KVM_RUN, as
5169 * MAXPHYADDR, GBPAGES support, AMD reserved bit behavior, etc.. aren't
5170 * tracked in kvm_mmu_page_role. As a result, KVM may miss guest page
5171 * faults due to reusing SPs/SPTEs. In practice no sane VMM mucks with
5172 * the core vCPU model on the fly, so fail.
5173 */
5174 r = -EINVAL;
5175 if (vcpu->arch.last_vmentry_cpu != -1)
5176 goto out;
5177
Carsten Otte313a3dc2007-10-11 19:16:52 +02005178 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005179 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02005180 goto out;
5181 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005182 break;
5183 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02005184 case KVM_SET_CPUID2: {
5185 struct kvm_cpuid2 __user *cpuid_arg = argp;
5186 struct kvm_cpuid2 cpuid;
5187
Vitaly Kuznetsovfeb627e2021-11-22 18:58:18 +01005188 /*
5189 * KVM_SET_CPUID{,2} after KVM_RUN is forbidded, see the comment in
5190 * KVM_SET_CPUID case above.
5191 */
5192 r = -EINVAL;
5193 if (vcpu->arch.last_vmentry_cpu != -1)
5194 goto out;
5195
Dan Kenigsberg07716712007-11-21 17:10:04 +02005196 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005197 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005198 goto out;
5199 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00005200 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02005201 break;
5202 }
5203 case KVM_GET_CPUID2: {
5204 struct kvm_cpuid2 __user *cpuid_arg = argp;
5205 struct kvm_cpuid2 cpuid;
5206
5207 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005208 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005209 goto out;
5210 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00005211 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02005212 if (r)
5213 goto out;
5214 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005215 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005216 goto out;
5217 r = 0;
5218 break;
5219 }
Tom Lendacky801e4592018-02-21 13:39:51 -06005220 case KVM_GET_MSRS: {
5221 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005222 r = msr_io(vcpu, argp, do_get_msr, 1);
Tom Lendacky801e4592018-02-21 13:39:51 -06005223 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005224 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06005225 }
5226 case KVM_SET_MSRS: {
5227 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005228 r = msr_io(vcpu, argp, do_set_msr, 0);
Tom Lendacky801e4592018-02-21 13:39:51 -06005229 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005230 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06005231 }
Avi Kivityb209749f2007-10-22 16:50:39 +02005232 case KVM_TPR_ACCESS_REPORTING: {
5233 struct kvm_tpr_access_ctl tac;
5234
5235 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005236 if (copy_from_user(&tac, argp, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02005237 goto out;
5238 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
5239 if (r)
5240 goto out;
5241 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005242 if (copy_to_user(argp, &tac, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02005243 goto out;
5244 r = 0;
5245 break;
5246 };
Avi Kivityb93463a2007-10-25 16:52:32 +02005247 case KVM_SET_VAPIC_ADDR: {
5248 struct kvm_vapic_addr va;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005249 int idx;
Avi Kivityb93463a2007-10-25 16:52:32 +02005250
5251 r = -EINVAL;
Paolo Bonzini35754c92015-07-29 12:05:37 +02005252 if (!lapic_in_kernel(vcpu))
Avi Kivityb93463a2007-10-25 16:52:32 +02005253 goto out;
5254 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005255 if (copy_from_user(&va, argp, sizeof(va)))
Avi Kivityb93463a2007-10-25 16:52:32 +02005256 goto out;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005257 idx = srcu_read_lock(&vcpu->kvm->srcu);
Andy Honigfda4e2e2013-11-20 10:23:22 -08005258 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005259 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivityb93463a2007-10-25 16:52:32 +02005260 break;
5261 }
Huang Ying890ca9a2009-05-11 16:48:15 +08005262 case KVM_X86_SETUP_MCE: {
5263 u64 mcg_cap;
5264
5265 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005266 if (copy_from_user(&mcg_cap, argp, sizeof(mcg_cap)))
Huang Ying890ca9a2009-05-11 16:48:15 +08005267 goto out;
5268 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
5269 break;
5270 }
5271 case KVM_X86_SET_MCE: {
5272 struct kvm_x86_mce mce;
5273
5274 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005275 if (copy_from_user(&mce, argp, sizeof(mce)))
Huang Ying890ca9a2009-05-11 16:48:15 +08005276 goto out;
5277 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
5278 break;
5279 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005280 case KVM_GET_VCPU_EVENTS: {
5281 struct kvm_vcpu_events events;
5282
5283 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
5284
5285 r = -EFAULT;
5286 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
5287 break;
5288 r = 0;
5289 break;
5290 }
5291 case KVM_SET_VCPU_EVENTS: {
5292 struct kvm_vcpu_events events;
5293
5294 r = -EFAULT;
5295 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
5296 break;
5297
5298 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
5299 break;
5300 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01005301 case KVM_GET_DEBUGREGS: {
5302 struct kvm_debugregs dbgregs;
5303
5304 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
5305
5306 r = -EFAULT;
5307 if (copy_to_user(argp, &dbgregs,
5308 sizeof(struct kvm_debugregs)))
5309 break;
5310 r = 0;
5311 break;
5312 }
5313 case KVM_SET_DEBUGREGS: {
5314 struct kvm_debugregs dbgregs;
5315
5316 r = -EFAULT;
5317 if (copy_from_user(&dbgregs, argp,
5318 sizeof(struct kvm_debugregs)))
5319 break;
5320
5321 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
5322 break;
5323 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005324 case KVM_GET_XSAVE: {
Ben Gardon254272c2019-02-11 11:02:50 -08005325 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005326 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005327 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005328 break;
5329
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005330 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005331
5332 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005333 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005334 break;
5335 r = 0;
5336 break;
5337 }
5338 case KVM_SET_XSAVE: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02005339 u.xsave = memdup_user(argp, sizeof(*u.xsave));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005340 if (IS_ERR(u.xsave)) {
5341 r = PTR_ERR(u.xsave);
5342 goto out_nofree;
5343 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005344
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005345 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005346 break;
5347 }
5348 case KVM_GET_XCRS: {
Ben Gardon254272c2019-02-11 11:02:50 -08005349 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005350 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005351 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005352 break;
5353
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005354 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005355
5356 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005357 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005358 sizeof(struct kvm_xcrs)))
5359 break;
5360 r = 0;
5361 break;
5362 }
5363 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02005364 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005365 if (IS_ERR(u.xcrs)) {
5366 r = PTR_ERR(u.xcrs);
5367 goto out_nofree;
5368 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005369
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005370 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005371 break;
5372 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01005373 case KVM_SET_TSC_KHZ: {
5374 u32 user_tsc_khz;
5375
5376 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005377 user_tsc_khz = (u32)arg;
5378
Marcelo Tosatti26769f92020-06-16 08:47:41 -03005379 if (kvm_has_tsc_control &&
5380 user_tsc_khz >= kvm_max_guest_tsc_khz)
Joerg Roedel92a1f122011-03-25 09:44:51 +01005381 goto out;
5382
Zachary Amsdencc578282012-02-03 15:43:50 -02005383 if (user_tsc_khz == 0)
5384 user_tsc_khz = tsc_khz;
5385
Haozhong Zhang381d5852015-10-20 15:39:04 +08005386 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
5387 r = 0;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005388
Joerg Roedel92a1f122011-03-25 09:44:51 +01005389 goto out;
5390 }
5391 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02005392 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005393 goto out;
5394 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05005395 case KVM_KVMCLOCK_CTRL: {
5396 r = kvm_set_guest_paused(vcpu);
5397 goto out;
5398 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005399 case KVM_ENABLE_CAP: {
5400 struct kvm_enable_cap cap;
5401
5402 r = -EFAULT;
5403 if (copy_from_user(&cap, argp, sizeof(cap)))
5404 goto out;
5405 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
5406 break;
5407 }
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005408 case KVM_GET_NESTED_STATE: {
5409 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5410 u32 user_data_size;
5411
5412 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005413 if (!kvm_x86_ops.nested_ops->get_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005414 break;
5415
5416 BUILD_BUG_ON(sizeof(user_data_size) != sizeof(user_kvm_nested_state->size));
Liran Alon26b471c2018-09-16 14:28:20 +03005417 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005418 if (get_user(user_data_size, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03005419 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005420
Paolo Bonzini33b22172020-04-17 10:24:18 -04005421 r = kvm_x86_ops.nested_ops->get_state(vcpu, user_kvm_nested_state,
5422 user_data_size);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005423 if (r < 0)
Liran Alon26b471c2018-09-16 14:28:20 +03005424 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005425
5426 if (r > user_data_size) {
5427 if (put_user(r, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03005428 r = -EFAULT;
5429 else
5430 r = -E2BIG;
5431 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005432 }
Liran Alon26b471c2018-09-16 14:28:20 +03005433
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005434 r = 0;
5435 break;
5436 }
5437 case KVM_SET_NESTED_STATE: {
5438 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5439 struct kvm_nested_state kvm_state;
Sean Christophersonad5996d2019-11-22 08:58:18 -08005440 int idx;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005441
5442 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005443 if (!kvm_x86_ops.nested_ops->set_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005444 break;
5445
Liran Alon26b471c2018-09-16 14:28:20 +03005446 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005447 if (copy_from_user(&kvm_state, user_kvm_nested_state, sizeof(kvm_state)))
Liran Alon26b471c2018-09-16 14:28:20 +03005448 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005449
Liran Alon26b471c2018-09-16 14:28:20 +03005450 r = -EINVAL;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005451 if (kvm_state.size < sizeof(kvm_state))
Liran Alon26b471c2018-09-16 14:28:20 +03005452 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005453
5454 if (kvm_state.flags &
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02005455 ~(KVM_STATE_NESTED_RUN_PENDING | KVM_STATE_NESTED_GUEST_MODE
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04005456 | KVM_STATE_NESTED_EVMCS | KVM_STATE_NESTED_MTF_PENDING
5457 | KVM_STATE_NESTED_GIF_SET))
Liran Alon26b471c2018-09-16 14:28:20 +03005458 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005459
5460 /* nested_run_pending implies guest_mode. */
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02005461 if ((kvm_state.flags & KVM_STATE_NESTED_RUN_PENDING)
5462 && !(kvm_state.flags & KVM_STATE_NESTED_GUEST_MODE))
Liran Alon26b471c2018-09-16 14:28:20 +03005463 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005464
Sean Christophersonad5996d2019-11-22 08:58:18 -08005465 idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini33b22172020-04-17 10:24:18 -04005466 r = kvm_x86_ops.nested_ops->set_state(vcpu, user_kvm_nested_state, &kvm_state);
Sean Christophersonad5996d2019-11-22 08:58:18 -08005467 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005468 break;
5469 }
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02005470 case KVM_GET_SUPPORTED_HV_CPUID:
5471 r = kvm_ioctl_get_supported_hv_cpuid(vcpu, argp);
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01005472 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05005473#ifdef CONFIG_KVM_XEN
David Woodhouse3e324612021-02-02 16:53:25 +00005474 case KVM_XEN_VCPU_GET_ATTR: {
5475 struct kvm_xen_vcpu_attr xva;
5476
5477 r = -EFAULT;
5478 if (copy_from_user(&xva, argp, sizeof(xva)))
5479 goto out;
5480 r = kvm_xen_vcpu_get_attr(vcpu, &xva);
5481 if (!r && copy_to_user(argp, &xva, sizeof(xva)))
5482 r = -EFAULT;
5483 break;
5484 }
5485 case KVM_XEN_VCPU_SET_ATTR: {
5486 struct kvm_xen_vcpu_attr xva;
5487
5488 r = -EFAULT;
5489 if (copy_from_user(&xva, argp, sizeof(xva)))
5490 goto out;
5491 r = kvm_xen_vcpu_set_attr(vcpu, &xva);
5492 break;
5493 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05005494#endif
Maxim Levitsky6dba9402021-06-07 12:02:02 +03005495 case KVM_GET_SREGS2: {
5496 u.sregs2 = kzalloc(sizeof(struct kvm_sregs2), GFP_KERNEL);
5497 r = -ENOMEM;
5498 if (!u.sregs2)
5499 goto out;
5500 __get_sregs2(vcpu, u.sregs2);
5501 r = -EFAULT;
5502 if (copy_to_user(argp, u.sregs2, sizeof(struct kvm_sregs2)))
5503 goto out;
5504 r = 0;
5505 break;
5506 }
5507 case KVM_SET_SREGS2: {
5508 u.sregs2 = memdup_user(argp, sizeof(struct kvm_sregs2));
5509 if (IS_ERR(u.sregs2)) {
5510 r = PTR_ERR(u.sregs2);
5511 u.sregs2 = NULL;
5512 goto out;
5513 }
5514 r = __set_sregs2(vcpu, u.sregs2);
5515 break;
5516 }
Oliver Upton828ca892021-09-16 18:15:38 +00005517 case KVM_HAS_DEVICE_ATTR:
5518 case KVM_GET_DEVICE_ATTR:
5519 case KVM_SET_DEVICE_ATTR:
5520 r = kvm_vcpu_ioctl_device_attr(vcpu, ioctl, argp);
5521 break;
Carsten Otte313a3dc2007-10-11 19:16:52 +02005522 default:
5523 r = -EINVAL;
5524 }
5525out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005526 kfree(u.buffer);
Christoffer Dall9b0624712017-12-04 21:35:36 +01005527out_nofree:
5528 vcpu_put(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005529 return r;
5530}
5531
Souptick Joarder1499fa82018-04-19 00:49:58 +05305532vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
Carsten Otte5b1c1492012-01-04 10:25:23 +01005533{
5534 return VM_FAULT_SIGBUS;
5535}
5536
Carsten Otte1fe779f2007-10-29 16:08:35 +01005537static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
5538{
5539 int ret;
5540
5541 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08005542 return -EINVAL;
Jason Baronb36464772021-01-14 22:27:56 -05005543 ret = static_call(kvm_x86_set_tss_addr)(kvm, addr);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005544 return ret;
5545}
5546
Sheng Yangb927a3c2009-07-21 10:42:48 +08005547static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
5548 u64 ident_addr)
5549{
Jason Baronb36464772021-01-14 22:27:56 -05005550 return static_call(kvm_x86_set_identity_map_addr)(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08005551}
5552
Carsten Otte1fe779f2007-10-29 16:08:35 +01005553static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
Ben Gardonbc8a3d82019-04-08 11:07:30 -07005554 unsigned long kvm_nr_mmu_pages)
Carsten Otte1fe779f2007-10-29 16:08:35 +01005555{
5556 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
5557 return -EINVAL;
5558
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005559 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005560
5561 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08005562 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005563
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005564 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005565 return 0;
5566}
5567
Ben Gardonbc8a3d82019-04-08 11:07:30 -07005568static unsigned long kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
Carsten Otte1fe779f2007-10-29 16:08:35 +01005569{
Dave Hansen39de71e2010-08-19 18:11:14 -07005570 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005571}
5572
Carsten Otte1fe779f2007-10-29 16:08:35 +01005573static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5574{
David Hildenbrand90bca052017-04-07 10:50:23 +02005575 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005576 int r;
5577
5578 r = 0;
5579 switch (chip->chip_id) {
5580 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02005581 memcpy(&chip->chip.pic, &pic->pics[0],
Carsten Otte1fe779f2007-10-29 16:08:35 +01005582 sizeof(struct kvm_pic_state));
5583 break;
5584 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02005585 memcpy(&chip->chip.pic, &pic->pics[1],
Carsten Otte1fe779f2007-10-29 16:08:35 +01005586 sizeof(struct kvm_pic_state));
5587 break;
5588 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02005589 kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005590 break;
5591 default:
5592 r = -EINVAL;
5593 break;
5594 }
5595 return r;
5596}
5597
5598static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5599{
David Hildenbrand90bca052017-04-07 10:50:23 +02005600 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005601 int r;
5602
5603 r = 0;
5604 switch (chip->chip_id) {
5605 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02005606 spin_lock(&pic->lock);
5607 memcpy(&pic->pics[0], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01005608 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02005609 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005610 break;
5611 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02005612 spin_lock(&pic->lock);
5613 memcpy(&pic->pics[1], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01005614 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02005615 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005616 break;
5617 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02005618 kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005619 break;
5620 default:
5621 r = -EINVAL;
5622 break;
5623 }
David Hildenbrand90bca052017-04-07 10:50:23 +02005624 kvm_pic_update_irq(pic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005625 return r;
5626}
5627
Sheng Yange0f63cb2008-03-04 00:50:59 +08005628static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5629{
Radim Krčmář34f39412016-03-02 22:56:50 +01005630 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state;
5631
5632 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
5633
5634 mutex_lock(&kps->lock);
5635 memcpy(ps, &kps->channels, sizeof(*ps));
5636 mutex_unlock(&kps->lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305637 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08005638}
5639
5640static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5641{
Andrew Honig01856042015-11-18 14:50:23 -08005642 int i;
Radim Krčmář09edea72016-03-02 22:56:43 +01005643 struct kvm_pit *pit = kvm->arch.vpit;
5644
5645 mutex_lock(&pit->pit_state.lock);
Radim Krčmář34f39412016-03-02 22:56:50 +01005646 memcpy(&pit->pit_state.channels, ps, sizeof(*ps));
Andrew Honig01856042015-11-18 14:50:23 -08005647 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01005648 kvm_pit_load_count(pit, i, ps->channels[i].count, 0);
5649 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305650 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04005651}
5652
5653static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5654{
Beth Kone9f42752009-07-07 11:50:38 -04005655 mutex_lock(&kvm->arch.vpit->pit_state.lock);
5656 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
5657 sizeof(ps->channels));
5658 ps->flags = kvm->arch.vpit->pit_state.flags;
5659 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04005660 memset(&ps->reserved, 0, sizeof(ps->reserved));
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305661 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04005662}
5663
5664static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5665{
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305666 int start = 0;
Andrew Honig01856042015-11-18 14:50:23 -08005667 int i;
Beth Kone9f42752009-07-07 11:50:38 -04005668 u32 prev_legacy, cur_legacy;
Radim Krčmář09edea72016-03-02 22:56:43 +01005669 struct kvm_pit *pit = kvm->arch.vpit;
5670
5671 mutex_lock(&pit->pit_state.lock);
5672 prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
Beth Kone9f42752009-07-07 11:50:38 -04005673 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
5674 if (!prev_legacy && cur_legacy)
5675 start = 1;
Radim Krčmář09edea72016-03-02 22:56:43 +01005676 memcpy(&pit->pit_state.channels, &ps->channels,
5677 sizeof(pit->pit_state.channels));
5678 pit->pit_state.flags = ps->flags;
Andrew Honig01856042015-11-18 14:50:23 -08005679 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01005680 kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count,
Paolo Bonzinie5e57e72016-01-07 13:50:38 +01005681 start && i == 0);
Radim Krčmář09edea72016-03-02 22:56:43 +01005682 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305683 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08005684}
5685
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005686static int kvm_vm_ioctl_reinject(struct kvm *kvm,
5687 struct kvm_reinject_control *control)
5688{
Radim Krčmář71474e22016-03-02 22:56:45 +01005689 struct kvm_pit *pit = kvm->arch.vpit;
5690
Radim Krčmář71474e22016-03-02 22:56:45 +01005691 /* pit->pit_state.lock was overloaded to prevent userspace from getting
5692 * an inconsistent state after running multiple KVM_REINJECT_CONTROL
5693 * ioctls in parallel. Use a separate lock if that ioctl isn't rare.
5694 */
5695 mutex_lock(&pit->pit_state.lock);
5696 kvm_pit_set_reinject(pit, control->pit_reinject);
5697 mutex_unlock(&pit->pit_state.lock);
Radim Krčmářb39c90b2016-03-02 22:56:44 +01005698
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005699 return 0;
5700}
5701
Sean Christopherson0dff0842020-02-18 13:07:29 -08005702void kvm_arch_sync_dirty_log(struct kvm *kvm, struct kvm_memory_slot *memslot)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08005703{
Sean Christophersona018eba2021-02-12 16:50:10 -08005704
Kai Huang88178fd2015-01-28 10:54:27 +08005705 /*
Sean Christophersona018eba2021-02-12 16:50:10 -08005706 * Flush all CPUs' dirty log buffers to the dirty_bitmap. Called
5707 * before reporting dirty_bitmap to userspace. KVM flushes the buffers
5708 * on all VM-Exits, thus we only need to kick running vCPUs to force a
5709 * VM-Exit.
Kai Huang88178fd2015-01-28 10:54:27 +08005710 */
Sean Christophersona018eba2021-02-12 16:50:10 -08005711 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00005712 unsigned long i;
Sean Christophersona018eba2021-02-12 16:50:10 -08005713
5714 kvm_for_each_vcpu(i, vcpu, kvm)
5715 kvm_vcpu_kick(vcpu);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08005716}
5717
Yang Zhangaa2fbe62013-04-11 19:21:40 +08005718int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
5719 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04005720{
5721 if (!irqchip_in_kernel(kvm))
5722 return -ENXIO;
5723
5724 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08005725 irq_event->irq, irq_event->level,
5726 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04005727 return 0;
5728}
5729
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01005730int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
5731 struct kvm_enable_cap *cap)
Nadav Amit90de4a12015-04-13 01:53:41 +03005732{
5733 int r;
5734
5735 if (cap->flags)
5736 return -EINVAL;
5737
5738 switch (cap->cap) {
5739 case KVM_CAP_DISABLE_QUIRKS:
5740 kvm->arch.disabled_quirks = cap->args[0];
5741 r = 0;
5742 break;
Steve Rutherford49df6392015-07-29 23:21:40 -07005743 case KVM_CAP_SPLIT_IRQCHIP: {
5744 mutex_lock(&kvm->lock);
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005745 r = -EINVAL;
5746 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
5747 goto split_irqchip_unlock;
Steve Rutherford49df6392015-07-29 23:21:40 -07005748 r = -EEXIST;
5749 if (irqchip_in_kernel(kvm))
5750 goto split_irqchip_unlock;
Paolo Bonzini557abc42016-06-13 14:50:04 +02005751 if (kvm->created_vcpus)
Steve Rutherford49df6392015-07-29 23:21:40 -07005752 goto split_irqchip_unlock;
5753 r = kvm_setup_empty_irq_routing(kvm);
David Hildenbrand5c0aea02017-04-28 17:06:20 +02005754 if (r)
Steve Rutherford49df6392015-07-29 23:21:40 -07005755 goto split_irqchip_unlock;
5756 /* Pairs with irqchip_in_kernel. */
5757 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01005758 kvm->arch.irqchip_mode = KVM_IRQCHIP_SPLIT;
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005759 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
Paolo Bonzinief8b4b72021-11-30 07:37:45 -05005760 kvm_request_apicv_update(kvm, true, APICV_INHIBIT_REASON_ABSENT);
Steve Rutherford49df6392015-07-29 23:21:40 -07005761 r = 0;
5762split_irqchip_unlock:
5763 mutex_unlock(&kvm->lock);
5764 break;
5765 }
Radim Krčmář371313132016-07-12 22:09:27 +02005766 case KVM_CAP_X2APIC_API:
5767 r = -EINVAL;
5768 if (cap->args[0] & ~KVM_X2APIC_API_VALID_FLAGS)
5769 break;
5770
5771 if (cap->args[0] & KVM_X2APIC_API_USE_32BIT_IDS)
5772 kvm->arch.x2apic_format = true;
Radim Krčmářc5192652016-07-12 22:09:28 +02005773 if (cap->args[0] & KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
5774 kvm->arch.x2apic_broadcast_quirk_disabled = true;
Radim Krčmář371313132016-07-12 22:09:27 +02005775
5776 r = 0;
5777 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005778 case KVM_CAP_X86_DISABLE_EXITS:
5779 r = -EINVAL;
5780 if (cap->args[0] & ~KVM_X86_DISABLE_VALID_EXITS)
5781 break;
5782
5783 if ((cap->args[0] & KVM_X86_DISABLE_EXITS_MWAIT) &&
5784 kvm_can_mwait_in_guest())
5785 kvm->arch.mwait_in_guest = true;
Michael S. Tsirkin766d3572018-06-08 02:19:53 +03005786 if (cap->args[0] & KVM_X86_DISABLE_EXITS_HLT)
Wanpeng Licaa057a2018-03-12 04:53:03 -07005787 kvm->arch.hlt_in_guest = true;
Wanpeng Lib31c1142018-03-12 04:53:04 -07005788 if (cap->args[0] & KVM_X86_DISABLE_EXITS_PAUSE)
5789 kvm->arch.pause_in_guest = true;
Wanpeng Lib5170062019-05-21 14:06:53 +08005790 if (cap->args[0] & KVM_X86_DISABLE_EXITS_CSTATE)
5791 kvm->arch.cstate_in_guest = true;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005792 r = 0;
5793 break;
Drew Schmitt6fbbde92018-08-20 10:32:15 -07005794 case KVM_CAP_MSR_PLATFORM_INFO:
5795 kvm->arch.guest_can_read_msr_platform_info = cap->args[0];
5796 r = 0;
5797 break;
Jim Mattsonc4f55192018-10-16 14:29:24 -07005798 case KVM_CAP_EXCEPTION_PAYLOAD:
5799 kvm->arch.exception_payload_enabled = cap->args[0];
5800 r = 0;
5801 break;
Alexander Graf1ae09952020-09-25 16:34:16 +02005802 case KVM_CAP_X86_USER_SPACE_MSR:
5803 kvm->arch.user_space_msr_mask = cap->args[0];
5804 r = 0;
5805 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005806 case KVM_CAP_X86_BUS_LOCK_EXIT:
5807 r = -EINVAL;
5808 if (cap->args[0] & ~KVM_BUS_LOCK_DETECTION_VALID_MODE)
5809 break;
5810
5811 if ((cap->args[0] & KVM_BUS_LOCK_DETECTION_OFF) &&
5812 (cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT))
5813 break;
5814
5815 if (kvm_has_bus_lock_exit &&
5816 cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT)
5817 kvm->arch.bus_lock_detection_enabled = true;
5818 r = 0;
5819 break;
Sean Christophersonfe7e9482021-04-12 16:21:43 +12005820#ifdef CONFIG_X86_SGX_KVM
5821 case KVM_CAP_SGX_ATTRIBUTE: {
5822 unsigned long allowed_attributes = 0;
5823
5824 r = sgx_set_attribute(&allowed_attributes, cap->args[0]);
5825 if (r)
5826 break;
5827
5828 /* KVM only supports the PROVISIONKEY privileged attribute. */
5829 if ((allowed_attributes & SGX_ATTR_PROVISIONKEY) &&
5830 !(allowed_attributes & ~SGX_ATTR_PROVISIONKEY))
5831 kvm->arch.sgx_provisioning_allowed = true;
5832 else
5833 r = -EINVAL;
5834 break;
5835 }
5836#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00005837 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
5838 r = -EINVAL;
5839 if (kvm_x86_ops.vm_copy_enc_context_from)
5840 r = kvm_x86_ops.vm_copy_enc_context_from(kvm, cap->args[0]);
5841 return r;
Peter Gondab5663932021-10-21 10:43:00 -07005842 case KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM:
5843 r = -EINVAL;
5844 if (kvm_x86_ops.vm_move_enc_context_from)
5845 r = kvm_x86_ops.vm_move_enc_context_from(
5846 kvm, cap->args[0]);
5847 return r;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00005848 case KVM_CAP_EXIT_HYPERCALL:
5849 if (cap->args[0] & ~KVM_EXIT_HYPERCALL_VALID_MASK) {
5850 r = -EINVAL;
5851 break;
5852 }
5853 kvm->arch.hypercall_exit_enabled = cap->args[0];
5854 r = 0;
5855 break;
Aaron Lewis19238e72021-05-10 07:48:33 -07005856 case KVM_CAP_EXIT_ON_EMULATION_FAILURE:
5857 r = -EINVAL;
5858 if (cap->args[0] & ~1)
5859 break;
5860 kvm->arch.exit_on_emulation_error = cap->args[0];
5861 r = 0;
5862 break;
Nadav Amit90de4a12015-04-13 01:53:41 +03005863 default:
5864 r = -EINVAL;
5865 break;
5866 }
5867 return r;
5868}
5869
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005870static struct kvm_x86_msr_filter *kvm_alloc_msr_filter(bool default_allow)
Alexander Graf1a1552542020-09-25 16:34:21 +02005871{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005872 struct kvm_x86_msr_filter *msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005873
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005874 msr_filter = kzalloc(sizeof(*msr_filter), GFP_KERNEL_ACCOUNT);
5875 if (!msr_filter)
5876 return NULL;
Alexander Graf1a1552542020-09-25 16:34:21 +02005877
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005878 msr_filter->default_allow = default_allow;
5879 return msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005880}
5881
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005882static void kvm_free_msr_filter(struct kvm_x86_msr_filter *msr_filter)
Alexander Graf1a1552542020-09-25 16:34:21 +02005883{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005884 u32 i;
5885
5886 if (!msr_filter)
5887 return;
5888
5889 for (i = 0; i < msr_filter->count; i++)
5890 kfree(msr_filter->ranges[i].bitmap);
5891
5892 kfree(msr_filter);
5893}
5894
5895static int kvm_add_msr_filter(struct kvm_x86_msr_filter *msr_filter,
5896 struct kvm_msr_filter_range *user_range)
5897{
Alexander Graf1a1552542020-09-25 16:34:21 +02005898 unsigned long *bitmap = NULL;
5899 size_t bitmap_size;
Alexander Graf1a1552542020-09-25 16:34:21 +02005900
5901 if (!user_range->nmsrs)
5902 return 0;
5903
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02005904 if (user_range->flags & ~(KVM_MSR_FILTER_READ | KVM_MSR_FILTER_WRITE))
5905 return -EINVAL;
5906
5907 if (!user_range->flags)
5908 return -EINVAL;
5909
Alexander Graf1a1552542020-09-25 16:34:21 +02005910 bitmap_size = BITS_TO_LONGS(user_range->nmsrs) * sizeof(long);
5911 if (!bitmap_size || bitmap_size > KVM_MSR_FILTER_MAX_BITMAP_SIZE)
5912 return -EINVAL;
5913
5914 bitmap = memdup_user((__user u8*)user_range->bitmap, bitmap_size);
5915 if (IS_ERR(bitmap))
5916 return PTR_ERR(bitmap);
5917
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02005918 msr_filter->ranges[msr_filter->count] = (struct msr_bitmap_range) {
Alexander Graf1a1552542020-09-25 16:34:21 +02005919 .flags = user_range->flags,
5920 .base = user_range->base,
5921 .nmsrs = user_range->nmsrs,
5922 .bitmap = bitmap,
5923 };
5924
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005925 msr_filter->count++;
Alexander Graf1a1552542020-09-25 16:34:21 +02005926 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005927}
5928
5929static int kvm_vm_ioctl_set_msr_filter(struct kvm *kvm, void __user *argp)
5930{
5931 struct kvm_msr_filter __user *user_msr_filter = argp;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005932 struct kvm_x86_msr_filter *new_filter, *old_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005933 struct kvm_msr_filter filter;
5934 bool default_allow;
Paolo Bonzini043248b2020-10-20 10:57:01 -04005935 bool empty = true;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005936 int r = 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005937 u32 i;
5938
5939 if (copy_from_user(&filter, user_msr_filter, sizeof(filter)))
5940 return -EFAULT;
5941
Paolo Bonzini043248b2020-10-20 10:57:01 -04005942 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++)
5943 empty &= !filter.ranges[i].nmsrs;
Alexander Graf1a1552542020-09-25 16:34:21 +02005944
5945 default_allow = !(filter.flags & KVM_MSR_FILTER_DEFAULT_DENY);
Paolo Bonzini043248b2020-10-20 10:57:01 -04005946 if (empty && !default_allow)
5947 return -EINVAL;
5948
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005949 new_filter = kvm_alloc_msr_filter(default_allow);
5950 if (!new_filter)
5951 return -ENOMEM;
Paolo Bonzini043248b2020-10-20 10:57:01 -04005952
Alexander Graf1a1552542020-09-25 16:34:21 +02005953 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005954 r = kvm_add_msr_filter(new_filter, &filter.ranges[i]);
5955 if (r) {
5956 kvm_free_msr_filter(new_filter);
5957 return r;
5958 }
Alexander Graf1a1552542020-09-25 16:34:21 +02005959 }
5960
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005961 mutex_lock(&kvm->lock);
5962
5963 /* The per-VM filter is protected by kvm->lock... */
5964 old_filter = srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1);
5965
5966 rcu_assign_pointer(kvm->arch.msr_filter, new_filter);
5967 synchronize_srcu(&kvm->srcu);
5968
5969 kvm_free_msr_filter(old_filter);
5970
Alexander Graf1a1552542020-09-25 16:34:21 +02005971 kvm_make_all_cpus_request(kvm, KVM_REQ_MSR_FILTER_CHANGED);
5972 mutex_unlock(&kvm->lock);
5973
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005974 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005975}
5976
Sergey Senozhatsky7d628742021-06-06 11:10:45 +09005977#ifdef CONFIG_HAVE_KVM_PM_NOTIFIER
5978static int kvm_arch_suspend_notifier(struct kvm *kvm)
5979{
5980 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00005981 unsigned long i;
5982 int ret = 0;
Sergey Senozhatsky7d628742021-06-06 11:10:45 +09005983
5984 mutex_lock(&kvm->lock);
5985 kvm_for_each_vcpu(i, vcpu, kvm) {
5986 if (!vcpu->arch.pv_time_enabled)
5987 continue;
5988
5989 ret = kvm_set_guest_paused(vcpu);
5990 if (ret) {
5991 kvm_err("Failed to pause guest VCPU%d: %d\n",
5992 vcpu->vcpu_id, ret);
5993 break;
5994 }
5995 }
5996 mutex_unlock(&kvm->lock);
5997
5998 return ret ? NOTIFY_BAD : NOTIFY_DONE;
5999}
6000
6001int kvm_arch_pm_notifier(struct kvm *kvm, unsigned long state)
6002{
6003 switch (state) {
6004 case PM_HIBERNATION_PREPARE:
6005 case PM_SUSPEND_PREPARE:
6006 return kvm_arch_suspend_notifier(kvm);
6007 }
6008
6009 return NOTIFY_DONE;
6010}
6011#endif /* CONFIG_HAVE_KVM_PM_NOTIFIER */
6012
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006013static int kvm_vm_ioctl_get_clock(struct kvm *kvm, void __user *argp)
6014{
Paolo Bonzini869b4422021-09-16 18:15:36 +00006015 struct kvm_clock_data data = { 0 };
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006016
Oliver Upton55c0cef2021-09-16 18:15:34 +00006017 get_kvmclock(kvm, &data);
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006018 if (copy_to_user(argp, &data, sizeof(data)))
6019 return -EFAULT;
6020
6021 return 0;
6022}
6023
6024static int kvm_vm_ioctl_set_clock(struct kvm *kvm, void __user *argp)
6025{
6026 struct kvm_arch *ka = &kvm->arch;
6027 struct kvm_clock_data data;
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006028 u64 now_raw_ns;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006029
6030 if (copy_from_user(&data, argp, sizeof(data)))
6031 return -EFAULT;
6032
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006033 /*
6034 * Only KVM_CLOCK_REALTIME is used, but allow passing the
6035 * result of KVM_GET_CLOCK back to KVM_SET_CLOCK.
6036 */
6037 if (data.flags & ~KVM_CLOCK_VALID_FLAGS)
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006038 return -EINVAL;
6039
6040 kvm_hv_invalidate_tsc_page(kvm);
6041 kvm_start_pvclock_update(kvm);
6042 pvclock_update_vm_gtod_copy(kvm);
6043
6044 /*
6045 * This pairs with kvm_guest_time_update(): when masterclock is
6046 * in use, we use master_kernel_ns + kvmclock_offset to set
6047 * unsigned 'system_time' so if we use get_kvmclock_ns() (which
6048 * is slightly ahead) here we risk going negative on unsigned
6049 * 'system_time' when 'data.clock' is very small.
6050 */
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006051 if (data.flags & KVM_CLOCK_REALTIME) {
6052 u64 now_real_ns = ktime_get_real_ns();
6053
6054 /*
6055 * Avoid stepping the kvmclock backwards.
6056 */
6057 if (now_real_ns > data.realtime)
6058 data.clock += now_real_ns - data.realtime;
6059 }
6060
6061 if (ka->use_master_clock)
6062 now_raw_ns = ka->master_kernel_ns;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006063 else
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006064 now_raw_ns = get_kvmclock_base_ns();
6065 ka->kvmclock_offset = data.clock - now_raw_ns;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006066 kvm_end_pvclock_update(kvm);
6067 return 0;
6068}
6069
Carsten Otte1fe779f2007-10-29 16:08:35 +01006070long kvm_arch_vm_ioctl(struct file *filp,
6071 unsigned int ioctl, unsigned long arg)
6072{
6073 struct kvm *kvm = filp->private_data;
6074 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03006075 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07006076 /*
6077 * This union makes it completely explicit to gcc-3.x
6078 * that these two variables' stack usage should be
6079 * combined, not added together.
6080 */
6081 union {
6082 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04006083 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02006084 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07006085 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006086
6087 switch (ioctl) {
6088 case KVM_SET_TSS_ADDR:
6089 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006090 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006091 case KVM_SET_IDENTITY_MAP_ADDR: {
6092 u64 ident_addr;
6093
David Hildenbrand1af1ac92017-08-24 20:51:36 +02006094 mutex_lock(&kvm->lock);
6095 r = -EINVAL;
6096 if (kvm->created_vcpus)
6097 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006098 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00006099 if (copy_from_user(&ident_addr, argp, sizeof(ident_addr)))
David Hildenbrand1af1ac92017-08-24 20:51:36 +02006100 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006101 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
David Hildenbrand1af1ac92017-08-24 20:51:36 +02006102set_identity_unlock:
6103 mutex_unlock(&kvm->lock);
Sheng Yangb927a3c2009-07-21 10:42:48 +08006104 break;
6105 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01006106 case KVM_SET_NR_MMU_PAGES:
6107 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006108 break;
6109 case KVM_GET_NR_MMU_PAGES:
6110 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
6111 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006112 case KVM_CREATE_IRQCHIP: {
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006113 mutex_lock(&kvm->lock);
Radim Krčmář09941362016-12-16 16:10:03 +01006114
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006115 r = -EEXIST;
Radim Krčmář35e6eaa2016-12-16 16:10:01 +01006116 if (irqchip_in_kernel(kvm))
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006117 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01006118
Avi Kivity3e515702012-03-05 14:23:29 +02006119 r = -EINVAL;
Paolo Bonzini557abc42016-06-13 14:50:04 +02006120 if (kvm->created_vcpus)
Avi Kivity3e515702012-03-05 14:23:29 +02006121 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01006122
6123 r = kvm_pic_init(kvm);
6124 if (r)
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006125 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01006126
6127 r = kvm_ioapic_init(kvm);
6128 if (r) {
Radim Krčmář09941362016-12-16 16:10:03 +01006129 kvm_pic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01006130 goto create_irqchip_unlock;
6131 }
6132
Avi Kivity399ec802008-11-19 13:58:46 +02006133 r = kvm_setup_default_irq_routing(kvm);
6134 if (r) {
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08006135 kvm_ioapic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01006136 kvm_pic_destroy(kvm);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02006137 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02006138 }
Radim Krčmář49776fa2016-12-16 16:10:02 +01006139 /* Write kvm->irq_routing before enabling irqchip_in_kernel. */
Paolo Bonzini71ba9942015-07-29 12:31:15 +02006140 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01006141 kvm->arch.irqchip_mode = KVM_IRQCHIP_KERNEL;
Paolo Bonzinief8b4b72021-11-30 07:37:45 -05006142 kvm_request_apicv_update(kvm, true, APICV_INHIBIT_REASON_ABSENT);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006143 create_irqchip_unlock:
6144 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006145 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006146 }
Sheng Yang78376992008-01-28 05:10:22 +08006147 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02006148 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
6149 goto create_pit;
6150 case KVM_CREATE_PIT2:
6151 r = -EFAULT;
6152 if (copy_from_user(&u.pit_config, argp,
6153 sizeof(struct kvm_pit_config)))
6154 goto out;
6155 create_pit:
Paolo Bonzini250715a2016-06-01 14:09:24 +02006156 mutex_lock(&kvm->lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02006157 r = -EEXIST;
6158 if (kvm->arch.vpit)
6159 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08006160 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02006161 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08006162 if (kvm->arch.vpit)
6163 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02006164 create_pit_unlock:
Paolo Bonzini250715a2016-06-01 14:09:24 +02006165 mutex_unlock(&kvm->lock);
Sheng Yang78376992008-01-28 05:10:22 +08006166 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006167 case KVM_GET_IRQCHIP: {
6168 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02006169 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006170
Sasha Levinff5c2c02011-12-04 19:36:29 +02006171 chip = memdup_user(argp, sizeof(*chip));
6172 if (IS_ERR(chip)) {
6173 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006174 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02006175 }
6176
Carsten Otte1fe779f2007-10-29 16:08:35 +01006177 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01006178 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07006179 goto get_irqchip_out;
6180 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
6181 if (r)
6182 goto get_irqchip_out;
6183 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00006184 if (copy_to_user(argp, chip, sizeof(*chip)))
Dave Hansenf0d66272008-08-11 10:01:45 -07006185 goto get_irqchip_out;
6186 r = 0;
6187 get_irqchip_out:
6188 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006189 break;
6190 }
6191 case KVM_SET_IRQCHIP: {
6192 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02006193 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006194
Sasha Levinff5c2c02011-12-04 19:36:29 +02006195 chip = memdup_user(argp, sizeof(*chip));
6196 if (IS_ERR(chip)) {
6197 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006198 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02006199 }
6200
Carsten Otte1fe779f2007-10-29 16:08:35 +01006201 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01006202 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07006203 goto set_irqchip_out;
6204 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
Dave Hansenf0d66272008-08-11 10:01:45 -07006205 set_irqchip_out:
6206 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006207 break;
6208 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08006209 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08006210 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07006211 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006212 goto out;
6213 r = -ENXIO;
6214 if (!kvm->arch.vpit)
6215 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07006216 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006217 if (r)
6218 goto out;
6219 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07006220 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006221 goto out;
6222 r = 0;
6223 break;
6224 }
6225 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08006226 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00006227 if (copy_from_user(&u.ps, argp, sizeof(u.ps)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006228 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006229 mutex_lock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006230 r = -ENXIO;
6231 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006232 goto set_pit_out;
Dave Hansenf0d66272008-08-11 10:01:45 -07006233 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006234set_pit_out:
6235 mutex_unlock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006236 break;
6237 }
Beth Kone9f42752009-07-07 11:50:38 -04006238 case KVM_GET_PIT2: {
6239 r = -ENXIO;
6240 if (!kvm->arch.vpit)
6241 goto out;
6242 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
6243 if (r)
6244 goto out;
6245 r = -EFAULT;
6246 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
6247 goto out;
6248 r = 0;
6249 break;
6250 }
6251 case KVM_SET_PIT2: {
6252 r = -EFAULT;
6253 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
6254 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006255 mutex_lock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04006256 r = -ENXIO;
6257 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006258 goto set_pit2_out;
Beth Kone9f42752009-07-07 11:50:38 -04006259 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006260set_pit2_out:
6261 mutex_unlock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04006262 break;
6263 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006264 case KVM_REINJECT_CONTROL: {
6265 struct kvm_reinject_control control;
6266 r = -EFAULT;
6267 if (copy_from_user(&control, argp, sizeof(control)))
6268 goto out;
Miaohe Lincad23e72019-12-07 17:25:22 +08006269 r = -ENXIO;
6270 if (!kvm->arch.vpit)
6271 goto out;
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006272 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006273 break;
6274 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006275 case KVM_SET_BOOT_CPU_ID:
6276 r = 0;
6277 mutex_lock(&kvm->lock);
Paolo Bonzini557abc42016-06-13 14:50:04 +02006278 if (kvm->created_vcpus)
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006279 r = -EBUSY;
6280 else
6281 kvm->arch.bsp_vcpu_id = arg;
6282 mutex_unlock(&kvm->lock);
6283 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006284#ifdef CONFIG_KVM_XEN
Ed Swierkffde22a2009-10-15 15:21:43 -07006285 case KVM_XEN_HVM_CONFIG: {
Paolo Bonzini51776042017-10-26 15:45:47 +02006286 struct kvm_xen_hvm_config xhc;
Ed Swierkffde22a2009-10-15 15:21:43 -07006287 r = -EFAULT;
Paolo Bonzini51776042017-10-26 15:45:47 +02006288 if (copy_from_user(&xhc, argp, sizeof(xhc)))
Ed Swierkffde22a2009-10-15 15:21:43 -07006289 goto out;
David Woodhouse78e98782021-02-02 13:19:35 +00006290 r = kvm_xen_hvm_config(kvm, &xhc);
Ed Swierkffde22a2009-10-15 15:21:43 -07006291 break;
6292 }
Joao Martinsa76b9642020-12-03 15:52:25 +00006293 case KVM_XEN_HVM_GET_ATTR: {
6294 struct kvm_xen_hvm_attr xha;
6295
6296 r = -EFAULT;
6297 if (copy_from_user(&xha, argp, sizeof(xha)))
Hannes Edercded19f2009-02-21 02:19:13 +01006298 goto out;
Joao Martinsa76b9642020-12-03 15:52:25 +00006299 r = kvm_xen_hvm_get_attr(kvm, &xha);
6300 if (!r && copy_to_user(argp, &xha, sizeof(xha)))
6301 r = -EFAULT;
6302 break;
6303 }
6304 case KVM_XEN_HVM_SET_ATTR: {
6305 struct kvm_xen_hvm_attr xha;
6306
6307 r = -EFAULT;
6308 if (copy_from_user(&xha, argp, sizeof(xha)))
6309 goto out;
6310 r = kvm_xen_hvm_set_attr(kvm, &xha);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006311 break;
6312 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006313#endif
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006314 case KVM_SET_CLOCK:
6315 r = kvm_vm_ioctl_set_clock(kvm, argp);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006316 break;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006317 case KVM_GET_CLOCK:
6318 r = kvm_vm_ioctl_get_clock(kvm, argp);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006319 break;
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006320 case KVM_MEMORY_ENCRYPT_OP: {
6321 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006322 if (kvm_x86_ops.mem_enc_op)
Jason Baronb36464772021-01-14 22:27:56 -05006323 r = static_call(kvm_x86_mem_enc_op)(kvm, argp);
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006324 break;
6325 }
Brijesh Singh69eaede2017-12-04 10:57:26 -06006326 case KVM_MEMORY_ENCRYPT_REG_REGION: {
6327 struct kvm_enc_region region;
6328
6329 r = -EFAULT;
6330 if (copy_from_user(&region, argp, sizeof(region)))
6331 goto out;
6332
6333 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006334 if (kvm_x86_ops.mem_enc_reg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006335 r = static_call(kvm_x86_mem_enc_reg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006336 break;
6337 }
6338 case KVM_MEMORY_ENCRYPT_UNREG_REGION: {
6339 struct kvm_enc_region region;
6340
6341 r = -EFAULT;
6342 if (copy_from_user(&region, argp, sizeof(region)))
6343 goto out;
6344
6345 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006346 if (kvm_x86_ops.mem_enc_unreg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006347 r = static_call(kvm_x86_mem_enc_unreg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006348 break;
6349 }
Roman Kaganfaeb7832018-02-01 16:48:32 +03006350 case KVM_HYPERV_EVENTFD: {
6351 struct kvm_hyperv_eventfd hvevfd;
6352
6353 r = -EFAULT;
6354 if (copy_from_user(&hvevfd, argp, sizeof(hvevfd)))
6355 goto out;
6356 r = kvm_vm_ioctl_hv_eventfd(kvm, &hvevfd);
6357 break;
6358 }
Eric Hankland66bb8a02019-07-10 18:25:15 -07006359 case KVM_SET_PMU_EVENT_FILTER:
6360 r = kvm_vm_ioctl_set_pmu_event_filter(kvm, argp);
6361 break;
Alexander Graf1a1552542020-09-25 16:34:21 +02006362 case KVM_X86_SET_MSR_FILTER:
6363 r = kvm_vm_ioctl_set_msr_filter(kvm, argp);
6364 break;
Carsten Otte043405e2007-10-10 17:16:19 +02006365 default:
Paolo Bonziniad6260d2017-03-27 14:30:40 +02006366 r = -ENOTTY;
Carsten Otte043405e2007-10-10 17:16:19 +02006367 }
6368out:
6369 return r;
6370}
6371
6372static void kvm_init_msr_list(void)
6373{
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006374 struct x86_pmu_capability x86_pmu;
Carsten Otte043405e2007-10-10 17:16:19 +02006375 u32 dummy[2];
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006376 unsigned i;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006377
Jim Mattsone2ada662019-08-21 11:20:04 -07006378 BUILD_BUG_ON_MSG(INTEL_PMC_MAX_FIXED != 4,
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006379 "Please update the fixed PMCs in msrs_to_saved_all[]");
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006380
6381 perf_get_x86_pmu_capability(&x86_pmu);
Jim Mattsone2ada662019-08-21 11:20:04 -07006382
Xiaoyao Li6cbee2b2019-11-13 09:15:21 +08006383 num_msrs_to_save = 0;
6384 num_emulated_msrs = 0;
6385 num_msr_based_features = 0;
6386
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006387 for (i = 0; i < ARRAY_SIZE(msrs_to_save_all); i++) {
6388 if (rdmsr_safe(msrs_to_save_all[i], &dummy[0], &dummy[1]) < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006389 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006390
6391 /*
6392 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006393 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006394 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006395 switch (msrs_to_save_all[i]) {
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006396 case MSR_IA32_BNDCFGS:
Liran Alon503234b2018-09-14 03:25:53 +03006397 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006398 continue;
6399 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006400 case MSR_TSC_AUX:
Sean Christopherson36fa06f2021-05-04 10:17:26 -07006401 if (!kvm_cpu_cap_has(X86_FEATURE_RDTSCP) &&
6402 !kvm_cpu_cap_has(X86_FEATURE_RDPID))
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006403 continue;
6404 break;
Maxim Levitskyf4cfcd22020-05-23 19:14:55 +03006405 case MSR_IA32_UMWAIT_CONTROL:
6406 if (!kvm_cpu_cap_has(X86_FEATURE_WAITPKG))
6407 continue;
6408 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08006409 case MSR_IA32_RTIT_CTL:
6410 case MSR_IA32_RTIT_STATUS:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006411 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT))
Chao Pengbf8c55d2018-10-24 16:05:14 +08006412 continue;
6413 break;
6414 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006415 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006416 !intel_pt_validate_hw_cap(PT_CAP_cr3_filtering))
6417 continue;
6418 break;
6419 case MSR_IA32_RTIT_OUTPUT_BASE:
6420 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006421 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006422 (!intel_pt_validate_hw_cap(PT_CAP_topa_output) &&
6423 !intel_pt_validate_hw_cap(PT_CAP_single_range_output)))
6424 continue;
6425 break;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006426 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006427 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006428 msrs_to_save_all[i] - MSR_IA32_RTIT_ADDR0_A >=
Chao Pengbf8c55d2018-10-24 16:05:14 +08006429 intel_pt_validate_hw_cap(PT_CAP_num_address_ranges) * 2)
6430 continue;
6431 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006432 case MSR_ARCH_PERFMON_PERFCTR0 ... MSR_ARCH_PERFMON_PERFCTR0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006433 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_PERFCTR0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006434 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6435 continue;
6436 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006437 case MSR_ARCH_PERFMON_EVENTSEL0 ... MSR_ARCH_PERFMON_EVENTSEL0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006438 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_EVENTSEL0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006439 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6440 continue;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006441 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006442 default:
6443 break;
6444 }
6445
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006446 msrs_to_save[num_msrs_to_save++] = msrs_to_save_all[i];
Carsten Ottebbd9b642007-10-30 18:44:21 +01006447 }
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006448
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006449 for (i = 0; i < ARRAY_SIZE(emulated_msrs_all); i++) {
Jason Baronb36464772021-01-14 22:27:56 -05006450 if (!static_call(kvm_x86_has_emulated_msr)(NULL, emulated_msrs_all[i]))
Tom Lendackybc226f02018-05-10 22:06:39 +02006451 continue;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006452
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006453 emulated_msrs[num_emulated_msrs++] = emulated_msrs_all[i];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006454 }
Tom Lendacky801e4592018-02-21 13:39:51 -06006455
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006456 for (i = 0; i < ARRAY_SIZE(msr_based_features_all); i++) {
Tom Lendacky801e4592018-02-21 13:39:51 -06006457 struct kvm_msr_entry msr;
6458
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006459 msr.index = msr_based_features_all[i];
Wanpeng Li66421c12018-02-28 14:03:30 +08006460 if (kvm_get_msr_feature(&msr))
Tom Lendacky801e4592018-02-21 13:39:51 -06006461 continue;
6462
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006463 msr_based_features[num_msr_based_features++] = msr_based_features_all[i];
Tom Lendacky801e4592018-02-21 13:39:51 -06006464 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006465}
6466
6467static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
6468 const void *v)
6469{
Avi Kivity70252a12010-01-19 12:51:22 +02006470 int handled = 0;
6471 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006472
Avi Kivity70252a12010-01-19 12:51:22 +02006473 do {
6474 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006475 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006476 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
6477 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006478 break;
6479 handled += n;
6480 addr += n;
6481 len -= n;
6482 v += n;
6483 } while (len);
6484
6485 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006486}
6487
6488static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
6489{
Avi Kivity70252a12010-01-19 12:51:22 +02006490 int handled = 0;
6491 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006492
Avi Kivity70252a12010-01-19 12:51:22 +02006493 do {
6494 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006495 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006496 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
6497 addr, n, v))
6498 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006499 break;
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006500 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, v);
Avi Kivity70252a12010-01-19 12:51:22 +02006501 handled += n;
6502 addr += n;
6503 len -= n;
6504 v += n;
6505 } while (len);
6506
6507 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006508}
6509
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006510static void kvm_set_segment(struct kvm_vcpu *vcpu,
6511 struct kvm_segment *var, int seg)
6512{
Jason Baronb36464772021-01-14 22:27:56 -05006513 static_call(kvm_x86_set_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006514}
6515
6516void kvm_get_segment(struct kvm_vcpu *vcpu,
6517 struct kvm_segment *var, int seg)
6518{
Jason Baronb36464772021-01-14 22:27:56 -05006519 static_call(kvm_x86_get_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006520}
6521
Paolo Bonzini54987b72014-09-02 13:23:06 +02006522gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
6523 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006524{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006525 struct kvm_mmu *mmu = vcpu->arch.mmu;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006526 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006527
6528 BUG_ON(!mmu_is_nested(vcpu));
6529
6530 /* NPT walks are always user-walks */
6531 access |= PFERR_USER_MASK;
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006532 t_gpa = mmu->gva_to_gpa(vcpu, mmu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006533
6534 return t_gpa;
6535}
6536
Avi Kivityab9ae312010-11-22 17:53:26 +02006537gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
6538 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006539{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006540 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
6541
Jason Baronb36464772021-01-14 22:27:56 -05006542 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006543 return mmu->gva_to_gpa(vcpu, mmu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006544}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006545EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_read);
Gleb Natapov1871c602010-02-10 14:21:32 +02006546
Avi Kivityab9ae312010-11-22 17:53:26 +02006547 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
6548 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006549{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006550 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
6551
Jason Baronb36464772021-01-14 22:27:56 -05006552 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006553 access |= PFERR_FETCH_MASK;
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006554 return mmu->gva_to_gpa(vcpu, mmu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006555}
6556
Avi Kivityab9ae312010-11-22 17:53:26 +02006557gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
6558 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006559{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006560 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
6561
Jason Baronb36464772021-01-14 22:27:56 -05006562 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006563 access |= PFERR_WRITE_MASK;
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006564 return mmu->gva_to_gpa(vcpu, mmu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006565}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006566EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_write);
Gleb Natapov1871c602010-02-10 14:21:32 +02006567
6568/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02006569gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
6570 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006571{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006572 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
6573
6574 return mmu->gva_to_gpa(vcpu, mmu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006575}
6576
6577static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6578 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006579 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006580{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006581 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006582 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006583 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006584
6585 while (bytes) {
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006586 gpa_t gpa = mmu->gva_to_gpa(vcpu, mmu, addr, access, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006587 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02006588 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006589 int ret;
6590
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006591 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006592 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006593 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
6594 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006595 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006596 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006597 goto out;
6598 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006599
Izik Eidus77c20022008-12-29 01:42:19 +02006600 bytes -= toread;
6601 data += toread;
6602 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006603 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006604out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006605 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006606}
Izik Eidus77c20022008-12-29 01:42:19 +02006607
Gleb Natapov1871c602010-02-10 14:21:32 +02006608/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03006609static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
6610 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006611 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006612{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006613 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006614 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Jason Baronb36464772021-01-14 22:27:56 -05006615 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006616 unsigned offset;
6617 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006618
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006619 /* Inline kvm_read_guest_virt_helper for speed. */
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006620 gpa_t gpa = mmu->gva_to_gpa(vcpu, mmu, addr, access|PFERR_FETCH_MASK,
6621 exception);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006622 if (unlikely(gpa == UNMAPPED_GVA))
6623 return X86EMUL_PROPAGATE_FAULT;
6624
6625 offset = addr & (PAGE_SIZE-1);
6626 if (WARN_ON(offset + bytes > PAGE_SIZE))
6627 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006628 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
6629 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006630 if (unlikely(ret < 0))
6631 return X86EMUL_IO_NEEDED;
6632
6633 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02006634}
6635
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006636int kvm_read_guest_virt(struct kvm_vcpu *vcpu,
Avi Kivity0f65dd72011-04-20 13:37:53 +03006637 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006638 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006639{
Jason Baronb36464772021-01-14 22:27:56 -05006640 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006641
Paolo Bonzini353c0952019-01-29 18:41:16 +01006642 /*
6643 * FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED
6644 * is returned, but our callers are not ready for that and they blindly
6645 * call kvm_inject_page_fault. Ensure that they at least do not leak
6646 * uninitialized kernel stack memory into cr2 and error code.
6647 */
6648 memset(exception, 0, sizeof(*exception));
Gleb Natapov1871c602010-02-10 14:21:32 +02006649 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006650 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006651}
Nadav Har'El064aea72011-05-25 23:04:56 +03006652EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02006653
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006654static int emulator_read_std(struct x86_emulate_ctxt *ctxt,
6655 gva_t addr, void *val, unsigned int bytes,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006656 struct x86_exception *exception, bool system)
Gleb Natapov1871c602010-02-10 14:21:32 +02006657{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006658 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006659 u32 access = 0;
6660
Jason Baronb36464772021-01-14 22:27:56 -05006661 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006662 access |= PFERR_USER_MASK;
6663
6664 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006665}
6666
Radim Krčmář7a036a62015-10-30 16:36:24 +01006667static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
6668 unsigned long addr, void *val, unsigned int bytes)
6669{
6670 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6671 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
6672
6673 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
6674}
6675
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006676static int kvm_write_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6677 struct kvm_vcpu *vcpu, u32 access,
6678 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02006679{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006680 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Izik Eidus77c20022008-12-29 01:42:19 +02006681 void *data = val;
6682 int r = X86EMUL_CONTINUE;
6683
6684 while (bytes) {
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006685 gpa_t gpa = mmu->gva_to_gpa(vcpu, mmu, addr, access, exception);
Izik Eidus77c20022008-12-29 01:42:19 +02006686 unsigned offset = addr & (PAGE_SIZE-1);
6687 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
6688 int ret;
6689
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006690 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006691 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006692 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02006693 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006694 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02006695 goto out;
6696 }
6697
6698 bytes -= towrite;
6699 data += towrite;
6700 addr += towrite;
6701 }
6702out:
6703 return r;
6704}
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006705
6706static int emulator_write_std(struct x86_emulate_ctxt *ctxt, gva_t addr, void *val,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006707 unsigned int bytes, struct x86_exception *exception,
6708 bool system)
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006709{
6710 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006711 u32 access = PFERR_WRITE_MASK;
6712
Jason Baronb36464772021-01-14 22:27:56 -05006713 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006714 access |= PFERR_USER_MASK;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006715
6716 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006717 access, exception);
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006718}
6719
6720int kvm_write_guest_virt_system(struct kvm_vcpu *vcpu, gva_t addr, void *val,
6721 unsigned int bytes, struct x86_exception *exception)
6722{
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006723 /* kvm_write_guest_virt_system can pull in tons of pages. */
6724 vcpu->arch.l1tf_flush_l1d = true;
6725
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006726 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
6727 PFERR_WRITE_MASK, exception);
6728}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03006729EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02006730
Wanpeng Li082d06e2018-04-03 16:28:48 -07006731int handle_ud(struct kvm_vcpu *vcpu)
6732{
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006733 static const char kvm_emulate_prefix[] = { __KVM_EMULATE_PREFIX };
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006734 int emul_type = EMULTYPE_TRAP_UD;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006735 char sig[5]; /* ud2; .ascii "kvm" */
6736 struct x86_exception e;
Wanpeng Li082d06e2018-04-03 16:28:48 -07006737
Jason Baronb36464772021-01-14 22:27:56 -05006738 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, NULL, 0)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07006739 return 1;
6740
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006741 if (force_emulation_prefix &&
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006742 kvm_read_guest_virt(vcpu, kvm_get_linear_rip(vcpu),
6743 sig, sizeof(sig), &e) == 0 &&
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006744 memcmp(sig, kvm_emulate_prefix, sizeof(sig)) == 0) {
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006745 kvm_rip_write(vcpu, kvm_rip_read(vcpu) + sizeof(sig));
Sean Christophersonb4000602019-08-27 14:40:32 -07006746 emul_type = EMULTYPE_TRAP_UD_FORCED;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006747 }
6748
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006749 return kvm_emulate_instruction(vcpu, emul_type);
Wanpeng Li082d06e2018-04-03 16:28:48 -07006750}
6751EXPORT_SYMBOL_GPL(handle_ud);
6752
Tom Lendacky0f89b202016-12-14 14:59:23 -05006753static int vcpu_is_mmio_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6754 gpa_t gpa, bool write)
6755{
6756 /* For APIC access vmexit */
6757 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
6758 return 1;
6759
6760 if (vcpu_match_mmio_gpa(vcpu, gpa)) {
6761 trace_vcpu_match_mmio(gva, gpa, write, true);
6762 return 1;
6763 }
6764
6765 return 0;
6766}
6767
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006768static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6769 gpa_t *gpa, struct x86_exception *exception,
6770 bool write)
6771{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006772 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Jason Baronb36464772021-01-14 22:27:56 -05006773 u32 access = ((static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0)
Avi Kivity97d64b72012-09-12 14:52:00 +03006774 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006775
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08006776 /*
6777 * currently PKRU is only applied to ept enabled guest so
6778 * there is no pkey in EPT page table for L1 guest or EPT
6779 * shadow page table for L2 guest.
6780 */
Sean Christopherson908b7d42021-07-13 09:33:04 -07006781 if (vcpu_match_mmio_gva(vcpu, gva) && (!is_paging(vcpu) ||
6782 !permission_fault(vcpu, vcpu->arch.walk_mmu,
6783 vcpu->arch.mmio_access, 0, access))) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006784 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
6785 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08006786 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006787 return 1;
6788 }
6789
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006790 *gpa = mmu->gva_to_gpa(vcpu, mmu, gva, access, exception);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006791
6792 if (*gpa == UNMAPPED_GVA)
6793 return -1;
6794
Tom Lendacky0f89b202016-12-14 14:59:23 -05006795 return vcpu_is_mmio_gpa(vcpu, gva, *gpa, write);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006796}
6797
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006798int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006799 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02006800{
6801 int ret;
6802
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006803 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006804 if (ret < 0)
6805 return 0;
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08006806 kvm_page_track_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006807 return 1;
6808}
6809
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006810struct read_write_emulator_ops {
6811 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
6812 int bytes);
6813 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
6814 void *val, int bytes);
6815 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6816 int bytes, void *val);
6817 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6818 void *val, int bytes);
6819 bool write;
6820};
6821
6822static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
6823{
6824 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006825 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006826 vcpu->mmio_fragments[0].gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006827 vcpu->mmio_read_completed = 0;
6828 return 1;
6829 }
6830
6831 return 0;
6832}
6833
6834static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6835 void *val, int bytes)
6836{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006837 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006838}
6839
6840static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6841 void *val, int bytes)
6842{
6843 return emulator_write_phys(vcpu, gpa, val, bytes);
6844}
6845
6846static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
6847{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006848 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006849 return vcpu_mmio_write(vcpu, gpa, bytes, val);
6850}
6851
6852static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6853 void *val, int bytes)
6854{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006855 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, NULL);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006856 return X86EMUL_IO_NEEDED;
6857}
6858
6859static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6860 void *val, int bytes)
6861{
Avi Kivityf78146b2012-04-18 19:22:47 +03006862 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
6863
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006864 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006865 return X86EMUL_CONTINUE;
6866}
6867
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006868static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006869 .read_write_prepare = read_prepare,
6870 .read_write_emulate = read_emulate,
6871 .read_write_mmio = vcpu_mmio_read,
6872 .read_write_exit_mmio = read_exit_mmio,
6873};
6874
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006875static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006876 .read_write_emulate = write_emulate,
6877 .read_write_mmio = write_mmio,
6878 .read_write_exit_mmio = write_exit_mmio,
6879 .write = true,
6880};
6881
Xiao Guangrong22388a32011-07-13 14:32:31 +08006882static int emulator_read_write_onepage(unsigned long addr, void *val,
6883 unsigned int bytes,
6884 struct x86_exception *exception,
6885 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006886 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006887{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006888 gpa_t gpa;
6889 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08006890 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03006891 struct kvm_mmio_fragment *frag;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006892 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Tom Lendacky0f89b202016-12-14 14:59:23 -05006893
6894 /*
6895 * If the exit was due to a NPF we may already have a GPA.
6896 * If the GPA is present, use it to avoid the GVA to GPA table walk.
6897 * Note, this cannot be used on string operations since string
6898 * operation using rep will only have the initial GPA from the NPF
6899 * occurred.
6900 */
Sean Christopherson744e6992020-02-18 15:03:09 -08006901 if (ctxt->gpa_available && emulator_can_use_gpa(ctxt) &&
6902 (addr & ~PAGE_MASK) == (ctxt->gpa_val & ~PAGE_MASK)) {
6903 gpa = ctxt->gpa_val;
Brijesh Singh618232e2017-08-17 18:36:57 +02006904 ret = vcpu_is_mmio_gpa(vcpu, addr, gpa, write);
6905 } else {
6906 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
6907 if (ret < 0)
6908 return X86EMUL_PROPAGATE_FAULT;
Tom Lendacky0f89b202016-12-14 14:59:23 -05006909 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08006910
Brijesh Singh618232e2017-08-17 18:36:57 +02006911 if (!ret && ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01006912 return X86EMUL_CONTINUE;
6913
Carsten Ottebbd9b642007-10-30 18:44:21 +01006914 /*
6915 * Is this MMIO handled locally?
6916 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08006917 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02006918 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006919 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006920
Avi Kivity70252a12010-01-19 12:51:22 +02006921 gpa += handled;
6922 bytes -= handled;
6923 val += handled;
6924
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006925 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
6926 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
6927 frag->gpa = gpa;
6928 frag->data = val;
6929 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03006930 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006931}
6932
Xiubo Li52eb5a62015-03-13 17:39:45 +08006933static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
6934 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08006935 void *val, unsigned int bytes,
6936 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006937 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006938{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006939 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03006940 gpa_t gpa;
6941 int rc;
6942
6943 if (ops->read_write_prepare &&
6944 ops->read_write_prepare(vcpu, val, bytes))
6945 return X86EMUL_CONTINUE;
6946
6947 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006948
Carsten Ottebbd9b642007-10-30 18:44:21 +01006949 /* Crossing a page boundary? */
6950 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03006951 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006952
6953 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08006954 rc = emulator_read_write_onepage(addr, val, now, exception,
6955 vcpu, ops);
6956
Carsten Ottebbd9b642007-10-30 18:44:21 +01006957 if (rc != X86EMUL_CONTINUE)
6958 return rc;
6959 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02006960 if (ctxt->mode != X86EMUL_MODE_PROT64)
6961 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006962 val += now;
6963 bytes -= now;
6964 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08006965
Avi Kivityf78146b2012-04-18 19:22:47 +03006966 rc = emulator_read_write_onepage(addr, val, bytes, exception,
6967 vcpu, ops);
6968 if (rc != X86EMUL_CONTINUE)
6969 return rc;
6970
6971 if (!vcpu->mmio_nr_fragments)
6972 return rc;
6973
6974 gpa = vcpu->mmio_fragments[0].gpa;
6975
6976 vcpu->mmio_needed = 1;
6977 vcpu->mmio_cur_fragment = 0;
6978
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006979 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03006980 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
6981 vcpu->run->exit_reason = KVM_EXIT_MMIO;
6982 vcpu->run->mmio.phys_addr = gpa;
6983
6984 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08006985}
6986
6987static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
6988 unsigned long addr,
6989 void *val,
6990 unsigned int bytes,
6991 struct x86_exception *exception)
6992{
6993 return emulator_read_write(ctxt, addr, val, bytes,
6994 exception, &read_emultor);
6995}
6996
Xiubo Li52eb5a62015-03-13 17:39:45 +08006997static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08006998 unsigned long addr,
6999 const void *val,
7000 unsigned int bytes,
7001 struct x86_exception *exception)
7002{
7003 return emulator_read_write(ctxt, addr, (void *)val, bytes,
7004 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007005}
Carsten Ottebbd9b642007-10-30 18:44:21 +01007006
Avi Kivitydaea3e72010-03-15 13:59:54 +02007007#define CMPXCHG_TYPE(t, ptr, old, new) \
7008 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
7009
7010#ifdef CONFIG_X86_64
7011# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
7012#else
7013# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01007014 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02007015#endif
7016
Avi Kivity0f65dd72011-04-20 13:37:53 +03007017static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
7018 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007019 const void *old,
7020 const void *new,
7021 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03007022 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007023{
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007024 struct kvm_host_map map;
Avi Kivity0f65dd72011-04-20 13:37:53 +03007025 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02007026 u64 page_line_mask;
Avi Kivitydaea3e72010-03-15 13:59:54 +02007027 gpa_t gpa;
Avi Kivitydaea3e72010-03-15 13:59:54 +02007028 char *kaddr;
7029 bool exchanged;
7030
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007031 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02007032 if (bytes > 8 || (bytes & (bytes - 1)))
7033 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007034
Avi Kivitydaea3e72010-03-15 13:59:54 +02007035 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05007036
Avi Kivitydaea3e72010-03-15 13:59:54 +02007037 if (gpa == UNMAPPED_GVA ||
7038 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
7039 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007040
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02007041 /*
7042 * Emulate the atomic as a straight write to avoid #AC if SLD is
7043 * enabled in the host and the access splits a cache line.
7044 */
7045 if (boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
7046 page_line_mask = ~(cache_line_size() - 1);
7047 else
7048 page_line_mask = PAGE_MASK;
7049
7050 if (((gpa + bytes - 1) & page_line_mask) != (gpa & page_line_mask))
Avi Kivitydaea3e72010-03-15 13:59:54 +02007051 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007052
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007053 if (kvm_vcpu_map(vcpu, gpa_to_gfn(gpa), &map))
Wei Yongjunc19b8bd2010-07-15 08:51:58 +08007054 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02007055
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007056 kaddr = map.hva + offset_in_page(gpa);
7057
Avi Kivitydaea3e72010-03-15 13:59:54 +02007058 switch (bytes) {
7059 case 1:
7060 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
7061 break;
7062 case 2:
7063 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
7064 break;
7065 case 4:
7066 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
7067 break;
7068 case 8:
7069 exchanged = CMPXCHG64(kaddr, old, new);
7070 break;
7071 default:
7072 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007073 }
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007074
7075 kvm_vcpu_unmap(vcpu, &map, true);
Avi Kivitydaea3e72010-03-15 13:59:54 +02007076
7077 if (!exchanged)
7078 return X86EMUL_CMPXCHG_FAILED;
7079
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08007080 kvm_page_track_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03007081
7082 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02007083
Marcelo Tosatti3200f402008-03-29 20:17:59 -03007084emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02007085 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007086
Avi Kivity0f65dd72011-04-20 13:37:53 +03007087 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007088}
7089
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007090static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
7091{
Wanpeng Licbfc6c92017-05-19 02:46:56 -07007092 int r = 0, i;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007093
Wanpeng Licbfc6c92017-05-19 02:46:56 -07007094 for (i = 0; i < vcpu->arch.pio.count; i++) {
7095 if (vcpu->arch.pio.in)
7096 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
7097 vcpu->arch.pio.size, pd);
7098 else
7099 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
7100 vcpu->arch.pio.port, vcpu->arch.pio.size,
7101 pd);
7102 if (r)
7103 break;
7104 pd += vcpu->arch.pio.size;
7105 }
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007106 return r;
7107}
7108
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007109static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007110 unsigned short port,
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007111 unsigned int count, bool in)
7112{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007113 vcpu->arch.pio.port = port;
7114 vcpu->arch.pio.in = in;
7115 vcpu->arch.pio.count = count;
7116 vcpu->arch.pio.size = size;
7117
Paolo Bonzini0d33b1b2021-10-13 12:29:42 -04007118 if (!kernel_pio(vcpu, vcpu->arch.pio_data))
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007119 return 1;
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007120
7121 vcpu->run->exit_reason = KVM_EXIT_IO;
7122 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
7123 vcpu->run->io.size = size;
7124 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
7125 vcpu->run->io.count = count;
7126 vcpu->run->io.port = port;
7127
7128 return 0;
7129}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007130
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007131static int __emulator_pio_in(struct kvm_vcpu *vcpu, int size,
7132 unsigned short port, unsigned int count)
7133{
7134 WARN_ON(vcpu->arch.pio.count);
7135 memset(vcpu->arch.pio_data, 0, size * count);
7136 return emulator_pio_in_out(vcpu, size, port, count, true);
7137}
7138
Paolo Bonzini6b5efc92021-10-12 12:35:20 -04007139static void complete_emulator_pio_in(struct kvm_vcpu *vcpu, void *val)
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007140{
Paolo Bonzini6b5efc92021-10-12 12:35:20 -04007141 int size = vcpu->arch.pio.size;
7142 unsigned count = vcpu->arch.pio.count;
7143 memcpy(val, vcpu->arch.pio_data, size * count);
7144 trace_kvm_pio(KVM_PIO_IN, vcpu->arch.pio.port, size, count, vcpu->arch.pio_data);
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007145 vcpu->arch.pio.count = 0;
7146}
7147
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007148static int emulator_pio_in(struct kvm_vcpu *vcpu, int size,
7149 unsigned short port, void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007150{
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007151 if (vcpu->arch.pio.count) {
Sean Christophersond07898e2021-10-25 13:13:10 -07007152 /*
7153 * Complete a previous iteration that required userspace I/O.
7154 * Note, @count isn't guaranteed to match pio.count as userspace
7155 * can modify ECX before rerunning the vCPU. Ignore any such
7156 * shenanigans as KVM doesn't support modifying the rep count,
7157 * and the emulator ensures @count doesn't overflow the buffer.
7158 */
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007159 } else {
7160 int r = __emulator_pio_in(vcpu, size, port, count);
7161 if (!r)
7162 return r;
Avi Kivityca1d4a92011-04-20 13:37:53 +03007163
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007164 /* Results already available, fall through. */
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007165 }
7166
Paolo Bonzini6b5efc92021-10-12 12:35:20 -04007167 complete_emulator_pio_in(vcpu, val);
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007168 return 1;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007169}
7170
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007171static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
7172 int size, unsigned short port, void *val,
7173 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007174{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007175 return emulator_pio_in(emul_to_vcpu(ctxt), size, port, val, count);
Avi Kivityca1d4a92011-04-20 13:37:53 +03007176
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007177}
7178
7179static int emulator_pio_out(struct kvm_vcpu *vcpu, int size,
7180 unsigned short port, const void *val,
7181 unsigned int count)
7182{
Paolo Bonzini0d33b1b2021-10-13 12:29:42 -04007183 int ret;
7184
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007185 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02007186 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007187 ret = emulator_pio_in_out(vcpu, size, port, count, false);
Paolo Bonzini0d33b1b2021-10-13 12:29:42 -04007188 if (ret)
7189 vcpu->arch.pio.count = 0;
7190
7191 return ret;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007192}
7193
Carsten Ottebbd9b642007-10-30 18:44:21 +01007194static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
7195 int size, unsigned short port,
7196 const void *val, unsigned int count)
7197{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007198 return emulator_pio_out(emul_to_vcpu(ctxt), size, port, val, count);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007199}
7200
7201static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
7202{
Jason Baronb36464772021-01-14 22:27:56 -05007203 return static_call(kvm_x86_get_segment_base)(vcpu, seg);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007204}
7205
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007206static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007207{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007208 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007209}
7210
Jiang Biaoae6a2372016-11-07 08:54:51 +08007211static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007212{
7213 if (!need_emulate_wbinvd(vcpu))
7214 return X86EMUL_CONTINUE;
7215
Jason Baronb36464772021-01-14 22:27:56 -05007216 if (static_call(kvm_x86_has_wbinvd_exit)()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01007217 int cpu = get_cpu();
7218
7219 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Wanpeng Lic2162e12021-03-12 10:45:51 +08007220 on_each_cpu_mask(vcpu->arch.wbinvd_dirty_mask,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007221 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01007222 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007223 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01007224 } else
7225 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007226 return X86EMUL_CONTINUE;
7227}
Joel Schopp5cb56052015-03-02 13:43:31 -06007228
7229int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
7230{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007231 kvm_emulate_wbinvd_noskip(vcpu);
7232 return kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06007233}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007234EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
7235
Joel Schopp5cb56052015-03-02 13:43:31 -06007236
7237
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007238static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
7239{
Joel Schopp5cb56052015-03-02 13:43:31 -06007240 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007241}
7242
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05007243static void emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
7244 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007245{
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05007246 kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007247}
7248
Xiubo Li52eb5a62015-03-13 17:39:45 +08007249static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
7250 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007251{
Gleb Natapov338dbc92010-04-28 19:15:32 +03007252
Paolo Bonzini996ff542020-12-14 07:49:54 -05007253 return kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007254}
7255
Gleb Natapov52a46612010-03-18 15:20:03 +02007256static u64 mk_cr_64(u64 curr_cr, u32 new_val)
7257{
7258 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
7259}
7260
Avi Kivity717746e2011-04-20 13:37:53 +03007261static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02007262{
Avi Kivity717746e2011-04-20 13:37:53 +03007263 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02007264 unsigned long value;
7265
7266 switch (cr) {
7267 case 0:
7268 value = kvm_read_cr0(vcpu);
7269 break;
7270 case 2:
7271 value = vcpu->arch.cr2;
7272 break;
7273 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02007274 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02007275 break;
7276 case 4:
7277 value = kvm_read_cr4(vcpu);
7278 break;
7279 case 8:
7280 value = kvm_get_cr8(vcpu);
7281 break;
7282 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007283 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02007284 return 0;
7285 }
7286
7287 return value;
7288}
7289
Avi Kivity717746e2011-04-20 13:37:53 +03007290static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02007291{
Avi Kivity717746e2011-04-20 13:37:53 +03007292 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03007293 int res = 0;
7294
Gleb Natapov52a46612010-03-18 15:20:03 +02007295 switch (cr) {
7296 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03007297 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007298 break;
7299 case 2:
7300 vcpu->arch.cr2 = val;
7301 break;
7302 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03007303 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007304 break;
7305 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03007306 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007307 break;
7308 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01007309 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007310 break;
7311 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007312 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03007313 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02007314 }
Gleb Natapov0f122442010-04-28 19:15:31 +03007315
7316 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02007317}
7318
Avi Kivity717746e2011-04-20 13:37:53 +03007319static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02007320{
Jason Baronb36464772021-01-14 22:27:56 -05007321 return static_call(kvm_x86_get_cpl)(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02007322}
7323
Avi Kivity4bff1e862011-04-20 13:37:53 +03007324static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007325{
Jason Baronb36464772021-01-14 22:27:56 -05007326 static_call(kvm_x86_get_gdt)(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007327}
7328
Avi Kivity4bff1e862011-04-20 13:37:53 +03007329static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007330{
Jason Baronb36464772021-01-14 22:27:56 -05007331 static_call(kvm_x86_get_idt)(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007332}
7333
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007334static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7335{
Jason Baronb36464772021-01-14 22:27:56 -05007336 static_call(kvm_x86_set_gdt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007337}
7338
7339static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7340{
Jason Baronb36464772021-01-14 22:27:56 -05007341 static_call(kvm_x86_set_idt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007342}
7343
Avi Kivity4bff1e862011-04-20 13:37:53 +03007344static unsigned long emulator_get_cached_segment_base(
7345 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03007346{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007347 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03007348}
7349
Avi Kivity1aa36612011-04-27 13:20:30 +03007350static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
7351 struct desc_struct *desc, u32 *base3,
7352 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007353{
7354 struct kvm_segment var;
7355
Avi Kivity4bff1e862011-04-20 13:37:53 +03007356 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03007357 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007358
Gleb Natapov378a8b02013-01-21 15:36:48 +02007359 if (var.unusable) {
7360 memset(desc, 0, sizeof(*desc));
Radim Krčmářf0367ee2017-05-18 19:37:30 +02007361 if (base3)
7362 *base3 = 0;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007363 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02007364 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007365
7366 if (var.g)
7367 var.limit >>= 12;
7368 set_desc_limit(desc, var.limit);
7369 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02007370#ifdef CONFIG_X86_64
7371 if (base3)
7372 *base3 = var.base >> 32;
7373#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007374 desc->type = var.type;
7375 desc->s = var.s;
7376 desc->dpl = var.dpl;
7377 desc->p = var.present;
7378 desc->avl = var.avl;
7379 desc->l = var.l;
7380 desc->d = var.db;
7381 desc->g = var.g;
7382
7383 return true;
7384}
7385
Avi Kivity1aa36612011-04-27 13:20:30 +03007386static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
7387 struct desc_struct *desc, u32 base3,
7388 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007389{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007390 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007391 struct kvm_segment var;
7392
Avi Kivity1aa36612011-04-27 13:20:30 +03007393 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007394 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02007395#ifdef CONFIG_X86_64
7396 var.base |= ((u64)base3) << 32;
7397#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007398 var.limit = get_desc_limit(desc);
7399 if (desc->g)
7400 var.limit = (var.limit << 12) | 0xfff;
7401 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007402 var.dpl = desc->dpl;
7403 var.db = desc->d;
7404 var.s = desc->s;
7405 var.l = desc->l;
7406 var.g = desc->g;
7407 var.avl = desc->avl;
7408 var.present = desc->p;
7409 var.unusable = !var.present;
7410 var.padding = 0;
7411
7412 kvm_set_segment(vcpu, &var, seg);
7413 return;
7414}
7415
Avi Kivity717746e2011-04-20 13:37:53 +03007416static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
7417 u32 msr_index, u64 *pdata)
7418{
Alexander Graf1ae09952020-09-25 16:34:16 +02007419 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7420 int r;
7421
7422 r = kvm_get_msr(vcpu, msr_index, pdata);
7423
Hou Wenlongd2f7d492021-11-02 17:15:31 +08007424 if (r && kvm_msr_user_space(vcpu, msr_index, KVM_EXIT_X86_RDMSR, 0,
7425 complete_emulated_rdmsr, r)) {
Alexander Graf1ae09952020-09-25 16:34:16 +02007426 /* Bounce to user space */
7427 return X86EMUL_IO_NEEDED;
7428 }
7429
7430 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007431}
7432
7433static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
7434 u32 msr_index, u64 data)
7435{
Alexander Graf1ae09952020-09-25 16:34:16 +02007436 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7437 int r;
7438
7439 r = kvm_set_msr(vcpu, msr_index, data);
7440
Hou Wenlongd2f7d492021-11-02 17:15:31 +08007441 if (r && kvm_msr_user_space(vcpu, msr_index, KVM_EXIT_X86_WRMSR, data,
7442 complete_emulated_msr_access, r)) {
Alexander Graf1ae09952020-09-25 16:34:16 +02007443 /* Bounce to user space */
7444 return X86EMUL_IO_NEEDED;
7445 }
7446
7447 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007448}
7449
Paolo Bonzini64d60672015-05-07 11:36:11 +02007450static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
7451{
7452 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7453
7454 return vcpu->arch.smbase;
7455}
7456
7457static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
7458{
7459 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7460
7461 vcpu->arch.smbase = smbase;
7462}
7463
Nadav Amit67f4d422014-06-02 18:34:09 +03007464static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
7465 u32 pmc)
7466{
Jim Mattsone6cd31f2021-11-05 13:20:58 -07007467 if (kvm_pmu_is_valid_rdpmc_ecx(emul_to_vcpu(ctxt), pmc))
7468 return 0;
7469 return -EINVAL;
Nadav Amit67f4d422014-06-02 18:34:09 +03007470}
7471
Avi Kivity222d21a2011-11-10 14:57:30 +02007472static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
7473 u32 pmc, u64 *pdata)
7474{
Wei Huangc6702c92015-06-19 13:44:45 +02007475 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02007476}
7477
Avi Kivity6c3287f2011-04-20 15:43:05 +03007478static void emulator_halt(struct x86_emulate_ctxt *ctxt)
7479{
7480 emul_to_vcpu(ctxt)->arch.halt_request = 1;
7481}
7482
Avi Kivity29535382011-04-20 13:37:53 +03007483static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007484 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007485 enum x86_intercept_stage stage)
7486{
Jason Baronb36464772021-01-14 22:27:56 -05007487 return static_call(kvm_x86_check_intercept)(emul_to_vcpu(ctxt), info, stage,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007488 &ctxt->exception);
Avi Kivityc4f035c2011-04-04 12:39:22 +02007489}
7490
Yu Zhange911eb32017-08-24 20:27:52 +08007491static bool emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Sean Christophersonf91af512020-03-04 17:34:37 -08007492 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx,
7493 bool exact_only)
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007494{
Sean Christophersonf91af512020-03-04 17:34:37 -08007495 return kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx, exact_only);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007496}
7497
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007498static bool emulator_guest_has_long_mode(struct x86_emulate_ctxt *ctxt)
7499{
7500 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_LM);
7501}
7502
7503static bool emulator_guest_has_movbe(struct x86_emulate_ctxt *ctxt)
7504{
7505 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_MOVBE);
7506}
7507
7508static bool emulator_guest_has_fxsr(struct x86_emulate_ctxt *ctxt)
7509{
7510 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_FXSR);
7511}
7512
Avi Kivitydd856ef2012-08-27 23:46:17 +03007513static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
7514{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007515 return kvm_register_read_raw(emul_to_vcpu(ctxt), reg);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007516}
7517
7518static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
7519{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007520 kvm_register_write_raw(emul_to_vcpu(ctxt), reg, val);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007521}
7522
Nadav Amit801806d2015-01-26 09:32:23 +02007523static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
7524{
Jason Baronb36464772021-01-14 22:27:56 -05007525 static_call(kvm_x86_set_nmi_mask)(emul_to_vcpu(ctxt), masked);
Nadav Amit801806d2015-01-26 09:32:23 +02007526}
7527
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007528static unsigned emulator_get_hflags(struct x86_emulate_ctxt *ctxt)
7529{
7530 return emul_to_vcpu(ctxt)->arch.hflags;
7531}
7532
Sean Christophersonedce4652021-06-09 11:56:13 -07007533static void emulator_exiting_smm(struct x86_emulate_ctxt *ctxt)
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007534{
Sean Christopherson78fcb2c2021-06-09 11:56:11 -07007535 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7536
Sean Christophersondc872752021-06-09 11:56:15 -07007537 kvm_smm_changed(vcpu, false);
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007538}
7539
Sean Christophersonecc513e2021-06-09 11:56:19 -07007540static int emulator_leave_smm(struct x86_emulate_ctxt *ctxt,
Sean Christophersoned193212019-04-02 08:03:09 -07007541 const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007542{
Sean Christophersonecc513e2021-06-09 11:56:19 -07007543 return static_call(kvm_x86_leave_smm)(emul_to_vcpu(ctxt), smstate);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007544}
7545
Sean Christopherson25b17222021-06-09 11:56:12 -07007546static void emulator_triple_fault(struct x86_emulate_ctxt *ctxt)
7547{
7548 kvm_make_request(KVM_REQ_TRIPLE_FAULT, emul_to_vcpu(ctxt));
7549}
7550
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007551static int emulator_set_xcr(struct x86_emulate_ctxt *ctxt, u32 index, u64 xcr)
7552{
7553 return __kvm_set_xcr(emul_to_vcpu(ctxt), index, xcr);
7554}
7555
Mathias Krause0225fb52012-08-30 01:30:16 +02007556static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03007557 .read_gpr = emulator_read_gpr,
7558 .write_gpr = emulator_write_gpr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02007559 .read_std = emulator_read_std,
7560 .write_std = emulator_write_std,
Radim Krčmář7a036a62015-10-30 16:36:24 +01007561 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02007562 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007563 .read_emulated = emulator_read_emulated,
7564 .write_emulated = emulator_write_emulated,
7565 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007566 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007567 .pio_in_emulated = emulator_pio_in_emulated,
7568 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03007569 .get_segment = emulator_get_segment,
7570 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03007571 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007572 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007573 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007574 .set_gdt = emulator_set_gdt,
7575 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02007576 .get_cr = emulator_get_cr,
7577 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02007578 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03007579 .get_dr = emulator_get_dr,
7580 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02007581 .get_smbase = emulator_get_smbase,
7582 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03007583 .set_msr = emulator_set_msr,
7584 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03007585 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02007586 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03007587 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007588 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03007589 .fix_hypercall = emulator_fix_hypercall,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007590 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007591 .get_cpuid = emulator_get_cpuid,
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007592 .guest_has_long_mode = emulator_guest_has_long_mode,
7593 .guest_has_movbe = emulator_guest_has_movbe,
7594 .guest_has_fxsr = emulator_guest_has_fxsr,
Nadav Amit801806d2015-01-26 09:32:23 +02007595 .set_nmi_mask = emulator_set_nmi_mask,
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007596 .get_hflags = emulator_get_hflags,
Sean Christophersonedce4652021-06-09 11:56:13 -07007597 .exiting_smm = emulator_exiting_smm,
Sean Christophersonecc513e2021-06-09 11:56:19 -07007598 .leave_smm = emulator_leave_smm,
Sean Christopherson25b17222021-06-09 11:56:12 -07007599 .triple_fault = emulator_triple_fault,
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007600 .set_xcr = emulator_set_xcr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007601};
7602
Gleb Natapov95cb2292010-04-28 19:15:43 +03007603static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
7604{
Jason Baronb36464772021-01-14 22:27:56 -05007605 u32 int_shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03007606 /*
7607 * an sti; sti; sequence only disable interrupts for the first
7608 * instruction. So, if the last instruction, be it emulated or
7609 * not, left the system with the INT_STI flag enabled, it
7610 * means that the last instruction is an sti. We should not
7611 * leave the flag on in this case. The same goes for mov ss
7612 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02007613 if (int_shadow & mask)
7614 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007615 if (unlikely(int_shadow || mask)) {
Jason Baronb36464772021-01-14 22:27:56 -05007616 static_call(kvm_x86_set_interrupt_shadow)(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007617 if (!mask)
7618 kvm_make_request(KVM_REQ_EVENT, vcpu);
7619 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03007620}
7621
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007622static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03007623{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007624 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02007625 if (ctxt->exception.vector == PF_VECTOR)
Sean Christopherson53b3d8e2020-03-20 14:28:01 -07007626 return kvm_inject_emulated_page_fault(vcpu, &ctxt->exception);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007627
7628 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02007629 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
7630 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03007631 else
Avi Kivityda9cb572010-11-22 17:53:21 +02007632 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007633 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03007634}
7635
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007636static struct x86_emulate_ctxt *alloc_emulate_ctxt(struct kvm_vcpu *vcpu)
7637{
7638 struct x86_emulate_ctxt *ctxt;
7639
7640 ctxt = kmem_cache_zalloc(x86_emulator_cache, GFP_KERNEL_ACCOUNT);
7641 if (!ctxt) {
7642 pr_err("kvm: failed to allocate vcpu's emulator\n");
7643 return NULL;
7644 }
7645
7646 ctxt->vcpu = vcpu;
7647 ctxt->ops = &emulate_ops;
7648 vcpu->arch.emulate_ctxt = ctxt;
7649
7650 return ctxt;
7651}
7652
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007653static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
7654{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007655 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007656 int cs_db, cs_l;
7657
Jason Baronb36464772021-01-14 22:27:56 -05007658 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007659
Sean Christopherson744e6992020-02-18 15:03:09 -08007660 ctxt->gpa_available = false;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007661 ctxt->eflags = kvm_get_rflags(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007662 ctxt->tf = (ctxt->eflags & X86_EFLAGS_TF) != 0;
7663
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007664 ctxt->eip = kvm_rip_read(vcpu);
7665 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
7666 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03007667 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007668 cs_db ? X86EMUL_MODE_PROT32 :
7669 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02007670 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007671 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
7672 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007673
Wanpeng Lida6393c2021-05-27 17:01:36 -07007674 ctxt->interruptibility = 0;
7675 ctxt->have_exception = false;
7676 ctxt->exception.vector = -1;
7677 ctxt->perm_ok = false;
7678
Avi Kivitydd856ef2012-08-27 23:46:17 +03007679 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007680 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007681}
7682
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007683void kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02007684{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007685 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02007686 int ret;
7687
7688 init_emulate_ctxt(vcpu);
7689
Avi Kivity9dac77f2011-06-01 15:34:25 +03007690 ctxt->op_bytes = 2;
7691 ctxt->ad_bytes = 2;
7692 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007693 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02007694
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007695 if (ret != X86EMUL_CONTINUE) {
7696 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7697 } else {
7698 ctxt->eip = ctxt->_eip;
7699 kvm_rip_write(vcpu, ctxt->eip);
7700 kvm_set_rflags(vcpu, ctxt->eflags);
7701 }
Mohammed Gamal63995652010-09-19 14:34:06 +02007702}
7703EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
7704
David Edmondsone615e352021-09-20 11:37:36 +01007705static void prepare_emulation_failure_exit(struct kvm_vcpu *vcpu, u64 *data,
7706 u8 ndata, u8 *insn_bytes, u8 insn_size)
Aaron Lewis19238e72021-05-10 07:48:33 -07007707{
Aaron Lewis19238e72021-05-10 07:48:33 -07007708 struct kvm_run *run = vcpu->run;
David Edmondsone615e352021-09-20 11:37:36 +01007709 u64 info[5];
7710 u8 info_start;
7711
7712 /*
7713 * Zero the whole array used to retrieve the exit info, as casting to
7714 * u32 for select entries will leave some chunks uninitialized.
7715 */
7716 memset(&info, 0, sizeof(info));
7717
7718 static_call(kvm_x86_get_exit_info)(vcpu, (u32 *)&info[0], &info[1],
7719 &info[2], (u32 *)&info[3],
7720 (u32 *)&info[4]);
Aaron Lewis19238e72021-05-10 07:48:33 -07007721
7722 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7723 run->emulation_failure.suberror = KVM_INTERNAL_ERROR_EMULATION;
David Edmondsone615e352021-09-20 11:37:36 +01007724
7725 /*
7726 * There's currently space for 13 entries, but 5 are used for the exit
7727 * reason and info. Restrict to 4 to reduce the maintenance burden
7728 * when expanding kvm_run.emulation_failure in the future.
7729 */
7730 if (WARN_ON_ONCE(ndata > 4))
7731 ndata = 4;
7732
7733 /* Always include the flags as a 'data' entry. */
7734 info_start = 1;
Aaron Lewis19238e72021-05-10 07:48:33 -07007735 run->emulation_failure.flags = 0;
7736
7737 if (insn_size) {
David Edmondsone615e352021-09-20 11:37:36 +01007738 BUILD_BUG_ON((sizeof(run->emulation_failure.insn_size) +
7739 sizeof(run->emulation_failure.insn_bytes) != 16));
7740 info_start += 2;
Aaron Lewis19238e72021-05-10 07:48:33 -07007741 run->emulation_failure.flags |=
7742 KVM_INTERNAL_ERROR_EMULATION_FLAG_INSTRUCTION_BYTES;
7743 run->emulation_failure.insn_size = insn_size;
7744 memset(run->emulation_failure.insn_bytes, 0x90,
7745 sizeof(run->emulation_failure.insn_bytes));
David Edmondsone615e352021-09-20 11:37:36 +01007746 memcpy(run->emulation_failure.insn_bytes, insn_bytes, insn_size);
Aaron Lewis19238e72021-05-10 07:48:33 -07007747 }
David Edmondsone615e352021-09-20 11:37:36 +01007748
7749 memcpy(&run->internal.data[info_start], info, sizeof(info));
7750 memcpy(&run->internal.data[info_start + ARRAY_SIZE(info)], data,
7751 ndata * sizeof(data[0]));
7752
7753 run->emulation_failure.ndata = info_start + ARRAY_SIZE(info) + ndata;
Aaron Lewis19238e72021-05-10 07:48:33 -07007754}
7755
David Edmondsone615e352021-09-20 11:37:36 +01007756static void prepare_emulation_ctxt_failure_exit(struct kvm_vcpu *vcpu)
7757{
7758 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
7759
7760 prepare_emulation_failure_exit(vcpu, NULL, 0, ctxt->fetch.data,
7761 ctxt->fetch.end - ctxt->fetch.data);
7762}
7763
7764void __kvm_prepare_emulation_failure_exit(struct kvm_vcpu *vcpu, u64 *data,
7765 u8 ndata)
7766{
7767 prepare_emulation_failure_exit(vcpu, data, ndata, NULL, 0);
7768}
7769EXPORT_SYMBOL_GPL(__kvm_prepare_emulation_failure_exit);
7770
7771void kvm_prepare_emulation_failure_exit(struct kvm_vcpu *vcpu)
7772{
7773 __kvm_prepare_emulation_failure_exit(vcpu, NULL, 0);
7774}
7775EXPORT_SYMBOL_GPL(kvm_prepare_emulation_failure_exit);
7776
Liran Alone2366172018-03-12 13:12:49 +02007777static int handle_emulation_failure(struct kvm_vcpu *vcpu, int emulation_type)
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007778{
Aaron Lewis19238e72021-05-10 07:48:33 -07007779 struct kvm *kvm = vcpu->kvm;
7780
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007781 ++vcpu->stat.insn_emulation_fail;
7782 trace_kvm_emulate_insn_failed(vcpu);
Liran Alone2366172018-03-12 13:12:49 +02007783
Sean Christopherson42cbf062019-08-27 14:40:31 -07007784 if (emulation_type & EMULTYPE_VMWARE_GP) {
7785 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007786 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07007787 }
Liran Alone2366172018-03-12 13:12:49 +02007788
Aaron Lewis19238e72021-05-10 07:48:33 -07007789 if (kvm->arch.exit_on_emulation_error ||
7790 (emulation_type & EMULTYPE_SKIP)) {
David Edmondsone615e352021-09-20 11:37:36 +01007791 prepare_emulation_ctxt_failure_exit(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007792 return 0;
Sean Christopherson738fece2019-08-27 14:40:34 -07007793 }
7794
Sean Christopherson22da61c2019-08-27 14:40:28 -07007795 kvm_queue_exception(vcpu, UD_VECTOR);
7796
Jason Baronb36464772021-01-14 22:27:56 -05007797 if (!is_guest_mode(vcpu) && static_call(kvm_x86_get_cpl)(vcpu) == 0) {
David Edmondsone615e352021-09-20 11:37:36 +01007798 prepare_emulation_ctxt_failure_exit(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007799 return 0;
Joerg Roedelfc3a9152010-11-29 17:51:49 +01007800 }
Liran Alone2366172018-03-12 13:12:49 +02007801
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007802 return 1;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007803}
7804
Sean Christopherson736c2912019-12-06 15:57:14 -08007805static bool reexecute_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
Gleb Natapov991eebf2013-04-11 12:10:51 +03007806 bool write_fault_to_shadow_pgtable,
7807 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03007808{
Sean Christopherson736c2912019-12-06 15:57:14 -08007809 gpa_t gpa = cr2_or_gpa;
Dan Williamsba049e92016-01-15 16:56:11 -08007810 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007811
Sean Christopherson92daa482020-02-18 15:03:08 -08007812 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Gleb Natapov991eebf2013-04-11 12:10:51 +03007813 return false;
7814
Sean Christopherson92daa482020-02-18 15:03:08 -08007815 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7816 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007817 return false;
7818
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007819 if (!vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007820 /*
7821 * Write permission should be allowed since only
7822 * write access need to be emulated.
7823 */
Sean Christopherson736c2912019-12-06 15:57:14 -08007824 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03007825
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007826 /*
7827 * If the mapping is invalid in guest, let cpu retry
7828 * it to generate fault.
7829 */
7830 if (gpa == UNMAPPED_GVA)
7831 return true;
7832 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007833
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007834 /*
7835 * Do not retry the unhandleable instruction if it faults on the
7836 * readonly host memory, otherwise it will goto a infinite loop:
7837 * retry instruction -> write #PF -> emulation fail -> retry
7838 * instruction -> ...
7839 */
7840 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007841
7842 /*
7843 * If the instruction failed on the error pfn, it can not be fixed,
7844 * report the error to userspace.
7845 */
7846 if (is_error_noslot_pfn(pfn))
7847 return false;
7848
7849 kvm_release_pfn_clean(pfn);
7850
7851 /* The instructions are well-emulated on direct mmu. */
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007852 if (vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007853 unsigned int indirect_shadow_pages;
7854
Ben Gardon531810c2021-02-02 10:57:24 -08007855 write_lock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007856 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
Ben Gardon531810c2021-02-02 10:57:24 -08007857 write_unlock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007858
7859 if (indirect_shadow_pages)
7860 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
7861
Gleb Natapova6f177e2010-07-08 12:41:12 +03007862 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007863 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007864
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007865 /*
7866 * if emulation was due to access to shadowed page table
7867 * and it failed try to unshadow page and re-enter the
7868 * guest to let CPU execute the instruction.
7869 */
7870 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08007871
7872 /*
7873 * If the access faults on its page table, it can not
7874 * be fixed by unprotecting shadow page and it should
7875 * be reported to userspace.
7876 */
7877 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007878}
7879
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007880static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
Sean Christopherson736c2912019-12-06 15:57:14 -08007881 gpa_t cr2_or_gpa, int emulation_type)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007882{
7883 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Sean Christopherson736c2912019-12-06 15:57:14 -08007884 unsigned long last_retry_eip, last_retry_addr, gpa = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007885
7886 last_retry_eip = vcpu->arch.last_retry_eip;
7887 last_retry_addr = vcpu->arch.last_retry_addr;
7888
7889 /*
7890 * If the emulation is caused by #PF and it is non-page_table
7891 * writing instruction, it means the VM-EXIT is caused by shadow
7892 * page protected, we can zap the shadow page and retry this
7893 * instruction directly.
7894 *
7895 * Note: if the guest uses a non-page-table modifying instruction
7896 * on the PDE that points to the instruction, then we will unmap
7897 * the instruction and go to an infinite loop. So, we cache the
7898 * last retried eip and the last fault address, if we meet the eip
7899 * and the address again, we can break out of the potential infinite
7900 * loop.
7901 */
7902 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
7903
Sean Christopherson92daa482020-02-18 15:03:08 -08007904 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007905 return false;
7906
Sean Christopherson92daa482020-02-18 15:03:08 -08007907 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7908 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007909 return false;
7910
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007911 if (x86_page_table_writing_insn(ctxt))
7912 return false;
7913
Sean Christopherson736c2912019-12-06 15:57:14 -08007914 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2_or_gpa)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007915 return false;
7916
7917 vcpu->arch.last_retry_eip = ctxt->eip;
Sean Christopherson736c2912019-12-06 15:57:14 -08007918 vcpu->arch.last_retry_addr = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007919
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007920 if (!vcpu->arch.mmu->direct_map)
Sean Christopherson736c2912019-12-06 15:57:14 -08007921 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007922
Xiao Guangrong22368022013-01-13 23:44:12 +08007923 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007924
7925 return true;
7926}
7927
Gleb Natapov716d51a2012-09-03 15:24:26 +03007928static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
7929static int complete_emulated_pio(struct kvm_vcpu *vcpu);
7930
Sean Christophersondc872752021-06-09 11:56:15 -07007931static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm)
Paolo Bonzinia5845392015-04-01 18:18:53 +02007932{
Sean Christopherson1270e642021-06-09 11:56:17 -07007933 trace_kvm_smm_transition(vcpu->vcpu_id, vcpu->arch.smbase, entering_smm);
Sean Christopherson0d7ee6f2021-06-09 11:56:16 -07007934
Sean Christophersondc872752021-06-09 11:56:15 -07007935 if (entering_smm) {
7936 vcpu->arch.hflags |= HF_SMM_MASK;
7937 } else {
7938 vcpu->arch.hflags &= ~(HF_SMM_MASK | HF_SMM_INSIDE_NMI_MASK);
7939
Paolo Bonzinic43203c2016-06-01 22:26:00 +02007940 /* Process a latched INIT or SMI, if any. */
7941 kvm_make_request(KVM_REQ_EVENT, vcpu);
Maxim Levitsky37687c42021-09-13 17:09:50 +03007942
7943 /*
7944 * Even if KVM_SET_SREGS2 loaded PDPTRs out of band,
7945 * on SMM exit we still need to reload them from
7946 * guest memory
7947 */
7948 vcpu->arch.pdptrs_from_userspace = false;
Paolo Bonzini64d60672015-05-07 11:36:11 +02007949 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02007950
7951 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007952}
7953
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007954static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
7955 unsigned long *db)
7956{
7957 u32 dr6 = 0;
7958 int i;
7959 u32 enable, rwlen;
7960
7961 enable = dr7;
7962 rwlen = dr7 >> 16;
7963 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
7964 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
7965 dr6 |= (1 << i);
7966 return dr6;
7967}
7968
Sean Christopherson120c2c42019-08-27 14:40:29 -07007969static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007970{
7971 struct kvm_run *kvm_run = vcpu->run;
7972
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007973 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08007974 kvm_run->debug.arch.dr6 = DR6_BS | DR6_ACTIVE_LOW;
Peter Xud5d260c2020-05-05 16:49:59 -04007975 kvm_run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007976 kvm_run->debug.arch.exception = DB_VECTOR;
7977 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007978 return 0;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007979 }
Sean Christopherson120c2c42019-08-27 14:40:29 -07007980 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BS);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007981 return 1;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007982}
7983
Kyle Huey6affcbe2016-11-29 12:40:40 -08007984int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu)
7985{
Jason Baronb36464772021-01-14 22:27:56 -05007986 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02007987 int r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08007988
Jason Baronb36464772021-01-14 22:27:56 -05007989 r = static_call(kvm_x86_skip_emulated_instruction)(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007990 if (unlikely(!r))
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02007991 return 0;
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007992
Eric Hankland9cd803d2021-11-30 15:42:20 +08007993 kvm_pmu_trigger_event(vcpu, PERF_COUNT_HW_INSTRUCTIONS);
7994
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007995 /*
7996 * rflags is the old, "raw" value of the flags. The new value has
7997 * not been saved yet.
7998 *
7999 * This is correct even for TF set by the guest, because "the
8000 * processor will not generate this exception after the instruction
8001 * that sets the TF flag".
8002 */
8003 if (unlikely(rflags & X86_EFLAGS_TF))
Sean Christopherson120c2c42019-08-27 14:40:29 -07008004 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008005 return r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08008006}
8007EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction);
8008
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008009static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
8010{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008011 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
8012 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02008013 struct kvm_run *kvm_run = vcpu->run;
8014 unsigned long eip = kvm_get_linear_rip(vcpu);
8015 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008016 vcpu->arch.guest_debug_dr7,
8017 vcpu->arch.eff_db);
8018
8019 if (dr6 != 0) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08008020 kvm_run->debug.arch.dr6 = dr6 | DR6_ACTIVE_LOW;
Nadav Amit82b32772014-11-02 11:54:45 +02008021 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008022 kvm_run->debug.arch.exception = DB_VECTOR;
8023 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008024 *r = 0;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008025 return true;
8026 }
8027 }
8028
Nadav Amit4161a562014-07-17 01:19:31 +03008029 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
8030 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02008031 unsigned long eip = kvm_get_linear_rip(vcpu);
8032 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008033 vcpu->arch.dr7,
8034 vcpu->arch.db);
8035
8036 if (dr6 != 0) {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04008037 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008038 *r = 1;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008039 return true;
8040 }
8041 }
8042
8043 return false;
8044}
8045
Liran Alon04789b62018-03-12 13:12:50 +02008046static bool is_vmware_backdoor_opcode(struct x86_emulate_ctxt *ctxt)
8047{
Arbel Moshe2d7921c2018-03-12 13:12:53 +02008048 switch (ctxt->opcode_len) {
8049 case 1:
8050 switch (ctxt->b) {
8051 case 0xe4: /* IN */
8052 case 0xe5:
8053 case 0xec:
8054 case 0xed:
8055 case 0xe6: /* OUT */
8056 case 0xe7:
8057 case 0xee:
8058 case 0xef:
8059 case 0x6c: /* INS */
8060 case 0x6d:
8061 case 0x6e: /* OUTS */
8062 case 0x6f:
8063 return true;
8064 }
8065 break;
8066 case 2:
8067 switch (ctxt->b) {
8068 case 0x33: /* RDPMC */
8069 return true;
8070 }
8071 break;
Liran Alon04789b62018-03-12 13:12:50 +02008072 }
8073
8074 return false;
8075}
8076
Wei Huang4aa26912021-01-26 03:18:28 -05008077/*
8078 * Decode to be emulated instruction. Return EMULATION_OK if success.
8079 */
8080int x86_decode_emulated_instruction(struct kvm_vcpu *vcpu, int emulation_type,
8081 void *insn, int insn_len)
8082{
8083 int r = EMULATION_OK;
8084 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
8085
8086 init_emulate_ctxt(vcpu);
8087
8088 /*
8089 * We will reenter on the same instruction since we do not set
8090 * complete_userspace_io. This does not handle watchpoints yet,
8091 * those would be handled in the emulate_ops.
8092 */
8093 if (!(emulation_type & EMULTYPE_SKIP) &&
8094 kvm_vcpu_check_breakpoint(vcpu, &r))
8095 return r;
8096
Wanpeng Lib35491e2021-05-27 17:01:37 -07008097 r = x86_decode_insn(ctxt, insn, insn_len, emulation_type);
Wei Huang4aa26912021-01-26 03:18:28 -05008098
8099 trace_kvm_emulate_insn_start(vcpu);
8100 ++vcpu->stat.insn_emulation;
8101
8102 return r;
8103}
8104EXPORT_SYMBOL_GPL(x86_decode_emulated_instruction);
8105
Sean Christopherson736c2912019-12-06 15:57:14 -08008106int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
8107 int emulation_type, void *insn, int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01008108{
Gleb Natapov95cb2292010-04-28 19:15:43 +03008109 int r;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008110 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008111 bool writeback = true;
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07008112 bool write_fault_to_spt;
8113
Jason Baronb36464772021-01-14 22:27:56 -05008114 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, insn, insn_len)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07008115 return 1;
Carsten Ottebbd9b642007-10-30 18:44:21 +01008116
Paolo Bonzinic595cee2018-07-02 13:07:14 +02008117 vcpu->arch.l1tf_flush_l1d = true;
8118
Xiao Guangrong93c05d32013-01-13 23:49:07 +08008119 /*
8120 * Clear write_fault_to_shadow_pgtable here to ensure it is
8121 * never reused.
8122 */
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07008123 write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08008124 vcpu->arch.write_fault_to_shadow_pgtable = false;
Gleb Natapov8d7d81022011-04-12 12:36:21 +03008125
Sheng Yang571008d2008-01-02 14:49:22 +08008126 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Wei Huang4aa26912021-01-26 03:18:28 -05008127 kvm_clear_exception_queue(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008128
Wei Huang4aa26912021-01-26 03:18:28 -05008129 r = x86_decode_emulated_instruction(vcpu, emulation_type,
8130 insn, insn_len);
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09008131 if (r != EMULATION_OK) {
Sean Christophersonb4000602019-08-27 14:40:32 -07008132 if ((emulation_type & EMULTYPE_TRAP_UD) ||
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07008133 (emulation_type & EMULTYPE_TRAP_UD_FORCED)) {
8134 kvm_queue_exception(vcpu, UD_VECTOR);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008135 return 1;
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07008136 }
Sean Christopherson736c2912019-12-06 15:57:14 -08008137 if (reexecute_instruction(vcpu, cr2_or_gpa,
8138 write_fault_to_spt,
8139 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008140 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00008141 if (ctxt->have_exception) {
Jan Dakinevichc8848ce2019-08-27 13:07:08 +00008142 /*
8143 * #UD should result in just EMULATION_FAILED, and trap-like
8144 * exception should not be encountered during decode.
8145 */
8146 WARN_ON_ONCE(ctxt->exception.vector == UD_VECTOR ||
8147 exception_type(ctxt->exception.vector) == EXCPT_TRAP);
Jan Dakinevich8530a792019-08-27 13:07:09 +00008148 inject_emulated_exception(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008149 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00008150 }
Liran Alone2366172018-03-12 13:12:49 +02008151 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01008152 }
8153 }
8154
Sean Christopherson42cbf062019-08-27 14:40:31 -07008155 if ((emulation_type & EMULTYPE_VMWARE_GP) &&
8156 !is_vmware_backdoor_opcode(ctxt)) {
8157 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008158 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07008159 }
Liran Alon04789b62018-03-12 13:12:50 +02008160
Sean Christopherson1957aa62019-08-27 14:40:39 -07008161 /*
Hou Wenlong906fa902021-11-02 17:15:30 +08008162 * EMULTYPE_SKIP without EMULTYPE_COMPLETE_USER_EXIT is intended for
8163 * use *only* by vendor callbacks for kvm_skip_emulated_instruction().
8164 * The caller is responsible for updating interruptibility state and
8165 * injecting single-step #DBs.
Sean Christopherson1957aa62019-08-27 14:40:39 -07008166 */
Gleb Natapovba8afb62009-04-12 13:36:57 +03008167 if (emulation_type & EMULTYPE_SKIP) {
Sean Christopherson5e854862021-11-02 17:15:29 +08008168 if (ctxt->mode != X86EMUL_MODE_PROT64)
8169 ctxt->eip = (u32)ctxt->_eip;
8170 else
8171 ctxt->eip = ctxt->_eip;
8172
Hou Wenlong906fa902021-11-02 17:15:30 +08008173 if (emulation_type & EMULTYPE_COMPLETE_USER_EXIT) {
8174 r = 1;
8175 goto writeback;
8176 }
8177
Sean Christopherson5e854862021-11-02 17:15:29 +08008178 kvm_rip_write(vcpu, ctxt->eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03008179 if (ctxt->eflags & X86_EFLAGS_RF)
8180 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008181 return 1;
Gleb Natapovba8afb62009-04-12 13:36:57 +03008182 }
8183
Sean Christopherson736c2912019-12-06 15:57:14 -08008184 if (retry_instruction(ctxt, cr2_or_gpa, emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008185 return 1;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08008186
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008187 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03008188 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008189 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
8190 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03008191 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008192 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03008193
Gleb Natapov5cd21912010-03-18 15:20:26 +02008194restart:
Sean Christopherson92daa482020-02-18 15:03:08 -08008195 if (emulation_type & EMULTYPE_PF) {
8196 /* Save the faulting GPA (cr2) in the address field */
8197 ctxt->exception.address = cr2_or_gpa;
8198
8199 /* With shadow page tables, cr2 contains a GVA or nGPA. */
8200 if (vcpu->arch.mmu->direct_map) {
Sean Christopherson744e6992020-02-18 15:03:09 -08008201 ctxt->gpa_available = true;
8202 ctxt->gpa_val = cr2_or_gpa;
Sean Christopherson92daa482020-02-18 15:03:08 -08008203 }
8204 } else {
8205 /* Sanitize the address out of an abundance of paranoia. */
8206 ctxt->exception.address = 0;
8207 }
Tom Lendacky0f89b202016-12-14 14:59:23 -05008208
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09008209 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03008210
Joerg Roedel775fde82011-04-04 12:39:24 +02008211 if (r == EMULATION_INTERCEPTED)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008212 return 1;
Joerg Roedel775fde82011-04-04 12:39:24 +02008213
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03008214 if (r == EMULATION_FAILED) {
Sean Christopherson736c2912019-12-06 15:57:14 -08008215 if (reexecute_instruction(vcpu, cr2_or_gpa, write_fault_to_spt,
Gleb Natapov991eebf2013-04-11 12:10:51 +03008216 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008217 return 1;
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03008218
Liran Alone2366172018-03-12 13:12:49 +02008219 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01008220 }
8221
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09008222 if (ctxt->have_exception) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008223 r = 1;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02008224 if (inject_emulated_exception(vcpu))
8225 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03008226 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02008227 if (!vcpu->arch.pio.in) {
8228 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03008229 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02008230 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008231 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03008232 vcpu->arch.complete_userspace_io = complete_emulated_pio;
8233 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008234 r = 0;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008235 } else if (vcpu->mmio_needed) {
Sean Christophersonbc8a0aa2019-08-27 14:40:27 -07008236 ++vcpu->stat.mmio_exits;
8237
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008238 if (!vcpu->mmio_is_write)
8239 writeback = false;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008240 r = 0;
Gleb Natapov716d51a2012-09-03 15:24:26 +03008241 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Hou Wenlongadbfb122021-11-02 17:15:32 +08008242 } else if (vcpu->arch.complete_userspace_io) {
8243 writeback = false;
8244 r = 0;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008245 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03008246 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03008247 else
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008248 r = 1;
Gleb Natapove85d28f2010-07-29 15:11:52 +03008249
Hou Wenlong906fa902021-11-02 17:15:30 +08008250writeback:
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008251 if (writeback) {
Jason Baronb36464772021-01-14 22:27:56 -05008252 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09008253 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008254 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Nadav Amit38827db2014-11-02 11:54:53 +02008255 if (!ctxt->have_exception ||
Sean Christopherson75ee23b2019-08-23 13:55:44 -07008256 exception_type(ctxt->exception.vector) == EXCPT_TRAP) {
Eric Hankland9cd803d2021-11-30 15:42:20 +08008257 kvm_pmu_trigger_event(vcpu, PERF_COUNT_HW_INSTRUCTIONS);
Sean Christopherson75ee23b2019-08-23 13:55:44 -07008258 kvm_rip_write(vcpu, ctxt->eip);
Felipe Franciosi384dea12020-05-19 08:11:22 +00008259 if (r && (ctxt->tf || (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)))
Sean Christopherson120c2c42019-08-27 14:40:29 -07008260 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008261 if (kvm_x86_ops.update_emulated_instruction)
Jason Baronb36464772021-01-14 22:27:56 -05008262 static_call(kvm_x86_update_emulated_instruction)(vcpu);
Nadav Amit38827db2014-11-02 11:54:53 +02008263 __kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson75ee23b2019-08-23 13:55:44 -07008264 }
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008265
8266 /*
8267 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
8268 * do nothing, and it will be requested again as soon as
8269 * the shadow expires. But we still need to check here,
8270 * because POPF has no interrupt shadow.
8271 */
8272 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
8273 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008274 } else
8275 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03008276
Gleb Natapove85d28f2010-07-29 15:11:52 +03008277 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01008278}
Sean Christophersonc60658d2018-08-23 13:56:53 -07008279
8280int kvm_emulate_instruction(struct kvm_vcpu *vcpu, int emulation_type)
8281{
8282 return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
8283}
8284EXPORT_SYMBOL_GPL(kvm_emulate_instruction);
8285
8286int kvm_emulate_instruction_from_buffer(struct kvm_vcpu *vcpu,
8287 void *insn, int insn_len)
8288{
8289 return x86_emulate_instruction(vcpu, 0, 0, insn, insn_len);
8290}
8291EXPORT_SYMBOL_GPL(kvm_emulate_instruction_from_buffer);
Carsten Ottebbd9b642007-10-30 18:44:21 +01008292
Sean Christopherson8764ed52019-04-29 07:04:15 -07008293static int complete_fast_pio_out_port_0x7e(struct kvm_vcpu *vcpu)
8294{
8295 vcpu->arch.pio.count = 0;
8296 return 1;
8297}
8298
Sean Christopherson45def772019-03-11 20:01:05 -07008299static int complete_fast_pio_out(struct kvm_vcpu *vcpu)
8300{
8301 vcpu->arch.pio.count = 0;
8302
8303 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip)))
8304 return 1;
8305
8306 return kvm_skip_emulated_instruction(vcpu);
8307}
8308
Sean Christophersondca7f122018-03-08 08:57:27 -08008309static int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size,
8310 unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01008311{
Sean Christophersonde3cd112019-04-30 10:36:17 -07008312 unsigned long val = kvm_rax_read(vcpu);
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008313 int ret = emulator_pio_out(vcpu, size, port, &val, 1);
8314
Sean Christopherson8764ed52019-04-29 07:04:15 -07008315 if (ret)
8316 return ret;
Sean Christopherson45def772019-03-11 20:01:05 -07008317
Sean Christopherson8764ed52019-04-29 07:04:15 -07008318 /*
8319 * Workaround userspace that relies on old KVM behavior of %rip being
8320 * incremented prior to exiting to userspace to handle "OUT 0x7e".
8321 */
8322 if (port == 0x7e &&
8323 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_OUT_7E_INC_RIP)) {
8324 vcpu->arch.complete_userspace_io =
8325 complete_fast_pio_out_port_0x7e;
8326 kvm_skip_emulated_instruction(vcpu);
8327 } else {
Sean Christopherson45def772019-03-11 20:01:05 -07008328 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
8329 vcpu->arch.complete_userspace_io = complete_fast_pio_out;
8330 }
Sean Christopherson8764ed52019-04-29 07:04:15 -07008331 return 0;
Carsten Ottede7d7892007-10-30 18:44:25 +01008332}
Carsten Ottede7d7892007-10-30 18:44:25 +01008333
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008334static int complete_fast_pio_in(struct kvm_vcpu *vcpu)
8335{
8336 unsigned long val;
8337
8338 /* We should only ever be called with arch.pio.count equal to 1 */
8339 BUG_ON(vcpu->arch.pio.count != 1);
8340
Sean Christopherson45def772019-03-11 20:01:05 -07008341 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip))) {
8342 vcpu->arch.pio.count = 0;
8343 return 1;
8344 }
8345
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008346 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008347 val = (vcpu->arch.pio.size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008348
8349 /*
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008350 * Since vcpu->arch.pio.count == 1 let emulator_pio_in perform
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008351 * the copy and tracing
8352 */
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008353 emulator_pio_in(vcpu, vcpu->arch.pio.size, vcpu->arch.pio.port, &val, 1);
Sean Christophersonde3cd112019-04-30 10:36:17 -07008354 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008355
Sean Christopherson45def772019-03-11 20:01:05 -07008356 return kvm_skip_emulated_instruction(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008357}
8358
Sean Christophersondca7f122018-03-08 08:57:27 -08008359static int kvm_fast_pio_in(struct kvm_vcpu *vcpu, int size,
8360 unsigned short port)
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008361{
8362 unsigned long val;
8363 int ret;
8364
8365 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008366 val = (size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008367
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008368 ret = emulator_pio_in(vcpu, size, port, &val, 1);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008369 if (ret) {
Sean Christophersonde3cd112019-04-30 10:36:17 -07008370 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008371 return ret;
8372 }
8373
Sean Christopherson45def772019-03-11 20:01:05 -07008374 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008375 vcpu->arch.complete_userspace_io = complete_fast_pio_in;
8376
8377 return 0;
8378}
Sean Christophersondca7f122018-03-08 08:57:27 -08008379
8380int kvm_fast_pio(struct kvm_vcpu *vcpu, int size, unsigned short port, int in)
8381{
Sean Christopherson45def772019-03-11 20:01:05 -07008382 int ret;
Sean Christophersondca7f122018-03-08 08:57:27 -08008383
Sean Christophersondca7f122018-03-08 08:57:27 -08008384 if (in)
Sean Christopherson45def772019-03-11 20:01:05 -07008385 ret = kvm_fast_pio_in(vcpu, size, port);
Sean Christophersondca7f122018-03-08 08:57:27 -08008386 else
Sean Christopherson45def772019-03-11 20:01:05 -07008387 ret = kvm_fast_pio_out(vcpu, size, port);
8388 return ret && kvm_skip_emulated_instruction(vcpu);
Sean Christophersondca7f122018-03-08 08:57:27 -08008389}
8390EXPORT_SYMBOL_GPL(kvm_fast_pio);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008391
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008392static int kvmclock_cpu_down_prep(unsigned int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008393{
Tejun Heo0a3aee02010-12-18 16:28:55 +01008394 __this_cpu_write(cpu_tsc_khz, 0);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008395 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008396}
8397
8398static void tsc_khz_changed(void *data)
8399{
8400 struct cpufreq_freqs *freq = data;
8401 unsigned long khz = 0;
8402
8403 if (data)
8404 khz = freq->new;
8405 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8406 khz = cpufreq_quick_get(raw_smp_processor_id());
8407 if (!khz)
8408 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01008409 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008410}
8411
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008412#ifdef CONFIG_X86_64
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008413static void kvm_hyperv_tsc_notifier(void)
8414{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008415 struct kvm *kvm;
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008416 int cpu;
8417
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008418 mutex_lock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008419 list_for_each_entry(kvm, &vm_list, vm_list)
8420 kvm_make_mclock_inprogress_request(kvm);
8421
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008422 /* no guest entries from this point */
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008423 hyperv_stop_tsc_emulation();
8424
8425 /* TSC frequency always matches when on Hyper-V */
8426 for_each_present_cpu(cpu)
8427 per_cpu(cpu_tsc_khz, cpu) = tsc_khz;
8428 kvm_max_guest_tsc_khz = tsc_khz;
8429
8430 list_for_each_entry(kvm, &vm_list, vm_list) {
Paolo Bonzini869b4422021-09-16 18:15:36 +00008431 __kvm_start_pvclock_update(kvm);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008432 pvclock_update_vm_gtod_copy(kvm);
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008433 kvm_end_pvclock_update(kvm);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008434 }
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008435
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008436 mutex_unlock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008437}
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008438#endif
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008439
Viresh Kumardf240142019-04-29 15:03:58 +05308440static void __kvmclock_cpufreq_notifier(struct cpufreq_freqs *freq, int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008441{
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008442 struct kvm *kvm;
8443 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00008444 int send_ipi = 0;
8445 unsigned long i;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008446
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008447 /*
8448 * We allow guests to temporarily run on slowing clocks,
8449 * provided we notify them after, or to run on accelerating
8450 * clocks, provided we notify them before. Thus time never
8451 * goes backwards.
8452 *
8453 * However, we have a problem. We can't atomically update
8454 * the frequency of a given CPU from this function; it is
8455 * merely a notifier, which can be called from any CPU.
8456 * Changing the TSC frequency at arbitrary points in time
8457 * requires a recomputation of local variables related to
8458 * the TSC for each VCPU. We must flag these local variables
8459 * to be updated and be sure the update takes place with the
8460 * new frequency before any guests proceed.
8461 *
8462 * Unfortunately, the combination of hotplug CPU and frequency
8463 * change creates an intractable locking scenario; the order
8464 * of when these callouts happen is undefined with respect to
8465 * CPU hotplug, and they can race with each other. As such,
8466 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
8467 * undefined; you can actually have a CPU frequency change take
8468 * place in between the computation of X and the setting of the
8469 * variable. To protect against this problem, all updates of
8470 * the per_cpu tsc_khz variable are done in an interrupt
8471 * protected IPI, and all callers wishing to update the value
8472 * must wait for a synchronous IPI to complete (which is trivial
8473 * if the caller is on the CPU already). This establishes the
8474 * necessary total order on variable updates.
8475 *
8476 * Note that because a guest time update may take place
8477 * anytime after the setting of the VCPU's request bit, the
8478 * correct TSC value must be set before the request. However,
8479 * to ensure the update actually makes it to any guest which
8480 * starts running in hardware virtualization between the set
8481 * and the acquisition of the spinlock, we must also ping the
8482 * CPU after setting the request bit.
8483 *
8484 */
8485
Viresh Kumardf240142019-04-29 15:03:58 +05308486 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008487
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008488 mutex_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008489 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008490 kvm_for_each_vcpu(i, vcpu, kvm) {
Viresh Kumardf240142019-04-29 15:03:58 +05308491 if (vcpu->cpu != cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008492 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10008493 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008494 if (vcpu->cpu != raw_smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008495 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008496 }
8497 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008498 mutex_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008499
8500 if (freq->old < freq->new && send_ipi) {
8501 /*
8502 * We upscale the frequency. Must make the guest
8503 * doesn't see old kvmclock values while running with
8504 * the new frequency, otherwise we risk the guest sees
8505 * time go backwards.
8506 *
8507 * In case we update the frequency for another cpu
8508 * (which might be in guest context) send an interrupt
8509 * to kick the cpu out of guest context. Next time
8510 * guest context is entered kvmclock will be updated,
8511 * so the guest will not see stale values.
8512 */
Viresh Kumardf240142019-04-29 15:03:58 +05308513 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008514 }
Viresh Kumardf240142019-04-29 15:03:58 +05308515}
8516
8517static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
8518 void *data)
8519{
8520 struct cpufreq_freqs *freq = data;
8521 int cpu;
8522
8523 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
8524 return 0;
8525 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
8526 return 0;
8527
8528 for_each_cpu(cpu, freq->policy->cpus)
8529 __kvmclock_cpufreq_notifier(freq, cpu);
8530
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008531 return 0;
8532}
8533
8534static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008535 .notifier_call = kvmclock_cpufreq_notifier
8536};
8537
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008538static int kvmclock_cpu_online(unsigned int cpu)
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008539{
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008540 tsc_khz_changed(NULL);
8541 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008542}
8543
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008544static void kvm_timer_init(void)
8545{
Zachary Amsdenc2855452010-09-18 14:38:15 -10008546 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308547
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008548 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10008549#ifdef CONFIG_CPU_FREQ
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008550 struct cpufreq_policy *policy;
Borislav Petkov758f5882016-09-04 19:13:57 +02008551 int cpu;
8552
Avi Kivity3e26f232010-12-16 12:16:34 +02008553 cpu = get_cpu();
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008554 policy = cpufreq_cpu_get(cpu);
Wanpeng Li9a119972020-03-02 15:15:36 +08008555 if (policy) {
8556 if (policy->cpuinfo.max_freq)
8557 max_tsc_khz = policy->cpuinfo.max_freq;
8558 cpufreq_cpu_put(policy);
8559 }
Avi Kivity3e26f232010-12-16 12:16:34 +02008560 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10008561#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008562 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
8563 CPUFREQ_TRANSITION_NOTIFIER);
8564 }
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308565
Thomas Gleixner73c1b412016-12-21 20:19:54 +01008566 cpuhp_setup_state(CPUHP_AP_X86_KVM_CLK_ONLINE, "x86/kvm/clk:online",
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008567 kvmclock_cpu_online, kvmclock_cpu_down_prep);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008568}
8569
Andi Kleendd60d212017-07-25 17:20:32 -07008570DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
8571EXPORT_PER_CPU_SYMBOL_GPL(current_vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008572
Gleb Natapovf5132b02011-11-10 14:57:22 +02008573int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008574{
Alex,Shi086c9852011-10-20 15:34:01 +08008575 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008576}
8577
8578static int kvm_is_user_mode(void)
8579{
8580 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008581
Alex,Shi086c9852011-10-20 15:34:01 +08008582 if (__this_cpu_read(current_vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05008583 user_mode = static_call(kvm_x86_get_cpl)(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008584
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008585 return user_mode != 0;
8586}
8587
8588static unsigned long kvm_get_guest_ip(void)
8589{
8590 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008591
Alex,Shi086c9852011-10-20 15:34:01 +08008592 if (__this_cpu_read(current_vcpu))
8593 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008594
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008595 return ip;
8596}
8597
Luwei Kang8479e042019-02-18 19:26:07 -05008598static void kvm_handle_intel_pt_intr(void)
8599{
8600 struct kvm_vcpu *vcpu = __this_cpu_read(current_vcpu);
8601
8602 kvm_make_request(KVM_REQ_PMI, vcpu);
8603 __set_bit(MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI_BIT,
8604 (unsigned long *)&vcpu->arch.pmu.global_status);
8605}
8606
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008607static struct perf_guest_info_callbacks kvm_guest_cbs = {
8608 .is_in_guest = kvm_is_in_guest,
8609 .is_user_mode = kvm_is_user_mode,
8610 .get_guest_ip = kvm_get_guest_ip,
Luwei Kang8479e042019-02-18 19:26:07 -05008611 .handle_intel_pt_intr = kvm_handle_intel_pt_intr,
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008612};
8613
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008614#ifdef CONFIG_X86_64
8615static void pvclock_gtod_update_fn(struct work_struct *work)
8616{
Marcelo Tosattid8281992012-11-27 23:29:01 -02008617 struct kvm *kvm;
Marcelo Tosattid8281992012-11-27 23:29:01 -02008618 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00008619 unsigned long i;
Marcelo Tosattid8281992012-11-27 23:29:01 -02008620
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008621 mutex_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008622 list_for_each_entry(kvm, &vm_list, vm_list)
8623 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08008624 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008625 atomic_set(&kvm_guest_has_master_clock, 0);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008626 mutex_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008627}
8628
8629static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
8630
8631/*
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008632 * Indirection to move queue_work() out of the tk_core.seq write held
8633 * region to prevent possible deadlocks against time accessors which
8634 * are invoked with work related locks held.
8635 */
8636static void pvclock_irq_work_fn(struct irq_work *w)
8637{
8638 queue_work(system_long_wq, &pvclock_gtod_work);
8639}
8640
8641static DEFINE_IRQ_WORK(pvclock_irq_work, pvclock_irq_work_fn);
8642
8643/*
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008644 * Notification about pvclock gtod data update.
8645 */
8646static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
8647 void *priv)
8648{
8649 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
8650 struct timekeeper *tk = priv;
8651
8652 update_pvclock_gtod(tk);
8653
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008654 /*
8655 * Disable master clock if host does not trust, or does not use,
8656 * TSC based clocksource. Delegate queue_work() to irq_work as
8657 * this is invoked with tk_core.seq write held.
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008658 */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01008659 if (!gtod_is_based_on_tsc(gtod->clock.vclock_mode) &&
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008660 atomic_read(&kvm_guest_has_master_clock) != 0)
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008661 irq_work_queue(&pvclock_irq_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008662 return 0;
8663}
8664
8665static struct notifier_block pvclock_gtod_notifier = {
8666 .notifier_call = pvclock_gtod_notify,
8667};
8668#endif
8669
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008670int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02008671{
Sean Christophersond008dfd2020-03-21 13:25:56 -07008672 struct kvm_x86_init_ops *ops = opaque;
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008673 int r;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008674
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008675 if (kvm_x86_ops.hardware_enable) {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07008676 pr_err("kvm: already loaded vendor module '%s'\n", kvm_x86_ops.name);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008677 r = -EEXIST;
8678 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008679 }
8680
8681 if (!ops->cpu_has_kvm_support()) {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07008682 pr_err_ratelimited("kvm: no hardware support for '%s'\n",
8683 ops->runtime_ops->name);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008684 r = -EOPNOTSUPP;
8685 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008686 }
8687 if (ops->disabled_by_bios()) {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07008688 pr_err_ratelimited("kvm: support for '%s' disabled by bios\n",
8689 ops->runtime_ops->name);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008690 r = -EOPNOTSUPP;
8691 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008692 }
8693
Marc Orrb666a4b2018-11-06 14:53:56 -08008694 /*
8695 * KVM explicitly assumes that the guest has an FPU and
8696 * FXSAVE/FXRSTOR. For example, the KVM_GET_FPU explicitly casts the
8697 * vCPU's FPU state as a fxregs_state struct.
8698 */
8699 if (!boot_cpu_has(X86_FEATURE_FPU) || !boot_cpu_has(X86_FEATURE_FXSR)) {
8700 printk(KERN_ERR "kvm: inadequate fpu\n");
8701 r = -EOPNOTSUPP;
8702 goto out;
8703 }
8704
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008705 r = -ENOMEM;
Marc Orrb666a4b2018-11-06 14:53:56 -08008706
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008707 x86_emulator_cache = kvm_alloc_emulator_cache();
8708 if (!x86_emulator_cache) {
8709 pr_err("kvm: failed to allocate cache for x86 emulator\n");
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02008710 goto out;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008711 }
8712
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008713 user_return_msrs = alloc_percpu(struct kvm_user_return_msrs);
8714 if (!user_return_msrs) {
8715 printk(KERN_ERR "kvm: failed to allocate percpu kvm_user_return_msrs\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008716 goto out_free_x86_emulator_cache;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008717 }
Sean Christophersone5fda4b2021-05-04 10:17:32 -07008718 kvm_nr_uret_msrs = 0;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008719
Avi Kivity97db56c2008-01-13 13:23:56 +02008720 r = kvm_mmu_module_init();
8721 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008722 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02008723
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008724 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008725
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008726 perf_register_guest_info_callbacks(&kvm_guest_cbs);
8727
Sean Christophersoncfc48182020-03-02 15:56:23 -08008728 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +08008729 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
Sean Christophersoncfc48182020-03-02 15:56:23 -08008730 supported_xcr0 = host_xcr0 & KVM_SUPPORTED_XCR0;
8731 }
Dexuan Cui2acf9232010-06-10 11:27:12 +08008732
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08008733 if (pi_inject_timer == -1)
8734 pi_inject_timer = housekeeping_enabled(HK_FLAG_TIMER);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008735#ifdef CONFIG_X86_64
8736 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008737
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008738 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008739 set_hv_tscchange_cb(kvm_hyperv_tsc_notifier);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008740#endif
8741
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008742 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008743
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008744out_free_percpu:
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008745 free_percpu(user_return_msrs);
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008746out_free_x86_emulator_cache:
8747 kmem_cache_destroy(x86_emulator_cache);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008748out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008749 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02008750}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008751
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008752void kvm_arch_exit(void)
8753{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008754#ifdef CONFIG_X86_64
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008755 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008756 clear_hv_tscchange_cb();
8757#endif
David Matlackcef84c32016-12-16 14:30:36 -08008758 kvm_lapic_exit();
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008759 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
8760
Jan Kiszka888d2562009-04-17 19:24:58 +02008761 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8762 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
8763 CPUFREQ_TRANSITION_NOTIFIER);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008764 cpuhp_remove_state_nocalls(CPUHP_AP_X86_KVM_CLK_ONLINE);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008765#ifdef CONFIG_X86_64
8766 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008767 irq_work_sync(&pvclock_irq_work);
Thomas Gleixner594b27e2021-05-05 23:48:17 +02008768 cancel_work_sync(&pvclock_gtod_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008769#endif
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008770 kvm_x86_ops.hardware_enable = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008771 kvm_mmu_module_exit();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008772 free_percpu(user_return_msrs);
Wanpeng Lidfdc0a72021-06-10 21:59:33 -07008773 kmem_cache_destroy(x86_emulator_cache);
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008774#ifdef CONFIG_KVM_XEN
Paolo Bonzinic462f852021-02-26 04:49:06 -05008775 static_key_deferred_flush(&kvm_xen_enabled);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +00008776 WARN_ON(static_branch_unlikely(&kvm_xen_enabled.key));
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008777#endif
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008778}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008779
Sean Christopherson14601792021-10-08 19:12:05 -07008780static int __kvm_emulate_halt(struct kvm_vcpu *vcpu, int state, int reason)
Hollis Blanchard8776e512007-10-31 17:24:24 -05008781{
Sean Christopherson91b99ea2021-10-08 19:12:06 -07008782 /*
8783 * The vCPU has halted, e.g. executed HLT. Update the run state if the
8784 * local APIC is in-kernel, the run loop will detect the non-runnable
8785 * state and halt the vCPU. Exit to userspace if the local APIC is
8786 * managed by userspace, in which case userspace is responsible for
8787 * handling wake events.
8788 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05008789 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02008790 if (lapic_in_kernel(vcpu)) {
Tom Lendacky647daca2021-01-04 14:20:01 -06008791 vcpu->arch.mp_state = state;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008792 return 1;
8793 } else {
Tom Lendacky647daca2021-01-04 14:20:01 -06008794 vcpu->run->exit_reason = reason;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008795 return 0;
8796 }
8797}
Tom Lendacky647daca2021-01-04 14:20:01 -06008798
Sean Christopherson14601792021-10-08 19:12:05 -07008799int kvm_emulate_halt_noskip(struct kvm_vcpu *vcpu)
Tom Lendacky647daca2021-01-04 14:20:01 -06008800{
Sean Christopherson14601792021-10-08 19:12:05 -07008801 return __kvm_emulate_halt(vcpu, KVM_MP_STATE_HALTED, KVM_EXIT_HLT);
Tom Lendacky647daca2021-01-04 14:20:01 -06008802}
Sean Christopherson14601792021-10-08 19:12:05 -07008803EXPORT_SYMBOL_GPL(kvm_emulate_halt_noskip);
Joel Schopp5cb56052015-03-02 13:43:31 -06008804
8805int kvm_emulate_halt(struct kvm_vcpu *vcpu)
8806{
Kyle Huey6affcbe2016-11-29 12:40:40 -08008807 int ret = kvm_skip_emulated_instruction(vcpu);
8808 /*
8809 * TODO: we might be squashing a GUESTDBG_SINGLESTEP-triggered
8810 * KVM_EXIT_DEBUG here.
8811 */
Sean Christopherson14601792021-10-08 19:12:05 -07008812 return kvm_emulate_halt_noskip(vcpu) && ret;
Joel Schopp5cb56052015-03-02 13:43:31 -06008813}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008814EXPORT_SYMBOL_GPL(kvm_emulate_halt);
8815
Tom Lendacky647daca2021-01-04 14:20:01 -06008816int kvm_emulate_ap_reset_hold(struct kvm_vcpu *vcpu)
8817{
8818 int ret = kvm_skip_emulated_instruction(vcpu);
8819
Sean Christopherson14601792021-10-08 19:12:05 -07008820 return __kvm_emulate_halt(vcpu, KVM_MP_STATE_AP_RESET_HOLD,
8821 KVM_EXIT_AP_RESET_HOLD) && ret;
Tom Lendacky647daca2021-01-04 14:20:01 -06008822}
8823EXPORT_SYMBOL_GPL(kvm_emulate_ap_reset_hold);
8824
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008825#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008826static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
8827 unsigned long clock_type)
8828{
8829 struct kvm_clock_pairing clock_pairing;
Arnd Bergmann899a31f2018-04-23 10:04:26 +02008830 struct timespec64 ts;
Paolo Bonzini80fbd892017-02-08 10:57:24 +01008831 u64 cycle;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008832 int ret;
8833
8834 if (clock_type != KVM_CLOCK_PAIRING_WALLCLOCK)
8835 return -KVM_EOPNOTSUPP;
8836
YANG LI7ca7f3b2021-01-11 17:32:58 +08008837 if (!kvm_get_walltime_and_clockread(&ts, &cycle))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008838 return -KVM_EOPNOTSUPP;
8839
8840 clock_pairing.sec = ts.tv_sec;
8841 clock_pairing.nsec = ts.tv_nsec;
8842 clock_pairing.tsc = kvm_read_l1_tsc(vcpu, cycle);
8843 clock_pairing.flags = 0;
Liran Alonbcbfbd82018-11-08 00:43:06 +02008844 memset(&clock_pairing.pad, 0, sizeof(clock_pairing.pad));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008845
8846 ret = 0;
8847 if (kvm_write_guest(vcpu->kvm, paddr, &clock_pairing,
8848 sizeof(struct kvm_clock_pairing)))
8849 ret = -KVM_EFAULT;
8850
8851 return ret;
8852}
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008853#endif
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008854
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308855/*
8856 * kvm_pv_kick_cpu_op: Kick a vcpu.
8857 *
8858 * @apicid - apicid of vcpu to be kicked.
8859 */
8860static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
8861{
Raghavendra K T24d21662013-08-26 14:18:35 +05308862 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308863
Peter Xu150a84f2019-12-04 20:07:21 +01008864 lapic_irq.shorthand = APIC_DEST_NOSHORT;
Peter Xuc96001c2019-12-04 20:07:18 +01008865 lapic_irq.dest_mode = APIC_DEST_PHYSICAL;
Longpeng(Mike)ebd28fc2017-08-02 11:20:51 +08008866 lapic_irq.level = 0;
Raghavendra K T24d21662013-08-26 14:18:35 +05308867 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06008868 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308869
Raghavendra K T24d21662013-08-26 14:18:35 +05308870 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08008871 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308872}
8873
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008874bool kvm_apicv_activated(struct kvm *kvm)
8875{
8876 return (READ_ONCE(kvm->arch.apicv_inhibit_reasons) == 0);
8877}
8878EXPORT_SYMBOL_GPL(kvm_apicv_activated);
8879
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +02008880static void kvm_apicv_init(struct kvm *kvm)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008881{
Sean Christopherson187c8832021-10-21 17:49:27 -07008882 init_rwsem(&kvm->arch.apicv_update_lock);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03008883
Paolo Bonzinief8b4b72021-11-30 07:37:45 -05008884 set_bit(APICV_INHIBIT_REASON_ABSENT,
8885 &kvm->arch.apicv_inhibit_reasons);
8886 if (!enable_apicv)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008887 set_bit(APICV_INHIBIT_REASON_DISABLE,
8888 &kvm->arch.apicv_inhibit_reasons);
8889}
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008890
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008891static void kvm_sched_yield(struct kvm_vcpu *vcpu, unsigned long dest_id)
Wanpeng Li71506292019-06-11 20:23:49 +08008892{
8893 struct kvm_vcpu *target = NULL;
8894 struct kvm_apic_map *map;
8895
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008896 vcpu->stat.directed_yield_attempted++;
8897
Wanpeng Li72b268a2021-05-18 05:00:32 -07008898 if (single_task_running())
8899 goto no_yield;
8900
Wanpeng Li71506292019-06-11 20:23:49 +08008901 rcu_read_lock();
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008902 map = rcu_dereference(vcpu->kvm->arch.apic_map);
Wanpeng Li71506292019-06-11 20:23:49 +08008903
8904 if (likely(map) && dest_id <= map->max_apic_id && map->phys_map[dest_id])
8905 target = map->phys_map[dest_id]->vcpu;
8906
8907 rcu_read_unlock();
8908
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008909 if (!target || !READ_ONCE(target->ready))
8910 goto no_yield;
8911
Wanpeng Lia1fa4cb2021-04-09 12:18:31 +08008912 /* Ignore requests to yield to self */
8913 if (vcpu == target)
8914 goto no_yield;
8915
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008916 if (kvm_vcpu_yield_to(target) <= 0)
8917 goto no_yield;
8918
8919 vcpu->stat.directed_yield_successful++;
8920
8921no_yield:
8922 return;
Wanpeng Li71506292019-06-11 20:23:49 +08008923}
8924
Ashish Kalra0dbb1122021-06-08 18:05:43 +00008925static int complete_hypercall_exit(struct kvm_vcpu *vcpu)
8926{
8927 u64 ret = vcpu->run->hypercall.ret;
8928
8929 if (!is_64_bit_mode(vcpu))
8930 ret = (u32)ret;
8931 kvm_rax_write(vcpu, ret);
8932 ++vcpu->stat.hypercalls;
8933 return kvm_skip_emulated_instruction(vcpu);
8934}
8935
Hollis Blanchard8776e512007-10-31 17:24:24 -05008936int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
8937{
8938 unsigned long nr, a0, a1, a2, a3, ret;
Marian Rotariu6356ee02018-04-30 12:23:01 +03008939 int op_64_bit;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008940
Joao Martins23200b72018-06-13 09:55:44 -04008941 if (kvm_xen_hypercall_enabled(vcpu->kvm))
8942 return kvm_xen_hypercall(vcpu);
8943
Vitaly Kuznetsov8f014552021-01-26 14:48:14 +01008944 if (kvm_hv_hypercall_enabled(vcpu))
Radim Krčmář696ca772018-05-24 17:50:56 +02008945 return kvm_hv_hypercall(vcpu);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02008946
Sean Christophersonde3cd112019-04-30 10:36:17 -07008947 nr = kvm_rax_read(vcpu);
8948 a0 = kvm_rbx_read(vcpu);
8949 a1 = kvm_rcx_read(vcpu);
8950 a2 = kvm_rdx_read(vcpu);
8951 a3 = kvm_rsi_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008952
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008953 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04008954
Tom Lendackyb5aead02021-05-24 12:48:57 -05008955 op_64_bit = is_64_bit_hypercall(vcpu);
Nadav Amita449c7a2014-06-18 17:19:24 +03008956 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05008957 nr &= 0xFFFFFFFF;
8958 a0 &= 0xFFFFFFFF;
8959 a1 &= 0xFFFFFFFF;
8960 a2 &= 0xFFFFFFFF;
8961 a3 &= 0xFFFFFFFF;
8962 }
8963
Jason Baronb36464772021-01-14 22:27:56 -05008964 if (static_call(kvm_x86_get_cpl)(vcpu) != 0) {
Jan Kiszka07708c42009-08-03 18:43:28 +02008965 ret = -KVM_EPERM;
Radim Krčmář696ca772018-05-24 17:50:56 +02008966 goto out;
Jan Kiszka07708c42009-08-03 18:43:28 +02008967 }
8968
Oliver Upton66570e92020-08-18 15:24:28 +00008969 ret = -KVM_ENOSYS;
8970
Hollis Blanchard8776e512007-10-31 17:24:24 -05008971 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02008972 case KVM_HC_VAPIC_POLL_IRQ:
8973 ret = 0;
8974 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308975 case KVM_HC_KICK_CPU:
Oliver Upton66570e92020-08-18 15:24:28 +00008976 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_UNHALT))
8977 break;
8978
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308979 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008980 kvm_sched_yield(vcpu, a1);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308981 ret = 0;
8982 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008983#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008984 case KVM_HC_CLOCK_PAIRING:
8985 ret = kvm_pv_clock_pairing(vcpu, a0, a1);
8986 break;
Sean Christopherson1ed199a2019-01-23 09:22:39 -08008987#endif
Wanpeng Li4180bf12018-07-23 14:39:54 +08008988 case KVM_HC_SEND_IPI:
Oliver Upton66570e92020-08-18 15:24:28 +00008989 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SEND_IPI))
8990 break;
8991
Wanpeng Li4180bf12018-07-23 14:39:54 +08008992 ret = kvm_pv_send_ipi(vcpu->kvm, a0, a1, a2, a3, op_64_bit);
8993 break;
Wanpeng Li71506292019-06-11 20:23:49 +08008994 case KVM_HC_SCHED_YIELD:
Oliver Upton66570e92020-08-18 15:24:28 +00008995 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SCHED_YIELD))
8996 break;
8997
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008998 kvm_sched_yield(vcpu, a0);
Wanpeng Li71506292019-06-11 20:23:49 +08008999 ret = 0;
9000 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00009001 case KVM_HC_MAP_GPA_RANGE: {
9002 u64 gpa = a0, npages = a1, attrs = a2;
9003
9004 ret = -KVM_ENOSYS;
9005 if (!(vcpu->kvm->arch.hypercall_exit_enabled & (1 << KVM_HC_MAP_GPA_RANGE)))
9006 break;
9007
9008 if (!PAGE_ALIGNED(gpa) || !npages ||
9009 gpa_to_gfn(gpa) + npages <= gpa_to_gfn(gpa)) {
9010 ret = -KVM_EINVAL;
9011 break;
9012 }
9013
9014 vcpu->run->exit_reason = KVM_EXIT_HYPERCALL;
9015 vcpu->run->hypercall.nr = KVM_HC_MAP_GPA_RANGE;
9016 vcpu->run->hypercall.args[0] = gpa;
9017 vcpu->run->hypercall.args[1] = npages;
9018 vcpu->run->hypercall.args[2] = attrs;
9019 vcpu->run->hypercall.longmode = op_64_bit;
9020 vcpu->arch.complete_userspace_io = complete_hypercall_exit;
9021 return 0;
9022 }
Hollis Blanchard8776e512007-10-31 17:24:24 -05009023 default:
9024 ret = -KVM_ENOSYS;
9025 break;
9026 }
Radim Krčmář696ca772018-05-24 17:50:56 +02009027out:
Nadav Amita449c7a2014-06-18 17:19:24 +03009028 if (!op_64_bit)
9029 ret = (u32)ret;
Sean Christophersonde3cd112019-04-30 10:36:17 -07009030 kvm_rax_write(vcpu, ret);
Marian Rotariu6356ee02018-04-30 12:23:01 +03009031
Amit Shahf11c3a82008-02-21 01:00:30 +05309032 ++vcpu->stat.hypercalls;
Marian Rotariu6356ee02018-04-30 12:23:01 +03009033 return kvm_skip_emulated_instruction(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009034}
9035EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
9036
Jan Kiszkab6785de2012-09-20 07:43:17 +02009037static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05009038{
Avi Kivityd6aa1002011-04-20 15:47:13 +03009039 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009040 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009041 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009042
Jason Baronb36464772021-01-14 22:27:56 -05009043 static_call(kvm_x86_patch_hypercall)(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009044
Dmitry Vyukovce2e8522017-01-17 14:51:04 +01009045 return emulator_write_emulated(ctxt, rip, instruction, 3,
9046 &ctxt->exception);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009047}
9048
Avi Kivity851ba692009-08-24 11:10:17 +03009049static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009050{
Matt Gingell782d4222015-11-16 15:26:00 -08009051 return vcpu->run->request_interrupt_window &&
9052 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009053}
9054
Avi Kivity851ba692009-08-24 11:10:17 +03009055static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009056{
Avi Kivity851ba692009-08-24 11:10:17 +03009057 struct kvm_run *kvm_run = vcpu->run;
9058
Marc Orrc5063552021-12-09 07:52:57 -08009059 kvm_run->if_flag = static_call(kvm_x86_get_if_flag)(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02009060 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009061 kvm_run->apic_base = kvm_get_apic_base(vcpu);
David Woodhousef3d14362021-10-26 04:12:38 +01009062
9063 /*
9064 * The call to kvm_ready_for_interrupt_injection() may end up in
9065 * kvm_xen_has_interrupt() which may require the srcu lock to be
9066 * held, to protect against changes in the vcpu_info address.
9067 */
9068 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Matt Gingell127a4572015-11-17 17:32:05 +01009069 kvm_run->ready_for_interrupt_injection =
9070 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08009071 kvm_vcpu_ready_for_interrupt_injection(vcpu);
David Woodhousef3d14362021-10-26 04:12:38 +01009072 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +08009073
9074 if (is_smm(vcpu))
9075 kvm_run->flags |= KVM_RUN_X86_SMM;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009076}
9077
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009078static void update_cr8_intercept(struct kvm_vcpu *vcpu)
9079{
9080 int max_irr, tpr;
9081
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009082 if (!kvm_x86_ops.update_cr8_intercept)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009083 return;
9084
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01009085 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03009086 return;
9087
Andrey Smetanind62caab2015-11-10 15:36:33 +03009088 if (vcpu->arch.apicv_active)
9089 return;
9090
Gleb Natapov8db3baa2009-05-11 13:35:54 +03009091 if (!vcpu->arch.apic->vapic_addr)
9092 max_irr = kvm_lapic_find_highest_irr(vcpu);
9093 else
9094 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009095
9096 if (max_irr != -1)
9097 max_irr >>= 4;
9098
9099 tpr = kvm_lapic_get_cr8(vcpu);
9100
Jason Baronb36464772021-01-14 22:27:56 -05009101 static_call(kvm_x86_update_cr8_intercept)(vcpu, tpr, max_irr);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009102}
9103
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009104
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009105int kvm_check_nested_events(struct kvm_vcpu *vcpu)
9106{
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009107 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
9108 kvm_x86_ops.nested_ops->triple_fault(vcpu);
9109 return 1;
9110 }
9111
9112 return kvm_x86_ops.nested_ops->check_events(vcpu);
9113}
9114
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009115static void kvm_inject_exception(struct kvm_vcpu *vcpu)
9116{
9117 if (vcpu->arch.exception.error_code && !is_protmode(vcpu))
9118 vcpu->arch.exception.error_code = false;
9119 static_call(kvm_x86_queue_exception)(vcpu);
9120}
9121
Jim Mattsona5f69092021-06-04 10:26:03 -07009122static int inject_pending_event(struct kvm_vcpu *vcpu, bool *req_immediate_exit)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009123{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01009124 int r;
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009125 bool can_inject = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +01009126
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009127 /* try to reinject previous events if any */
Wanpeng Li664f8e22017-08-24 03:35:09 -07009128
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009129 if (vcpu->arch.exception.injected) {
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009130 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009131 can_inject = false;
9132 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07009133 /*
Liran Alona042c262018-03-23 03:01:32 +03009134 * Do not inject an NMI or interrupt if there is a pending
9135 * exception. Exceptions and interrupts are recognized at
9136 * instruction boundaries, i.e. the start of an instruction.
9137 * Trap-like exceptions, e.g. #DB, have higher priority than
9138 * NMIs and interrupts, i.e. traps are recognized before an
9139 * NMI/interrupt that's pending on the same instruction.
9140 * Fault-like exceptions, e.g. #GP and #PF, are the lowest
9141 * priority, but are only generated (pended) during instruction
9142 * execution, i.e. a pending fault-like exception means the
9143 * fault occurred on the *previous* instruction and must be
9144 * serviced prior to recognizing any new events in order to
9145 * fully complete the previous instruction.
Wanpeng Li664f8e22017-08-24 03:35:09 -07009146 */
Liran Alon1a680e32018-03-23 03:01:33 +03009147 else if (!vcpu->arch.exception.pending) {
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009148 if (vcpu->arch.nmi_injected) {
Jason Baronb36464772021-01-14 22:27:56 -05009149 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009150 can_inject = false;
9151 } else if (vcpu->arch.interrupt.injected) {
Jason Baronb36464772021-01-14 22:27:56 -05009152 static_call(kvm_x86_set_irq)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009153 can_inject = false;
9154 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07009155 }
9156
Sean Christopherson3b82b8d2020-04-22 19:25:47 -07009157 WARN_ON_ONCE(vcpu->arch.exception.injected &&
9158 vcpu->arch.exception.pending);
9159
Liran Alon1a680e32018-03-23 03:01:33 +03009160 /*
9161 * Call check_nested_events() even if we reinjected a previous event
9162 * in order for caller to determine if it should require immediate-exit
9163 * from L2 to L1 due to pending L1 events which require exit
9164 * from L2 to L1.
9165 */
Paolo Bonzini56083bd2020-04-17 10:32:53 -04009166 if (is_guest_mode(vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009167 r = kvm_check_nested_events(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009168 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009169 goto out;
Wanpeng Li664f8e22017-08-24 03:35:09 -07009170 }
9171
9172 /* try to inject new event if pending */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03009173 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d02010-03-11 13:01:59 +02009174 trace_kvm_inj_exception(vcpu->arch.exception.nr,
9175 vcpu->arch.exception.has_error_code,
9176 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03009177
Wanpeng Li664f8e22017-08-24 03:35:09 -07009178 vcpu->arch.exception.pending = false;
9179 vcpu->arch.exception.injected = true;
9180
Nadav Amitd6e8c852014-07-24 14:51:24 +03009181 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
9182 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
9183 X86_EFLAGS_RF);
9184
Jim Mattsonf10c7292018-10-16 14:29:23 -07009185 if (vcpu->arch.exception.nr == DB_VECTOR) {
Jim Mattsonf10c7292018-10-16 14:29:23 -07009186 kvm_deliver_exception_payload(vcpu);
9187 if (vcpu->arch.dr7 & DR7_GD) {
9188 vcpu->arch.dr7 &= ~DR7_GD;
9189 kvm_update_dr7(vcpu);
9190 }
Nadav Amit6bdf0662014-09-30 20:49:14 +03009191 }
9192
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009193 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009194 can_inject = false;
Liran Alon1a680e32018-03-23 03:01:33 +03009195 }
9196
Maxim Levitsky61e5f692021-08-11 15:29:26 +03009197 /* Don't inject interrupts if the user asked to avoid doing so */
9198 if (vcpu->guest_debug & KVM_GUESTDBG_BLOCKIRQ)
9199 return 0;
9200
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009201 /*
9202 * Finally, inject interrupt events. If an event cannot be injected
9203 * due to architectural conditions (e.g. IF=0) a window-open exit
9204 * will re-request KVM_REQ_EVENT. Sometimes however an event is pending
9205 * and can architecturally be injected, but we cannot do it right now:
9206 * an interrupt could have arrived just now and we have to inject it
9207 * as a vmexit, or there could already an event in the queue, which is
9208 * indicated by can_inject. In that case we request an immediate exit
9209 * in order to make progress and get back here for another iteration.
9210 * The kvm_x86_ops hooks communicate this by returning -EBUSY.
9211 */
9212 if (vcpu->arch.smi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05009213 r = can_inject ? static_call(kvm_x86_smi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009214 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009215 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009216 if (r) {
9217 vcpu->arch.smi_pending = false;
9218 ++vcpu->arch.smi_count;
9219 enter_smm(vcpu);
9220 can_inject = false;
9221 } else
Jason Baronb36464772021-01-14 22:27:56 -05009222 static_call(kvm_x86_enable_smi_window)(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009223 }
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009224
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009225 if (vcpu->arch.nmi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05009226 r = can_inject ? static_call(kvm_x86_nmi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009227 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009228 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009229 if (r) {
9230 --vcpu->arch.nmi_pending;
9231 vcpu->arch.nmi_injected = true;
Jason Baronb36464772021-01-14 22:27:56 -05009232 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009233 can_inject = false;
Jason Baronb36464772021-01-14 22:27:56 -05009234 WARN_ON(static_call(kvm_x86_nmi_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009235 }
9236 if (vcpu->arch.nmi_pending)
Jason Baronb36464772021-01-14 22:27:56 -05009237 static_call(kvm_x86_enable_nmi_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009238 }
9239
9240 if (kvm_cpu_has_injectable_intr(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05009241 r = can_inject ? static_call(kvm_x86_interrupt_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009242 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009243 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009244 if (r) {
9245 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu), false);
Jason Baronb36464772021-01-14 22:27:56 -05009246 static_call(kvm_x86_set_irq)(vcpu);
9247 WARN_ON(static_call(kvm_x86_interrupt_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009248 }
9249 if (kvm_cpu_has_injectable_intr(vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05009250 static_call(kvm_x86_enable_irq_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009251 }
9252
9253 if (is_guest_mode(vcpu) &&
9254 kvm_x86_ops.nested_ops->hv_timer_pending &&
9255 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
9256 *req_immediate_exit = true;
9257
9258 WARN_ON(vcpu->arch.exception.pending);
Jim Mattsona5f69092021-06-04 10:26:03 -07009259 return 0;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009260
Jim Mattsona5f69092021-06-04 10:26:03 -07009261out:
9262 if (r == -EBUSY) {
9263 *req_immediate_exit = true;
9264 r = 0;
9265 }
9266 return r;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009267}
9268
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009269static void process_nmi(struct kvm_vcpu *vcpu)
9270{
9271 unsigned limit = 2;
9272
9273 /*
9274 * x86 is limited to one NMI running, and one NMI pending after it.
9275 * If an NMI is already in progress, limit further NMIs to just one.
9276 * Otherwise, allow two (and we'll inject the first one immediately).
9277 */
Jason Baronb36464772021-01-14 22:27:56 -05009278 if (static_call(kvm_x86_get_nmi_mask)(vcpu) || vcpu->arch.nmi_injected)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009279 limit = 1;
9280
9281 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
9282 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
9283 kvm_make_request(KVM_REQ_EVENT, vcpu);
9284}
9285
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009286static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009287{
9288 u32 flags = 0;
9289 flags |= seg->g << 23;
9290 flags |= seg->db << 22;
9291 flags |= seg->l << 21;
9292 flags |= seg->avl << 20;
9293 flags |= seg->present << 15;
9294 flags |= seg->dpl << 13;
9295 flags |= seg->s << 12;
9296 flags |= seg->type << 8;
9297 return flags;
9298}
9299
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009300static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009301{
9302 struct kvm_segment seg;
9303 int offset;
9304
9305 kvm_get_segment(vcpu, &seg, n);
9306 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
9307
9308 if (n < 3)
9309 offset = 0x7f84 + n * 12;
9310 else
9311 offset = 0x7f2c + (n - 3) * 12;
9312
9313 put_smstate(u32, buf, offset + 8, seg.base);
9314 put_smstate(u32, buf, offset + 4, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009315 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009316}
9317
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06009318#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009319static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009320{
9321 struct kvm_segment seg;
9322 int offset;
9323 u16 flags;
9324
9325 kvm_get_segment(vcpu, &seg, n);
9326 offset = 0x7e00 + n * 16;
9327
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009328 flags = enter_smm_get_segment_flags(&seg) >> 8;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009329 put_smstate(u16, buf, offset, seg.selector);
9330 put_smstate(u16, buf, offset + 2, flags);
9331 put_smstate(u32, buf, offset + 4, seg.limit);
9332 put_smstate(u64, buf, offset + 8, seg.base);
9333}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06009334#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009335
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009336static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009337{
9338 struct desc_ptr dt;
9339 struct kvm_segment seg;
9340 unsigned long val;
9341 int i;
9342
9343 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
9344 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
9345 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
9346 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
9347
9348 for (i = 0; i < 8; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009349 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009350
9351 kvm_get_dr(vcpu, 6, &val);
9352 put_smstate(u32, buf, 0x7fcc, (u32)val);
9353 kvm_get_dr(vcpu, 7, &val);
9354 put_smstate(u32, buf, 0x7fc8, (u32)val);
9355
9356 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9357 put_smstate(u32, buf, 0x7fc4, seg.selector);
9358 put_smstate(u32, buf, 0x7f64, seg.base);
9359 put_smstate(u32, buf, 0x7f60, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009360 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009361
9362 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9363 put_smstate(u32, buf, 0x7fc0, seg.selector);
9364 put_smstate(u32, buf, 0x7f80, seg.base);
9365 put_smstate(u32, buf, 0x7f7c, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009366 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009367
Jason Baronb36464772021-01-14 22:27:56 -05009368 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009369 put_smstate(u32, buf, 0x7f74, dt.address);
9370 put_smstate(u32, buf, 0x7f70, dt.size);
9371
Jason Baronb36464772021-01-14 22:27:56 -05009372 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009373 put_smstate(u32, buf, 0x7f58, dt.address);
9374 put_smstate(u32, buf, 0x7f54, dt.size);
9375
9376 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009377 enter_smm_save_seg_32(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009378
9379 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
9380
9381 /* revision id */
9382 put_smstate(u32, buf, 0x7efc, 0x00020000);
9383 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
9384}
9385
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009386#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009387static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009388{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009389 struct desc_ptr dt;
9390 struct kvm_segment seg;
9391 unsigned long val;
9392 int i;
9393
9394 for (i = 0; i < 16; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009395 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009396
9397 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
9398 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
9399
9400 kvm_get_dr(vcpu, 6, &val);
9401 put_smstate(u64, buf, 0x7f68, val);
9402 kvm_get_dr(vcpu, 7, &val);
9403 put_smstate(u64, buf, 0x7f60, val);
9404
9405 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
9406 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
9407 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
9408
9409 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
9410
9411 /* revision id */
9412 put_smstate(u32, buf, 0x7efc, 0x00020064);
9413
9414 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
9415
9416 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9417 put_smstate(u16, buf, 0x7e90, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009418 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009419 put_smstate(u32, buf, 0x7e94, seg.limit);
9420 put_smstate(u64, buf, 0x7e98, seg.base);
9421
Jason Baronb36464772021-01-14 22:27:56 -05009422 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009423 put_smstate(u32, buf, 0x7e84, dt.size);
9424 put_smstate(u64, buf, 0x7e88, dt.address);
9425
9426 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9427 put_smstate(u16, buf, 0x7e70, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009428 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009429 put_smstate(u32, buf, 0x7e74, seg.limit);
9430 put_smstate(u64, buf, 0x7e78, seg.base);
9431
Jason Baronb36464772021-01-14 22:27:56 -05009432 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009433 put_smstate(u32, buf, 0x7e64, dt.size);
9434 put_smstate(u64, buf, 0x7e68, dt.address);
9435
9436 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009437 enter_smm_save_seg_64(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009438}
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009439#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009440
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009441static void enter_smm(struct kvm_vcpu *vcpu)
Paolo Bonzini64d60672015-05-07 11:36:11 +02009442{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009443 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02009444 struct desc_ptr dt;
Sean Christophersondbc47392021-06-22 10:56:59 -07009445 unsigned long cr0;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009446 char buf[512];
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009447
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009448 memset(buf, 0, 512);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009449#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009450 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009451 enter_smm_save_state_64(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009452 else
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009453#endif
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009454 enter_smm_save_state_32(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009455
Ladi Prosek0234bf82017-10-11 16:54:40 +02009456 /*
Sean Christophersonecc513e2021-06-09 11:56:19 -07009457 * Give enter_smm() a chance to make ISA-specific changes to the vCPU
9458 * state (e.g. leave guest mode) after we've saved the state into the
9459 * SMM state-save area.
Ladi Prosek0234bf82017-10-11 16:54:40 +02009460 */
Sean Christophersonecc513e2021-06-09 11:56:19 -07009461 static_call(kvm_x86_enter_smm)(vcpu, buf);
Ladi Prosek0234bf82017-10-11 16:54:40 +02009462
Sean Christophersondc872752021-06-09 11:56:15 -07009463 kvm_smm_changed(vcpu, true);
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009464 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009465
Jason Baronb36464772021-01-14 22:27:56 -05009466 if (static_call(kvm_x86_get_nmi_mask)(vcpu))
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009467 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
9468 else
Jason Baronb36464772021-01-14 22:27:56 -05009469 static_call(kvm_x86_set_nmi_mask)(vcpu, true);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009470
9471 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
9472 kvm_rip_write(vcpu, 0x8000);
9473
9474 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
Jason Baronb36464772021-01-14 22:27:56 -05009475 static_call(kvm_x86_set_cr0)(vcpu, cr0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009476 vcpu->arch.cr0 = cr0;
9477
Jason Baronb36464772021-01-14 22:27:56 -05009478 static_call(kvm_x86_set_cr4)(vcpu, 0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009479
Paolo Bonzini18c36262015-08-07 12:27:54 +02009480 /* Undocumented: IDT limit is set to zero on entry to SMM. */
9481 dt.address = dt.size = 0;
Jason Baronb36464772021-01-14 22:27:56 -05009482 static_call(kvm_x86_set_idt)(vcpu, &dt);
Paolo Bonzini18c36262015-08-07 12:27:54 +02009483
Paolo Bonzini996ff542020-12-14 07:49:54 -05009484 kvm_set_dr(vcpu, 7, DR7_FIXED_1);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009485
9486 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
9487 cs.base = vcpu->arch.smbase;
9488
9489 ds.selector = 0;
9490 ds.base = 0;
9491
9492 cs.limit = ds.limit = 0xffffffff;
9493 cs.type = ds.type = 0x3;
9494 cs.dpl = ds.dpl = 0;
9495 cs.db = ds.db = 0;
9496 cs.s = ds.s = 1;
9497 cs.l = ds.l = 0;
9498 cs.g = ds.g = 1;
9499 cs.avl = ds.avl = 0;
9500 cs.present = ds.present = 1;
9501 cs.unusable = ds.unusable = 0;
9502 cs.padding = ds.padding = 0;
9503
9504 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
9505 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
9506 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
9507 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
9508 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
9509 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
9510
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009511#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009512 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Jason Baronb36464772021-01-14 22:27:56 -05009513 static_call(kvm_x86_set_efer)(vcpu, 0);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009514#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009515
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08009516 kvm_update_cpuid_runtime(vcpu);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009517 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009518}
9519
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009520static void process_smi(struct kvm_vcpu *vcpu)
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009521{
9522 vcpu->arch.smi_pending = true;
9523 kvm_make_request(KVM_REQ_EVENT, vcpu);
9524}
9525
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009526void kvm_make_scan_ioapic_request_mask(struct kvm *kvm,
9527 unsigned long *vcpu_bitmap)
9528{
Vitaly Kuznetsov620b2432021-09-03 09:51:41 +02009529 kvm_make_vcpus_request_mask(kvm, KVM_REQ_SCAN_IOAPIC, vcpu_bitmap);
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009530}
9531
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01009532void kvm_make_scan_ioapic_request(struct kvm *kvm)
9533{
9534 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
9535}
9536
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009537void kvm_vcpu_update_apicv(struct kvm_vcpu *vcpu)
9538{
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009539 bool activate;
9540
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009541 if (!lapic_in_kernel(vcpu))
9542 return;
9543
Sean Christopherson187c8832021-10-21 17:49:27 -07009544 down_read(&vcpu->kvm->arch.apicv_update_lock);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009545
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009546 activate = kvm_apicv_activated(vcpu->kvm);
9547 if (vcpu->arch.apicv_active == activate)
9548 goto out;
9549
9550 vcpu->arch.apicv_active = activate;
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009551 kvm_apic_update_apicv(vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009552 static_call(kvm_x86_refresh_apicv_exec_ctrl)(vcpu);
Vitaly Kuznetsovbca66db2021-06-09 17:09:10 +02009553
9554 /*
9555 * When APICv gets disabled, we may still have injected interrupts
9556 * pending. At the same time, KVM_REQ_EVENT may not be set as APICv was
9557 * still active when the interrupt got accepted. Make sure
9558 * inject_pending_event() is called to check for that.
9559 */
9560 if (!vcpu->arch.apicv_active)
9561 kvm_make_request(KVM_REQ_EVENT, vcpu);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009562
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009563out:
Sean Christopherson187c8832021-10-21 17:49:27 -07009564 up_read(&vcpu->kvm->arch.apicv_update_lock);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009565}
9566EXPORT_SYMBOL_GPL(kvm_vcpu_update_apicv);
9567
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009568void __kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009569{
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009570 unsigned long old, new;
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009571
Sean Christopherson187c8832021-10-21 17:49:27 -07009572 lockdep_assert_held_write(&kvm->arch.apicv_update_lock);
9573
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009574 if (!kvm_x86_ops.check_apicv_inhibit_reasons ||
Jason Baronb36464772021-01-14 22:27:56 -05009575 !static_call(kvm_x86_check_apicv_inhibit_reasons)(bit))
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06009576 return;
9577
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009578 old = new = kvm->arch.apicv_inhibit_reasons;
9579
9580 if (activate)
9581 __clear_bit(bit, &new);
9582 else
9583 __set_bit(bit, &new);
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009584
Maxim Levitsky36222b12021-08-10 23:52:43 +03009585 if (!!old != !!new) {
9586 trace_kvm_apicv_update_request(activate, bit);
Sean Christophersonee49a892021-10-21 17:49:25 -07009587 /*
9588 * Kick all vCPUs before setting apicv_inhibit_reasons to avoid
9589 * false positives in the sanity check WARN in svm_vcpu_run().
9590 * This task will wait for all vCPUs to ack the kick IRQ before
9591 * updating apicv_inhibit_reasons, and all other vCPUs will
9592 * block on acquiring apicv_update_lock so that vCPUs can't
9593 * redo svm_vcpu_run() without seeing the new inhibit state.
9594 *
9595 * Note, holding apicv_update_lock and taking it in the read
9596 * side (handling the request) also prevents other vCPUs from
9597 * servicing the request with a stale apicv_inhibit_reasons.
9598 */
Maxim Levitsky36222b12021-08-10 23:52:43 +03009599 kvm_make_all_cpus_request(kvm, KVM_REQ_APICV_UPDATE);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009600 kvm->arch.apicv_inhibit_reasons = new;
Maxim Levitsky36222b12021-08-10 23:52:43 +03009601 if (new) {
9602 unsigned long gfn = gpa_to_gfn(APIC_DEFAULT_PHYS_BASE);
Maxim Levitsky36222b12021-08-10 23:52:43 +03009603 kvm_zap_gfn_range(kvm, gfn, gfn+1);
9604 }
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009605 } else
9606 kvm->arch.apicv_inhibit_reasons = new;
9607}
9608EXPORT_SYMBOL_GPL(__kvm_request_apicv_update);
Suravee Suthikulpanit7d611232020-05-06 21:35:39 -05009609
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009610void kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
9611{
Sean Christopherson187c8832021-10-21 17:49:27 -07009612 down_write(&kvm->arch.apicv_update_lock);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009613 __kvm_request_apicv_update(kvm, activate, bit);
Sean Christopherson187c8832021-10-21 17:49:27 -07009614 up_write(&kvm->arch.apicv_update_lock);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009615}
9616EXPORT_SYMBOL_GPL(kvm_request_apicv_update);
9617
Yang Zhang3d81bc72013-04-11 19:25:13 +08009618static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08009619{
Wanpeng Lidcbd3e42018-12-17 10:43:23 +08009620 if (!kvm_apic_present(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08009621 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08009622
Andrey Smetanin63086302015-11-10 15:36:32 +03009623 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009624
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07009625 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03009626 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009627 else {
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -05009628 static_call_cond(kvm_x86_sync_pir_to_irr)(vcpu);
Wanpeng Lie97f8522018-11-20 16:34:18 +08009629 if (ioapic_in_kernel(vcpu->kvm))
9630 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009631 }
Liran Alone40ff1d2018-03-21 02:50:31 +02009632
9633 if (is_guest_mode(vcpu))
9634 vcpu->arch.load_eoi_exitmap_pending = true;
9635 else
9636 kvm_make_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu);
9637}
9638
9639static void vcpu_load_eoi_exitmap(struct kvm_vcpu *vcpu)
9640{
9641 u64 eoi_exit_bitmap[4];
9642
9643 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
9644 return;
9645
黄乐c5adbb3a2021-11-15 14:08:29 +00009646 if (to_hv_vcpu(vcpu)) {
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01009647 bitmap_or((ulong *)eoi_exit_bitmap,
9648 vcpu->arch.ioapic_handled_vectors,
9649 to_hv_synic(vcpu)->vec_bitmap, 256);
黄乐c5adbb3a2021-11-15 14:08:29 +00009650 static_call(kvm_x86_load_eoi_exitmap)(vcpu, eoi_exit_bitmap);
9651 return;
9652 }
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01009653
黄乐c5adbb3a2021-11-15 14:08:29 +00009654 static_call(kvm_x86_load_eoi_exitmap)(
9655 vcpu, (u64 *)vcpu->arch.ioapic_handled_vectors);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009656}
9657
Eiichi Tsukatae649b3f2020-06-06 13:26:27 +09009658void kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
9659 unsigned long start, unsigned long end)
Radim Krčmářb1394e72017-11-30 19:05:45 +01009660{
9661 unsigned long apic_address;
9662
9663 /*
9664 * The physical address of apic access page is stored in the VMCS.
9665 * Update it when it becomes invalid.
9666 */
9667 apic_address = gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
9668 if (start <= apic_address && apic_address < end)
9669 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
9670}
9671
Tang Chen4256f432014-09-24 15:57:54 +08009672void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
9673{
Paolo Bonzini35754c92015-07-29 12:05:37 +02009674 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02009675 return;
9676
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009677 if (!kvm_x86_ops.set_apic_access_page_addr)
Tang Chen4256f432014-09-24 15:57:54 +08009678 return;
9679
Jason Baronb36464772021-01-14 22:27:56 -05009680 static_call(kvm_x86_set_apic_access_page_addr)(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009681}
Tang Chen4256f432014-09-24 15:57:54 +08009682
Sean Christophersond264ee02018-08-27 15:21:12 -07009683void __kvm_request_immediate_exit(struct kvm_vcpu *vcpu)
9684{
9685 smp_send_reschedule(vcpu->cpu);
9686}
9687EXPORT_SYMBOL_GPL(__kvm_request_immediate_exit);
9688
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009689/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01009690 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009691 * exiting to the userspace. Otherwise, the value will be returned to the
9692 * userspace.
9693 */
Avi Kivity851ba692009-08-24 11:10:17 +03009694static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009695{
9696 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08009697 bool req_int_win =
9698 dm_request_for_irq_injection(vcpu) &&
9699 kvm_cpu_accept_dm_intr(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08009700 fastpath_t exit_fastpath;
Matt Gingell62a193e2015-11-16 15:26:07 -08009701
Jan Kiszka730dca42013-04-28 10:50:52 +02009702 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009703
Peter Xufb04a1e2020-09-30 21:22:22 -04009704 /* Forbid vmenter if vcpu dirty ring is soft-full */
9705 if (unlikely(vcpu->kvm->dirty_ring_size &&
9706 kvm_dirty_ring_soft_full(&vcpu->dirty_ring))) {
9707 vcpu->run->exit_reason = KVM_EXIT_DIRTY_RING_FULL;
9708 trace_kvm_dirty_ring_exit(vcpu);
9709 r = 0;
9710 goto out;
9711 }
9712
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +02009713 if (kvm_request_pending(vcpu)) {
Paolo Bonzinif4d31652021-11-11 10:13:38 -05009714 if (kvm_check_request(KVM_REQ_VM_DEAD, vcpu)) {
Sean Christopherson67369272021-07-02 15:04:25 -07009715 r = -EIO;
9716 goto out;
9717 }
Paolo Bonzini729c15c2020-09-22 06:53:57 -04009718 if (kvm_check_request(KVM_REQ_GET_NESTED_STATE_PAGES, vcpu)) {
Paolo Bonzini9a78e152021-01-08 11:43:08 -05009719 if (unlikely(!kvm_x86_ops.nested_ops->get_nested_state_pages(vcpu))) {
Jim Mattson671ddc72019-10-15 10:44:05 -07009720 r = 0;
9721 goto out;
9722 }
9723 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009724 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05009725 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03009726 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03009727 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02009728 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00009729 kvm_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03009730 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
9731 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10009732 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
9733 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10009734 if (unlikely(r))
9735 goto out;
9736 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009737 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03009738 kvm_mmu_sync_roots(vcpu);
Paolo Bonzini727a7e22020-03-05 03:52:50 -05009739 if (kvm_check_request(KVM_REQ_LOAD_MMU_PGD, vcpu))
9740 kvm_mmu_load_pgd(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009741 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) {
Sean Christopherson77809382020-03-20 14:28:18 -07009742 kvm_vcpu_flush_tlb_all(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009743
9744 /* Flushing all ASIDs flushes the current ASID... */
9745 kvm_clear_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
9746 }
Sean Christopherson40e5f9082021-11-25 01:49:43 +00009747 kvm_service_local_tlb_flush_requests(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009748
Avi Kivitya8eeb042010-05-10 12:34:53 +03009749 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03009750 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02009751 r = 0;
9752 goto out;
9753 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009754 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009755 if (is_guest_mode(vcpu)) {
9756 kvm_x86_ops.nested_ops->triple_fault(vcpu);
9757 } else {
9758 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
9759 vcpu->mmio_needed = 0;
9760 r = 0;
9761 goto out;
9762 }
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01009763 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02009764 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
9765 /* Page is swapped out. Do synthetic halt */
9766 vcpu->arch.apf.halted = true;
9767 r = 1;
9768 goto out;
9769 }
Glauber Costac9aaa892011-07-11 15:28:14 -04009770 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
9771 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009772 if (kvm_check_request(KVM_REQ_SMI, vcpu))
9773 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009774 if (kvm_check_request(KVM_REQ_NMI, vcpu))
9775 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009776 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009777 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009778 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009779 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07009780 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
9781 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
9782 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03009783 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07009784 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
9785 vcpu->run->eoi.vector =
9786 vcpu->arch.pending_ioapic_eoi;
9787 r = 0;
9788 goto out;
9789 }
9790 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08009791 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
9792 vcpu_scan_ioapic(vcpu);
Liran Alone40ff1d2018-03-21 02:50:31 +02009793 if (kvm_check_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu))
9794 vcpu_load_eoi_exitmap(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009795 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
9796 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03009797 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
9798 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9799 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
9800 r = 0;
9801 goto out;
9802 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03009803 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
9804 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9805 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
9806 r = 0;
9807 goto out;
9808 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03009809 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009810 struct kvm_vcpu_hv *hv_vcpu = to_hv_vcpu(vcpu);
9811
Andrey Smetanindb3975712015-11-10 15:36:35 +03009812 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009813 vcpu->run->hyperv = hv_vcpu->exit;
Andrey Smetanindb3975712015-11-10 15:36:35 +03009814 r = 0;
9815 goto out;
9816 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03009817
9818 /*
9819 * KVM_REQ_HV_STIMER has to be processed after
9820 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
9821 * depend on the guest clock being up-to-date
9822 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03009823 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
9824 kvm_hv_process_stimers(vcpu);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009825 if (kvm_check_request(KVM_REQ_APICV_UPDATE, vcpu))
9826 kvm_vcpu_update_apicv(vcpu);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02009827 if (kvm_check_request(KVM_REQ_APF_READY, vcpu))
9828 kvm_check_async_pf_completion(vcpu);
Alexander Graf1a1552542020-09-25 16:34:21 +02009829 if (kvm_check_request(KVM_REQ_MSR_FILTER_CHANGED, vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05009830 static_call(kvm_x86_msr_filter_changed)(vcpu);
Makarand Sonarea85863c2021-02-12 16:50:12 -08009831
9832 if (kvm_check_request(KVM_REQ_UPDATE_CPU_DIRTY_LOGGING, vcpu))
9833 static_call(kvm_x86_update_cpu_dirty_logging)(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02009834 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009835
David Woodhouse40da8cc2020-12-09 20:08:30 +00009836 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win ||
9837 kvm_xen_has_interrupt(vcpu)) {
Paolo Bonzini0f1e2612016-12-17 16:05:19 +01009838 ++vcpu->stat.req_event;
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009839 r = kvm_apic_accept_events(vcpu);
9840 if (r < 0) {
9841 r = 0;
9842 goto out;
9843 }
Jan Kiszka66450a22013-03-13 12:42:34 +01009844 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
9845 r = 1;
9846 goto out;
9847 }
9848
Jim Mattsona5f69092021-06-04 10:26:03 -07009849 r = inject_pending_event(vcpu, &req_immediate_exit);
9850 if (r < 0) {
9851 r = 0;
9852 goto out;
9853 }
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009854 if (req_int_win)
Jason Baronb36464772021-01-14 22:27:56 -05009855 static_call(kvm_x86_enable_irq_window)(vcpu);
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03009856
Avi Kivity3842d132010-07-27 12:30:24 +03009857 if (kvm_lapic_enabled(vcpu)) {
9858 update_cr8_intercept(vcpu);
9859 kvm_lapic_sync_to_vapic(vcpu);
9860 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009861 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009862
Avi Kivityd8368af2012-05-14 18:07:56 +03009863 r = kvm_mmu_reload(vcpu);
9864 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009865 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03009866 }
9867
Jan Kiszka42dbaa52008-12-15 13:52:10 +01009868 preempt_disable();
9869
Jason Baronb36464772021-01-14 22:27:56 -05009870 static_call(kvm_x86_prepare_guest_switch)(vcpu);
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009871
9872 /*
9873 * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt
9874 * IPI are then delayed after guest entry, which ensures that they
9875 * result in virtual interrupt delivery.
9876 */
9877 local_irq_disable();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009878 vcpu->mode = IN_GUEST_MODE;
9879
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009880 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
9881
Lan Tianyu0f127d12016-03-13 11:10:29 +08009882 /*
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009883 * 1) We should set ->mode before checking ->requests. Please see
Andrew Jonescde9af62017-04-26 22:32:24 +02009884 * the comment in kvm_vcpu_exiting_guest_mode().
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009885 *
Luwei Kang81b01662019-01-31 16:52:02 +08009886 * 2) For APICv, we should set ->mode before checking PID.ON. This
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009887 * pairs with the memory barrier implicit in pi_test_and_set_on
9888 * (see vmx_deliver_posted_interrupt).
9889 *
9890 * 3) This also orders the write to mode from any reads to the page
9891 * tables done while the VCPU is running. Please see the comment
9892 * in kvm_flush_remote_tlbs.
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009893 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009894 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009895
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009896 /*
9897 * This handles the case where a posted interrupt was
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -05009898 * notified with kvm_vcpu_kick. Assigned devices can
9899 * use the POSTED_INTR_VECTOR even if APICv is disabled,
9900 * so do it even if APICv is disabled on this vCPU.
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009901 */
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -05009902 if (kvm_lapic_enabled(vcpu))
9903 static_call_cond(kvm_x86_sync_pir_to_irr)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009904
Wanpeng Li5a9f5442020-04-28 14:23:26 +08009905 if (kvm_vcpu_exit_request(vcpu)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009906 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009907 smp_wmb();
9908 local_irq_enable();
9909 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009910 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009911 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009912 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009913 }
9914
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009915 if (req_immediate_exit) {
9916 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009917 static_call(kvm_x86_request_immediate_exit)(vcpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009918 }
Nadav Har'Eld6185f22011-09-22 13:52:56 +03009919
Sean Christopherson2620fe22020-01-17 11:30:51 -08009920 fpregs_assert_state_consistent();
9921 if (test_thread_flag(TIF_NEED_FPU_LOAD))
9922 switch_fpu_return();
Rik van Riel5f409e22019-04-03 18:41:52 +02009923
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009924 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009925 set_debugreg(0, 7);
9926 set_debugreg(vcpu->arch.eff_db[0], 0);
9927 set_debugreg(vcpu->arch.eff_db[1], 1);
9928 set_debugreg(vcpu->arch.eff_db[2], 2);
9929 set_debugreg(vcpu->arch.eff_db[3], 3);
Lai Jiangshanf85d4012021-06-29 01:26:32 +08009930 } else if (unlikely(hw_breakpoint_active())) {
9931 set_debugreg(0, 7);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009932 }
9933
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05009934 for (;;) {
Sean Christophersonee49a892021-10-21 17:49:25 -07009935 /*
9936 * Assert that vCPU vs. VM APICv state is consistent. An APICv
9937 * update must kick and wait for all vCPUs before toggling the
9938 * per-VM state, and responsing vCPUs must wait for the update
9939 * to complete before servicing KVM_REQ_APICV_UPDATE.
9940 */
9941 WARN_ON_ONCE(kvm_apicv_activated(vcpu->kvm) != kvm_vcpu_apicv_active(vcpu));
9942
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05009943 exit_fastpath = static_call(kvm_x86_run)(vcpu);
9944 if (likely(exit_fastpath != EXIT_FASTPATH_REENTER_GUEST))
9945 break;
9946
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -05009947 if (kvm_lapic_enabled(vcpu))
9948 static_call_cond(kvm_x86_sync_pir_to_irr)(vcpu);
Paolo Bonzinide7cd3f2021-10-20 06:27:36 -04009949
9950 if (unlikely(kvm_vcpu_exit_request(vcpu))) {
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05009951 exit_fastpath = EXIT_FASTPATH_EXIT_HANDLED;
9952 break;
9953 }
Paolo Bonzinide7cd3f2021-10-20 06:27:36 -04009954 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009955
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009956 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009957 * Do this here before restoring debug registers on the host. And
9958 * since we do this before handling the vmexit, a DR access vmexit
9959 * can (a) read the correct value of the debug registers, (b) set
9960 * KVM_DEBUGREG_WONT_EXIT again.
9961 */
9962 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009963 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
Jason Baronb36464772021-01-14 22:27:56 -05009964 static_call(kvm_x86_sync_dirty_debug_regs)(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01009965 kvm_update_dr0123(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01009966 kvm_update_dr7(vcpu);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009967 }
9968
9969 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009970 * If the guest has used debug registers, at least dr7
9971 * will be disabled while returning to the host.
9972 * If we don't have active breakpoints in the host, we don't
9973 * care about the messed up debug address registers. But if
9974 * we have some of them active, restore the old state.
9975 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01009976 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009977 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009978
Jim Mattsonc9671182020-06-03 16:56:23 -07009979 vcpu->arch.last_vmentry_cpu = vcpu->cpu;
Haozhong Zhang4ba76532015-10-20 15:39:07 +08009980 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10009981
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009982 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03009983 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08009984
Jason Baronb36464772021-01-14 22:27:56 -05009985 static_call(kvm_x86_handle_exit_irqoff)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009986
Sean Christophersond7a08882019-07-10 09:07:34 -07009987 /*
9988 * Consume any pending interrupts, including the possible source of
9989 * VM-Exit on SVM and any ticks that occur between VM-Exit and now.
9990 * An instruction is required after local_irq_enable() to fully unblock
9991 * interrupts on processors that implement an interrupt shadow, the
9992 * stat.exits increment will do nicely.
9993 */
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009994 kvm_before_interrupt(vcpu);
Sean Christophersond7a08882019-07-10 09:07:34 -07009995 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009996 ++vcpu->stat.exits;
Sean Christophersond7a08882019-07-10 09:07:34 -07009997 local_irq_disable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009998 kvm_after_interrupt(vcpu);
9999
Wanpeng Li16045712021-05-04 17:27:30 -070010000 /*
10001 * Wait until after servicing IRQs to account guest time so that any
10002 * ticks that occurred while running the guest are properly accounted
10003 * to the guest. Waiting until IRQs are enabled degrades the accuracy
10004 * of accounting via context tracking, but the loss of accuracy is
10005 * acceptable for all known use cases.
10006 */
10007 vtime_account_guest_exit();
10008
Wanpeng Liec0671d2019-05-20 16:18:08 +080010009 if (lapic_in_kernel(vcpu)) {
10010 s64 delta = vcpu->arch.apic->lapic_timer.advance_expire_delta;
10011 if (delta != S64_MIN) {
10012 trace_kvm_wait_lapic_expire(vcpu->vcpu_id, delta);
10013 vcpu->arch.apic->lapic_timer.advance_expire_delta = S64_MIN;
10014 }
10015 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010016
Paolo Bonzinif2485b32016-06-15 15:23:11 +020010017 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010018 preempt_enable();
10019
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010020 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -030010021
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010022 /*
10023 * Profile KVM exit RIPs:
10024 */
10025 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010026 unsigned long rip = kvm_rip_read(vcpu);
10027 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010028 }
10029
Zachary Amsdencc578282012-02-03 15:43:50 -020010030 if (unlikely(vcpu->arch.tsc_always_catchup))
10031 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +020010032
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +030010033 if (vcpu->arch.apic_attention)
10034 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +020010035
Jason Baronb36464772021-01-14 22:27:56 -050010036 r = static_call(kvm_x86_handle_exit)(vcpu, exit_fastpath);
Michael S. Tsirkind905c062012-06-24 19:25:00 +030010037 return r;
10038
10039cancel_injection:
Sean Christopherson8081ad02020-04-22 19:25:40 -070010040 if (req_immediate_exit)
10041 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -050010042 static_call(kvm_x86_cancel_injection)(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +030010043 if (unlikely(vcpu->arch.apic_attention))
10044 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010045out:
Marcelo Tosattid7690172008-09-08 15:23:48 -030010046 return r;
10047}
10048
Paolo Bonzini362c6982015-02-06 12:48:04 +010010049static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
10050{
Feng Wubf9f6ac2015-09-18 22:29:55 +080010051 if (!kvm_arch_vcpu_runnable(vcpu) &&
Jason Baronb36464772021-01-14 22:27:56 -050010052 (!kvm_x86_ops.pre_block || static_call(kvm_x86_pre_block)(vcpu) == 0)) {
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +010010053 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Sean Christophersoncdafece2021-10-08 19:12:11 -070010054 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
10055 kvm_vcpu_halt(vcpu);
10056 else
10057 kvm_vcpu_block(vcpu);
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +010010058 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010059
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010060 if (kvm_x86_ops.post_block)
Jason Baronb36464772021-01-14 22:27:56 -050010061 static_call(kvm_x86_post_block)(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010062
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +010010063 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
10064 return 1;
10065 }
Gleb Natapov09cec752009-03-23 15:11:44 +020010066
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010067 if (kvm_apic_accept_events(vcpu) < 0)
10068 return 0;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010069 switch(vcpu->arch.mp_state) {
10070 case KVM_MP_STATE_HALTED:
Tom Lendacky647daca2021-01-04 14:20:01 -060010071 case KVM_MP_STATE_AP_RESET_HOLD:
Paolo Bonzini362c6982015-02-06 12:48:04 +010010072 vcpu->arch.pv.pv_unhalted = false;
10073 vcpu->arch.mp_state =
10074 KVM_MP_STATE_RUNNABLE;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050010075 fallthrough;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010076 case KVM_MP_STATE_RUNNABLE:
10077 vcpu->arch.apf.halted = false;
10078 break;
10079 case KVM_MP_STATE_INIT_RECEIVED:
10080 break;
10081 default:
10082 return -EINTR;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010083 }
10084 return 1;
10085}
10086
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010087static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
10088{
Paolo Bonzini56083bd2020-04-17 10:32:53 -040010089 if (is_guest_mode(vcpu))
Sean Christophersoncb6a32c2021-03-02 09:45:14 -080010090 kvm_check_nested_events(vcpu);
Paolo Bonzini0ad3bed2016-12-19 15:23:54 +010010091
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010092 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
10093 !vcpu->arch.apf.halted);
10094}
10095
Paolo Bonzini362c6982015-02-06 12:48:04 +010010096static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -030010097{
10098 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010099 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -030010100
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010101 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Paolo Bonzinic595cee2018-07-02 13:07:14 +020010102 vcpu->arch.l1tf_flush_l1d = true;
Marcelo Tosattid7690172008-09-08 15:23:48 -030010103
Paolo Bonzini362c6982015-02-06 12:48:04 +010010104 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +020010105 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +030010106 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010107 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +010010108 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010109 }
10110
Gleb Natapov09cec752009-03-23 15:11:44 +020010111 if (r <= 0)
10112 break;
10113
Marcelo Tosatti084071d2021-05-25 10:41:17 -030010114 kvm_clear_request(KVM_REQ_UNBLOCK, vcpu);
Gleb Natapov09cec752009-03-23 15:11:44 +020010115 if (kvm_cpu_has_pending_timer(vcpu))
10116 kvm_inject_pending_timer_irqs(vcpu);
10117
Matt Gingell782d4222015-11-16 15:26:00 -080010118 if (dm_request_for_irq_injection(vcpu) &&
10119 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +020010120 r = 0;
10121 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +020010122 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010123 break;
Gleb Natapov09cec752009-03-23 15:11:44 +020010124 }
Gleb Natapovaf585b92010-10-14 11:22:46 +020010125
Thomas Gleixnerf3020b82020-07-30 09:19:01 +020010126 if (__xfer_to_guest_mode_work_pending()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010127 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +020010128 r = xfer_to_guest_mode_handle_work(vcpu);
10129 if (r)
10130 return r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010131 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -030010132 }
10133 }
10134
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010135 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010136
10137 return r;
10138}
10139
Gleb Natapov716d51a2012-09-03 15:24:26 +030010140static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
10141{
10142 int r;
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010143
Gleb Natapov716d51a2012-09-03 15:24:26 +030010144 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Sean Christopherson0ce97a22018-08-23 13:56:52 -070010145 r = kvm_emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
Gleb Natapov716d51a2012-09-03 15:24:26 +030010146 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010147 return r;
Gleb Natapov716d51a2012-09-03 15:24:26 +030010148}
10149
10150static int complete_emulated_pio(struct kvm_vcpu *vcpu)
10151{
10152 BUG_ON(!vcpu->arch.pio.count);
10153
10154 return complete_emulated_io(vcpu);
10155}
10156
Avi Kivityf78146b2012-04-18 19:22:47 +030010157/*
10158 * Implements the following, as a state machine:
10159 *
10160 * read:
10161 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010162 * for each mmio piece in the fragment
10163 * write gpa, len
10164 * exit
10165 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +030010166 * execute insn
10167 *
10168 * write:
10169 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010170 * for each mmio piece in the fragment
10171 * write gpa, len
10172 * copy data
10173 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +030010174 */
Gleb Natapov716d51a2012-09-03 15:24:26 +030010175static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +020010176{
10177 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +030010178 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010179 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +020010180
Gleb Natapov716d51a2012-09-03 15:24:26 +030010181 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +020010182
Gleb Natapov716d51a2012-09-03 15:24:26 +030010183 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010184 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
10185 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +030010186 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010187 memcpy(frag->data, run->mmio.data, len);
10188
10189 if (frag->len <= 8) {
10190 /* Switch to the next fragment. */
10191 frag++;
10192 vcpu->mmio_cur_fragment++;
10193 } else {
10194 /* Go forward to the next mmio piece. */
10195 frag->data += len;
10196 frag->gpa += len;
10197 frag->len -= len;
10198 }
10199
Andrew Honiga08d3b32014-02-27 19:35:14 +010010200 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +030010201 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +020010202
10203 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +020010204 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +030010205 return 1;
10206 vcpu->mmio_read_completed = 1;
10207 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +020010208 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010209
Gleb Natapov716d51a2012-09-03 15:24:26 +030010210 run->exit_reason = KVM_EXIT_MMIO;
10211 run->mmio.phys_addr = frag->gpa;
10212 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010213 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
10214 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +030010215 run->mmio.is_write = vcpu->mmio_is_write;
10216 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
10217 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +020010218}
10219
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +020010220/* Swap (qemu) user FPU context for the guest FPU context. */
10221static void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
10222{
Tom Lendackyed02b212020-12-10 11:10:01 -060010223 /*
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010224 * Exclude PKRU from restore as restored separately in
10225 * kvm_x86_ops.run().
Tom Lendackyed02b212020-12-10 11:10:01 -060010226 */
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010227 fpu_swap_kvm_fpstate(&vcpu->arch.guest_fpu, true);
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +020010228 trace_kvm_fpu(1);
10229}
10230
10231/* When vcpu_run ends, restore user space FPU context. */
10232static void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
10233{
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010234 fpu_swap_kvm_fpstate(&vcpu->arch.guest_fpu, false);
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +020010235 ++vcpu->stat.fpu_reload;
10236 trace_kvm_fpu(0);
10237}
10238
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010239int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010240{
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010241 struct kvm_run *kvm_run = vcpu->run;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010242 int r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010243
Christoffer Dallaccb7572017-12-04 21:35:25 +010010244 vcpu_load(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +010010245 kvm_sigset_activate(vcpu);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +080010246 kvm_run->flags = 0;
Peter Xu5663d8f2017-12-12 17:15:02 +010010247 kvm_load_guest_fpu(vcpu);
10248
Avi Kivityac9f6dc2008-07-06 15:48:31 +030010249 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
Jan H. Schönherr2f173d22017-09-06 18:34:06 +020010250 if (kvm_run->immediate_exit) {
10251 r = -EINTR;
10252 goto out;
10253 }
Sean Christophersonc91d4492021-10-08 19:12:10 -070010254 kvm_vcpu_block(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010255 if (kvm_apic_accept_events(vcpu) < 0) {
10256 r = 0;
10257 goto out;
10258 }
Radim Krčmář72875d82017-04-26 22:32:19 +020010259 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Avi Kivityac9f6dc2008-07-06 15:48:31 +030010260 r = -EAGAIN;
Jan H. Schönherra0595002017-09-06 00:27:19 +020010261 if (signal_pending(current)) {
10262 r = -EINTR;
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010263 kvm_run->exit_reason = KVM_EXIT_INTR;
Jan H. Schönherra0595002017-09-06 00:27:19 +020010264 ++vcpu->stat.signal_exits;
10265 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +030010266 goto out;
10267 }
10268
Sean Christophersone489a4a2021-07-02 15:04:29 -070010269 if ((kvm_run->kvm_valid_regs & ~KVM_SYNC_X86_VALID_FIELDS) ||
10270 (kvm_run->kvm_dirty_regs & ~KVM_SYNC_X86_VALID_FIELDS)) {
Ken Hofsass01643c52018-01-31 16:03:36 -080010271 r = -EINVAL;
10272 goto out;
10273 }
10274
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010275 if (kvm_run->kvm_dirty_regs) {
Ken Hofsass01643c52018-01-31 16:03:36 -080010276 r = sync_regs(vcpu);
10277 if (r != 0)
10278 goto out;
10279 }
10280
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010281 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +020010282 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +010010283 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
10284 r = -EINVAL;
10285 goto out;
10286 }
10287 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010288
Gleb Natapov716d51a2012-09-03 15:24:26 +030010289 if (unlikely(vcpu->arch.complete_userspace_io)) {
10290 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
10291 vcpu->arch.complete_userspace_io = NULL;
10292 r = cui(vcpu);
10293 if (r <= 0)
Peter Xu5663d8f2017-12-12 17:15:02 +010010294 goto out;
Gleb Natapov716d51a2012-09-03 15:24:26 +030010295 } else
10296 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +020010297
Paolo Bonzini460df4c2017-02-08 11:50:15 +010010298 if (kvm_run->immediate_exit)
10299 r = -EINTR;
10300 else
10301 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010302
10303out:
Peter Xu5663d8f2017-12-12 17:15:02 +010010304 kvm_put_guest_fpu(vcpu);
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010305 if (kvm_run->kvm_valid_regs)
Ken Hofsass01643c52018-01-31 16:03:36 -080010306 store_regs(vcpu);
Marcelo Tosattif1d86e42010-05-03 23:04:27 -030010307 post_kvm_run_save(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +010010308 kvm_sigset_deactivate(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010309
Christoffer Dallaccb7572017-12-04 21:35:25 +010010310 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010311 return r;
10312}
10313
Ken Hofsass01643c52018-01-31 16:03:36 -080010314static void __get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010315{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010316 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
10317 /*
10318 * We are here if userspace calls get_regs() in the middle of
10319 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +080010320 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010321 * that usually, but some bad designed PV devices (vmware
10322 * backdoor interface) need this to work
10323 */
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010324 emulator_writeback_register_cache(vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010325 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10326 }
Sean Christophersonde3cd112019-04-30 10:36:17 -070010327 regs->rax = kvm_rax_read(vcpu);
10328 regs->rbx = kvm_rbx_read(vcpu);
10329 regs->rcx = kvm_rcx_read(vcpu);
10330 regs->rdx = kvm_rdx_read(vcpu);
10331 regs->rsi = kvm_rsi_read(vcpu);
10332 regs->rdi = kvm_rdi_read(vcpu);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010333 regs->rsp = kvm_rsp_read(vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010334 regs->rbp = kvm_rbp_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010335#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010336 regs->r8 = kvm_r8_read(vcpu);
10337 regs->r9 = kvm_r9_read(vcpu);
10338 regs->r10 = kvm_r10_read(vcpu);
10339 regs->r11 = kvm_r11_read(vcpu);
10340 regs->r12 = kvm_r12_read(vcpu);
10341 regs->r13 = kvm_r13_read(vcpu);
10342 regs->r14 = kvm_r14_read(vcpu);
10343 regs->r15 = kvm_r15_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010344#endif
10345
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010346 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +020010347 regs->rflags = kvm_get_rflags(vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010348}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010349
Ken Hofsass01643c52018-01-31 16:03:36 -080010350int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10351{
10352 vcpu_load(vcpu);
10353 __get_regs(vcpu, regs);
Christoffer Dall1fc9b762017-12-04 21:35:26 +010010354 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010355 return 0;
10356}
10357
Ken Hofsass01643c52018-01-31 16:03:36 -080010358static void __set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010359{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010360 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
10361 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10362
Sean Christophersonde3cd112019-04-30 10:36:17 -070010363 kvm_rax_write(vcpu, regs->rax);
10364 kvm_rbx_write(vcpu, regs->rbx);
10365 kvm_rcx_write(vcpu, regs->rcx);
10366 kvm_rdx_write(vcpu, regs->rdx);
10367 kvm_rsi_write(vcpu, regs->rsi);
10368 kvm_rdi_write(vcpu, regs->rdi);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010369 kvm_rsp_write(vcpu, regs->rsp);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010370 kvm_rbp_write(vcpu, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010371#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010372 kvm_r8_write(vcpu, regs->r8);
10373 kvm_r9_write(vcpu, regs->r9);
10374 kvm_r10_write(vcpu, regs->r10);
10375 kvm_r11_write(vcpu, regs->r11);
10376 kvm_r12_write(vcpu, regs->r12);
10377 kvm_r13_write(vcpu, regs->r13);
10378 kvm_r14_write(vcpu, regs->r14);
10379 kvm_r15_write(vcpu, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010380#endif
10381
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010382 kvm_rip_write(vcpu, regs->rip);
Wanpeng Lid73235d2017-12-07 00:30:08 -080010383 kvm_set_rflags(vcpu, regs->rflags | X86_EFLAGS_FIXED);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010384
Jan Kiszkab4f14ab2008-04-30 17:59:04 +020010385 vcpu->arch.exception.pending = false;
10386
Avi Kivity3842d132010-07-27 12:30:24 +030010387 kvm_make_request(KVM_REQ_EVENT, vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010388}
Avi Kivity3842d132010-07-27 12:30:24 +030010389
Ken Hofsass01643c52018-01-31 16:03:36 -080010390int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10391{
10392 vcpu_load(vcpu);
10393 __set_regs(vcpu, regs);
Christoffer Dall875656f2017-12-04 21:35:27 +010010394 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010395 return 0;
10396}
10397
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010398void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
10399{
10400 struct kvm_segment cs;
10401
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010402 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010403 *db = cs.db;
10404 *l = cs.l;
10405}
10406EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
10407
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010408static void __get_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010409{
Gleb Natapov89a27f42010-02-16 10:51:48 +020010410 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010411
Tom Lendacky52657132020-12-10 11:09:59 -060010412 if (vcpu->arch.guest_state_protected)
10413 goto skip_protected_regs;
10414
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010415 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10416 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10417 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10418 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10419 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10420 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010421
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010422 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10423 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010424
Jason Baronb36464772021-01-14 22:27:56 -050010425 static_call(kvm_x86_get_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010426 sregs->idt.limit = dt.size;
10427 sregs->idt.base = dt.address;
Jason Baronb36464772021-01-14 22:27:56 -050010428 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010429 sregs->gdt.limit = dt.size;
10430 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010431
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010432 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +020010433 sregs->cr3 = kvm_read_cr3(vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010434
10435skip_protected_regs:
10436 sregs->cr0 = kvm_read_cr0(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +020010437 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010438 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +020010439 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010440 sregs->apic_base = kvm_get_apic_base(vcpu);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010441}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010442
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010443static void __get_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10444{
10445 __get_sregs_common(vcpu, sregs);
10446
10447 if (vcpu->arch.guest_state_protected)
10448 return;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010449
Liran Alon04140b42018-03-23 03:01:31 +030010450 if (vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +030010451 set_bit(vcpu->arch.interrupt.nr,
10452 (unsigned long *)sregs->interrupt_bitmap);
Ken Hofsass01643c52018-01-31 16:03:36 -080010453}
Gleb Natapov16d7a192009-04-21 17:45:10 +030010454
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010455static void __get_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10456{
10457 int i;
10458
10459 __get_sregs_common(vcpu, (struct kvm_sregs *)sregs2);
10460
10461 if (vcpu->arch.guest_state_protected)
10462 return;
10463
10464 if (is_pae_paging(vcpu)) {
10465 for (i = 0 ; i < 4 ; i++)
10466 sregs2->pdptrs[i] = kvm_pdptr_read(vcpu, i);
10467 sregs2->flags |= KVM_SREGS2_FLAGS_PDPTRS_VALID;
10468 }
10469}
10470
Ken Hofsass01643c52018-01-31 16:03:36 -080010471int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
10472 struct kvm_sregs *sregs)
10473{
10474 vcpu_load(vcpu);
10475 __get_sregs(vcpu, sregs);
Christoffer Dallbcdec412017-12-04 21:35:28 +010010476 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010477 return 0;
10478}
10479
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010480int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
10481 struct kvm_mp_state *mp_state)
10482{
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010483 int r;
10484
Christoffer Dallfd232562017-12-04 21:35:30 +010010485 vcpu_load(vcpu);
Sean Christophersonf958bd22019-12-09 12:19:31 -080010486 if (kvm_mpx_supported())
10487 kvm_load_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010488
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010489 r = kvm_apic_accept_events(vcpu);
10490 if (r < 0)
10491 goto out;
10492 r = 0;
10493
Tom Lendacky647daca2021-01-04 14:20:01 -060010494 if ((vcpu->arch.mp_state == KVM_MP_STATE_HALTED ||
10495 vcpu->arch.mp_state == KVM_MP_STATE_AP_RESET_HOLD) &&
10496 vcpu->arch.pv.pv_unhalted)
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +053010497 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
10498 else
10499 mp_state->mp_state = vcpu->arch.mp_state;
10500
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010501out:
Sean Christophersonf958bd22019-12-09 12:19:31 -080010502 if (kvm_mpx_supported())
10503 kvm_put_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010504 vcpu_put(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010505 return r;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010506}
10507
10508int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
10509 struct kvm_mp_state *mp_state)
10510{
Christoffer Dalle83dff52017-12-04 21:35:31 +010010511 int ret = -EINVAL;
10512
10513 vcpu_load(vcpu);
10514
Paolo Bonzinibce87cc2016-01-08 13:48:51 +010010515 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +010010516 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
Christoffer Dalle83dff52017-12-04 21:35:31 +010010517 goto out;
Jan Kiszka66450a22013-03-13 12:42:34 +010010518
Liran Alon27cbe7d2019-11-11 11:16:40 +020010519 /*
10520 * KVM_MP_STATE_INIT_RECEIVED means the processor is in
10521 * INIT state; latched init should be reported using
10522 * KVM_SET_VCPU_EVENTS, so reject it here.
10523 */
10524 if ((kvm_vcpu_latch_init(vcpu) || vcpu->arch.smi_pending) &&
David Hildenbrand28bf2882017-03-23 11:46:03 +010010525 (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED ||
10526 mp_state->mp_state == KVM_MP_STATE_INIT_RECEIVED))
Christoffer Dalle83dff52017-12-04 21:35:31 +010010527 goto out;
David Hildenbrand28bf2882017-03-23 11:46:03 +010010528
Jan Kiszka66450a22013-03-13 12:42:34 +010010529 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
10530 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
10531 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
10532 } else
10533 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +030010534 kvm_make_request(KVM_REQ_EVENT, vcpu);
Christoffer Dalle83dff52017-12-04 21:35:31 +010010535
10536 ret = 0;
10537out:
10538 vcpu_put(vcpu);
10539 return ret;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010540}
10541
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010542int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
10543 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010544{
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010545 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010546 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010547
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010548 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +020010549
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010550 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010551 has_error_code, error_code);
Sean Christopherson10517782019-08-27 14:40:35 -070010552 if (ret) {
10553 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
10554 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
10555 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010556 return 0;
Sean Christopherson10517782019-08-27 14:40:35 -070010557 }
Gleb Natapovc6975182010-02-18 12:15:01 +020010558
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010559 kvm_rip_write(vcpu, ctxt->eip);
10560 kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010561 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +020010562}
10563EXPORT_SYMBOL_GPL(kvm_task_switch);
10564
Sean Christophersonee69c922020-10-06 18:44:16 -070010565static bool kvm_is_valid_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Lan Tianyuf2981032017-12-14 03:01:52 -050010566{
Tianyu Lan37b95952018-01-16 17:34:07 +080010567 if ((sregs->efer & EFER_LME) && (sregs->cr0 & X86_CR0_PG)) {
Lan Tianyuf2981032017-12-14 03:01:52 -050010568 /*
10569 * When EFER.LME and CR0.PG are set, the processor is in
10570 * 64-bit mode (though maybe in a 32-bit code segment).
10571 * CR4.PAE and EFER.LMA must be set.
10572 */
Sean Christophersonee69c922020-10-06 18:44:16 -070010573 if (!(sregs->cr4 & X86_CR4_PAE) || !(sregs->efer & EFER_LMA))
10574 return false;
Sean Christophersonca29e142021-02-03 16:01:12 -080010575 if (kvm_vcpu_is_illegal_gpa(vcpu, sregs->cr3))
Paolo Bonzinic1c35cf2020-11-13 08:30:38 -050010576 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010577 } else {
10578 /*
10579 * Not in 64-bit mode: EFER.LMA is clear and the code
10580 * segment cannot be 64-bit.
10581 */
10582 if (sregs->efer & EFER_LMA || sregs->cs.l)
Sean Christophersonee69c922020-10-06 18:44:16 -070010583 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010584 }
10585
Sean Christophersonee69c922020-10-06 18:44:16 -070010586 return kvm_is_valid_cr4(vcpu, sregs->cr4);
Lan Tianyuf2981032017-12-14 03:01:52 -050010587}
10588
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010589static int __set_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs,
10590 int *mmu_reset_needed, bool update_pdptrs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010591{
Jan Kiszka58cb6282014-01-24 16:48:44 +010010592 struct msr_data apic_base_msr;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010593 int idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +020010594 struct desc_ptr dt;
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010595
Sean Christophersonee69c922020-10-06 18:44:16 -070010596 if (!kvm_is_valid_sregs(vcpu, sregs))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010597 return -EINVAL;
Lan Tianyuf2981032017-12-14 03:01:52 -050010598
Jim Mattsond3802282017-08-10 10:14:13 -070010599 apic_base_msr.data = sregs->apic_base;
10600 apic_base_msr.host_initiated = true;
10601 if (kvm_set_apic_base(vcpu, &apic_base_msr))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010602 return -EINVAL;
Petr Matousek6d1068b2012-11-06 19:24:07 +010010603
Tom Lendacky52657132020-12-10 11:09:59 -060010604 if (vcpu->arch.guest_state_protected)
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010605 return 0;
Tom Lendacky52657132020-12-10 11:09:59 -060010606
Gleb Natapov89a27f42010-02-16 10:51:48 +020010607 dt.size = sregs->idt.limit;
10608 dt.address = sregs->idt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010609 static_call(kvm_x86_set_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010610 dt.size = sregs->gdt.limit;
10611 dt.address = sregs->gdt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010612 static_call(kvm_x86_set_gdt)(vcpu, &dt);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010613
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010614 vcpu->arch.cr2 = sregs->cr2;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010615 *mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +020010616 vcpu->arch.cr3 = sregs->cr3;
Lai Jiangshan3883bc9d2021-11-08 20:44:02 +080010617 kvm_register_mark_dirty(vcpu, VCPU_EXREG_CR3);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010618
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010619 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010620
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010621 *mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Jason Baronb36464772021-01-14 22:27:56 -050010622 static_call(kvm_x86_set_efer)(vcpu, sregs->efer);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010623
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010624 *mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Jason Baronb36464772021-01-14 22:27:56 -050010625 static_call(kvm_x86_set_cr0)(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +000010626 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010627
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010628 *mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Jason Baronb36464772021-01-14 22:27:56 -050010629 static_call(kvm_x86_set_cr4)(vcpu, sregs->cr4);
Xiao Guangrong63f42e02011-01-12 15:39:18 +080010630
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010631 if (update_pdptrs) {
10632 idx = srcu_read_lock(&vcpu->kvm->srcu);
10633 if (is_pae_paging(vcpu)) {
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +080010634 load_pdptrs(vcpu, kvm_read_cr3(vcpu));
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010635 *mmu_reset_needed = 1;
10636 }
10637 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Marcelo Tosatti7c93be442009-10-26 16:48:33 -020010638 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010639
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010640 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10641 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10642 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10643 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10644 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10645 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010646
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010647 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10648 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010649
Mikhail Ershov5f0269f2009-08-03 14:58:25 +030010650 update_cr8_intercept(vcpu);
10651
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010652 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +030010653 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010654 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +020010655 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010656 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10657
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010658 return 0;
10659}
10660
10661static int __set_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10662{
10663 int pending_vec, max_bits;
10664 int mmu_reset_needed = 0;
10665 int ret = __set_sregs_common(vcpu, sregs, &mmu_reset_needed, true);
10666
10667 if (ret)
10668 return ret;
10669
10670 if (mmu_reset_needed)
10671 kvm_mmu_reset_context(vcpu);
10672
Tom Lendacky52657132020-12-10 11:09:59 -060010673 max_bits = KVM_NR_INTERRUPTS;
10674 pending_vec = find_first_bit(
10675 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010676
Tom Lendacky52657132020-12-10 11:09:59 -060010677 if (pending_vec < max_bits) {
10678 kvm_queue_interrupt(vcpu, pending_vec, false);
10679 pr_debug("Set back pending irq %d\n", pending_vec);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010680 kvm_make_request(KVM_REQ_EVENT, vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010681 }
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010682 return 0;
10683}
Tom Lendacky52657132020-12-10 11:09:59 -060010684
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010685static int __set_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10686{
10687 int mmu_reset_needed = 0;
10688 bool valid_pdptrs = sregs2->flags & KVM_SREGS2_FLAGS_PDPTRS_VALID;
10689 bool pae = (sregs2->cr0 & X86_CR0_PG) && (sregs2->cr4 & X86_CR4_PAE) &&
10690 !(sregs2->efer & EFER_LMA);
10691 int i, ret;
Avi Kivity3842d132010-07-27 12:30:24 +030010692
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010693 if (sregs2->flags & ~KVM_SREGS2_FLAGS_PDPTRS_VALID)
10694 return -EINVAL;
10695
10696 if (valid_pdptrs && (!pae || vcpu->arch.guest_state_protected))
10697 return -EINVAL;
10698
10699 ret = __set_sregs_common(vcpu, (struct kvm_sregs *)sregs2,
10700 &mmu_reset_needed, !valid_pdptrs);
10701 if (ret)
10702 return ret;
10703
10704 if (valid_pdptrs) {
10705 for (i = 0; i < 4 ; i++)
10706 kvm_pdptr_write(vcpu, i, sregs2->pdptrs[i]);
10707
10708 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
10709 mmu_reset_needed = 1;
Maxim Levitsky158a48e2021-06-07 12:02:03 +030010710 vcpu->arch.pdptrs_from_userspace = true;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010711 }
10712 if (mmu_reset_needed)
10713 kvm_mmu_reset_context(vcpu);
10714 return 0;
Ken Hofsass01643c52018-01-31 16:03:36 -080010715}
10716
10717int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
10718 struct kvm_sregs *sregs)
10719{
10720 int ret;
10721
10722 vcpu_load(vcpu);
10723 ret = __set_sregs(vcpu, sregs);
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010724 vcpu_put(vcpu);
10725 return ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010726}
10727
Maxim Levitskycae72dc2021-11-08 11:02:45 +020010728static void kvm_arch_vcpu_guestdbg_update_apicv_inhibit(struct kvm *kvm)
10729{
10730 bool inhibit = false;
10731 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +000010732 unsigned long i;
Maxim Levitskycae72dc2021-11-08 11:02:45 +020010733
10734 down_write(&kvm->arch.apicv_update_lock);
10735
10736 kvm_for_each_vcpu(i, vcpu, kvm) {
10737 if (vcpu->guest_debug & KVM_GUESTDBG_BLOCKIRQ) {
10738 inhibit = true;
10739 break;
10740 }
10741 }
10742 __kvm_request_apicv_update(kvm, !inhibit, APICV_INHIBIT_REASON_BLOCKIRQ);
10743 up_write(&kvm->arch.apicv_update_lock);
10744}
10745
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010746int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
10747 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010748{
Jan Kiszka355be0b2009-10-03 00:31:21 +020010749 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010750 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010751
Tom Lendacky8d4846b2020-12-10 11:09:43 -060010752 if (vcpu->arch.guest_state_protected)
10753 return -EINVAL;
10754
Christoffer Dall66b56562017-12-04 21:35:33 +010010755 vcpu_load(vcpu);
10756
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010757 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
10758 r = -EBUSY;
10759 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +030010760 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010761 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
10762 kvm_queue_exception(vcpu, DB_VECTOR);
10763 else
10764 kvm_queue_exception(vcpu, BP_VECTOR);
10765 }
10766
Jan Kiszka91586a32009-10-05 13:07:21 +020010767 /*
10768 * Read rflags as long as potentially injected trace flags are still
10769 * filtered out.
10770 */
10771 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010772
10773 vcpu->guest_debug = dbg->control;
10774 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
10775 vcpu->guest_debug = 0;
10776
10777 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010778 for (i = 0; i < KVM_NR_DB_REGS; ++i)
10779 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +020010780 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010781 } else {
10782 for (i = 0; i < KVM_NR_DB_REGS; i++)
10783 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010784 }
Jan Kiszkac8639012012-09-21 05:42:55 +020010785 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010786
Jan Kiszkaf92653e2010-02-23 17:47:55 +010010787 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Yuan Yaoe87e46d2021-05-26 14:38:28 +080010788 vcpu->arch.singlestep_rip = kvm_get_linear_rip(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010789
Jan Kiszka91586a32009-10-05 13:07:21 +020010790 /*
10791 * Trigger an rflags update that will inject or remove the trace
10792 * flags.
10793 */
10794 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010795
Jason Baronb36464772021-01-14 22:27:56 -050010796 static_call(kvm_x86_update_exception_bitmap)(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010797
Maxim Levitskycae72dc2021-11-08 11:02:45 +020010798 kvm_arch_vcpu_guestdbg_update_apicv_inhibit(vcpu->kvm);
10799
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010800 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010801
Avi Kivity2122ff52010-05-13 11:25:04 +030010802out:
Christoffer Dall66b56562017-12-04 21:35:33 +010010803 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010804 return r;
10805}
10806
10807/*
Zhang Xiantao8b006792007-11-16 13:05:55 +080010808 * Translate a guest virtual address to a guest physical address.
10809 */
10810int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
10811 struct kvm_translation *tr)
10812{
10813 unsigned long vaddr = tr->linear_address;
10814 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010815 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +080010816
Christoffer Dall1da5b612017-12-04 21:35:32 +010010817 vcpu_load(vcpu);
10818
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010819 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +020010820 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010821 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +080010822 tr->physical_address = gpa;
10823 tr->valid = gpa != UNMAPPED_GVA;
10824 tr->writeable = 1;
10825 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +080010826
Christoffer Dall1da5b612017-12-04 21:35:32 +010010827 vcpu_put(vcpu);
Zhang Xiantao8b006792007-11-16 13:05:55 +080010828 return 0;
10829}
10830
Hollis Blanchardd0752062007-10-31 17:24:25 -050010831int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10832{
Christoffer Dall13931232017-12-04 21:35:34 +010010833 struct fxregs_state *fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010834
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010835 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
Tom Lendackyed02b212020-12-10 11:10:01 -060010836 return 0;
10837
Christoffer Dall13931232017-12-04 21:35:34 +010010838 vcpu_load(vcpu);
10839
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010840 fxsave = &vcpu->arch.guest_fpu.fpstate->regs.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010841 memcpy(fpu->fpr, fxsave->st_space, 128);
10842 fpu->fcw = fxsave->cwd;
10843 fpu->fsw = fxsave->swd;
10844 fpu->ftwx = fxsave->twd;
10845 fpu->last_opcode = fxsave->fop;
10846 fpu->last_ip = fxsave->rip;
10847 fpu->last_dp = fxsave->rdp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000010848 memcpy(fpu->xmm, fxsave->xmm_space, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050010849
Christoffer Dall13931232017-12-04 21:35:34 +010010850 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050010851 return 0;
10852}
10853
10854int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10855{
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010856 struct fxregs_state *fxsave;
10857
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010858 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
Tom Lendackyed02b212020-12-10 11:10:01 -060010859 return 0;
10860
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010861 vcpu_load(vcpu);
10862
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010863 fxsave = &vcpu->arch.guest_fpu.fpstate->regs.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010864
Hollis Blanchardd0752062007-10-31 17:24:25 -050010865 memcpy(fxsave->st_space, fpu->fpr, 128);
10866 fxsave->cwd = fpu->fcw;
10867 fxsave->swd = fpu->fsw;
10868 fxsave->twd = fpu->ftwx;
10869 fxsave->fop = fpu->last_opcode;
10870 fxsave->rip = fpu->last_ip;
10871 fxsave->rdp = fpu->last_dp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000010872 memcpy(fxsave->xmm_space, fpu->xmm, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050010873
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010874 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050010875 return 0;
10876}
10877
Ken Hofsass01643c52018-01-31 16:03:36 -080010878static void store_regs(struct kvm_vcpu *vcpu)
10879{
10880 BUILD_BUG_ON(sizeof(struct kvm_sync_regs) > SYNC_REGS_SIZE_BYTES);
10881
10882 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_REGS)
10883 __get_regs(vcpu, &vcpu->run->s.regs.regs);
10884
10885 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_SREGS)
10886 __get_sregs(vcpu, &vcpu->run->s.regs.sregs);
10887
10888 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_EVENTS)
10889 kvm_vcpu_ioctl_x86_get_vcpu_events(
10890 vcpu, &vcpu->run->s.regs.events);
10891}
10892
10893static int sync_regs(struct kvm_vcpu *vcpu)
10894{
Ken Hofsass01643c52018-01-31 16:03:36 -080010895 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_REGS) {
10896 __set_regs(vcpu, &vcpu->run->s.regs.regs);
10897 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_REGS;
10898 }
10899 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_SREGS) {
10900 if (__set_sregs(vcpu, &vcpu->run->s.regs.sregs))
10901 return -EINVAL;
10902 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_SREGS;
10903 }
10904 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_EVENTS) {
10905 if (kvm_vcpu_ioctl_x86_set_vcpu_events(
10906 vcpu, &vcpu->run->s.regs.events))
10907 return -EINVAL;
10908 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_EVENTS;
10909 }
10910
10911 return 0;
10912}
10913
Sean Christopherson897cc382019-12-18 13:55:09 -080010914int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010915{
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010010916 if (kvm_check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
Sean Christopherson897cc382019-12-18 13:55:09 -080010917 pr_warn_once("kvm: SMP vm created on host with unstable TSC; "
10918 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +080010919
Sean Christopherson897cc382019-12-18 13:55:09 -080010920 return 0;
Avi Kivity26e52152007-11-20 15:30:24 +020010921}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010922
Sean Christophersone529ef62019-12-18 13:55:15 -080010923int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
Avi Kivity26e52152007-11-20 15:30:24 +020010924{
Sean Christopherson95a0d012019-12-18 13:55:23 -080010925 struct page *page;
10926 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010927
Sean Christopherson63f5a192021-06-22 10:56:52 -070010928 vcpu->arch.last_vmentry_cpu = -1;
Sean Christopherson71170032021-09-20 17:02:54 -070010929 vcpu->arch.regs_avail = ~0;
10930 vcpu->arch.regs_dirty = ~0;
Sean Christopherson63f5a192021-06-22 10:56:52 -070010931
Sean Christopherson95a0d012019-12-18 13:55:23 -080010932 if (!irqchip_in_kernel(vcpu->kvm) || kvm_vcpu_is_reset_bsp(vcpu))
10933 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10934 else
10935 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
10936
Sean Christopherson95a0d012019-12-18 13:55:23 -080010937 r = kvm_mmu_create(vcpu);
10938 if (r < 0)
10939 return r;
10940
10941 if (irqchip_in_kernel(vcpu->kvm)) {
Sean Christopherson95a0d012019-12-18 13:55:23 -080010942 r = kvm_create_lapic(vcpu, lapic_timer_advance_ns);
10943 if (r < 0)
10944 goto fail_mmu_destroy;
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -060010945 if (kvm_apicv_activated(vcpu->kvm))
10946 vcpu->arch.apicv_active = true;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010947 } else
Cun Li6e4e3b42021-01-11 23:24:35 +080010948 static_branch_inc(&kvm_has_noapic_vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010949
10950 r = -ENOMEM;
10951
Shakeel Butt93bb59c2020-12-18 14:01:38 -080010952 page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010953 if (!page)
10954 goto fail_free_lapic;
10955 vcpu->arch.pio_data = page_address(page);
10956
10957 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
10958 GFP_KERNEL_ACCOUNT);
10959 if (!vcpu->arch.mce_banks)
10960 goto fail_free_pio_data;
10961 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
10962
10963 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask,
10964 GFP_KERNEL_ACCOUNT))
10965 goto fail_free_mce_banks;
10966
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010967 if (!alloc_emulate_ctxt(vcpu))
10968 goto free_wbinvd_dirty_mask;
10969
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010970 if (!fpu_alloc_guest_fpstate(&vcpu->arch.guest_fpu)) {
10971 pr_err("kvm: failed to allocate vcpu's fpu\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010972 goto free_emulate_ctxt;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010973 }
10974
Sean Christopherson95a0d012019-12-18 13:55:23 -080010975 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
Sean Christophersona8ac8642021-02-03 16:01:15 -080010976 vcpu->arch.reserved_gpa_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010977
10978 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
10979
10980 kvm_async_pf_hash_reset(vcpu);
10981 kvm_pmu_init(vcpu);
10982
10983 vcpu->arch.pending_external_vector = -1;
10984 vcpu->arch.preempted_in_kernel = false;
10985
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000010986#if IS_ENABLED(CONFIG_HYPERV)
10987 vcpu->arch.hv_root_tdp = INVALID_PAGE;
10988#endif
10989
Jason Baronb36464772021-01-14 22:27:56 -050010990 r = static_call(kvm_x86_vcpu_create)(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010991 if (r)
10992 goto free_guest_fpu;
Sean Christopherson5f73db12019-12-18 13:55:18 -080010993
Sean Christopherson0cf91352019-03-07 15:43:02 -080010994 vcpu->arch.arch_capabilities = kvm_get_arch_capabilities();
Jim Mattsone53d88af2018-10-30 12:20:21 -070010995 vcpu->arch.msr_platform_info = MSR_PLATFORM_INFO_CPUID_FAULT;
Xiao Guangrong19efffa2015-06-15 16:55:31 +080010996 kvm_vcpu_mtrr_init(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010010997 vcpu_load(vcpu);
Ilias Stamatis1ab92872021-06-07 11:54:38 +010010998 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Nadav Amitd28bc9d2015-04-13 14:34:08 +030010999 kvm_vcpu_reset(vcpu, false);
Sean Christophersonc9060662021-06-09 16:42:33 -070011000 kvm_init_mmu(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011001 vcpu_put(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010011002 return 0;
Sean Christopherson95a0d012019-12-18 13:55:23 -080011003
11004free_guest_fpu:
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011005 fpu_free_guest_fpstate(&vcpu->arch.guest_fpu);
Sean Christophersonc9b8b072020-02-18 15:29:48 -080011006free_emulate_ctxt:
11007 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011008free_wbinvd_dirty_mask:
11009 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
11010fail_free_mce_banks:
11011 kfree(vcpu->arch.mce_banks);
11012fail_free_pio_data:
11013 free_page((unsigned long)vcpu->arch.pio_data);
11014fail_free_lapic:
11015 kvm_free_lapic(vcpu);
11016fail_mmu_destroy:
11017 kvm_mmu_destroy(vcpu);
11018 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011019}
11020
Dominik Dingel31928aa2014-12-04 15:47:07 +010011021void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011022{
Andrew Jones332967a2014-02-28 12:52:55 +010011023 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011024
Christoffer Dallec7660c2017-12-04 21:35:23 +010011025 if (mutex_lock_killable(&vcpu->mutex))
Dominik Dingel31928aa2014-12-04 15:47:07 +010011026 return;
Christoffer Dallec7660c2017-12-04 21:35:23 +010011027 vcpu_load(vcpu);
Paolo Bonzini0c899c22020-09-24 14:45:27 +020011028 kvm_synchronize_tsc(vcpu, 0);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011029 vcpu_put(vcpu);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030011030
11031 /* poll control enabled by default */
11032 vcpu->arch.msr_kvm_poll_control = 1;
11033
Christoffer Dallec7660c2017-12-04 21:35:23 +010011034 mutex_unlock(&vcpu->mutex);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011035
Wanpeng Lib34de572020-02-28 11:18:41 +080011036 if (kvmclock_periodic_sync && vcpu->vcpu_idx == 0)
11037 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
11038 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011039}
11040
Hollis Blanchardd40ccc62007-11-19 14:04:43 -060011041void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011042{
Sean Christopherson95a0d012019-12-18 13:55:23 -080011043 int idx;
Gleb Natapov344d9582010-10-14 11:22:50 +020011044
Sean Christopherson50b143e2019-12-18 13:55:07 -080011045 kvmclock_reset(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011046
Jason Baronb36464772021-01-14 22:27:56 -050011047 static_call(kvm_x86_vcpu_free)(vcpu);
Sean Christopherson50b143e2019-12-18 13:55:07 -080011048
Sean Christophersonc9b8b072020-02-18 15:29:48 -080011049 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson50b143e2019-12-18 13:55:07 -080011050 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011051 fpu_free_guest_fpstate(&vcpu->arch.guest_fpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011052
11053 kvm_hv_vcpu_uninit(vcpu);
11054 kvm_pmu_destroy(vcpu);
11055 kfree(vcpu->arch.mce_banks);
11056 kvm_free_lapic(vcpu);
11057 idx = srcu_read_lock(&vcpu->kvm->srcu);
11058 kvm_mmu_destroy(vcpu);
11059 srcu_read_unlock(&vcpu->kvm->srcu, idx);
11060 free_page((unsigned long)vcpu->arch.pio_data);
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +020011061 kvfree(vcpu->arch.cpuid_entries);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011062 if (!lapic_in_kernel(vcpu))
Cun Li6e4e3b42021-01-11 23:24:35 +080011063 static_branch_dec(&kvm_has_noapic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011064}
11065
Nadav Amitd28bc9d2015-04-13 14:34:08 +030011066void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011067{
Sean Christopherson25b97842021-09-29 15:24:26 -070011068 struct kvm_cpuid_entry2 *cpuid_0x1;
Sean Christopherson0aa18372021-06-22 10:56:48 -070011069 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Sean Christopherson4c72ab52021-07-13 09:33:24 -070011070 unsigned long new_cr0;
Sean Christopherson0aa18372021-06-22 10:56:48 -070011071
Sean Christopherson62dd57d2021-09-20 17:03:03 -070011072 /*
11073 * Several of the "set" flows, e.g. ->set_cr0(), read other registers
11074 * to handle side effects. RESET emulation hits those flows and relies
11075 * on emulated/virtualized registers, including those that are loaded
11076 * into hardware, to be zeroed at vCPU creation. Use CRs as a sentinel
11077 * to detect improper or missing initialization.
11078 */
11079 WARN_ON_ONCE(!init_event &&
11080 (old_cr0 || kvm_read_cr3(vcpu) || kvm_read_cr4(vcpu)));
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011081
Radim Krčmářb7e31be2018-03-01 15:24:25 +010011082 kvm_lapic_reset(vcpu, init_event);
11083
Paolo Bonzinie69fab52015-06-04 10:44:44 +020011084 vcpu->arch.hflags = 0;
11085
Paolo Bonzinic43203c2016-06-01 22:26:00 +020011086 vcpu->arch.smi_pending = 0;
Liran Alon52797bf2017-11-15 13:43:14 +020011087 vcpu->arch.smi_count = 0;
Avi Kivity7460fb4a2011-09-20 13:43:14 +030011088 atomic_set(&vcpu->arch.nmi_queued, 0);
11089 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +020011090 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +030011091 kvm_clear_interrupt_queue(vcpu);
11092 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +020011093
Jan Kiszka42dbaa52008-12-15 13:52:10 +010011094 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +030011095 kvm_update_dr0123(vcpu);
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +080011096 vcpu->arch.dr6 = DR6_ACTIVE_LOW;
Jan Kiszka42dbaa52008-12-15 13:52:10 +010011097 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +020011098 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +010011099
Nadav Amit11190222015-04-02 03:10:38 +030011100 vcpu->arch.cr2 = 0;
11101
Avi Kivity3842d132010-07-27 12:30:24 +030011102 kvm_make_request(KVM_REQ_EVENT, vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011103 vcpu->arch.apf.msr_en_val = 0;
11104 vcpu->arch.apf.msr_int_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -040011105 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +030011106
Glauber Costa12f9a482011-02-01 14:16:40 -050011107 kvmclock_reset(vcpu);
11108
Gleb Natapovaf585b92010-10-14 11:22:46 +020011109 kvm_clear_async_pf_completion_queue(vcpu);
11110 kvm_async_pf_hash_reset(vcpu);
11111 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011112
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011113 if (vcpu->arch.guest_fpu.fpstate && kvm_mpx_supported()) {
11114 struct fpstate *fpstate = vcpu->arch.guest_fpu.fpstate;
Wanpeng Lia554d202017-10-11 05:10:19 -070011115
11116 /*
11117 * To avoid have the INIT path from kvm_apic_has_events() that be
11118 * called with loaded FPU and does not let userspace fix the state.
11119 */
Rik van Rielf775b132017-11-14 16:54:23 -050011120 if (init_event)
11121 kvm_put_guest_fpu(vcpu);
Thomas Gleixner087df482021-10-13 16:55:31 +020011122
11123 fpstate_clear_xstate_component(fpstate, XFEATURE_BNDREGS);
11124 fpstate_clear_xstate_component(fpstate, XFEATURE_BNDCSR);
11125
Rik van Rielf775b132017-11-14 16:54:23 -050011126 if (init_event)
11127 kvm_load_guest_fpu(vcpu);
Wanpeng Lia554d202017-10-11 05:10:19 -070011128 }
11129
Paolo Bonzini64d60672015-05-07 11:36:11 +020011130 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +030011131 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +020011132 vcpu->arch.smbase = 0x30000;
Kyle Hueydb2336a2017-03-20 01:16:28 -070011133
Kyle Hueydb2336a2017-03-20 01:16:28 -070011134 vcpu->arch.msr_misc_features_enables = 0;
Wanpeng Lia554d202017-10-11 05:10:19 -070011135
11136 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Paolo Bonzini64d60672015-05-07 11:36:11 +020011137 }
Gleb Natapovf5132b02011-11-10 14:57:22 +020011138
Sean Christophersonff8828c2021-09-20 17:02:56 -070011139 /* All GPRs except RDX (handled below) are zeroed on RESET/INIT. */
Julian Stecklina66f7b722012-12-05 15:26:19 +010011140 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
Sean Christophersonff8828c2021-09-20 17:02:56 -070011141 kvm_register_mark_dirty(vcpu, VCPU_REGS_RSP);
Julian Stecklina66f7b722012-12-05 15:26:19 +010011142
Sean Christopherson49d86652021-07-13 09:32:57 -070011143 /*
11144 * Fall back to KVM's default Family/Model/Stepping of 0x600 (P6/Athlon)
11145 * if no CPUID match is found. Note, it's impossible to get a match at
11146 * RESET since KVM emulates RESET before exposing the vCPU to userspace,
Sean Christopherson25b97842021-09-29 15:24:26 -070011147 * i.e. it's impossible for kvm_find_cpuid_entry() to find a valid entry
11148 * on RESET. But, go through the motions in case that's ever remedied.
Sean Christopherson49d86652021-07-13 09:32:57 -070011149 */
Sean Christopherson25b97842021-09-29 15:24:26 -070011150 cpuid_0x1 = kvm_find_cpuid_entry(vcpu, 1, 0);
11151 kvm_rdx_write(vcpu, cpuid_0x1 ? cpuid_0x1->eax : 0x600);
Sean Christopherson49d86652021-07-13 09:32:57 -070011152
Wanpeng Lia554d202017-10-11 05:10:19 -070011153 vcpu->arch.ia32_xss = 0;
11154
Jason Baronb36464772021-01-14 22:27:56 -050011155 static_call(kvm_x86_vcpu_reset)(vcpu, init_event);
Sean Christopherson0aa18372021-06-22 10:56:48 -070011156
Sean Christophersonf39e8052021-07-13 09:33:14 -070011157 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
11158 kvm_rip_write(vcpu, 0xfff0);
11159
Sean Christopherson03a6e842021-09-20 17:02:55 -070011160 vcpu->arch.cr3 = 0;
11161 kvm_register_mark_dirty(vcpu, VCPU_EXREG_CR3);
11162
Sean Christopherson4c72ab52021-07-13 09:33:24 -070011163 /*
11164 * CR0.CD/NW are set on RESET, preserved on INIT. Note, some versions
11165 * of Intel's SDM list CD/NW as being set on INIT, but they contradict
11166 * (or qualify) that with a footnote stating that CD/NW are preserved.
11167 */
11168 new_cr0 = X86_CR0_ET;
11169 if (init_event)
11170 new_cr0 |= (old_cr0 & (X86_CR0_NW | X86_CR0_CD));
11171 else
11172 new_cr0 |= X86_CR0_NW | X86_CR0_CD;
11173
11174 static_call(kvm_x86_set_cr0)(vcpu, new_cr0);
Sean Christophersonf39e8052021-07-13 09:33:14 -070011175 static_call(kvm_x86_set_cr4)(vcpu, 0);
11176 static_call(kvm_x86_set_efer)(vcpu, 0);
11177 static_call(kvm_x86_update_exception_bitmap)(vcpu);
11178
Sean Christopherson0aa18372021-06-22 10:56:48 -070011179 /*
11180 * Reset the MMU context if paging was enabled prior to INIT (which is
11181 * implied if CR0.PG=1 as CR0 will be '0' prior to RESET). Unlike the
11182 * standard CR0/CR4/EFER modification paths, only CR0.PG needs to be
11183 * checked because it is unconditionally cleared on INIT and all other
11184 * paging related bits are ignored if paging is disabled, i.e. CR0.WP,
11185 * CR4, and EFER changes are all irrelevant if CR0.PG was '0'.
11186 */
11187 if (old_cr0 & X86_CR0_PG)
11188 kvm_mmu_reset_context(vcpu);
Sean Christophersondf37ed32021-07-13 09:32:39 -070011189
11190 /*
11191 * Intel's SDM states that all TLB entries are flushed on INIT. AMD's
11192 * APM states the TLBs are untouched by INIT, but it also states that
11193 * the TLBs are flushed on "External initialization of the processor."
11194 * Flush the guest TLB regardless of vendor, there is no meaningful
11195 * benefit in relying on the guest to flush the TLB immediately after
11196 * INIT. A spurious TLB flush is benign and likely negligible from a
11197 * performance perspective.
11198 */
11199 if (init_event)
11200 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011201}
Sean Christopherson265e4352021-07-13 09:33:22 -070011202EXPORT_SYMBOL_GPL(kvm_vcpu_reset);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011203
Paolo Bonzini2b4a2732014-11-24 14:35:24 +010011204void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +010011205{
11206 struct kvm_segment cs;
11207
11208 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
11209 cs.selector = vector << 8;
11210 cs.base = vector << 12;
11211 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
11212 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011213}
Tom Lendacky647daca2021-01-04 14:20:01 -060011214EXPORT_SYMBOL_GPL(kvm_vcpu_deliver_sipi_vector);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011215
Radim Krčmář13a34e02014-08-28 15:13:03 +020011216int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011217{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -100011218 struct kvm *kvm;
11219 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +000011220 unsigned long i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011221 int ret;
11222 u64 local_tsc;
11223 u64 max_tsc = 0;
11224 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +030011225
Sean Christopherson7e34fbd2020-09-23 11:03:55 -070011226 kvm_user_return_msr_cpu_online();
Jason Baronb36464772021-01-14 22:27:56 -050011227 ret = static_call(kvm_x86_hardware_enable)();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011228 if (ret != 0)
11229 return ret;
11230
Andy Lutomirski4ea16362015-06-25 18:44:07 +020011231 local_tsc = rdtsc();
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010011232 stable = !kvm_check_tsc_unstable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011233 list_for_each_entry(kvm, &vm_list, vm_list) {
11234 kvm_for_each_vcpu(i, vcpu, kvm) {
11235 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +080011236 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011237 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
11238 backwards_tsc = true;
11239 if (vcpu->arch.last_host_tsc > max_tsc)
11240 max_tsc = vcpu->arch.last_host_tsc;
11241 }
11242 }
11243 }
11244
11245 /*
11246 * Sometimes, even reliable TSCs go backwards. This happens on
11247 * platforms that reset TSC during suspend or hibernate actions, but
11248 * maintain synchronization. We must compensate. Fortunately, we can
11249 * detect that condition here, which happens early in CPU bringup,
11250 * before any KVM threads can be running. Unfortunately, we can't
11251 * bring the TSCs fully up to date with real time, as we aren't yet far
11252 * enough into CPU bringup that we know how much real time has actually
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020011253 * elapsed; our helper function, ktime_get_boottime_ns() will be using boot
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011254 * variables that haven't been updated yet.
11255 *
11256 * So we simply find the maximum observed TSC above, then record the
11257 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
11258 * the adjustment will be applied. Note that we accumulate
11259 * adjustments, in case multiple suspend cycles happen before some VCPU
11260 * gets a chance to run again. In the event that no KVM threads get a
11261 * chance to run, we will miss the entire elapsed period, as we'll have
11262 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
11263 * loose cycle time. This isn't too big a deal, since the loss will be
11264 * uniform across all VCPUs (not to mention the scenario is extremely
11265 * unlikely). It is possible that a second hibernate recovery happens
11266 * much faster than a first, causing the observed TSC here to be
11267 * smaller; this would require additional padding adjustment, which is
11268 * why we set last_host_tsc to the local tsc observed here.
11269 *
11270 * N.B. - this code below runs only on platforms with reliable TSC,
11271 * as that is the only way backwards_tsc is set above. Also note
11272 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
11273 * have the same delta_cyc adjustment applied if backwards_tsc
11274 * is detected. Note further, this adjustment is only done once,
11275 * as we reset last_host_tsc on all VCPUs to stop this from being
11276 * called multiple times (one for each physical CPU bringup).
11277 *
Guo Chao4a969982012-06-28 15:17:27 +080011278 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011279 * will be compensated by the logic in vcpu_load, which sets the TSC to
11280 * catchup mode. This will catchup all VCPUs to real time, but cannot
11281 * guarantee that they stay in perfect synchronization.
11282 */
11283 if (backwards_tsc) {
11284 u64 delta_cyc = max_tsc - local_tsc;
11285 list_for_each_entry(kvm, &vm_list, vm_list) {
Ladi Proseka826faf2017-06-26 09:56:43 +020011286 kvm->arch.backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011287 kvm_for_each_vcpu(i, vcpu, kvm) {
11288 vcpu->arch.tsc_offset_adjustment += delta_cyc;
11289 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +080011290 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011291 }
11292
11293 /*
11294 * We have to disable TSC offset matching.. if you were
11295 * booting a VM while issuing an S4 host suspend....
11296 * you may have some problem. Solving this issue is
11297 * left as an exercise to the reader.
11298 */
11299 kvm->arch.last_tsc_nsec = 0;
11300 kvm->arch.last_tsc_write = 0;
11301 }
11302
11303 }
11304 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011305}
11306
Radim Krčmář13a34e02014-08-28 15:13:03 +020011307void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011308{
Jason Baronb36464772021-01-14 22:27:56 -050011309 static_call(kvm_x86_hardware_disable)();
Radim Krčmář13a34e02014-08-28 15:13:03 +020011310 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011311}
11312
Sean Christophersonb9904082020-03-21 13:25:55 -070011313int kvm_arch_hardware_setup(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011314{
Sean Christophersond008dfd2020-03-21 13:25:56 -070011315 struct kvm_x86_init_ops *ops = opaque;
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011316 int r;
11317
Sean Christopherson91661982020-03-02 15:57:06 -080011318 rdmsrl_safe(MSR_EFER, &host_efer);
11319
Paolo Bonzini408e9a32020-03-05 16:11:56 +010011320 if (boot_cpu_has(X86_FEATURE_XSAVES))
11321 rdmsrl(MSR_IA32_XSS, host_xss);
11322
Sean Christophersond008dfd2020-03-21 13:25:56 -070011323 r = ops->hardware_setup();
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011324 if (r != 0)
11325 return r;
11326
Sean Christophersonafaf0b22020-03-21 13:26:00 -070011327 memcpy(&kvm_x86_ops, ops->runtime_ops, sizeof(kvm_x86_ops));
Jason Baronb36464772021-01-14 22:27:56 -050011328 kvm_ops_static_call_update();
Sean Christopherson69c6f692020-03-21 13:25:59 -070011329
Paolo Bonzini408e9a32020-03-05 16:11:56 +010011330 if (!kvm_cpu_cap_has(X86_FEATURE_XSAVES))
11331 supported_xss = 0;
11332
Paolo Bonzini139f7422020-05-05 09:40:46 -040011333#define __kvm_cpu_cap_has(UNUSED_, f) kvm_cpu_cap_has(f)
11334 cr4_reserved_bits = __cr4_reserved_bits(__kvm_cpu_cap_has, UNUSED_);
11335#undef __kvm_cpu_cap_has
Sean Christophersonb11306b2019-12-10 14:44:13 -080011336
Haozhong Zhang35181e82015-10-20 15:39:03 +080011337 if (kvm_has_tsc_control) {
11338 /*
11339 * Make sure the user can only configure tsc_khz values that
11340 * fit into a signed integer.
Marcelo Tosatti273ba452018-06-11 14:12:10 -030011341 * A min value is not calculated because it will always
Haozhong Zhang35181e82015-10-20 15:39:03 +080011342 * be 1 on all machines.
11343 */
11344 u64 max = min(0x7fffffffULL,
11345 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
11346 kvm_max_guest_tsc_khz = max;
11347
Haozhong Zhangad7218832015-10-20 15:39:02 +080011348 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +080011349 }
Haozhong Zhangad7218832015-10-20 15:39:02 +080011350
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011351 kvm_init_msr_list();
11352 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011353}
11354
11355void kvm_arch_hardware_unsetup(void)
11356{
Jason Baronb36464772021-01-14 22:27:56 -050011357 static_call(kvm_x86_hardware_unsetup)();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011358}
11359
Sean Christophersonb9904082020-03-21 13:25:55 -070011360int kvm_arch_check_processor_compat(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011361{
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011362 struct cpuinfo_x86 *c = &cpu_data(smp_processor_id());
Sean Christophersond008dfd2020-03-21 13:25:56 -070011363 struct kvm_x86_init_ops *ops = opaque;
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011364
11365 WARN_ON(!irqs_disabled());
11366
Paolo Bonzini139f7422020-05-05 09:40:46 -040011367 if (__cr4_reserved_bits(cpu_has, c) !=
11368 __cr4_reserved_bits(cpu_has, &boot_cpu_data))
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011369 return -EIO;
11370
Sean Christophersond008dfd2020-03-21 13:25:56 -070011371 return ops->check_processor_compatibility();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011372}
11373
Paolo Bonzinid71ba782015-07-29 11:56:48 +020011374bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
11375{
11376 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
11377}
11378EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
11379
11380bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
11381{
11382 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
11383}
11384
Cun Li6e4e3b42021-01-11 23:24:35 +080011385__read_mostly DEFINE_STATIC_KEY_FALSE(kvm_has_noapic_vcpu);
11386EXPORT_SYMBOL_GPL(kvm_has_noapic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +030011387
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011388void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
11389{
Like Xub35e5542019-10-27 18:52:43 +080011390 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
11391
Paolo Bonzinic595cee2018-07-02 13:07:14 +020011392 vcpu->arch.l1tf_flush_l1d = true;
Like Xub35e5542019-10-27 18:52:43 +080011393 if (pmu->version && unlikely(pmu->event_count)) {
11394 pmu->need_cleanup = true;
11395 kvm_make_request(KVM_REQ_PMU, vcpu);
11396 }
Jason Baronb36464772021-01-14 22:27:56 -050011397 static_call(kvm_x86_sched_in)(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011398}
11399
Sean Christopherson562b6b02020-01-26 16:41:13 -080011400void kvm_arch_free_vm(struct kvm *kvm)
11401{
Vitaly Kuznetsov05f04ae2021-01-26 14:48:09 +010011402 kfree(to_kvm_hv(kvm)->hv_pa_pg);
Juergen Gross78b497f2021-09-03 15:08:05 +020011403 __kvm_arch_free_vm(kvm);
Sean Christopherson562b6b02020-01-26 16:41:13 -080011404}
11405
11406
Carsten Ottee08b9632012-01-04 10:25:20 +010011407int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011408{
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011409 int ret;
Paolo Bonzini869b4422021-09-16 18:15:36 +000011410 unsigned long flags;
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011411
Carsten Ottee08b9632012-01-04 10:25:20 +010011412 if (type)
11413 return -EINVAL;
11414
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011415 ret = kvm_page_track_init(kvm);
11416 if (ret)
11417 return ret;
11418
Paolo Bonzini6ef768f2014-11-20 13:45:31 +010011419 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +080011420 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Sean Christopherson10605202019-09-12 19:46:10 -070011421 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011422 INIT_LIST_HEAD(&kvm->arch.lpage_disallowed_mmu_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030011423 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060011424 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011425
Sheng Yang5550af42008-10-15 20:15:06 +080011426 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
11427 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -060011428 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
11429 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
11430 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +080011431
Jan Kiszka038f8c12011-02-04 10:49:11 +010011432 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +030011433 mutex_init(&kvm->arch.apic_map_lock);
Paolo Bonzini869b4422021-09-16 18:15:36 +000011434 seqcount_raw_spinlock_init(&kvm->arch.pvclock_sc, &kvm->arch.tsc_write_lock);
Paolo Bonzini8171cd62020-01-22 14:36:09 +010011435 kvm->arch.kvmclock_offset = -get_kvmclock_base_ns();
Paolo Bonzini869b4422021-09-16 18:15:36 +000011436
11437 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattid8281992012-11-27 23:29:01 -020011438 pvclock_update_vm_gtod_copy(kvm);
Paolo Bonzini869b4422021-09-16 18:15:36 +000011439 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +010011440
Drew Schmitt6fbbde92018-08-20 10:32:15 -070011441 kvm->arch.guest_can_read_msr_platform_info = true;
11442
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000011443#if IS_ENABLED(CONFIG_HYPERV)
11444 spin_lock_init(&kvm->arch.hv_root_tdp_lock);
11445 kvm->arch.hv_root_tdp = INVALID_PAGE;
11446#endif
11447
Andrew Jones7e44e442014-02-28 12:52:54 +010011448 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +010011449 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +010011450
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +020011451 kvm_apicv_init(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011452 kvm_hv_init_vm(kvm);
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011453 kvm_mmu_init_vm(kvm);
Paolo Bonzini319afe62021-08-04 12:48:41 -040011454 kvm_xen_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +080011455
Jason Baronb36464772021-01-14 22:27:56 -050011456 return static_call(kvm_x86_vm_init)(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011457}
11458
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011459int kvm_arch_post_init_vm(struct kvm *kvm)
11460{
11461 return kvm_mmu_post_init_vm(kvm);
11462}
11463
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011464static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
11465{
Christoffer Dallec7660c2017-12-04 21:35:23 +010011466 vcpu_load(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011467 kvm_mmu_unload(vcpu);
11468 vcpu_put(vcpu);
11469}
11470
11471static void kvm_free_vcpus(struct kvm *kvm)
11472{
Marc Zyngier46808a42021-11-16 16:04:02 +000011473 unsigned long i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011474 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011475
11476 /*
11477 * Unpin any mmu pages first.
11478 */
Gleb Natapovaf585b92010-10-14 11:22:46 +020011479 kvm_for_each_vcpu(i, vcpu, kvm) {
11480 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011481 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011482 }
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011483
Marc Zyngier27592ae2021-11-16 16:03:57 +000011484 kvm_destroy_vcpus(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011485}
11486
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011487void kvm_arch_sync_events(struct kvm *kvm)
11488{
Andrew Jones332967a2014-02-28 12:52:55 +010011489 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +010011490 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Xiao Guangrongaea924f2010-07-10 17:37:56 +080011491 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011492}
11493
Peter Xuff5a9832020-09-30 21:20:33 -040011494#define ERR_PTR_USR(e) ((void __user *)ERR_PTR(e))
11495
11496/**
11497 * __x86_set_memory_region: Setup KVM internal memory slot
11498 *
11499 * @kvm: the kvm pointer to the VM.
11500 * @id: the slot ID to setup.
11501 * @gpa: the GPA to install the slot (unused when @size == 0).
11502 * @size: the size of the slot. Set to zero to uninstall a slot.
11503 *
11504 * This function helps to setup a KVM internal memory slot. Specify
11505 * @size > 0 to install a new slot, while @size == 0 to uninstall a
11506 * slot. The return code can be one of the following:
11507 *
11508 * HVA: on success (uninstall will return a bogus HVA)
11509 * -errno: on error
11510 *
11511 * The caller should always use IS_ERR() to check the return value
11512 * before use. Note, the KVM internal memory slots are guaranteed to
11513 * remain valid and unchanged until the VM is destroyed, i.e., the
11514 * GPA->HVA translation will not change. However, the HVA is a user
11515 * address, i.e. its accessibility is not guaranteed, and must be
11516 * accessed via __copy_{to,from}_user().
11517 */
11518void __user * __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa,
11519 u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011520{
11521 int i, r;
Kees Cook3f649ab2020-06-03 13:09:38 -070011522 unsigned long hva, old_npages;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011523 struct kvm_memslots *slots = kvm_memslots(kvm);
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011524 struct kvm_memory_slot *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011525
11526 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011527 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
Peter Xuff5a9832020-09-30 21:20:33 -040011528 return ERR_PTR_USR(-EINVAL);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011529
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011530 slot = id_to_memslot(slots, id);
11531 if (size) {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011532 if (slot && slot->npages)
Peter Xuff5a9832020-09-30 21:20:33 -040011533 return ERR_PTR_USR(-EEXIST);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011534
11535 /*
11536 * MAP_SHARED to prevent internal slot pages from being moved
11537 * by fork()/COW.
11538 */
11539 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
11540 MAP_SHARED | MAP_ANONYMOUS, 0);
11541 if (IS_ERR((void *)hva))
Peter Xuff5a9832020-09-30 21:20:33 -040011542 return (void __user *)hva;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011543 } else {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011544 if (!slot || !slot->npages)
Muhammad Usama Anjum46914532021-03-05 23:08:16 +050011545 return NULL;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011546
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011547 old_npages = slot->npages;
Zheng Zhan Liangb66f9ba2021-02-01 13:53:10 +080011548 hva = slot->userspace_addr;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011549 }
11550
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011551 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011552 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011553
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011554 m.slot = id | (i << 16);
11555 m.flags = 0;
11556 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011557 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011558 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011559 r = __kvm_set_memory_region(kvm, &m);
11560 if (r < 0)
Peter Xuff5a9832020-09-30 21:20:33 -040011561 return ERR_PTR_USR(r);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011562 }
11563
Eric Biggers103c7632018-01-31 17:30:21 -080011564 if (!size)
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011565 vm_munmap(hva, old_npages * PAGE_SIZE);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011566
Peter Xuff5a9832020-09-30 21:20:33 -040011567 return (void __user *)hva;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011568}
11569EXPORT_SYMBOL_GPL(__x86_set_memory_region);
11570
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011571void kvm_arch_pre_destroy_vm(struct kvm *kvm)
11572{
11573 kvm_mmu_pre_destroy_vm(kvm);
11574}
11575
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011576void kvm_arch_destroy_vm(struct kvm *kvm)
11577{
Andrew Honig27469d22013-04-18 09:38:14 -070011578 if (current->mm == kvm->mm) {
11579 /*
11580 * Free memory regions allocated on behalf of userspace,
11581 * unless the the memory map has changed due to process exit
11582 * or fd copying.
11583 */
Peter Xu6a3c6232020-01-09 09:57:16 -050011584 mutex_lock(&kvm->slots_lock);
11585 __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
11586 0, 0);
11587 __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
11588 0, 0);
11589 __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
11590 mutex_unlock(&kvm->slots_lock);
Andrew Honig27469d22013-04-18 09:38:14 -070011591 }
Jason Baronb36464772021-01-14 22:27:56 -050011592 static_call_cond(kvm_x86_vm_destroy)(kvm);
Sean Christophersonb318e8d2021-03-16 11:44:33 -070011593 kvm_free_msr_filter(srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1));
Peter Xuc7611592017-03-15 16:01:19 +080011594 kvm_pic_destroy(kvm);
11595 kvm_ioapic_destroy(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011596 kvm_free_vcpus(kvm);
Radim Krčmářaf1bae52016-07-12 22:09:30 +020011597 kvfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Eric Hankland66bb8a02019-07-10 18:25:15 -070011598 kfree(srcu_dereference_check(kvm->arch.pmu_event_filter, &kvm->srcu, 1));
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011599 kvm_mmu_uninit_vm(kvm);
Paolo Bonzini2beb6dad2017-03-27 17:53:50 +020011600 kvm_page_track_cleanup(kvm);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +000011601 kvm_xen_destroy_vm(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011602 kvm_hv_destroy_vm(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011603}
Zhang Xiantao0de10342007-11-20 16:25:04 +080011604
Ben Gardonc9b929b2021-05-18 10:34:08 -070011605static void memslot_rmap_free(struct kvm_memory_slot *slot)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011606{
11607 int i;
11608
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011609 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011610 kvfree(slot->arch.rmap[i]);
11611 slot->arch.rmap[i] = NULL;
Ben Gardonc9b929b2021-05-18 10:34:08 -070011612 }
11613}
Sean Christophersone96c81e2020-02-18 13:07:27 -080011614
Ben Gardonc9b929b2021-05-18 10:34:08 -070011615void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
11616{
11617 int i;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011618
Ben Gardonc9b929b2021-05-18 10:34:08 -070011619 memslot_rmap_free(slot);
11620
11621 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011622 kvfree(slot->arch.lpage_info[i - 1]);
11623 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011624 }
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011625
Sean Christophersone96c81e2020-02-18 13:07:27 -080011626 kvm_page_track_free_memslot(slot);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011627}
11628
David Stevens1e76a3c2021-10-15 12:30:21 -040011629int memslot_rmap_alloc(struct kvm_memory_slot *slot, unsigned long npages)
Ben Gardon56dd1012021-05-18 10:34:09 -070011630{
11631 const int sz = sizeof(*slot->arch.rmap[0]);
11632 int i;
11633
11634 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
11635 int level = i + 1;
Peter Xu4139b192021-07-30 18:04:51 -040011636 int lpages = __kvm_mmu_slot_lpages(slot, npages, level);
Ben Gardon56dd1012021-05-18 10:34:09 -070011637
Paolo Bonzinifa138432021-10-15 13:05:00 -040011638 if (slot->arch.rmap[i])
11639 continue;
Ben Gardond501f742021-05-18 10:34:14 -070011640
Ben Gardon56dd1012021-05-18 10:34:09 -070011641 slot->arch.rmap[i] = kvcalloc(lpages, sz, GFP_KERNEL_ACCOUNT);
11642 if (!slot->arch.rmap[i]) {
11643 memslot_rmap_free(slot);
11644 return -ENOMEM;
11645 }
11646 }
11647
11648 return 0;
11649}
11650
Ben Gardona2557402021-05-18 10:34:12 -070011651static int kvm_alloc_memslot_metadata(struct kvm *kvm,
Sean Christopherson9d7d18e2021-12-06 20:54:16 +010011652 struct kvm_memory_slot *slot)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011653{
Sean Christopherson9d7d18e2021-12-06 20:54:16 +010011654 unsigned long npages = slot->npages;
Ben Gardon56dd1012021-05-18 10:34:09 -070011655 int i, r;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011656
Sean Christophersonedd4fa32020-02-18 13:07:15 -080011657 /*
11658 * Clear out the previous array pointers for the KVM_MR_MOVE case. The
11659 * old arrays will be freed by __kvm_set_memory_region() if installing
11660 * the new memslot is successful.
11661 */
11662 memset(&slot->arch, 0, sizeof(slot->arch));
11663
Ben Gardone2209712021-05-18 10:34:13 -070011664 if (kvm_memslots_have_rmaps(kvm)) {
Ben Gardona2557402021-05-18 10:34:12 -070011665 r = memslot_rmap_alloc(slot, npages);
11666 if (r)
11667 return r;
11668 }
Ben Gardon56dd1012021-05-18 10:34:09 -070011669
11670 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011671 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011672 unsigned long ugfn;
11673 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011674 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011675
Peter Xu4139b192021-07-30 18:04:51 -040011676 lpages = __kvm_mmu_slot_lpages(slot, npages, level);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011677
Ben Gardon254272c2019-02-11 11:02:50 -080011678 linfo = kvcalloc(lpages, sizeof(*linfo), GFP_KERNEL_ACCOUNT);
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011679 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011680 goto out_free;
11681
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011682 slot->arch.lpage_info[i - 1] = linfo;
11683
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011684 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011685 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011686 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011687 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011688 ugfn = slot->userspace_addr >> PAGE_SHIFT;
11689 /*
11690 * If the gfn and userspace address are not aligned wrt each
Sean Christopherson600087b2020-03-02 15:57:05 -080011691 * other, disable large page support for this slot.
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011692 */
Sean Christopherson600087b2020-03-02 15:57:05 -080011693 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1)) {
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011694 unsigned long j;
11695
11696 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011697 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011698 }
11699 }
11700
David Stevensdeae4a12021-09-22 13:58:59 +090011701 if (kvm_page_track_create_memslot(kvm, slot, npages))
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011702 goto out_free;
11703
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011704 return 0;
11705
11706out_free:
Ben Gardonc9b929b2021-05-18 10:34:08 -070011707 memslot_rmap_free(slot);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011708
Ben Gardonc9b929b2021-05-18 10:34:08 -070011709 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +010011710 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011711 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011712 }
11713 return -ENOMEM;
11714}
11715
Sean Christopherson15248252019-02-05 12:54:17 -080011716void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011717{
Boris Ostrovsky91724812019-12-05 01:30:51 +000011718 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +000011719 unsigned long i;
Boris Ostrovsky91724812019-12-05 01:30:51 +000011720
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +090011721 /*
11722 * memslots->generation has been incremented.
11723 * mmio generation may have reached its maximum value.
11724 */
Sean Christopherson15248252019-02-05 12:54:17 -080011725 kvm_mmu_invalidate_mmio_sptes(kvm, gen);
Boris Ostrovsky91724812019-12-05 01:30:51 +000011726
11727 /* Force re-initialization of steal_time cache */
11728 kvm_for_each_vcpu(i, vcpu, kvm)
11729 kvm_vcpu_kick(vcpu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011730}
11731
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011732int kvm_arch_prepare_memory_region(struct kvm *kvm,
Sean Christopherson537a17b2021-12-06 20:54:11 +010011733 const struct kvm_memory_slot *old,
11734 struct kvm_memory_slot *new,
11735 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +080011736{
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011737 if (change == KVM_MR_CREATE || change == KVM_MR_MOVE)
Sean Christopherson9d7d18e2021-12-06 20:54:16 +010011738 return kvm_alloc_memslot_metadata(kvm, new);
Sean Christopherson537a17b2021-12-06 20:54:11 +010011739
11740 if (change == KVM_MR_FLAGS_ONLY)
11741 memcpy(&new->arch, &old->arch, sizeof(old->arch));
11742 else if (WARN_ON_ONCE(change != KVM_MR_DELETE))
11743 return -EIO;
11744
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011745 return 0;
11746}
11747
Makarand Sonarea85863c2021-02-12 16:50:12 -080011748
11749static void kvm_mmu_update_cpu_dirty_logging(struct kvm *kvm, bool enable)
11750{
11751 struct kvm_arch *ka = &kvm->arch;
11752
11753 if (!kvm_x86_ops.cpu_dirty_log_size)
11754 return;
11755
11756 if ((enable && ++ka->cpu_dirty_logging_count == 1) ||
11757 (!enable && --ka->cpu_dirty_logging_count == 0))
11758 kvm_make_all_cpus_request(kvm, KVM_REQ_UPDATE_CPU_DIRTY_LOGGING);
11759
11760 WARN_ON_ONCE(ka->cpu_dirty_logging_count < 0);
11761}
11762
Kai Huang88178fd2015-01-28 10:54:27 +080011763static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
Anthony Yznaga37416792020-06-02 13:07:30 -070011764 struct kvm_memory_slot *old,
Hamza Mahfooz269e9552021-07-12 22:33:38 -040011765 const struct kvm_memory_slot *new,
Anthony Yznaga37416792020-06-02 13:07:30 -070011766 enum kvm_mr_change change)
Kai Huang88178fd2015-01-28 10:54:27 +080011767{
Sean Christopherson77aedf22021-12-06 20:54:20 +010011768 u32 old_flags = old ? old->flags : 0;
11769 u32 new_flags = new ? new->flags : 0;
11770 bool log_dirty_pages = new_flags & KVM_MEM_LOG_DIRTY_PAGES;
Makarand Sonarea85863c2021-02-12 16:50:12 -080011771
Anthony Yznaga37416792020-06-02 13:07:30 -070011772 /*
Makarand Sonarea85863c2021-02-12 16:50:12 -080011773 * Update CPU dirty logging if dirty logging is being toggled. This
11774 * applies to all operations.
11775 */
Sean Christopherson77aedf22021-12-06 20:54:20 +010011776 if ((old_flags ^ new_flags) & KVM_MEM_LOG_DIRTY_PAGES)
Makarand Sonarea85863c2021-02-12 16:50:12 -080011777 kvm_mmu_update_cpu_dirty_logging(kvm, log_dirty_pages);
11778
11779 /*
11780 * Nothing more to do for RO slots (which can't be dirtied and can't be
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011781 * made writable) or CREATE/MOVE/DELETE of a slot.
11782 *
11783 * For a memslot with dirty logging disabled:
11784 * CREATE: No dirty mappings will already exist.
11785 * MOVE/DELETE: The old mappings will already have been cleaned up by
11786 * kvm_arch_flush_shadow_memslot()
11787 *
11788 * For a memslot with dirty logging enabled:
11789 * CREATE: No shadow pages exist, thus nothing to write-protect
11790 * and no dirty bits to clear.
11791 * MOVE/DELETE: The old mappings will already have been cleaned up by
11792 * kvm_arch_flush_shadow_memslot().
Anthony Yznaga37416792020-06-02 13:07:30 -070011793 */
Sean Christopherson77aedf22021-12-06 20:54:20 +010011794 if ((change != KVM_MR_FLAGS_ONLY) || (new_flags & KVM_MEM_READONLY))
Kai Huang88178fd2015-01-28 10:54:27 +080011795 return;
Kai Huang88178fd2015-01-28 10:54:27 +080011796
11797 /*
Sean Christopherson52f460792021-02-12 16:50:11 -080011798 * READONLY and non-flags changes were filtered out above, and the only
11799 * other flag is LOG_DIRTY_PAGES, i.e. something is wrong if dirty
11800 * logging isn't being toggled on or off.
Anthony Yznaga37416792020-06-02 13:07:30 -070011801 */
Sean Christopherson77aedf22021-12-06 20:54:20 +010011802 if (WARN_ON_ONCE(!((old_flags ^ new_flags) & KVM_MEM_LOG_DIRTY_PAGES)))
Sean Christopherson52f460792021-02-12 16:50:11 -080011803 return;
11804
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011805 if (!log_dirty_pages) {
11806 /*
11807 * Dirty logging tracks sptes in 4k granularity, meaning that
11808 * large sptes have to be split. If live migration succeeds,
11809 * the guest in the source machine will be destroyed and large
11810 * sptes will be created in the destination. However, if the
11811 * guest continues to run in the source machine (for example if
11812 * live migration fails), small sptes will remain around and
11813 * cause bad performance.
11814 *
11815 * Scan sptes if dirty logging has been stopped, dropping those
11816 * which can be collapsed into a single large-page spte. Later
11817 * page faults will create the large-page sptes.
11818 */
Anthony Yznaga37416792020-06-02 13:07:30 -070011819 kvm_mmu_zap_collapsible_sptes(kvm, new);
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011820 } else {
Keqian Zhu89212912021-04-29 11:41:15 +080011821 /*
11822 * Initially-all-set does not require write protecting any page,
11823 * because they're all assumed to be dirty.
11824 */
11825 if (kvm_dirty_log_manual_protect_and_init_set(kvm))
11826 return;
Anthony Yznaga37416792020-06-02 13:07:30 -070011827
Sean Christophersona018eba2021-02-12 16:50:10 -080011828 if (kvm_x86_ops.cpu_dirty_log_size) {
Keqian Zhu89212912021-04-29 11:41:15 +080011829 kvm_mmu_slot_leaf_clear_dirty(kvm, new);
11830 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_2M);
11831 } else {
11832 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_4K);
Jay Zhou3c9bd402020-02-27 09:32:27 +080011833 }
Kai Huang88178fd2015-01-28 10:54:27 +080011834 }
11835}
11836
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011837void kvm_arch_commit_memory_region(struct kvm *kvm,
Sean Christopherson9d4c1972020-02-18 13:07:24 -080011838 struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +020011839 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +090011840 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011841{
Maciej S. Szmigieroe0c2b632021-12-06 20:54:23 +010011842 if (!kvm->arch.n_requested_mmu_pages &&
Maciej S. Szmigierof5756022021-12-06 20:54:24 +010011843 (change == KVM_MR_CREATE || change == KVM_MR_DELETE)) {
11844 unsigned long nr_mmu_pages;
11845
11846 nr_mmu_pages = kvm->nr_memslot_pages / KVM_MEMSLOT_PAGES_TO_MMU_PAGES_RATIO;
11847 nr_mmu_pages = max(nr_mmu_pages, KVM_MIN_ALLOC_MMU_PAGES);
11848 kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages);
11849 }
Kai Huang1c91cad42015-01-28 10:54:26 +080011850
Hamza Mahfooz269e9552021-07-12 22:33:38 -040011851 kvm_mmu_slot_apply_flags(kvm, old, new, change);
Sean Christopherson21198842020-02-18 13:07:25 -080011852
11853 /* Free the arrays associated with the old memslot. */
11854 if (change == KVM_MR_MOVE)
Sean Christophersone96c81e2020-02-18 13:07:27 -080011855 kvm_arch_free_memslot(kvm, old);
Zhang Xiantao0de10342007-11-20 16:25:04 +080011856}
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011857
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011858void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030011859{
Sean Christopherson7390de12019-02-05 13:01:31 -080011860 kvm_mmu_zap_all(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030011861}
11862
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011863void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
11864 struct kvm_memory_slot *slot)
11865{
Xiaoguang Chenae7cd872016-10-09 15:41:44 +080011866 kvm_page_track_flush_slot(kvm, slot);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011867}
11868
Liran Alone6c67d82018-09-04 10:56:52 +030011869static inline bool kvm_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
11870{
11871 return (is_guest_mode(vcpu) &&
Sean Christophersonafaf0b22020-03-21 13:26:00 -070011872 kvm_x86_ops.guest_apic_has_interrupt &&
Jason Baronb36464772021-01-14 22:27:56 -050011873 static_call(kvm_x86_guest_apic_has_interrupt)(vcpu));
Liran Alone6c67d82018-09-04 10:56:52 +030011874}
11875
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011876static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
11877{
11878 if (!list_empty_careful(&vcpu->async_pf.done))
11879 return true;
11880
11881 if (kvm_apic_has_events(vcpu))
11882 return true;
11883
11884 if (vcpu->arch.pv.pv_unhalted)
11885 return true;
11886
Wanpeng Lia5f01f82017-09-13 04:04:01 -070011887 if (vcpu->arch.exception.pending)
11888 return true;
11889
ZhuangYanying47a66ee2017-05-26 13:16:48 +080011890 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11891 (vcpu->arch.nmi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050011892 static_call(kvm_x86_nmi_allowed)(vcpu, false)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011893 return true;
11894
ZhuangYanying47a66ee2017-05-26 13:16:48 +080011895 if (kvm_test_request(KVM_REQ_SMI, vcpu) ||
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -040011896 (vcpu->arch.smi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050011897 static_call(kvm_x86_smi_allowed)(vcpu, false)))
Paolo Bonzini73917732015-10-13 10:19:35 +020011898 return true;
11899
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011900 if (kvm_arch_interrupt_allowed(vcpu) &&
Liran Alone6c67d82018-09-04 10:56:52 +030011901 (kvm_cpu_has_interrupt(vcpu) ||
11902 kvm_guest_apic_has_interrupt(vcpu)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011903 return true;
11904
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +030011905 if (kvm_hv_has_stimer_pending(vcpu))
11906 return true;
11907
Sean Christophersond2060bd2020-04-22 19:25:39 -070011908 if (is_guest_mode(vcpu) &&
11909 kvm_x86_ops.nested_ops->hv_timer_pending &&
11910 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
11911 return true;
11912
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011913 return false;
11914}
11915
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011916int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
11917{
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011918 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011919}
Zhang Xiantao57361992007-12-17 14:21:40 +080011920
Haiwei Li10dbdf92021-04-21 11:25:13 +080011921bool kvm_arch_dy_has_pending_interrupt(struct kvm_vcpu *vcpu)
11922{
11923 if (vcpu->arch.apicv_active && static_call(kvm_x86_dy_apicv_has_pending_interrupt)(vcpu))
11924 return true;
11925
11926 return false;
11927}
11928
Wanpeng Li17e433b2019-08-05 10:03:19 +080011929bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
11930{
11931 if (READ_ONCE(vcpu->arch.pv.pv_unhalted))
11932 return true;
11933
11934 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11935 kvm_test_request(KVM_REQ_SMI, vcpu) ||
11936 kvm_test_request(KVM_REQ_EVENT, vcpu))
11937 return true;
11938
Haiwei Li10dbdf92021-04-21 11:25:13 +080011939 return kvm_arch_dy_has_pending_interrupt(vcpu);
Wanpeng Li17e433b2019-08-05 10:03:19 +080011940}
11941
Longpeng(Mike)199b5762017-08-08 12:05:32 +080011942bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
11943{
Wanpeng Lib86bb112021-04-22 16:34:19 +080011944 if (vcpu->arch.guest_state_protected)
11945 return true;
11946
Longpeng(Mike)de63ad42017-08-08 12:05:33 +080011947 return vcpu->arch.preempted_in_kernel;
Longpeng(Mike)199b5762017-08-08 12:05:32 +080011948}
11949
Christoffer Dallb6d33832012-03-08 16:44:24 -050011950int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +080011951{
Christoffer Dallb6d33832012-03-08 16:44:24 -050011952 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +080011953}
Gleb Natapov78646122009-03-23 12:12:11 +020011954
11955int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
11956{
Jason Baronb36464772021-01-14 22:27:56 -050011957 return static_call(kvm_x86_interrupt_allowed)(vcpu, false);
Gleb Natapov78646122009-03-23 12:12:11 +020011958}
Marcelo Tosatti229456f2009-06-17 09:22:14 -030011959
Nadav Amit82b32772014-11-02 11:54:45 +020011960unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
11961{
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060011962 /* Can't read the RIP when guest state is protected, just return 0 */
11963 if (vcpu->arch.guest_state_protected)
11964 return 0;
11965
Nadav Amit82b32772014-11-02 11:54:45 +020011966 if (is_64_bit_mode(vcpu))
11967 return kvm_rip_read(vcpu);
11968 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
11969 kvm_rip_read(vcpu));
11970}
11971EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
11972
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011973bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
11974{
Nadav Amit82b32772014-11-02 11:54:45 +020011975 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011976}
11977EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
11978
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011979unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
11980{
11981 unsigned long rflags;
11982
Jason Baronb36464772021-01-14 22:27:56 -050011983 rflags = static_call(kvm_x86_get_rflags)(vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011984 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +010011985 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011986 return rflags;
11987}
11988EXPORT_SYMBOL_GPL(kvm_get_rflags);
11989
Paolo Bonzini6addfc42014-03-27 11:29:28 +010011990static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011991{
11992 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011993 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +010011994 rflags |= X86_EFLAGS_TF;
Jason Baronb36464772021-01-14 22:27:56 -050011995 static_call(kvm_x86_set_rflags)(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +010011996}
11997
11998void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
11999{
12000 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +030012001 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020012002}
12003EXPORT_SYMBOL_GPL(kvm_set_rflags);
12004
Gleb Natapov56028d02010-10-17 18:13:42 +020012005void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
12006{
12007 int r;
12008
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020012009 if ((vcpu->arch.mmu->direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +080012010 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +020012011 return;
12012
12013 r = kvm_mmu_reload(vcpu);
12014 if (unlikely(r))
12015 return;
12016
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020012017 if (!vcpu->arch.mmu->direct_map &&
Sean Christophersond8dd54e2020-03-02 18:02:39 -080012018 work->arch.cr3 != vcpu->arch.mmu->get_guest_pgd(vcpu))
Xiao Guangrongfb67e142010-12-07 10:35:25 +080012019 return;
12020
Sean Christopherson7a026742020-02-06 14:14:34 -080012021 kvm_mmu_do_page_fault(vcpu, work->cr2_or_gpa, 0, true);
Gleb Natapov56028d02010-10-17 18:13:42 +020012022}
12023
Gleb Natapovaf585b92010-10-14 11:22:46 +020012024static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
12025{
Peter Xudd03bca2020-04-16 11:58:59 -040012026 BUILD_BUG_ON(!is_power_of_2(ASYNC_PF_PER_VCPU));
12027
Gleb Natapovaf585b92010-10-14 11:22:46 +020012028 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
12029}
12030
12031static inline u32 kvm_async_pf_next_probe(u32 key)
12032{
Peter Xudd03bca2020-04-16 11:58:59 -040012033 return (key + 1) & (ASYNC_PF_PER_VCPU - 1);
Gleb Natapovaf585b92010-10-14 11:22:46 +020012034}
12035
12036static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
12037{
12038 u32 key = kvm_async_pf_hash_fn(gfn);
12039
12040 while (vcpu->arch.apf.gfns[key] != ~0)
12041 key = kvm_async_pf_next_probe(key);
12042
12043 vcpu->arch.apf.gfns[key] = gfn;
12044}
12045
12046static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
12047{
12048 int i;
12049 u32 key = kvm_async_pf_hash_fn(gfn);
12050
Peter Xudd03bca2020-04-16 11:58:59 -040012051 for (i = 0; i < ASYNC_PF_PER_VCPU &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +080012052 (vcpu->arch.apf.gfns[key] != gfn &&
12053 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +020012054 key = kvm_async_pf_next_probe(key);
12055
12056 return key;
12057}
12058
12059bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
12060{
12061 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
12062}
12063
12064static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
12065{
12066 u32 i, j, k;
12067
12068 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
Peter Xu0fd46042020-04-16 11:59:10 -040012069
12070 if (WARN_ON_ONCE(vcpu->arch.apf.gfns[i] != gfn))
12071 return;
12072
Gleb Natapovaf585b92010-10-14 11:22:46 +020012073 while (true) {
12074 vcpu->arch.apf.gfns[i] = ~0;
12075 do {
12076 j = kvm_async_pf_next_probe(j);
12077 if (vcpu->arch.apf.gfns[j] == ~0)
12078 return;
12079 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
12080 /*
12081 * k lies cyclically in ]i,j]
12082 * | i.k.j |
12083 * |....j i.k.| or |.k..j i...|
12084 */
12085 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
12086 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
12087 i = j;
12088 }
12089}
12090
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020012091static inline int apf_put_user_notpresent(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020012092{
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020012093 u32 reason = KVM_PV_REASON_PAGE_NOT_PRESENT;
12094
12095 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &reason,
12096 sizeof(reason));
12097}
12098
12099static inline int apf_put_user_ready(struct kvm_vcpu *vcpu, u32 token)
12100{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012101 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
Paolo Bonzini4e335d92017-05-02 16:20:18 +020012102
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012103 return kvm_write_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
12104 &token, offset, sizeof(token));
12105}
12106
12107static inline bool apf_pageready_slot_free(struct kvm_vcpu *vcpu)
12108{
12109 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
12110 u32 val;
12111
12112 if (kvm_read_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
12113 &val, offset, sizeof(val)))
12114 return false;
12115
12116 return !val;
Gleb Natapov7c907052010-10-14 11:22:53 +020012117}
12118
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012119static bool kvm_can_deliver_async_pf(struct kvm_vcpu *vcpu)
12120{
12121 if (!vcpu->arch.apf.delivery_as_pf_vmexit && is_guest_mode(vcpu))
12122 return false;
12123
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012124 if (!kvm_pv_async_pf_enabled(vcpu) ||
Jason Baronb36464772021-01-14 22:27:56 -050012125 (vcpu->arch.apf.send_user_only && static_call(kvm_x86_get_cpl)(vcpu) == 0))
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012126 return false;
12127
12128 return true;
12129}
12130
12131bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu)
12132{
12133 if (unlikely(!lapic_in_kernel(vcpu) ||
12134 kvm_event_needs_reinjection(vcpu) ||
12135 vcpu->arch.exception.pending))
12136 return false;
12137
12138 if (kvm_hlt_in_guest(vcpu->kvm) && !kvm_can_deliver_async_pf(vcpu))
12139 return false;
12140
12141 /*
12142 * If interrupts are off we cannot even use an artificial
12143 * halt state.
12144 */
Paolo Bonzinic300ab92020-04-23 14:08:58 -040012145 return kvm_arch_interrupt_allowed(vcpu);
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012146}
12147
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012148bool kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
Gleb Natapovaf585b92010-10-14 11:22:46 +020012149 struct kvm_async_pf *work)
12150{
Avi Kivity6389ee92010-11-29 16:12:30 +020012151 struct x86_exception fault;
12152
Sean Christopherson736c2912019-12-06 15:57:14 -080012153 trace_kvm_async_pf_not_present(work->arch.token, work->cr2_or_gpa);
Gleb Natapovaf585b92010-10-14 11:22:46 +020012154 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +020012155
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012156 if (kvm_can_deliver_async_pf(vcpu) &&
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020012157 !apf_put_user_notpresent(vcpu)) {
Avi Kivity6389ee92010-11-29 16:12:30 +020012158 fault.vector = PF_VECTOR;
12159 fault.error_code_valid = true;
12160 fault.error_code = 0;
12161 fault.nested_page_fault = false;
12162 fault.address = work->arch.token;
Wanpeng Liadfe20f2017-07-13 18:30:41 -070012163 fault.async_page_fault = true;
Avi Kivity6389ee92010-11-29 16:12:30 +020012164 kvm_inject_page_fault(vcpu, &fault);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012165 return true;
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012166 } else {
12167 /*
12168 * It is not possible to deliver a paravirtualized asynchronous
12169 * page fault, but putting the guest in an artificial halt state
12170 * can be beneficial nevertheless: if an interrupt arrives, we
12171 * can deliver it timely and perhaps the guest will schedule
12172 * another process. When the instruction that triggered a page
12173 * fault is retried, hopefully the page will be ready in the host.
12174 */
12175 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012176 return false;
Gleb Natapov7c907052010-10-14 11:22:53 +020012177 }
Gleb Natapovaf585b92010-10-14 11:22:46 +020012178}
12179
12180void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
12181 struct kvm_async_pf *work)
12182{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012183 struct kvm_lapic_irq irq = {
12184 .delivery_mode = APIC_DM_FIXED,
12185 .vector = vcpu->arch.apf.vec
12186 };
Avi Kivity6389ee92010-11-29 16:12:30 +020012187
chai wenf2e10662013-10-14 22:22:33 +080012188 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +020012189 work->arch.token = ~0; /* broadcast wakeup */
12190 else
12191 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
Sean Christopherson736c2912019-12-06 15:57:14 -080012192 trace_kvm_async_pf_ready(work->arch.token, work->cr2_or_gpa);
Gleb Natapov7c907052010-10-14 11:22:53 +020012193
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012194 if ((work->wakeup_all || work->notpresent_injected) &&
12195 kvm_pv_async_pf_enabled(vcpu) &&
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020012196 !apf_put_user_ready(vcpu, work->arch.token)) {
12197 vcpu->arch.apf.pageready_pending = true;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012198 kvm_apic_set_irq(vcpu, &irq, NULL);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020012199 }
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012200
Xiao Guangronge6d53e32010-11-01 17:01:28 +080012201 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +030012202 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +020012203}
12204
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020012205void kvm_arch_async_page_present_queued(struct kvm_vcpu *vcpu)
12206{
12207 kvm_make_request(KVM_REQ_APF_READY, vcpu);
12208 if (!vcpu->arch.apf.pageready_pending)
12209 kvm_vcpu_kick(vcpu);
12210}
12211
Vitaly Kuznetsov7c0ade62020-05-25 16:41:18 +020012212bool kvm_arch_can_dequeue_async_page_present(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020012213{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012214 if (!kvm_pv_async_pf_enabled(vcpu))
Gleb Natapov7c907052010-10-14 11:22:53 +020012215 return true;
12216 else
Vitaly Kuznetsov2f15d022021-04-22 11:29:48 +020012217 return kvm_lapic_enabled(vcpu) && apf_pageready_slot_free(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020012218}
12219
Paolo Bonzini5544eb92015-07-07 15:41:58 +020012220void kvm_arch_start_assignment(struct kvm *kvm)
12221{
Marcelo Tosatti57ab8792021-05-25 10:41:16 -030012222 if (atomic_inc_return(&kvm->arch.assigned_device_count) == 1)
12223 static_call_cond(kvm_x86_start_assignment)(kvm);
Paolo Bonzini5544eb92015-07-07 15:41:58 +020012224}
12225EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
12226
12227void kvm_arch_end_assignment(struct kvm *kvm)
12228{
12229 atomic_dec(&kvm->arch.assigned_device_count);
12230}
12231EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
12232
12233bool kvm_arch_has_assigned_device(struct kvm *kvm)
12234{
12235 return atomic_read(&kvm->arch.assigned_device_count);
12236}
12237EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
12238
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060012239void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
12240{
12241 atomic_inc(&kvm->arch.noncoherent_dma_count);
12242}
12243EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
12244
12245void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
12246{
12247 atomic_dec(&kvm->arch.noncoherent_dma_count);
12248}
12249EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
12250
12251bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
12252{
12253 return atomic_read(&kvm->arch.noncoherent_dma_count);
12254}
12255EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
12256
Alex Williamson14717e22016-05-05 11:58:35 -060012257bool kvm_arch_has_irq_bypass(void)
12258{
Sean Christopherson92735b12019-08-02 15:06:17 -070012259 return true;
Alex Williamson14717e22016-05-05 11:58:35 -060012260}
12261
Feng Wu87276882015-09-18 22:29:40 +080012262int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
12263 struct irq_bypass_producer *prod)
12264{
12265 struct kvm_kernel_irqfd *irqfd =
12266 container_of(cons, struct kvm_kernel_irqfd, consumer);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012267 int ret;
Feng Wu87276882015-09-18 22:29:40 +080012268
Alex Williamson14717e22016-05-05 11:58:35 -060012269 irqfd->producer = prod;
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012270 kvm_arch_start_assignment(irqfd->kvm);
Jason Baronb36464772021-01-14 22:27:56 -050012271 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm,
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012272 prod->irq, irqfd->gsi, 1);
Feng Wu87276882015-09-18 22:29:40 +080012273
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012274 if (ret)
12275 kvm_arch_end_assignment(irqfd->kvm);
12276
12277 return ret;
Feng Wu87276882015-09-18 22:29:40 +080012278}
12279
12280void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
12281 struct irq_bypass_producer *prod)
12282{
12283 int ret;
12284 struct kvm_kernel_irqfd *irqfd =
12285 container_of(cons, struct kvm_kernel_irqfd, consumer);
12286
Feng Wu87276882015-09-18 22:29:40 +080012287 WARN_ON(irqfd->producer != prod);
12288 irqfd->producer = NULL;
12289
12290 /*
12291 * When producer of consumer is unregistered, we change back to
12292 * remapped mode, so we can re-use the current implementation
Andrea Gelminibb3541f2016-05-21 14:14:44 +020012293 * when the irq is masked/disabled or the consumer side (KVM
Feng Wu87276882015-09-18 22:29:40 +080012294 * int this case doesn't want to receive the interrupts.
12295 */
Jason Baronb36464772021-01-14 22:27:56 -050012296 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm, prod->irq, irqfd->gsi, 0);
Feng Wu87276882015-09-18 22:29:40 +080012297 if (ret)
12298 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
12299 " fails: %d\n", irqfd->consumer.token, ret);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012300
12301 kvm_arch_end_assignment(irqfd->kvm);
Feng Wu87276882015-09-18 22:29:40 +080012302}
12303
12304int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
12305 uint32_t guest_irq, bool set)
12306{
Jason Baronb36464772021-01-14 22:27:56 -050012307 return static_call(kvm_x86_update_pi_irte)(kvm, host_irq, guest_irq, set);
Feng Wu87276882015-09-18 22:29:40 +080012308}
12309
Longpeng(Mike)515a0c72021-08-27 16:00:03 +080012310bool kvm_arch_irqfd_route_changed(struct kvm_kernel_irq_routing_entry *old,
12311 struct kvm_kernel_irq_routing_entry *new)
12312{
12313 if (new->type != KVM_IRQ_ROUTING_MSI)
12314 return true;
12315
12316 return !!memcmp(&old->msi, &new->msi, sizeof(new->msi));
12317}
12318
Feng Wu520040142016-01-25 16:53:33 +080012319bool kvm_vector_hashing_enabled(void)
12320{
12321 return vector_hashing;
12322}
Feng Wu520040142016-01-25 16:53:33 +080012323
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012324bool kvm_arch_no_poll(struct kvm_vcpu *vcpu)
12325{
12326 return (vcpu->arch.msr_kvm_poll_control & 1) == 0;
12327}
12328EXPORT_SYMBOL_GPL(kvm_arch_no_poll);
12329
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012330
12331int kvm_spec_ctrl_test_value(u64 value)
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012332{
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012333 /*
12334 * test that setting IA32_SPEC_CTRL to given value
12335 * is allowed by the host processor
12336 */
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012337
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012338 u64 saved_value;
12339 unsigned long flags;
12340 int ret = 0;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012341
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012342 local_irq_save(flags);
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012343
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012344 if (rdmsrl_safe(MSR_IA32_SPEC_CTRL, &saved_value))
12345 ret = 1;
12346 else if (wrmsrl_safe(MSR_IA32_SPEC_CTRL, value))
12347 ret = 1;
12348 else
12349 wrmsrl(MSR_IA32_SPEC_CTRL, saved_value);
12350
12351 local_irq_restore(flags);
12352
12353 return ret;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012354}
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012355EXPORT_SYMBOL_GPL(kvm_spec_ctrl_test_value);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012356
Mohammed Gamal89786142020-07-10 17:48:03 +020012357void kvm_fixup_and_inject_pf_error(struct kvm_vcpu *vcpu, gva_t gva, u16 error_code)
12358{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +080012359 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Mohammed Gamal89786142020-07-10 17:48:03 +020012360 struct x86_exception fault;
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040012361 u32 access = error_code &
12362 (PFERR_WRITE_MASK | PFERR_FETCH_MASK | PFERR_USER_MASK);
Mohammed Gamal89786142020-07-10 17:48:03 +020012363
12364 if (!(error_code & PFERR_PRESENT_MASK) ||
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +080012365 mmu->gva_to_gpa(vcpu, mmu, gva, access, &fault) != UNMAPPED_GVA) {
Mohammed Gamal89786142020-07-10 17:48:03 +020012366 /*
12367 * If vcpu->arch.walk_mmu->gva_to_gpa succeeded, the page
12368 * tables probably do not match the TLB. Just proceed
12369 * with the error code that the processor gave.
12370 */
12371 fault.vector = PF_VECTOR;
12372 fault.error_code_valid = true;
12373 fault.error_code = error_code;
12374 fault.nested_page_fault = false;
12375 fault.address = gva;
12376 }
12377 vcpu->arch.walk_mmu->inject_page_fault(vcpu, &fault);
12378}
12379EXPORT_SYMBOL_GPL(kvm_fixup_and_inject_pf_error);
Carsten Otte043405e2007-10-10 17:16:19 +020012380
Babu Moger3f3393b2020-09-11 14:29:05 -050012381/*
12382 * Handles kvm_read/write_guest_virt*() result and either injects #PF or returns
12383 * KVM_EXIT_INTERNAL_ERROR for cases not currently handled by KVM. Return value
12384 * indicates whether exit to userspace is needed.
12385 */
12386int kvm_handle_memory_failure(struct kvm_vcpu *vcpu, int r,
12387 struct x86_exception *e)
12388{
12389 if (r == X86EMUL_PROPAGATE_FAULT) {
12390 kvm_inject_emulated_page_fault(vcpu, e);
12391 return 1;
12392 }
12393
12394 /*
12395 * In case kvm_read/write_guest_virt*() failed with X86EMUL_IO_NEEDED
12396 * while handling a VMX instruction KVM could've handled the request
12397 * correctly by exiting to userspace and performing I/O but there
12398 * doesn't seem to be a real use-case behind such requests, just return
12399 * KVM_EXIT_INTERNAL_ERROR for now.
12400 */
David Edmondsone615e352021-09-20 11:37:36 +010012401 kvm_prepare_emulation_failure_exit(vcpu);
Babu Moger3f3393b2020-09-11 14:29:05 -050012402
12403 return 0;
12404}
12405EXPORT_SYMBOL_GPL(kvm_handle_memory_failure);
12406
Babu Moger97150922020-09-11 14:29:12 -050012407int kvm_handle_invpcid(struct kvm_vcpu *vcpu, unsigned long type, gva_t gva)
12408{
12409 bool pcid_enabled;
12410 struct x86_exception e;
Babu Moger97150922020-09-11 14:29:12 -050012411 struct {
12412 u64 pcid;
12413 u64 gla;
12414 } operand;
12415 int r;
12416
12417 r = kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e);
12418 if (r != X86EMUL_CONTINUE)
12419 return kvm_handle_memory_failure(vcpu, r, &e);
12420
12421 if (operand.pcid >> 12 != 0) {
12422 kvm_inject_gp(vcpu, 0);
12423 return 1;
12424 }
12425
12426 pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
12427
12428 switch (type) {
12429 case INVPCID_TYPE_INDIV_ADDR:
12430 if ((!pcid_enabled && (operand.pcid != 0)) ||
12431 is_noncanonical_address(operand.gla, vcpu)) {
12432 kvm_inject_gp(vcpu, 0);
12433 return 1;
12434 }
12435 kvm_mmu_invpcid_gva(vcpu, operand.gla, operand.pcid);
12436 return kvm_skip_emulated_instruction(vcpu);
12437
12438 case INVPCID_TYPE_SINGLE_CTXT:
12439 if (!pcid_enabled && (operand.pcid != 0)) {
12440 kvm_inject_gp(vcpu, 0);
12441 return 1;
12442 }
12443
Sean Christopherson21823fb2021-06-09 16:42:24 -070012444 kvm_invalidate_pcid(vcpu, operand.pcid);
Babu Moger97150922020-09-11 14:29:12 -050012445 return kvm_skip_emulated_instruction(vcpu);
12446
12447 case INVPCID_TYPE_ALL_NON_GLOBAL:
12448 /*
12449 * Currently, KVM doesn't mark global entries in the shadow
12450 * page tables, so a non-global flush just degenerates to a
12451 * global flush. If needed, we could optimize this later by
12452 * keeping track of global entries in shadow page tables.
12453 */
12454
12455 fallthrough;
12456 case INVPCID_TYPE_ALL_INCL_GLOBAL:
Sean Christopherson28f28d42021-06-09 16:42:30 -070012457 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Babu Moger97150922020-09-11 14:29:12 -050012458 return kvm_skip_emulated_instruction(vcpu);
12459
12460 default:
Vipin Sharma796c83c2021-11-09 17:44:26 +000012461 kvm_inject_gp(vcpu, 0);
12462 return 1;
Babu Moger97150922020-09-11 14:29:12 -050012463 }
12464}
12465EXPORT_SYMBOL_GPL(kvm_handle_invpcid);
12466
Tom Lendacky8f423a82020-12-10 11:09:53 -060012467static int complete_sev_es_emulated_mmio(struct kvm_vcpu *vcpu)
12468{
12469 struct kvm_run *run = vcpu->run;
12470 struct kvm_mmio_fragment *frag;
12471 unsigned int len;
12472
12473 BUG_ON(!vcpu->mmio_needed);
12474
12475 /* Complete previous fragment */
12476 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
12477 len = min(8u, frag->len);
12478 if (!vcpu->mmio_is_write)
12479 memcpy(frag->data, run->mmio.data, len);
12480
12481 if (frag->len <= 8) {
12482 /* Switch to the next fragment. */
12483 frag++;
12484 vcpu->mmio_cur_fragment++;
12485 } else {
12486 /* Go forward to the next mmio piece. */
12487 frag->data += len;
12488 frag->gpa += len;
12489 frag->len -= len;
12490 }
12491
12492 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
12493 vcpu->mmio_needed = 0;
12494
12495 // VMG change, at this point, we're always done
12496 // RIP has already been advanced
12497 return 1;
12498 }
12499
12500 // More MMIO is needed
12501 run->mmio.phys_addr = frag->gpa;
12502 run->mmio.len = min(8u, frag->len);
12503 run->mmio.is_write = vcpu->mmio_is_write;
12504 if (run->mmio.is_write)
12505 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
12506 run->exit_reason = KVM_EXIT_MMIO;
12507
12508 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12509
12510 return 0;
12511}
12512
12513int kvm_sev_es_mmio_write(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12514 void *data)
12515{
12516 int handled;
12517 struct kvm_mmio_fragment *frag;
12518
12519 if (!data)
12520 return -EINVAL;
12521
12522 handled = write_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12523 if (handled == bytes)
12524 return 1;
12525
12526 bytes -= handled;
12527 gpa += handled;
12528 data += handled;
12529
12530 /*TODO: Check if need to increment number of frags */
12531 frag = vcpu->mmio_fragments;
12532 vcpu->mmio_nr_fragments = 1;
12533 frag->len = bytes;
12534 frag->gpa = gpa;
12535 frag->data = data;
12536
12537 vcpu->mmio_needed = 1;
12538 vcpu->mmio_cur_fragment = 0;
12539
12540 vcpu->run->mmio.phys_addr = gpa;
12541 vcpu->run->mmio.len = min(8u, frag->len);
12542 vcpu->run->mmio.is_write = 1;
12543 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
12544 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12545
12546 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12547
12548 return 0;
12549}
12550EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_write);
12551
12552int kvm_sev_es_mmio_read(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12553 void *data)
12554{
12555 int handled;
12556 struct kvm_mmio_fragment *frag;
12557
12558 if (!data)
12559 return -EINVAL;
12560
12561 handled = read_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12562 if (handled == bytes)
12563 return 1;
12564
12565 bytes -= handled;
12566 gpa += handled;
12567 data += handled;
12568
12569 /*TODO: Check if need to increment number of frags */
12570 frag = vcpu->mmio_fragments;
12571 vcpu->mmio_nr_fragments = 1;
12572 frag->len = bytes;
12573 frag->gpa = gpa;
12574 frag->data = data;
12575
12576 vcpu->mmio_needed = 1;
12577 vcpu->mmio_cur_fragment = 0;
12578
12579 vcpu->run->mmio.phys_addr = gpa;
12580 vcpu->run->mmio.len = min(8u, frag->len);
12581 vcpu->run->mmio.is_write = 0;
12582 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12583
12584 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12585
12586 return 0;
12587}
12588EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_read);
12589
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012590static int kvm_sev_es_outs(struct kvm_vcpu *vcpu, unsigned int size,
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012591 unsigned int port);
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012592
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012593static int complete_sev_es_emulated_outs(struct kvm_vcpu *vcpu)
12594{
12595 int size = vcpu->arch.pio.size;
12596 int port = vcpu->arch.pio.port;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012597
12598 vcpu->arch.pio.count = 0;
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012599 if (vcpu->arch.sev_pio_count)
12600 return kvm_sev_es_outs(vcpu, size, port);
12601 return 1;
12602}
12603
12604static int kvm_sev_es_outs(struct kvm_vcpu *vcpu, unsigned int size,
12605 unsigned int port)
12606{
12607 for (;;) {
12608 unsigned int count =
12609 min_t(unsigned int, PAGE_SIZE / size, vcpu->arch.sev_pio_count);
12610 int ret = emulator_pio_out(vcpu, size, port, vcpu->arch.sev_pio_data, count);
12611
12612 /* memcpy done already by emulator_pio_out. */
12613 vcpu->arch.sev_pio_count -= count;
12614 vcpu->arch.sev_pio_data += count * vcpu->arch.pio.size;
12615 if (!ret)
12616 break;
12617
12618 /* Emulation done by the kernel. */
12619 if (!vcpu->arch.sev_pio_count)
12620 return 1;
12621 }
12622
12623 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_outs;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012624 return 0;
12625}
12626
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012627static int kvm_sev_es_ins(struct kvm_vcpu *vcpu, unsigned int size,
12628 unsigned int port);
12629
12630static void advance_sev_es_emulated_ins(struct kvm_vcpu *vcpu)
12631{
12632 unsigned count = vcpu->arch.pio.count;
12633 complete_emulator_pio_in(vcpu, vcpu->arch.sev_pio_data);
12634 vcpu->arch.sev_pio_count -= count;
12635 vcpu->arch.sev_pio_data += count * vcpu->arch.pio.size;
12636}
12637
Paolo Bonzini4fa4b382021-10-12 11:25:45 -040012638static int complete_sev_es_emulated_ins(struct kvm_vcpu *vcpu)
12639{
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012640 int size = vcpu->arch.pio.size;
12641 int port = vcpu->arch.pio.port;
Paolo Bonzini4fa4b382021-10-12 11:25:45 -040012642
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012643 advance_sev_es_emulated_ins(vcpu);
12644 if (vcpu->arch.sev_pio_count)
12645 return kvm_sev_es_ins(vcpu, size, port);
Paolo Bonzini4fa4b382021-10-12 11:25:45 -040012646 return 1;
12647}
12648
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012649static int kvm_sev_es_ins(struct kvm_vcpu *vcpu, unsigned int size,
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012650 unsigned int port)
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012651{
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012652 for (;;) {
12653 unsigned int count =
12654 min_t(unsigned int, PAGE_SIZE / size, vcpu->arch.sev_pio_count);
12655 if (!__emulator_pio_in(vcpu, size, port, count))
12656 break;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012657
Paolo Bonziniea724ea2021-10-12 10:51:55 -040012658 /* Emulation done by the kernel. */
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012659 advance_sev_es_emulated_ins(vcpu);
12660 if (!vcpu->arch.sev_pio_count)
12661 return 1;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012662 }
12663
Paolo Bonziniea724ea2021-10-12 10:51:55 -040012664 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_ins;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012665 return 0;
12666}
12667
12668int kvm_sev_es_string_io(struct kvm_vcpu *vcpu, unsigned int size,
12669 unsigned int port, void *data, unsigned int count,
12670 int in)
12671{
Paolo Bonziniea724ea2021-10-12 10:51:55 -040012672 vcpu->arch.sev_pio_data = data;
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012673 vcpu->arch.sev_pio_count = count;
12674 return in ? kvm_sev_es_ins(vcpu, size, port)
12675 : kvm_sev_es_outs(vcpu, size, port);
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012676}
12677EXPORT_SYMBOL_GPL(kvm_sev_es_string_io);
12678
Lorenzo Bresciad95df952020-12-23 14:45:07 +000012679EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_entry);
Carsten Otte043405e2007-10-10 17:16:19 +020012680EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
12681EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
12682EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
12683EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
12684EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
12685EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
12686EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
12687EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
12688EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
12689EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Sean Christopherson5497b952019-07-11 08:58:29 -070012690EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmenter_failed);
Carsten Otte043405e2007-10-10 17:16:19 +020012691EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
12692EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
12693EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
12694EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Peter Xu4f75bcc2019-09-06 10:17:22 +080012695EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window_update);
Carsten Otte043405e2007-10-10 17:16:19 +020012696EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
12697EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
12698EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
12699EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);
Suravee Suthikulpanitab56f8e2020-03-12 05:39:28 -050012700EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_ga_log);
Suravee Suthikulpanit24bbf742019-11-14 14:15:07 -060012701EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_apicv_update_request);
Maxim Levitsky8e819d72021-12-09 13:54:36 +020012702EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_apicv_accept_irq);
Tom Lendackyd523ab6b2020-12-10 11:09:48 -060012703EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_enter);
12704EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_exit);
Tom Lendacky59e38b52020-12-10 11:09:52 -060012705EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_enter);
12706EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_exit);