blob: c25a6ef0ff06ad26d389274adef2de42fedf5073 [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
Like Xu4732f242022-01-11 15:38:23 +0800190/* Enable/disable PMU virtualization */
191bool __read_mostly enable_pmu = true;
192EXPORT_SYMBOL_GPL(enable_pmu);
193module_param(enable_pmu, bool, 0444);
194
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700195/*
196 * Restoring the host value for MSRs that are only consumed when running in
197 * usermode, e.g. SYSCALL MSRs and TSC_AUX, can be deferred until the CPU
198 * returns to userspace, i.e. the kernel can run with the guest's value.
199 */
200#define KVM_MAX_NR_USER_RETURN_MSRS 16
Avi Kivity18863bd2009-09-07 11:12:18 +0300201
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700202struct kvm_user_return_msrs {
Avi Kivity18863bd2009-09-07 11:12:18 +0300203 struct user_return_notifier urn;
204 bool registered;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700205 struct kvm_user_return_msr_values {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800206 u64 host;
207 u64 curr;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700208 } values[KVM_MAX_NR_USER_RETURN_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300209};
210
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700211u32 __read_mostly kvm_nr_uret_msrs;
212EXPORT_SYMBOL_GPL(kvm_nr_uret_msrs);
213static u32 __read_mostly kvm_uret_msrs_list[KVM_MAX_NR_USER_RETURN_MSRS];
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700214static struct kvm_user_return_msrs __percpu *user_return_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300215
Sean Christophersoncfc48182020-03-02 15:56:23 -0800216#define KVM_SUPPORTED_XCR0 (XFEATURE_MASK_FP | XFEATURE_MASK_SSE \
217 | XFEATURE_MASK_YMM | XFEATURE_MASK_BNDREGS \
218 | XFEATURE_MASK_BNDCSR | XFEATURE_MASK_AVX512 \
Jing Liu86aff7a42022-01-05 04:35:26 -0800219 | XFEATURE_MASK_PKRU | XFEATURE_MASK_XTILE)
Sean Christophersoncfc48182020-03-02 15:56:23 -0800220
Sean Christopherson91661982020-03-02 15:57:06 -0800221u64 __read_mostly host_efer;
222EXPORT_SYMBOL_GPL(host_efer);
223
Mohammed Gamalb96e6502020-09-03 16:11:22 +0200224bool __read_mostly allow_smaller_maxphyaddr = 0;
Mohammed Gamal3edd6832020-07-10 17:48:11 +0200225EXPORT_SYMBOL_GPL(allow_smaller_maxphyaddr);
226
Vitaly Kuznetsovfdf513e2021-06-09 17:09:08 +0200227bool __read_mostly enable_apicv = true;
228EXPORT_SYMBOL_GPL(enable_apicv);
229
Tom Lendacky86137772020-12-10 11:10:07 -0600230u64 __read_mostly host_xss;
231EXPORT_SYMBOL_GPL(host_xss);
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100232u64 __read_mostly supported_xss;
233EXPORT_SYMBOL_GPL(supported_xss);
Aaron Lewis139a12c2019-10-21 16:30:25 -0700234
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000235const struct _kvm_stats_desc kvm_vm_stats_desc[] = {
236 KVM_GENERIC_VM_STATS(),
237 STATS_DESC_COUNTER(VM, mmu_shadow_zapped),
238 STATS_DESC_COUNTER(VM, mmu_pte_write),
239 STATS_DESC_COUNTER(VM, mmu_pde_zapped),
240 STATS_DESC_COUNTER(VM, mmu_flooded),
241 STATS_DESC_COUNTER(VM, mmu_recycled),
242 STATS_DESC_COUNTER(VM, mmu_cache_miss),
243 STATS_DESC_ICOUNTER(VM, mmu_unsync),
Mingwei Zhang71f51d22021-08-02 21:46:07 -0700244 STATS_DESC_ICOUNTER(VM, pages_4k),
245 STATS_DESC_ICOUNTER(VM, pages_2m),
246 STATS_DESC_ICOUNTER(VM, pages_1g),
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000247 STATS_DESC_ICOUNTER(VM, nx_lpage_splits),
Peter Xuec1cf692021-06-25 11:32:06 -0400248 STATS_DESC_PCOUNTER(VM, max_mmu_rmap_size),
Jing Zhangbc9e9e62021-06-23 17:28:46 -0400249 STATS_DESC_PCOUNTER(VM, max_mmu_page_hash_collisions)
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000250};
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000251
252const struct kvm_stats_header kvm_vm_stats_header = {
253 .name_size = KVM_STATS_NAME_SIZE,
254 .num_desc = ARRAY_SIZE(kvm_vm_stats_desc),
255 .id_offset = sizeof(struct kvm_stats_header),
256 .desc_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE,
257 .data_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE +
258 sizeof(kvm_vm_stats_desc),
259};
260
Jing Zhangce55c042021-06-18 22:27:06 +0000261const struct _kvm_stats_desc kvm_vcpu_stats_desc[] = {
262 KVM_GENERIC_VCPU_STATS(),
263 STATS_DESC_COUNTER(VCPU, pf_fixed),
264 STATS_DESC_COUNTER(VCPU, pf_guest),
265 STATS_DESC_COUNTER(VCPU, tlb_flush),
266 STATS_DESC_COUNTER(VCPU, invlpg),
267 STATS_DESC_COUNTER(VCPU, exits),
268 STATS_DESC_COUNTER(VCPU, io_exits),
269 STATS_DESC_COUNTER(VCPU, mmio_exits),
270 STATS_DESC_COUNTER(VCPU, signal_exits),
271 STATS_DESC_COUNTER(VCPU, irq_window_exits),
272 STATS_DESC_COUNTER(VCPU, nmi_window_exits),
273 STATS_DESC_COUNTER(VCPU, l1d_flush),
274 STATS_DESC_COUNTER(VCPU, halt_exits),
275 STATS_DESC_COUNTER(VCPU, request_irq_exits),
276 STATS_DESC_COUNTER(VCPU, irq_exits),
277 STATS_DESC_COUNTER(VCPU, host_state_reload),
278 STATS_DESC_COUNTER(VCPU, fpu_reload),
279 STATS_DESC_COUNTER(VCPU, insn_emulation),
280 STATS_DESC_COUNTER(VCPU, insn_emulation_fail),
281 STATS_DESC_COUNTER(VCPU, hypercalls),
282 STATS_DESC_COUNTER(VCPU, irq_injections),
283 STATS_DESC_COUNTER(VCPU, nmi_injections),
284 STATS_DESC_COUNTER(VCPU, req_event),
285 STATS_DESC_COUNTER(VCPU, nested_run),
286 STATS_DESC_COUNTER(VCPU, directed_yield_attempted),
287 STATS_DESC_COUNTER(VCPU, directed_yield_successful),
288 STATS_DESC_ICOUNTER(VCPU, guest_mode)
289};
Jing Zhangce55c042021-06-18 22:27:06 +0000290
291const struct kvm_stats_header kvm_vcpu_stats_header = {
292 .name_size = KVM_STATS_NAME_SIZE,
293 .num_desc = ARRAY_SIZE(kvm_vcpu_stats_desc),
294 .id_offset = sizeof(struct kvm_stats_header),
295 .desc_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE,
296 .data_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE +
297 sizeof(kvm_vcpu_stats_desc),
298};
299
Dexuan Cui2acf9232010-06-10 11:27:12 +0800300u64 __read_mostly host_xcr0;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800301u64 __read_mostly supported_xcr0;
302EXPORT_SYMBOL_GPL(supported_xcr0);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800303
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800304static struct kmem_cache *x86_emulator_cache;
305
Peter Xu6abe9c12020-06-22 18:04:41 -0400306/*
307 * When called, it means the previous get/set msr reached an invalid msr.
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200308 * Return true if we want to ignore/silent this failed msr access.
Peter Xu6abe9c12020-06-22 18:04:41 -0400309 */
Haiwei Lid6328262021-03-13 13:10:32 +0800310static bool kvm_msr_ignored_check(u32 msr, u64 data, bool write)
Peter Xu6abe9c12020-06-22 18:04:41 -0400311{
312 const char *op = write ? "wrmsr" : "rdmsr";
313
314 if (ignore_msrs) {
315 if (report_ignored_msrs)
Takashi Iwaid383b312020-10-30 16:14:14 +0100316 kvm_pr_unimpl("ignored %s: 0x%x data 0x%llx\n",
317 op, msr, data);
Peter Xu6abe9c12020-06-22 18:04:41 -0400318 /* Mask the error */
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200319 return true;
Peter Xu6abe9c12020-06-22 18:04:41 -0400320 } else {
Takashi Iwaid383b312020-10-30 16:14:14 +0100321 kvm_debug_ratelimited("unhandled %s: 0x%x data 0x%llx\n",
322 op, msr, data);
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200323 return false;
Peter Xu6abe9c12020-06-22 18:04:41 -0400324 }
325}
326
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800327static struct kmem_cache *kvm_alloc_emulator_cache(void)
328{
Sean Christopherson06add252020-02-18 15:29:50 -0800329 unsigned int useroffset = offsetof(struct x86_emulate_ctxt, src);
330 unsigned int size = sizeof(struct x86_emulate_ctxt);
331
332 return kmem_cache_create_usercopy("x86_emulator", size,
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800333 __alignof__(struct x86_emulate_ctxt),
Sean Christopherson06add252020-02-18 15:29:50 -0800334 SLAB_ACCOUNT, useroffset,
335 size - useroffset, NULL);
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800336}
337
Jan Kiszkab6785de2012-09-20 07:43:17 +0200338static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300339
Gleb Natapovaf585b92010-10-14 11:22:46 +0200340static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
341{
342 int i;
Peter Xudd03bca2020-04-16 11:58:59 -0400343 for (i = 0; i < ASYNC_PF_PER_VCPU; i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +0200344 vcpu->arch.apf.gfns[i] = ~0;
345}
346
Avi Kivity18863bd2009-09-07 11:12:18 +0300347static void kvm_on_user_return(struct user_return_notifier *urn)
348{
349 unsigned slot;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700350 struct kvm_user_return_msrs *msrs
351 = container_of(urn, struct kvm_user_return_msrs, urn);
352 struct kvm_user_return_msr_values *values;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700353 unsigned long flags;
Avi Kivity18863bd2009-09-07 11:12:18 +0300354
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700355 /*
356 * Disabling irqs at this point since the following code could be
357 * interrupted and executed through kvm_arch_hardware_disable()
358 */
359 local_irq_save(flags);
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700360 if (msrs->registered) {
361 msrs->registered = false;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700362 user_return_notifier_unregister(urn);
363 }
364 local_irq_restore(flags);
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700365 for (slot = 0; slot < kvm_nr_uret_msrs; ++slot) {
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700366 values = &msrs->values[slot];
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800367 if (values->host != values->curr) {
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700368 wrmsrl(kvm_uret_msrs_list[slot], values->host);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800369 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300370 }
371 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300372}
373
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700374static int kvm_probe_user_return_msr(u32 msr)
Sean Christopherson5104d7f2021-05-04 10:17:24 -0700375{
376 u64 val;
377 int ret;
378
379 preempt_disable();
380 ret = rdmsrl_safe(msr, &val);
381 if (ret)
382 goto out;
383 ret = wrmsrl_safe(msr, val);
384out:
385 preempt_enable();
386 return ret;
387}
Sean Christopherson5104d7f2021-05-04 10:17:24 -0700388
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700389int kvm_add_user_return_msr(u32 msr)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800390{
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700391 BUG_ON(kvm_nr_uret_msrs >= KVM_MAX_NR_USER_RETURN_MSRS);
392
393 if (kvm_probe_user_return_msr(msr))
394 return -1;
395
396 kvm_uret_msrs_list[kvm_nr_uret_msrs] = msr;
397 return kvm_nr_uret_msrs++;
Avi Kivity18863bd2009-09-07 11:12:18 +0300398}
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700399EXPORT_SYMBOL_GPL(kvm_add_user_return_msr);
Avi Kivity18863bd2009-09-07 11:12:18 +0300400
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700401int kvm_find_user_return_msr(u32 msr)
402{
403 int i;
404
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700405 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
406 if (kvm_uret_msrs_list[i] == msr)
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700407 return i;
408 }
409 return -1;
410}
411EXPORT_SYMBOL_GPL(kvm_find_user_return_msr);
412
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700413static void kvm_user_return_msr_cpu_online(void)
Avi Kivity18863bd2009-09-07 11:12:18 +0300414{
Sean Christopherson05c19c22019-11-22 12:04:50 -0800415 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700416 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Sean Christopherson05c19c22019-11-22 12:04:50 -0800417 u64 value;
418 int i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300419
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700420 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
421 rdmsrl_safe(kvm_uret_msrs_list[i], &value);
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700422 msrs->values[i].host = value;
423 msrs->values[i].curr = value;
Sean Christopherson05c19c22019-11-22 12:04:50 -0800424 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300425}
426
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700427int kvm_set_user_return_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300428{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200429 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700430 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Andy Honig8b3c3102014-08-27 11:16:44 -0700431 int err;
Avi Kivity18863bd2009-09-07 11:12:18 +0300432
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700433 value = (value & mask) | (msrs->values[slot].host & ~mask);
434 if (value == msrs->values[slot].curr)
Andy Honig8b3c3102014-08-27 11:16:44 -0700435 return 0;
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700436 err = wrmsrl_safe(kvm_uret_msrs_list[slot], value);
Andy Honig8b3c3102014-08-27 11:16:44 -0700437 if (err)
438 return 1;
439
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700440 msrs->values[slot].curr = value;
441 if (!msrs->registered) {
442 msrs->urn.on_user_return = kvm_on_user_return;
443 user_return_notifier_register(&msrs->urn);
444 msrs->registered = true;
Avi Kivity18863bd2009-09-07 11:12:18 +0300445 }
Andy Honig8b3c3102014-08-27 11:16:44 -0700446 return 0;
Avi Kivity18863bd2009-09-07 11:12:18 +0300447}
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700448EXPORT_SYMBOL_GPL(kvm_set_user_return_msr);
Avi Kivity18863bd2009-09-07 11:12:18 +0300449
Radim Krčmář13a34e02014-08-28 15:13:03 +0200450static void drop_user_return_notifiers(void)
Avi Kivity3548bab2009-11-28 14:18:47 +0200451{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200452 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700453 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200454
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700455 if (msrs->registered)
456 kvm_on_user_return(&msrs->urn);
Avi Kivity3548bab2009-11-28 14:18:47 +0200457}
458
Carsten Otte6866b832007-10-29 16:09:10 +0100459u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
460{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300461 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100462}
463EXPORT_SYMBOL_GPL(kvm_get_apic_base);
464
Jim Mattson58871642018-05-09 16:56:04 -0400465enum lapic_mode kvm_get_apic_mode(struct kvm_vcpu *vcpu)
466{
467 return kvm_apic_mode(kvm_get_apic_base(vcpu));
468}
469EXPORT_SYMBOL_GPL(kvm_get_apic_mode);
470
Jan Kiszka58cb6282014-01-24 16:48:44 +0100471int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte6866b832007-10-29 16:09:10 +0100472{
Jim Mattson58871642018-05-09 16:56:04 -0400473 enum lapic_mode old_mode = kvm_get_apic_mode(vcpu);
474 enum lapic_mode new_mode = kvm_apic_mode(msr_info->data);
Sean Christophersona8ac8642021-02-03 16:01:15 -0800475 u64 reserved_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu) | 0x2ff |
Radim Krčmářd6321d42017-08-05 00:12:49 +0200476 (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC) ? 0 : X2APIC_ENABLE);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100477
Jim Mattson58871642018-05-09 16:56:04 -0400478 if ((msr_info->data & reserved_bits) != 0 || new_mode == LAPIC_MODE_INVALID)
Jim Mattsond3802282017-08-10 10:14:13 -0700479 return 1;
Jim Mattson58871642018-05-09 16:56:04 -0400480 if (!msr_info->host_initiated) {
481 if (old_mode == LAPIC_MODE_X2APIC && new_mode == LAPIC_MODE_XAPIC)
482 return 1;
483 if (old_mode == LAPIC_MODE_DISABLED && new_mode == LAPIC_MODE_X2APIC)
484 return 1;
485 }
Jan Kiszka58cb6282014-01-24 16:48:44 +0100486
487 kvm_lapic_set_base(vcpu, msr_info->data);
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800488 kvm_recalculate_apic_map(vcpu->kvm);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100489 return 0;
Carsten Otte6866b832007-10-29 16:09:10 +0100490}
491EXPORT_SYMBOL_GPL(kvm_set_apic_base);
492
Sean Christophersonad0577c2021-08-09 10:39:54 -0700493/*
494 * Handle a fault on a hardware virtualization (VMX or SVM) instruction.
495 *
496 * Hardware virtualization extension instructions may fault if a reboot turns
497 * off virtualization while processes are running. Usually after catching the
498 * fault we just panic; during reboot instead the instruction is ignored.
499 */
500noinstr void kvm_spurious_fault(void)
Geoff Levande3ba45b2013-04-05 19:20:30 +0000501{
502 /* Fault while not rebooting. We want the trace. */
kbuild test robotb4fdcf62019-09-29 18:43:28 +0200503 BUG_ON(!kvm_rebooting);
Geoff Levande3ba45b2013-04-05 19:20:30 +0000504}
505EXPORT_SYMBOL_GPL(kvm_spurious_fault);
506
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200507#define EXCPT_BENIGN 0
508#define EXCPT_CONTRIBUTORY 1
509#define EXCPT_PF 2
510
511static int exception_class(int vector)
512{
513 switch (vector) {
514 case PF_VECTOR:
515 return EXCPT_PF;
516 case DE_VECTOR:
517 case TS_VECTOR:
518 case NP_VECTOR:
519 case SS_VECTOR:
520 case GP_VECTOR:
521 return EXCPT_CONTRIBUTORY;
522 default:
523 break;
524 }
525 return EXCPT_BENIGN;
526}
527
Nadav Amitd6e8c852014-07-24 14:51:24 +0300528#define EXCPT_FAULT 0
529#define EXCPT_TRAP 1
530#define EXCPT_ABORT 2
531#define EXCPT_INTERRUPT 3
532
533static int exception_type(int vector)
534{
535 unsigned int mask;
536
537 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
538 return EXCPT_INTERRUPT;
539
540 mask = 1 << vector;
541
542 /* #DB is trap, as instruction watchpoints are handled elsewhere */
543 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
544 return EXCPT_TRAP;
545
546 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
547 return EXCPT_ABORT;
548
549 /* Reserved exceptions will result in fault */
550 return EXCPT_FAULT;
551}
552
Jim Mattsonda998b42018-10-16 14:29:22 -0700553void kvm_deliver_exception_payload(struct kvm_vcpu *vcpu)
554{
555 unsigned nr = vcpu->arch.exception.nr;
556 bool has_payload = vcpu->arch.exception.has_payload;
557 unsigned long payload = vcpu->arch.exception.payload;
558
559 if (!has_payload)
560 return;
561
562 switch (nr) {
Jim Mattsonf10c7292018-10-16 14:29:23 -0700563 case DB_VECTOR:
564 /*
565 * "Certain debug exceptions may clear bit 0-3. The
566 * remaining contents of the DR6 register are never
567 * cleared by the processor".
568 */
569 vcpu->arch.dr6 &= ~DR_TRAP_BITS;
570 /*
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800571 * In order to reflect the #DB exception payload in guest
572 * dr6, three components need to be considered: active low
573 * bit, FIXED_1 bits and active high bits (e.g. DR6_BD,
574 * DR6_BS and DR6_BT)
575 * DR6_ACTIVE_LOW contains the FIXED_1 and active low bits.
576 * In the target guest dr6:
577 * FIXED_1 bits should always be set.
578 * Active low bits should be cleared if 1-setting in payload.
579 * Active high bits should be set if 1-setting in payload.
580 *
581 * Note, the payload is compatible with the pending debug
582 * exceptions/exit qualification under VMX, that active_low bits
583 * are active high in payload.
584 * So they need to be flipped for DR6.
Jim Mattsonf10c7292018-10-16 14:29:23 -0700585 */
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800586 vcpu->arch.dr6 |= DR6_ACTIVE_LOW;
Jim Mattsonf10c7292018-10-16 14:29:23 -0700587 vcpu->arch.dr6 |= payload;
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800588 vcpu->arch.dr6 ^= payload & DR6_ACTIVE_LOW;
Oliver Upton307f1cf2020-02-07 02:36:04 -0800589
590 /*
591 * The #DB payload is defined as compatible with the 'pending
592 * debug exceptions' field under VMX, not DR6. While bit 12 is
593 * defined in the 'pending debug exceptions' field (enabled
594 * breakpoint), it is reserved and must be zero in DR6.
595 */
596 vcpu->arch.dr6 &= ~BIT(12);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700597 break;
Jim Mattsonda998b42018-10-16 14:29:22 -0700598 case PF_VECTOR:
599 vcpu->arch.cr2 = payload;
600 break;
601 }
602
603 vcpu->arch.exception.has_payload = false;
604 vcpu->arch.exception.payload = 0;
605}
606EXPORT_SYMBOL_GPL(kvm_deliver_exception_payload);
607
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200608static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200609 unsigned nr, bool has_error, u32 error_code,
Jim Mattson91e86d22018-10-16 14:29:21 -0700610 bool has_payload, unsigned long payload, bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200611{
612 u32 prev_nr;
613 int class1, class2;
614
Avi Kivity3842d132010-07-27 12:30:24 +0300615 kvm_make_request(KVM_REQ_EVENT, vcpu);
616
Wanpeng Li664f8e22017-08-24 03:35:09 -0700617 if (!vcpu->arch.exception.pending && !vcpu->arch.exception.injected) {
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200618 queue:
Wanpeng Li664f8e22017-08-24 03:35:09 -0700619 if (reinject) {
620 /*
621 * On vmentry, vcpu->arch.exception.pending is only
622 * true if an event injection was blocked by
623 * nested_run_pending. In that case, however,
624 * vcpu_enter_guest requests an immediate exit,
625 * and the guest shouldn't proceed far enough to
626 * need reinjection.
627 */
628 WARN_ON_ONCE(vcpu->arch.exception.pending);
629 vcpu->arch.exception.injected = true;
Jim Mattson91e86d22018-10-16 14:29:21 -0700630 if (WARN_ON_ONCE(has_payload)) {
631 /*
632 * A reinjected event has already
633 * delivered its payload.
634 */
635 has_payload = false;
636 payload = 0;
637 }
Wanpeng Li664f8e22017-08-24 03:35:09 -0700638 } else {
639 vcpu->arch.exception.pending = true;
640 vcpu->arch.exception.injected = false;
641 }
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200642 vcpu->arch.exception.has_error_code = has_error;
643 vcpu->arch.exception.nr = nr;
644 vcpu->arch.exception.error_code = error_code;
Jim Mattson91e86d22018-10-16 14:29:21 -0700645 vcpu->arch.exception.has_payload = has_payload;
646 vcpu->arch.exception.payload = payload;
Oliver Uptona06230b2020-02-07 02:36:06 -0800647 if (!is_guest_mode(vcpu))
Jim Mattsonda998b42018-10-16 14:29:22 -0700648 kvm_deliver_exception_payload(vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200649 return;
650 }
651
652 /* to check exception */
653 prev_nr = vcpu->arch.exception.nr;
654 if (prev_nr == DF_VECTOR) {
655 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300656 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200657 return;
658 }
659 class1 = exception_class(prev_nr);
660 class2 = exception_class(nr);
661 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
662 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
Wanpeng Li664f8e22017-08-24 03:35:09 -0700663 /*
664 * Generate double fault per SDM Table 5-5. Set
665 * exception.pending = true so that the double fault
666 * can trigger a nested vmexit.
667 */
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200668 vcpu->arch.exception.pending = true;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700669 vcpu->arch.exception.injected = false;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200670 vcpu->arch.exception.has_error_code = true;
671 vcpu->arch.exception.nr = DF_VECTOR;
672 vcpu->arch.exception.error_code = 0;
Jim Mattsonc8514362018-10-16 14:29:19 -0700673 vcpu->arch.exception.has_payload = false;
674 vcpu->arch.exception.payload = 0;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200675 } else
676 /* replace previous exception with a new one in a hope
677 that instruction re-execution will regenerate lost
678 exception */
679 goto queue;
680}
681
Avi Kivity298101d2007-11-25 13:41:11 +0200682void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
683{
Jim Mattson91e86d22018-10-16 14:29:21 -0700684 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200685}
686EXPORT_SYMBOL_GPL(kvm_queue_exception);
687
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200688void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
689{
Jim Mattson91e86d22018-10-16 14:29:21 -0700690 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200691}
692EXPORT_SYMBOL_GPL(kvm_requeue_exception);
693
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400694void kvm_queue_exception_p(struct kvm_vcpu *vcpu, unsigned nr,
695 unsigned long payload)
Jim Mattsonf10c7292018-10-16 14:29:23 -0700696{
697 kvm_multiple_exception(vcpu, nr, false, 0, true, payload, false);
698}
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400699EXPORT_SYMBOL_GPL(kvm_queue_exception_p);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700700
Jim Mattsonda998b42018-10-16 14:29:22 -0700701static void kvm_queue_exception_e_p(struct kvm_vcpu *vcpu, unsigned nr,
702 u32 error_code, unsigned long payload)
703{
704 kvm_multiple_exception(vcpu, nr, true, error_code,
705 true, payload, false);
706}
707
Kyle Huey6affcbe2016-11-29 12:40:40 -0800708int kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200709{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100710 if (err)
711 kvm_inject_gp(vcpu, 0);
712 else
Kyle Huey6affcbe2016-11-29 12:40:40 -0800713 return kvm_skip_emulated_instruction(vcpu);
714
715 return 1;
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100716}
717EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200718
Hou Wenlongd2f7d492021-11-02 17:15:31 +0800719static int complete_emulated_insn_gp(struct kvm_vcpu *vcpu, int err)
720{
721 if (err) {
722 kvm_inject_gp(vcpu, 0);
723 return 1;
724 }
725
726 return kvm_emulate_instruction(vcpu, EMULTYPE_NO_DECODE | EMULTYPE_SKIP |
727 EMULTYPE_COMPLETE_USER_EXIT);
728}
729
Avi Kivity6389ee92010-11-29 16:12:30 +0200730void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200731{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200732 ++vcpu->stat.pf_guest;
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700733 vcpu->arch.exception.nested_apf =
734 is_guest_mode(vcpu) && fault->async_page_fault;
Jim Mattsonda998b42018-10-16 14:29:22 -0700735 if (vcpu->arch.exception.nested_apf) {
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700736 vcpu->arch.apf.nested_apf_token = fault->address;
Jim Mattsonda998b42018-10-16 14:29:22 -0700737 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
738 } else {
739 kvm_queue_exception_e_p(vcpu, PF_VECTOR, fault->error_code,
740 fault->address);
741 }
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200742}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300743EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200744
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700745bool kvm_inject_emulated_page_fault(struct kvm_vcpu *vcpu,
746 struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200747{
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400748 struct kvm_mmu *fault_mmu;
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700749 WARN_ON_ONCE(fault->vector != PF_VECTOR);
750
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400751 fault_mmu = fault->nested_page_fault ? vcpu->arch.mmu :
752 vcpu->arch.walk_mmu;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200753
Junaid Shahidee1fa202020-03-20 14:28:03 -0700754 /*
755 * Invalidate the TLB entry for the faulting address, if it exists,
756 * else the access will fault indefinitely (and to emulate hardware).
757 */
758 if ((fault->error_code & PFERR_PRESENT_MASK) &&
759 !(fault->error_code & PFERR_RSVD_MASK))
760 kvm_mmu_invalidate_gva(vcpu, fault_mmu, fault->address,
761 fault_mmu->root_hpa);
762
763 fault_mmu->inject_page_fault(vcpu, fault);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200764 return fault->nested_page_fault;
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200765}
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700766EXPORT_SYMBOL_GPL(kvm_inject_emulated_page_fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200767
Sheng Yang3419ffc2008-05-15 09:52:48 +0800768void kvm_inject_nmi(struct kvm_vcpu *vcpu)
769{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300770 atomic_inc(&vcpu->arch.nmi_queued);
771 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800772}
773EXPORT_SYMBOL_GPL(kvm_inject_nmi);
774
Avi Kivity298101d2007-11-25 13:41:11 +0200775void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
776{
Jim Mattson91e86d22018-10-16 14:29:21 -0700777 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200778}
779EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
780
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200781void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
782{
Jim Mattson91e86d22018-10-16 14:29:21 -0700783 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200784}
785EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
786
Carsten Ottea03490e2007-10-29 16:09:35 +0100787/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300788 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
789 * a #GP and return false.
790 */
791bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200792{
Jason Baronb36464772021-01-14 22:27:56 -0500793 if (static_call(kvm_x86_get_cpl)(vcpu) <= required_cpl)
Avi Kivity0a79b002009-09-01 12:03:25 +0300794 return true;
795 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
796 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100797}
Avi Kivity0a79b002009-09-01 12:03:25 +0300798EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100799
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300800bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
801{
802 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
803 return true;
804
805 kvm_queue_exception(vcpu, UD_VECTOR);
806 return false;
807}
808EXPORT_SYMBOL_GPL(kvm_require_dr);
809
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700810static inline u64 pdptr_rsvd_bits(struct kvm_vcpu *vcpu)
811{
Sean Christopherson5b7f5752021-02-03 16:01:13 -0800812 return vcpu->arch.reserved_gpa_bits | rsvd_bits(5, 8) | rsvd_bits(1, 2);
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700813}
814
Joerg Roedelec92fe42010-09-10 17:30:51 +0200815/*
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700816 * Load the pae pdptrs. Return 1 if they are all valid, 0 otherwise.
Carsten Ottea03490e2007-10-29 16:09:35 +0100817 */
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +0800818int load_pdptrs(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100819{
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +0800820 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Carsten Ottea03490e2007-10-29 16:09:35 +0100821 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700822 gpa_t real_gpa;
Carsten Ottea03490e2007-10-29 16:09:35 +0100823 int i;
824 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200825 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100826
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700827 /*
828 * If the MMU is nested, CR3 holds an L2 GPA and needs to be translated
829 * to an L1 GPA.
830 */
Lai Jiangshanc59a0f52021-11-24 20:20:45 +0800831 real_gpa = kvm_translate_gpa(vcpu, mmu, gfn_to_gpa(pdpt_gfn),
832 PFERR_USER_MASK | PFERR_WRITE_MASK, NULL);
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700833 if (real_gpa == UNMAPPED_GVA)
834 return 0;
835
Sean Christopherson94c641b2021-08-31 09:42:24 -0700836 /* Note the offset, PDPTRs are 32 byte aligned when using PAE paging. */
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700837 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(real_gpa), pdpte,
Sean Christopherson94c641b2021-08-31 09:42:24 -0700838 cr3 & GENMASK(11, 5), sizeof(pdpte));
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700839 if (ret < 0)
840 return 0;
841
Carsten Ottea03490e2007-10-29 16:09:35 +0100842 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Bandan Das812f30b2016-07-12 18:18:50 -0400843 if ((pdpte[i] & PT_PRESENT_MASK) &&
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700844 (pdpte[i] & pdptr_rsvd_bits(vcpu))) {
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700845 return 0;
Carsten Ottea03490e2007-10-29 16:09:35 +0100846 }
847 }
Carsten Ottea03490e2007-10-29 16:09:35 +0100848
Lai Jiangshan6b123c32021-12-16 10:19:37 +0800849 /*
850 * Marking VCPU_EXREG_PDPTR dirty doesn't work for !tdp_enabled.
851 * Shadow page roots need to be reconstructed instead.
852 */
853 if (!tdp_enabled && memcmp(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs)))
854 kvm_mmu_free_roots(vcpu, mmu, KVM_MMU_ROOT_CURRENT);
855
Paolo Bonzini46cbc042021-12-10 18:13:37 -0500856 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
857 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
858 kvm_make_request(KVM_REQ_LOAD_MMU_PGD, vcpu);
Maxim Levitsky158a48e2021-06-07 12:02:03 +0300859 vcpu->arch.pdptrs_from_userspace = false;
860
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700861 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100862}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100863EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100864
Tom Lendackyf27ad382020-12-10 11:09:56 -0600865void kvm_post_set_cr0(struct kvm_vcpu *vcpu, unsigned long old_cr0, unsigned long cr0)
866{
Tom Lendackyf27ad382020-12-10 11:09:56 -0600867 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
868 kvm_clear_async_pf_completion_queue(vcpu);
869 kvm_async_pf_hash_reset(vcpu);
870 }
871
Sean Christopherson20f632b2021-06-22 10:57:02 -0700872 if ((cr0 ^ old_cr0) & KVM_MMU_CR0_ROLE_BITS)
Tom Lendackyf27ad382020-12-10 11:09:56 -0600873 kvm_mmu_reset_context(vcpu);
874
875 if (((cr0 ^ old_cr0) & X86_CR0_CD) &&
876 kvm_arch_has_noncoherent_dma(vcpu->kvm) &&
877 !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
878 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
879}
880EXPORT_SYMBOL_GPL(kvm_post_set_cr0);
881
Avi Kivity49a9b072010-06-10 17:02:14 +0300882int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100883{
Sheng Yangaad82702010-05-12 16:40:42 +0800884 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Sheng Yangaad82702010-05-12 16:40:42 +0800885
Avi Kivityf9a48e62010-01-06 19:10:22 +0200886 cr0 |= X86_CR0_ET;
887
Gleb Natapovab344822010-01-21 15:28:46 +0200888#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300889 if (cr0 & 0xffffffff00000000UL)
890 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200891#endif
892
893 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100894
Gleb Natapov0f122442010-04-28 19:15:31 +0300895 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
896 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100897
Gleb Natapov0f122442010-04-28 19:15:31 +0300898 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
899 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100900
Carsten Ottea03490e2007-10-29 16:09:35 +0100901#ifdef CONFIG_X86_64
Sean Christopherson05487212020-07-13 18:57:32 -0700902 if ((vcpu->arch.efer & EFER_LME) && !is_paging(vcpu) &&
903 (cr0 & X86_CR0_PG)) {
904 int cs_db, cs_l;
Carsten Ottea03490e2007-10-29 16:09:35 +0100905
Sean Christopherson05487212020-07-13 18:57:32 -0700906 if (!is_pae(vcpu))
907 return 1;
Jason Baronb36464772021-01-14 22:27:56 -0500908 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
Sean Christopherson05487212020-07-13 18:57:32 -0700909 if (cs_l)
Gleb Natapov0f122442010-04-28 19:15:31 +0300910 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100911 }
Sean Christopherson05487212020-07-13 18:57:32 -0700912#endif
913 if (!(vcpu->arch.efer & EFER_LME) && (cr0 & X86_CR0_PG) &&
Lai Jiangshane63f3152021-11-08 20:43:58 +0800914 is_pae(vcpu) && ((cr0 ^ old_cr0) & X86_CR0_PDPTR_BITS) &&
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +0800915 !load_pdptrs(vcpu, kvm_read_cr3(vcpu)))
Sean Christopherson05487212020-07-13 18:57:32 -0700916 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100917
Lai Jiangshan777ab822021-12-07 17:52:30 +0800918 if (!(cr0 & X86_CR0_PG) &&
919 (is_64_bit_mode(vcpu) || kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE)))
Mao, Junjiead756a12012-07-02 01:18:48 +0000920 return 1;
921
Jason Baronb36464772021-01-14 22:27:56 -0500922 static_call(kvm_x86_set_cr0)(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100923
Tom Lendackyf27ad382020-12-10 11:09:56 -0600924 kvm_post_set_cr0(vcpu, old_cr0, cr0);
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800925
Gleb Natapov0f122442010-04-28 19:15:31 +0300926 return 0;
927}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200928EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100929
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200930void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100931{
Avi Kivity49a9b072010-06-10 17:02:14 +0300932 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100933}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200934EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100935
Aaron Lewis139a12c2019-10-21 16:30:25 -0700936void kvm_load_guest_xsave_state(struct kvm_vcpu *vcpu)
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300937{
Tom Lendacky16809ec2020-12-10 11:10:08 -0600938 if (vcpu->arch.guest_state_protected)
939 return;
940
Aaron Lewis139a12c2019-10-21 16:30:25 -0700941 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300942
Aaron Lewis139a12c2019-10-21 16:30:25 -0700943 if (vcpu->arch.xcr0 != host_xcr0)
944 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
945
946 if (vcpu->arch.xsaves_enabled &&
947 vcpu->arch.ia32_xss != host_xss)
948 wrmsrl(MSR_IA32_XSS, vcpu->arch.ia32_xss);
949 }
Babu Moger37486132020-05-12 18:59:06 -0500950
951 if (static_cpu_has(X86_FEATURE_PKU) &&
952 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
953 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU)) &&
954 vcpu->arch.pkru != vcpu->arch.host_pkru)
Thomas Gleixner72a6c082021-06-23 14:02:23 +0200955 write_pkru(vcpu->arch.pkru);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300956}
Aaron Lewis139a12c2019-10-21 16:30:25 -0700957EXPORT_SYMBOL_GPL(kvm_load_guest_xsave_state);
958
959void kvm_load_host_xsave_state(struct kvm_vcpu *vcpu)
960{
Tom Lendacky16809ec2020-12-10 11:10:08 -0600961 if (vcpu->arch.guest_state_protected)
962 return;
963
Babu Moger37486132020-05-12 18:59:06 -0500964 if (static_cpu_has(X86_FEATURE_PKU) &&
965 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
966 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU))) {
967 vcpu->arch.pkru = rdpkru();
968 if (vcpu->arch.pkru != vcpu->arch.host_pkru)
Thomas Gleixner72a6c082021-06-23 14:02:23 +0200969 write_pkru(vcpu->arch.host_pkru);
Babu Moger37486132020-05-12 18:59:06 -0500970 }
971
Aaron Lewis139a12c2019-10-21 16:30:25 -0700972 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
973
974 if (vcpu->arch.xcr0 != host_xcr0)
975 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
976
977 if (vcpu->arch.xsaves_enabled &&
978 vcpu->arch.ia32_xss != host_xss)
979 wrmsrl(MSR_IA32_XSS, host_xss);
980 }
981
982}
983EXPORT_SYMBOL_GPL(kvm_load_host_xsave_state);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300984
Fengguang Wu69b00492015-01-19 22:33:39 +0800985static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800986{
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000987 u64 xcr0 = xcr;
988 u64 old_xcr0 = vcpu->arch.xcr0;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200989 u64 valid_bits;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800990
991 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
992 if (index != XCR_XFEATURE_ENABLED_MASK)
993 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700994 if (!(xcr0 & XFEATURE_MASK_FP))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800995 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700996 if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800997 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200998
999 /*
1000 * Do not allow the guest to set bits that we do not support
1001 * saving. However, xcr0 bit 0 is always set, even if the
Sean Christophersone8f65b92021-09-20 17:02:58 -07001002 * emulated CPU does not support XSAVE (see kvm_vcpu_reset()).
Paolo Bonzini46c34cb2013-10-17 16:50:46 +02001003 */
Dave Hansend91cab72015-09-02 16:31:26 -07001004 valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +02001005 if (xcr0 & ~valid_bits)
Dexuan Cui2acf9232010-06-10 11:27:12 +08001006 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +02001007
Dave Hansend91cab72015-09-02 16:31:26 -07001008 if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) !=
1009 (!(xcr0 & XFEATURE_MASK_BNDCSR)))
Liu, Jinsong390bd522014-02-24 10:58:09 +00001010 return 1;
1011
Dave Hansend91cab72015-09-02 16:31:26 -07001012 if (xcr0 & XFEATURE_MASK_AVX512) {
1013 if (!(xcr0 & XFEATURE_MASK_YMM))
Chao Peng612263b2014-10-22 17:35:24 +08001014 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -07001015 if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512)
Chao Peng612263b2014-10-22 17:35:24 +08001016 return 1;
1017 }
Jing Liu86aff7a42022-01-05 04:35:26 -08001018
1019 if ((xcr0 & XFEATURE_MASK_XTILE) &&
1020 ((xcr0 & XFEATURE_MASK_XTILE) != XFEATURE_MASK_XTILE))
1021 return 1;
1022
Dexuan Cui2acf9232010-06-10 11:27:12 +08001023 vcpu->arch.xcr0 = xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +00001024
Dave Hansend91cab72015-09-02 16:31:26 -07001025 if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND)
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08001026 kvm_update_cpuid_runtime(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001027 return 0;
1028}
1029
Sean Christopherson92f98952021-02-04 16:57:46 -08001030int kvm_emulate_xsetbv(struct kvm_vcpu *vcpu)
Dexuan Cui2acf9232010-06-10 11:27:12 +08001031{
Sean Christopherson92f98952021-02-04 16:57:46 -08001032 if (static_call(kvm_x86_get_cpl)(vcpu) != 0 ||
1033 __kvm_set_xcr(vcpu, kvm_rcx_read(vcpu), kvm_read_edx_eax(vcpu))) {
1034 kvm_inject_gp(vcpu, 0);
1035 return 1;
1036 }
Paolo Bonzinibbefd4f2020-12-14 07:49:54 -05001037
Sean Christopherson92f98952021-02-04 16:57:46 -08001038 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001039}
Sean Christopherson92f98952021-02-04 16:57:46 -08001040EXPORT_SYMBOL_GPL(kvm_emulate_xsetbv);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001041
Sean Christophersonee69c922020-10-06 18:44:16 -07001042bool kvm_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Wanpeng Li3ca94192019-09-18 17:50:10 +08001043{
Sean Christophersonb11306b2019-12-10 14:44:13 -08001044 if (cr4 & cr4_reserved_bits)
Sean Christophersonee69c922020-10-06 18:44:16 -07001045 return false;
Wanpeng Li3ca94192019-09-18 17:50:10 +08001046
Krish Sadhukhanb899c132020-07-08 00:39:55 +00001047 if (cr4 & vcpu->arch.cr4_guest_rsvd_bits)
Sean Christophersonee69c922020-10-06 18:44:16 -07001048 return false;
Wanpeng Li3ca94192019-09-18 17:50:10 +08001049
Jason Baronb36464772021-01-14 22:27:56 -05001050 return static_call(kvm_x86_is_valid_cr4)(vcpu, cr4);
Wanpeng Li3ca94192019-09-18 17:50:10 +08001051}
Sean Christophersonee69c922020-10-06 18:44:16 -07001052EXPORT_SYMBOL_GPL(kvm_is_valid_cr4);
Wanpeng Li3ca94192019-09-18 17:50:10 +08001053
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001054void kvm_post_set_cr4(struct kvm_vcpu *vcpu, unsigned long old_cr4, unsigned long cr4)
1055{
Lai Jiangshan509bfe32021-10-19 19:01:52 +08001056 /*
1057 * If any role bit is changed, the MMU needs to be reset.
1058 *
1059 * If CR4.PCIDE is changed 1 -> 0, the guest TLB must be flushed.
1060 * If CR4.PCIDE is changed 0 -> 1, there is no need to flush the TLB
1061 * according to the SDM; however, stale prev_roots could be reused
1062 * incorrectly in the future after a MOV to CR3 with NOFLUSH=1, so we
1063 * free them all. KVM_REQ_MMU_RELOAD is fit for the both cases; it
1064 * is slow, but changing CR4.PCIDE is a rare case.
1065 *
1066 * If CR4.PGE is changed, the guest TLB must be flushed.
1067 *
1068 * Note: resetting MMU is a superset of KVM_REQ_MMU_RELOAD and
1069 * KVM_REQ_MMU_RELOAD is a superset of KVM_REQ_TLB_FLUSH_GUEST, hence
1070 * the usage of "else if".
1071 */
Lai Jiangshan55261732021-09-19 10:42:45 +08001072 if ((cr4 ^ old_cr4) & KVM_MMU_CR4_ROLE_BITS)
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001073 kvm_mmu_reset_context(vcpu);
Lai Jiangshan509bfe32021-10-19 19:01:52 +08001074 else if ((cr4 ^ old_cr4) & X86_CR4_PCIDE)
1075 kvm_make_request(KVM_REQ_MMU_RELOAD, vcpu);
1076 else if ((cr4 ^ old_cr4) & X86_CR4_PGE)
Lai Jiangshan55261732021-09-19 10:42:45 +08001077 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001078}
1079EXPORT_SYMBOL_GPL(kvm_post_set_cr4);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001080
Avi Kivitya83b29c2010-06-10 17:02:15 +03001081int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +01001082{
Avi Kivityfc78f512009-12-07 12:16:48 +02001083 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +08001084
Sean Christophersonee69c922020-10-06 18:44:16 -07001085 if (!kvm_is_valid_cr4(vcpu, cr4))
Paolo Bonziniae3e61e2016-07-12 10:36:41 +02001086 return 1;
1087
Carsten Ottea03490e2007-10-29 16:09:35 +01001088 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +03001089 if (!(cr4 & X86_CR4_PAE))
1090 return 1;
Sean Christophersond74fcfc2020-07-02 19:17:14 -07001091 if ((cr4 ^ old_cr4) & X86_CR4_LA57)
1092 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +03001093 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
Lai Jiangshana37ebdc2021-11-08 20:43:57 +08001094 && ((cr4 ^ old_cr4) & X86_CR4_PDPTR_BITS)
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +08001095 && !load_pdptrs(vcpu, kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +03001096 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001097
Mao, Junjiead756a12012-07-02 01:18:48 +00001098 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
Radim Krčmářd6321d42017-08-05 00:12:49 +02001099 if (!guest_cpuid_has(vcpu, X86_FEATURE_PCID))
Mao, Junjiead756a12012-07-02 01:18:48 +00001100 return 1;
1101
1102 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
1103 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
1104 return 1;
1105 }
1106
Jason Baronb36464772021-01-14 22:27:56 -05001107 static_call(kvm_x86_set_cr4)(vcpu, cr4);
Gleb Natapov0f122442010-04-28 19:15:31 +03001108
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001109 kvm_post_set_cr4(vcpu, old_cr4, cr4);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001110
Gleb Natapov0f122442010-04-28 19:15:31 +03001111 return 0;
1112}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001113EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +01001114
Sean Christopherson21823fb2021-06-09 16:42:24 -07001115static void kvm_invalidate_pcid(struct kvm_vcpu *vcpu, unsigned long pcid)
1116{
1117 struct kvm_mmu *mmu = vcpu->arch.mmu;
1118 unsigned long roots_to_free = 0;
1119 int i;
1120
1121 /*
Lai Jiangshane45e9e32021-10-19 19:01:51 +08001122 * MOV CR3 and INVPCID are usually not intercepted when using TDP, but
1123 * this is reachable when running EPT=1 and unrestricted_guest=0, and
1124 * also via the emulator. KVM's TDP page tables are not in the scope of
1125 * the invalidation, but the guest's TLB entries need to be flushed as
1126 * the CPU may have cached entries in its TLB for the target PCID.
1127 */
1128 if (unlikely(tdp_enabled)) {
1129 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
1130 return;
1131 }
1132
1133 /*
Sean Christopherson21823fb2021-06-09 16:42:24 -07001134 * If neither the current CR3 nor any of the prev_roots use the given
1135 * PCID, then nothing needs to be done here because a resync will
1136 * happen anyway before switching to any other CR3.
1137 */
1138 if (kvm_get_active_pcid(vcpu) == pcid) {
Sean Christophersone62f1aa2021-06-09 16:42:32 -07001139 kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
Sean Christopherson21823fb2021-06-09 16:42:24 -07001140 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
1141 }
1142
Lai Jiangshan509bfe32021-10-19 19:01:52 +08001143 /*
1144 * If PCID is disabled, there is no need to free prev_roots even if the
1145 * PCIDs for them are also 0, because MOV to CR3 always flushes the TLB
1146 * with PCIDE=0.
1147 */
1148 if (!kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
1149 return;
1150
Sean Christopherson21823fb2021-06-09 16:42:24 -07001151 for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++)
1152 if (kvm_get_pcid(vcpu, mmu->prev_roots[i].pgd) == pcid)
1153 roots_to_free |= KVM_MMU_ROOT_PREVIOUS(i);
1154
1155 kvm_mmu_free_roots(vcpu, mmu, roots_to_free);
1156}
1157
Avi Kivity23902182010-06-10 17:02:16 +03001158int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +01001159{
Junaid Shahidade61e22018-06-27 14:59:15 -07001160 bool skip_tlb_flush = false;
Sean Christopherson21823fb2021-06-09 16:42:24 -07001161 unsigned long pcid = 0;
Paolo Bonziniac146232014-11-10 13:53:25 +01001162#ifdef CONFIG_X86_64
Junaid Shahidc19986f2018-05-04 11:37:13 -07001163 bool pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
1164
Junaid Shahidade61e22018-06-27 14:59:15 -07001165 if (pcid_enabled) {
Junaid Shahid208320b2018-06-27 14:59:21 -07001166 skip_tlb_flush = cr3 & X86_CR3_PCID_NOFLUSH;
1167 cr3 &= ~X86_CR3_PCID_NOFLUSH;
Sean Christopherson21823fb2021-06-09 16:42:24 -07001168 pcid = cr3 & X86_CR3_PCID_MASK;
Junaid Shahidade61e22018-06-27 14:59:15 -07001169 }
Paolo Bonziniac146232014-11-10 13:53:25 +01001170#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +02001171
Sean Christophersonc7313152021-06-07 12:01:58 +03001172 /* PDPTRs are always reloaded for PAE paging. */
Sean Christopherson21823fb2021-06-09 16:42:24 -07001173 if (cr3 == kvm_read_cr3(vcpu) && !is_pae_paging(vcpu))
1174 goto handle_tlb_flush;
Avi Kivityd835dfe2007-11-21 02:57:59 +02001175
Sean Christopherson886bbcc2021-04-21 19:21:21 -07001176 /*
1177 * Do not condition the GPA check on long mode, this helper is used to
1178 * stuff CR3, e.g. for RSM emulation, and there is no guarantee that
1179 * the current vCPU mode is accurate.
1180 */
1181 if (kvm_vcpu_is_illegal_gpa(vcpu, cr3))
Yu Zhangd1cd3ce2017-08-24 20:27:53 +08001182 return 1;
Sean Christopherson886bbcc2021-04-21 19:21:21 -07001183
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +08001184 if (is_pae_paging(vcpu) && !load_pdptrs(vcpu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +03001185 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001186
Sean Christopherson21823fb2021-06-09 16:42:24 -07001187 if (cr3 != kvm_read_cr3(vcpu))
Sean Christophersonb5129102021-06-09 16:42:27 -07001188 kvm_mmu_new_pgd(vcpu, cr3);
Sean Christopherson21823fb2021-06-09 16:42:24 -07001189
Gleb Natapov0f122442010-04-28 19:15:31 +03001190 vcpu->arch.cr3 = cr3;
Lai Jiangshan3883bc9d2021-11-08 20:44:02 +08001191 kvm_register_mark_dirty(vcpu, VCPU_EXREG_CR3);
Michael Roth405329f2021-12-16 11:13:54 -06001192 /* Do not call post_set_cr3, we do not get here for confidential guests. */
Junaid Shahid7c390d32018-06-27 14:59:06 -07001193
Sean Christopherson21823fb2021-06-09 16:42:24 -07001194handle_tlb_flush:
1195 /*
1196 * A load of CR3 that flushes the TLB flushes only the current PCID,
1197 * even if PCID is disabled, in which case PCID=0 is flushed. It's a
1198 * moot point in the end because _disabling_ PCID will flush all PCIDs,
1199 * and it's impossible to use a non-zero PCID when PCID is disabled,
1200 * i.e. only PCID=0 can be relevant.
1201 */
1202 if (!skip_tlb_flush)
1203 kvm_invalidate_pcid(vcpu, pcid);
1204
Gleb Natapov0f122442010-04-28 19:15:31 +03001205 return 0;
1206}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001207EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +01001208
Andre Przywaraeea1cff2010-12-21 11:12:00 +01001209int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +01001210{
Gleb Natapov0f122442010-04-28 19:15:31 +03001211 if (cr8 & CR8_RESERVED_BITS)
1212 return 1;
Paolo Bonzini35754c92015-07-29 12:05:37 +02001213 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001214 kvm_lapic_set_tpr(vcpu, cr8);
1215 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001216 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +03001217 return 0;
1218}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001219EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001220
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001221unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +01001222{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001223 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001224 return kvm_lapic_get_cr8(vcpu);
1225 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001226 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +01001227}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001228EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001229
Nadav Amitae561ed2015-04-02 03:10:37 +03001230static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
1231{
1232 int i;
1233
1234 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
1235 for (i = 0; i < KVM_NR_DB_REGS; i++)
1236 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Nadav Amitae561ed2015-04-02 03:10:37 +03001237 }
1238}
1239
Paolo Bonzini7c866632020-05-16 08:42:28 -04001240void kvm_update_dr7(struct kvm_vcpu *vcpu)
Jan Kiszkac8639012012-09-21 05:42:55 +02001241{
1242 unsigned long dr7;
1243
1244 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1245 dr7 = vcpu->arch.guest_debug_dr7;
1246 else
1247 dr7 = vcpu->arch.dr7;
Jason Baronb36464772021-01-14 22:27:56 -05001248 static_call(kvm_x86_set_dr7)(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +01001249 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
1250 if (dr7 & DR7_BP_EN_MASK)
1251 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +02001252}
Paolo Bonzini7c866632020-05-16 08:42:28 -04001253EXPORT_SYMBOL_GPL(kvm_update_dr7);
Jan Kiszkac8639012012-09-21 05:42:55 +02001254
Nadav Amit6f43ed02014-07-15 17:37:46 +03001255static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
1256{
1257 u64 fixed = DR6_FIXED_1;
1258
Radim Krčmářd6321d42017-08-05 00:12:49 +02001259 if (!guest_cpuid_has(vcpu, X86_FEATURE_RTM))
Nadav Amit6f43ed02014-07-15 17:37:46 +03001260 fixed |= DR6_RTM;
Chenyi Qiange8ea85f2021-02-02 17:04:32 +08001261
1262 if (!guest_cpuid_has(vcpu, X86_FEATURE_BUS_LOCK_DETECT))
1263 fixed |= DR6_BUS_LOCK;
Nadav Amit6f43ed02014-07-15 17:37:46 +03001264 return fixed;
1265}
1266
Paolo Bonzini996ff542020-12-14 07:49:54 -05001267int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +03001268{
Marios Pomonisea740052019-12-11 12:47:52 -08001269 size_t size = ARRAY_SIZE(vcpu->arch.db);
1270
Gleb Natapov020df072010-04-13 10:05:23 +03001271 switch (dr) {
1272 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001273 vcpu->arch.db[array_index_nospec(dr, size)] = val;
Gleb Natapov020df072010-04-13 10:05:23 +03001274 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
1275 vcpu->arch.eff_db[dr] = val;
1276 break;
1277 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001278 case 6:
Krish Sadhukhanf5f61452020-05-22 18:19:51 -04001279 if (!kvm_dr6_valid(val))
Paolo Bonzini996ff542020-12-14 07:49:54 -05001280 return 1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +03001281 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001282 break;
1283 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001284 default: /* 7 */
Krish Sadhukhanb91991b2020-01-15 19:54:32 -05001285 if (!kvm_dr7_valid(val))
Paolo Bonzini996ff542020-12-14 07:49:54 -05001286 return 1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +03001287 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02001288 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001289 break;
1290 }
1291
1292 return 0;
1293}
1294EXPORT_SYMBOL_GPL(kvm_set_dr);
1295
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05001296void kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +03001297{
Marios Pomonisea740052019-12-11 12:47:52 -08001298 size_t size = ARRAY_SIZE(vcpu->arch.db);
1299
Gleb Natapov020df072010-04-13 10:05:23 +03001300 switch (dr) {
1301 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001302 *val = vcpu->arch.db[array_index_nospec(dr, size)];
Gleb Natapov020df072010-04-13 10:05:23 +03001303 break;
1304 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001305 case 6:
Paolo Bonzini5679b802020-05-04 11:28:25 -04001306 *val = vcpu->arch.dr6;
Gleb Natapov020df072010-04-13 10:05:23 +03001307 break;
1308 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001309 default: /* 7 */
1310 *val = vcpu->arch.dr7;
1311 break;
1312 }
Gleb Natapov338dbc92010-04-28 19:15:32 +03001313}
Gleb Natapov020df072010-04-13 10:05:23 +03001314EXPORT_SYMBOL_GPL(kvm_get_dr);
1315
Sean Christophersonc483c452021-02-04 16:57:48 -08001316int kvm_emulate_rdpmc(struct kvm_vcpu *vcpu)
Avi Kivity022cd0e2011-11-10 14:57:23 +02001317{
Sean Christophersonde3cd112019-04-30 10:36:17 -07001318 u32 ecx = kvm_rcx_read(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001319 u64 data;
Avi Kivity022cd0e2011-11-10 14:57:23 +02001320
Sean Christophersonc483c452021-02-04 16:57:48 -08001321 if (kvm_pmu_rdpmc(vcpu, ecx, &data)) {
1322 kvm_inject_gp(vcpu, 0);
1323 return 1;
1324 }
1325
Sean Christophersonde3cd112019-04-30 10:36:17 -07001326 kvm_rax_write(vcpu, (u32)data);
1327 kvm_rdx_write(vcpu, data >> 32);
Sean Christophersonc483c452021-02-04 16:57:48 -08001328 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001329}
Sean Christophersonc483c452021-02-04 16:57:48 -08001330EXPORT_SYMBOL_GPL(kvm_emulate_rdpmc);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001331
Carsten Otte043405e2007-10-10 17:16:19 +02001332/*
1333 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
1334 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
1335 *
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001336 * The three MSR lists(msrs_to_save, emulated_msrs, msr_based_features)
1337 * extract the supported MSRs from the related const lists.
1338 * msrs_to_save is selected from the msrs_to_save_all to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -04001339 * capabilities of the host cpu. This capabilities test skips MSRs that are
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001340 * kvm-specific. Those are put in emulated_msrs_all; filtering of emulated_msrs
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001341 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +02001342 */
Glauber Costae3267cb2009-10-06 13:24:50 -04001343
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001344static const u32 msrs_to_save_all[] = {
Carsten Otte043405e2007-10-10 17:16:19 +02001345 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -04001346 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +02001347#ifdef CONFIG_X86_64
1348 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
1349#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +08001350 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001351 MSR_IA32_FEAT_CTL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001352 MSR_IA32_SPEC_CTRL,
Chao Pengbf8c55d2018-10-24 16:05:14 +08001353 MSR_IA32_RTIT_CTL, MSR_IA32_RTIT_STATUS, MSR_IA32_RTIT_CR3_MATCH,
1354 MSR_IA32_RTIT_OUTPUT_BASE, MSR_IA32_RTIT_OUTPUT_MASK,
1355 MSR_IA32_RTIT_ADDR0_A, MSR_IA32_RTIT_ADDR0_B,
1356 MSR_IA32_RTIT_ADDR1_A, MSR_IA32_RTIT_ADDR1_B,
1357 MSR_IA32_RTIT_ADDR2_A, MSR_IA32_RTIT_ADDR2_B,
1358 MSR_IA32_RTIT_ADDR3_A, MSR_IA32_RTIT_ADDR3_B,
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001359 MSR_IA32_UMWAIT_CONTROL,
1360
Jim Mattsone2ada662019-08-21 11:20:04 -07001361 MSR_ARCH_PERFMON_FIXED_CTR0, MSR_ARCH_PERFMON_FIXED_CTR1,
Wei Wang9fb12fe2021-12-17 07:49:34 -05001362 MSR_ARCH_PERFMON_FIXED_CTR0 + 2,
Jim Mattsone2ada662019-08-21 11:20:04 -07001363 MSR_CORE_PERF_FIXED_CTR_CTRL, MSR_CORE_PERF_GLOBAL_STATUS,
1364 MSR_CORE_PERF_GLOBAL_CTRL, MSR_CORE_PERF_GLOBAL_OVF_CTRL,
1365 MSR_ARCH_PERFMON_PERFCTR0, MSR_ARCH_PERFMON_PERFCTR1,
1366 MSR_ARCH_PERFMON_PERFCTR0 + 2, MSR_ARCH_PERFMON_PERFCTR0 + 3,
1367 MSR_ARCH_PERFMON_PERFCTR0 + 4, MSR_ARCH_PERFMON_PERFCTR0 + 5,
1368 MSR_ARCH_PERFMON_PERFCTR0 + 6, MSR_ARCH_PERFMON_PERFCTR0 + 7,
1369 MSR_ARCH_PERFMON_PERFCTR0 + 8, MSR_ARCH_PERFMON_PERFCTR0 + 9,
1370 MSR_ARCH_PERFMON_PERFCTR0 + 10, MSR_ARCH_PERFMON_PERFCTR0 + 11,
1371 MSR_ARCH_PERFMON_PERFCTR0 + 12, MSR_ARCH_PERFMON_PERFCTR0 + 13,
1372 MSR_ARCH_PERFMON_PERFCTR0 + 14, MSR_ARCH_PERFMON_PERFCTR0 + 15,
1373 MSR_ARCH_PERFMON_PERFCTR0 + 16, MSR_ARCH_PERFMON_PERFCTR0 + 17,
Jim Mattsone2ada662019-08-21 11:20:04 -07001374 MSR_ARCH_PERFMON_EVENTSEL0, MSR_ARCH_PERFMON_EVENTSEL1,
1375 MSR_ARCH_PERFMON_EVENTSEL0 + 2, MSR_ARCH_PERFMON_EVENTSEL0 + 3,
1376 MSR_ARCH_PERFMON_EVENTSEL0 + 4, MSR_ARCH_PERFMON_EVENTSEL0 + 5,
1377 MSR_ARCH_PERFMON_EVENTSEL0 + 6, MSR_ARCH_PERFMON_EVENTSEL0 + 7,
1378 MSR_ARCH_PERFMON_EVENTSEL0 + 8, MSR_ARCH_PERFMON_EVENTSEL0 + 9,
1379 MSR_ARCH_PERFMON_EVENTSEL0 + 10, MSR_ARCH_PERFMON_EVENTSEL0 + 11,
1380 MSR_ARCH_PERFMON_EVENTSEL0 + 12, MSR_ARCH_PERFMON_EVENTSEL0 + 13,
1381 MSR_ARCH_PERFMON_EVENTSEL0 + 14, MSR_ARCH_PERFMON_EVENTSEL0 + 15,
1382 MSR_ARCH_PERFMON_EVENTSEL0 + 16, MSR_ARCH_PERFMON_EVENTSEL0 + 17,
Fares Mehannae1fc1552021-09-15 13:39:50 +00001383
1384 MSR_K7_EVNTSEL0, MSR_K7_EVNTSEL1, MSR_K7_EVNTSEL2, MSR_K7_EVNTSEL3,
1385 MSR_K7_PERFCTR0, MSR_K7_PERFCTR1, MSR_K7_PERFCTR2, MSR_K7_PERFCTR3,
1386 MSR_F15H_PERF_CTL0, MSR_F15H_PERF_CTL1, MSR_F15H_PERF_CTL2,
1387 MSR_F15H_PERF_CTL3, MSR_F15H_PERF_CTL4, MSR_F15H_PERF_CTL5,
1388 MSR_F15H_PERF_CTR0, MSR_F15H_PERF_CTR1, MSR_F15H_PERF_CTR2,
1389 MSR_F15H_PERF_CTR3, MSR_F15H_PERF_CTR4, MSR_F15H_PERF_CTR5,
Jing Liu548e8362022-01-05 04:35:24 -08001390 MSR_IA32_XFD, MSR_IA32_XFD_ERR,
Carsten Otte043405e2007-10-10 17:16:19 +02001391};
1392
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001393static u32 msrs_to_save[ARRAY_SIZE(msrs_to_save_all)];
Carsten Otte043405e2007-10-10 17:16:19 +02001394static unsigned num_msrs_to_save;
1395
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001396static const u32 emulated_msrs_all[] = {
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001397 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
1398 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
1399 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
1400 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
Ladi Prosek72c139b2017-07-26 13:32:59 +02001401 HV_X64_MSR_TSC_FREQUENCY, HV_X64_MSR_APIC_FREQUENCY,
Andrey Smetanine7d95132015-07-03 15:01:37 +03001402 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
1403 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
Andrey Smetanine516ceb2015-09-16 12:29:48 +03001404 HV_X64_MSR_RESET,
Andrey Smetanin11c4b1c2015-09-16 12:29:49 +03001405 HV_X64_MSR_VP_INDEX,
Andrey Smetanin9eec50b2015-09-16 12:29:50 +03001406 HV_X64_MSR_VP_RUNTIME,
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001407 HV_X64_MSR_SCONTROL,
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03001408 HV_X64_MSR_STIMER0_CONFIG,
Ladi Prosekd4abc572018-03-20 15:02:07 +01001409 HV_X64_MSR_VP_ASSIST_PAGE,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001410 HV_X64_MSR_REENLIGHTENMENT_CONTROL, HV_X64_MSR_TSC_EMULATION_CONTROL,
1411 HV_X64_MSR_TSC_EMULATION_STATUS,
Jon Doronf97f5a52020-05-29 16:45:40 +03001412 HV_X64_MSR_SYNDBG_OPTIONS,
1413 HV_X64_MSR_SYNDBG_CONTROL, HV_X64_MSR_SYNDBG_STATUS,
1414 HV_X64_MSR_SYNDBG_SEND_BUFFER, HV_X64_MSR_SYNDBG_RECV_BUFFER,
1415 HV_X64_MSR_SYNDBG_PENDING_BUFFER,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001416
1417 MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02001418 MSR_KVM_PV_EOI_EN, MSR_KVM_ASYNC_PF_INT, MSR_KVM_ASYNC_PF_ACK,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001419
Will Auldba904632012-11-29 12:42:50 -08001420 MSR_IA32_TSC_ADJUST,
Dave Hansen09141ec2020-03-05 09:47:06 -08001421 MSR_IA32_TSC_DEADLINE,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001422 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001423 MSR_IA32_PERF_CAPABILITIES,
Carsten Otte043405e2007-10-10 17:16:19 +02001424 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +03001425 MSR_IA32_MCG_STATUS,
1426 MSR_IA32_MCG_CTL,
Ashok Rajc45dcc72016-06-22 14:59:56 +08001427 MSR_IA32_MCG_EXT_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +02001428 MSR_IA32_SMBASE,
Liran Alon52797bf2017-11-15 13:43:14 +02001429 MSR_SMI_COUNT,
Kyle Hueydb2336a2017-03-20 01:16:28 -07001430 MSR_PLATFORM_INFO,
1431 MSR_MISC_FEATURES_ENABLES,
Tom Lendackybc226f02018-05-10 22:06:39 +02001432 MSR_AMD64_VIRT_SPEC_CTRL,
Maxim Levitsky5228eb92021-09-14 18:48:24 +03001433 MSR_AMD64_TSC_RATIO,
Liran Alon6c6a2ab2019-04-15 18:45:26 +03001434 MSR_IA32_POWER_CTL,
Paolo Bonzini99634e32020-01-20 14:22:55 +01001435 MSR_IA32_UCODE_REV,
Borislav Petkov191c8132019-04-18 18:32:50 +02001436
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001437 /*
1438 * The following list leaves out MSRs whose values are determined
1439 * by arch/x86/kvm/vmx/nested.c based on CPUID or other MSRs.
1440 * We always support the "true" VMX control MSRs, even if the host
1441 * processor does not, so I am putting these registers here rather
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001442 * than in msrs_to_save_all.
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001443 */
1444 MSR_IA32_VMX_BASIC,
1445 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1446 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1447 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1448 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1449 MSR_IA32_VMX_MISC,
1450 MSR_IA32_VMX_CR0_FIXED0,
1451 MSR_IA32_VMX_CR4_FIXED0,
1452 MSR_IA32_VMX_VMCS_ENUM,
1453 MSR_IA32_VMX_PROCBASED_CTLS2,
1454 MSR_IA32_VMX_EPT_VPID_CAP,
1455 MSR_IA32_VMX_VMFUNC,
1456
Borislav Petkov191c8132019-04-18 18:32:50 +02001457 MSR_K7_HWCR,
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03001458 MSR_KVM_POLL_CONTROL,
Carsten Otte043405e2007-10-10 17:16:19 +02001459};
1460
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001461static u32 emulated_msrs[ARRAY_SIZE(emulated_msrs_all)];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001462static unsigned num_emulated_msrs;
1463
Tom Lendacky801e4592018-02-21 13:39:51 -06001464/*
1465 * List of msr numbers which are used to expose MSR-based features that
1466 * can be used by a hypervisor to validate requested CPU features.
1467 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001468static const u32 msr_based_features_all[] = {
Paolo Bonzini13893092018-02-26 13:40:09 +01001469 MSR_IA32_VMX_BASIC,
1470 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1471 MSR_IA32_VMX_PINBASED_CTLS,
1472 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1473 MSR_IA32_VMX_PROCBASED_CTLS,
1474 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1475 MSR_IA32_VMX_EXIT_CTLS,
1476 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1477 MSR_IA32_VMX_ENTRY_CTLS,
1478 MSR_IA32_VMX_MISC,
1479 MSR_IA32_VMX_CR0_FIXED0,
1480 MSR_IA32_VMX_CR0_FIXED1,
1481 MSR_IA32_VMX_CR4_FIXED0,
1482 MSR_IA32_VMX_CR4_FIXED1,
1483 MSR_IA32_VMX_VMCS_ENUM,
1484 MSR_IA32_VMX_PROCBASED_CTLS2,
1485 MSR_IA32_VMX_EPT_VPID_CAP,
1486 MSR_IA32_VMX_VMFUNC,
1487
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01001488 MSR_F10H_DECFG,
Wanpeng Li518e7b92018-02-28 14:03:31 +08001489 MSR_IA32_UCODE_REV,
Paolo Bonzinicd283252018-06-25 14:04:37 +02001490 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001491 MSR_IA32_PERF_CAPABILITIES,
Tom Lendacky801e4592018-02-21 13:39:51 -06001492};
1493
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001494static u32 msr_based_features[ARRAY_SIZE(msr_based_features_all)];
Tom Lendacky801e4592018-02-21 13:39:51 -06001495static unsigned int num_msr_based_features;
1496
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001497static u64 kvm_get_arch_capabilities(void)
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001498{
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001499 u64 data = 0;
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001500
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001501 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES))
1502 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, data);
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001503
1504 /*
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001505 * If nx_huge_pages is enabled, KVM's shadow paging will ensure that
1506 * the nested hypervisor runs with NX huge pages. If it is not,
Ingo Molnard9f6e122021-03-18 15:28:01 +01001507 * L1 is anyway vulnerable to ITLB_MULTIHIT exploits from other
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001508 * L1 guests, so it need not worry about its own (L2) guests.
1509 */
1510 data |= ARCH_CAP_PSCHANGE_MC_NO;
1511
1512 /*
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001513 * If we're doing cache flushes (either "always" or "cond")
1514 * we will do one whenever the guest does a vmlaunch/vmresume.
1515 * If an outer hypervisor is doing the cache flush for us
1516 * (VMENTER_L1D_FLUSH_NESTED_VM), we can safely pass that
1517 * capability to the guest too, and if EPT is disabled we're not
1518 * vulnerable. Overall, only VMENTER_L1D_FLUSH_NEVER will
1519 * require a nested hypervisor to do a flush of its own.
1520 */
1521 if (l1tf_vmx_mitigation != VMENTER_L1D_FLUSH_NEVER)
1522 data |= ARCH_CAP_SKIP_VMENTRY_L1DFLUSH;
1523
Paolo Bonzini0c549142019-08-19 17:24:07 +02001524 if (!boot_cpu_has_bug(X86_BUG_CPU_MELTDOWN))
1525 data |= ARCH_CAP_RDCL_NO;
1526 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
1527 data |= ARCH_CAP_SSB_NO;
1528 if (!boot_cpu_has_bug(X86_BUG_MDS))
1529 data |= ARCH_CAP_MDS_NO;
1530
Paolo Bonzini71316362021-01-28 11:45:00 -05001531 if (!boot_cpu_has(X86_FEATURE_RTM)) {
1532 /*
1533 * If RTM=0 because the kernel has disabled TSX, the host might
1534 * have TAA_NO or TSX_CTRL. Clear TAA_NO (the guest sees RTM=0
1535 * and therefore knows that there cannot be TAA) but keep
1536 * TSX_CTRL: some buggy userspaces leave it set on tsx=on hosts,
1537 * and we want to allow migrating those guests to tsx=off hosts.
1538 */
1539 data &= ~ARCH_CAP_TAA_NO;
1540 } else if (!boot_cpu_has_bug(X86_BUG_TAA)) {
Paolo Bonzinicbbaa272019-11-18 18:58:26 +01001541 data |= ARCH_CAP_TAA_NO;
Paolo Bonzini71316362021-01-28 11:45:00 -05001542 } else {
1543 /*
1544 * Nothing to do here; we emulate TSX_CTRL if present on the
1545 * host so the guest can choose between disabling TSX or
1546 * using VERW to clear CPU buffers.
1547 */
1548 }
Pawan Guptae1d38b62019-10-23 12:23:33 +02001549
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001550 return data;
1551}
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001552
Wanpeng Li66421c12018-02-28 14:03:30 +08001553static int kvm_get_msr_feature(struct kvm_msr_entry *msr)
1554{
1555 switch (msr->index) {
Paolo Bonzinicd283252018-06-25 14:04:37 +02001556 case MSR_IA32_ARCH_CAPABILITIES:
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001557 msr->data = kvm_get_arch_capabilities();
1558 break;
1559 case MSR_IA32_UCODE_REV:
Paolo Bonzinicd283252018-06-25 14:04:37 +02001560 rdmsrl_safe(msr->index, &msr->data);
Wanpeng Li518e7b92018-02-28 14:03:31 +08001561 break;
Wanpeng Li66421c12018-02-28 14:03:30 +08001562 default:
Jason Baronb36464772021-01-14 22:27:56 -05001563 return static_call(kvm_x86_get_msr_feature)(msr);
Wanpeng Li66421c12018-02-28 14:03:30 +08001564 }
1565 return 0;
1566}
1567
Tom Lendacky801e4592018-02-21 13:39:51 -06001568static int do_get_msr_feature(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1569{
1570 struct kvm_msr_entry msr;
Wanpeng Li66421c12018-02-28 14:03:30 +08001571 int r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001572
1573 msr.index = index;
Wanpeng Li66421c12018-02-28 14:03:30 +08001574 r = kvm_get_msr_feature(&msr);
Peter Xu12bc2132020-06-22 18:04:42 -04001575
1576 if (r == KVM_MSR_RET_INVALID) {
1577 /* Unconditionally clear the output for simplicity */
1578 *data = 0;
Haiwei Lid6328262021-03-13 13:10:32 +08001579 if (kvm_msr_ignored_check(index, 0, false))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001580 r = 0;
Peter Xu12bc2132020-06-22 18:04:42 -04001581 }
1582
Wanpeng Li66421c12018-02-28 14:03:30 +08001583 if (r)
1584 return r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001585
1586 *data = msr.data;
1587
1588 return 0;
1589}
1590
Sean Christopherson11988492019-04-02 08:19:15 -07001591static bool __kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
1592{
1593 if (efer & EFER_FFXSR && !guest_cpuid_has(vcpu, X86_FEATURE_FXSR_OPT))
1594 return false;
1595
1596 if (efer & EFER_SVME && !guest_cpuid_has(vcpu, X86_FEATURE_SVM))
1597 return false;
1598
Sean Christopherson0a629562019-04-02 08:19:16 -07001599 if (efer & (EFER_LME | EFER_LMA) &&
1600 !guest_cpuid_has(vcpu, X86_FEATURE_LM))
1601 return false;
1602
1603 if (efer & EFER_NX && !guest_cpuid_has(vcpu, X86_FEATURE_NX))
1604 return false;
1605
Sean Christopherson11988492019-04-02 08:19:15 -07001606 return true;
1607
1608}
Jan Kiszka384bb782013-04-20 10:52:36 +02001609bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +01001610{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001611 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +02001612 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +01001613
Sean Christopherson11988492019-04-02 08:19:15 -07001614 return __kvm_valid_efer(vcpu, efer);
Jan Kiszka384bb782013-04-20 10:52:36 +02001615}
1616EXPORT_SYMBOL_GPL(kvm_valid_efer);
1617
Sean Christopherson11988492019-04-02 08:19:15 -07001618static int set_efer(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Jan Kiszka384bb782013-04-20 10:52:36 +02001619{
1620 u64 old_efer = vcpu->arch.efer;
Sean Christopherson11988492019-04-02 08:19:15 -07001621 u64 efer = msr_info->data;
Maxim Levitsky72f211e2020-10-01 14:29:53 +03001622 int r;
Jan Kiszka384bb782013-04-20 10:52:36 +02001623
Sean Christopherson11988492019-04-02 08:19:15 -07001624 if (efer & efer_reserved_bits)
Paolo Bonzini66f61c92019-05-24 21:52:46 +02001625 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +02001626
Sean Christopherson11988492019-04-02 08:19:15 -07001627 if (!msr_info->host_initiated) {
1628 if (!__kvm_valid_efer(vcpu, efer))
1629 return 1;
1630
1631 if (is_paging(vcpu) &&
1632 (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1633 return 1;
1634 }
Jan Kiszka384bb782013-04-20 10:52:36 +02001635
Carsten Otte15c4a642007-10-30 18:44:17 +01001636 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001637 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001638
Jason Baronb36464772021-01-14 22:27:56 -05001639 r = static_call(kvm_x86_set_efer)(vcpu, efer);
Maxim Levitsky72f211e2020-10-01 14:29:53 +03001640 if (r) {
1641 WARN_ON(r > 0);
1642 return r;
1643 }
Sheng Yanga3d204e2010-05-12 16:40:40 +08001644
Sheng Yangaad82702010-05-12 16:40:42 +08001645 /* Update reserved bits */
1646 if ((efer ^ old_efer) & EFER_NX)
1647 kvm_mmu_reset_context(vcpu);
1648
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001649 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001650}
1651
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001652void kvm_enable_efer_bits(u64 mask)
1653{
1654 efer_reserved_bits &= ~mask;
1655}
1656EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1657
Alexander Graf51de8152020-09-25 16:34:17 +02001658bool kvm_msr_allowed(struct kvm_vcpu *vcpu, u32 index, u32 type)
1659{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001660 struct kvm_x86_msr_filter *msr_filter;
1661 struct msr_bitmap_range *ranges;
Alexander Graf1a1552542020-09-25 16:34:21 +02001662 struct kvm *kvm = vcpu->kvm;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001663 bool allowed;
Alexander Graf1a1552542020-09-25 16:34:21 +02001664 int idx;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001665 u32 i;
Alexander Graf1a1552542020-09-25 16:34:21 +02001666
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001667 /* x2APIC MSRs do not support filtering. */
1668 if (index >= 0x800 && index <= 0x8ff)
Alexander Graf1a1552542020-09-25 16:34:21 +02001669 return true;
1670
Alexander Graf1a1552542020-09-25 16:34:21 +02001671 idx = srcu_read_lock(&kvm->srcu);
1672
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001673 msr_filter = srcu_dereference(kvm->arch.msr_filter, &kvm->srcu);
1674 if (!msr_filter) {
1675 allowed = true;
1676 goto out;
1677 }
1678
1679 allowed = msr_filter->default_allow;
1680 ranges = msr_filter->ranges;
1681
1682 for (i = 0; i < msr_filter->count; i++) {
Alexander Graf1a1552542020-09-25 16:34:21 +02001683 u32 start = ranges[i].base;
1684 u32 end = start + ranges[i].nmsrs;
1685 u32 flags = ranges[i].flags;
1686 unsigned long *bitmap = ranges[i].bitmap;
1687
1688 if ((index >= start) && (index < end) && (flags & type)) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001689 allowed = !!test_bit(index - start, bitmap);
Alexander Graf1a1552542020-09-25 16:34:21 +02001690 break;
1691 }
1692 }
1693
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001694out:
Alexander Graf1a1552542020-09-25 16:34:21 +02001695 srcu_read_unlock(&kvm->srcu, idx);
1696
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001697 return allowed;
Alexander Graf51de8152020-09-25 16:34:17 +02001698}
1699EXPORT_SYMBOL_GPL(kvm_msr_allowed);
1700
Carsten Otte15c4a642007-10-30 18:44:17 +01001701/*
Sean Christophersonf20935d2019-09-05 14:22:54 -07001702 * Write @data into the MSR specified by @index. Select MSR specific fault
1703 * checks are bypassed if @host_initiated is %true.
Carsten Otte15c4a642007-10-30 18:44:17 +01001704 * Returns 0 on success, non-0 otherwise.
1705 * Assumes vcpu_load() was already called.
1706 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001707static int __kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data,
1708 bool host_initiated)
Carsten Otte15c4a642007-10-30 18:44:17 +01001709{
Sean Christophersonf20935d2019-09-05 14:22:54 -07001710 struct msr_data msr;
1711
Alexander Graf1a1552542020-09-25 16:34:21 +02001712 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_WRITE))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001713 return KVM_MSR_RET_FILTERED;
Alexander Graf1a1552542020-09-25 16:34:21 +02001714
Sean Christophersonf20935d2019-09-05 14:22:54 -07001715 switch (index) {
Nadav Amit854e8bb2014-09-16 03:24:05 +03001716 case MSR_FS_BASE:
1717 case MSR_GS_BASE:
1718 case MSR_KERNEL_GS_BASE:
1719 case MSR_CSTAR:
1720 case MSR_LSTAR:
Sean Christophersonf20935d2019-09-05 14:22:54 -07001721 if (is_noncanonical_address(data, vcpu))
Nadav Amit854e8bb2014-09-16 03:24:05 +03001722 return 1;
1723 break;
1724 case MSR_IA32_SYSENTER_EIP:
1725 case MSR_IA32_SYSENTER_ESP:
1726 /*
1727 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1728 * non-canonical address is written on Intel but not on
1729 * AMD (which ignores the top 32-bits, because it does
1730 * not implement 64-bit SYSENTER).
1731 *
1732 * 64-bit code should hence be able to write a non-canonical
1733 * value on AMD. Making the address canonical ensures that
1734 * vmentry does not fail on Intel after writing a non-canonical
1735 * value, and that something deterministic happens if the guest
1736 * invokes 64-bit SYSENTER.
1737 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001738 data = get_canonical(data, vcpu_virt_addr_bits(vcpu));
Sean Christopherson61a05d42021-05-04 10:17:33 -07001739 break;
1740 case MSR_TSC_AUX:
1741 if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX))
1742 return 1;
1743
1744 if (!host_initiated &&
1745 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) &&
1746 !guest_cpuid_has(vcpu, X86_FEATURE_RDPID))
1747 return 1;
1748
1749 /*
1750 * Per Intel's SDM, bits 63:32 are reserved, but AMD's APM has
1751 * incomplete and conflicting architectural behavior. Current
1752 * AMD CPUs completely ignore bits 63:32, i.e. they aren't
1753 * reserved and always read as zeros. Enforce Intel's reserved
1754 * bits check if and only if the guest CPU is Intel, and clear
1755 * the bits in all other cases. This ensures cross-vendor
1756 * migration will provide consistent behavior for the guest.
1757 */
1758 if (guest_cpuid_is_intel(vcpu) && (data >> 32) != 0)
1759 return 1;
1760
1761 data = (u32)data;
1762 break;
Nadav Amit854e8bb2014-09-16 03:24:05 +03001763 }
Sean Christophersonf20935d2019-09-05 14:22:54 -07001764
1765 msr.data = data;
1766 msr.index = index;
1767 msr.host_initiated = host_initiated;
1768
Jason Baronb36464772021-01-14 22:27:56 -05001769 return static_call(kvm_x86_set_msr)(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001770}
1771
Peter Xu6abe9c12020-06-22 18:04:41 -04001772static int kvm_set_msr_ignored_check(struct kvm_vcpu *vcpu,
1773 u32 index, u64 data, bool host_initiated)
1774{
1775 int ret = __kvm_set_msr(vcpu, index, data, host_initiated);
1776
1777 if (ret == KVM_MSR_RET_INVALID)
Haiwei Lid6328262021-03-13 13:10:32 +08001778 if (kvm_msr_ignored_check(index, data, true))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001779 ret = 0;
Peter Xu6abe9c12020-06-22 18:04:41 -04001780
1781 return ret;
1782}
1783
Sean Christophersonf20935d2019-09-05 14:22:54 -07001784/*
1785 * Read the MSR specified by @index into @data. Select MSR specific fault
1786 * checks are bypassed if @host_initiated is %true.
1787 * Returns 0 on success, non-0 otherwise.
1788 * Assumes vcpu_load() was already called.
1789 */
Paolo Bonziniedef5c32019-11-18 12:23:00 -05001790int __kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data,
1791 bool host_initiated)
Sean Christophersonf20935d2019-09-05 14:22:54 -07001792{
1793 struct msr_data msr;
1794 int ret;
1795
Alexander Graf1a1552542020-09-25 16:34:21 +02001796 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_READ))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001797 return KVM_MSR_RET_FILTERED;
Alexander Graf1a1552542020-09-25 16:34:21 +02001798
Sean Christopherson61a05d42021-05-04 10:17:33 -07001799 switch (index) {
1800 case MSR_TSC_AUX:
1801 if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX))
1802 return 1;
1803
1804 if (!host_initiated &&
1805 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) &&
1806 !guest_cpuid_has(vcpu, X86_FEATURE_RDPID))
1807 return 1;
1808 break;
1809 }
1810
Sean Christophersonf20935d2019-09-05 14:22:54 -07001811 msr.index = index;
1812 msr.host_initiated = host_initiated;
1813
Jason Baronb36464772021-01-14 22:27:56 -05001814 ret = static_call(kvm_x86_get_msr)(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001815 if (!ret)
1816 *data = msr.data;
1817 return ret;
1818}
1819
Peter Xu6abe9c12020-06-22 18:04:41 -04001820static int kvm_get_msr_ignored_check(struct kvm_vcpu *vcpu,
1821 u32 index, u64 *data, bool host_initiated)
1822{
1823 int ret = __kvm_get_msr(vcpu, index, data, host_initiated);
1824
1825 if (ret == KVM_MSR_RET_INVALID) {
1826 /* Unconditionally clear *data for simplicity */
1827 *data = 0;
Haiwei Lid6328262021-03-13 13:10:32 +08001828 if (kvm_msr_ignored_check(index, 0, false))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001829 ret = 0;
Peter Xu6abe9c12020-06-22 18:04:41 -04001830 }
1831
1832 return ret;
1833}
1834
Sean Christophersonf20935d2019-09-05 14:22:54 -07001835int kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data)
1836{
Peter Xu6abe9c12020-06-22 18:04:41 -04001837 return kvm_get_msr_ignored_check(vcpu, index, data, false);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001838}
1839EXPORT_SYMBOL_GPL(kvm_get_msr);
1840
1841int kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data)
1842{
Peter Xu6abe9c12020-06-22 18:04:41 -04001843 return kvm_set_msr_ignored_check(vcpu, index, data, false);
Carsten Otte15c4a642007-10-30 18:44:17 +01001844}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001845EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001846
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001847static void complete_userspace_rdmsr(struct kvm_vcpu *vcpu)
Alexander Graf1ae09952020-09-25 16:34:16 +02001848{
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001849 if (!vcpu->run->msr.error) {
Alexander Graf1ae09952020-09-25 16:34:16 +02001850 kvm_rax_write(vcpu, (u32)vcpu->run->msr.data);
1851 kvm_rdx_write(vcpu, vcpu->run->msr.data >> 32);
1852 }
Alexander Graf1ae09952020-09-25 16:34:16 +02001853}
1854
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001855static int complete_emulated_msr_access(struct kvm_vcpu *vcpu)
1856{
1857 return complete_emulated_insn_gp(vcpu, vcpu->run->msr.error);
1858}
1859
1860static int complete_emulated_rdmsr(struct kvm_vcpu *vcpu)
1861{
1862 complete_userspace_rdmsr(vcpu);
1863 return complete_emulated_msr_access(vcpu);
1864}
1865
1866static int complete_fast_msr_access(struct kvm_vcpu *vcpu)
Alexander Graf1ae09952020-09-25 16:34:16 +02001867{
Jason Baronb36464772021-01-14 22:27:56 -05001868 return static_call(kvm_x86_complete_emulated_msr)(vcpu, vcpu->run->msr.error);
Alexander Graf1ae09952020-09-25 16:34:16 +02001869}
1870
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001871static int complete_fast_rdmsr(struct kvm_vcpu *vcpu)
1872{
1873 complete_userspace_rdmsr(vcpu);
1874 return complete_fast_msr_access(vcpu);
1875}
1876
Alexander Graf1ae09952020-09-25 16:34:16 +02001877static u64 kvm_msr_reason(int r)
1878{
1879 switch (r) {
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001880 case KVM_MSR_RET_INVALID:
Alexander Graf1ae09952020-09-25 16:34:16 +02001881 return KVM_MSR_EXIT_REASON_UNKNOWN;
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001882 case KVM_MSR_RET_FILTERED:
Alexander Graf1a1552542020-09-25 16:34:21 +02001883 return KVM_MSR_EXIT_REASON_FILTER;
Alexander Graf1ae09952020-09-25 16:34:16 +02001884 default:
1885 return KVM_MSR_EXIT_REASON_INVAL;
1886 }
1887}
1888
1889static int kvm_msr_user_space(struct kvm_vcpu *vcpu, u32 index,
1890 u32 exit_reason, u64 data,
1891 int (*completion)(struct kvm_vcpu *vcpu),
1892 int r)
1893{
1894 u64 msr_reason = kvm_msr_reason(r);
1895
1896 /* Check if the user wanted to know about this MSR fault */
1897 if (!(vcpu->kvm->arch.user_space_msr_mask & msr_reason))
1898 return 0;
1899
1900 vcpu->run->exit_reason = exit_reason;
1901 vcpu->run->msr.error = 0;
1902 memset(vcpu->run->msr.pad, 0, sizeof(vcpu->run->msr.pad));
1903 vcpu->run->msr.reason = msr_reason;
1904 vcpu->run->msr.index = index;
1905 vcpu->run->msr.data = data;
1906 vcpu->arch.complete_userspace_io = completion;
1907
1908 return 1;
1909}
1910
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001911int kvm_emulate_rdmsr(struct kvm_vcpu *vcpu)
1912{
1913 u32 ecx = kvm_rcx_read(vcpu);
1914 u64 data;
Alexander Graf1ae09952020-09-25 16:34:16 +02001915 int r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001916
Alexander Graf1ae09952020-09-25 16:34:16 +02001917 r = kvm_get_msr(vcpu, ecx, &data);
1918
Paolo Bonzini8b474422020-12-14 07:44:46 -05001919 if (!r) {
1920 trace_kvm_msr_read(ecx, data);
1921
1922 kvm_rax_write(vcpu, data & -1u);
1923 kvm_rdx_write(vcpu, (data >> 32) & -1u);
1924 } else {
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001925 /* MSR read failed? See if we should ask user space */
1926 if (kvm_msr_user_space(vcpu, ecx, KVM_EXIT_X86_RDMSR, 0,
1927 complete_fast_rdmsr, r))
1928 return 0;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001929 trace_kvm_msr_read_ex(ecx);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001930 }
1931
Jason Baronb36464772021-01-14 22:27:56 -05001932 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001933}
1934EXPORT_SYMBOL_GPL(kvm_emulate_rdmsr);
1935
1936int kvm_emulate_wrmsr(struct kvm_vcpu *vcpu)
1937{
1938 u32 ecx = kvm_rcx_read(vcpu);
1939 u64 data = kvm_read_edx_eax(vcpu);
Alexander Graf1ae09952020-09-25 16:34:16 +02001940 int r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001941
Alexander Graf1ae09952020-09-25 16:34:16 +02001942 r = kvm_set_msr(vcpu, ecx, data);
1943
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001944 if (!r) {
Paolo Bonzini8b474422020-12-14 07:44:46 -05001945 trace_kvm_msr_write(ecx, data);
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001946 } else {
1947 /* MSR write failed? See if we should ask user space */
1948 if (kvm_msr_user_space(vcpu, ecx, KVM_EXIT_X86_WRMSR, data,
1949 complete_fast_msr_access, r))
1950 return 0;
1951 /* Signal all other negative errors to userspace */
1952 if (r < 0)
1953 return r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001954 trace_kvm_msr_write_ex(ecx, data);
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001955 }
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001956
Jason Baronb36464772021-01-14 22:27:56 -05001957 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001958}
1959EXPORT_SYMBOL_GPL(kvm_emulate_wrmsr);
1960
Sean Christopherson5ff3a352021-02-04 16:57:47 -08001961int kvm_emulate_as_nop(struct kvm_vcpu *vcpu)
1962{
1963 return kvm_skip_emulated_instruction(vcpu);
1964}
1965EXPORT_SYMBOL_GPL(kvm_emulate_as_nop);
1966
1967int kvm_emulate_invd(struct kvm_vcpu *vcpu)
1968{
1969 /* Treat an INVD instruction as a NOP and just skip it. */
1970 return kvm_emulate_as_nop(vcpu);
1971}
1972EXPORT_SYMBOL_GPL(kvm_emulate_invd);
1973
1974int kvm_emulate_mwait(struct kvm_vcpu *vcpu)
1975{
1976 pr_warn_once("kvm: MWAIT instruction emulated as NOP!\n");
1977 return kvm_emulate_as_nop(vcpu);
1978}
1979EXPORT_SYMBOL_GPL(kvm_emulate_mwait);
1980
1981int kvm_handle_invalid_op(struct kvm_vcpu *vcpu)
1982{
1983 kvm_queue_exception(vcpu, UD_VECTOR);
1984 return 1;
1985}
1986EXPORT_SYMBOL_GPL(kvm_handle_invalid_op);
1987
1988int kvm_emulate_monitor(struct kvm_vcpu *vcpu)
1989{
1990 pr_warn_once("kvm: MONITOR instruction emulated as NOP!\n");
1991 return kvm_emulate_as_nop(vcpu);
1992}
1993EXPORT_SYMBOL_GPL(kvm_emulate_monitor);
1994
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05001995static inline bool kvm_vcpu_exit_request(struct kvm_vcpu *vcpu)
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001996{
Frederic Weisbecker4ae7dc92021-02-01 00:05:48 +01001997 xfer_to_guest_mode_prepare();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001998 return vcpu->mode == EXITING_GUEST_MODE || kvm_request_pending(vcpu) ||
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02001999 xfer_to_guest_mode_work_pending();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08002000}
Wanpeng Li5a9f5442020-04-28 14:23:26 +08002001
Carsten Otte313a3dc2007-10-11 19:16:52 +02002002/*
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002003 * The fast path for frequent and performance sensitive wrmsr emulation,
2004 * i.e. the sending of IPI, sending IPI early in the VM-Exit flow reduces
2005 * the latency of virtual IPI by avoiding the expensive bits of transitioning
2006 * from guest to host, e.g. reacquiring KVM's SRCU lock. In contrast to the
2007 * other cases which must be called after interrupts are enabled on the host.
2008 */
2009static int handle_fastpath_set_x2apic_icr_irqoff(struct kvm_vcpu *vcpu, u64 data)
2010{
Wanpeng Lie1be9ac2020-03-26 10:20:01 +08002011 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(vcpu->arch.apic))
2012 return 1;
2013
2014 if (((data & APIC_SHORT_MASK) == APIC_DEST_NOSHORT) &&
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002015 ((data & APIC_DEST_MASK) == APIC_DEST_PHYSICAL) &&
Wanpeng Li4064a4c2020-04-02 16:20:26 +08002016 ((data & APIC_MODE_MASK) == APIC_DM_FIXED) &&
2017 ((u32)(data >> 32) != X2APIC_BROADCAST)) {
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002018
Wanpeng Lid5361672020-03-26 10:20:02 +08002019 data &= ~(1 << 12);
2020 kvm_apic_send_ipi(vcpu->arch.apic, (u32)data, (u32)(data >> 32));
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002021 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR2, (u32)(data >> 32));
Wanpeng Lid5361672020-03-26 10:20:02 +08002022 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR, (u32)data);
2023 trace_kvm_apic_write(APIC_ICR, (u32)data);
2024 return 0;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002025 }
2026
2027 return 1;
2028}
2029
Wanpeng Liae95f562020-04-28 14:23:28 +08002030static int handle_fastpath_set_tscdeadline(struct kvm_vcpu *vcpu, u64 data)
2031{
2032 if (!kvm_can_use_hv_timer(vcpu))
2033 return 1;
2034
2035 kvm_set_lapic_tscdeadline_msr(vcpu, data);
2036 return 0;
2037}
2038
Wanpeng Li404d5d72020-04-28 14:23:25 +08002039fastpath_t handle_fastpath_set_msr_irqoff(struct kvm_vcpu *vcpu)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002040{
2041 u32 msr = kvm_rcx_read(vcpu);
Wanpeng Li8a1038d2020-03-26 10:20:00 +08002042 u64 data;
Wanpeng Li404d5d72020-04-28 14:23:25 +08002043 fastpath_t ret = EXIT_FASTPATH_NONE;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002044
2045 switch (msr) {
2046 case APIC_BASE_MSR + (APIC_ICR >> 4):
Wanpeng Li8a1038d2020-03-26 10:20:00 +08002047 data = kvm_read_edx_eax(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08002048 if (!handle_fastpath_set_x2apic_icr_irqoff(vcpu, data)) {
2049 kvm_skip_emulated_instruction(vcpu);
2050 ret = EXIT_FASTPATH_EXIT_HANDLED;
Haiwei Li80bc97f2020-05-18 09:31:38 +08002051 }
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002052 break;
Dave Hansen09141ec2020-03-05 09:47:06 -08002053 case MSR_IA32_TSC_DEADLINE:
Wanpeng Liae95f562020-04-28 14:23:28 +08002054 data = kvm_read_edx_eax(vcpu);
2055 if (!handle_fastpath_set_tscdeadline(vcpu, data)) {
2056 kvm_skip_emulated_instruction(vcpu);
2057 ret = EXIT_FASTPATH_REENTER_GUEST;
2058 }
2059 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002060 default:
Wanpeng Li404d5d72020-04-28 14:23:25 +08002061 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002062 }
2063
Wanpeng Li404d5d72020-04-28 14:23:25 +08002064 if (ret != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002065 trace_kvm_msr_write(msr, data);
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002066
Wanpeng Li404d5d72020-04-28 14:23:25 +08002067 return ret;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002068}
2069EXPORT_SYMBOL_GPL(handle_fastpath_set_msr_irqoff);
2070
2071/*
Carsten Otte313a3dc2007-10-11 19:16:52 +02002072 * Adapt set_msr() to msr_io()'s calling convention
2073 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002074static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2075{
Peter Xu6abe9c12020-06-22 18:04:41 -04002076 return kvm_get_msr_ignored_check(vcpu, index, data, true);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002077}
2078
Carsten Otte313a3dc2007-10-11 19:16:52 +02002079static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2080{
Peter Xu6abe9c12020-06-22 18:04:41 -04002081 return kvm_set_msr_ignored_check(vcpu, index, *data, true);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002082}
2083
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002084#ifdef CONFIG_X86_64
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002085struct pvclock_clock {
2086 int vclock_mode;
2087 u64 cycle_last;
2088 u64 mask;
2089 u32 mult;
2090 u32 shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002091 u64 base_cycles;
2092 u64 offset;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002093};
2094
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002095struct pvclock_gtod_data {
2096 seqcount_t seq;
2097
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002098 struct pvclock_clock clock; /* extract of a clocksource struct */
2099 struct pvclock_clock raw_clock; /* extract of a clocksource struct */
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002100
Paolo Bonzini917f9472020-01-22 14:32:20 +01002101 ktime_t offs_boot;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002102 u64 wall_time_sec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002103};
2104
2105static struct pvclock_gtod_data pvclock_gtod_data;
2106
2107static void update_pvclock_gtod(struct timekeeper *tk)
2108{
2109 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
2110
2111 write_seqcount_begin(&vdata->seq);
2112
2113 /* copy pvclock gtod data */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002114 vdata->clock.vclock_mode = tk->tkr_mono.clock->vdso_clock_mode;
Peter Zijlstra876e7882015-03-19 10:09:06 +01002115 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
2116 vdata->clock.mask = tk->tkr_mono.mask;
2117 vdata->clock.mult = tk->tkr_mono.mult;
2118 vdata->clock.shift = tk->tkr_mono.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002119 vdata->clock.base_cycles = tk->tkr_mono.xtime_nsec;
2120 vdata->clock.offset = tk->tkr_mono.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002121
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002122 vdata->raw_clock.vclock_mode = tk->tkr_raw.clock->vdso_clock_mode;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002123 vdata->raw_clock.cycle_last = tk->tkr_raw.cycle_last;
2124 vdata->raw_clock.mask = tk->tkr_raw.mask;
2125 vdata->raw_clock.mult = tk->tkr_raw.mult;
2126 vdata->raw_clock.shift = tk->tkr_raw.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002127 vdata->raw_clock.base_cycles = tk->tkr_raw.xtime_nsec;
2128 vdata->raw_clock.offset = tk->tkr_raw.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002129
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002130 vdata->wall_time_sec = tk->xtime_sec;
2131
Paolo Bonzini917f9472020-01-22 14:32:20 +01002132 vdata->offs_boot = tk->offs_boot;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002133
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002134 write_seqcount_end(&vdata->seq);
2135}
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002136
2137static s64 get_kvmclock_base_ns(void)
2138{
2139 /* Count up from boot time, but with the frequency of the raw clock. */
2140 return ktime_to_ns(ktime_add(ktime_get_raw(), pvclock_gtod_data.offs_boot));
2141}
2142#else
2143static s64 get_kvmclock_base_ns(void)
2144{
2145 /* Master clock not used, so we can just use CLOCK_BOOTTIME. */
2146 return ktime_get_boottime_ns();
2147}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002148#endif
2149
David Woodhouse55749762021-12-10 16:36:24 +00002150static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock, int sec_hi_ofs)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002151{
Avi Kivity9ed3c442010-05-04 15:00:37 +03002152 int version;
2153 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002154 struct pvclock_wall_clock wc;
Joao Martins629b5342018-06-28 15:06:43 -04002155 u32 wc_sec_hi;
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002156 u64 wall_nsec;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002157
2158 if (!wall_clock)
2159 return;
2160
Avi Kivity9ed3c442010-05-04 15:00:37 +03002161 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
2162 if (r)
2163 return;
2164
2165 if (version & 1)
2166 ++version; /* first time write, random junk */
2167
2168 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002169
Nicholas Krause1dab1342015-12-30 13:08:46 -05002170 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
2171 return;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002172
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002173 /*
2174 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10002175 * system time (updated by kvm_guest_time_update below) to the
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002176 * wall clock specified here. We do the reverse here.
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002177 */
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002178 wall_nsec = ktime_get_real_ns() - get_kvmclock_ns(kvm);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002179
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002180 wc.nsec = do_div(wall_nsec, 1000000000);
2181 wc.sec = (u32)wall_nsec; /* overflow in 2106 guest time */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002182 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002183
2184 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
2185
Joao Martins629b5342018-06-28 15:06:43 -04002186 if (sec_hi_ofs) {
2187 wc_sec_hi = wall_nsec >> 32;
2188 kvm_write_guest(kvm, wall_clock + sec_hi_ofs,
2189 &wc_sec_hi, sizeof(wc_sec_hi));
2190 }
2191
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002192 version++;
2193 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002194}
2195
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00002196static void kvm_write_system_time(struct kvm_vcpu *vcpu, gpa_t system_time,
2197 bool old_msr, bool host_initiated)
2198{
2199 struct kvm_arch *ka = &vcpu->kvm->arch;
2200
2201 if (vcpu->vcpu_id == 0 && !host_initiated) {
Oliver Upton1e293d12020-10-27 16:10:43 -07002202 if (ka->boot_vcpu_runs_old_kvmclock != old_msr)
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00002203 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2204
2205 ka->boot_vcpu_runs_old_kvmclock = old_msr;
2206 }
2207
2208 vcpu->arch.time = system_time;
2209 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
2210
2211 /* we verify if the enable bit is set... */
2212 vcpu->arch.pv_time_enabled = false;
2213 if (!(system_time & 1))
2214 return;
2215
2216 if (!kvm_gfn_to_hva_cache_init(vcpu->kvm,
2217 &vcpu->arch.pv_time, system_time & ~1ULL,
2218 sizeof(struct pvclock_vcpu_time_info)))
2219 vcpu->arch.pv_time_enabled = true;
2220
2221 return;
2222}
2223
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002224static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
2225{
Paolo Bonzinib51012d2016-01-22 11:39:22 +01002226 do_shl32_div32(dividend, divisor);
2227 return dividend;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002228}
2229
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002230static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002231 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002232{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002233 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002234 int32_t shift = 0;
2235 uint64_t tps64;
2236 uint32_t tps32;
2237
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002238 tps64 = base_hz;
2239 scaled64 = scaled_hz;
Jan Kiszka50933622010-09-26 13:00:53 +02002240 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002241 tps64 >>= 1;
2242 shift--;
2243 }
2244
2245 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02002246 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
2247 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002248 scaled64 >>= 1;
2249 else
2250 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002251 shift++;
2252 }
2253
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002254 *pshift = shift;
2255 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002256}
2257
Marcelo Tosattid8281992012-11-27 23:29:01 -02002258#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002259static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002260#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002261
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002262static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08002263static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002264
Zachary Amsdencc578282012-02-03 15:43:50 -02002265static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10002266{
Zachary Amsdencc578282012-02-03 15:43:50 -02002267 u64 v = (u64)khz * (1000000 + ppm);
2268 do_div(v, 1000000);
2269 return v;
2270}
2271
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002272static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier);
2273
Haozhong Zhang381d5852015-10-20 15:39:04 +08002274static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
2275{
2276 u64 ratio;
2277
2278 /* Guest TSC same frequency as host TSC? */
2279 if (!scale) {
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002280 kvm_vcpu_write_tsc_multiplier(vcpu, kvm_default_tsc_scaling_ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002281 return 0;
2282 }
2283
2284 /* TSC scaling supported? */
2285 if (!kvm_has_tsc_control) {
2286 if (user_tsc_khz > tsc_khz) {
2287 vcpu->arch.tsc_catchup = 1;
2288 vcpu->arch.tsc_always_catchup = 1;
2289 return 0;
2290 } else {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02002291 pr_warn_ratelimited("user requested TSC rate below hardware speed\n");
Haozhong Zhang381d5852015-10-20 15:39:04 +08002292 return -1;
2293 }
2294 }
2295
2296 /* TSC scaling required - calculate ratio */
2297 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
2298 user_tsc_khz, tsc_khz);
2299
2300 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02002301 pr_warn_ratelimited("Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
2302 user_tsc_khz);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002303 return -1;
2304 }
2305
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002306 kvm_vcpu_write_tsc_multiplier(vcpu, ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002307 return 0;
2308}
2309
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002310static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
Zachary Amsdencc578282012-02-03 15:43:50 -02002311{
2312 u32 thresh_lo, thresh_hi;
2313 int use_scaling = 0;
2314
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002315 /* tsc_khz can be zero if TSC calibration fails */
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002316 if (user_tsc_khz == 0) {
Haozhong Zhangad7218832015-10-20 15:39:02 +08002317 /* set tsc_scaling_ratio to a safe value */
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002318 kvm_vcpu_write_tsc_multiplier(vcpu, kvm_default_tsc_scaling_ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002319 return -1;
Haozhong Zhangad7218832015-10-20 15:39:02 +08002320 }
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002321
Zachary Amsdenc2855452010-09-18 14:38:15 -10002322 /* Compute a scale to convert nanoseconds in TSC cycles */
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002323 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
Zachary Amsdencc578282012-02-03 15:43:50 -02002324 &vcpu->arch.virtual_tsc_shift,
2325 &vcpu->arch.virtual_tsc_mult);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002326 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
Zachary Amsdencc578282012-02-03 15:43:50 -02002327
2328 /*
2329 * Compute the variation in TSC rate which is acceptable
2330 * within the range of tolerance and decide if the
2331 * rate being applied is within that bounds of the hardware
2332 * rate. If so, no scaling or compensation need be done.
2333 */
2334 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
2335 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002336 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
2337 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 -02002338 use_scaling = 1;
2339 }
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002340 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002341}
2342
2343static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
2344{
Zachary Amsdene26101b2012-02-03 15:43:57 -02002345 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02002346 vcpu->arch.virtual_tsc_mult,
2347 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002348 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002349 return tsc;
2350}
2351
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002352static inline int gtod_is_based_on_tsc(int mode)
2353{
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002354 return mode == VDSO_CLOCKMODE_TSC || mode == VDSO_CLOCKMODE_HVCLOCK;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002355}
2356
Fengguang Wu69b00492015-01-19 22:33:39 +08002357static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002358{
2359#ifdef CONFIG_X86_64
2360 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002361 struct kvm_arch *ka = &vcpu->kvm->arch;
2362 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2363
2364 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2365 atomic_read(&vcpu->kvm->online_vcpus));
2366
Marcelo Tosatti7f187922014-11-04 21:30:44 -02002367 /*
2368 * Once the masterclock is enabled, always perform request in
2369 * order to update it.
2370 *
2371 * In order to enable masterclock, the host clocksource must be TSC
2372 * and the vcpus need to have matched TSCs. When that happens,
2373 * perform request to enable masterclock.
2374 */
2375 if (ka->use_master_clock ||
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002376 (gtod_is_based_on_tsc(gtod->clock.vclock_mode) && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002377 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2378
2379 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
2380 atomic_read(&vcpu->kvm->online_vcpus),
2381 ka->use_master_clock, gtod->clock.vclock_mode);
2382#endif
2383}
2384
Haozhong Zhang35181e82015-10-20 15:39:03 +08002385/*
2386 * Multiply tsc by a fixed point number represented by ratio.
2387 *
2388 * The most significant 64-N bits (mult) of ratio represent the
2389 * integral part of the fixed point number; the remaining N bits
2390 * (frac) represent the fractional part, ie. ratio represents a fixed
2391 * point number (mult + frac * 2^(-N)).
2392 *
2393 * N equals to kvm_tsc_scaling_ratio_frac_bits.
2394 */
2395static inline u64 __scale_tsc(u64 ratio, u64 tsc)
2396{
2397 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
2398}
2399
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002400u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc, u64 ratio)
Haozhong Zhang35181e82015-10-20 15:39:03 +08002401{
2402 u64 _tsc = tsc;
Haozhong Zhang35181e82015-10-20 15:39:03 +08002403
2404 if (ratio != kvm_default_tsc_scaling_ratio)
2405 _tsc = __scale_tsc(ratio, tsc);
2406
2407 return _tsc;
2408}
2409EXPORT_SYMBOL_GPL(kvm_scale_tsc);
2410
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002411static u64 kvm_compute_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
Haozhong Zhang07c14192015-10-20 15:39:05 +08002412{
2413 u64 tsc;
2414
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002415 tsc = kvm_scale_tsc(vcpu, rdtsc(), vcpu->arch.l1_tsc_scaling_ratio);
Haozhong Zhang07c14192015-10-20 15:39:05 +08002416
2417 return target_tsc - tsc;
2418}
2419
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002420u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
2421{
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002422 return vcpu->arch.l1_tsc_offset +
2423 kvm_scale_tsc(vcpu, host_tsc, vcpu->arch.l1_tsc_scaling_ratio);
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002424}
2425EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
2426
Ilias Stamatis83150f22021-05-26 19:44:14 +01002427u64 kvm_calc_nested_tsc_offset(u64 l1_offset, u64 l2_offset, u64 l2_multiplier)
2428{
2429 u64 nested_offset;
2430
2431 if (l2_multiplier == kvm_default_tsc_scaling_ratio)
2432 nested_offset = l1_offset;
2433 else
2434 nested_offset = mul_s64_u64_shr((s64) l1_offset, l2_multiplier,
2435 kvm_tsc_scaling_ratio_frac_bits);
2436
2437 nested_offset += l2_offset;
2438 return nested_offset;
2439}
2440EXPORT_SYMBOL_GPL(kvm_calc_nested_tsc_offset);
2441
2442u64 kvm_calc_nested_tsc_multiplier(u64 l1_multiplier, u64 l2_multiplier)
2443{
2444 if (l2_multiplier != kvm_default_tsc_scaling_ratio)
2445 return mul_u64_u64_shr(l1_multiplier, l2_multiplier,
2446 kvm_tsc_scaling_ratio_frac_bits);
2447
2448 return l1_multiplier;
2449}
2450EXPORT_SYMBOL_GPL(kvm_calc_nested_tsc_multiplier);
2451
Ilias Stamatisedcfe542021-05-26 19:44:15 +01002452static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 l1_offset)
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002453{
Ilias Stamatisedcfe542021-05-26 19:44:15 +01002454 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2455 vcpu->arch.l1_tsc_offset,
2456 l1_offset);
2457
2458 vcpu->arch.l1_tsc_offset = l1_offset;
2459
2460 /*
2461 * If we are here because L1 chose not to trap WRMSR to TSC then
2462 * according to the spec this should set L1's TSC (as opposed to
2463 * setting L1's offset for L2).
2464 */
2465 if (is_guest_mode(vcpu))
2466 vcpu->arch.tsc_offset = kvm_calc_nested_tsc_offset(
2467 l1_offset,
2468 static_call(kvm_x86_get_l2_tsc_offset)(vcpu),
2469 static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu));
2470 else
2471 vcpu->arch.tsc_offset = l1_offset;
2472
2473 static_call(kvm_x86_write_tsc_offset)(vcpu, vcpu->arch.tsc_offset);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002474}
2475
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002476static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier)
2477{
2478 vcpu->arch.l1_tsc_scaling_ratio = l1_multiplier;
2479
2480 /* Userspace is changing the multiplier while L2 is active */
2481 if (is_guest_mode(vcpu))
2482 vcpu->arch.tsc_scaling_ratio = kvm_calc_nested_tsc_multiplier(
2483 l1_multiplier,
2484 static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu));
2485 else
2486 vcpu->arch.tsc_scaling_ratio = l1_multiplier;
2487
2488 if (kvm_has_tsc_control)
2489 static_call(kvm_x86_write_tsc_multiplier)(
2490 vcpu, vcpu->arch.tsc_scaling_ratio);
2491}
2492
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002493static inline bool kvm_check_tsc_unstable(void)
2494{
2495#ifdef CONFIG_X86_64
2496 /*
2497 * TSC is marked unstable when we're running on Hyper-V,
2498 * 'TSC page' clocksource is good.
2499 */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002500 if (pvclock_gtod_data.clock.vclock_mode == VDSO_CLOCKMODE_HVCLOCK)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002501 return false;
2502#endif
2503 return check_tsc_unstable();
2504}
2505
Oliver Upton58d42772021-09-16 18:15:37 +00002506/*
2507 * Infers attempts to synchronize the guest's tsc from host writes. Sets the
2508 * offset for the vcpu and tracks the TSC matching generation that the vcpu
2509 * participates in.
2510 */
2511static void __kvm_synchronize_tsc(struct kvm_vcpu *vcpu, u64 offset, u64 tsc,
2512 u64 ns, bool matched)
2513{
2514 struct kvm *kvm = vcpu->kvm;
2515
2516 lockdep_assert_held(&kvm->arch.tsc_write_lock);
2517
2518 /*
2519 * We also track th most recent recorded KHZ, write and time to
2520 * allow the matching interval to be extended at each write.
2521 */
2522 kvm->arch.last_tsc_nsec = ns;
2523 kvm->arch.last_tsc_write = tsc;
2524 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Oliver Upton828ca892021-09-16 18:15:38 +00002525 kvm->arch.last_tsc_offset = offset;
Oliver Upton58d42772021-09-16 18:15:37 +00002526
2527 vcpu->arch.last_guest_tsc = tsc;
2528
2529 kvm_vcpu_write_tsc_offset(vcpu, offset);
2530
2531 if (!matched) {
2532 /*
2533 * We split periods of matched TSC writes into generations.
2534 * For each generation, we track the original measured
2535 * nanosecond time, offset, and write, so if TSCs are in
2536 * sync, we can match exact offset, and if not, we can match
2537 * exact software computation in compute_guest_tsc()
2538 *
2539 * These values are tracked in kvm->arch.cur_xxx variables.
2540 */
2541 kvm->arch.cur_tsc_generation++;
2542 kvm->arch.cur_tsc_nsec = ns;
2543 kvm->arch.cur_tsc_write = tsc;
2544 kvm->arch.cur_tsc_offset = offset;
2545 kvm->arch.nr_vcpus_matched_tsc = 0;
2546 } else if (vcpu->arch.this_tsc_generation != kvm->arch.cur_tsc_generation) {
2547 kvm->arch.nr_vcpus_matched_tsc++;
2548 }
2549
2550 /* Keep track of which generation this VCPU has synchronized to */
2551 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
2552 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
2553 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
2554
2555 kvm_track_tsc_matching(vcpu);
2556}
2557
Paolo Bonzini0c899c22020-09-24 14:45:27 +02002558static void kvm_synchronize_tsc(struct kvm_vcpu *vcpu, u64 data)
Zachary Amsden99e3e302010-08-19 22:07:17 -10002559{
2560 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002561 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002562 unsigned long flags;
Oliver Upton58d42772021-09-16 18:15:37 +00002563 bool matched = false;
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002564 bool synchronizing = false;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002565
Jan Kiszka038f8c12011-02-04 10:49:11 +01002566 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002567 offset = kvm_compute_l1_tsc_offset(vcpu, data);
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002568 ns = get_kvmclock_base_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002569 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002570
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002571 if (vcpu->arch.virtual_tsc_khz) {
Paolo Bonzini0c899c22020-09-24 14:45:27 +02002572 if (data == 0) {
Denis Plotnikovbd8fab32017-04-07 12:09:53 +03002573 /*
2574 * detection of vcpu initialization -- need to sync
2575 * with other vCPUs. This particularly helps to keep
2576 * kvm_clock stable after CPU hotplug
2577 */
2578 synchronizing = true;
2579 } else {
2580 u64 tsc_exp = kvm->arch.last_tsc_write +
2581 nsec_to_cycles(vcpu, elapsed);
2582 u64 tsc_hz = vcpu->arch.virtual_tsc_khz * 1000LL;
2583 /*
2584 * Special case: TSC write with a small delta (1 second)
2585 * of virtual cycle time against real time is
2586 * interpreted as an attempt to synchronize the CPU.
2587 */
2588 synchronizing = data < tsc_exp + tsc_hz &&
2589 data + tsc_hz > tsc_exp;
2590 }
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002591 }
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002592
2593 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002594 * For a reliable TSC, we can match TSC offsets, and for an unstable
2595 * TSC, we add elapsed time in this computation. We could let the
2596 * compensation code attempt to catch up if we fall behind, but
2597 * it's better to try to match offsets from the beginning.
2598 */
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002599 if (synchronizing &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002600 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002601 if (!kvm_check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02002602 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002603 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01002604 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002605 data += delta;
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002606 offset = kvm_compute_l1_tsc_offset(vcpu, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002607 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002608 matched = true;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002609 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02002610
Oliver Upton58d42772021-09-16 18:15:37 +00002611 __kvm_synchronize_tsc(vcpu, offset, data, ns, matched);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002612 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Zachary Amsden99e3e302010-08-19 22:07:17 -10002613}
Zachary Amsdene26101b2012-02-03 15:43:57 -02002614
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002615static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
2616 s64 adjustment)
2617{
Sean Christopherson56ba77a2020-05-01 21:32:25 -07002618 u64 tsc_offset = vcpu->arch.l1_tsc_offset;
Leonid Shatz326e7422018-11-06 12:14:25 +02002619 kvm_vcpu_write_tsc_offset(vcpu, tsc_offset + adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002620}
2621
2622static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
2623{
Ilias Stamatis805d7052021-05-26 19:44:09 +01002624 if (vcpu->arch.l1_tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002625 WARN_ON(adjustment < 0);
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002626 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment,
2627 vcpu->arch.l1_tsc_scaling_ratio);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01002628 adjust_tsc_offset_guest(vcpu, adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002629}
2630
Marcelo Tosattid8281992012-11-27 23:29:01 -02002631#ifdef CONFIG_X86_64
2632
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002633static u64 read_tsc(void)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002634{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002635 u64 ret = (u64)rdtsc_ordered();
Andy Lutomirski03b97302015-06-25 18:44:08 +02002636 u64 last = pvclock_gtod_data.clock.cycle_last;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002637
2638 if (likely(ret >= last))
2639 return ret;
2640
2641 /*
2642 * GCC likes to generate cmov here, but this branch is extremely
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08002643 * predictable (it's just a function of time and the likely is
Marcelo Tosattid8281992012-11-27 23:29:01 -02002644 * very likely) and there's a data dependence, so force GCC
2645 * to generate a branch instead. I don't barrier() because
2646 * we don't actually need a barrier, and if this function
2647 * ever gets inlined it will generate worse code.
2648 */
2649 asm volatile ("");
2650 return last;
2651}
2652
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002653static inline u64 vgettsc(struct pvclock_clock *clock, u64 *tsc_timestamp,
2654 int *mode)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002655{
2656 long v;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002657 u64 tsc_pg_val;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002658
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002659 switch (clock->vclock_mode) {
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002660 case VDSO_CLOCKMODE_HVCLOCK:
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002661 tsc_pg_val = hv_read_tsc_page_tsc(hv_get_tsc_page(),
2662 tsc_timestamp);
2663 if (tsc_pg_val != U64_MAX) {
2664 /* TSC page valid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002665 *mode = VDSO_CLOCKMODE_HVCLOCK;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002666 v = (tsc_pg_val - clock->cycle_last) &
2667 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002668 } else {
2669 /* TSC page invalid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002670 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002671 }
2672 break;
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002673 case VDSO_CLOCKMODE_TSC:
2674 *mode = VDSO_CLOCKMODE_TSC;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002675 *tsc_timestamp = read_tsc();
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002676 v = (*tsc_timestamp - clock->cycle_last) &
2677 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002678 break;
2679 default:
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002680 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002681 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002682
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002683 if (*mode == VDSO_CLOCKMODE_NONE)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002684 *tsc_timestamp = v = 0;
2685
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002686 return v * clock->mult;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002687}
2688
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002689static int do_monotonic_raw(s64 *t, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002690{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002691 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002692 unsigned long seq;
2693 int mode;
2694 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002695
Marcelo Tosattid8281992012-11-27 23:29:01 -02002696 do {
2697 seq = read_seqcount_begin(&gtod->seq);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002698 ns = gtod->raw_clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002699 ns += vgettsc(&gtod->raw_clock, tsc_timestamp, &mode);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002700 ns >>= gtod->raw_clock.shift;
2701 ns += ktime_to_ns(ktime_add(gtod->raw_clock.offset, gtod->offs_boot));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002702 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002703 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002704
2705 return mode;
2706}
2707
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002708static int do_realtime(struct timespec64 *ts, u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002709{
2710 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2711 unsigned long seq;
2712 int mode;
2713 u64 ns;
2714
2715 do {
2716 seq = read_seqcount_begin(&gtod->seq);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002717 ts->tv_sec = gtod->wall_time_sec;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002718 ns = gtod->clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002719 ns += vgettsc(&gtod->clock, tsc_timestamp, &mode);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002720 ns >>= gtod->clock.shift;
2721 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
2722
2723 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
2724 ts->tv_nsec = ns;
2725
2726 return mode;
2727}
2728
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002729/* returns true if host is using TSC based clocksource */
2730static bool kvm_get_time_and_clockread(s64 *kernel_ns, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002731{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002732 /* 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 Tosattid8281992012-11-27 23:29:01 -02002734 return false;
2735
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002736 return gtod_is_based_on_tsc(do_monotonic_raw(kernel_ns,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002737 tsc_timestamp));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002738}
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002739
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002740/* returns true if host is using TSC based clocksource */
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002741static bool kvm_get_walltime_and_clockread(struct timespec64 *ts,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002742 u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002743{
2744 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002745 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002746 return false;
2747
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002748 return gtod_is_based_on_tsc(do_realtime(ts, tsc_timestamp));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002749}
Marcelo Tosattid8281992012-11-27 23:29:01 -02002750#endif
2751
2752/*
2753 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002754 * Assuming a stable TSC across physical CPUS, and a stable TSC
2755 * across virtual CPUs, the following condition is possible.
2756 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02002757 * CPUs at the next numbered event.
2758 *
2759 * "timespecX" represents host monotonic time. "tscX" represents
2760 * RDTSC value.
2761 *
2762 * VCPU0 on CPU0 | VCPU1 on CPU1
2763 *
2764 * 1. read timespec0,tsc0
2765 * 2. | timespec1 = timespec0 + N
2766 * | tsc1 = tsc0 + M
2767 * 3. transition to guest | transition to guest
2768 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
2769 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
2770 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
2771 *
2772 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
2773 *
2774 * - ret0 < ret1
2775 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
2776 * ...
2777 * - 0 < N - M => M < N
2778 *
2779 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
2780 * always the case (the difference between two distinct xtime instances
2781 * might be smaller then the difference between corresponding TSC reads,
2782 * when updating guest vcpus pvclock areas).
2783 *
2784 * To avoid that problem, do not allow visibility of distinct
2785 * system_timestamp/tsc_timestamp values simultaneously: use a master
2786 * copy of host monotonic time values. Update that master copy
2787 * in lockstep.
2788 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002789 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02002790 *
2791 */
2792
2793static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
2794{
2795#ifdef CONFIG_X86_64
2796 struct kvm_arch *ka = &kvm->arch;
2797 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002798 bool host_tsc_clocksource, vcpus_matched;
2799
Paolo Bonzini869b4422021-09-16 18:15:36 +00002800 lockdep_assert_held(&kvm->arch.tsc_write_lock);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002801 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2802 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002803
2804 /*
2805 * If the host uses TSC clock, then passthrough TSC as stable
2806 * to the guest.
2807 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002808 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02002809 &ka->master_kernel_ns,
2810 &ka->master_cycle_now);
2811
Marcelo Tosatti16a96022014-05-14 12:43:24 -03002812 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Ladi Proseka826faf2017-06-26 09:56:43 +02002813 && !ka->backwards_tsc_observed
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002814 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002815
Marcelo Tosattid8281992012-11-27 23:29:01 -02002816 if (ka->use_master_clock)
2817 atomic_set(&kvm_guest_has_master_clock, 1);
2818
2819 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002820 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
2821 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002822#endif
2823}
2824
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002825static void kvm_make_mclock_inprogress_request(struct kvm *kvm)
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01002826{
2827 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
2828}
2829
Paolo Bonzini869b4422021-09-16 18:15:36 +00002830static void __kvm_start_pvclock_update(struct kvm *kvm)
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002831{
Paolo Bonzini869b4422021-09-16 18:15:36 +00002832 raw_spin_lock_irq(&kvm->arch.tsc_write_lock);
2833 write_seqcount_begin(&kvm->arch.pvclock_sc);
2834}
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002835
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002836static void kvm_start_pvclock_update(struct kvm *kvm)
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002837{
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002838 kvm_make_mclock_inprogress_request(kvm);
Paolo Bonzinic2c647f2021-03-25 14:05:11 -04002839
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002840 /* no guest entries from this point */
Paolo Bonzini869b4422021-09-16 18:15:36 +00002841 __kvm_start_pvclock_update(kvm);
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002842}
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002843
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002844static void kvm_end_pvclock_update(struct kvm *kvm)
2845{
2846 struct kvm_arch *ka = &kvm->arch;
2847 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00002848 unsigned long i;
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002849
Paolo Bonzini869b4422021-09-16 18:15:36 +00002850 write_seqcount_end(&ka->pvclock_sc);
2851 raw_spin_unlock_irq(&ka->tsc_write_lock);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002852 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002853 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002854
2855 /* guest entries allowed */
2856 kvm_for_each_vcpu(i, vcpu, kvm)
Radim Krčmář72875d82017-04-26 22:32:19 +02002857 kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002858}
2859
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002860static void kvm_update_masterclock(struct kvm *kvm)
2861{
2862 kvm_hv_invalidate_tsc_page(kvm);
2863 kvm_start_pvclock_update(kvm);
2864 pvclock_update_vm_gtod_copy(kvm);
2865 kvm_end_pvclock_update(kvm);
Zachary Amsden99e3e302010-08-19 22:07:17 -10002866}
2867
Paolo Bonzini869b4422021-09-16 18:15:36 +00002868/* Called within read_seqcount_begin/retry for kvm->pvclock_sc. */
2869static void __get_kvmclock(struct kvm *kvm, struct kvm_clock_data *data)
Paolo Bonzini108b2492016-09-01 14:21:03 +02002870{
Paolo Bonzini108b2492016-09-01 14:21:03 +02002871 struct kvm_arch *ka = &kvm->arch;
Paolo Bonzini8b953442016-11-16 18:31:30 +01002872 struct pvclock_vcpu_time_info hv_clock;
Paolo Bonzini8b953442016-11-16 18:31:30 +01002873
Wanpeng Lie2c22062017-05-11 18:12:05 -07002874 /* both __this_cpu_read() and rdtsc() should be on the same cpu */
2875 get_cpu();
2876
Paolo Bonzini869b4422021-09-16 18:15:36 +00002877 data->flags = 0;
2878 if (ka->use_master_clock && __this_cpu_read(cpu_tsc_khz)) {
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00002879#ifdef CONFIG_X86_64
2880 struct timespec64 ts;
2881
2882 if (kvm_get_walltime_and_clockread(&ts, &data->host_tsc)) {
2883 data->realtime = ts.tv_nsec + NSEC_PER_SEC * ts.tv_sec;
2884 data->flags |= KVM_CLOCK_REALTIME | KVM_CLOCK_HOST_TSC;
2885 } else
2886#endif
2887 data->host_tsc = rdtsc();
2888
Paolo Bonzini869b4422021-09-16 18:15:36 +00002889 data->flags |= KVM_CLOCK_TSC_STABLE;
2890 hv_clock.tsc_timestamp = ka->master_cycle_now;
2891 hv_clock.system_time = ka->master_kernel_ns + ka->kvmclock_offset;
Wanpeng Lie70b57a2017-11-20 14:55:05 -08002892 kvm_get_time_scale(NSEC_PER_SEC, __this_cpu_read(cpu_tsc_khz) * 1000LL,
2893 &hv_clock.tsc_shift,
2894 &hv_clock.tsc_to_system_mul);
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00002895 data->clock = __pvclock_read_cycles(&hv_clock, data->host_tsc);
Oliver Upton55c0cef2021-09-16 18:15:34 +00002896 } else {
2897 data->clock = get_kvmclock_base_ns() + ka->kvmclock_offset;
2898 }
Wanpeng Lie2c22062017-05-11 18:12:05 -07002899
2900 put_cpu();
Oliver Upton55c0cef2021-09-16 18:15:34 +00002901}
Wanpeng Lie2c22062017-05-11 18:12:05 -07002902
Paolo Bonzini869b4422021-09-16 18:15:36 +00002903static void get_kvmclock(struct kvm *kvm, struct kvm_clock_data *data)
2904{
2905 struct kvm_arch *ka = &kvm->arch;
2906 unsigned seq;
2907
2908 do {
2909 seq = read_seqcount_begin(&ka->pvclock_sc);
2910 __get_kvmclock(kvm, data);
2911 } while (read_seqcount_retry(&ka->pvclock_sc, seq));
2912}
2913
Oliver Upton55c0cef2021-09-16 18:15:34 +00002914u64 get_kvmclock_ns(struct kvm *kvm)
2915{
2916 struct kvm_clock_data data;
2917
Oliver Upton55c0cef2021-09-16 18:15:34 +00002918 get_kvmclock(kvm, &data);
2919 return data.clock;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002920}
2921
Joao Martinsaa096aa2019-02-01 13:01:45 -05002922static void kvm_setup_pvclock_page(struct kvm_vcpu *v,
2923 struct gfn_to_hva_cache *cache,
2924 unsigned int offset)
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002925{
2926 struct kvm_vcpu_arch *vcpu = &v->arch;
2927 struct pvclock_vcpu_time_info guest_hv_clock;
2928
Joao Martinsaa096aa2019-02-01 13:01:45 -05002929 if (unlikely(kvm_read_guest_offset_cached(v->kvm, cache,
2930 &guest_hv_clock, offset, sizeof(guest_hv_clock))))
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002931 return;
2932
2933 /* This VCPU is paused, but it's legal for a guest to read another
2934 * VCPU's kvmclock, so we really have to follow the specification where
2935 * it says that version is odd if data is being modified, and even after
2936 * it is consistent.
2937 *
2938 * Version field updates must be kept separate. This is because
2939 * kvm_write_guest_cached might use a "rep movs" instruction, and
2940 * writes within a string instruction are weakly ordered. So there
2941 * are three writes overall.
2942 *
2943 * As a small optimization, only write the version field in the first
2944 * and third write. The vcpu->pv_time cache is still valid, because the
2945 * version field is the first in the struct.
2946 */
2947 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
2948
Liran Alon51c4b8b2017-11-05 16:11:30 +02002949 if (guest_hv_clock.version & 1)
2950 ++guest_hv_clock.version; /* first time write, random junk */
2951
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002952 vcpu->hv_clock.version = guest_hv_clock.version + 1;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002953 kvm_write_guest_offset_cached(v->kvm, cache,
2954 &vcpu->hv_clock, offset,
2955 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002956
2957 smp_wmb();
2958
2959 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
2960 vcpu->hv_clock.flags |= (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
2961
2962 if (vcpu->pvclock_set_guest_stopped_request) {
2963 vcpu->hv_clock.flags |= PVCLOCK_GUEST_STOPPED;
2964 vcpu->pvclock_set_guest_stopped_request = false;
2965 }
2966
2967 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
2968
Joao Martinsaa096aa2019-02-01 13:01:45 -05002969 kvm_write_guest_offset_cached(v->kvm, cache,
2970 &vcpu->hv_clock, offset,
2971 sizeof(vcpu->hv_clock));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002972
2973 smp_wmb();
2974
2975 vcpu->hv_clock.version++;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002976 kvm_write_guest_offset_cached(v->kvm, cache,
2977 &vcpu->hv_clock, offset,
2978 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002979}
2980
Zachary Amsden34c238a2010-09-18 14:38:14 -10002981static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002982{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002983 unsigned long flags, tgt_tsc_khz;
Paolo Bonzini869b4422021-09-16 18:15:36 +00002984 unsigned seq;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002985 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002986 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02002987 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002988 u64 tsc_timestamp, host_tsc;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002989 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002990 bool use_master_clock;
2991
2992 kernel_ns = 0;
2993 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002994
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002995 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02002996 * If the host uses TSC clock, then passthrough TSC as stable
2997 * to the guest.
2998 */
Paolo Bonzini869b4422021-09-16 18:15:36 +00002999 do {
3000 seq = read_seqcount_begin(&ka->pvclock_sc);
3001 use_master_clock = ka->use_master_clock;
3002 if (use_master_clock) {
3003 host_tsc = ka->master_cycle_now;
3004 kernel_ns = ka->master_kernel_ns;
3005 }
3006 } while (read_seqcount_retry(&ka->pvclock_sc, seq));
Marcelo Tosattic09664b2013-03-18 13:54:32 -03003007
3008 /* Keep irq disabled to prevent changes to the clock */
3009 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003010 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
3011 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03003012 local_irq_restore(flags);
3013 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
3014 return 1;
3015 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02003016 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02003017 host_tsc = rdtsc();
Paolo Bonzini8171cd62020-01-22 14:36:09 +01003018 kernel_ns = get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02003019 }
3020
Haozhong Zhang4ba76532015-10-20 15:39:07 +08003021 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02003022
3023 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10003024 * We may have to catch up the TSC to match elapsed wall clock
3025 * time for two reasons, even if kvmclock is used.
3026 * 1) CPU could have been running below the maximum TSC rate
3027 * 2) Broken TSC compensation resets the base at each VCPU
3028 * entry to avoid unknown leaps of TSC even when running
3029 * again on the same CPU. This may cause apparent elapsed
3030 * time to disappear, and the guest to stand still or run
3031 * very slowly.
3032 */
3033 if (vcpu->tsc_catchup) {
3034 u64 tsc = compute_guest_tsc(v, kernel_ns);
3035 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02003036 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10003037 tsc_timestamp = tsc;
3038 }
3039 }
3040
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003041 local_irq_restore(flags);
3042
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02003043 /* With all the info we got, fill in the values */
Zachary Amsdenc2855452010-09-18 14:38:15 -10003044
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003045 if (kvm_has_tsc_control)
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003046 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz,
3047 v->arch.l1_tsc_scaling_ratio);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003048
3049 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01003050 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10003051 &vcpu->hv_clock.tsc_shift,
3052 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003053 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10003054 }
3055
Zachary Amsden1d5f0662010-08-19 22:07:30 -10003056 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10003057 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10003058 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03003059
Marcelo Tosattid8281992012-11-27 23:29:01 -02003060 /* If the host uses TSC clocksource, then it is stable */
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02003061 pvclock_flags = 0;
Marcelo Tosattid8281992012-11-27 23:29:01 -02003062 if (use_master_clock)
3063 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
3064
Marcelo Tosatti78c03372012-11-27 23:28:47 -02003065 vcpu->hv_clock.flags = pvclock_flags;
3066
Paolo Bonzini095cf552016-02-08 12:54:12 +01003067 if (vcpu->pv_time_enabled)
Joao Martinsaa096aa2019-02-01 13:01:45 -05003068 kvm_setup_pvclock_page(v, &vcpu->pv_time, 0);
3069 if (vcpu->xen.vcpu_info_set)
3070 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_info_cache,
3071 offsetof(struct compat_vcpu_info, time));
Joao Martinsf2340cd2018-07-23 11:20:57 -04003072 if (vcpu->xen.vcpu_time_info_set)
3073 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_time_info_cache, 0);
Sean Christopherson94c245a2021-09-10 11:32:20 -07003074 if (!v->vcpu_idx)
Paolo Bonzini095cf552016-02-08 12:54:12 +01003075 kvm_hv_setup_tsc_page(v->kvm, &vcpu->hv_clock);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10003076 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01003077}
3078
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003079/*
3080 * kvmclock updates which are isolated to a given vcpu, such as
3081 * vcpu->cpu migration, should not allow system_timestamp from
3082 * the rest of the vcpus to remain static. Otherwise ntp frequency
3083 * correction applies to one vcpu's system_timestamp but not
3084 * the others.
3085 *
3086 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01003087 * We need to rate-limit these requests though, as they can
3088 * considerably slow guests that have a large number of vcpus.
3089 * The time for a remote vcpu to update its kvmclock is bound
3090 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003091 */
3092
Andrew Jones7e44e442014-02-28 12:52:54 +01003093#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
3094
3095static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003096{
Marc Zyngier46808a42021-11-16 16:04:02 +00003097 unsigned long i;
Andrew Jones7e44e442014-02-28 12:52:54 +01003098 struct delayed_work *dwork = to_delayed_work(work);
3099 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
3100 kvmclock_update_work);
3101 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003102 struct kvm_vcpu *vcpu;
3103
3104 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003105 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003106 kvm_vcpu_kick(vcpu);
3107 }
3108}
3109
Andrew Jones7e44e442014-02-28 12:52:54 +01003110static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
3111{
3112 struct kvm *kvm = v->kvm;
3113
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003114 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01003115 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
3116 KVMCLOCK_UPDATE_DELAY);
3117}
3118
Andrew Jones332967a2014-02-28 12:52:55 +01003119#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
3120
3121static void kvmclock_sync_fn(struct work_struct *work)
3122{
3123 struct delayed_work *dwork = to_delayed_work(work);
3124 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
3125 kvmclock_sync_work);
3126 struct kvm *kvm = container_of(ka, struct kvm, arch);
3127
Marcelo Tosatti630994b2015-05-12 22:42:04 -03003128 if (!kvmclock_periodic_sync)
3129 return;
3130
Andrew Jones332967a2014-02-28 12:52:55 +01003131 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
3132 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
3133 KVMCLOCK_SYNC_PERIOD);
3134}
3135
Borislav Petkov191c8132019-04-18 18:32:50 +02003136/*
3137 * On AMD, HWCR[McStatusWrEn] controls whether setting MCi_STATUS results in #GP.
3138 */
3139static bool can_set_mci_status(struct kvm_vcpu *vcpu)
3140{
3141 /* McStatusWrEn enabled? */
Sean Christopherson23493d02020-03-04 17:34:33 -08003142 if (guest_cpuid_is_amd_or_hygon(vcpu))
Borislav Petkov191c8132019-04-18 18:32:50 +02003143 return !!(vcpu->arch.msr_hwcr & BIT_ULL(18));
3144
3145 return false;
3146}
3147
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003148static int set_msr_mce(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Huang Ying890ca9a2009-05-11 16:48:15 +08003149{
3150 u64 mcg_cap = vcpu->arch.mcg_cap;
3151 unsigned bank_num = mcg_cap & 0xff;
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003152 u32 msr = msr_info->index;
3153 u64 data = msr_info->data;
Huang Ying890ca9a2009-05-11 16:48:15 +08003154
3155 switch (msr) {
3156 case MSR_IA32_MCG_STATUS:
3157 vcpu->arch.mcg_status = data;
3158 break;
3159 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003160 if (!(mcg_cap & MCG_CTL_P) &&
3161 (data || !msr_info->host_initiated))
Huang Ying890ca9a2009-05-11 16:48:15 +08003162 return 1;
3163 if (data != 0 && data != ~(u64)0)
Paolo Bonzini44883f02018-07-26 13:01:52 +02003164 return 1;
Huang Ying890ca9a2009-05-11 16:48:15 +08003165 vcpu->arch.mcg_ctl = data;
3166 break;
3167 default:
3168 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003169 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003170 u32 offset = array_index_nospec(
3171 msr - MSR_IA32_MC0_CTL,
3172 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3173
Andre Przywara114be422010-03-24 17:46:42 +01003174 /* only 0 or all 1s can be written to IA32_MCi_CTL
3175 * some Linux kernels though clear bit 10 in bank 4 to
3176 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
3177 * this to avoid an uncatched #GP in the guest
3178 */
Huang Ying890ca9a2009-05-11 16:48:15 +08003179 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01003180 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08003181 return -1;
Borislav Petkov191c8132019-04-18 18:32:50 +02003182
3183 /* MCi_STATUS */
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003184 if (!msr_info->host_initiated &&
Borislav Petkov191c8132019-04-18 18:32:50 +02003185 (offset & 0x3) == 1 && data != 0) {
3186 if (!can_set_mci_status(vcpu))
3187 return -1;
3188 }
3189
Huang Ying890ca9a2009-05-11 16:48:15 +08003190 vcpu->arch.mce_banks[offset] = data;
3191 break;
3192 }
3193 return 1;
3194 }
3195 return 0;
3196}
3197
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003198static inline bool kvm_pv_async_pf_enabled(struct kvm_vcpu *vcpu)
3199{
3200 u64 mask = KVM_ASYNC_PF_ENABLED | KVM_ASYNC_PF_DELIVERY_AS_INT;
3201
3202 return (vcpu->arch.apf.msr_en_val & mask) == mask;
3203}
3204
Gleb Natapov344d9582010-10-14 11:22:50 +02003205static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
3206{
3207 gpa_t gpa = data & ~0x3f;
3208
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003209 /* Bits 4:5 are reserved, Should be zero */
3210 if (data & 0x30)
Gleb Natapov344d9582010-10-14 11:22:50 +02003211 return 1;
3212
Oliver Upton66570e92020-08-18 15:24:28 +00003213 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_VMEXIT) &&
3214 (data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT))
3215 return 1;
3216
3217 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT) &&
3218 (data & KVM_ASYNC_PF_DELIVERY_AS_INT))
3219 return 1;
3220
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003221 if (!lapic_in_kernel(vcpu))
Vitaly Kuznetsovd831de12020-09-11 11:31:47 +02003222 return data ? 1 : 0;
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003223
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003224 vcpu->arch.apf.msr_en_val = data;
Gleb Natapov344d9582010-10-14 11:22:50 +02003225
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003226 if (!kvm_pv_async_pf_enabled(vcpu)) {
Gleb Natapov344d9582010-10-14 11:22:50 +02003227 kvm_clear_async_pf_completion_queue(vcpu);
3228 kvm_async_pf_hash_reset(vcpu);
3229 return 0;
3230 }
3231
Paolo Bonzini4e335d92017-05-02 16:20:18 +02003232 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02003233 sizeof(u64)))
Gleb Natapov344d9582010-10-14 11:22:50 +02003234 return 1;
3235
Gleb Natapov6adba522010-10-14 11:22:55 +02003236 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Wanpeng Li52a5c152017-07-13 18:30:42 -07003237 vcpu->arch.apf.delivery_as_pf_vmexit = data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003238
Gleb Natapov344d9582010-10-14 11:22:50 +02003239 kvm_async_pf_wakeup_all(vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003240
3241 return 0;
3242}
3243
3244static int kvm_pv_enable_async_pf_int(struct kvm_vcpu *vcpu, u64 data)
3245{
3246 /* Bits 8-63 are reserved */
3247 if (data >> 8)
3248 return 1;
3249
3250 if (!lapic_in_kernel(vcpu))
3251 return 1;
3252
3253 vcpu->arch.apf.msr_int_val = data;
3254
3255 vcpu->arch.apf.vec = data & KVM_ASYNC_PF_VEC_MASK;
3256
Gleb Natapov344d9582010-10-14 11:22:50 +02003257 return 0;
3258}
3259
Glauber Costa12f9a482011-02-01 14:16:40 -05003260static void kvmclock_reset(struct kvm_vcpu *vcpu)
3261{
Andy Honig0b794592013-02-20 14:48:10 -08003262 vcpu->arch.pv_time_enabled = false;
Paolo Bonzini49dedf02019-10-10 12:49:22 +02003263 vcpu->arch.time = 0;
Glauber Costa12f9a482011-02-01 14:16:40 -05003264}
3265
Sean Christopherson77809382020-03-20 14:28:18 -07003266static void kvm_vcpu_flush_tlb_all(struct kvm_vcpu *vcpu)
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003267{
3268 ++vcpu->stat.tlb_flush;
Jason Baronb36464772021-01-14 22:27:56 -05003269 static_call(kvm_x86_tlb_flush_all)(vcpu);
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003270}
3271
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003272static void kvm_vcpu_flush_tlb_guest(struct kvm_vcpu *vcpu)
3273{
3274 ++vcpu->stat.tlb_flush;
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003275
3276 if (!tdp_enabled) {
Lai Jiangshan61b05a9f2021-10-19 19:01:54 +08003277 /*
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003278 * A TLB flush on behalf of the guest is equivalent to
3279 * INVPCID(all), toggling CR4.PGE, etc., which requires
Lai Jiangshan61b05a9f2021-10-19 19:01:54 +08003280 * a forced sync of the shadow page tables. Ensure all the
3281 * roots are synced and the guest TLB in hardware is clean.
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003282 */
Lai Jiangshan61b05a9f2021-10-19 19:01:54 +08003283 kvm_mmu_sync_roots(vcpu);
3284 kvm_mmu_sync_prev_roots(vcpu);
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003285 }
3286
Jason Baronb36464772021-01-14 22:27:56 -05003287 static_call(kvm_x86_tlb_flush_guest)(vcpu);
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003288}
3289
Sean Christopherson40e5f9082021-11-25 01:49:43 +00003290
3291static inline void kvm_vcpu_flush_tlb_current(struct kvm_vcpu *vcpu)
3292{
3293 ++vcpu->stat.tlb_flush;
3294 static_call(kvm_x86_tlb_flush_current)(vcpu);
3295}
3296
3297/*
3298 * Service "local" TLB flush requests, which are specific to the current MMU
3299 * context. In addition to the generic event handling in vcpu_enter_guest(),
3300 * TLB flushes that are targeted at an MMU context also need to be serviced
3301 * prior before nested VM-Enter/VM-Exit.
3302 */
3303void kvm_service_local_tlb_flush_requests(struct kvm_vcpu *vcpu)
3304{
3305 if (kvm_check_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu))
3306 kvm_vcpu_flush_tlb_current(vcpu);
3307
3308 if (kvm_check_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu))
3309 kvm_vcpu_flush_tlb_guest(vcpu);
3310}
3311EXPORT_SYMBOL_GPL(kvm_service_local_tlb_flush_requests);
3312
Glauber Costac9aaa892011-07-11 15:28:14 -04003313static void record_steal_time(struct kvm_vcpu *vcpu)
3314{
David Woodhouse7e2175e2021-11-02 17:36:39 +00003315 struct gfn_to_hva_cache *ghc = &vcpu->arch.st.cache;
3316 struct kvm_steal_time __user *st;
3317 struct kvm_memslots *slots;
3318 u64 steal;
3319 u32 version;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003320
David Woodhouse30b5c852021-03-01 12:53:09 +00003321 if (kvm_xen_msr_enabled(vcpu->kvm)) {
3322 kvm_xen_runstate_set_running(vcpu);
3323 return;
3324 }
3325
Glauber Costac9aaa892011-07-11 15:28:14 -04003326 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
3327 return;
3328
David Woodhouse7e2175e2021-11-02 17:36:39 +00003329 if (WARN_ON_ONCE(current->mm != vcpu->kvm->mm))
Glauber Costac9aaa892011-07-11 15:28:14 -04003330 return;
3331
David Woodhouse7e2175e2021-11-02 17:36:39 +00003332 slots = kvm_memslots(vcpu->kvm);
3333
3334 if (unlikely(slots->generation != ghc->generation ||
3335 kvm_is_error_hva(ghc->hva) || !ghc->memslot)) {
3336 gfn_t gfn = vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS;
3337
3338 /* We rely on the fact that it fits in a single page. */
3339 BUILD_BUG_ON((sizeof(*st) - 1) & KVM_STEAL_VALID_BITS);
3340
3341 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, ghc, gfn, sizeof(*st)) ||
3342 kvm_is_error_hva(ghc->hva) || !ghc->memslot)
3343 return;
3344 }
3345
3346 st = (struct kvm_steal_time __user *)ghc->hva;
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003347 /*
3348 * Doing a TLB flush here, on the guest's behalf, can avoid
3349 * expensive IPIs.
3350 */
Oliver Upton66570e92020-08-18 15:24:28 +00003351 if (guest_pv_has(vcpu, KVM_FEATURE_PV_TLB_FLUSH)) {
David Woodhouse7e2175e2021-11-02 17:36:39 +00003352 u8 st_preempted = 0;
3353 int err = -EFAULT;
3354
Paolo Bonzini3e067fd2021-11-12 02:53:41 -05003355 if (!user_access_begin(st, sizeof(*st)))
3356 return;
3357
David Woodhouse7e2175e2021-11-02 17:36:39 +00003358 asm volatile("1: xchgb %0, %2\n"
3359 "xor %1, %1\n"
3360 "2:\n"
3361 _ASM_EXTABLE_UA(1b, 2b)
David Woodhouse964b7aa2021-11-14 08:59:02 +00003362 : "+q" (st_preempted),
3363 "+&r" (err),
3364 "+m" (st->preempted));
David Woodhouse7e2175e2021-11-02 17:36:39 +00003365 if (err)
3366 goto out;
3367
3368 user_access_end();
3369
3370 vcpu->arch.st.preempted = 0;
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003371
Oliver Upton66570e92020-08-18 15:24:28 +00003372 trace_kvm_pv_tlb_flush(vcpu->vcpu_id,
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003373 st_preempted & KVM_VCPU_FLUSH_TLB);
3374 if (st_preempted & KVM_VCPU_FLUSH_TLB)
Oliver Upton66570e92020-08-18 15:24:28 +00003375 kvm_vcpu_flush_tlb_guest(vcpu);
David Woodhouse7e2175e2021-11-02 17:36:39 +00003376
3377 if (!user_access_begin(st, sizeof(*st)))
3378 goto dirty;
Wanpeng Li1eff0ad2021-05-18 05:00:33 -07003379 } else {
Paolo Bonzini3e067fd2021-11-12 02:53:41 -05003380 if (!user_access_begin(st, sizeof(*st)))
3381 return;
3382
David Woodhouse7e2175e2021-11-02 17:36:39 +00003383 unsafe_put_user(0, &st->preempted, out);
3384 vcpu->arch.st.preempted = 0;
Oliver Upton66570e92020-08-18 15:24:28 +00003385 }
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003386
David Woodhouse7e2175e2021-11-02 17:36:39 +00003387 unsafe_get_user(version, &st->version, out);
3388 if (version & 1)
3389 version += 1; /* first time write, random junk */
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003390
David Woodhouse7e2175e2021-11-02 17:36:39 +00003391 version += 1;
3392 unsafe_put_user(version, &st->version, out);
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003393
3394 smp_wmb();
3395
David Woodhouse7e2175e2021-11-02 17:36:39 +00003396 unsafe_get_user(steal, &st->steal, out);
3397 steal += current->sched_info.run_delay -
Liang Chenc54cdf12016-03-16 19:33:16 +08003398 vcpu->arch.st.last_steal;
3399 vcpu->arch.st.last_steal = current->sched_info.run_delay;
David Woodhouse7e2175e2021-11-02 17:36:39 +00003400 unsafe_put_user(steal, &st->steal, out);
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003401
David Woodhouse7e2175e2021-11-02 17:36:39 +00003402 version += 1;
3403 unsafe_put_user(version, &st->version, out);
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003404
David Woodhouse7e2175e2021-11-02 17:36:39 +00003405 out:
3406 user_access_end();
3407 dirty:
3408 mark_page_dirty_in_slot(vcpu->kvm, ghc->memslot, gpa_to_gfn(ghc->gpa));
Glauber Costac9aaa892011-07-11 15:28:14 -04003409}
3410
Will Auld8fe8ab42012-11-29 12:42:12 -08003411int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003412{
Gleb Natapov57537852012-01-15 14:17:22 +02003413 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08003414 u32 msr = msr_info->index;
3415 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02003416
Joao Martins1232f8e2018-06-13 06:10:37 -04003417 if (msr && msr == vcpu->kvm->arch.xen_hvm_config.msr)
Joao Martins23200b72018-06-13 09:55:44 -04003418 return kvm_xen_write_hypercall_page(vcpu, data);
Joao Martins1232f8e2018-06-13 06:10:37 -04003419
Carsten Otte15c4a642007-10-30 18:44:17 +01003420 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01003421 case MSR_AMD64_NB_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003422 case MSR_IA32_UCODE_WRITE:
3423 case MSR_VM_HSAVE_PA:
3424 case MSR_AMD64_PATCH_LOADER:
3425 case MSR_AMD64_BU_CFG2:
Ladi Prosek405a3532017-04-06 15:22:20 +02003426 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003427 case MSR_F15H_EX_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003428 break;
3429
Wanpeng Li518e7b92018-02-28 14:03:31 +08003430 case MSR_IA32_UCODE_REV:
3431 if (msr_info->host_initiated)
3432 vcpu->arch.microcode_version = data;
3433 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003434 case MSR_IA32_ARCH_CAPABILITIES:
3435 if (!msr_info->host_initiated)
3436 return 1;
3437 vcpu->arch.arch_capabilities = data;
3438 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003439 case MSR_IA32_PERF_CAPABILITIES: {
3440 struct kvm_msr_entry msr_ent = {.index = msr, .data = 0};
3441
3442 if (!msr_info->host_initiated)
3443 return 1;
Vitaly Kuznetsov1aa2abb2021-12-16 17:52:13 +01003444 if (kvm_get_msr_feature(&msr_ent))
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003445 return 1;
3446 if (data & ~msr_ent.data)
3447 return 1;
3448
3449 vcpu->arch.perf_capabilities = data;
3450
3451 return 0;
3452 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003453 case MSR_EFER:
Sean Christopherson11988492019-04-02 08:19:15 -07003454 return set_efer(vcpu, msr_info);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003455 case MSR_K7_HWCR:
3456 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01003457 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08003458 data &= ~(u64)0x8; /* ignore TLB cache disable */
Borislav Petkov191c8132019-04-18 18:32:50 +02003459
3460 /* Handle McStatusWrEn */
3461 if (data == BIT_ULL(18)) {
3462 vcpu->arch.msr_hwcr = data;
3463 } else if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003464 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
3465 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003466 return 1;
3467 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003468 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003469 case MSR_FAM10H_MMIO_CONF_BASE:
3470 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003471 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
3472 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003473 return 1;
3474 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003475 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03003476 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003477 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003478 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01003479 return kvm_set_apic_base(vcpu, msr_info);
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003480 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03003481 return kvm_x2apic_msr_write(vcpu, msr, data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003482 case MSR_IA32_TSC_DEADLINE:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003483 kvm_set_lapic_tscdeadline_msr(vcpu, data);
3484 break;
Will Auldba904632012-11-29 12:42:50 -08003485 case MSR_IA32_TSC_ADJUST:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003486 if (guest_cpuid_has(vcpu, X86_FEATURE_TSC_ADJUST)) {
Will Auldba904632012-11-29 12:42:50 -08003487 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06003488 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08003489 adjust_tsc_offset_guest(vcpu, adj);
Zelin Dengd9130a22021-04-28 10:22:01 +08003490 /* Before back to guest, tsc_timestamp must be adjusted
3491 * as well, otherwise guest's percpu pvclock time could jump.
3492 */
3493 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Will Auldba904632012-11-29 12:42:50 -08003494 }
3495 vcpu->arch.ia32_tsc_adjust_msr = data;
3496 }
3497 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003498 case MSR_IA32_MISC_ENABLE:
Wanpeng Li511a85562019-05-21 14:06:54 +08003499 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT) &&
3500 ((vcpu->arch.ia32_misc_enable_msr ^ data) & MSR_IA32_MISC_ENABLE_MWAIT)) {
3501 if (!guest_cpuid_has(vcpu, X86_FEATURE_XMM3))
3502 return 1;
3503 vcpu->arch.ia32_misc_enable_msr = data;
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08003504 kvm_update_cpuid_runtime(vcpu);
Wanpeng Li511a85562019-05-21 14:06:54 +08003505 } else {
3506 vcpu->arch.ia32_misc_enable_msr = data;
3507 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003508 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003509 case MSR_IA32_SMBASE:
3510 if (!msr_info->host_initiated)
3511 return 1;
3512 vcpu->arch.smbase = data;
3513 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003514 case MSR_IA32_POWER_CTL:
3515 vcpu->arch.msr_ia32_power_ctl = data;
3516 break;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003517 case MSR_IA32_TSC:
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003518 if (msr_info->host_initiated) {
3519 kvm_synchronize_tsc(vcpu, data);
3520 } else {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01003521 u64 adj = kvm_compute_l1_tsc_offset(vcpu, data) - vcpu->arch.l1_tsc_offset;
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003522 adjust_tsc_offset_guest(vcpu, adj);
3523 vcpu->arch.ia32_tsc_adjust_msr += adj;
3524 }
Paolo Bonzinidd259932018-04-13 11:38:35 +02003525 break;
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003526 case MSR_IA32_XSS:
3527 if (!msr_info->host_initiated &&
3528 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3529 return 1;
3530 /*
Sean Christophersona1bead22020-03-02 15:57:00 -08003531 * KVM supports exposing PT to the guest, but does not support
3532 * IA32_XSS[bit 8]. Guests have to use RDMSR/WRMSR rather than
3533 * XSAVES/XRSTORS to save/restore PT MSRs.
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003534 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01003535 if (data & ~supported_xss)
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003536 return 1;
3537 vcpu->arch.ia32_xss = data;
Like Xu4c282e52022-01-26 17:22:25 +00003538 kvm_update_cpuid_runtime(vcpu);
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003539 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003540 case MSR_SMI_COUNT:
3541 if (!msr_info->host_initiated)
3542 return 1;
3543 vcpu->arch.smi_count = data;
3544 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003545 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003546 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3547 return 1;
3548
Joao Martins629b5342018-06-28 15:06:43 -04003549 vcpu->kvm->arch.wall_clock = data;
3550 kvm_write_wall_clock(vcpu->kvm, data, 0);
Oliver Upton66570e92020-08-18 15:24:28 +00003551 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003552 case MSR_KVM_WALL_CLOCK:
Oliver Upton66570e92020-08-18 15:24:28 +00003553 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3554 return 1;
3555
Joao Martins629b5342018-06-28 15:06:43 -04003556 vcpu->kvm->arch.wall_clock = data;
3557 kvm_write_wall_clock(vcpu->kvm, data, 0);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003558 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003559 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003560 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3561 return 1;
3562
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003563 kvm_write_system_time(vcpu, data, false, msr_info->host_initiated);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003564 break;
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003565 case MSR_KVM_SYSTEM_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003566 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3567 return 1;
3568
3569 kvm_write_system_time(vcpu, data, true, msr_info->host_initiated);
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003570 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003571 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003572 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3573 return 1;
3574
Gleb Natapov344d9582010-10-14 11:22:50 +02003575 if (kvm_pv_enable_async_pf(vcpu, data))
3576 return 1;
3577 break;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003578 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton66570e92020-08-18 15:24:28 +00003579 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3580 return 1;
3581
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003582 if (kvm_pv_enable_async_pf_int(vcpu, data))
3583 return 1;
3584 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003585 case MSR_KVM_ASYNC_PF_ACK:
Vitaly Kuznetsov0a31df62021-07-22 14:30:18 +02003586 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
Oliver Upton66570e92020-08-18 15:24:28 +00003587 return 1;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003588 if (data & 0x1) {
3589 vcpu->arch.apf.pageready_pending = false;
3590 kvm_check_async_pf_completion(vcpu);
3591 }
3592 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003593 case MSR_KVM_STEAL_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003594 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3595 return 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04003596
3597 if (unlikely(!sched_info_on()))
3598 return 1;
3599
3600 if (data & KVM_STEAL_RESERVED_MASK)
3601 return 1;
3602
Glauber Costac9aaa892011-07-11 15:28:14 -04003603 vcpu->arch.st.msr_val = data;
3604
3605 if (!(data & KVM_MSR_ENABLED))
3606 break;
3607
Glauber Costac9aaa892011-07-11 15:28:14 -04003608 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
3609
3610 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003611 case MSR_KVM_PV_EOI_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003612 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3613 return 1;
3614
Vitaly Kuznetsov77c33232021-11-08 16:28:18 +01003615 if (kvm_lapic_set_pv_eoi(vcpu, data, sizeof(u8)))
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003616 return 1;
3617 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003618
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003619 case MSR_KVM_POLL_CONTROL:
Oliver Upton66570e92020-08-18 15:24:28 +00003620 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3621 return 1;
3622
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003623 /* only enable bit supported */
3624 if (data & (-1ULL << 1))
3625 return 1;
3626
3627 vcpu->arch.msr_kvm_poll_control = data;
3628 break;
3629
Huang Ying890ca9a2009-05-11 16:48:15 +08003630 case MSR_IA32_MCG_CTL:
3631 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003632 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003633 return set_msr_mce(vcpu, msr_info);
Andre Przywara71db6022009-06-12 22:01:29 +02003634
Wei Huang6912ac32015-06-12 01:34:56 -04003635 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3636 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05003637 pr = true;
3638 fallthrough;
Wei Huang6912ac32015-06-12 01:34:56 -04003639 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3640 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003641 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003642 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02003643
3644 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03003645 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
3646 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02003647 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003648 case MSR_K7_CLK_CTL:
3649 /*
3650 * Ignore all writes to this no longer documented MSR.
3651 * Writes are only relevant for old K7 processors,
3652 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08003653 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003654 * affected processor models on the command line, hence
3655 * the need to ignore the workaround.
3656 */
3657 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003658 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003659 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3660 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003661 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3662 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003663 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003664 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3665 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3666 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003667 return kvm_hv_set_msr_common(vcpu, msr, data,
3668 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003669 case MSR_IA32_BBL_CR_CTL3:
3670 /* Drop writes to this legacy MSR -- see rdmsr
3671 * counterpart for further detail.
3672 */
Eyal Moscovicifab0aa32017-11-08 14:32:08 +02003673 if (report_ignored_msrs)
3674 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n",
3675 msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05003676 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003677 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003678 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003679 return 1;
3680 vcpu->arch.osvw.length = data;
3681 break;
3682 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003683 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003684 return 1;
3685 vcpu->arch.osvw.status = data;
3686 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003687 case MSR_PLATFORM_INFO:
3688 if (!msr_info->host_initiated ||
Kyle Hueydb2336a2017-03-20 01:16:28 -07003689 (!(data & MSR_PLATFORM_INFO_CPUID_FAULT) &&
3690 cpuid_fault_enabled(vcpu)))
3691 return 1;
3692 vcpu->arch.msr_platform_info = data;
3693 break;
3694 case MSR_MISC_FEATURES_ENABLES:
3695 if (data & ~MSR_MISC_FEATURES_ENABLES_CPUID_FAULT ||
3696 (data & MSR_MISC_FEATURES_ENABLES_CPUID_FAULT &&
3697 !supports_cpuid_fault(vcpu)))
3698 return 1;
3699 vcpu->arch.msr_misc_features_enables = data;
3700 break;
Jing Liu820a6ee2022-01-05 04:35:21 -08003701#ifdef CONFIG_X86_64
3702 case MSR_IA32_XFD:
3703 if (!msr_info->host_initiated &&
3704 !guest_cpuid_has(vcpu, X86_FEATURE_XFD))
3705 return 1;
3706
3707 if (data & ~(XFEATURE_MASK_USER_DYNAMIC &
3708 vcpu->arch.guest_supported_xcr0))
3709 return 1;
3710
3711 fpu_update_guest_xfd(&vcpu->arch.guest_fpu, data);
3712 break;
Jing Liu548e8362022-01-05 04:35:24 -08003713 case MSR_IA32_XFD_ERR:
3714 if (!msr_info->host_initiated &&
3715 !guest_cpuid_has(vcpu, X86_FEATURE_XFD))
3716 return 1;
3717
3718 if (data & ~(XFEATURE_MASK_USER_DYNAMIC &
3719 vcpu->arch.guest_supported_xcr0))
3720 return 1;
3721
3722 vcpu->arch.guest_fpu.xfd_err = data;
3723 break;
Jing Liu820a6ee2022-01-05 04:35:21 -08003724#endif
Carsten Otte15c4a642007-10-30 18:44:17 +01003725 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003726 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003727 return kvm_pmu_set_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003728 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003729 }
3730 return 0;
3731}
3732EXPORT_SYMBOL_GPL(kvm_set_msr_common);
3733
Paolo Bonzini44883f02018-07-26 13:01:52 +02003734static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata, bool host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003735{
3736 u64 data;
3737 u64 mcg_cap = vcpu->arch.mcg_cap;
3738 unsigned bank_num = mcg_cap & 0xff;
3739
3740 switch (msr) {
3741 case MSR_IA32_P5_MC_ADDR:
3742 case MSR_IA32_P5_MC_TYPE:
3743 data = 0;
3744 break;
3745 case MSR_IA32_MCG_CAP:
3746 data = vcpu->arch.mcg_cap;
3747 break;
3748 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003749 if (!(mcg_cap & MCG_CTL_P) && !host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003750 return 1;
3751 data = vcpu->arch.mcg_ctl;
3752 break;
3753 case MSR_IA32_MCG_STATUS:
3754 data = vcpu->arch.mcg_status;
3755 break;
3756 default:
3757 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003758 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003759 u32 offset = array_index_nospec(
3760 msr - MSR_IA32_MC0_CTL,
3761 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3762
Huang Ying890ca9a2009-05-11 16:48:15 +08003763 data = vcpu->arch.mce_banks[offset];
3764 break;
3765 }
3766 return 1;
3767 }
3768 *pdata = data;
3769 return 0;
3770}
3771
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003772int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003773{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003774 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01003775 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01003776 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02003777 case MSR_IA32_LASTBRANCHFROMIP:
3778 case MSR_IA32_LASTBRANCHTOIP:
3779 case MSR_IA32_LASTINTFROMIP:
3780 case MSR_IA32_LASTINTTOIP:
Brijesh Singh059e5c32021-04-27 06:16:36 -05003781 case MSR_AMD64_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02003782 case MSR_K8_TSEG_ADDR:
3783 case MSR_K8_TSEG_MASK:
Avi Kivity61a6bd62008-12-29 17:32:28 +02003784 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02003785 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02003786 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003787 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003788 case MSR_AMD64_BU_CFG2:
Dmitry Bilunov0c2df2a2016-05-31 17:38:24 +03003789 case MSR_IA32_PERF_CTL:
Ladi Prosek405a3532017-04-06 15:22:20 +02003790 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003791 case MSR_F15H_EX_CFG:
Venkatesh Srinivas2ca1a062020-04-16 11:42:54 -07003792 /*
3793 * Intel Sandy Bridge CPUs must support the RAPL (running average power
3794 * limit) MSRs. Just return 0, as we do not want to expose the host
3795 * data here. Do not conditionalize this on CPUID, as KVM does not do
3796 * so for existing CPU-specific MSRs.
3797 */
3798 case MSR_RAPL_POWER_UNIT:
3799 case MSR_PP0_ENERGY_STATUS: /* Power plane 0 (core) */
3800 case MSR_PP1_ENERGY_STATUS: /* Power plane 1 (graphics uncore) */
3801 case MSR_PKG_ENERGY_STATUS: /* Total package */
3802 case MSR_DRAM_ENERGY_STATUS: /* DRAM controller */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003803 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01003804 break;
Janakarajan Natarajanc51eb522018-02-05 13:24:52 -06003805 case MSR_F15H_PERF_CTL0 ... MSR_F15H_PERF_CTR5:
Vitaly Kuznetsovc28fa562021-03-29 14:48:04 +02003806 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
3807 return kvm_pmu_get_msr(vcpu, msr_info);
3808 if (!msr_info->host_initiated)
3809 return 1;
3810 msr_info->data = 0;
3811 break;
Wei Huang6912ac32015-06-12 01:34:56 -04003812 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3813 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3814 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
3815 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003816 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003817 return kvm_pmu_get_msr(vcpu, msr_info);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003818 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02003819 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003820 case MSR_IA32_UCODE_REV:
Wanpeng Li518e7b92018-02-28 14:03:31 +08003821 msr_info->data = vcpu->arch.microcode_version;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003822 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003823 case MSR_IA32_ARCH_CAPABILITIES:
3824 if (!msr_info->host_initiated &&
3825 !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES))
3826 return 1;
3827 msr_info->data = vcpu->arch.arch_capabilities;
3828 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003829 case MSR_IA32_PERF_CAPABILITIES:
3830 if (!msr_info->host_initiated &&
3831 !guest_cpuid_has(vcpu, X86_FEATURE_PDCM))
3832 return 1;
3833 msr_info->data = vcpu->arch.perf_capabilities;
3834 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003835 case MSR_IA32_POWER_CTL:
3836 msr_info->data = vcpu->arch.msr_ia32_power_ctl;
3837 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003838 case MSR_IA32_TSC: {
3839 /*
3840 * Intel SDM states that MSR_IA32_TSC read adds the TSC offset
3841 * even when not intercepted. AMD manual doesn't explicitly
3842 * state this but appears to behave the same.
3843 *
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003844 * On userspace reads and writes, however, we unconditionally
Paolo Bonzinic0623f52020-10-21 18:05:58 -04003845 * return L1's TSC value to ensure backwards-compatible
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003846 * behavior for migration.
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003847 */
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003848 u64 offset, ratio;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003849
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003850 if (msr_info->host_initiated) {
3851 offset = vcpu->arch.l1_tsc_offset;
3852 ratio = vcpu->arch.l1_tsc_scaling_ratio;
3853 } else {
3854 offset = vcpu->arch.tsc_offset;
3855 ratio = vcpu->arch.tsc_scaling_ratio;
3856 }
3857
3858 msr_info->data = kvm_scale_tsc(vcpu, rdtsc(), ratio) + offset;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003859 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003860 }
Avi Kivity9ba075a2008-05-26 20:06:35 +03003861 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03003862 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003863 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003864 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003865 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01003866 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02003867 /*
3868 * MSR_EBC_FREQUENCY_ID
3869 * Conservative value valid for even the basic CPU models.
3870 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
3871 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
3872 * and 266MHz for model 3, or 4. Set Core Clock
3873 * Frequency to System Bus Frequency Ratio to 1 (bits
3874 * 31:24) even though these are only valid for CPU
3875 * models > 2, however guests may end up dividing or
3876 * multiplying by zero otherwise.
3877 */
3878 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003879 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02003880 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003881 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003882 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01003883 break;
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003884 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003885 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003886 case MSR_IA32_TSC_DEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003887 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003888 break;
Will Auldba904632012-11-29 12:42:50 -08003889 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003890 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08003891 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003892 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003893 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01003894 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003895 case MSR_IA32_SMBASE:
3896 if (!msr_info->host_initiated)
3897 return 1;
3898 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01003899 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003900 case MSR_SMI_COUNT:
3901 msr_info->data = vcpu->arch.smi_count;
3902 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003903 case MSR_IA32_PERF_STATUS:
3904 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003905 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003906 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08003907 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01003908 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003909 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003910 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01003911 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003912 case MSR_KVM_WALL_CLOCK:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003913 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3914 return 1;
3915
3916 msr_info->data = vcpu->kvm->arch.wall_clock;
3917 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003918 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003919 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3920 return 1;
3921
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003922 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003923 break;
3924 case MSR_KVM_SYSTEM_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003925 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3926 return 1;
3927
3928 msr_info->data = vcpu->arch.time;
3929 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003930 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003931 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3932 return 1;
3933
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003934 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003935 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003936 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003937 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3938 return 1;
3939
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003940 msr_info->data = vcpu->arch.apf.msr_en_val;
3941 break;
3942 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003943 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3944 return 1;
3945
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003946 msr_info->data = vcpu->arch.apf.msr_int_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02003947 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003948 case MSR_KVM_ASYNC_PF_ACK:
Vitaly Kuznetsov0a31df62021-07-22 14:30:18 +02003949 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
Oliver Upton1930e5d2020-10-27 16:10:41 -07003950 return 1;
3951
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003952 msr_info->data = 0;
3953 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003954 case MSR_KVM_STEAL_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003955 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3956 return 1;
3957
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003958 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04003959 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003960 case MSR_KVM_PV_EOI_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003961 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3962 return 1;
3963
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003964 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003965 break;
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003966 case MSR_KVM_POLL_CONTROL:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003967 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3968 return 1;
3969
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003970 msr_info->data = vcpu->arch.msr_kvm_poll_control;
3971 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08003972 case MSR_IA32_P5_MC_ADDR:
3973 case MSR_IA32_P5_MC_TYPE:
3974 case MSR_IA32_MCG_CAP:
3975 case MSR_IA32_MCG_CTL:
3976 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003977 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003978 return get_msr_mce(vcpu, msr_info->index, &msr_info->data,
3979 msr_info->host_initiated);
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003980 case MSR_IA32_XSS:
3981 if (!msr_info->host_initiated &&
3982 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3983 return 1;
3984 msr_info->data = vcpu->arch.ia32_xss;
3985 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003986 case MSR_K7_CLK_CTL:
3987 /*
3988 * Provide expected ramp-up count for K7. All other
3989 * are set to zero, indicating minimum divisors for
3990 * every field.
3991 *
3992 * This prevents guest kernels on AMD host with CPU
3993 * type 6, model 8 and higher from exploding due to
3994 * the rdmsr failing.
3995 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003996 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003997 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003998 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003999 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
4000 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03004001 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
4002 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03004003 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01004004 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
4005 case HV_X64_MSR_TSC_EMULATION_CONTROL:
4006 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine83d5882015-07-03 15:01:34 +03004007 return kvm_hv_get_msr_common(vcpu,
Paolo Bonzini44883f02018-07-26 13:01:52 +02004008 msr_info->index, &msr_info->data,
4009 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05004010 case MSR_IA32_BBL_CR_CTL3:
4011 /* This legacy MSR exists but isn't fully documented in current
4012 * silicon. It is however accessed by winxp in very narrow
4013 * scenarios where it sets bit #19, itself documented as
4014 * a "reserved" bit. Best effort attempt to source coherent
4015 * read data here should the balance of the register be
4016 * interpreted by the guest:
4017 *
4018 * L2 cache control register 3: 64GB range, 256KB size,
4019 * enabled, latency 0x1, configured
4020 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004021 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05004022 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05004023 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02004024 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05004025 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004026 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05004027 break;
4028 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02004029 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05004030 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004031 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05004032 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07004033 case MSR_PLATFORM_INFO:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07004034 if (!msr_info->host_initiated &&
4035 !vcpu->kvm->arch.guest_can_read_msr_platform_info)
4036 return 1;
Kyle Hueydb2336a2017-03-20 01:16:28 -07004037 msr_info->data = vcpu->arch.msr_platform_info;
4038 break;
4039 case MSR_MISC_FEATURES_ENABLES:
4040 msr_info->data = vcpu->arch.msr_misc_features_enables;
4041 break;
Borislav Petkov191c8132019-04-18 18:32:50 +02004042 case MSR_K7_HWCR:
4043 msr_info->data = vcpu->arch.msr_hwcr;
4044 break;
Jing Liu820a6ee2022-01-05 04:35:21 -08004045#ifdef CONFIG_X86_64
4046 case MSR_IA32_XFD:
4047 if (!msr_info->host_initiated &&
4048 !guest_cpuid_has(vcpu, X86_FEATURE_XFD))
4049 return 1;
4050
4051 msr_info->data = vcpu->arch.guest_fpu.fpstate->xfd;
4052 break;
Jing Liu548e8362022-01-05 04:35:24 -08004053 case MSR_IA32_XFD_ERR:
4054 if (!msr_info->host_initiated &&
4055 !guest_cpuid_has(vcpu, X86_FEATURE_XFD))
4056 return 1;
4057
4058 msr_info->data = vcpu->arch.guest_fpu.xfd_err;
4059 break;
Jing Liu820a6ee2022-01-05 04:35:21 -08004060#endif
Carsten Otte15c4a642007-10-30 18:44:17 +01004061 default:
Wei Huangc6702c92015-06-19 13:44:45 +02004062 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08004063 return kvm_pmu_get_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04004064 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01004065 }
Carsten Otte15c4a642007-10-30 18:44:17 +01004066 return 0;
4067}
4068EXPORT_SYMBOL_GPL(kvm_get_msr_common);
4069
Carsten Otte313a3dc2007-10-11 19:16:52 +02004070/*
4071 * Read or write a bunch of msrs. All parameters are kernel addresses.
4072 *
4073 * @return number of msrs set successfully.
4074 */
4075static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
4076 struct kvm_msr_entry *entries,
4077 int (*do_msr)(struct kvm_vcpu *vcpu,
4078 unsigned index, u64 *data))
4079{
Tom Lendacky801e4592018-02-21 13:39:51 -06004080 int i;
Carsten Otte313a3dc2007-10-11 19:16:52 +02004081
Carsten Otte313a3dc2007-10-11 19:16:52 +02004082 for (i = 0; i < msrs->nmsrs; ++i)
4083 if (do_msr(vcpu, entries[i].index, &entries[i].data))
4084 break;
4085
Carsten Otte313a3dc2007-10-11 19:16:52 +02004086 return i;
4087}
4088
4089/*
4090 * Read or write a bunch of msrs. Parameters are user addresses.
4091 *
4092 * @return number of msrs set successfully.
4093 */
4094static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
4095 int (*do_msr)(struct kvm_vcpu *vcpu,
4096 unsigned index, u64 *data),
4097 int writeback)
4098{
4099 struct kvm_msrs msrs;
4100 struct kvm_msr_entry *entries;
4101 int r, n;
4102 unsigned size;
4103
4104 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004105 if (copy_from_user(&msrs, user_msrs, sizeof(msrs)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02004106 goto out;
4107
4108 r = -E2BIG;
4109 if (msrs.nmsrs >= MAX_IO_MSRS)
4110 goto out;
4111
Carsten Otte313a3dc2007-10-11 19:16:52 +02004112 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004113 entries = memdup_user(user_msrs->entries, size);
4114 if (IS_ERR(entries)) {
4115 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004116 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004117 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02004118
4119 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
4120 if (r < 0)
4121 goto out_free;
4122
4123 r = -EFAULT;
4124 if (writeback && copy_to_user(user_msrs->entries, entries, size))
4125 goto out_free;
4126
4127 r = n;
4128
4129out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03004130 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004131out:
4132 return r;
4133}
4134
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004135static inline bool kvm_can_mwait_in_guest(void)
4136{
4137 return boot_cpu_has(X86_FEATURE_MWAIT) &&
KarimAllah Ahmed8e9b29b2018-04-11 11:16:03 +02004138 !boot_cpu_has_bug(X86_BUG_MONITOR) &&
4139 boot_cpu_has(X86_FEATURE_ARAT);
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004140}
4141
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004142static int kvm_ioctl_get_supported_hv_cpuid(struct kvm_vcpu *vcpu,
4143 struct kvm_cpuid2 __user *cpuid_arg)
4144{
4145 struct kvm_cpuid2 cpuid;
4146 int r;
4147
4148 r = -EFAULT;
4149 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
4150 return r;
4151
4152 r = kvm_get_hv_cpuid(vcpu, &cpuid, cpuid_arg->entries);
4153 if (r)
4154 return r;
4155
4156 r = -EFAULT;
4157 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
4158 return r;
4159
4160 return 0;
4161}
4162
Alexander Graf784aa3d2014-07-14 18:27:35 +02004163int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004164{
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004165 int r = 0;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004166
4167 switch (ext) {
4168 case KVM_CAP_IRQCHIP:
4169 case KVM_CAP_HLT:
4170 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004171 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02004172 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004173 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01004174 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08004175 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05004176 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03004177 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03004178 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08004179 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004180 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02004181 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04004182 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03004183 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02004184 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04004185 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08004186 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004187 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02004188 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02004189 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02004190 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004191 case KVM_CAP_HYPERV_SYNIC:
Roman Kaganefc479e2017-06-22 16:51:01 +03004192 case KVM_CAP_HYPERV_SYNIC2:
Roman Kagand3457c82017-07-14 17:13:20 +03004193 case KVM_CAP_HYPERV_VP_INDEX:
Roman Kaganfaeb7832018-02-01 16:48:32 +03004194 case KVM_CAP_HYPERV_EVENTFD:
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02004195 case KVM_CAP_HYPERV_TLBFLUSH:
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02004196 case KVM_CAP_HYPERV_SEND_IPI:
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004197 case KVM_CAP_HYPERV_CPUID:
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02004198 case KVM_CAP_HYPERV_ENFORCE_CPUID:
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004199 case KVM_CAP_SYS_HYPERV_CPUID:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08004200 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004201 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01004202 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004203 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02004204 case KVM_CAP_ASYNC_PF:
Vitaly Kuznetsov72de5fa4c2020-05-25 16:41:22 +02004205 case KVM_CAP_ASYNC_PF_INT:
Joerg Roedel92a1f122011-03-25 09:44:51 +01004206 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004207 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08004208 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01004209 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05004210 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01004211 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03004212 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004213 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07004214 case KVM_CAP_SPLIT_IRQCHIP:
Paolo Bonzini460df4c2017-02-08 11:50:15 +01004215 case KVM_CAP_IMMEDIATE_EXIT:
Eric Hankland66bb8a02019-07-10 18:25:15 -07004216 case KVM_CAP_PMU_EVENT_FILTER:
Tom Lendacky801e4592018-02-21 13:39:51 -06004217 case KVM_CAP_GET_MSR_FEATURES:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07004218 case KVM_CAP_MSR_PLATFORM_INFO:
Jim Mattsonc4f55192018-10-16 14:29:24 -07004219 case KVM_CAP_EXCEPTION_PAYLOAD:
Peter Xub9b27822020-05-05 11:47:50 -04004220 case KVM_CAP_SET_GUEST_DEBUG:
Jim Mattson1aa561b2020-06-03 16:56:21 -07004221 case KVM_CAP_LAST_CPU:
Alexander Graf1ae09952020-09-25 16:34:16 +02004222 case KVM_CAP_X86_USER_SPACE_MSR:
Alexander Graf1a1552542020-09-25 16:34:21 +02004223 case KVM_CAP_X86_MSR_FILTER:
Oliver Upton66570e92020-08-18 15:24:28 +00004224 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
Sean Christophersonfe7e9482021-04-12 16:21:43 +12004225#ifdef CONFIG_X86_SGX_KVM
4226 case KVM_CAP_SGX_ATTRIBUTE:
4227#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00004228 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
Paolo Bonzini30d7c5d2021-11-18 04:41:34 -05004229 case KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM:
Maxim Levitsky6dba9402021-06-07 12:02:02 +03004230 case KVM_CAP_SREGS2:
Aaron Lewis19238e72021-05-10 07:48:33 -07004231 case KVM_CAP_EXIT_ON_EMULATION_FAILURE:
Oliver Upton828ca892021-09-16 18:15:38 +00004232 case KVM_CAP_VCPU_ATTRIBUTES:
Paolo Bonzinidd6e6312022-01-26 07:49:45 -05004233 case KVM_CAP_SYS_ATTRIBUTES:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004234 r = 1;
4235 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00004236 case KVM_CAP_EXIT_HYPERCALL:
4237 r = KVM_EXIT_HYPERCALL_VALID_MASK;
4238 break;
Maxim Levitsky7e582cc2021-04-01 16:54:45 +03004239 case KVM_CAP_SET_GUEST_DEBUG2:
4240 return KVM_GUESTDBG_VALID_MASK;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004241#ifdef CONFIG_KVM_XEN
Joao Martins23200b72018-06-13 09:55:44 -04004242 case KVM_CAP_XEN_HVM:
4243 r = KVM_XEN_HVM_CONFIG_HYPERCALL_MSR |
David Woodhouse8d4e7e82020-12-04 01:02:04 +00004244 KVM_XEN_HVM_CONFIG_INTERCEPT_HCALL |
David Woodhouse14243b32021-12-10 16:36:23 +00004245 KVM_XEN_HVM_CONFIG_SHARED_INFO |
4246 KVM_XEN_HVM_CONFIG_EVTCHN_2LEVEL;
David Woodhouse30b5c852021-03-01 12:53:09 +00004247 if (sched_info_on())
4248 r |= KVM_XEN_HVM_CONFIG_RUNSTATE;
Joao Martins23200b72018-06-13 09:55:44 -04004249 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004250#endif
Ken Hofsass01643c52018-01-31 16:03:36 -08004251 case KVM_CAP_SYNC_REGS:
4252 r = KVM_SYNC_X86_VALID_FIELDS;
4253 break;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004254 case KVM_CAP_ADJUST_CLOCK:
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00004255 r = KVM_CLOCK_VALID_FLAGS;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004256 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004257 case KVM_CAP_X86_DISABLE_EXITS:
Wanpeng Lib5170062019-05-21 14:06:53 +08004258 r |= KVM_X86_DISABLE_EXITS_HLT | KVM_X86_DISABLE_EXITS_PAUSE |
4259 KVM_X86_DISABLE_EXITS_CSTATE;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004260 if(kvm_can_mwait_in_guest())
4261 r |= KVM_X86_DISABLE_EXITS_MWAIT;
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02004262 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004263 case KVM_CAP_X86_SMM:
4264 /* SMBASE is usually relocated above 1M on modern chipsets,
4265 * and SMM handlers might indeed rely on 4G segment limits,
4266 * so do not report SMM to be available if real mode is
4267 * emulated via vm86 mode. Still, do not go to great lengths
4268 * to avoid userspace's usage of the feature, because it is a
4269 * fringe case that is not enabled except via specific settings
4270 * of the module parameters.
4271 */
Jason Baronb36464772021-01-14 22:27:56 -05004272 r = static_call(kvm_x86_has_emulated_msr)(kvm, MSR_IA32_SMBASE);
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004273 break;
Avi Kivity774ead32007-12-26 13:57:04 +02004274 case KVM_CAP_VAPIC:
Jason Baronb36464772021-01-14 22:27:56 -05004275 r = !static_call(kvm_x86_cpu_has_accelerated_tpr)();
Avi Kivity774ead32007-12-26 13:57:04 +02004276 break;
Avi Kivityf7252302008-02-20 11:53:16 +02004277 case KVM_CAP_NR_VCPUS:
Vitaly Kuznetsov2845e732021-11-16 17:34:43 +01004278 r = min_t(unsigned int, num_online_cpus(), KVM_MAX_VCPUS);
Sasha Levin8c3ba332011-07-18 17:17:15 +03004279 break;
4280 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02004281 r = KVM_MAX_VCPUS;
4282 break;
Thomas Hutha86cb412019-05-23 18:43:08 +02004283 case KVM_CAP_MAX_VCPU_ID:
Juergen Grossa1c42dd2021-09-13 15:57:44 +02004284 r = KVM_MAX_VCPU_IDS;
Thomas Hutha86cb412019-05-23 18:43:08 +02004285 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03004286 case KVM_CAP_PV_MMU: /* obsolete */
4287 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05004288 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08004289 case KVM_CAP_MCE:
4290 r = KVM_MAX_MCE_BANKS;
4291 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004292 case KVM_CAP_XCRS:
Borislav Petkovd366bf72016-04-04 22:25:02 +02004293 r = boot_cpu_has(X86_FEATURE_XSAVE);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004294 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01004295 case KVM_CAP_TSC_CONTROL:
4296 r = kvm_has_tsc_control;
4297 break;
Radim Krčmář371313132016-07-12 22:09:27 +02004298 case KVM_CAP_X2APIC_API:
4299 r = KVM_X2APIC_API_VALID_FLAGS;
4300 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004301 case KVM_CAP_NESTED_STATE:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004302 r = kvm_x86_ops.nested_ops->get_state ?
4303 kvm_x86_ops.nested_ops->get_state(NULL, NULL, 0) : 0;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004304 break;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004305 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004306 r = kvm_x86_ops.enable_direct_tlbflush != NULL;
Vitaly Kuznetsov5a0165f2019-08-28 09:59:05 +02004307 break;
4308 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004309 r = kvm_x86_ops.nested_ops->enable_evmcs != NULL;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004310 break;
Mohammed Gamal3edd6832020-07-10 17:48:11 +02004311 case KVM_CAP_SMALLER_MAXPHYADDR:
4312 r = (int) allow_smaller_maxphyaddr;
4313 break;
Andrew Jones004a0122020-08-04 19:06:04 +02004314 case KVM_CAP_STEAL_TIME:
4315 r = sched_info_on();
4316 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08004317 case KVM_CAP_X86_BUS_LOCK_EXIT:
4318 if (kvm_has_bus_lock_exit)
4319 r = KVM_BUS_LOCK_DETECTION_OFF |
4320 KVM_BUS_LOCK_DETECTION_EXIT;
4321 else
4322 r = 0;
4323 break;
Guang Zengbe50b202022-01-05 04:35:29 -08004324 case KVM_CAP_XSAVE2: {
4325 u64 guest_perm = xstate_get_guest_group_perm();
4326
4327 r = xstate_required_size(supported_xcr0 & guest_perm, false);
4328 if (r < sizeof(struct kvm_xsave))
4329 r = sizeof(struct kvm_xsave);
4330 break;
4331 }
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004332 default:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004333 break;
4334 }
4335 return r;
Sean Christopherson56f289a2022-01-27 07:31:53 -08004336}
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004337
Sean Christopherson56f289a2022-01-27 07:31:53 -08004338static inline void __user *kvm_get_attr_addr(struct kvm_device_attr *attr)
4339{
4340 void __user *uaddr = (void __user*)(unsigned long)attr->addr;
4341
4342 if ((u64)(unsigned long)uaddr != attr->addr)
4343 return ERR_PTR(-EFAULT);
4344 return uaddr;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004345}
4346
Paolo Bonzinidd6e6312022-01-26 07:49:45 -05004347static int kvm_x86_dev_get_attr(struct kvm_device_attr *attr)
4348{
4349 u64 __user *uaddr = kvm_get_attr_addr(attr);
4350
4351 if (attr->group)
4352 return -ENXIO;
4353
4354 if (IS_ERR(uaddr))
4355 return PTR_ERR(uaddr);
4356
4357 switch (attr->attr) {
4358 case KVM_X86_XCOMP_GUEST_SUPP:
4359 if (put_user(supported_xcr0, uaddr))
4360 return -EFAULT;
4361 return 0;
4362 default:
4363 return -ENXIO;
4364 break;
4365 }
4366}
4367
4368static int kvm_x86_dev_has_attr(struct kvm_device_attr *attr)
4369{
4370 if (attr->group)
4371 return -ENXIO;
4372
4373 switch (attr->attr) {
4374 case KVM_X86_XCOMP_GUEST_SUPP:
4375 return 0;
4376 default:
4377 return -ENXIO;
4378 }
4379}
4380
Carsten Otte043405e2007-10-10 17:16:19 +02004381long kvm_arch_dev_ioctl(struct file *filp,
4382 unsigned int ioctl, unsigned long arg)
4383{
4384 void __user *argp = (void __user *)arg;
4385 long r;
4386
4387 switch (ioctl) {
4388 case KVM_GET_MSR_INDEX_LIST: {
4389 struct kvm_msr_list __user *user_msr_list = argp;
4390 struct kvm_msr_list msr_list;
4391 unsigned n;
4392
4393 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004394 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004395 goto out;
4396 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004397 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004398 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004399 goto out;
4400 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004401 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02004402 goto out;
4403 r = -EFAULT;
4404 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
4405 num_msrs_to_save * sizeof(u32)))
4406 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004407 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02004408 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004409 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02004410 goto out;
4411 r = 0;
4412 break;
4413 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004414 case KVM_GET_SUPPORTED_CPUID:
4415 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02004416 struct kvm_cpuid2 __user *cpuid_arg = argp;
4417 struct kvm_cpuid2 cpuid;
4418
4419 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004420 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004421 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004422
4423 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
4424 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02004425 if (r)
4426 goto out;
4427
4428 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004429 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004430 goto out;
4431 r = 0;
4432 break;
4433 }
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004434 case KVM_X86_GET_MCE_CAP_SUPPORTED:
Huang Ying890ca9a2009-05-11 16:48:15 +08004435 r = -EFAULT;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004436 if (copy_to_user(argp, &kvm_mce_cap_supported,
4437 sizeof(kvm_mce_cap_supported)))
Huang Ying890ca9a2009-05-11 16:48:15 +08004438 goto out;
4439 r = 0;
4440 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06004441 case KVM_GET_MSR_FEATURE_INDEX_LIST: {
4442 struct kvm_msr_list __user *user_msr_list = argp;
4443 struct kvm_msr_list msr_list;
4444 unsigned int n;
4445
4446 r = -EFAULT;
4447 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
4448 goto out;
4449 n = msr_list.nmsrs;
4450 msr_list.nmsrs = num_msr_based_features;
4451 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
4452 goto out;
4453 r = -E2BIG;
4454 if (n < msr_list.nmsrs)
4455 goto out;
4456 r = -EFAULT;
4457 if (copy_to_user(user_msr_list->indices, &msr_based_features,
4458 num_msr_based_features * sizeof(u32)))
4459 goto out;
4460 r = 0;
4461 break;
4462 }
4463 case KVM_GET_MSRS:
4464 r = msr_io(NULL, argp, do_get_msr_feature, 1);
4465 break;
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004466 case KVM_GET_SUPPORTED_HV_CPUID:
4467 r = kvm_ioctl_get_supported_hv_cpuid(NULL, argp);
4468 break;
Paolo Bonzinidd6e6312022-01-26 07:49:45 -05004469 case KVM_GET_DEVICE_ATTR: {
4470 struct kvm_device_attr attr;
4471 r = -EFAULT;
4472 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
4473 break;
4474 r = kvm_x86_dev_get_attr(&attr);
4475 break;
4476 }
4477 case KVM_HAS_DEVICE_ATTR: {
4478 struct kvm_device_attr attr;
4479 r = -EFAULT;
4480 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
4481 break;
4482 r = kvm_x86_dev_has_attr(&attr);
4483 break;
4484 }
Carsten Otte043405e2007-10-10 17:16:19 +02004485 default:
4486 r = -EINVAL;
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004487 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004488 }
4489out:
4490 return r;
4491}
4492
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004493static void wbinvd_ipi(void *garbage)
4494{
4495 wbinvd();
4496}
4497
4498static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
4499{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06004500 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004501}
4502
Carsten Otte313a3dc2007-10-11 19:16:52 +02004503void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
4504{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004505 /* Address WBINVD may be executed by guest */
4506 if (need_emulate_wbinvd(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05004507 if (static_call(kvm_x86_has_wbinvd_exit)())
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004508 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
4509 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
4510 smp_call_function_single(vcpu->cpu,
4511 wbinvd_ipi, NULL, 1);
4512 }
4513
Jason Baronb36464772021-01-14 22:27:56 -05004514 static_call(kvm_x86_vcpu_load)(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004515
Babu Moger37486132020-05-12 18:59:06 -05004516 /* Save host pkru register if supported */
4517 vcpu->arch.host_pkru = read_pkru();
4518
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004519 /* Apply any externally detected TSC adjustments (due to suspend) */
4520 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
4521 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
4522 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08004523 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004524 }
4525
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004526 if (unlikely(vcpu->cpu != cpu) || kvm_check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02004527 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004528 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10004529 if (tsc_delta < 0)
4530 mark_tsc_unstable("KVM discovered backwards TSC");
Yunhong Jiangce7a0582016-06-13 14:20:01 -07004531
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004532 if (kvm_check_tsc_unstable()) {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01004533 u64 offset = kvm_compute_l1_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02004534 vcpu->arch.last_guest_tsc);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04004535 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004536 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10004537 }
Paolo Bonzinia749e242017-06-29 17:14:50 +02004538
4539 if (kvm_lapic_hv_timer_in_use(vcpu))
4540 kvm_lapic_restart_hv_timer(vcpu);
4541
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02004542 /*
4543 * On a host with synchronized TSC, there is no need to update
4544 * kvmclock on vcpu->cpu migration
4545 */
4546 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03004547 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004548 if (vcpu->cpu != cpu)
Radim Krčmář1bd20092017-04-26 22:32:20 +02004549 kvm_make_request(KVM_REQ_MIGRATE_TIMER, vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10004550 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10004551 }
Glauber Costac9aaa892011-07-11 15:28:14 -04004552
Glauber Costac9aaa892011-07-11 15:28:14 -04004553 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004554}
4555
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004556static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu)
4557{
David Woodhouse7e2175e2021-11-02 17:36:39 +00004558 struct gfn_to_hva_cache *ghc = &vcpu->arch.st.cache;
4559 struct kvm_steal_time __user *st;
4560 struct kvm_memslots *slots;
4561 static const u8 preempted = KVM_VCPU_PREEMPTED;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004562
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004563 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
4564 return;
4565
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00004566 if (vcpu->arch.st.preempted)
Boris Ostrovsky8c6de562019-10-30 19:01:31 +00004567 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004568
David Woodhouse7e2175e2021-11-02 17:36:39 +00004569 /* This happens on process exit */
4570 if (unlikely(current->mm != vcpu->kvm->mm))
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004571 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004572
David Woodhouse7e2175e2021-11-02 17:36:39 +00004573 slots = kvm_memslots(vcpu->kvm);
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004574
David Woodhouse7e2175e2021-11-02 17:36:39 +00004575 if (unlikely(slots->generation != ghc->generation ||
4576 kvm_is_error_hva(ghc->hva) || !ghc->memslot))
4577 return;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004578
David Woodhouse7e2175e2021-11-02 17:36:39 +00004579 st = (struct kvm_steal_time __user *)ghc->hva;
4580 BUILD_BUG_ON(sizeof(st->preempted) != sizeof(preempted));
4581
4582 if (!copy_to_user_nofault(&st->preempted, &preempted, sizeof(preempted)))
4583 vcpu->arch.st.preempted = KVM_VCPU_PREEMPTED;
4584
4585 mark_page_dirty_in_slot(vcpu->kvm, ghc->memslot, gpa_to_gfn(ghc->gpa));
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004586}
4587
Carsten Otte313a3dc2007-10-11 19:16:52 +02004588void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
4589{
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004590 int idx;
4591
Tom Lendackyf1c63662020-12-14 10:29:50 -05004592 if (vcpu->preempted && !vcpu->arch.guest_state_protected)
Jason Baronb36464772021-01-14 22:27:56 -05004593 vcpu->arch.preempted_in_kernel = !static_call(kvm_x86_get_cpl)(vcpu);
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004594
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004595 /*
4596 * Take the srcu lock as memslots will be accessed to check the gfn
4597 * cache generation against the memslots generation.
4598 */
4599 idx = srcu_read_lock(&vcpu->kvm->srcu);
David Woodhouse30b5c852021-03-01 12:53:09 +00004600 if (kvm_xen_msr_enabled(vcpu->kvm))
4601 kvm_xen_runstate_set_preempted(vcpu);
4602 else
4603 kvm_steal_time_set_preempted(vcpu);
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004604 srcu_read_unlock(&vcpu->kvm->srcu, idx);
David Woodhouse30b5c852021-03-01 12:53:09 +00004605
Jason Baronb36464772021-01-14 22:27:56 -05004606 static_call(kvm_x86_vcpu_put)(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004607 vcpu->arch.last_host_tsc = rdtsc();
Carsten Otte313a3dc2007-10-11 19:16:52 +02004608}
4609
Carsten Otte313a3dc2007-10-11 19:16:52 +02004610static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
4611 struct kvm_lapic_state *s)
4612{
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -05004613 static_call_cond(kvm_x86_sync_pir_to_irr)(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004614
Radim Krčmářa92e2542016-07-12 22:09:22 +02004615 return kvm_apic_get_state(vcpu, s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004616}
4617
4618static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
4619 struct kvm_lapic_state *s)
4620{
Radim Krčmářa92e2542016-07-12 22:09:22 +02004621 int r;
4622
4623 r = kvm_apic_set_state(vcpu, s);
4624 if (r)
4625 return r;
Gleb Natapovcb142eb2009-08-09 15:17:40 +03004626 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004627
4628 return 0;
4629}
4630
Matt Gingell127a4572015-11-17 17:32:05 +01004631static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
4632{
Paolo Bonzini71cc8492020-11-27 09:18:20 +01004633 /*
4634 * We can accept userspace's request for interrupt injection
4635 * as long as we have a place to store the interrupt number.
4636 * The actual injection will happen when the CPU is able to
4637 * deliver the interrupt.
4638 */
4639 if (kvm_cpu_has_extint(vcpu))
4640 return false;
4641
4642 /* Acknowledging ExtINT does not happen if LINT0 is masked. */
Matt Gingell127a4572015-11-17 17:32:05 +01004643 return (!lapic_in_kernel(vcpu) ||
4644 kvm_apic_accept_pic_intr(vcpu));
4645}
4646
Matt Gingell782d4222015-11-16 15:26:00 -08004647static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
4648{
Paolo Bonzinifa7a5492021-07-14 17:37:49 -04004649 /*
4650 * Do not cause an interrupt window exit if an exception
4651 * is pending or an event needs reinjection; userspace
4652 * might want to inject the interrupt manually using KVM_SET_REGS
4653 * or KVM_SET_SREGS. For that to work, we must be at an
4654 * instruction boundary and with no events half-injected.
4655 */
4656 return (kvm_arch_interrupt_allowed(vcpu) &&
4657 kvm_cpu_accept_dm_intr(vcpu) &&
4658 !kvm_event_needs_reinjection(vcpu) &&
4659 !vcpu->arch.exception.pending);
Matt Gingell782d4222015-11-16 15:26:00 -08004660}
4661
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004662static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
4663 struct kvm_interrupt *irq)
4664{
Chen Gang02cdb502013-02-27 11:33:25 +08004665 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004666 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004667
4668 if (!irqchip_in_kernel(vcpu->kvm)) {
4669 kvm_queue_interrupt(vcpu, irq->irq, false);
4670 kvm_make_request(KVM_REQ_EVENT, vcpu);
4671 return 0;
4672 }
4673
4674 /*
4675 * With in-kernel LAPIC, we only use this to inject EXTINT, so
4676 * fail for in-kernel 8259.
4677 */
4678 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004679 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004680
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004681 if (vcpu->arch.pending_external_vector != -1)
4682 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004683
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004684 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08004685 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004686 return 0;
4687}
4688
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004689static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
4690{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004691 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004692
4693 return 0;
4694}
4695
Paolo Bonzinif0778252015-04-01 15:06:40 +02004696static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
4697{
Paolo Bonzini64d60672015-05-07 11:36:11 +02004698 kvm_make_request(KVM_REQ_SMI, vcpu);
4699
Paolo Bonzinif0778252015-04-01 15:06:40 +02004700 return 0;
4701}
4702
Avi Kivityb209749f2007-10-22 16:50:39 +02004703static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
4704 struct kvm_tpr_access_ctl *tac)
4705{
4706 if (tac->flags)
4707 return -EINVAL;
4708 vcpu->arch.tpr_access_reporting = !!tac->enabled;
4709 return 0;
4710}
4711
Huang Ying890ca9a2009-05-11 16:48:15 +08004712static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
4713 u64 mcg_cap)
4714{
4715 int r;
4716 unsigned bank_num = mcg_cap & 0xff, bank;
4717
4718 r = -EINVAL;
Jim Mattsonc4e0e4ab2020-05-11 15:56:16 -07004719 if (!bank_num || bank_num > KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08004720 goto out;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004721 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
Huang Ying890ca9a2009-05-11 16:48:15 +08004722 goto out;
4723 r = 0;
4724 vcpu->arch.mcg_cap = mcg_cap;
4725 /* Init IA32_MCG_CTL to all 1s */
4726 if (mcg_cap & MCG_CTL_P)
4727 vcpu->arch.mcg_ctl = ~(u64)0;
4728 /* Init IA32_MCi_CTL to all 1s */
4729 for (bank = 0; bank < bank_num; bank++)
4730 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004731
Jason Baronb36464772021-01-14 22:27:56 -05004732 static_call(kvm_x86_setup_mce)(vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004733out:
4734 return r;
4735}
4736
4737static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
4738 struct kvm_x86_mce *mce)
4739{
4740 u64 mcg_cap = vcpu->arch.mcg_cap;
4741 unsigned bank_num = mcg_cap & 0xff;
4742 u64 *banks = vcpu->arch.mce_banks;
4743
4744 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
4745 return -EINVAL;
4746 /*
4747 * if IA32_MCG_CTL is not all 1s, the uncorrected error
4748 * reporting is disabled
4749 */
4750 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
4751 vcpu->arch.mcg_ctl != ~(u64)0)
4752 return 0;
4753 banks += 4 * mce->bank;
4754 /*
4755 * if IA32_MCi_CTL is not all 1s, the uncorrected error
4756 * reporting is disabled for the bank
4757 */
4758 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
4759 return 0;
4760 if (mce->status & MCI_STATUS_UC) {
4761 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02004762 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03004763 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004764 return 0;
4765 }
4766 if (banks[1] & MCI_STATUS_VAL)
4767 mce->status |= MCI_STATUS_OVER;
4768 banks[2] = mce->addr;
4769 banks[3] = mce->misc;
4770 vcpu->arch.mcg_status = mce->mcg_status;
4771 banks[1] = mce->status;
4772 kvm_queue_exception(vcpu, MC_VECTOR);
4773 } else if (!(banks[1] & MCI_STATUS_VAL)
4774 || !(banks[1] & MCI_STATUS_UC)) {
4775 if (banks[1] & MCI_STATUS_VAL)
4776 mce->status |= MCI_STATUS_OVER;
4777 banks[2] = mce->addr;
4778 banks[3] = mce->misc;
4779 banks[1] = mce->status;
4780 } else
4781 banks[1] |= MCI_STATUS_OVER;
4782 return 0;
4783}
4784
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004785static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
4786 struct kvm_vcpu_events *events)
4787{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004788 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004789
Jay Zhou1f7becf2021-01-18 16:47:20 +08004790 if (kvm_check_request(KVM_REQ_SMI, vcpu))
4791 process_smi(vcpu);
4792
Wanpeng Li664f8e22017-08-24 03:35:09 -07004793 /*
Oliver Uptona06230b2020-02-07 02:36:06 -08004794 * In guest mode, payload delivery should be deferred,
4795 * so that the L1 hypervisor can intercept #PF before
4796 * CR2 is modified (or intercept #DB before DR6 is
4797 * modified under nVMX). Unless the per-VM capability,
4798 * KVM_CAP_EXCEPTION_PAYLOAD, is set, we may not defer the delivery of
4799 * an exception payload and handle after a KVM_GET_VCPU_EVENTS. Since we
4800 * opportunistically defer the exception payload, deliver it if the
4801 * capability hasn't been requested before processing a
4802 * KVM_GET_VCPU_EVENTS.
4803 */
4804 if (!vcpu->kvm->arch.exception_payload_enabled &&
4805 vcpu->arch.exception.pending && vcpu->arch.exception.has_payload)
4806 kvm_deliver_exception_payload(vcpu);
4807
4808 /*
Jim Mattson59073aa2018-10-16 14:29:20 -07004809 * The API doesn't provide the instruction length for software
4810 * exceptions, so don't report them. As long as the guest RIP
4811 * isn't advanced, we should expect to encounter the exception
4812 * again.
Wanpeng Li664f8e22017-08-24 03:35:09 -07004813 */
Jim Mattson59073aa2018-10-16 14:29:20 -07004814 if (kvm_exception_is_soft(vcpu->arch.exception.nr)) {
4815 events->exception.injected = 0;
4816 events->exception.pending = 0;
4817 } else {
4818 events->exception.injected = vcpu->arch.exception.injected;
4819 events->exception.pending = vcpu->arch.exception.pending;
4820 /*
4821 * For ABI compatibility, deliberately conflate
4822 * pending and injected exceptions when
4823 * KVM_CAP_EXCEPTION_PAYLOAD isn't enabled.
4824 */
4825 if (!vcpu->kvm->arch.exception_payload_enabled)
4826 events->exception.injected |=
4827 vcpu->arch.exception.pending;
4828 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004829 events->exception.nr = vcpu->arch.exception.nr;
4830 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
4831 events->exception.error_code = vcpu->arch.exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004832 events->exception_has_payload = vcpu->arch.exception.has_payload;
4833 events->exception_payload = vcpu->arch.exception.payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004834
Jan Kiszka03b82a32010-02-15 10:45:41 +01004835 events->interrupt.injected =
Liran Alon04140b42018-03-23 03:01:31 +03004836 vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004837 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01004838 events->interrupt.soft = 0;
Jason Baronb36464772021-01-14 22:27:56 -05004839 events->interrupt.shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004840
4841 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004842 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jason Baronb36464772021-01-14 22:27:56 -05004843 events->nmi.masked = static_call(kvm_x86_get_nmi_mask)(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004844 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004845
Jan Kiszka66450a22013-03-13 12:42:34 +01004846 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004847
Paolo Bonzinif0778252015-04-01 15:06:40 +02004848 events->smi.smm = is_smm(vcpu);
4849 events->smi.pending = vcpu->arch.smi_pending;
4850 events->smi.smm_inside_nmi =
4851 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
4852 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
4853
Jan Kiszkadab4b912009-12-06 18:24:15 +01004854 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02004855 | KVM_VCPUEVENT_VALID_SHADOW
4856 | KVM_VCPUEVENT_VALID_SMM);
Jim Mattson59073aa2018-10-16 14:29:20 -07004857 if (vcpu->kvm->arch.exception_payload_enabled)
4858 events->flags |= KVM_VCPUEVENT_VALID_PAYLOAD;
4859
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004860 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004861}
4862
Sean Christophersondc872752021-06-09 11:56:15 -07004863static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004864
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004865static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
4866 struct kvm_vcpu_events *events)
4867{
Jan Kiszkadab4b912009-12-06 18:24:15 +01004868 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01004869 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02004870 | KVM_VCPUEVENT_VALID_SHADOW
Jim Mattson59073aa2018-10-16 14:29:20 -07004871 | KVM_VCPUEVENT_VALID_SMM
4872 | KVM_VCPUEVENT_VALID_PAYLOAD))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004873 return -EINVAL;
4874
Jim Mattson59073aa2018-10-16 14:29:20 -07004875 if (events->flags & KVM_VCPUEVENT_VALID_PAYLOAD) {
4876 if (!vcpu->kvm->arch.exception_payload_enabled)
4877 return -EINVAL;
4878 if (events->exception.pending)
4879 events->exception.injected = 0;
4880 else
4881 events->exception_has_payload = 0;
4882 } else {
4883 events->exception.pending = 0;
4884 events->exception_has_payload = 0;
4885 }
4886
4887 if ((events->exception.injected || events->exception.pending) &&
4888 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR))
Paolo Bonzini78e546c2016-06-01 14:09:20 +02004889 return -EINVAL;
4890
David Hildenbrand28bf2882017-03-23 11:46:03 +01004891 /* INITs are latched while in SMM */
4892 if (events->flags & KVM_VCPUEVENT_VALID_SMM &&
4893 (events->smi.smm || events->smi.pending) &&
4894 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED)
4895 return -EINVAL;
4896
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004897 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004898 vcpu->arch.exception.injected = events->exception.injected;
4899 vcpu->arch.exception.pending = events->exception.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004900 vcpu->arch.exception.nr = events->exception.nr;
4901 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
4902 vcpu->arch.exception.error_code = events->exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004903 vcpu->arch.exception.has_payload = events->exception_has_payload;
4904 vcpu->arch.exception.payload = events->exception_payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004905
Liran Alon04140b42018-03-23 03:01:31 +03004906 vcpu->arch.interrupt.injected = events->interrupt.injected;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004907 vcpu->arch.interrupt.nr = events->interrupt.nr;
4908 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01004909 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
Jason Baronb36464772021-01-14 22:27:56 -05004910 static_call(kvm_x86_set_interrupt_shadow)(vcpu,
4911 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004912
4913 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01004914 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
4915 vcpu->arch.nmi_pending = events->nmi.pending;
Jason Baronb36464772021-01-14 22:27:56 -05004916 static_call(kvm_x86_set_nmi_mask)(vcpu, events->nmi.masked);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004917
Jan Kiszka66450a22013-03-13 12:42:34 +01004918 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004919 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01004920 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004921
Paolo Bonzinif0778252015-04-01 15:06:40 +02004922 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
Sean Christophersonf7e57072022-01-25 22:03:58 +00004923 if (!!(vcpu->arch.hflags & HF_SMM_MASK) != events->smi.smm) {
4924 kvm_x86_ops.nested_ops->leave_nested(vcpu);
Sean Christophersondc872752021-06-09 11:56:15 -07004925 kvm_smm_changed(vcpu, events->smi.smm);
Sean Christophersonf7e57072022-01-25 22:03:58 +00004926 }
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004927
Paolo Bonzinif0778252015-04-01 15:06:40 +02004928 vcpu->arch.smi_pending = events->smi.pending;
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004929
4930 if (events->smi.smm) {
4931 if (events->smi.smm_inside_nmi)
4932 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinif0778252015-04-01 15:06:40 +02004933 else
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004934 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Liran Alonff90afa2019-11-11 11:16:39 +02004935 }
4936
4937 if (lapic_in_kernel(vcpu)) {
4938 if (events->smi.latched_init)
4939 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
4940 else
4941 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
Paolo Bonzinif0778252015-04-01 15:06:40 +02004942 }
4943 }
4944
Avi Kivity3842d132010-07-27 12:30:24 +03004945 kvm_make_request(KVM_REQ_EVENT, vcpu);
4946
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004947 return 0;
4948}
4949
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004950static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
4951 struct kvm_debugregs *dbgregs)
4952{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004953 unsigned long val;
4954
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004955 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004956 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004957 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004958 dbgregs->dr7 = vcpu->arch.dr7;
4959 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004960 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004961}
4962
4963static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
4964 struct kvm_debugregs *dbgregs)
4965{
4966 if (dbgregs->flags)
4967 return -EINVAL;
4968
Paolo Bonzinifd238002020-11-13 08:31:09 -05004969 if (!kvm_dr6_valid(dbgregs->dr6))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004970 return -EINVAL;
Paolo Bonzinifd238002020-11-13 08:31:09 -05004971 if (!kvm_dr7_valid(dbgregs->dr7))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004972 return -EINVAL;
4973
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004974 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03004975 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004976 vcpu->arch.dr6 = dbgregs->dr6;
4977 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01004978 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004979
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004980 return 0;
4981}
4982
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004983static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
4984 struct kvm_xsave *guest_xsave)
4985{
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02004986 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
Tom Lendackyed02b212020-12-10 11:10:01 -06004987 return;
4988
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02004989 fpu_copy_guest_fpstate_to_uabi(&vcpu->arch.guest_fpu,
4990 guest_xsave->region,
4991 sizeof(guest_xsave->region),
4992 vcpu->arch.pkru);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004993}
4994
Guang Zengbe50b202022-01-05 04:35:29 -08004995static void kvm_vcpu_ioctl_x86_get_xsave2(struct kvm_vcpu *vcpu,
4996 u8 *state, unsigned int size)
4997{
4998 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
4999 return;
5000
5001 fpu_copy_guest_fpstate_to_uabi(&vcpu->arch.guest_fpu,
5002 state, size, vcpu->arch.pkru);
5003}
5004
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005005static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
5006 struct kvm_xsave *guest_xsave)
5007{
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02005008 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
Tom Lendackyed02b212020-12-10 11:10:01 -06005009 return 0;
5010
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02005011 return fpu_copy_uabi_to_guest_fpstate(&vcpu->arch.guest_fpu,
5012 guest_xsave->region,
5013 supported_xcr0, &vcpu->arch.pkru);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005014}
5015
5016static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
5017 struct kvm_xcrs *guest_xcrs)
5018{
Borislav Petkovd366bf72016-04-04 22:25:02 +02005019 if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005020 guest_xcrs->nr_xcrs = 0;
5021 return;
5022 }
5023
5024 guest_xcrs->nr_xcrs = 1;
5025 guest_xcrs->flags = 0;
5026 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
5027 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
5028}
5029
5030static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
5031 struct kvm_xcrs *guest_xcrs)
5032{
5033 int i, r = 0;
5034
Borislav Petkovd366bf72016-04-04 22:25:02 +02005035 if (!boot_cpu_has(X86_FEATURE_XSAVE))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005036 return -EINVAL;
5037
5038 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
5039 return -EINVAL;
5040
5041 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
5042 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02005043 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005044 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02005045 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005046 break;
5047 }
5048 if (r)
5049 r = -EINVAL;
5050 return r;
5051}
5052
Eric B Munson1c0b28c2012-03-10 14:37:27 -05005053/*
5054 * kvm_set_guest_paused() indicates to the guest kernel that it has been
5055 * stopped by the hypervisor. This function will be called from the host only.
5056 * EINVAL is returned when the host attempts to set the flag for a guest that
5057 * does not support pv clocks.
5058 */
5059static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
5060{
Andy Honig0b794592013-02-20 14:48:10 -08005061 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05005062 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03005063 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05005064 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
5065 return 0;
5066}
5067
Oliver Upton828ca892021-09-16 18:15:38 +00005068static int kvm_arch_tsc_has_attr(struct kvm_vcpu *vcpu,
5069 struct kvm_device_attr *attr)
5070{
5071 int r;
5072
5073 switch (attr->attr) {
5074 case KVM_VCPU_TSC_OFFSET:
5075 r = 0;
5076 break;
5077 default:
5078 r = -ENXIO;
5079 }
5080
5081 return r;
5082}
5083
5084static int kvm_arch_tsc_get_attr(struct kvm_vcpu *vcpu,
5085 struct kvm_device_attr *attr)
5086{
Sean Christopherson56f289a2022-01-27 07:31:53 -08005087 u64 __user *uaddr = kvm_get_attr_addr(attr);
Oliver Upton828ca892021-09-16 18:15:38 +00005088 int r;
5089
Sean Christopherson56f289a2022-01-27 07:31:53 -08005090 if (IS_ERR(uaddr))
5091 return PTR_ERR(uaddr);
Oliver Upton828ca892021-09-16 18:15:38 +00005092
5093 switch (attr->attr) {
5094 case KVM_VCPU_TSC_OFFSET:
5095 r = -EFAULT;
5096 if (put_user(vcpu->arch.l1_tsc_offset, uaddr))
5097 break;
5098 r = 0;
5099 break;
5100 default:
5101 r = -ENXIO;
5102 }
5103
5104 return r;
5105}
5106
5107static int kvm_arch_tsc_set_attr(struct kvm_vcpu *vcpu,
5108 struct kvm_device_attr *attr)
5109{
Sean Christopherson56f289a2022-01-27 07:31:53 -08005110 u64 __user *uaddr = kvm_get_attr_addr(attr);
Oliver Upton828ca892021-09-16 18:15:38 +00005111 struct kvm *kvm = vcpu->kvm;
5112 int r;
5113
Sean Christopherson56f289a2022-01-27 07:31:53 -08005114 if (IS_ERR(uaddr))
5115 return PTR_ERR(uaddr);
Oliver Upton828ca892021-09-16 18:15:38 +00005116
5117 switch (attr->attr) {
5118 case KVM_VCPU_TSC_OFFSET: {
5119 u64 offset, tsc, ns;
5120 unsigned long flags;
5121 bool matched;
5122
5123 r = -EFAULT;
5124 if (get_user(offset, uaddr))
5125 break;
5126
5127 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
5128
5129 matched = (vcpu->arch.virtual_tsc_khz &&
5130 kvm->arch.last_tsc_khz == vcpu->arch.virtual_tsc_khz &&
5131 kvm->arch.last_tsc_offset == offset);
5132
5133 tsc = kvm_scale_tsc(vcpu, rdtsc(), vcpu->arch.l1_tsc_scaling_ratio) + offset;
5134 ns = get_kvmclock_base_ns();
5135
5136 __kvm_synchronize_tsc(vcpu, offset, tsc, ns, matched);
5137 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
5138
5139 r = 0;
5140 break;
5141 }
5142 default:
5143 r = -ENXIO;
5144 }
5145
5146 return r;
5147}
5148
5149static int kvm_vcpu_ioctl_device_attr(struct kvm_vcpu *vcpu,
5150 unsigned int ioctl,
5151 void __user *argp)
5152{
5153 struct kvm_device_attr attr;
5154 int r;
5155
5156 if (copy_from_user(&attr, argp, sizeof(attr)))
5157 return -EFAULT;
5158
5159 if (attr.group != KVM_VCPU_TSC_CTRL)
5160 return -ENXIO;
5161
5162 switch (ioctl) {
5163 case KVM_HAS_DEVICE_ATTR:
5164 r = kvm_arch_tsc_has_attr(vcpu, &attr);
5165 break;
5166 case KVM_GET_DEVICE_ATTR:
5167 r = kvm_arch_tsc_get_attr(vcpu, &attr);
5168 break;
5169 case KVM_SET_DEVICE_ATTR:
5170 r = kvm_arch_tsc_set_attr(vcpu, &attr);
5171 break;
5172 }
5173
5174 return r;
5175}
5176
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005177static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
5178 struct kvm_enable_cap *cap)
5179{
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005180 int r;
5181 uint16_t vmcs_version;
5182 void __user *user_ptr;
5183
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005184 if (cap->flags)
5185 return -EINVAL;
5186
5187 switch (cap->cap) {
Roman Kaganefc479e2017-06-22 16:51:01 +03005188 case KVM_CAP_HYPERV_SYNIC2:
5189 if (cap->args[0])
5190 return -EINVAL;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05005191 fallthrough;
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06005192
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005193 case KVM_CAP_HYPERV_SYNIC:
Wanpeng Li546d87e2017-01-03 18:56:19 -08005194 if (!irqchip_in_kernel(vcpu->kvm))
5195 return -EINVAL;
Roman Kaganefc479e2017-06-22 16:51:01 +03005196 return kvm_hv_activate_synic(vcpu, cap->cap ==
5197 KVM_CAP_HYPERV_SYNIC2);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005198 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04005199 if (!kvm_x86_ops.nested_ops->enable_evmcs)
Sean Christopherson51589172018-12-03 13:53:10 -08005200 return -ENOTTY;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005201 r = kvm_x86_ops.nested_ops->enable_evmcs(vcpu, &vmcs_version);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005202 if (!r) {
5203 user_ptr = (void __user *)(uintptr_t)cap->args[0];
5204 if (copy_to_user(user_ptr, &vmcs_version,
5205 sizeof(vmcs_version)))
5206 r = -EFAULT;
5207 }
5208 return r;
Tianyu Lan344c6c82019-08-22 22:30:20 +08005209 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005210 if (!kvm_x86_ops.enable_direct_tlbflush)
Tianyu Lan344c6c82019-08-22 22:30:20 +08005211 return -ENOTTY;
5212
Jason Baronb36464772021-01-14 22:27:56 -05005213 return static_call(kvm_x86_enable_direct_tlbflush)(vcpu);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005214
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02005215 case KVM_CAP_HYPERV_ENFORCE_CPUID:
5216 return kvm_hv_set_enforce_cpuid(vcpu, cap->args[0]);
5217
Oliver Upton66570e92020-08-18 15:24:28 +00005218 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
5219 vcpu->arch.pv_cpuid.enforce = cap->args[0];
Oliver Upton01b4f512020-10-27 16:10:42 -07005220 if (vcpu->arch.pv_cpuid.enforce)
5221 kvm_update_pv_runtime(vcpu);
Oliver Upton66570e92020-08-18 15:24:28 +00005222
5223 return 0;
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005224 default:
5225 return -EINVAL;
5226 }
5227}
5228
Carsten Otte313a3dc2007-10-11 19:16:52 +02005229long kvm_arch_vcpu_ioctl(struct file *filp,
5230 unsigned int ioctl, unsigned long arg)
5231{
5232 struct kvm_vcpu *vcpu = filp->private_data;
5233 void __user *argp = (void __user *)arg;
5234 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005235 union {
Maxim Levitsky6dba9402021-06-07 12:02:02 +03005236 struct kvm_sregs2 *sregs2;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005237 struct kvm_lapic_state *lapic;
5238 struct kvm_xsave *xsave;
5239 struct kvm_xcrs *xcrs;
5240 void *buffer;
5241 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02005242
Christoffer Dall9b0624712017-12-04 21:35:36 +01005243 vcpu_load(vcpu);
5244
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005245 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02005246 switch (ioctl) {
5247 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005248 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01005249 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005250 goto out;
Ben Gardon254272c2019-02-11 11:02:50 -08005251 u.lapic = kzalloc(sizeof(struct kvm_lapic_state),
5252 GFP_KERNEL_ACCOUNT);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005253
Dave Hansenb772ff32008-08-11 10:01:47 -07005254 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005255 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07005256 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005257 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005258 if (r)
5259 goto out;
5260 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005261 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02005262 goto out;
5263 r = 0;
5264 break;
5265 }
5266 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005267 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01005268 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005269 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02005270 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005271 if (IS_ERR(u.lapic)) {
5272 r = PTR_ERR(u.lapic);
5273 goto out_nofree;
5274 }
Sasha Levinff5c2c02011-12-04 19:36:29 +02005275
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005276 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005277 break;
5278 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005279 case KVM_INTERRUPT: {
5280 struct kvm_interrupt irq;
5281
5282 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005283 if (copy_from_user(&irq, argp, sizeof(irq)))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005284 goto out;
5285 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005286 break;
5287 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02005288 case KVM_NMI: {
5289 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02005290 break;
5291 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02005292 case KVM_SMI: {
5293 r = kvm_vcpu_ioctl_smi(vcpu);
5294 break;
5295 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02005296 case KVM_SET_CPUID: {
5297 struct kvm_cpuid __user *cpuid_arg = argp;
5298 struct kvm_cpuid cpuid;
5299
5300 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005301 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02005302 goto out;
5303 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005304 break;
5305 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02005306 case KVM_SET_CPUID2: {
5307 struct kvm_cpuid2 __user *cpuid_arg = argp;
5308 struct kvm_cpuid2 cpuid;
5309
5310 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005311 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005312 goto out;
5313 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00005314 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02005315 break;
5316 }
5317 case KVM_GET_CPUID2: {
5318 struct kvm_cpuid2 __user *cpuid_arg = argp;
5319 struct kvm_cpuid2 cpuid;
5320
5321 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005322 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005323 goto out;
5324 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00005325 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02005326 if (r)
5327 goto out;
5328 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005329 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005330 goto out;
5331 r = 0;
5332 break;
5333 }
Tom Lendacky801e4592018-02-21 13:39:51 -06005334 case KVM_GET_MSRS: {
5335 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005336 r = msr_io(vcpu, argp, do_get_msr, 1);
Tom Lendacky801e4592018-02-21 13:39:51 -06005337 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005338 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06005339 }
5340 case KVM_SET_MSRS: {
5341 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005342 r = msr_io(vcpu, argp, do_set_msr, 0);
Tom Lendacky801e4592018-02-21 13:39:51 -06005343 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005344 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06005345 }
Avi Kivityb209749f2007-10-22 16:50:39 +02005346 case KVM_TPR_ACCESS_REPORTING: {
5347 struct kvm_tpr_access_ctl tac;
5348
5349 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005350 if (copy_from_user(&tac, argp, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02005351 goto out;
5352 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
5353 if (r)
5354 goto out;
5355 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005356 if (copy_to_user(argp, &tac, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02005357 goto out;
5358 r = 0;
5359 break;
5360 };
Avi Kivityb93463a2007-10-25 16:52:32 +02005361 case KVM_SET_VAPIC_ADDR: {
5362 struct kvm_vapic_addr va;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005363 int idx;
Avi Kivityb93463a2007-10-25 16:52:32 +02005364
5365 r = -EINVAL;
Paolo Bonzini35754c92015-07-29 12:05:37 +02005366 if (!lapic_in_kernel(vcpu))
Avi Kivityb93463a2007-10-25 16:52:32 +02005367 goto out;
5368 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005369 if (copy_from_user(&va, argp, sizeof(va)))
Avi Kivityb93463a2007-10-25 16:52:32 +02005370 goto out;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005371 idx = srcu_read_lock(&vcpu->kvm->srcu);
Andy Honigfda4e2e2013-11-20 10:23:22 -08005372 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005373 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivityb93463a2007-10-25 16:52:32 +02005374 break;
5375 }
Huang Ying890ca9a2009-05-11 16:48:15 +08005376 case KVM_X86_SETUP_MCE: {
5377 u64 mcg_cap;
5378
5379 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005380 if (copy_from_user(&mcg_cap, argp, sizeof(mcg_cap)))
Huang Ying890ca9a2009-05-11 16:48:15 +08005381 goto out;
5382 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
5383 break;
5384 }
5385 case KVM_X86_SET_MCE: {
5386 struct kvm_x86_mce mce;
5387
5388 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005389 if (copy_from_user(&mce, argp, sizeof(mce)))
Huang Ying890ca9a2009-05-11 16:48:15 +08005390 goto out;
5391 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
5392 break;
5393 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005394 case KVM_GET_VCPU_EVENTS: {
5395 struct kvm_vcpu_events events;
5396
5397 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
5398
5399 r = -EFAULT;
5400 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
5401 break;
5402 r = 0;
5403 break;
5404 }
5405 case KVM_SET_VCPU_EVENTS: {
5406 struct kvm_vcpu_events events;
5407
5408 r = -EFAULT;
5409 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
5410 break;
5411
5412 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
5413 break;
5414 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01005415 case KVM_GET_DEBUGREGS: {
5416 struct kvm_debugregs dbgregs;
5417
5418 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
5419
5420 r = -EFAULT;
5421 if (copy_to_user(argp, &dbgregs,
5422 sizeof(struct kvm_debugregs)))
5423 break;
5424 r = 0;
5425 break;
5426 }
5427 case KVM_SET_DEBUGREGS: {
5428 struct kvm_debugregs dbgregs;
5429
5430 r = -EFAULT;
5431 if (copy_from_user(&dbgregs, argp,
5432 sizeof(struct kvm_debugregs)))
5433 break;
5434
5435 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
5436 break;
5437 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005438 case KVM_GET_XSAVE: {
Guang Zengbe50b202022-01-05 04:35:29 -08005439 r = -EINVAL;
5440 if (vcpu->arch.guest_fpu.uabi_size > sizeof(struct kvm_xsave))
5441 break;
5442
Ben Gardon254272c2019-02-11 11:02:50 -08005443 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005444 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005445 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005446 break;
5447
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005448 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005449
5450 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005451 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005452 break;
5453 r = 0;
5454 break;
5455 }
5456 case KVM_SET_XSAVE: {
Guang Zengbe50b202022-01-05 04:35:29 -08005457 int size = vcpu->arch.guest_fpu.uabi_size;
5458
5459 u.xsave = memdup_user(argp, size);
Christoffer Dall9b0624712017-12-04 21:35:36 +01005460 if (IS_ERR(u.xsave)) {
5461 r = PTR_ERR(u.xsave);
5462 goto out_nofree;
5463 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005464
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005465 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005466 break;
5467 }
Guang Zengbe50b202022-01-05 04:35:29 -08005468
5469 case KVM_GET_XSAVE2: {
5470 int size = vcpu->arch.guest_fpu.uabi_size;
5471
5472 u.xsave = kzalloc(size, GFP_KERNEL_ACCOUNT);
5473 r = -ENOMEM;
5474 if (!u.xsave)
5475 break;
5476
5477 kvm_vcpu_ioctl_x86_get_xsave2(vcpu, u.buffer, size);
5478
5479 r = -EFAULT;
5480 if (copy_to_user(argp, u.xsave, size))
5481 break;
5482
5483 r = 0;
5484 break;
5485 }
5486
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005487 case KVM_GET_XCRS: {
Ben Gardon254272c2019-02-11 11:02:50 -08005488 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005489 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005490 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005491 break;
5492
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005493 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005494
5495 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005496 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005497 sizeof(struct kvm_xcrs)))
5498 break;
5499 r = 0;
5500 break;
5501 }
5502 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02005503 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005504 if (IS_ERR(u.xcrs)) {
5505 r = PTR_ERR(u.xcrs);
5506 goto out_nofree;
5507 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005508
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005509 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005510 break;
5511 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01005512 case KVM_SET_TSC_KHZ: {
5513 u32 user_tsc_khz;
5514
5515 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005516 user_tsc_khz = (u32)arg;
5517
Marcelo Tosatti26769f92020-06-16 08:47:41 -03005518 if (kvm_has_tsc_control &&
5519 user_tsc_khz >= kvm_max_guest_tsc_khz)
Joerg Roedel92a1f122011-03-25 09:44:51 +01005520 goto out;
5521
Zachary Amsdencc578282012-02-03 15:43:50 -02005522 if (user_tsc_khz == 0)
5523 user_tsc_khz = tsc_khz;
5524
Haozhong Zhang381d5852015-10-20 15:39:04 +08005525 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
5526 r = 0;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005527
Joerg Roedel92a1f122011-03-25 09:44:51 +01005528 goto out;
5529 }
5530 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02005531 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005532 goto out;
5533 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05005534 case KVM_KVMCLOCK_CTRL: {
5535 r = kvm_set_guest_paused(vcpu);
5536 goto out;
5537 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005538 case KVM_ENABLE_CAP: {
5539 struct kvm_enable_cap cap;
5540
5541 r = -EFAULT;
5542 if (copy_from_user(&cap, argp, sizeof(cap)))
5543 goto out;
5544 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
5545 break;
5546 }
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005547 case KVM_GET_NESTED_STATE: {
5548 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5549 u32 user_data_size;
5550
5551 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005552 if (!kvm_x86_ops.nested_ops->get_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005553 break;
5554
5555 BUILD_BUG_ON(sizeof(user_data_size) != sizeof(user_kvm_nested_state->size));
Liran Alon26b471c2018-09-16 14:28:20 +03005556 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005557 if (get_user(user_data_size, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03005558 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005559
Paolo Bonzini33b22172020-04-17 10:24:18 -04005560 r = kvm_x86_ops.nested_ops->get_state(vcpu, user_kvm_nested_state,
5561 user_data_size);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005562 if (r < 0)
Liran Alon26b471c2018-09-16 14:28:20 +03005563 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005564
5565 if (r > user_data_size) {
5566 if (put_user(r, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03005567 r = -EFAULT;
5568 else
5569 r = -E2BIG;
5570 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005571 }
Liran Alon26b471c2018-09-16 14:28:20 +03005572
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005573 r = 0;
5574 break;
5575 }
5576 case KVM_SET_NESTED_STATE: {
5577 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5578 struct kvm_nested_state kvm_state;
Sean Christophersonad5996d2019-11-22 08:58:18 -08005579 int idx;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005580
5581 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005582 if (!kvm_x86_ops.nested_ops->set_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005583 break;
5584
Liran Alon26b471c2018-09-16 14:28:20 +03005585 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005586 if (copy_from_user(&kvm_state, user_kvm_nested_state, sizeof(kvm_state)))
Liran Alon26b471c2018-09-16 14:28:20 +03005587 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005588
Liran Alon26b471c2018-09-16 14:28:20 +03005589 r = -EINVAL;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005590 if (kvm_state.size < sizeof(kvm_state))
Liran Alon26b471c2018-09-16 14:28:20 +03005591 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005592
5593 if (kvm_state.flags &
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02005594 ~(KVM_STATE_NESTED_RUN_PENDING | KVM_STATE_NESTED_GUEST_MODE
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04005595 | KVM_STATE_NESTED_EVMCS | KVM_STATE_NESTED_MTF_PENDING
5596 | KVM_STATE_NESTED_GIF_SET))
Liran Alon26b471c2018-09-16 14:28:20 +03005597 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005598
5599 /* nested_run_pending implies guest_mode. */
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02005600 if ((kvm_state.flags & KVM_STATE_NESTED_RUN_PENDING)
5601 && !(kvm_state.flags & KVM_STATE_NESTED_GUEST_MODE))
Liran Alon26b471c2018-09-16 14:28:20 +03005602 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005603
Sean Christophersonad5996d2019-11-22 08:58:18 -08005604 idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini33b22172020-04-17 10:24:18 -04005605 r = kvm_x86_ops.nested_ops->set_state(vcpu, user_kvm_nested_state, &kvm_state);
Sean Christophersonad5996d2019-11-22 08:58:18 -08005606 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005607 break;
5608 }
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02005609 case KVM_GET_SUPPORTED_HV_CPUID:
5610 r = kvm_ioctl_get_supported_hv_cpuid(vcpu, argp);
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01005611 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05005612#ifdef CONFIG_KVM_XEN
David Woodhouse3e324612021-02-02 16:53:25 +00005613 case KVM_XEN_VCPU_GET_ATTR: {
5614 struct kvm_xen_vcpu_attr xva;
5615
5616 r = -EFAULT;
5617 if (copy_from_user(&xva, argp, sizeof(xva)))
5618 goto out;
5619 r = kvm_xen_vcpu_get_attr(vcpu, &xva);
5620 if (!r && copy_to_user(argp, &xva, sizeof(xva)))
5621 r = -EFAULT;
5622 break;
5623 }
5624 case KVM_XEN_VCPU_SET_ATTR: {
5625 struct kvm_xen_vcpu_attr xva;
5626
5627 r = -EFAULT;
5628 if (copy_from_user(&xva, argp, sizeof(xva)))
5629 goto out;
5630 r = kvm_xen_vcpu_set_attr(vcpu, &xva);
5631 break;
5632 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05005633#endif
Maxim Levitsky6dba9402021-06-07 12:02:02 +03005634 case KVM_GET_SREGS2: {
5635 u.sregs2 = kzalloc(sizeof(struct kvm_sregs2), GFP_KERNEL);
5636 r = -ENOMEM;
5637 if (!u.sregs2)
5638 goto out;
5639 __get_sregs2(vcpu, u.sregs2);
5640 r = -EFAULT;
5641 if (copy_to_user(argp, u.sregs2, sizeof(struct kvm_sregs2)))
5642 goto out;
5643 r = 0;
5644 break;
5645 }
5646 case KVM_SET_SREGS2: {
5647 u.sregs2 = memdup_user(argp, sizeof(struct kvm_sregs2));
5648 if (IS_ERR(u.sregs2)) {
5649 r = PTR_ERR(u.sregs2);
5650 u.sregs2 = NULL;
5651 goto out;
5652 }
5653 r = __set_sregs2(vcpu, u.sregs2);
5654 break;
5655 }
Oliver Upton828ca892021-09-16 18:15:38 +00005656 case KVM_HAS_DEVICE_ATTR:
5657 case KVM_GET_DEVICE_ATTR:
5658 case KVM_SET_DEVICE_ATTR:
5659 r = kvm_vcpu_ioctl_device_attr(vcpu, ioctl, argp);
5660 break;
Carsten Otte313a3dc2007-10-11 19:16:52 +02005661 default:
5662 r = -EINVAL;
5663 }
5664out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005665 kfree(u.buffer);
Christoffer Dall9b0624712017-12-04 21:35:36 +01005666out_nofree:
5667 vcpu_put(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005668 return r;
5669}
5670
Souptick Joarder1499fa82018-04-19 00:49:58 +05305671vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
Carsten Otte5b1c1492012-01-04 10:25:23 +01005672{
5673 return VM_FAULT_SIGBUS;
5674}
5675
Carsten Otte1fe779f2007-10-29 16:08:35 +01005676static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
5677{
5678 int ret;
5679
5680 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08005681 return -EINVAL;
Jason Baronb36464772021-01-14 22:27:56 -05005682 ret = static_call(kvm_x86_set_tss_addr)(kvm, addr);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005683 return ret;
5684}
5685
Sheng Yangb927a3c2009-07-21 10:42:48 +08005686static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
5687 u64 ident_addr)
5688{
Jason Baronb36464772021-01-14 22:27:56 -05005689 return static_call(kvm_x86_set_identity_map_addr)(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08005690}
5691
Carsten Otte1fe779f2007-10-29 16:08:35 +01005692static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
Ben Gardonbc8a3d82019-04-08 11:07:30 -07005693 unsigned long kvm_nr_mmu_pages)
Carsten Otte1fe779f2007-10-29 16:08:35 +01005694{
5695 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
5696 return -EINVAL;
5697
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005698 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005699
5700 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08005701 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005702
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005703 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005704 return 0;
5705}
5706
Ben Gardonbc8a3d82019-04-08 11:07:30 -07005707static unsigned long kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
Carsten Otte1fe779f2007-10-29 16:08:35 +01005708{
Dave Hansen39de71e2010-08-19 18:11:14 -07005709 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005710}
5711
Carsten Otte1fe779f2007-10-29 16:08:35 +01005712static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5713{
David Hildenbrand90bca052017-04-07 10:50:23 +02005714 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005715 int r;
5716
5717 r = 0;
5718 switch (chip->chip_id) {
5719 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02005720 memcpy(&chip->chip.pic, &pic->pics[0],
Carsten Otte1fe779f2007-10-29 16:08:35 +01005721 sizeof(struct kvm_pic_state));
5722 break;
5723 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02005724 memcpy(&chip->chip.pic, &pic->pics[1],
Carsten Otte1fe779f2007-10-29 16:08:35 +01005725 sizeof(struct kvm_pic_state));
5726 break;
5727 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02005728 kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005729 break;
5730 default:
5731 r = -EINVAL;
5732 break;
5733 }
5734 return r;
5735}
5736
5737static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5738{
David Hildenbrand90bca052017-04-07 10:50:23 +02005739 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005740 int r;
5741
5742 r = 0;
5743 switch (chip->chip_id) {
5744 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02005745 spin_lock(&pic->lock);
5746 memcpy(&pic->pics[0], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01005747 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02005748 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005749 break;
5750 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02005751 spin_lock(&pic->lock);
5752 memcpy(&pic->pics[1], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01005753 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02005754 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005755 break;
5756 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02005757 kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005758 break;
5759 default:
5760 r = -EINVAL;
5761 break;
5762 }
David Hildenbrand90bca052017-04-07 10:50:23 +02005763 kvm_pic_update_irq(pic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005764 return r;
5765}
5766
Sheng Yange0f63cb2008-03-04 00:50:59 +08005767static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5768{
Radim Krčmář34f39412016-03-02 22:56:50 +01005769 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state;
5770
5771 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
5772
5773 mutex_lock(&kps->lock);
5774 memcpy(ps, &kps->channels, sizeof(*ps));
5775 mutex_unlock(&kps->lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305776 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08005777}
5778
5779static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5780{
Andrew Honig01856042015-11-18 14:50:23 -08005781 int i;
Radim Krčmář09edea72016-03-02 22:56:43 +01005782 struct kvm_pit *pit = kvm->arch.vpit;
5783
5784 mutex_lock(&pit->pit_state.lock);
Radim Krčmář34f39412016-03-02 22:56:50 +01005785 memcpy(&pit->pit_state.channels, ps, sizeof(*ps));
Andrew Honig01856042015-11-18 14:50:23 -08005786 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01005787 kvm_pit_load_count(pit, i, ps->channels[i].count, 0);
5788 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305789 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04005790}
5791
5792static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5793{
Beth Kone9f42752009-07-07 11:50:38 -04005794 mutex_lock(&kvm->arch.vpit->pit_state.lock);
5795 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
5796 sizeof(ps->channels));
5797 ps->flags = kvm->arch.vpit->pit_state.flags;
5798 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04005799 memset(&ps->reserved, 0, sizeof(ps->reserved));
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305800 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04005801}
5802
5803static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5804{
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305805 int start = 0;
Andrew Honig01856042015-11-18 14:50:23 -08005806 int i;
Beth Kone9f42752009-07-07 11:50:38 -04005807 u32 prev_legacy, cur_legacy;
Radim Krčmář09edea72016-03-02 22:56:43 +01005808 struct kvm_pit *pit = kvm->arch.vpit;
5809
5810 mutex_lock(&pit->pit_state.lock);
5811 prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
Beth Kone9f42752009-07-07 11:50:38 -04005812 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
5813 if (!prev_legacy && cur_legacy)
5814 start = 1;
Radim Krčmář09edea72016-03-02 22:56:43 +01005815 memcpy(&pit->pit_state.channels, &ps->channels,
5816 sizeof(pit->pit_state.channels));
5817 pit->pit_state.flags = ps->flags;
Andrew Honig01856042015-11-18 14:50:23 -08005818 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01005819 kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count,
Paolo Bonzinie5e57e72016-01-07 13:50:38 +01005820 start && i == 0);
Radim Krčmář09edea72016-03-02 22:56:43 +01005821 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305822 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08005823}
5824
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005825static int kvm_vm_ioctl_reinject(struct kvm *kvm,
5826 struct kvm_reinject_control *control)
5827{
Radim Krčmář71474e22016-03-02 22:56:45 +01005828 struct kvm_pit *pit = kvm->arch.vpit;
5829
Radim Krčmář71474e22016-03-02 22:56:45 +01005830 /* pit->pit_state.lock was overloaded to prevent userspace from getting
5831 * an inconsistent state after running multiple KVM_REINJECT_CONTROL
5832 * ioctls in parallel. Use a separate lock if that ioctl isn't rare.
5833 */
5834 mutex_lock(&pit->pit_state.lock);
5835 kvm_pit_set_reinject(pit, control->pit_reinject);
5836 mutex_unlock(&pit->pit_state.lock);
Radim Krčmářb39c90b2016-03-02 22:56:44 +01005837
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005838 return 0;
5839}
5840
Sean Christopherson0dff0842020-02-18 13:07:29 -08005841void kvm_arch_sync_dirty_log(struct kvm *kvm, struct kvm_memory_slot *memslot)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08005842{
Sean Christophersona018eba2021-02-12 16:50:10 -08005843
Kai Huang88178fd2015-01-28 10:54:27 +08005844 /*
Sean Christophersona018eba2021-02-12 16:50:10 -08005845 * Flush all CPUs' dirty log buffers to the dirty_bitmap. Called
5846 * before reporting dirty_bitmap to userspace. KVM flushes the buffers
5847 * on all VM-Exits, thus we only need to kick running vCPUs to force a
5848 * VM-Exit.
Kai Huang88178fd2015-01-28 10:54:27 +08005849 */
Sean Christophersona018eba2021-02-12 16:50:10 -08005850 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00005851 unsigned long i;
Sean Christophersona018eba2021-02-12 16:50:10 -08005852
5853 kvm_for_each_vcpu(i, vcpu, kvm)
5854 kvm_vcpu_kick(vcpu);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08005855}
5856
Yang Zhangaa2fbe62013-04-11 19:21:40 +08005857int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
5858 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04005859{
5860 if (!irqchip_in_kernel(kvm))
5861 return -ENXIO;
5862
5863 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08005864 irq_event->irq, irq_event->level,
5865 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04005866 return 0;
5867}
5868
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01005869int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
5870 struct kvm_enable_cap *cap)
Nadav Amit90de4a12015-04-13 01:53:41 +03005871{
5872 int r;
5873
5874 if (cap->flags)
5875 return -EINVAL;
5876
5877 switch (cap->cap) {
5878 case KVM_CAP_DISABLE_QUIRKS:
5879 kvm->arch.disabled_quirks = cap->args[0];
5880 r = 0;
5881 break;
Steve Rutherford49df6392015-07-29 23:21:40 -07005882 case KVM_CAP_SPLIT_IRQCHIP: {
5883 mutex_lock(&kvm->lock);
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005884 r = -EINVAL;
5885 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
5886 goto split_irqchip_unlock;
Steve Rutherford49df6392015-07-29 23:21:40 -07005887 r = -EEXIST;
5888 if (irqchip_in_kernel(kvm))
5889 goto split_irqchip_unlock;
Paolo Bonzini557abc42016-06-13 14:50:04 +02005890 if (kvm->created_vcpus)
Steve Rutherford49df6392015-07-29 23:21:40 -07005891 goto split_irqchip_unlock;
5892 r = kvm_setup_empty_irq_routing(kvm);
David Hildenbrand5c0aea02017-04-28 17:06:20 +02005893 if (r)
Steve Rutherford49df6392015-07-29 23:21:40 -07005894 goto split_irqchip_unlock;
5895 /* Pairs with irqchip_in_kernel. */
5896 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01005897 kvm->arch.irqchip_mode = KVM_IRQCHIP_SPLIT;
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005898 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
Paolo Bonzinief8b4b72021-11-30 07:37:45 -05005899 kvm_request_apicv_update(kvm, true, APICV_INHIBIT_REASON_ABSENT);
Steve Rutherford49df6392015-07-29 23:21:40 -07005900 r = 0;
5901split_irqchip_unlock:
5902 mutex_unlock(&kvm->lock);
5903 break;
5904 }
Radim Krčmář371313132016-07-12 22:09:27 +02005905 case KVM_CAP_X2APIC_API:
5906 r = -EINVAL;
5907 if (cap->args[0] & ~KVM_X2APIC_API_VALID_FLAGS)
5908 break;
5909
5910 if (cap->args[0] & KVM_X2APIC_API_USE_32BIT_IDS)
5911 kvm->arch.x2apic_format = true;
Radim Krčmářc5192652016-07-12 22:09:28 +02005912 if (cap->args[0] & KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
5913 kvm->arch.x2apic_broadcast_quirk_disabled = true;
Radim Krčmář371313132016-07-12 22:09:27 +02005914
5915 r = 0;
5916 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005917 case KVM_CAP_X86_DISABLE_EXITS:
5918 r = -EINVAL;
5919 if (cap->args[0] & ~KVM_X86_DISABLE_VALID_EXITS)
5920 break;
5921
5922 if ((cap->args[0] & KVM_X86_DISABLE_EXITS_MWAIT) &&
5923 kvm_can_mwait_in_guest())
5924 kvm->arch.mwait_in_guest = true;
Michael S. Tsirkin766d3572018-06-08 02:19:53 +03005925 if (cap->args[0] & KVM_X86_DISABLE_EXITS_HLT)
Wanpeng Licaa057a2018-03-12 04:53:03 -07005926 kvm->arch.hlt_in_guest = true;
Wanpeng Lib31c1142018-03-12 04:53:04 -07005927 if (cap->args[0] & KVM_X86_DISABLE_EXITS_PAUSE)
5928 kvm->arch.pause_in_guest = true;
Wanpeng Lib5170062019-05-21 14:06:53 +08005929 if (cap->args[0] & KVM_X86_DISABLE_EXITS_CSTATE)
5930 kvm->arch.cstate_in_guest = true;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005931 r = 0;
5932 break;
Drew Schmitt6fbbde92018-08-20 10:32:15 -07005933 case KVM_CAP_MSR_PLATFORM_INFO:
5934 kvm->arch.guest_can_read_msr_platform_info = cap->args[0];
5935 r = 0;
5936 break;
Jim Mattsonc4f55192018-10-16 14:29:24 -07005937 case KVM_CAP_EXCEPTION_PAYLOAD:
5938 kvm->arch.exception_payload_enabled = cap->args[0];
5939 r = 0;
5940 break;
Alexander Graf1ae09952020-09-25 16:34:16 +02005941 case KVM_CAP_X86_USER_SPACE_MSR:
5942 kvm->arch.user_space_msr_mask = cap->args[0];
5943 r = 0;
5944 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005945 case KVM_CAP_X86_BUS_LOCK_EXIT:
5946 r = -EINVAL;
5947 if (cap->args[0] & ~KVM_BUS_LOCK_DETECTION_VALID_MODE)
5948 break;
5949
5950 if ((cap->args[0] & KVM_BUS_LOCK_DETECTION_OFF) &&
5951 (cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT))
5952 break;
5953
5954 if (kvm_has_bus_lock_exit &&
5955 cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT)
5956 kvm->arch.bus_lock_detection_enabled = true;
5957 r = 0;
5958 break;
Sean Christophersonfe7e9482021-04-12 16:21:43 +12005959#ifdef CONFIG_X86_SGX_KVM
5960 case KVM_CAP_SGX_ATTRIBUTE: {
5961 unsigned long allowed_attributes = 0;
5962
5963 r = sgx_set_attribute(&allowed_attributes, cap->args[0]);
5964 if (r)
5965 break;
5966
5967 /* KVM only supports the PROVISIONKEY privileged attribute. */
5968 if ((allowed_attributes & SGX_ATTR_PROVISIONKEY) &&
5969 !(allowed_attributes & ~SGX_ATTR_PROVISIONKEY))
5970 kvm->arch.sgx_provisioning_allowed = true;
5971 else
5972 r = -EINVAL;
5973 break;
5974 }
5975#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00005976 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
5977 r = -EINVAL;
5978 if (kvm_x86_ops.vm_copy_enc_context_from)
5979 r = kvm_x86_ops.vm_copy_enc_context_from(kvm, cap->args[0]);
5980 return r;
Peter Gondab5663932021-10-21 10:43:00 -07005981 case KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM:
5982 r = -EINVAL;
5983 if (kvm_x86_ops.vm_move_enc_context_from)
5984 r = kvm_x86_ops.vm_move_enc_context_from(
5985 kvm, cap->args[0]);
5986 return r;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00005987 case KVM_CAP_EXIT_HYPERCALL:
5988 if (cap->args[0] & ~KVM_EXIT_HYPERCALL_VALID_MASK) {
5989 r = -EINVAL;
5990 break;
5991 }
5992 kvm->arch.hypercall_exit_enabled = cap->args[0];
5993 r = 0;
5994 break;
Aaron Lewis19238e72021-05-10 07:48:33 -07005995 case KVM_CAP_EXIT_ON_EMULATION_FAILURE:
5996 r = -EINVAL;
5997 if (cap->args[0] & ~1)
5998 break;
5999 kvm->arch.exit_on_emulation_error = cap->args[0];
6000 r = 0;
6001 break;
Nadav Amit90de4a12015-04-13 01:53:41 +03006002 default:
6003 r = -EINVAL;
6004 break;
6005 }
6006 return r;
6007}
6008
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006009static struct kvm_x86_msr_filter *kvm_alloc_msr_filter(bool default_allow)
Alexander Graf1a1552542020-09-25 16:34:21 +02006010{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006011 struct kvm_x86_msr_filter *msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02006012
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006013 msr_filter = kzalloc(sizeof(*msr_filter), GFP_KERNEL_ACCOUNT);
6014 if (!msr_filter)
6015 return NULL;
Alexander Graf1a1552542020-09-25 16:34:21 +02006016
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006017 msr_filter->default_allow = default_allow;
6018 return msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02006019}
6020
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006021static void kvm_free_msr_filter(struct kvm_x86_msr_filter *msr_filter)
Alexander Graf1a1552542020-09-25 16:34:21 +02006022{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006023 u32 i;
6024
6025 if (!msr_filter)
6026 return;
6027
6028 for (i = 0; i < msr_filter->count; i++)
6029 kfree(msr_filter->ranges[i].bitmap);
6030
6031 kfree(msr_filter);
6032}
6033
6034static int kvm_add_msr_filter(struct kvm_x86_msr_filter *msr_filter,
6035 struct kvm_msr_filter_range *user_range)
6036{
Alexander Graf1a1552542020-09-25 16:34:21 +02006037 unsigned long *bitmap = NULL;
6038 size_t bitmap_size;
Alexander Graf1a1552542020-09-25 16:34:21 +02006039
6040 if (!user_range->nmsrs)
6041 return 0;
6042
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02006043 if (user_range->flags & ~(KVM_MSR_FILTER_READ | KVM_MSR_FILTER_WRITE))
6044 return -EINVAL;
6045
6046 if (!user_range->flags)
6047 return -EINVAL;
6048
Alexander Graf1a1552542020-09-25 16:34:21 +02006049 bitmap_size = BITS_TO_LONGS(user_range->nmsrs) * sizeof(long);
6050 if (!bitmap_size || bitmap_size > KVM_MSR_FILTER_MAX_BITMAP_SIZE)
6051 return -EINVAL;
6052
6053 bitmap = memdup_user((__user u8*)user_range->bitmap, bitmap_size);
6054 if (IS_ERR(bitmap))
6055 return PTR_ERR(bitmap);
6056
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02006057 msr_filter->ranges[msr_filter->count] = (struct msr_bitmap_range) {
Alexander Graf1a1552542020-09-25 16:34:21 +02006058 .flags = user_range->flags,
6059 .base = user_range->base,
6060 .nmsrs = user_range->nmsrs,
6061 .bitmap = bitmap,
6062 };
6063
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006064 msr_filter->count++;
Alexander Graf1a1552542020-09-25 16:34:21 +02006065 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02006066}
6067
6068static int kvm_vm_ioctl_set_msr_filter(struct kvm *kvm, void __user *argp)
6069{
6070 struct kvm_msr_filter __user *user_msr_filter = argp;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006071 struct kvm_x86_msr_filter *new_filter, *old_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02006072 struct kvm_msr_filter filter;
6073 bool default_allow;
Paolo Bonzini043248b2020-10-20 10:57:01 -04006074 bool empty = true;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006075 int r = 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02006076 u32 i;
6077
6078 if (copy_from_user(&filter, user_msr_filter, sizeof(filter)))
6079 return -EFAULT;
6080
Paolo Bonzini043248b2020-10-20 10:57:01 -04006081 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++)
6082 empty &= !filter.ranges[i].nmsrs;
Alexander Graf1a1552542020-09-25 16:34:21 +02006083
6084 default_allow = !(filter.flags & KVM_MSR_FILTER_DEFAULT_DENY);
Paolo Bonzini043248b2020-10-20 10:57:01 -04006085 if (empty && !default_allow)
6086 return -EINVAL;
6087
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006088 new_filter = kvm_alloc_msr_filter(default_allow);
6089 if (!new_filter)
6090 return -ENOMEM;
Paolo Bonzini043248b2020-10-20 10:57:01 -04006091
Alexander Graf1a1552542020-09-25 16:34:21 +02006092 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006093 r = kvm_add_msr_filter(new_filter, &filter.ranges[i]);
6094 if (r) {
6095 kvm_free_msr_filter(new_filter);
6096 return r;
6097 }
Alexander Graf1a1552542020-09-25 16:34:21 +02006098 }
6099
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006100 mutex_lock(&kvm->lock);
6101
6102 /* The per-VM filter is protected by kvm->lock... */
6103 old_filter = srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1);
6104
6105 rcu_assign_pointer(kvm->arch.msr_filter, new_filter);
6106 synchronize_srcu(&kvm->srcu);
6107
6108 kvm_free_msr_filter(old_filter);
6109
Alexander Graf1a1552542020-09-25 16:34:21 +02006110 kvm_make_all_cpus_request(kvm, KVM_REQ_MSR_FILTER_CHANGED);
6111 mutex_unlock(&kvm->lock);
6112
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006113 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02006114}
6115
Sergey Senozhatsky7d628742021-06-06 11:10:45 +09006116#ifdef CONFIG_HAVE_KVM_PM_NOTIFIER
6117static int kvm_arch_suspend_notifier(struct kvm *kvm)
6118{
6119 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00006120 unsigned long i;
6121 int ret = 0;
Sergey Senozhatsky7d628742021-06-06 11:10:45 +09006122
6123 mutex_lock(&kvm->lock);
6124 kvm_for_each_vcpu(i, vcpu, kvm) {
6125 if (!vcpu->arch.pv_time_enabled)
6126 continue;
6127
6128 ret = kvm_set_guest_paused(vcpu);
6129 if (ret) {
6130 kvm_err("Failed to pause guest VCPU%d: %d\n",
6131 vcpu->vcpu_id, ret);
6132 break;
6133 }
6134 }
6135 mutex_unlock(&kvm->lock);
6136
6137 return ret ? NOTIFY_BAD : NOTIFY_DONE;
6138}
6139
6140int kvm_arch_pm_notifier(struct kvm *kvm, unsigned long state)
6141{
6142 switch (state) {
6143 case PM_HIBERNATION_PREPARE:
6144 case PM_SUSPEND_PREPARE:
6145 return kvm_arch_suspend_notifier(kvm);
6146 }
6147
6148 return NOTIFY_DONE;
6149}
6150#endif /* CONFIG_HAVE_KVM_PM_NOTIFIER */
6151
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006152static int kvm_vm_ioctl_get_clock(struct kvm *kvm, void __user *argp)
6153{
Paolo Bonzini869b4422021-09-16 18:15:36 +00006154 struct kvm_clock_data data = { 0 };
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006155
Oliver Upton55c0cef2021-09-16 18:15:34 +00006156 get_kvmclock(kvm, &data);
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006157 if (copy_to_user(argp, &data, sizeof(data)))
6158 return -EFAULT;
6159
6160 return 0;
6161}
6162
6163static int kvm_vm_ioctl_set_clock(struct kvm *kvm, void __user *argp)
6164{
6165 struct kvm_arch *ka = &kvm->arch;
6166 struct kvm_clock_data data;
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006167 u64 now_raw_ns;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006168
6169 if (copy_from_user(&data, argp, sizeof(data)))
6170 return -EFAULT;
6171
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006172 /*
6173 * Only KVM_CLOCK_REALTIME is used, but allow passing the
6174 * result of KVM_GET_CLOCK back to KVM_SET_CLOCK.
6175 */
6176 if (data.flags & ~KVM_CLOCK_VALID_FLAGS)
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006177 return -EINVAL;
6178
6179 kvm_hv_invalidate_tsc_page(kvm);
6180 kvm_start_pvclock_update(kvm);
6181 pvclock_update_vm_gtod_copy(kvm);
6182
6183 /*
6184 * This pairs with kvm_guest_time_update(): when masterclock is
6185 * in use, we use master_kernel_ns + kvmclock_offset to set
6186 * unsigned 'system_time' so if we use get_kvmclock_ns() (which
6187 * is slightly ahead) here we risk going negative on unsigned
6188 * 'system_time' when 'data.clock' is very small.
6189 */
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006190 if (data.flags & KVM_CLOCK_REALTIME) {
6191 u64 now_real_ns = ktime_get_real_ns();
6192
6193 /*
6194 * Avoid stepping the kvmclock backwards.
6195 */
6196 if (now_real_ns > data.realtime)
6197 data.clock += now_real_ns - data.realtime;
6198 }
6199
6200 if (ka->use_master_clock)
6201 now_raw_ns = ka->master_kernel_ns;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006202 else
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006203 now_raw_ns = get_kvmclock_base_ns();
6204 ka->kvmclock_offset = data.clock - now_raw_ns;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006205 kvm_end_pvclock_update(kvm);
6206 return 0;
6207}
6208
Carsten Otte1fe779f2007-10-29 16:08:35 +01006209long kvm_arch_vm_ioctl(struct file *filp,
6210 unsigned int ioctl, unsigned long arg)
6211{
6212 struct kvm *kvm = filp->private_data;
6213 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03006214 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07006215 /*
6216 * This union makes it completely explicit to gcc-3.x
6217 * that these two variables' stack usage should be
6218 * combined, not added together.
6219 */
6220 union {
6221 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04006222 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02006223 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07006224 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006225
6226 switch (ioctl) {
6227 case KVM_SET_TSS_ADDR:
6228 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006229 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006230 case KVM_SET_IDENTITY_MAP_ADDR: {
6231 u64 ident_addr;
6232
David Hildenbrand1af1ac92017-08-24 20:51:36 +02006233 mutex_lock(&kvm->lock);
6234 r = -EINVAL;
6235 if (kvm->created_vcpus)
6236 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006237 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00006238 if (copy_from_user(&ident_addr, argp, sizeof(ident_addr)))
David Hildenbrand1af1ac92017-08-24 20:51:36 +02006239 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006240 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
David Hildenbrand1af1ac92017-08-24 20:51:36 +02006241set_identity_unlock:
6242 mutex_unlock(&kvm->lock);
Sheng Yangb927a3c2009-07-21 10:42:48 +08006243 break;
6244 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01006245 case KVM_SET_NR_MMU_PAGES:
6246 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006247 break;
6248 case KVM_GET_NR_MMU_PAGES:
6249 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
6250 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006251 case KVM_CREATE_IRQCHIP: {
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006252 mutex_lock(&kvm->lock);
Radim Krčmář09941362016-12-16 16:10:03 +01006253
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006254 r = -EEXIST;
Radim Krčmář35e6eaa2016-12-16 16:10:01 +01006255 if (irqchip_in_kernel(kvm))
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006256 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01006257
Avi Kivity3e515702012-03-05 14:23:29 +02006258 r = -EINVAL;
Paolo Bonzini557abc42016-06-13 14:50:04 +02006259 if (kvm->created_vcpus)
Avi Kivity3e515702012-03-05 14:23:29 +02006260 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01006261
6262 r = kvm_pic_init(kvm);
6263 if (r)
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006264 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01006265
6266 r = kvm_ioapic_init(kvm);
6267 if (r) {
Radim Krčmář09941362016-12-16 16:10:03 +01006268 kvm_pic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01006269 goto create_irqchip_unlock;
6270 }
6271
Avi Kivity399ec802008-11-19 13:58:46 +02006272 r = kvm_setup_default_irq_routing(kvm);
6273 if (r) {
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08006274 kvm_ioapic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01006275 kvm_pic_destroy(kvm);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02006276 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02006277 }
Radim Krčmář49776fa2016-12-16 16:10:02 +01006278 /* Write kvm->irq_routing before enabling irqchip_in_kernel. */
Paolo Bonzini71ba9942015-07-29 12:31:15 +02006279 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01006280 kvm->arch.irqchip_mode = KVM_IRQCHIP_KERNEL;
Paolo Bonzinief8b4b72021-11-30 07:37:45 -05006281 kvm_request_apicv_update(kvm, true, APICV_INHIBIT_REASON_ABSENT);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006282 create_irqchip_unlock:
6283 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006284 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006285 }
Sheng Yang78376992008-01-28 05:10:22 +08006286 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02006287 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
6288 goto create_pit;
6289 case KVM_CREATE_PIT2:
6290 r = -EFAULT;
6291 if (copy_from_user(&u.pit_config, argp,
6292 sizeof(struct kvm_pit_config)))
6293 goto out;
6294 create_pit:
Paolo Bonzini250715a2016-06-01 14:09:24 +02006295 mutex_lock(&kvm->lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02006296 r = -EEXIST;
6297 if (kvm->arch.vpit)
6298 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08006299 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02006300 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08006301 if (kvm->arch.vpit)
6302 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02006303 create_pit_unlock:
Paolo Bonzini250715a2016-06-01 14:09:24 +02006304 mutex_unlock(&kvm->lock);
Sheng Yang78376992008-01-28 05:10:22 +08006305 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006306 case KVM_GET_IRQCHIP: {
6307 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02006308 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006309
Sasha Levinff5c2c02011-12-04 19:36:29 +02006310 chip = memdup_user(argp, sizeof(*chip));
6311 if (IS_ERR(chip)) {
6312 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006313 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02006314 }
6315
Carsten Otte1fe779f2007-10-29 16:08:35 +01006316 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01006317 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07006318 goto get_irqchip_out;
6319 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
6320 if (r)
6321 goto get_irqchip_out;
6322 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00006323 if (copy_to_user(argp, chip, sizeof(*chip)))
Dave Hansenf0d66272008-08-11 10:01:45 -07006324 goto get_irqchip_out;
6325 r = 0;
6326 get_irqchip_out:
6327 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006328 break;
6329 }
6330 case KVM_SET_IRQCHIP: {
6331 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02006332 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006333
Sasha Levinff5c2c02011-12-04 19:36:29 +02006334 chip = memdup_user(argp, sizeof(*chip));
6335 if (IS_ERR(chip)) {
6336 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006337 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02006338 }
6339
Carsten Otte1fe779f2007-10-29 16:08:35 +01006340 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01006341 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07006342 goto set_irqchip_out;
6343 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
Dave Hansenf0d66272008-08-11 10:01:45 -07006344 set_irqchip_out:
6345 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006346 break;
6347 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08006348 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08006349 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07006350 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006351 goto out;
6352 r = -ENXIO;
6353 if (!kvm->arch.vpit)
6354 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07006355 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006356 if (r)
6357 goto out;
6358 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07006359 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006360 goto out;
6361 r = 0;
6362 break;
6363 }
6364 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08006365 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00006366 if (copy_from_user(&u.ps, argp, sizeof(u.ps)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006367 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006368 mutex_lock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006369 r = -ENXIO;
6370 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006371 goto set_pit_out;
Dave Hansenf0d66272008-08-11 10:01:45 -07006372 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006373set_pit_out:
6374 mutex_unlock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006375 break;
6376 }
Beth Kone9f42752009-07-07 11:50:38 -04006377 case KVM_GET_PIT2: {
6378 r = -ENXIO;
6379 if (!kvm->arch.vpit)
6380 goto out;
6381 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
6382 if (r)
6383 goto out;
6384 r = -EFAULT;
6385 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
6386 goto out;
6387 r = 0;
6388 break;
6389 }
6390 case KVM_SET_PIT2: {
6391 r = -EFAULT;
6392 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
6393 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006394 mutex_lock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04006395 r = -ENXIO;
6396 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006397 goto set_pit2_out;
Beth Kone9f42752009-07-07 11:50:38 -04006398 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006399set_pit2_out:
6400 mutex_unlock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04006401 break;
6402 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006403 case KVM_REINJECT_CONTROL: {
6404 struct kvm_reinject_control control;
6405 r = -EFAULT;
6406 if (copy_from_user(&control, argp, sizeof(control)))
6407 goto out;
Miaohe Lincad23e72019-12-07 17:25:22 +08006408 r = -ENXIO;
6409 if (!kvm->arch.vpit)
6410 goto out;
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006411 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006412 break;
6413 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006414 case KVM_SET_BOOT_CPU_ID:
6415 r = 0;
6416 mutex_lock(&kvm->lock);
Paolo Bonzini557abc42016-06-13 14:50:04 +02006417 if (kvm->created_vcpus)
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006418 r = -EBUSY;
6419 else
6420 kvm->arch.bsp_vcpu_id = arg;
6421 mutex_unlock(&kvm->lock);
6422 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006423#ifdef CONFIG_KVM_XEN
Ed Swierkffde22a2009-10-15 15:21:43 -07006424 case KVM_XEN_HVM_CONFIG: {
Paolo Bonzini51776042017-10-26 15:45:47 +02006425 struct kvm_xen_hvm_config xhc;
Ed Swierkffde22a2009-10-15 15:21:43 -07006426 r = -EFAULT;
Paolo Bonzini51776042017-10-26 15:45:47 +02006427 if (copy_from_user(&xhc, argp, sizeof(xhc)))
Ed Swierkffde22a2009-10-15 15:21:43 -07006428 goto out;
David Woodhouse78e98782021-02-02 13:19:35 +00006429 r = kvm_xen_hvm_config(kvm, &xhc);
Ed Swierkffde22a2009-10-15 15:21:43 -07006430 break;
6431 }
Joao Martinsa76b9642020-12-03 15:52:25 +00006432 case KVM_XEN_HVM_GET_ATTR: {
6433 struct kvm_xen_hvm_attr xha;
6434
6435 r = -EFAULT;
6436 if (copy_from_user(&xha, argp, sizeof(xha)))
Hannes Edercded19f2009-02-21 02:19:13 +01006437 goto out;
Joao Martinsa76b9642020-12-03 15:52:25 +00006438 r = kvm_xen_hvm_get_attr(kvm, &xha);
6439 if (!r && copy_to_user(argp, &xha, sizeof(xha)))
6440 r = -EFAULT;
6441 break;
6442 }
6443 case KVM_XEN_HVM_SET_ATTR: {
6444 struct kvm_xen_hvm_attr xha;
6445
6446 r = -EFAULT;
6447 if (copy_from_user(&xha, argp, sizeof(xha)))
6448 goto out;
6449 r = kvm_xen_hvm_set_attr(kvm, &xha);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006450 break;
6451 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006452#endif
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006453 case KVM_SET_CLOCK:
6454 r = kvm_vm_ioctl_set_clock(kvm, argp);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006455 break;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006456 case KVM_GET_CLOCK:
6457 r = kvm_vm_ioctl_get_clock(kvm, argp);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006458 break;
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006459 case KVM_MEMORY_ENCRYPT_OP: {
6460 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006461 if (kvm_x86_ops.mem_enc_op)
Jason Baronb36464772021-01-14 22:27:56 -05006462 r = static_call(kvm_x86_mem_enc_op)(kvm, argp);
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006463 break;
6464 }
Brijesh Singh69eaede2017-12-04 10:57:26 -06006465 case KVM_MEMORY_ENCRYPT_REG_REGION: {
6466 struct kvm_enc_region region;
6467
6468 r = -EFAULT;
6469 if (copy_from_user(&region, argp, sizeof(region)))
6470 goto out;
6471
6472 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006473 if (kvm_x86_ops.mem_enc_reg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006474 r = static_call(kvm_x86_mem_enc_reg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006475 break;
6476 }
6477 case KVM_MEMORY_ENCRYPT_UNREG_REGION: {
6478 struct kvm_enc_region region;
6479
6480 r = -EFAULT;
6481 if (copy_from_user(&region, argp, sizeof(region)))
6482 goto out;
6483
6484 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006485 if (kvm_x86_ops.mem_enc_unreg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006486 r = static_call(kvm_x86_mem_enc_unreg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006487 break;
6488 }
Roman Kaganfaeb7832018-02-01 16:48:32 +03006489 case KVM_HYPERV_EVENTFD: {
6490 struct kvm_hyperv_eventfd hvevfd;
6491
6492 r = -EFAULT;
6493 if (copy_from_user(&hvevfd, argp, sizeof(hvevfd)))
6494 goto out;
6495 r = kvm_vm_ioctl_hv_eventfd(kvm, &hvevfd);
6496 break;
6497 }
Eric Hankland66bb8a02019-07-10 18:25:15 -07006498 case KVM_SET_PMU_EVENT_FILTER:
6499 r = kvm_vm_ioctl_set_pmu_event_filter(kvm, argp);
6500 break;
Alexander Graf1a1552542020-09-25 16:34:21 +02006501 case KVM_X86_SET_MSR_FILTER:
6502 r = kvm_vm_ioctl_set_msr_filter(kvm, argp);
6503 break;
Carsten Otte043405e2007-10-10 17:16:19 +02006504 default:
Paolo Bonziniad6260d2017-03-27 14:30:40 +02006505 r = -ENOTTY;
Carsten Otte043405e2007-10-10 17:16:19 +02006506 }
6507out:
6508 return r;
6509}
6510
6511static void kvm_init_msr_list(void)
6512{
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006513 struct x86_pmu_capability x86_pmu;
Carsten Otte043405e2007-10-10 17:16:19 +02006514 u32 dummy[2];
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006515 unsigned i;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006516
Jim Mattsone2ada662019-08-21 11:20:04 -07006517 BUILD_BUG_ON_MSG(INTEL_PMC_MAX_FIXED != 4,
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006518 "Please update the fixed PMCs in msrs_to_saved_all[]");
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006519
6520 perf_get_x86_pmu_capability(&x86_pmu);
Jim Mattsone2ada662019-08-21 11:20:04 -07006521
Xiaoyao Li6cbee2b2019-11-13 09:15:21 +08006522 num_msrs_to_save = 0;
6523 num_emulated_msrs = 0;
6524 num_msr_based_features = 0;
6525
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006526 for (i = 0; i < ARRAY_SIZE(msrs_to_save_all); i++) {
6527 if (rdmsr_safe(msrs_to_save_all[i], &dummy[0], &dummy[1]) < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006528 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006529
6530 /*
6531 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006532 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006533 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006534 switch (msrs_to_save_all[i]) {
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006535 case MSR_IA32_BNDCFGS:
Liran Alon503234b2018-09-14 03:25:53 +03006536 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006537 continue;
6538 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006539 case MSR_TSC_AUX:
Sean Christopherson36fa06f2021-05-04 10:17:26 -07006540 if (!kvm_cpu_cap_has(X86_FEATURE_RDTSCP) &&
6541 !kvm_cpu_cap_has(X86_FEATURE_RDPID))
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006542 continue;
6543 break;
Maxim Levitskyf4cfcd22020-05-23 19:14:55 +03006544 case MSR_IA32_UMWAIT_CONTROL:
6545 if (!kvm_cpu_cap_has(X86_FEATURE_WAITPKG))
6546 continue;
6547 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08006548 case MSR_IA32_RTIT_CTL:
6549 case MSR_IA32_RTIT_STATUS:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006550 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT))
Chao Pengbf8c55d2018-10-24 16:05:14 +08006551 continue;
6552 break;
6553 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006554 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006555 !intel_pt_validate_hw_cap(PT_CAP_cr3_filtering))
6556 continue;
6557 break;
6558 case MSR_IA32_RTIT_OUTPUT_BASE:
6559 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006560 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006561 (!intel_pt_validate_hw_cap(PT_CAP_topa_output) &&
6562 !intel_pt_validate_hw_cap(PT_CAP_single_range_output)))
6563 continue;
6564 break;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006565 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006566 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006567 msrs_to_save_all[i] - MSR_IA32_RTIT_ADDR0_A >=
Chao Pengbf8c55d2018-10-24 16:05:14 +08006568 intel_pt_validate_hw_cap(PT_CAP_num_address_ranges) * 2)
6569 continue;
6570 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006571 case MSR_ARCH_PERFMON_PERFCTR0 ... MSR_ARCH_PERFMON_PERFCTR0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006572 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_PERFCTR0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006573 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6574 continue;
6575 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006576 case MSR_ARCH_PERFMON_EVENTSEL0 ... MSR_ARCH_PERFMON_EVENTSEL0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006577 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_EVENTSEL0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006578 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6579 continue;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006580 break;
Jing Liu820a6ee2022-01-05 04:35:21 -08006581 case MSR_IA32_XFD:
Jing Liu548e8362022-01-05 04:35:24 -08006582 case MSR_IA32_XFD_ERR:
Jing Liu820a6ee2022-01-05 04:35:21 -08006583 if (!kvm_cpu_cap_has(X86_FEATURE_XFD))
6584 continue;
6585 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006586 default:
6587 break;
6588 }
6589
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006590 msrs_to_save[num_msrs_to_save++] = msrs_to_save_all[i];
Carsten Ottebbd9b642007-10-30 18:44:21 +01006591 }
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006592
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006593 for (i = 0; i < ARRAY_SIZE(emulated_msrs_all); i++) {
Jason Baronb36464772021-01-14 22:27:56 -05006594 if (!static_call(kvm_x86_has_emulated_msr)(NULL, emulated_msrs_all[i]))
Tom Lendackybc226f02018-05-10 22:06:39 +02006595 continue;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006596
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006597 emulated_msrs[num_emulated_msrs++] = emulated_msrs_all[i];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006598 }
Tom Lendacky801e4592018-02-21 13:39:51 -06006599
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006600 for (i = 0; i < ARRAY_SIZE(msr_based_features_all); i++) {
Tom Lendacky801e4592018-02-21 13:39:51 -06006601 struct kvm_msr_entry msr;
6602
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006603 msr.index = msr_based_features_all[i];
Wanpeng Li66421c12018-02-28 14:03:30 +08006604 if (kvm_get_msr_feature(&msr))
Tom Lendacky801e4592018-02-21 13:39:51 -06006605 continue;
6606
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006607 msr_based_features[num_msr_based_features++] = msr_based_features_all[i];
Tom Lendacky801e4592018-02-21 13:39:51 -06006608 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006609}
6610
6611static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
6612 const void *v)
6613{
Avi Kivity70252a12010-01-19 12:51:22 +02006614 int handled = 0;
6615 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006616
Avi Kivity70252a12010-01-19 12:51:22 +02006617 do {
6618 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006619 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006620 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
6621 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006622 break;
6623 handled += n;
6624 addr += n;
6625 len -= n;
6626 v += n;
6627 } while (len);
6628
6629 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006630}
6631
6632static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
6633{
Avi Kivity70252a12010-01-19 12:51:22 +02006634 int handled = 0;
6635 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006636
Avi Kivity70252a12010-01-19 12:51:22 +02006637 do {
6638 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006639 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006640 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
6641 addr, n, v))
6642 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006643 break;
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006644 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, v);
Avi Kivity70252a12010-01-19 12:51:22 +02006645 handled += n;
6646 addr += n;
6647 len -= n;
6648 v += n;
6649 } while (len);
6650
6651 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006652}
6653
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006654static void kvm_set_segment(struct kvm_vcpu *vcpu,
6655 struct kvm_segment *var, int seg)
6656{
Jason Baronb36464772021-01-14 22:27:56 -05006657 static_call(kvm_x86_set_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006658}
6659
6660void kvm_get_segment(struct kvm_vcpu *vcpu,
6661 struct kvm_segment *var, int seg)
6662{
Jason Baronb36464772021-01-14 22:27:56 -05006663 static_call(kvm_x86_get_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006664}
6665
Paolo Bonzini54987b72014-09-02 13:23:06 +02006666gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
6667 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006668{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006669 struct kvm_mmu *mmu = vcpu->arch.mmu;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006670 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006671
6672 BUG_ON(!mmu_is_nested(vcpu));
6673
6674 /* NPT walks are always user-walks */
6675 access |= PFERR_USER_MASK;
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006676 t_gpa = mmu->gva_to_gpa(vcpu, mmu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006677
6678 return t_gpa;
6679}
6680
Avi Kivityab9ae312010-11-22 17:53:26 +02006681gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
6682 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006683{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006684 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
6685
Jason Baronb36464772021-01-14 22:27:56 -05006686 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006687 return mmu->gva_to_gpa(vcpu, mmu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006688}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006689EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_read);
Gleb Natapov1871c602010-02-10 14:21:32 +02006690
Avi Kivityab9ae312010-11-22 17:53:26 +02006691 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
6692 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006693{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006694 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
6695
Jason Baronb36464772021-01-14 22:27:56 -05006696 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006697 access |= PFERR_FETCH_MASK;
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006698 return mmu->gva_to_gpa(vcpu, mmu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006699}
6700
Avi Kivityab9ae312010-11-22 17:53:26 +02006701gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
6702 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006703{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006704 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
6705
Jason Baronb36464772021-01-14 22:27:56 -05006706 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006707 access |= PFERR_WRITE_MASK;
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006708 return mmu->gva_to_gpa(vcpu, mmu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006709}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006710EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_write);
Gleb Natapov1871c602010-02-10 14:21:32 +02006711
6712/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02006713gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
6714 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006715{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006716 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
6717
6718 return mmu->gva_to_gpa(vcpu, mmu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006719}
6720
6721static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6722 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006723 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006724{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006725 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006726 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006727 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006728
6729 while (bytes) {
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006730 gpa_t gpa = mmu->gva_to_gpa(vcpu, mmu, addr, access, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006731 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02006732 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006733 int ret;
6734
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006735 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006736 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006737 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
6738 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006739 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006740 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006741 goto out;
6742 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006743
Izik Eidus77c20022008-12-29 01:42:19 +02006744 bytes -= toread;
6745 data += toread;
6746 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006747 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006748out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006749 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006750}
Izik Eidus77c20022008-12-29 01:42:19 +02006751
Gleb Natapov1871c602010-02-10 14:21:32 +02006752/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03006753static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
6754 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006755 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006756{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006757 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006758 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Jason Baronb36464772021-01-14 22:27:56 -05006759 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006760 unsigned offset;
6761 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006762
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006763 /* Inline kvm_read_guest_virt_helper for speed. */
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006764 gpa_t gpa = mmu->gva_to_gpa(vcpu, mmu, addr, access|PFERR_FETCH_MASK,
6765 exception);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006766 if (unlikely(gpa == UNMAPPED_GVA))
6767 return X86EMUL_PROPAGATE_FAULT;
6768
6769 offset = addr & (PAGE_SIZE-1);
6770 if (WARN_ON(offset + bytes > PAGE_SIZE))
6771 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006772 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
6773 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006774 if (unlikely(ret < 0))
6775 return X86EMUL_IO_NEEDED;
6776
6777 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02006778}
6779
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006780int kvm_read_guest_virt(struct kvm_vcpu *vcpu,
Avi Kivity0f65dd72011-04-20 13:37:53 +03006781 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006782 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006783{
Jason Baronb36464772021-01-14 22:27:56 -05006784 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006785
Paolo Bonzini353c0952019-01-29 18:41:16 +01006786 /*
6787 * FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED
6788 * is returned, but our callers are not ready for that and they blindly
6789 * call kvm_inject_page_fault. Ensure that they at least do not leak
6790 * uninitialized kernel stack memory into cr2 and error code.
6791 */
6792 memset(exception, 0, sizeof(*exception));
Gleb Natapov1871c602010-02-10 14:21:32 +02006793 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006794 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006795}
Nadav Har'El064aea72011-05-25 23:04:56 +03006796EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02006797
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006798static int emulator_read_std(struct x86_emulate_ctxt *ctxt,
6799 gva_t addr, void *val, unsigned int bytes,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006800 struct x86_exception *exception, bool system)
Gleb Natapov1871c602010-02-10 14:21:32 +02006801{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006802 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006803 u32 access = 0;
6804
Jason Baronb36464772021-01-14 22:27:56 -05006805 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006806 access |= PFERR_USER_MASK;
6807
6808 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006809}
6810
Radim Krčmář7a036a62015-10-30 16:36:24 +01006811static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
6812 unsigned long addr, void *val, unsigned int bytes)
6813{
6814 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6815 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
6816
6817 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
6818}
6819
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006820static int kvm_write_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6821 struct kvm_vcpu *vcpu, u32 access,
6822 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02006823{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006824 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Izik Eidus77c20022008-12-29 01:42:19 +02006825 void *data = val;
6826 int r = X86EMUL_CONTINUE;
6827
6828 while (bytes) {
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006829 gpa_t gpa = mmu->gva_to_gpa(vcpu, mmu, addr, access, exception);
Izik Eidus77c20022008-12-29 01:42:19 +02006830 unsigned offset = addr & (PAGE_SIZE-1);
6831 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
6832 int ret;
6833
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006834 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006835 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006836 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02006837 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006838 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02006839 goto out;
6840 }
6841
6842 bytes -= towrite;
6843 data += towrite;
6844 addr += towrite;
6845 }
6846out:
6847 return r;
6848}
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006849
6850static int emulator_write_std(struct x86_emulate_ctxt *ctxt, gva_t addr, void *val,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006851 unsigned int bytes, struct x86_exception *exception,
6852 bool system)
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006853{
6854 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006855 u32 access = PFERR_WRITE_MASK;
6856
Jason Baronb36464772021-01-14 22:27:56 -05006857 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006858 access |= PFERR_USER_MASK;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006859
6860 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006861 access, exception);
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006862}
6863
6864int kvm_write_guest_virt_system(struct kvm_vcpu *vcpu, gva_t addr, void *val,
6865 unsigned int bytes, struct x86_exception *exception)
6866{
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006867 /* kvm_write_guest_virt_system can pull in tons of pages. */
6868 vcpu->arch.l1tf_flush_l1d = true;
6869
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006870 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
6871 PFERR_WRITE_MASK, exception);
6872}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03006873EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02006874
Sean Christopherson4d31d9e2022-01-20 01:07:15 +00006875static int kvm_can_emulate_insn(struct kvm_vcpu *vcpu, int emul_type,
6876 void *insn, int insn_len)
6877{
6878 return static_call(kvm_x86_can_emulate_instruction)(vcpu, emul_type,
6879 insn, insn_len);
6880}
6881
Wanpeng Li082d06e2018-04-03 16:28:48 -07006882int handle_ud(struct kvm_vcpu *vcpu)
6883{
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006884 static const char kvm_emulate_prefix[] = { __KVM_EMULATE_PREFIX };
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006885 int emul_type = EMULTYPE_TRAP_UD;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006886 char sig[5]; /* ud2; .ascii "kvm" */
6887 struct x86_exception e;
Wanpeng Li082d06e2018-04-03 16:28:48 -07006888
Sean Christopherson4d31d9e2022-01-20 01:07:15 +00006889 if (unlikely(!kvm_can_emulate_insn(vcpu, emul_type, NULL, 0)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07006890 return 1;
6891
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006892 if (force_emulation_prefix &&
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006893 kvm_read_guest_virt(vcpu, kvm_get_linear_rip(vcpu),
6894 sig, sizeof(sig), &e) == 0 &&
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006895 memcmp(sig, kvm_emulate_prefix, sizeof(sig)) == 0) {
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006896 kvm_rip_write(vcpu, kvm_rip_read(vcpu) + sizeof(sig));
Sean Christophersonb4000602019-08-27 14:40:32 -07006897 emul_type = EMULTYPE_TRAP_UD_FORCED;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006898 }
6899
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006900 return kvm_emulate_instruction(vcpu, emul_type);
Wanpeng Li082d06e2018-04-03 16:28:48 -07006901}
6902EXPORT_SYMBOL_GPL(handle_ud);
6903
Tom Lendacky0f89b202016-12-14 14:59:23 -05006904static int vcpu_is_mmio_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6905 gpa_t gpa, bool write)
6906{
6907 /* For APIC access vmexit */
6908 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
6909 return 1;
6910
6911 if (vcpu_match_mmio_gpa(vcpu, gpa)) {
6912 trace_vcpu_match_mmio(gva, gpa, write, true);
6913 return 1;
6914 }
6915
6916 return 0;
6917}
6918
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006919static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6920 gpa_t *gpa, struct x86_exception *exception,
6921 bool write)
6922{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006923 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Jason Baronb36464772021-01-14 22:27:56 -05006924 u32 access = ((static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0)
Avi Kivity97d64b72012-09-12 14:52:00 +03006925 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006926
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08006927 /*
6928 * currently PKRU is only applied to ept enabled guest so
6929 * there is no pkey in EPT page table for L1 guest or EPT
6930 * shadow page table for L2 guest.
6931 */
Sean Christopherson908b7d42021-07-13 09:33:04 -07006932 if (vcpu_match_mmio_gva(vcpu, gva) && (!is_paging(vcpu) ||
6933 !permission_fault(vcpu, vcpu->arch.walk_mmu,
6934 vcpu->arch.mmio_access, 0, access))) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006935 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
6936 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08006937 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006938 return 1;
6939 }
6940
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006941 *gpa = mmu->gva_to_gpa(vcpu, mmu, gva, access, exception);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006942
6943 if (*gpa == UNMAPPED_GVA)
6944 return -1;
6945
Tom Lendacky0f89b202016-12-14 14:59:23 -05006946 return vcpu_is_mmio_gpa(vcpu, gva, *gpa, write);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006947}
6948
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006949int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006950 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02006951{
6952 int ret;
6953
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006954 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006955 if (ret < 0)
6956 return 0;
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08006957 kvm_page_track_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006958 return 1;
6959}
6960
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006961struct read_write_emulator_ops {
6962 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
6963 int bytes);
6964 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
6965 void *val, int bytes);
6966 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6967 int bytes, void *val);
6968 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6969 void *val, int bytes);
6970 bool write;
6971};
6972
6973static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
6974{
6975 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006976 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006977 vcpu->mmio_fragments[0].gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006978 vcpu->mmio_read_completed = 0;
6979 return 1;
6980 }
6981
6982 return 0;
6983}
6984
6985static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6986 void *val, int bytes)
6987{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006988 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006989}
6990
6991static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6992 void *val, int bytes)
6993{
6994 return emulator_write_phys(vcpu, gpa, val, bytes);
6995}
6996
6997static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
6998{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006999 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08007000 return vcpu_mmio_write(vcpu, gpa, bytes, val);
7001}
7002
7003static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
7004 void *val, int bytes)
7005{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08007006 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, NULL);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08007007 return X86EMUL_IO_NEEDED;
7008}
7009
7010static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
7011 void *val, int bytes)
7012{
Avi Kivityf78146b2012-04-18 19:22:47 +03007013 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
7014
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007015 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08007016 return X86EMUL_CONTINUE;
7017}
7018
Mathias Krause0fbe9b02012-08-30 01:30:17 +02007019static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08007020 .read_write_prepare = read_prepare,
7021 .read_write_emulate = read_emulate,
7022 .read_write_mmio = vcpu_mmio_read,
7023 .read_write_exit_mmio = read_exit_mmio,
7024};
7025
Mathias Krause0fbe9b02012-08-30 01:30:17 +02007026static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08007027 .read_write_emulate = write_emulate,
7028 .read_write_mmio = write_mmio,
7029 .read_write_exit_mmio = write_exit_mmio,
7030 .write = true,
7031};
7032
Xiao Guangrong22388a32011-07-13 14:32:31 +08007033static int emulator_read_write_onepage(unsigned long addr, void *val,
7034 unsigned int bytes,
7035 struct x86_exception *exception,
7036 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02007037 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007038{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08007039 gpa_t gpa;
7040 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08007041 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03007042 struct kvm_mmio_fragment *frag;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007043 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Tom Lendacky0f89b202016-12-14 14:59:23 -05007044
7045 /*
7046 * If the exit was due to a NPF we may already have a GPA.
7047 * If the GPA is present, use it to avoid the GVA to GPA table walk.
7048 * Note, this cannot be used on string operations since string
7049 * operation using rep will only have the initial GPA from the NPF
7050 * occurred.
7051 */
Sean Christopherson744e6992020-02-18 15:03:09 -08007052 if (ctxt->gpa_available && emulator_can_use_gpa(ctxt) &&
7053 (addr & ~PAGE_MASK) == (ctxt->gpa_val & ~PAGE_MASK)) {
7054 gpa = ctxt->gpa_val;
Brijesh Singh618232e2017-08-17 18:36:57 +02007055 ret = vcpu_is_mmio_gpa(vcpu, addr, gpa, write);
7056 } else {
7057 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
7058 if (ret < 0)
7059 return X86EMUL_PROPAGATE_FAULT;
Tom Lendacky0f89b202016-12-14 14:59:23 -05007060 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08007061
Brijesh Singh618232e2017-08-17 18:36:57 +02007062 if (!ret && ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01007063 return X86EMUL_CONTINUE;
7064
Carsten Ottebbd9b642007-10-30 18:44:21 +01007065 /*
7066 * Is this MMIO handled locally?
7067 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08007068 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02007069 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007070 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01007071
Avi Kivity70252a12010-01-19 12:51:22 +02007072 gpa += handled;
7073 bytes -= handled;
7074 val += handled;
7075
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007076 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
7077 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
7078 frag->gpa = gpa;
7079 frag->data = val;
7080 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03007081 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01007082}
7083
Xiubo Li52eb5a62015-03-13 17:39:45 +08007084static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
7085 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08007086 void *val, unsigned int bytes,
7087 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02007088 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007089{
Avi Kivity0f65dd72011-04-20 13:37:53 +03007090 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03007091 gpa_t gpa;
7092 int rc;
7093
7094 if (ops->read_write_prepare &&
7095 ops->read_write_prepare(vcpu, val, bytes))
7096 return X86EMUL_CONTINUE;
7097
7098 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03007099
Carsten Ottebbd9b642007-10-30 18:44:21 +01007100 /* Crossing a page boundary? */
7101 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03007102 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01007103
7104 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08007105 rc = emulator_read_write_onepage(addr, val, now, exception,
7106 vcpu, ops);
7107
Carsten Ottebbd9b642007-10-30 18:44:21 +01007108 if (rc != X86EMUL_CONTINUE)
7109 return rc;
7110 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02007111 if (ctxt->mode != X86EMUL_MODE_PROT64)
7112 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01007113 val += now;
7114 bytes -= now;
7115 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08007116
Avi Kivityf78146b2012-04-18 19:22:47 +03007117 rc = emulator_read_write_onepage(addr, val, bytes, exception,
7118 vcpu, ops);
7119 if (rc != X86EMUL_CONTINUE)
7120 return rc;
7121
7122 if (!vcpu->mmio_nr_fragments)
7123 return rc;
7124
7125 gpa = vcpu->mmio_fragments[0].gpa;
7126
7127 vcpu->mmio_needed = 1;
7128 vcpu->mmio_cur_fragment = 0;
7129
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007130 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03007131 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
7132 vcpu->run->exit_reason = KVM_EXIT_MMIO;
7133 vcpu->run->mmio.phys_addr = gpa;
7134
7135 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08007136}
7137
7138static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
7139 unsigned long addr,
7140 void *val,
7141 unsigned int bytes,
7142 struct x86_exception *exception)
7143{
7144 return emulator_read_write(ctxt, addr, val, bytes,
7145 exception, &read_emultor);
7146}
7147
Xiubo Li52eb5a62015-03-13 17:39:45 +08007148static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08007149 unsigned long addr,
7150 const void *val,
7151 unsigned int bytes,
7152 struct x86_exception *exception)
7153{
7154 return emulator_read_write(ctxt, addr, (void *)val, bytes,
7155 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007156}
Carsten Ottebbd9b642007-10-30 18:44:21 +01007157
Avi Kivitydaea3e72010-03-15 13:59:54 +02007158#define CMPXCHG_TYPE(t, ptr, old, new) \
7159 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
7160
7161#ifdef CONFIG_X86_64
7162# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
7163#else
7164# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01007165 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02007166#endif
7167
Avi Kivity0f65dd72011-04-20 13:37:53 +03007168static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
7169 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007170 const void *old,
7171 const void *new,
7172 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03007173 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007174{
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007175 struct kvm_host_map map;
Avi Kivity0f65dd72011-04-20 13:37:53 +03007176 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02007177 u64 page_line_mask;
Avi Kivitydaea3e72010-03-15 13:59:54 +02007178 gpa_t gpa;
Avi Kivitydaea3e72010-03-15 13:59:54 +02007179 char *kaddr;
7180 bool exchanged;
7181
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007182 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02007183 if (bytes > 8 || (bytes & (bytes - 1)))
7184 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007185
Avi Kivitydaea3e72010-03-15 13:59:54 +02007186 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05007187
Avi Kivitydaea3e72010-03-15 13:59:54 +02007188 if (gpa == UNMAPPED_GVA ||
7189 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
7190 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007191
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02007192 /*
7193 * Emulate the atomic as a straight write to avoid #AC if SLD is
7194 * enabled in the host and the access splits a cache line.
7195 */
7196 if (boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
7197 page_line_mask = ~(cache_line_size() - 1);
7198 else
7199 page_line_mask = PAGE_MASK;
7200
7201 if (((gpa + bytes - 1) & page_line_mask) != (gpa & page_line_mask))
Avi Kivitydaea3e72010-03-15 13:59:54 +02007202 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007203
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007204 if (kvm_vcpu_map(vcpu, gpa_to_gfn(gpa), &map))
Wei Yongjunc19b8bd2010-07-15 08:51:58 +08007205 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02007206
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007207 kaddr = map.hva + offset_in_page(gpa);
7208
Avi Kivitydaea3e72010-03-15 13:59:54 +02007209 switch (bytes) {
7210 case 1:
7211 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
7212 break;
7213 case 2:
7214 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
7215 break;
7216 case 4:
7217 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
7218 break;
7219 case 8:
7220 exchanged = CMPXCHG64(kaddr, old, new);
7221 break;
7222 default:
7223 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007224 }
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007225
7226 kvm_vcpu_unmap(vcpu, &map, true);
Avi Kivitydaea3e72010-03-15 13:59:54 +02007227
7228 if (!exchanged)
7229 return X86EMUL_CMPXCHG_FAILED;
7230
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08007231 kvm_page_track_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03007232
7233 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02007234
Marcelo Tosatti3200f402008-03-29 20:17:59 -03007235emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02007236 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007237
Avi Kivity0f65dd72011-04-20 13:37:53 +03007238 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007239}
7240
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007241static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
7242{
Wanpeng Licbfc6c92017-05-19 02:46:56 -07007243 int r = 0, i;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007244
Wanpeng Licbfc6c92017-05-19 02:46:56 -07007245 for (i = 0; i < vcpu->arch.pio.count; i++) {
7246 if (vcpu->arch.pio.in)
7247 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
7248 vcpu->arch.pio.size, pd);
7249 else
7250 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
7251 vcpu->arch.pio.port, vcpu->arch.pio.size,
7252 pd);
7253 if (r)
7254 break;
7255 pd += vcpu->arch.pio.size;
7256 }
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007257 return r;
7258}
7259
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007260static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007261 unsigned short port,
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007262 unsigned int count, bool in)
7263{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007264 vcpu->arch.pio.port = port;
7265 vcpu->arch.pio.in = in;
7266 vcpu->arch.pio.count = count;
7267 vcpu->arch.pio.size = size;
7268
Paolo Bonzini0d33b1b2021-10-13 12:29:42 -04007269 if (!kernel_pio(vcpu, vcpu->arch.pio_data))
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007270 return 1;
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007271
7272 vcpu->run->exit_reason = KVM_EXIT_IO;
7273 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
7274 vcpu->run->io.size = size;
7275 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
7276 vcpu->run->io.count = count;
7277 vcpu->run->io.port = port;
7278
7279 return 0;
7280}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007281
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007282static int __emulator_pio_in(struct kvm_vcpu *vcpu, int size,
7283 unsigned short port, unsigned int count)
7284{
7285 WARN_ON(vcpu->arch.pio.count);
7286 memset(vcpu->arch.pio_data, 0, size * count);
7287 return emulator_pio_in_out(vcpu, size, port, count, true);
7288}
7289
Paolo Bonzini6b5efc92021-10-12 12:35:20 -04007290static void complete_emulator_pio_in(struct kvm_vcpu *vcpu, void *val)
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007291{
Paolo Bonzini6b5efc92021-10-12 12:35:20 -04007292 int size = vcpu->arch.pio.size;
7293 unsigned count = vcpu->arch.pio.count;
7294 memcpy(val, vcpu->arch.pio_data, size * count);
7295 trace_kvm_pio(KVM_PIO_IN, vcpu->arch.pio.port, size, count, vcpu->arch.pio_data);
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007296 vcpu->arch.pio.count = 0;
7297}
7298
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007299static int emulator_pio_in(struct kvm_vcpu *vcpu, int size,
7300 unsigned short port, void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007301{
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007302 if (vcpu->arch.pio.count) {
Sean Christophersond07898e2021-10-25 13:13:10 -07007303 /*
7304 * Complete a previous iteration that required userspace I/O.
7305 * Note, @count isn't guaranteed to match pio.count as userspace
7306 * can modify ECX before rerunning the vCPU. Ignore any such
7307 * shenanigans as KVM doesn't support modifying the rep count,
7308 * and the emulator ensures @count doesn't overflow the buffer.
7309 */
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007310 } else {
7311 int r = __emulator_pio_in(vcpu, size, port, count);
7312 if (!r)
7313 return r;
Avi Kivityca1d4a92011-04-20 13:37:53 +03007314
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007315 /* Results already available, fall through. */
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007316 }
7317
Paolo Bonzini6b5efc92021-10-12 12:35:20 -04007318 complete_emulator_pio_in(vcpu, val);
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007319 return 1;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007320}
7321
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007322static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
7323 int size, unsigned short port, void *val,
7324 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007325{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007326 return emulator_pio_in(emul_to_vcpu(ctxt), size, port, val, count);
Avi Kivityca1d4a92011-04-20 13:37:53 +03007327
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007328}
7329
7330static int emulator_pio_out(struct kvm_vcpu *vcpu, int size,
7331 unsigned short port, const void *val,
7332 unsigned int count)
7333{
Paolo Bonzini0d33b1b2021-10-13 12:29:42 -04007334 int ret;
7335
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007336 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02007337 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007338 ret = emulator_pio_in_out(vcpu, size, port, count, false);
Paolo Bonzini0d33b1b2021-10-13 12:29:42 -04007339 if (ret)
7340 vcpu->arch.pio.count = 0;
7341
7342 return ret;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007343}
7344
Carsten Ottebbd9b642007-10-30 18:44:21 +01007345static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
7346 int size, unsigned short port,
7347 const void *val, unsigned int count)
7348{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007349 return emulator_pio_out(emul_to_vcpu(ctxt), size, port, val, count);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007350}
7351
7352static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
7353{
Jason Baronb36464772021-01-14 22:27:56 -05007354 return static_call(kvm_x86_get_segment_base)(vcpu, seg);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007355}
7356
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007357static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007358{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007359 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007360}
7361
Jiang Biaoae6a2372016-11-07 08:54:51 +08007362static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007363{
7364 if (!need_emulate_wbinvd(vcpu))
7365 return X86EMUL_CONTINUE;
7366
Jason Baronb36464772021-01-14 22:27:56 -05007367 if (static_call(kvm_x86_has_wbinvd_exit)()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01007368 int cpu = get_cpu();
7369
7370 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Wanpeng Lic2162e12021-03-12 10:45:51 +08007371 on_each_cpu_mask(vcpu->arch.wbinvd_dirty_mask,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007372 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01007373 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007374 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01007375 } else
7376 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007377 return X86EMUL_CONTINUE;
7378}
Joel Schopp5cb56052015-03-02 13:43:31 -06007379
7380int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
7381{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007382 kvm_emulate_wbinvd_noskip(vcpu);
7383 return kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06007384}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007385EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
7386
Joel Schopp5cb56052015-03-02 13:43:31 -06007387
7388
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007389static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
7390{
Joel Schopp5cb56052015-03-02 13:43:31 -06007391 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007392}
7393
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05007394static void emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
7395 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007396{
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05007397 kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007398}
7399
Xiubo Li52eb5a62015-03-13 17:39:45 +08007400static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
7401 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007402{
Gleb Natapov338dbc92010-04-28 19:15:32 +03007403
Paolo Bonzini996ff542020-12-14 07:49:54 -05007404 return kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007405}
7406
Gleb Natapov52a46612010-03-18 15:20:03 +02007407static u64 mk_cr_64(u64 curr_cr, u32 new_val)
7408{
7409 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
7410}
7411
Avi Kivity717746e2011-04-20 13:37:53 +03007412static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02007413{
Avi Kivity717746e2011-04-20 13:37:53 +03007414 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02007415 unsigned long value;
7416
7417 switch (cr) {
7418 case 0:
7419 value = kvm_read_cr0(vcpu);
7420 break;
7421 case 2:
7422 value = vcpu->arch.cr2;
7423 break;
7424 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02007425 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02007426 break;
7427 case 4:
7428 value = kvm_read_cr4(vcpu);
7429 break;
7430 case 8:
7431 value = kvm_get_cr8(vcpu);
7432 break;
7433 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007434 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02007435 return 0;
7436 }
7437
7438 return value;
7439}
7440
Avi Kivity717746e2011-04-20 13:37:53 +03007441static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02007442{
Avi Kivity717746e2011-04-20 13:37:53 +03007443 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03007444 int res = 0;
7445
Gleb Natapov52a46612010-03-18 15:20:03 +02007446 switch (cr) {
7447 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03007448 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007449 break;
7450 case 2:
7451 vcpu->arch.cr2 = val;
7452 break;
7453 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03007454 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007455 break;
7456 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03007457 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007458 break;
7459 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01007460 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007461 break;
7462 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007463 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03007464 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02007465 }
Gleb Natapov0f122442010-04-28 19:15:31 +03007466
7467 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02007468}
7469
Avi Kivity717746e2011-04-20 13:37:53 +03007470static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02007471{
Jason Baronb36464772021-01-14 22:27:56 -05007472 return static_call(kvm_x86_get_cpl)(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02007473}
7474
Avi Kivity4bff1e862011-04-20 13:37:53 +03007475static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007476{
Jason Baronb36464772021-01-14 22:27:56 -05007477 static_call(kvm_x86_get_gdt)(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007478}
7479
Avi Kivity4bff1e862011-04-20 13:37:53 +03007480static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007481{
Jason Baronb36464772021-01-14 22:27:56 -05007482 static_call(kvm_x86_get_idt)(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007483}
7484
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007485static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7486{
Jason Baronb36464772021-01-14 22:27:56 -05007487 static_call(kvm_x86_set_gdt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007488}
7489
7490static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7491{
Jason Baronb36464772021-01-14 22:27:56 -05007492 static_call(kvm_x86_set_idt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007493}
7494
Avi Kivity4bff1e862011-04-20 13:37:53 +03007495static unsigned long emulator_get_cached_segment_base(
7496 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03007497{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007498 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03007499}
7500
Avi Kivity1aa36612011-04-27 13:20:30 +03007501static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
7502 struct desc_struct *desc, u32 *base3,
7503 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007504{
7505 struct kvm_segment var;
7506
Avi Kivity4bff1e862011-04-20 13:37:53 +03007507 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03007508 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007509
Gleb Natapov378a8b02013-01-21 15:36:48 +02007510 if (var.unusable) {
7511 memset(desc, 0, sizeof(*desc));
Radim Krčmářf0367ee2017-05-18 19:37:30 +02007512 if (base3)
7513 *base3 = 0;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007514 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02007515 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007516
7517 if (var.g)
7518 var.limit >>= 12;
7519 set_desc_limit(desc, var.limit);
7520 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02007521#ifdef CONFIG_X86_64
7522 if (base3)
7523 *base3 = var.base >> 32;
7524#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007525 desc->type = var.type;
7526 desc->s = var.s;
7527 desc->dpl = var.dpl;
7528 desc->p = var.present;
7529 desc->avl = var.avl;
7530 desc->l = var.l;
7531 desc->d = var.db;
7532 desc->g = var.g;
7533
7534 return true;
7535}
7536
Avi Kivity1aa36612011-04-27 13:20:30 +03007537static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
7538 struct desc_struct *desc, u32 base3,
7539 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007540{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007541 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007542 struct kvm_segment var;
7543
Avi Kivity1aa36612011-04-27 13:20:30 +03007544 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007545 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02007546#ifdef CONFIG_X86_64
7547 var.base |= ((u64)base3) << 32;
7548#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007549 var.limit = get_desc_limit(desc);
7550 if (desc->g)
7551 var.limit = (var.limit << 12) | 0xfff;
7552 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007553 var.dpl = desc->dpl;
7554 var.db = desc->d;
7555 var.s = desc->s;
7556 var.l = desc->l;
7557 var.g = desc->g;
7558 var.avl = desc->avl;
7559 var.present = desc->p;
7560 var.unusable = !var.present;
7561 var.padding = 0;
7562
7563 kvm_set_segment(vcpu, &var, seg);
7564 return;
7565}
7566
Avi Kivity717746e2011-04-20 13:37:53 +03007567static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
7568 u32 msr_index, u64 *pdata)
7569{
Alexander Graf1ae09952020-09-25 16:34:16 +02007570 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7571 int r;
7572
7573 r = kvm_get_msr(vcpu, msr_index, pdata);
7574
Hou Wenlongd2f7d492021-11-02 17:15:31 +08007575 if (r && kvm_msr_user_space(vcpu, msr_index, KVM_EXIT_X86_RDMSR, 0,
7576 complete_emulated_rdmsr, r)) {
Alexander Graf1ae09952020-09-25 16:34:16 +02007577 /* Bounce to user space */
7578 return X86EMUL_IO_NEEDED;
7579 }
7580
7581 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007582}
7583
7584static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
7585 u32 msr_index, u64 data)
7586{
Alexander Graf1ae09952020-09-25 16:34:16 +02007587 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7588 int r;
7589
7590 r = kvm_set_msr(vcpu, msr_index, data);
7591
Hou Wenlongd2f7d492021-11-02 17:15:31 +08007592 if (r && kvm_msr_user_space(vcpu, msr_index, KVM_EXIT_X86_WRMSR, data,
7593 complete_emulated_msr_access, r)) {
Alexander Graf1ae09952020-09-25 16:34:16 +02007594 /* Bounce to user space */
7595 return X86EMUL_IO_NEEDED;
7596 }
7597
7598 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007599}
7600
Paolo Bonzini64d60672015-05-07 11:36:11 +02007601static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
7602{
7603 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7604
7605 return vcpu->arch.smbase;
7606}
7607
7608static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
7609{
7610 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7611
7612 vcpu->arch.smbase = smbase;
7613}
7614
Nadav Amit67f4d422014-06-02 18:34:09 +03007615static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
7616 u32 pmc)
7617{
Jim Mattsone6cd31f2021-11-05 13:20:58 -07007618 if (kvm_pmu_is_valid_rdpmc_ecx(emul_to_vcpu(ctxt), pmc))
7619 return 0;
7620 return -EINVAL;
Nadav Amit67f4d422014-06-02 18:34:09 +03007621}
7622
Avi Kivity222d21a2011-11-10 14:57:30 +02007623static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
7624 u32 pmc, u64 *pdata)
7625{
Wei Huangc6702c92015-06-19 13:44:45 +02007626 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02007627}
7628
Avi Kivity6c3287f2011-04-20 15:43:05 +03007629static void emulator_halt(struct x86_emulate_ctxt *ctxt)
7630{
7631 emul_to_vcpu(ctxt)->arch.halt_request = 1;
7632}
7633
Avi Kivity29535382011-04-20 13:37:53 +03007634static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007635 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007636 enum x86_intercept_stage stage)
7637{
Jason Baronb36464772021-01-14 22:27:56 -05007638 return static_call(kvm_x86_check_intercept)(emul_to_vcpu(ctxt), info, stage,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007639 &ctxt->exception);
Avi Kivityc4f035c2011-04-04 12:39:22 +02007640}
7641
Yu Zhange911eb32017-08-24 20:27:52 +08007642static bool emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Sean Christophersonf91af512020-03-04 17:34:37 -08007643 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx,
7644 bool exact_only)
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007645{
Sean Christophersonf91af512020-03-04 17:34:37 -08007646 return kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx, exact_only);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007647}
7648
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007649static bool emulator_guest_has_long_mode(struct x86_emulate_ctxt *ctxt)
7650{
7651 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_LM);
7652}
7653
7654static bool emulator_guest_has_movbe(struct x86_emulate_ctxt *ctxt)
7655{
7656 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_MOVBE);
7657}
7658
7659static bool emulator_guest_has_fxsr(struct x86_emulate_ctxt *ctxt)
7660{
7661 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_FXSR);
7662}
7663
Avi Kivitydd856ef2012-08-27 23:46:17 +03007664static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
7665{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007666 return kvm_register_read_raw(emul_to_vcpu(ctxt), reg);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007667}
7668
7669static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
7670{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007671 kvm_register_write_raw(emul_to_vcpu(ctxt), reg, val);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007672}
7673
Nadav Amit801806d2015-01-26 09:32:23 +02007674static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
7675{
Jason Baronb36464772021-01-14 22:27:56 -05007676 static_call(kvm_x86_set_nmi_mask)(emul_to_vcpu(ctxt), masked);
Nadav Amit801806d2015-01-26 09:32:23 +02007677}
7678
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007679static unsigned emulator_get_hflags(struct x86_emulate_ctxt *ctxt)
7680{
7681 return emul_to_vcpu(ctxt)->arch.hflags;
7682}
7683
Sean Christophersonedce4652021-06-09 11:56:13 -07007684static void emulator_exiting_smm(struct x86_emulate_ctxt *ctxt)
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007685{
Sean Christopherson78fcb2c2021-06-09 11:56:11 -07007686 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7687
Sean Christophersondc872752021-06-09 11:56:15 -07007688 kvm_smm_changed(vcpu, false);
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007689}
7690
Sean Christophersonecc513e2021-06-09 11:56:19 -07007691static int emulator_leave_smm(struct x86_emulate_ctxt *ctxt,
Sean Christophersoned193212019-04-02 08:03:09 -07007692 const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007693{
Sean Christophersonecc513e2021-06-09 11:56:19 -07007694 return static_call(kvm_x86_leave_smm)(emul_to_vcpu(ctxt), smstate);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007695}
7696
Sean Christopherson25b17222021-06-09 11:56:12 -07007697static void emulator_triple_fault(struct x86_emulate_ctxt *ctxt)
7698{
7699 kvm_make_request(KVM_REQ_TRIPLE_FAULT, emul_to_vcpu(ctxt));
7700}
7701
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007702static int emulator_set_xcr(struct x86_emulate_ctxt *ctxt, u32 index, u64 xcr)
7703{
7704 return __kvm_set_xcr(emul_to_vcpu(ctxt), index, xcr);
7705}
7706
Mathias Krause0225fb52012-08-30 01:30:16 +02007707static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03007708 .read_gpr = emulator_read_gpr,
7709 .write_gpr = emulator_write_gpr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02007710 .read_std = emulator_read_std,
7711 .write_std = emulator_write_std,
Radim Krčmář7a036a62015-10-30 16:36:24 +01007712 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02007713 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007714 .read_emulated = emulator_read_emulated,
7715 .write_emulated = emulator_write_emulated,
7716 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007717 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007718 .pio_in_emulated = emulator_pio_in_emulated,
7719 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03007720 .get_segment = emulator_get_segment,
7721 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03007722 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007723 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007724 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007725 .set_gdt = emulator_set_gdt,
7726 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02007727 .get_cr = emulator_get_cr,
7728 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02007729 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03007730 .get_dr = emulator_get_dr,
7731 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02007732 .get_smbase = emulator_get_smbase,
7733 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03007734 .set_msr = emulator_set_msr,
7735 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03007736 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02007737 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03007738 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007739 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03007740 .fix_hypercall = emulator_fix_hypercall,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007741 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007742 .get_cpuid = emulator_get_cpuid,
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007743 .guest_has_long_mode = emulator_guest_has_long_mode,
7744 .guest_has_movbe = emulator_guest_has_movbe,
7745 .guest_has_fxsr = emulator_guest_has_fxsr,
Nadav Amit801806d2015-01-26 09:32:23 +02007746 .set_nmi_mask = emulator_set_nmi_mask,
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007747 .get_hflags = emulator_get_hflags,
Sean Christophersonedce4652021-06-09 11:56:13 -07007748 .exiting_smm = emulator_exiting_smm,
Sean Christophersonecc513e2021-06-09 11:56:19 -07007749 .leave_smm = emulator_leave_smm,
Sean Christopherson25b17222021-06-09 11:56:12 -07007750 .triple_fault = emulator_triple_fault,
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007751 .set_xcr = emulator_set_xcr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007752};
7753
Gleb Natapov95cb2292010-04-28 19:15:43 +03007754static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
7755{
Jason Baronb36464772021-01-14 22:27:56 -05007756 u32 int_shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03007757 /*
7758 * an sti; sti; sequence only disable interrupts for the first
7759 * instruction. So, if the last instruction, be it emulated or
7760 * not, left the system with the INT_STI flag enabled, it
7761 * means that the last instruction is an sti. We should not
7762 * leave the flag on in this case. The same goes for mov ss
7763 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02007764 if (int_shadow & mask)
7765 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007766 if (unlikely(int_shadow || mask)) {
Jason Baronb36464772021-01-14 22:27:56 -05007767 static_call(kvm_x86_set_interrupt_shadow)(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007768 if (!mask)
7769 kvm_make_request(KVM_REQ_EVENT, vcpu);
7770 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03007771}
7772
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007773static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03007774{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007775 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02007776 if (ctxt->exception.vector == PF_VECTOR)
Sean Christopherson53b3d8e2020-03-20 14:28:01 -07007777 return kvm_inject_emulated_page_fault(vcpu, &ctxt->exception);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007778
7779 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02007780 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
7781 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03007782 else
Avi Kivityda9cb572010-11-22 17:53:21 +02007783 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007784 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03007785}
7786
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007787static struct x86_emulate_ctxt *alloc_emulate_ctxt(struct kvm_vcpu *vcpu)
7788{
7789 struct x86_emulate_ctxt *ctxt;
7790
7791 ctxt = kmem_cache_zalloc(x86_emulator_cache, GFP_KERNEL_ACCOUNT);
7792 if (!ctxt) {
7793 pr_err("kvm: failed to allocate vcpu's emulator\n");
7794 return NULL;
7795 }
7796
7797 ctxt->vcpu = vcpu;
7798 ctxt->ops = &emulate_ops;
7799 vcpu->arch.emulate_ctxt = ctxt;
7800
7801 return ctxt;
7802}
7803
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007804static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
7805{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007806 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007807 int cs_db, cs_l;
7808
Jason Baronb36464772021-01-14 22:27:56 -05007809 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007810
Sean Christopherson744e6992020-02-18 15:03:09 -08007811 ctxt->gpa_available = false;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007812 ctxt->eflags = kvm_get_rflags(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007813 ctxt->tf = (ctxt->eflags & X86_EFLAGS_TF) != 0;
7814
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007815 ctxt->eip = kvm_rip_read(vcpu);
7816 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
7817 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03007818 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007819 cs_db ? X86EMUL_MODE_PROT32 :
7820 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02007821 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007822 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
7823 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007824
Wanpeng Lida6393c2021-05-27 17:01:36 -07007825 ctxt->interruptibility = 0;
7826 ctxt->have_exception = false;
7827 ctxt->exception.vector = -1;
7828 ctxt->perm_ok = false;
7829
Avi Kivitydd856ef2012-08-27 23:46:17 +03007830 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007831 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007832}
7833
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007834void kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02007835{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007836 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02007837 int ret;
7838
7839 init_emulate_ctxt(vcpu);
7840
Avi Kivity9dac77f2011-06-01 15:34:25 +03007841 ctxt->op_bytes = 2;
7842 ctxt->ad_bytes = 2;
7843 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007844 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02007845
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007846 if (ret != X86EMUL_CONTINUE) {
7847 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7848 } else {
7849 ctxt->eip = ctxt->_eip;
7850 kvm_rip_write(vcpu, ctxt->eip);
7851 kvm_set_rflags(vcpu, ctxt->eflags);
7852 }
Mohammed Gamal63995652010-09-19 14:34:06 +02007853}
7854EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
7855
David Edmondsone615e352021-09-20 11:37:36 +01007856static void prepare_emulation_failure_exit(struct kvm_vcpu *vcpu, u64 *data,
7857 u8 ndata, u8 *insn_bytes, u8 insn_size)
Aaron Lewis19238e72021-05-10 07:48:33 -07007858{
Aaron Lewis19238e72021-05-10 07:48:33 -07007859 struct kvm_run *run = vcpu->run;
David Edmondsone615e352021-09-20 11:37:36 +01007860 u64 info[5];
7861 u8 info_start;
7862
7863 /*
7864 * Zero the whole array used to retrieve the exit info, as casting to
7865 * u32 for select entries will leave some chunks uninitialized.
7866 */
7867 memset(&info, 0, sizeof(info));
7868
7869 static_call(kvm_x86_get_exit_info)(vcpu, (u32 *)&info[0], &info[1],
7870 &info[2], (u32 *)&info[3],
7871 (u32 *)&info[4]);
Aaron Lewis19238e72021-05-10 07:48:33 -07007872
7873 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7874 run->emulation_failure.suberror = KVM_INTERNAL_ERROR_EMULATION;
David Edmondsone615e352021-09-20 11:37:36 +01007875
7876 /*
7877 * There's currently space for 13 entries, but 5 are used for the exit
7878 * reason and info. Restrict to 4 to reduce the maintenance burden
7879 * when expanding kvm_run.emulation_failure in the future.
7880 */
7881 if (WARN_ON_ONCE(ndata > 4))
7882 ndata = 4;
7883
7884 /* Always include the flags as a 'data' entry. */
7885 info_start = 1;
Aaron Lewis19238e72021-05-10 07:48:33 -07007886 run->emulation_failure.flags = 0;
7887
7888 if (insn_size) {
David Edmondsone615e352021-09-20 11:37:36 +01007889 BUILD_BUG_ON((sizeof(run->emulation_failure.insn_size) +
7890 sizeof(run->emulation_failure.insn_bytes) != 16));
7891 info_start += 2;
Aaron Lewis19238e72021-05-10 07:48:33 -07007892 run->emulation_failure.flags |=
7893 KVM_INTERNAL_ERROR_EMULATION_FLAG_INSTRUCTION_BYTES;
7894 run->emulation_failure.insn_size = insn_size;
7895 memset(run->emulation_failure.insn_bytes, 0x90,
7896 sizeof(run->emulation_failure.insn_bytes));
David Edmondsone615e352021-09-20 11:37:36 +01007897 memcpy(run->emulation_failure.insn_bytes, insn_bytes, insn_size);
Aaron Lewis19238e72021-05-10 07:48:33 -07007898 }
David Edmondsone615e352021-09-20 11:37:36 +01007899
7900 memcpy(&run->internal.data[info_start], info, sizeof(info));
7901 memcpy(&run->internal.data[info_start + ARRAY_SIZE(info)], data,
7902 ndata * sizeof(data[0]));
7903
7904 run->emulation_failure.ndata = info_start + ARRAY_SIZE(info) + ndata;
Aaron Lewis19238e72021-05-10 07:48:33 -07007905}
7906
David Edmondsone615e352021-09-20 11:37:36 +01007907static void prepare_emulation_ctxt_failure_exit(struct kvm_vcpu *vcpu)
7908{
7909 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
7910
7911 prepare_emulation_failure_exit(vcpu, NULL, 0, ctxt->fetch.data,
7912 ctxt->fetch.end - ctxt->fetch.data);
7913}
7914
7915void __kvm_prepare_emulation_failure_exit(struct kvm_vcpu *vcpu, u64 *data,
7916 u8 ndata)
7917{
7918 prepare_emulation_failure_exit(vcpu, data, ndata, NULL, 0);
7919}
7920EXPORT_SYMBOL_GPL(__kvm_prepare_emulation_failure_exit);
7921
7922void kvm_prepare_emulation_failure_exit(struct kvm_vcpu *vcpu)
7923{
7924 __kvm_prepare_emulation_failure_exit(vcpu, NULL, 0);
7925}
7926EXPORT_SYMBOL_GPL(kvm_prepare_emulation_failure_exit);
7927
Liran Alone2366172018-03-12 13:12:49 +02007928static int handle_emulation_failure(struct kvm_vcpu *vcpu, int emulation_type)
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007929{
Aaron Lewis19238e72021-05-10 07:48:33 -07007930 struct kvm *kvm = vcpu->kvm;
7931
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007932 ++vcpu->stat.insn_emulation_fail;
7933 trace_kvm_emulate_insn_failed(vcpu);
Liran Alone2366172018-03-12 13:12:49 +02007934
Sean Christopherson42cbf062019-08-27 14:40:31 -07007935 if (emulation_type & EMULTYPE_VMWARE_GP) {
7936 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007937 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07007938 }
Liran Alone2366172018-03-12 13:12:49 +02007939
Aaron Lewis19238e72021-05-10 07:48:33 -07007940 if (kvm->arch.exit_on_emulation_error ||
7941 (emulation_type & EMULTYPE_SKIP)) {
David Edmondsone615e352021-09-20 11:37:36 +01007942 prepare_emulation_ctxt_failure_exit(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007943 return 0;
Sean Christopherson738fece2019-08-27 14:40:34 -07007944 }
7945
Sean Christopherson22da61c2019-08-27 14:40:28 -07007946 kvm_queue_exception(vcpu, UD_VECTOR);
7947
Jason Baronb36464772021-01-14 22:27:56 -05007948 if (!is_guest_mode(vcpu) && static_call(kvm_x86_get_cpl)(vcpu) == 0) {
David Edmondsone615e352021-09-20 11:37:36 +01007949 prepare_emulation_ctxt_failure_exit(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007950 return 0;
Joerg Roedelfc3a9152010-11-29 17:51:49 +01007951 }
Liran Alone2366172018-03-12 13:12:49 +02007952
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007953 return 1;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007954}
7955
Sean Christopherson736c2912019-12-06 15:57:14 -08007956static bool reexecute_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
Gleb Natapov991eebf2013-04-11 12:10:51 +03007957 bool write_fault_to_shadow_pgtable,
7958 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03007959{
Sean Christopherson736c2912019-12-06 15:57:14 -08007960 gpa_t gpa = cr2_or_gpa;
Dan Williamsba049e92016-01-15 16:56:11 -08007961 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007962
Sean Christopherson92daa482020-02-18 15:03:08 -08007963 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Gleb Natapov991eebf2013-04-11 12:10:51 +03007964 return false;
7965
Sean Christopherson92daa482020-02-18 15:03:08 -08007966 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7967 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007968 return false;
7969
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007970 if (!vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007971 /*
7972 * Write permission should be allowed since only
7973 * write access need to be emulated.
7974 */
Sean Christopherson736c2912019-12-06 15:57:14 -08007975 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03007976
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007977 /*
7978 * If the mapping is invalid in guest, let cpu retry
7979 * it to generate fault.
7980 */
7981 if (gpa == UNMAPPED_GVA)
7982 return true;
7983 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007984
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007985 /*
7986 * Do not retry the unhandleable instruction if it faults on the
7987 * readonly host memory, otherwise it will goto a infinite loop:
7988 * retry instruction -> write #PF -> emulation fail -> retry
7989 * instruction -> ...
7990 */
7991 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007992
7993 /*
7994 * If the instruction failed on the error pfn, it can not be fixed,
7995 * report the error to userspace.
7996 */
7997 if (is_error_noslot_pfn(pfn))
7998 return false;
7999
8000 kvm_release_pfn_clean(pfn);
8001
8002 /* The instructions are well-emulated on direct mmu. */
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02008003 if (vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08008004 unsigned int indirect_shadow_pages;
8005
Ben Gardon531810c2021-02-02 10:57:24 -08008006 write_lock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08008007 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
Ben Gardon531810c2021-02-02 10:57:24 -08008008 write_unlock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08008009
8010 if (indirect_shadow_pages)
8011 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
8012
Gleb Natapova6f177e2010-07-08 12:41:12 +03008013 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08008014 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03008015
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08008016 /*
8017 * if emulation was due to access to shadowed page table
8018 * and it failed try to unshadow page and re-enter the
8019 * guest to let CPU execute the instruction.
8020 */
8021 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08008022
8023 /*
8024 * If the access faults on its page table, it can not
8025 * be fixed by unprotecting shadow page and it should
8026 * be reported to userspace.
8027 */
8028 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03008029}
8030
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08008031static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
Sean Christopherson736c2912019-12-06 15:57:14 -08008032 gpa_t cr2_or_gpa, int emulation_type)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08008033{
8034 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Sean Christopherson736c2912019-12-06 15:57:14 -08008035 unsigned long last_retry_eip, last_retry_addr, gpa = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08008036
8037 last_retry_eip = vcpu->arch.last_retry_eip;
8038 last_retry_addr = vcpu->arch.last_retry_addr;
8039
8040 /*
8041 * If the emulation is caused by #PF and it is non-page_table
8042 * writing instruction, it means the VM-EXIT is caused by shadow
8043 * page protected, we can zap the shadow page and retry this
8044 * instruction directly.
8045 *
8046 * Note: if the guest uses a non-page-table modifying instruction
8047 * on the PDE that points to the instruction, then we will unmap
8048 * the instruction and go to an infinite loop. So, we cache the
8049 * last retried eip and the last fault address, if we meet the eip
8050 * and the address again, we can break out of the potential infinite
8051 * loop.
8052 */
8053 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
8054
Sean Christopherson92daa482020-02-18 15:03:08 -08008055 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08008056 return false;
8057
Sean Christopherson92daa482020-02-18 15:03:08 -08008058 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
8059 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07008060 return false;
8061
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08008062 if (x86_page_table_writing_insn(ctxt))
8063 return false;
8064
Sean Christopherson736c2912019-12-06 15:57:14 -08008065 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2_or_gpa)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08008066 return false;
8067
8068 vcpu->arch.last_retry_eip = ctxt->eip;
Sean Christopherson736c2912019-12-06 15:57:14 -08008069 vcpu->arch.last_retry_addr = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08008070
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02008071 if (!vcpu->arch.mmu->direct_map)
Sean Christopherson736c2912019-12-06 15:57:14 -08008072 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08008073
Xiao Guangrong22368022013-01-13 23:44:12 +08008074 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08008075
8076 return true;
8077}
8078
Gleb Natapov716d51a2012-09-03 15:24:26 +03008079static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
8080static int complete_emulated_pio(struct kvm_vcpu *vcpu);
8081
Sean Christophersondc872752021-06-09 11:56:15 -07008082static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm)
Paolo Bonzinia5845392015-04-01 18:18:53 +02008083{
Sean Christopherson1270e642021-06-09 11:56:17 -07008084 trace_kvm_smm_transition(vcpu->vcpu_id, vcpu->arch.smbase, entering_smm);
Sean Christopherson0d7ee6f2021-06-09 11:56:16 -07008085
Sean Christophersondc872752021-06-09 11:56:15 -07008086 if (entering_smm) {
8087 vcpu->arch.hflags |= HF_SMM_MASK;
8088 } else {
8089 vcpu->arch.hflags &= ~(HF_SMM_MASK | HF_SMM_INSIDE_NMI_MASK);
8090
Paolo Bonzinic43203c2016-06-01 22:26:00 +02008091 /* Process a latched INIT or SMI, if any. */
8092 kvm_make_request(KVM_REQ_EVENT, vcpu);
Maxim Levitsky37687c42021-09-13 17:09:50 +03008093
8094 /*
8095 * Even if KVM_SET_SREGS2 loaded PDPTRs out of band,
8096 * on SMM exit we still need to reload them from
8097 * guest memory
8098 */
8099 vcpu->arch.pdptrs_from_userspace = false;
Paolo Bonzini64d60672015-05-07 11:36:11 +02008100 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02008101
8102 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02008103}
8104
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008105static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
8106 unsigned long *db)
8107{
8108 u32 dr6 = 0;
8109 int i;
8110 u32 enable, rwlen;
8111
8112 enable = dr7;
8113 rwlen = dr7 >> 16;
8114 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
8115 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
8116 dr6 |= (1 << i);
8117 return dr6;
8118}
8119
Sean Christopherson120c2c42019-08-27 14:40:29 -07008120static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02008121{
8122 struct kvm_run *kvm_run = vcpu->run;
8123
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02008124 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08008125 kvm_run->debug.arch.dr6 = DR6_BS | DR6_ACTIVE_LOW;
Peter Xud5d260c2020-05-05 16:49:59 -04008126 kvm_run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02008127 kvm_run->debug.arch.exception = DB_VECTOR;
8128 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008129 return 0;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02008130 }
Sean Christopherson120c2c42019-08-27 14:40:29 -07008131 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BS);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008132 return 1;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02008133}
8134
Kyle Huey6affcbe2016-11-29 12:40:40 -08008135int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu)
8136{
Jason Baronb36464772021-01-14 22:27:56 -05008137 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02008138 int r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08008139
Jason Baronb36464772021-01-14 22:27:56 -05008140 r = static_call(kvm_x86_skip_emulated_instruction)(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008141 if (unlikely(!r))
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02008142 return 0;
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02008143
Eric Hankland9cd803d2021-11-30 15:42:20 +08008144 kvm_pmu_trigger_event(vcpu, PERF_COUNT_HW_INSTRUCTIONS);
8145
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02008146 /*
8147 * rflags is the old, "raw" value of the flags. The new value has
8148 * not been saved yet.
8149 *
8150 * This is correct even for TF set by the guest, because "the
8151 * processor will not generate this exception after the instruction
8152 * that sets the TF flag".
8153 */
8154 if (unlikely(rflags & X86_EFLAGS_TF))
Sean Christopherson120c2c42019-08-27 14:40:29 -07008155 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008156 return r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08008157}
8158EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction);
8159
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008160static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
8161{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008162 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
8163 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02008164 struct kvm_run *kvm_run = vcpu->run;
8165 unsigned long eip = kvm_get_linear_rip(vcpu);
8166 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008167 vcpu->arch.guest_debug_dr7,
8168 vcpu->arch.eff_db);
8169
8170 if (dr6 != 0) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08008171 kvm_run->debug.arch.dr6 = dr6 | DR6_ACTIVE_LOW;
Nadav Amit82b32772014-11-02 11:54:45 +02008172 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008173 kvm_run->debug.arch.exception = DB_VECTOR;
8174 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008175 *r = 0;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008176 return true;
8177 }
8178 }
8179
Nadav Amit4161a562014-07-17 01:19:31 +03008180 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
8181 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02008182 unsigned long eip = kvm_get_linear_rip(vcpu);
8183 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008184 vcpu->arch.dr7,
8185 vcpu->arch.db);
8186
8187 if (dr6 != 0) {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04008188 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008189 *r = 1;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008190 return true;
8191 }
8192 }
8193
8194 return false;
8195}
8196
Liran Alon04789b62018-03-12 13:12:50 +02008197static bool is_vmware_backdoor_opcode(struct x86_emulate_ctxt *ctxt)
8198{
Arbel Moshe2d7921c2018-03-12 13:12:53 +02008199 switch (ctxt->opcode_len) {
8200 case 1:
8201 switch (ctxt->b) {
8202 case 0xe4: /* IN */
8203 case 0xe5:
8204 case 0xec:
8205 case 0xed:
8206 case 0xe6: /* OUT */
8207 case 0xe7:
8208 case 0xee:
8209 case 0xef:
8210 case 0x6c: /* INS */
8211 case 0x6d:
8212 case 0x6e: /* OUTS */
8213 case 0x6f:
8214 return true;
8215 }
8216 break;
8217 case 2:
8218 switch (ctxt->b) {
8219 case 0x33: /* RDPMC */
8220 return true;
8221 }
8222 break;
Liran Alon04789b62018-03-12 13:12:50 +02008223 }
8224
8225 return false;
8226}
8227
Wei Huang4aa26912021-01-26 03:18:28 -05008228/*
8229 * Decode to be emulated instruction. Return EMULATION_OK if success.
8230 */
8231int x86_decode_emulated_instruction(struct kvm_vcpu *vcpu, int emulation_type,
8232 void *insn, int insn_len)
8233{
8234 int r = EMULATION_OK;
8235 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
8236
8237 init_emulate_ctxt(vcpu);
8238
8239 /*
8240 * We will reenter on the same instruction since we do not set
8241 * complete_userspace_io. This does not handle watchpoints yet,
8242 * those would be handled in the emulate_ops.
8243 */
8244 if (!(emulation_type & EMULTYPE_SKIP) &&
8245 kvm_vcpu_check_breakpoint(vcpu, &r))
8246 return r;
8247
Wanpeng Lib35491e2021-05-27 17:01:37 -07008248 r = x86_decode_insn(ctxt, insn, insn_len, emulation_type);
Wei Huang4aa26912021-01-26 03:18:28 -05008249
8250 trace_kvm_emulate_insn_start(vcpu);
8251 ++vcpu->stat.insn_emulation;
8252
8253 return r;
8254}
8255EXPORT_SYMBOL_GPL(x86_decode_emulated_instruction);
8256
Sean Christopherson736c2912019-12-06 15:57:14 -08008257int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
8258 int emulation_type, void *insn, int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01008259{
Gleb Natapov95cb2292010-04-28 19:15:43 +03008260 int r;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008261 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008262 bool writeback = true;
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07008263 bool write_fault_to_spt;
8264
Sean Christopherson4d31d9e2022-01-20 01:07:15 +00008265 if (unlikely(!kvm_can_emulate_insn(vcpu, emulation_type, insn, insn_len)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07008266 return 1;
Carsten Ottebbd9b642007-10-30 18:44:21 +01008267
Paolo Bonzinic595cee2018-07-02 13:07:14 +02008268 vcpu->arch.l1tf_flush_l1d = true;
8269
Xiao Guangrong93c05d32013-01-13 23:49:07 +08008270 /*
8271 * Clear write_fault_to_shadow_pgtable here to ensure it is
8272 * never reused.
8273 */
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07008274 write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08008275 vcpu->arch.write_fault_to_shadow_pgtable = false;
Gleb Natapov8d7d81022011-04-12 12:36:21 +03008276
Sheng Yang571008d2008-01-02 14:49:22 +08008277 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Wei Huang4aa26912021-01-26 03:18:28 -05008278 kvm_clear_exception_queue(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008279
Wei Huang4aa26912021-01-26 03:18:28 -05008280 r = x86_decode_emulated_instruction(vcpu, emulation_type,
8281 insn, insn_len);
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09008282 if (r != EMULATION_OK) {
Sean Christophersonb4000602019-08-27 14:40:32 -07008283 if ((emulation_type & EMULTYPE_TRAP_UD) ||
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07008284 (emulation_type & EMULTYPE_TRAP_UD_FORCED)) {
8285 kvm_queue_exception(vcpu, UD_VECTOR);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008286 return 1;
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07008287 }
Sean Christopherson736c2912019-12-06 15:57:14 -08008288 if (reexecute_instruction(vcpu, cr2_or_gpa,
8289 write_fault_to_spt,
8290 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008291 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00008292 if (ctxt->have_exception) {
Jan Dakinevichc8848ce2019-08-27 13:07:08 +00008293 /*
8294 * #UD should result in just EMULATION_FAILED, and trap-like
8295 * exception should not be encountered during decode.
8296 */
8297 WARN_ON_ONCE(ctxt->exception.vector == UD_VECTOR ||
8298 exception_type(ctxt->exception.vector) == EXCPT_TRAP);
Jan Dakinevich8530a792019-08-27 13:07:09 +00008299 inject_emulated_exception(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008300 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00008301 }
Liran Alone2366172018-03-12 13:12:49 +02008302 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01008303 }
8304 }
8305
Sean Christopherson42cbf062019-08-27 14:40:31 -07008306 if ((emulation_type & EMULTYPE_VMWARE_GP) &&
8307 !is_vmware_backdoor_opcode(ctxt)) {
8308 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008309 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07008310 }
Liran Alon04789b62018-03-12 13:12:50 +02008311
Sean Christopherson1957aa62019-08-27 14:40:39 -07008312 /*
Hou Wenlong906fa902021-11-02 17:15:30 +08008313 * EMULTYPE_SKIP without EMULTYPE_COMPLETE_USER_EXIT is intended for
8314 * use *only* by vendor callbacks for kvm_skip_emulated_instruction().
8315 * The caller is responsible for updating interruptibility state and
8316 * injecting single-step #DBs.
Sean Christopherson1957aa62019-08-27 14:40:39 -07008317 */
Gleb Natapovba8afb62009-04-12 13:36:57 +03008318 if (emulation_type & EMULTYPE_SKIP) {
Sean Christopherson5e854862021-11-02 17:15:29 +08008319 if (ctxt->mode != X86EMUL_MODE_PROT64)
8320 ctxt->eip = (u32)ctxt->_eip;
8321 else
8322 ctxt->eip = ctxt->_eip;
8323
Hou Wenlong906fa902021-11-02 17:15:30 +08008324 if (emulation_type & EMULTYPE_COMPLETE_USER_EXIT) {
8325 r = 1;
8326 goto writeback;
8327 }
8328
Sean Christopherson5e854862021-11-02 17:15:29 +08008329 kvm_rip_write(vcpu, ctxt->eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03008330 if (ctxt->eflags & X86_EFLAGS_RF)
8331 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008332 return 1;
Gleb Natapovba8afb62009-04-12 13:36:57 +03008333 }
8334
Sean Christopherson736c2912019-12-06 15:57:14 -08008335 if (retry_instruction(ctxt, cr2_or_gpa, emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008336 return 1;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08008337
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008338 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03008339 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008340 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
8341 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03008342 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008343 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03008344
Gleb Natapov5cd21912010-03-18 15:20:26 +02008345restart:
Sean Christopherson92daa482020-02-18 15:03:08 -08008346 if (emulation_type & EMULTYPE_PF) {
8347 /* Save the faulting GPA (cr2) in the address field */
8348 ctxt->exception.address = cr2_or_gpa;
8349
8350 /* With shadow page tables, cr2 contains a GVA or nGPA. */
8351 if (vcpu->arch.mmu->direct_map) {
Sean Christopherson744e6992020-02-18 15:03:09 -08008352 ctxt->gpa_available = true;
8353 ctxt->gpa_val = cr2_or_gpa;
Sean Christopherson92daa482020-02-18 15:03:08 -08008354 }
8355 } else {
8356 /* Sanitize the address out of an abundance of paranoia. */
8357 ctxt->exception.address = 0;
8358 }
Tom Lendacky0f89b202016-12-14 14:59:23 -05008359
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09008360 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03008361
Joerg Roedel775fde82011-04-04 12:39:24 +02008362 if (r == EMULATION_INTERCEPTED)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008363 return 1;
Joerg Roedel775fde82011-04-04 12:39:24 +02008364
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03008365 if (r == EMULATION_FAILED) {
Sean Christopherson736c2912019-12-06 15:57:14 -08008366 if (reexecute_instruction(vcpu, cr2_or_gpa, write_fault_to_spt,
Gleb Natapov991eebf2013-04-11 12:10:51 +03008367 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008368 return 1;
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03008369
Liran Alone2366172018-03-12 13:12:49 +02008370 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01008371 }
8372
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09008373 if (ctxt->have_exception) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008374 r = 1;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02008375 if (inject_emulated_exception(vcpu))
8376 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03008377 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02008378 if (!vcpu->arch.pio.in) {
8379 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03008380 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02008381 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008382 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03008383 vcpu->arch.complete_userspace_io = complete_emulated_pio;
8384 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008385 r = 0;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008386 } else if (vcpu->mmio_needed) {
Sean Christophersonbc8a0aa2019-08-27 14:40:27 -07008387 ++vcpu->stat.mmio_exits;
8388
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008389 if (!vcpu->mmio_is_write)
8390 writeback = false;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008391 r = 0;
Gleb Natapov716d51a2012-09-03 15:24:26 +03008392 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Hou Wenlongadbfb122021-11-02 17:15:32 +08008393 } else if (vcpu->arch.complete_userspace_io) {
8394 writeback = false;
8395 r = 0;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008396 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03008397 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03008398 else
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008399 r = 1;
Gleb Natapove85d28f2010-07-29 15:11:52 +03008400
Hou Wenlong906fa902021-11-02 17:15:30 +08008401writeback:
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008402 if (writeback) {
Jason Baronb36464772021-01-14 22:27:56 -05008403 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09008404 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008405 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Nadav Amit38827db2014-11-02 11:54:53 +02008406 if (!ctxt->have_exception ||
Sean Christopherson75ee23b2019-08-23 13:55:44 -07008407 exception_type(ctxt->exception.vector) == EXCPT_TRAP) {
Eric Hankland9cd803d2021-11-30 15:42:20 +08008408 kvm_pmu_trigger_event(vcpu, PERF_COUNT_HW_INSTRUCTIONS);
Eric Hankland018d70f2021-11-30 15:42:21 +08008409 if (ctxt->is_branch)
8410 kvm_pmu_trigger_event(vcpu, PERF_COUNT_HW_BRANCH_INSTRUCTIONS);
Sean Christopherson75ee23b2019-08-23 13:55:44 -07008411 kvm_rip_write(vcpu, ctxt->eip);
Felipe Franciosi384dea12020-05-19 08:11:22 +00008412 if (r && (ctxt->tf || (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)))
Sean Christopherson120c2c42019-08-27 14:40:29 -07008413 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008414 if (kvm_x86_ops.update_emulated_instruction)
Jason Baronb36464772021-01-14 22:27:56 -05008415 static_call(kvm_x86_update_emulated_instruction)(vcpu);
Nadav Amit38827db2014-11-02 11:54:53 +02008416 __kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson75ee23b2019-08-23 13:55:44 -07008417 }
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008418
8419 /*
8420 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
8421 * do nothing, and it will be requested again as soon as
8422 * the shadow expires. But we still need to check here,
8423 * because POPF has no interrupt shadow.
8424 */
8425 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
8426 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008427 } else
8428 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03008429
Gleb Natapove85d28f2010-07-29 15:11:52 +03008430 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01008431}
Sean Christophersonc60658d2018-08-23 13:56:53 -07008432
8433int kvm_emulate_instruction(struct kvm_vcpu *vcpu, int emulation_type)
8434{
8435 return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
8436}
8437EXPORT_SYMBOL_GPL(kvm_emulate_instruction);
8438
8439int kvm_emulate_instruction_from_buffer(struct kvm_vcpu *vcpu,
8440 void *insn, int insn_len)
8441{
8442 return x86_emulate_instruction(vcpu, 0, 0, insn, insn_len);
8443}
8444EXPORT_SYMBOL_GPL(kvm_emulate_instruction_from_buffer);
Carsten Ottebbd9b642007-10-30 18:44:21 +01008445
Sean Christopherson8764ed52019-04-29 07:04:15 -07008446static int complete_fast_pio_out_port_0x7e(struct kvm_vcpu *vcpu)
8447{
8448 vcpu->arch.pio.count = 0;
8449 return 1;
8450}
8451
Sean Christopherson45def772019-03-11 20:01:05 -07008452static int complete_fast_pio_out(struct kvm_vcpu *vcpu)
8453{
8454 vcpu->arch.pio.count = 0;
8455
8456 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip)))
8457 return 1;
8458
8459 return kvm_skip_emulated_instruction(vcpu);
8460}
8461
Sean Christophersondca7f122018-03-08 08:57:27 -08008462static int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size,
8463 unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01008464{
Sean Christophersonde3cd112019-04-30 10:36:17 -07008465 unsigned long val = kvm_rax_read(vcpu);
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008466 int ret = emulator_pio_out(vcpu, size, port, &val, 1);
8467
Sean Christopherson8764ed52019-04-29 07:04:15 -07008468 if (ret)
8469 return ret;
Sean Christopherson45def772019-03-11 20:01:05 -07008470
Sean Christopherson8764ed52019-04-29 07:04:15 -07008471 /*
8472 * Workaround userspace that relies on old KVM behavior of %rip being
8473 * incremented prior to exiting to userspace to handle "OUT 0x7e".
8474 */
8475 if (port == 0x7e &&
8476 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_OUT_7E_INC_RIP)) {
8477 vcpu->arch.complete_userspace_io =
8478 complete_fast_pio_out_port_0x7e;
8479 kvm_skip_emulated_instruction(vcpu);
8480 } else {
Sean Christopherson45def772019-03-11 20:01:05 -07008481 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
8482 vcpu->arch.complete_userspace_io = complete_fast_pio_out;
8483 }
Sean Christopherson8764ed52019-04-29 07:04:15 -07008484 return 0;
Carsten Ottede7d7892007-10-30 18:44:25 +01008485}
Carsten Ottede7d7892007-10-30 18:44:25 +01008486
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008487static int complete_fast_pio_in(struct kvm_vcpu *vcpu)
8488{
8489 unsigned long val;
8490
8491 /* We should only ever be called with arch.pio.count equal to 1 */
8492 BUG_ON(vcpu->arch.pio.count != 1);
8493
Sean Christopherson45def772019-03-11 20:01:05 -07008494 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip))) {
8495 vcpu->arch.pio.count = 0;
8496 return 1;
8497 }
8498
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008499 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008500 val = (vcpu->arch.pio.size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008501
8502 /*
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008503 * Since vcpu->arch.pio.count == 1 let emulator_pio_in perform
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008504 * the copy and tracing
8505 */
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008506 emulator_pio_in(vcpu, vcpu->arch.pio.size, vcpu->arch.pio.port, &val, 1);
Sean Christophersonde3cd112019-04-30 10:36:17 -07008507 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008508
Sean Christopherson45def772019-03-11 20:01:05 -07008509 return kvm_skip_emulated_instruction(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008510}
8511
Sean Christophersondca7f122018-03-08 08:57:27 -08008512static int kvm_fast_pio_in(struct kvm_vcpu *vcpu, int size,
8513 unsigned short port)
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008514{
8515 unsigned long val;
8516 int ret;
8517
8518 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008519 val = (size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008520
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008521 ret = emulator_pio_in(vcpu, size, port, &val, 1);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008522 if (ret) {
Sean Christophersonde3cd112019-04-30 10:36:17 -07008523 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008524 return ret;
8525 }
8526
Sean Christopherson45def772019-03-11 20:01:05 -07008527 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008528 vcpu->arch.complete_userspace_io = complete_fast_pio_in;
8529
8530 return 0;
8531}
Sean Christophersondca7f122018-03-08 08:57:27 -08008532
8533int kvm_fast_pio(struct kvm_vcpu *vcpu, int size, unsigned short port, int in)
8534{
Sean Christopherson45def772019-03-11 20:01:05 -07008535 int ret;
Sean Christophersondca7f122018-03-08 08:57:27 -08008536
Sean Christophersondca7f122018-03-08 08:57:27 -08008537 if (in)
Sean Christopherson45def772019-03-11 20:01:05 -07008538 ret = kvm_fast_pio_in(vcpu, size, port);
Sean Christophersondca7f122018-03-08 08:57:27 -08008539 else
Sean Christopherson45def772019-03-11 20:01:05 -07008540 ret = kvm_fast_pio_out(vcpu, size, port);
8541 return ret && kvm_skip_emulated_instruction(vcpu);
Sean Christophersondca7f122018-03-08 08:57:27 -08008542}
8543EXPORT_SYMBOL_GPL(kvm_fast_pio);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008544
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008545static int kvmclock_cpu_down_prep(unsigned int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008546{
Tejun Heo0a3aee02010-12-18 16:28:55 +01008547 __this_cpu_write(cpu_tsc_khz, 0);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008548 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008549}
8550
8551static void tsc_khz_changed(void *data)
8552{
8553 struct cpufreq_freqs *freq = data;
8554 unsigned long khz = 0;
8555
8556 if (data)
8557 khz = freq->new;
8558 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8559 khz = cpufreq_quick_get(raw_smp_processor_id());
8560 if (!khz)
8561 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01008562 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008563}
8564
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008565#ifdef CONFIG_X86_64
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008566static void kvm_hyperv_tsc_notifier(void)
8567{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008568 struct kvm *kvm;
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008569 int cpu;
8570
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008571 mutex_lock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008572 list_for_each_entry(kvm, &vm_list, vm_list)
8573 kvm_make_mclock_inprogress_request(kvm);
8574
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008575 /* no guest entries from this point */
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008576 hyperv_stop_tsc_emulation();
8577
8578 /* TSC frequency always matches when on Hyper-V */
8579 for_each_present_cpu(cpu)
8580 per_cpu(cpu_tsc_khz, cpu) = tsc_khz;
8581 kvm_max_guest_tsc_khz = tsc_khz;
8582
8583 list_for_each_entry(kvm, &vm_list, vm_list) {
Paolo Bonzini869b4422021-09-16 18:15:36 +00008584 __kvm_start_pvclock_update(kvm);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008585 pvclock_update_vm_gtod_copy(kvm);
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008586 kvm_end_pvclock_update(kvm);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008587 }
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008588
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008589 mutex_unlock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008590}
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008591#endif
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008592
Viresh Kumardf240142019-04-29 15:03:58 +05308593static void __kvmclock_cpufreq_notifier(struct cpufreq_freqs *freq, int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008594{
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008595 struct kvm *kvm;
8596 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00008597 int send_ipi = 0;
8598 unsigned long i;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008599
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008600 /*
8601 * We allow guests to temporarily run on slowing clocks,
8602 * provided we notify them after, or to run on accelerating
8603 * clocks, provided we notify them before. Thus time never
8604 * goes backwards.
8605 *
8606 * However, we have a problem. We can't atomically update
8607 * the frequency of a given CPU from this function; it is
8608 * merely a notifier, which can be called from any CPU.
8609 * Changing the TSC frequency at arbitrary points in time
8610 * requires a recomputation of local variables related to
8611 * the TSC for each VCPU. We must flag these local variables
8612 * to be updated and be sure the update takes place with the
8613 * new frequency before any guests proceed.
8614 *
8615 * Unfortunately, the combination of hotplug CPU and frequency
8616 * change creates an intractable locking scenario; the order
8617 * of when these callouts happen is undefined with respect to
8618 * CPU hotplug, and they can race with each other. As such,
8619 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
8620 * undefined; you can actually have a CPU frequency change take
8621 * place in between the computation of X and the setting of the
8622 * variable. To protect against this problem, all updates of
8623 * the per_cpu tsc_khz variable are done in an interrupt
8624 * protected IPI, and all callers wishing to update the value
8625 * must wait for a synchronous IPI to complete (which is trivial
8626 * if the caller is on the CPU already). This establishes the
8627 * necessary total order on variable updates.
8628 *
8629 * Note that because a guest time update may take place
8630 * anytime after the setting of the VCPU's request bit, the
8631 * correct TSC value must be set before the request. However,
8632 * to ensure the update actually makes it to any guest which
8633 * starts running in hardware virtualization between the set
8634 * and the acquisition of the spinlock, we must also ping the
8635 * CPU after setting the request bit.
8636 *
8637 */
8638
Viresh Kumardf240142019-04-29 15:03:58 +05308639 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008640
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008641 mutex_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008642 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008643 kvm_for_each_vcpu(i, vcpu, kvm) {
Viresh Kumardf240142019-04-29 15:03:58 +05308644 if (vcpu->cpu != cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008645 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10008646 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008647 if (vcpu->cpu != raw_smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008648 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008649 }
8650 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008651 mutex_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008652
8653 if (freq->old < freq->new && send_ipi) {
8654 /*
8655 * We upscale the frequency. Must make the guest
8656 * doesn't see old kvmclock values while running with
8657 * the new frequency, otherwise we risk the guest sees
8658 * time go backwards.
8659 *
8660 * In case we update the frequency for another cpu
8661 * (which might be in guest context) send an interrupt
8662 * to kick the cpu out of guest context. Next time
8663 * guest context is entered kvmclock will be updated,
8664 * so the guest will not see stale values.
8665 */
Viresh Kumardf240142019-04-29 15:03:58 +05308666 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008667 }
Viresh Kumardf240142019-04-29 15:03:58 +05308668}
8669
8670static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
8671 void *data)
8672{
8673 struct cpufreq_freqs *freq = data;
8674 int cpu;
8675
8676 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
8677 return 0;
8678 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
8679 return 0;
8680
8681 for_each_cpu(cpu, freq->policy->cpus)
8682 __kvmclock_cpufreq_notifier(freq, cpu);
8683
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008684 return 0;
8685}
8686
8687static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008688 .notifier_call = kvmclock_cpufreq_notifier
8689};
8690
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008691static int kvmclock_cpu_online(unsigned int cpu)
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008692{
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008693 tsc_khz_changed(NULL);
8694 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008695}
8696
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008697static void kvm_timer_init(void)
8698{
Zachary Amsdenc2855452010-09-18 14:38:15 -10008699 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308700
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008701 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10008702#ifdef CONFIG_CPU_FREQ
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008703 struct cpufreq_policy *policy;
Borislav Petkov758f5882016-09-04 19:13:57 +02008704 int cpu;
8705
Avi Kivity3e26f232010-12-16 12:16:34 +02008706 cpu = get_cpu();
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008707 policy = cpufreq_cpu_get(cpu);
Wanpeng Li9a119972020-03-02 15:15:36 +08008708 if (policy) {
8709 if (policy->cpuinfo.max_freq)
8710 max_tsc_khz = policy->cpuinfo.max_freq;
8711 cpufreq_cpu_put(policy);
8712 }
Avi Kivity3e26f232010-12-16 12:16:34 +02008713 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10008714#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008715 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
8716 CPUFREQ_TRANSITION_NOTIFIER);
8717 }
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308718
Thomas Gleixner73c1b412016-12-21 20:19:54 +01008719 cpuhp_setup_state(CPUHP_AP_X86_KVM_CLK_ONLINE, "x86/kvm/clk:online",
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008720 kvmclock_cpu_online, kvmclock_cpu_down_prep);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008721}
8722
Andi Kleendd60d212017-07-25 17:20:32 -07008723DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
8724EXPORT_PER_CPU_SYMBOL_GPL(current_vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008725
Gleb Natapovf5132b02011-11-10 14:57:22 +02008726int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008727{
Alex,Shi086c9852011-10-20 15:34:01 +08008728 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008729}
8730
8731static int kvm_is_user_mode(void)
8732{
8733 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008734
Alex,Shi086c9852011-10-20 15:34:01 +08008735 if (__this_cpu_read(current_vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05008736 user_mode = static_call(kvm_x86_get_cpl)(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008737
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008738 return user_mode != 0;
8739}
8740
8741static unsigned long kvm_get_guest_ip(void)
8742{
8743 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008744
Alex,Shi086c9852011-10-20 15:34:01 +08008745 if (__this_cpu_read(current_vcpu))
8746 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008747
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008748 return ip;
8749}
8750
Luwei Kang8479e042019-02-18 19:26:07 -05008751static void kvm_handle_intel_pt_intr(void)
8752{
8753 struct kvm_vcpu *vcpu = __this_cpu_read(current_vcpu);
8754
8755 kvm_make_request(KVM_REQ_PMI, vcpu);
8756 __set_bit(MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI_BIT,
8757 (unsigned long *)&vcpu->arch.pmu.global_status);
8758}
8759
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008760static struct perf_guest_info_callbacks kvm_guest_cbs = {
8761 .is_in_guest = kvm_is_in_guest,
8762 .is_user_mode = kvm_is_user_mode,
8763 .get_guest_ip = kvm_get_guest_ip,
Luwei Kang8479e042019-02-18 19:26:07 -05008764 .handle_intel_pt_intr = kvm_handle_intel_pt_intr,
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008765};
8766
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008767#ifdef CONFIG_X86_64
8768static void pvclock_gtod_update_fn(struct work_struct *work)
8769{
Marcelo Tosattid8281992012-11-27 23:29:01 -02008770 struct kvm *kvm;
Marcelo Tosattid8281992012-11-27 23:29:01 -02008771 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00008772 unsigned long i;
Marcelo Tosattid8281992012-11-27 23:29:01 -02008773
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008774 mutex_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008775 list_for_each_entry(kvm, &vm_list, vm_list)
8776 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08008777 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008778 atomic_set(&kvm_guest_has_master_clock, 0);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008779 mutex_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008780}
8781
8782static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
8783
8784/*
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008785 * Indirection to move queue_work() out of the tk_core.seq write held
8786 * region to prevent possible deadlocks against time accessors which
8787 * are invoked with work related locks held.
8788 */
8789static void pvclock_irq_work_fn(struct irq_work *w)
8790{
8791 queue_work(system_long_wq, &pvclock_gtod_work);
8792}
8793
8794static DEFINE_IRQ_WORK(pvclock_irq_work, pvclock_irq_work_fn);
8795
8796/*
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008797 * Notification about pvclock gtod data update.
8798 */
8799static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
8800 void *priv)
8801{
8802 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
8803 struct timekeeper *tk = priv;
8804
8805 update_pvclock_gtod(tk);
8806
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008807 /*
8808 * Disable master clock if host does not trust, or does not use,
8809 * TSC based clocksource. Delegate queue_work() to irq_work as
8810 * this is invoked with tk_core.seq write held.
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008811 */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01008812 if (!gtod_is_based_on_tsc(gtod->clock.vclock_mode) &&
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008813 atomic_read(&kvm_guest_has_master_clock) != 0)
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008814 irq_work_queue(&pvclock_irq_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008815 return 0;
8816}
8817
8818static struct notifier_block pvclock_gtod_notifier = {
8819 .notifier_call = pvclock_gtod_notify,
8820};
8821#endif
8822
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008823int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02008824{
Sean Christophersond008dfd2020-03-21 13:25:56 -07008825 struct kvm_x86_init_ops *ops = opaque;
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008826 int r;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008827
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008828 if (kvm_x86_ops.hardware_enable) {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07008829 pr_err("kvm: already loaded vendor module '%s'\n", kvm_x86_ops.name);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008830 r = -EEXIST;
8831 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008832 }
8833
8834 if (!ops->cpu_has_kvm_support()) {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07008835 pr_err_ratelimited("kvm: no hardware support for '%s'\n",
8836 ops->runtime_ops->name);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008837 r = -EOPNOTSUPP;
8838 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008839 }
8840 if (ops->disabled_by_bios()) {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07008841 pr_err_ratelimited("kvm: support for '%s' disabled by bios\n",
8842 ops->runtime_ops->name);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008843 r = -EOPNOTSUPP;
8844 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008845 }
8846
Marc Orrb666a4b2018-11-06 14:53:56 -08008847 /*
8848 * KVM explicitly assumes that the guest has an FPU and
8849 * FXSAVE/FXRSTOR. For example, the KVM_GET_FPU explicitly casts the
8850 * vCPU's FPU state as a fxregs_state struct.
8851 */
8852 if (!boot_cpu_has(X86_FEATURE_FPU) || !boot_cpu_has(X86_FEATURE_FXSR)) {
8853 printk(KERN_ERR "kvm: inadequate fpu\n");
8854 r = -EOPNOTSUPP;
8855 goto out;
8856 }
8857
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008858 r = -ENOMEM;
Marc Orrb666a4b2018-11-06 14:53:56 -08008859
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008860 x86_emulator_cache = kvm_alloc_emulator_cache();
8861 if (!x86_emulator_cache) {
8862 pr_err("kvm: failed to allocate cache for x86 emulator\n");
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02008863 goto out;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008864 }
8865
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008866 user_return_msrs = alloc_percpu(struct kvm_user_return_msrs);
8867 if (!user_return_msrs) {
8868 printk(KERN_ERR "kvm: failed to allocate percpu kvm_user_return_msrs\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008869 goto out_free_x86_emulator_cache;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008870 }
Sean Christophersone5fda4b2021-05-04 10:17:32 -07008871 kvm_nr_uret_msrs = 0;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008872
Avi Kivity97db56c2008-01-13 13:23:56 +02008873 r = kvm_mmu_module_init();
8874 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008875 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02008876
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008877 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008878
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008879 perf_register_guest_info_callbacks(&kvm_guest_cbs);
8880
Sean Christophersoncfc48182020-03-02 15:56:23 -08008881 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +08008882 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
Sean Christophersoncfc48182020-03-02 15:56:23 -08008883 supported_xcr0 = host_xcr0 & KVM_SUPPORTED_XCR0;
8884 }
Dexuan Cui2acf9232010-06-10 11:27:12 +08008885
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08008886 if (pi_inject_timer == -1)
8887 pi_inject_timer = housekeeping_enabled(HK_FLAG_TIMER);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008888#ifdef CONFIG_X86_64
8889 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008890
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008891 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008892 set_hv_tscchange_cb(kvm_hyperv_tsc_notifier);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008893#endif
8894
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008895 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008896
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008897out_free_percpu:
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008898 free_percpu(user_return_msrs);
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008899out_free_x86_emulator_cache:
8900 kmem_cache_destroy(x86_emulator_cache);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008901out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008902 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02008903}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008904
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008905void kvm_arch_exit(void)
8906{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008907#ifdef CONFIG_X86_64
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008908 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008909 clear_hv_tscchange_cb();
8910#endif
David Matlackcef84c32016-12-16 14:30:36 -08008911 kvm_lapic_exit();
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008912 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
8913
Jan Kiszka888d2562009-04-17 19:24:58 +02008914 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8915 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
8916 CPUFREQ_TRANSITION_NOTIFIER);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008917 cpuhp_remove_state_nocalls(CPUHP_AP_X86_KVM_CLK_ONLINE);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008918#ifdef CONFIG_X86_64
8919 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008920 irq_work_sync(&pvclock_irq_work);
Thomas Gleixner594b27e2021-05-05 23:48:17 +02008921 cancel_work_sync(&pvclock_gtod_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008922#endif
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008923 kvm_x86_ops.hardware_enable = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008924 kvm_mmu_module_exit();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008925 free_percpu(user_return_msrs);
Wanpeng Lidfdc0a72021-06-10 21:59:33 -07008926 kmem_cache_destroy(x86_emulator_cache);
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008927#ifdef CONFIG_KVM_XEN
Paolo Bonzinic462f852021-02-26 04:49:06 -05008928 static_key_deferred_flush(&kvm_xen_enabled);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +00008929 WARN_ON(static_branch_unlikely(&kvm_xen_enabled.key));
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008930#endif
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008931}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008932
Sean Christopherson14601792021-10-08 19:12:05 -07008933static int __kvm_emulate_halt(struct kvm_vcpu *vcpu, int state, int reason)
Hollis Blanchard8776e512007-10-31 17:24:24 -05008934{
Sean Christopherson91b99ea2021-10-08 19:12:06 -07008935 /*
8936 * The vCPU has halted, e.g. executed HLT. Update the run state if the
8937 * local APIC is in-kernel, the run loop will detect the non-runnable
8938 * state and halt the vCPU. Exit to userspace if the local APIC is
8939 * managed by userspace, in which case userspace is responsible for
8940 * handling wake events.
8941 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05008942 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02008943 if (lapic_in_kernel(vcpu)) {
Tom Lendacky647daca2021-01-04 14:20:01 -06008944 vcpu->arch.mp_state = state;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008945 return 1;
8946 } else {
Tom Lendacky647daca2021-01-04 14:20:01 -06008947 vcpu->run->exit_reason = reason;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008948 return 0;
8949 }
8950}
Tom Lendacky647daca2021-01-04 14:20:01 -06008951
Sean Christopherson14601792021-10-08 19:12:05 -07008952int kvm_emulate_halt_noskip(struct kvm_vcpu *vcpu)
Tom Lendacky647daca2021-01-04 14:20:01 -06008953{
Sean Christopherson14601792021-10-08 19:12:05 -07008954 return __kvm_emulate_halt(vcpu, KVM_MP_STATE_HALTED, KVM_EXIT_HLT);
Tom Lendacky647daca2021-01-04 14:20:01 -06008955}
Sean Christopherson14601792021-10-08 19:12:05 -07008956EXPORT_SYMBOL_GPL(kvm_emulate_halt_noskip);
Joel Schopp5cb56052015-03-02 13:43:31 -06008957
8958int kvm_emulate_halt(struct kvm_vcpu *vcpu)
8959{
Kyle Huey6affcbe2016-11-29 12:40:40 -08008960 int ret = kvm_skip_emulated_instruction(vcpu);
8961 /*
8962 * TODO: we might be squashing a GUESTDBG_SINGLESTEP-triggered
8963 * KVM_EXIT_DEBUG here.
8964 */
Sean Christopherson14601792021-10-08 19:12:05 -07008965 return kvm_emulate_halt_noskip(vcpu) && ret;
Joel Schopp5cb56052015-03-02 13:43:31 -06008966}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008967EXPORT_SYMBOL_GPL(kvm_emulate_halt);
8968
Tom Lendacky647daca2021-01-04 14:20:01 -06008969int kvm_emulate_ap_reset_hold(struct kvm_vcpu *vcpu)
8970{
8971 int ret = kvm_skip_emulated_instruction(vcpu);
8972
Sean Christopherson14601792021-10-08 19:12:05 -07008973 return __kvm_emulate_halt(vcpu, KVM_MP_STATE_AP_RESET_HOLD,
8974 KVM_EXIT_AP_RESET_HOLD) && ret;
Tom Lendacky647daca2021-01-04 14:20:01 -06008975}
8976EXPORT_SYMBOL_GPL(kvm_emulate_ap_reset_hold);
8977
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008978#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008979static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
8980 unsigned long clock_type)
8981{
8982 struct kvm_clock_pairing clock_pairing;
Arnd Bergmann899a31f2018-04-23 10:04:26 +02008983 struct timespec64 ts;
Paolo Bonzini80fbd892017-02-08 10:57:24 +01008984 u64 cycle;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008985 int ret;
8986
8987 if (clock_type != KVM_CLOCK_PAIRING_WALLCLOCK)
8988 return -KVM_EOPNOTSUPP;
8989
YANG LI7ca7f3b2021-01-11 17:32:58 +08008990 if (!kvm_get_walltime_and_clockread(&ts, &cycle))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008991 return -KVM_EOPNOTSUPP;
8992
8993 clock_pairing.sec = ts.tv_sec;
8994 clock_pairing.nsec = ts.tv_nsec;
8995 clock_pairing.tsc = kvm_read_l1_tsc(vcpu, cycle);
8996 clock_pairing.flags = 0;
Liran Alonbcbfbd82018-11-08 00:43:06 +02008997 memset(&clock_pairing.pad, 0, sizeof(clock_pairing.pad));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008998
8999 ret = 0;
9000 if (kvm_write_guest(vcpu->kvm, paddr, &clock_pairing,
9001 sizeof(struct kvm_clock_pairing)))
9002 ret = -KVM_EFAULT;
9003
9004 return ret;
9005}
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01009006#endif
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02009007
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05309008/*
9009 * kvm_pv_kick_cpu_op: Kick a vcpu.
9010 *
9011 * @apicid - apicid of vcpu to be kicked.
9012 */
9013static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
9014{
Raghavendra K T24d21662013-08-26 14:18:35 +05309015 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05309016
Peter Xu150a84f2019-12-04 20:07:21 +01009017 lapic_irq.shorthand = APIC_DEST_NOSHORT;
Peter Xuc96001c2019-12-04 20:07:18 +01009018 lapic_irq.dest_mode = APIC_DEST_PHYSICAL;
Longpeng(Mike)ebd28fc2017-08-02 11:20:51 +08009019 lapic_irq.level = 0;
Raghavendra K T24d21662013-08-26 14:18:35 +05309020 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06009021 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05309022
Raghavendra K T24d21662013-08-26 14:18:35 +05309023 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08009024 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05309025}
9026
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06009027bool kvm_apicv_activated(struct kvm *kvm)
9028{
9029 return (READ_ONCE(kvm->arch.apicv_inhibit_reasons) == 0);
9030}
9031EXPORT_SYMBOL_GPL(kvm_apicv_activated);
9032
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +02009033static void kvm_apicv_init(struct kvm *kvm)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06009034{
Sean Christopherson187c8832021-10-21 17:49:27 -07009035 init_rwsem(&kvm->arch.apicv_update_lock);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009036
Paolo Bonzinief8b4b72021-11-30 07:37:45 -05009037 set_bit(APICV_INHIBIT_REASON_ABSENT,
9038 &kvm->arch.apicv_inhibit_reasons);
9039 if (!enable_apicv)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06009040 set_bit(APICV_INHIBIT_REASON_DISABLE,
9041 &kvm->arch.apicv_inhibit_reasons);
9042}
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06009043
Wanpeng Li4a7132e2021-04-09 12:18:30 +08009044static void kvm_sched_yield(struct kvm_vcpu *vcpu, unsigned long dest_id)
Wanpeng Li71506292019-06-11 20:23:49 +08009045{
9046 struct kvm_vcpu *target = NULL;
9047 struct kvm_apic_map *map;
9048
Wanpeng Li4a7132e2021-04-09 12:18:30 +08009049 vcpu->stat.directed_yield_attempted++;
9050
Wanpeng Li72b268a2021-05-18 05:00:32 -07009051 if (single_task_running())
9052 goto no_yield;
9053
Wanpeng Li71506292019-06-11 20:23:49 +08009054 rcu_read_lock();
Wanpeng Li4a7132e2021-04-09 12:18:30 +08009055 map = rcu_dereference(vcpu->kvm->arch.apic_map);
Wanpeng Li71506292019-06-11 20:23:49 +08009056
9057 if (likely(map) && dest_id <= map->max_apic_id && map->phys_map[dest_id])
9058 target = map->phys_map[dest_id]->vcpu;
9059
9060 rcu_read_unlock();
9061
Wanpeng Li4a7132e2021-04-09 12:18:30 +08009062 if (!target || !READ_ONCE(target->ready))
9063 goto no_yield;
9064
Wanpeng Lia1fa4cb2021-04-09 12:18:31 +08009065 /* Ignore requests to yield to self */
9066 if (vcpu == target)
9067 goto no_yield;
9068
Wanpeng Li4a7132e2021-04-09 12:18:30 +08009069 if (kvm_vcpu_yield_to(target) <= 0)
9070 goto no_yield;
9071
9072 vcpu->stat.directed_yield_successful++;
9073
9074no_yield:
9075 return;
Wanpeng Li71506292019-06-11 20:23:49 +08009076}
9077
Ashish Kalra0dbb1122021-06-08 18:05:43 +00009078static int complete_hypercall_exit(struct kvm_vcpu *vcpu)
9079{
9080 u64 ret = vcpu->run->hypercall.ret;
9081
9082 if (!is_64_bit_mode(vcpu))
9083 ret = (u32)ret;
9084 kvm_rax_write(vcpu, ret);
9085 ++vcpu->stat.hypercalls;
9086 return kvm_skip_emulated_instruction(vcpu);
9087}
9088
Hollis Blanchard8776e512007-10-31 17:24:24 -05009089int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
9090{
9091 unsigned long nr, a0, a1, a2, a3, ret;
Marian Rotariu6356ee02018-04-30 12:23:01 +03009092 int op_64_bit;
Hollis Blanchard8776e512007-10-31 17:24:24 -05009093
Joao Martins23200b72018-06-13 09:55:44 -04009094 if (kvm_xen_hypercall_enabled(vcpu->kvm))
9095 return kvm_xen_hypercall(vcpu);
9096
Vitaly Kuznetsov8f014552021-01-26 14:48:14 +01009097 if (kvm_hv_hypercall_enabled(vcpu))
Radim Krčmář696ca772018-05-24 17:50:56 +02009098 return kvm_hv_hypercall(vcpu);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02009099
Sean Christophersonde3cd112019-04-30 10:36:17 -07009100 nr = kvm_rax_read(vcpu);
9101 a0 = kvm_rbx_read(vcpu);
9102 a1 = kvm_rcx_read(vcpu);
9103 a2 = kvm_rdx_read(vcpu);
9104 a3 = kvm_rsi_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009105
Marcelo Tosatti229456f2009-06-17 09:22:14 -03009106 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04009107
Tom Lendackyb5aead02021-05-24 12:48:57 -05009108 op_64_bit = is_64_bit_hypercall(vcpu);
Nadav Amita449c7a2014-06-18 17:19:24 +03009109 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05009110 nr &= 0xFFFFFFFF;
9111 a0 &= 0xFFFFFFFF;
9112 a1 &= 0xFFFFFFFF;
9113 a2 &= 0xFFFFFFFF;
9114 a3 &= 0xFFFFFFFF;
9115 }
9116
Jason Baronb36464772021-01-14 22:27:56 -05009117 if (static_call(kvm_x86_get_cpl)(vcpu) != 0) {
Jan Kiszka07708c42009-08-03 18:43:28 +02009118 ret = -KVM_EPERM;
Radim Krčmář696ca772018-05-24 17:50:56 +02009119 goto out;
Jan Kiszka07708c42009-08-03 18:43:28 +02009120 }
9121
Oliver Upton66570e92020-08-18 15:24:28 +00009122 ret = -KVM_ENOSYS;
9123
Hollis Blanchard8776e512007-10-31 17:24:24 -05009124 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02009125 case KVM_HC_VAPIC_POLL_IRQ:
9126 ret = 0;
9127 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05309128 case KVM_HC_KICK_CPU:
Oliver Upton66570e92020-08-18 15:24:28 +00009129 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_UNHALT))
9130 break;
9131
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05309132 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
Wanpeng Li4a7132e2021-04-09 12:18:30 +08009133 kvm_sched_yield(vcpu, a1);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05309134 ret = 0;
9135 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01009136#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02009137 case KVM_HC_CLOCK_PAIRING:
9138 ret = kvm_pv_clock_pairing(vcpu, a0, a1);
9139 break;
Sean Christopherson1ed199a2019-01-23 09:22:39 -08009140#endif
Wanpeng Li4180bf12018-07-23 14:39:54 +08009141 case KVM_HC_SEND_IPI:
Oliver Upton66570e92020-08-18 15:24:28 +00009142 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SEND_IPI))
9143 break;
9144
Wanpeng Li4180bf12018-07-23 14:39:54 +08009145 ret = kvm_pv_send_ipi(vcpu->kvm, a0, a1, a2, a3, op_64_bit);
9146 break;
Wanpeng Li71506292019-06-11 20:23:49 +08009147 case KVM_HC_SCHED_YIELD:
Oliver Upton66570e92020-08-18 15:24:28 +00009148 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SCHED_YIELD))
9149 break;
9150
Wanpeng Li4a7132e2021-04-09 12:18:30 +08009151 kvm_sched_yield(vcpu, a0);
Wanpeng Li71506292019-06-11 20:23:49 +08009152 ret = 0;
9153 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00009154 case KVM_HC_MAP_GPA_RANGE: {
9155 u64 gpa = a0, npages = a1, attrs = a2;
9156
9157 ret = -KVM_ENOSYS;
9158 if (!(vcpu->kvm->arch.hypercall_exit_enabled & (1 << KVM_HC_MAP_GPA_RANGE)))
9159 break;
9160
9161 if (!PAGE_ALIGNED(gpa) || !npages ||
9162 gpa_to_gfn(gpa) + npages <= gpa_to_gfn(gpa)) {
9163 ret = -KVM_EINVAL;
9164 break;
9165 }
9166
9167 vcpu->run->exit_reason = KVM_EXIT_HYPERCALL;
9168 vcpu->run->hypercall.nr = KVM_HC_MAP_GPA_RANGE;
9169 vcpu->run->hypercall.args[0] = gpa;
9170 vcpu->run->hypercall.args[1] = npages;
9171 vcpu->run->hypercall.args[2] = attrs;
9172 vcpu->run->hypercall.longmode = op_64_bit;
9173 vcpu->arch.complete_userspace_io = complete_hypercall_exit;
9174 return 0;
9175 }
Hollis Blanchard8776e512007-10-31 17:24:24 -05009176 default:
9177 ret = -KVM_ENOSYS;
9178 break;
9179 }
Radim Krčmář696ca772018-05-24 17:50:56 +02009180out:
Nadav Amita449c7a2014-06-18 17:19:24 +03009181 if (!op_64_bit)
9182 ret = (u32)ret;
Sean Christophersonde3cd112019-04-30 10:36:17 -07009183 kvm_rax_write(vcpu, ret);
Marian Rotariu6356ee02018-04-30 12:23:01 +03009184
Amit Shahf11c3a82008-02-21 01:00:30 +05309185 ++vcpu->stat.hypercalls;
Marian Rotariu6356ee02018-04-30 12:23:01 +03009186 return kvm_skip_emulated_instruction(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009187}
9188EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
9189
Jan Kiszkab6785de2012-09-20 07:43:17 +02009190static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05009191{
Avi Kivityd6aa1002011-04-20 15:47:13 +03009192 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009193 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009194 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009195
Jason Baronb36464772021-01-14 22:27:56 -05009196 static_call(kvm_x86_patch_hypercall)(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009197
Dmitry Vyukovce2e8522017-01-17 14:51:04 +01009198 return emulator_write_emulated(ctxt, rip, instruction, 3,
9199 &ctxt->exception);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009200}
9201
Avi Kivity851ba692009-08-24 11:10:17 +03009202static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009203{
Matt Gingell782d4222015-11-16 15:26:00 -08009204 return vcpu->run->request_interrupt_window &&
9205 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009206}
9207
Avi Kivity851ba692009-08-24 11:10:17 +03009208static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009209{
Avi Kivity851ba692009-08-24 11:10:17 +03009210 struct kvm_run *kvm_run = vcpu->run;
9211
Marc Orrc5063552021-12-09 07:52:57 -08009212 kvm_run->if_flag = static_call(kvm_x86_get_if_flag)(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02009213 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009214 kvm_run->apic_base = kvm_get_apic_base(vcpu);
David Woodhousef3d14362021-10-26 04:12:38 +01009215
9216 /*
9217 * The call to kvm_ready_for_interrupt_injection() may end up in
9218 * kvm_xen_has_interrupt() which may require the srcu lock to be
9219 * held, to protect against changes in the vcpu_info address.
9220 */
9221 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Matt Gingell127a4572015-11-17 17:32:05 +01009222 kvm_run->ready_for_interrupt_injection =
9223 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08009224 kvm_vcpu_ready_for_interrupt_injection(vcpu);
David Woodhousef3d14362021-10-26 04:12:38 +01009225 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +08009226
9227 if (is_smm(vcpu))
9228 kvm_run->flags |= KVM_RUN_X86_SMM;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009229}
9230
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009231static void update_cr8_intercept(struct kvm_vcpu *vcpu)
9232{
9233 int max_irr, tpr;
9234
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009235 if (!kvm_x86_ops.update_cr8_intercept)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009236 return;
9237
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01009238 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03009239 return;
9240
Andrey Smetanind62caab2015-11-10 15:36:33 +03009241 if (vcpu->arch.apicv_active)
9242 return;
9243
Gleb Natapov8db3baa2009-05-11 13:35:54 +03009244 if (!vcpu->arch.apic->vapic_addr)
9245 max_irr = kvm_lapic_find_highest_irr(vcpu);
9246 else
9247 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009248
9249 if (max_irr != -1)
9250 max_irr >>= 4;
9251
9252 tpr = kvm_lapic_get_cr8(vcpu);
9253
Jason Baronb36464772021-01-14 22:27:56 -05009254 static_call(kvm_x86_update_cr8_intercept)(vcpu, tpr, max_irr);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009255}
9256
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009257
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009258int kvm_check_nested_events(struct kvm_vcpu *vcpu)
9259{
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009260 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
9261 kvm_x86_ops.nested_ops->triple_fault(vcpu);
9262 return 1;
9263 }
9264
9265 return kvm_x86_ops.nested_ops->check_events(vcpu);
9266}
9267
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009268static void kvm_inject_exception(struct kvm_vcpu *vcpu)
9269{
9270 if (vcpu->arch.exception.error_code && !is_protmode(vcpu))
9271 vcpu->arch.exception.error_code = false;
9272 static_call(kvm_x86_queue_exception)(vcpu);
9273}
9274
Jim Mattsona5f69092021-06-04 10:26:03 -07009275static int inject_pending_event(struct kvm_vcpu *vcpu, bool *req_immediate_exit)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009276{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01009277 int r;
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009278 bool can_inject = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +01009279
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009280 /* try to reinject previous events if any */
Wanpeng Li664f8e22017-08-24 03:35:09 -07009281
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009282 if (vcpu->arch.exception.injected) {
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009283 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009284 can_inject = false;
9285 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07009286 /*
Liran Alona042c262018-03-23 03:01:32 +03009287 * Do not inject an NMI or interrupt if there is a pending
9288 * exception. Exceptions and interrupts are recognized at
9289 * instruction boundaries, i.e. the start of an instruction.
9290 * Trap-like exceptions, e.g. #DB, have higher priority than
9291 * NMIs and interrupts, i.e. traps are recognized before an
9292 * NMI/interrupt that's pending on the same instruction.
9293 * Fault-like exceptions, e.g. #GP and #PF, are the lowest
9294 * priority, but are only generated (pended) during instruction
9295 * execution, i.e. a pending fault-like exception means the
9296 * fault occurred on the *previous* instruction and must be
9297 * serviced prior to recognizing any new events in order to
9298 * fully complete the previous instruction.
Wanpeng Li664f8e22017-08-24 03:35:09 -07009299 */
Liran Alon1a680e32018-03-23 03:01:33 +03009300 else if (!vcpu->arch.exception.pending) {
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009301 if (vcpu->arch.nmi_injected) {
Jason Baronb36464772021-01-14 22:27:56 -05009302 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009303 can_inject = false;
9304 } else if (vcpu->arch.interrupt.injected) {
Jason Baronb36464772021-01-14 22:27:56 -05009305 static_call(kvm_x86_set_irq)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009306 can_inject = false;
9307 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07009308 }
9309
Sean Christopherson3b82b8d2020-04-22 19:25:47 -07009310 WARN_ON_ONCE(vcpu->arch.exception.injected &&
9311 vcpu->arch.exception.pending);
9312
Liran Alon1a680e32018-03-23 03:01:33 +03009313 /*
9314 * Call check_nested_events() even if we reinjected a previous event
9315 * in order for caller to determine if it should require immediate-exit
9316 * from L2 to L1 due to pending L1 events which require exit
9317 * from L2 to L1.
9318 */
Paolo Bonzini56083bd2020-04-17 10:32:53 -04009319 if (is_guest_mode(vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009320 r = kvm_check_nested_events(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009321 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009322 goto out;
Wanpeng Li664f8e22017-08-24 03:35:09 -07009323 }
9324
9325 /* try to inject new event if pending */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03009326 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d02010-03-11 13:01:59 +02009327 trace_kvm_inj_exception(vcpu->arch.exception.nr,
9328 vcpu->arch.exception.has_error_code,
9329 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03009330
Wanpeng Li664f8e22017-08-24 03:35:09 -07009331 vcpu->arch.exception.pending = false;
9332 vcpu->arch.exception.injected = true;
9333
Nadav Amitd6e8c852014-07-24 14:51:24 +03009334 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
9335 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
9336 X86_EFLAGS_RF);
9337
Jim Mattsonf10c7292018-10-16 14:29:23 -07009338 if (vcpu->arch.exception.nr == DB_VECTOR) {
Jim Mattsonf10c7292018-10-16 14:29:23 -07009339 kvm_deliver_exception_payload(vcpu);
9340 if (vcpu->arch.dr7 & DR7_GD) {
9341 vcpu->arch.dr7 &= ~DR7_GD;
9342 kvm_update_dr7(vcpu);
9343 }
Nadav Amit6bdf0662014-09-30 20:49:14 +03009344 }
9345
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009346 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009347 can_inject = false;
Liran Alon1a680e32018-03-23 03:01:33 +03009348 }
9349
Maxim Levitsky61e5f692021-08-11 15:29:26 +03009350 /* Don't inject interrupts if the user asked to avoid doing so */
9351 if (vcpu->guest_debug & KVM_GUESTDBG_BLOCKIRQ)
9352 return 0;
9353
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009354 /*
9355 * Finally, inject interrupt events. If an event cannot be injected
9356 * due to architectural conditions (e.g. IF=0) a window-open exit
9357 * will re-request KVM_REQ_EVENT. Sometimes however an event is pending
9358 * and can architecturally be injected, but we cannot do it right now:
9359 * an interrupt could have arrived just now and we have to inject it
9360 * as a vmexit, or there could already an event in the queue, which is
9361 * indicated by can_inject. In that case we request an immediate exit
9362 * in order to make progress and get back here for another iteration.
9363 * The kvm_x86_ops hooks communicate this by returning -EBUSY.
9364 */
9365 if (vcpu->arch.smi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05009366 r = can_inject ? static_call(kvm_x86_smi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009367 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009368 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009369 if (r) {
9370 vcpu->arch.smi_pending = false;
9371 ++vcpu->arch.smi_count;
9372 enter_smm(vcpu);
9373 can_inject = false;
9374 } else
Jason Baronb36464772021-01-14 22:27:56 -05009375 static_call(kvm_x86_enable_smi_window)(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009376 }
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009377
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009378 if (vcpu->arch.nmi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05009379 r = can_inject ? static_call(kvm_x86_nmi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009380 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009381 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009382 if (r) {
9383 --vcpu->arch.nmi_pending;
9384 vcpu->arch.nmi_injected = true;
Jason Baronb36464772021-01-14 22:27:56 -05009385 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009386 can_inject = false;
Jason Baronb36464772021-01-14 22:27:56 -05009387 WARN_ON(static_call(kvm_x86_nmi_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009388 }
9389 if (vcpu->arch.nmi_pending)
Jason Baronb36464772021-01-14 22:27:56 -05009390 static_call(kvm_x86_enable_nmi_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009391 }
9392
9393 if (kvm_cpu_has_injectable_intr(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05009394 r = can_inject ? static_call(kvm_x86_interrupt_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009395 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009396 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009397 if (r) {
9398 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu), false);
Jason Baronb36464772021-01-14 22:27:56 -05009399 static_call(kvm_x86_set_irq)(vcpu);
9400 WARN_ON(static_call(kvm_x86_interrupt_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009401 }
9402 if (kvm_cpu_has_injectable_intr(vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05009403 static_call(kvm_x86_enable_irq_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009404 }
9405
9406 if (is_guest_mode(vcpu) &&
9407 kvm_x86_ops.nested_ops->hv_timer_pending &&
9408 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
9409 *req_immediate_exit = true;
9410
9411 WARN_ON(vcpu->arch.exception.pending);
Jim Mattsona5f69092021-06-04 10:26:03 -07009412 return 0;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009413
Jim Mattsona5f69092021-06-04 10:26:03 -07009414out:
9415 if (r == -EBUSY) {
9416 *req_immediate_exit = true;
9417 r = 0;
9418 }
9419 return r;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009420}
9421
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009422static void process_nmi(struct kvm_vcpu *vcpu)
9423{
9424 unsigned limit = 2;
9425
9426 /*
9427 * x86 is limited to one NMI running, and one NMI pending after it.
9428 * If an NMI is already in progress, limit further NMIs to just one.
9429 * Otherwise, allow two (and we'll inject the first one immediately).
9430 */
Jason Baronb36464772021-01-14 22:27:56 -05009431 if (static_call(kvm_x86_get_nmi_mask)(vcpu) || vcpu->arch.nmi_injected)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009432 limit = 1;
9433
9434 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
9435 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
9436 kvm_make_request(KVM_REQ_EVENT, vcpu);
9437}
9438
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009439static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009440{
9441 u32 flags = 0;
9442 flags |= seg->g << 23;
9443 flags |= seg->db << 22;
9444 flags |= seg->l << 21;
9445 flags |= seg->avl << 20;
9446 flags |= seg->present << 15;
9447 flags |= seg->dpl << 13;
9448 flags |= seg->s << 12;
9449 flags |= seg->type << 8;
9450 return flags;
9451}
9452
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009453static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009454{
9455 struct kvm_segment seg;
9456 int offset;
9457
9458 kvm_get_segment(vcpu, &seg, n);
9459 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
9460
9461 if (n < 3)
9462 offset = 0x7f84 + n * 12;
9463 else
9464 offset = 0x7f2c + (n - 3) * 12;
9465
9466 put_smstate(u32, buf, offset + 8, seg.base);
9467 put_smstate(u32, buf, offset + 4, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009468 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009469}
9470
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06009471#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009472static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009473{
9474 struct kvm_segment seg;
9475 int offset;
9476 u16 flags;
9477
9478 kvm_get_segment(vcpu, &seg, n);
9479 offset = 0x7e00 + n * 16;
9480
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009481 flags = enter_smm_get_segment_flags(&seg) >> 8;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009482 put_smstate(u16, buf, offset, seg.selector);
9483 put_smstate(u16, buf, offset + 2, flags);
9484 put_smstate(u32, buf, offset + 4, seg.limit);
9485 put_smstate(u64, buf, offset + 8, seg.base);
9486}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06009487#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009488
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009489static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009490{
9491 struct desc_ptr dt;
9492 struct kvm_segment seg;
9493 unsigned long val;
9494 int i;
9495
9496 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
9497 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
9498 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
9499 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
9500
9501 for (i = 0; i < 8; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009502 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009503
9504 kvm_get_dr(vcpu, 6, &val);
9505 put_smstate(u32, buf, 0x7fcc, (u32)val);
9506 kvm_get_dr(vcpu, 7, &val);
9507 put_smstate(u32, buf, 0x7fc8, (u32)val);
9508
9509 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9510 put_smstate(u32, buf, 0x7fc4, seg.selector);
9511 put_smstate(u32, buf, 0x7f64, seg.base);
9512 put_smstate(u32, buf, 0x7f60, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009513 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009514
9515 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9516 put_smstate(u32, buf, 0x7fc0, seg.selector);
9517 put_smstate(u32, buf, 0x7f80, seg.base);
9518 put_smstate(u32, buf, 0x7f7c, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009519 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009520
Jason Baronb36464772021-01-14 22:27:56 -05009521 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009522 put_smstate(u32, buf, 0x7f74, dt.address);
9523 put_smstate(u32, buf, 0x7f70, dt.size);
9524
Jason Baronb36464772021-01-14 22:27:56 -05009525 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009526 put_smstate(u32, buf, 0x7f58, dt.address);
9527 put_smstate(u32, buf, 0x7f54, dt.size);
9528
9529 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009530 enter_smm_save_seg_32(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009531
9532 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
9533
9534 /* revision id */
9535 put_smstate(u32, buf, 0x7efc, 0x00020000);
9536 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
9537}
9538
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009539#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009540static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009541{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009542 struct desc_ptr dt;
9543 struct kvm_segment seg;
9544 unsigned long val;
9545 int i;
9546
9547 for (i = 0; i < 16; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009548 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009549
9550 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
9551 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
9552
9553 kvm_get_dr(vcpu, 6, &val);
9554 put_smstate(u64, buf, 0x7f68, val);
9555 kvm_get_dr(vcpu, 7, &val);
9556 put_smstate(u64, buf, 0x7f60, val);
9557
9558 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
9559 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
9560 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
9561
9562 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
9563
9564 /* revision id */
9565 put_smstate(u32, buf, 0x7efc, 0x00020064);
9566
9567 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
9568
9569 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9570 put_smstate(u16, buf, 0x7e90, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009571 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009572 put_smstate(u32, buf, 0x7e94, seg.limit);
9573 put_smstate(u64, buf, 0x7e98, seg.base);
9574
Jason Baronb36464772021-01-14 22:27:56 -05009575 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009576 put_smstate(u32, buf, 0x7e84, dt.size);
9577 put_smstate(u64, buf, 0x7e88, dt.address);
9578
9579 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9580 put_smstate(u16, buf, 0x7e70, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009581 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009582 put_smstate(u32, buf, 0x7e74, seg.limit);
9583 put_smstate(u64, buf, 0x7e78, seg.base);
9584
Jason Baronb36464772021-01-14 22:27:56 -05009585 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009586 put_smstate(u32, buf, 0x7e64, dt.size);
9587 put_smstate(u64, buf, 0x7e68, dt.address);
9588
9589 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009590 enter_smm_save_seg_64(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009591}
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009592#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009593
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009594static void enter_smm(struct kvm_vcpu *vcpu)
Paolo Bonzini64d60672015-05-07 11:36:11 +02009595{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009596 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02009597 struct desc_ptr dt;
Sean Christophersondbc47392021-06-22 10:56:59 -07009598 unsigned long cr0;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009599 char buf[512];
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009600
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009601 memset(buf, 0, 512);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009602#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009603 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009604 enter_smm_save_state_64(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009605 else
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009606#endif
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009607 enter_smm_save_state_32(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009608
Ladi Prosek0234bf82017-10-11 16:54:40 +02009609 /*
Sean Christophersonecc513e2021-06-09 11:56:19 -07009610 * Give enter_smm() a chance to make ISA-specific changes to the vCPU
9611 * state (e.g. leave guest mode) after we've saved the state into the
9612 * SMM state-save area.
Ladi Prosek0234bf82017-10-11 16:54:40 +02009613 */
Sean Christophersonecc513e2021-06-09 11:56:19 -07009614 static_call(kvm_x86_enter_smm)(vcpu, buf);
Ladi Prosek0234bf82017-10-11 16:54:40 +02009615
Sean Christophersondc872752021-06-09 11:56:15 -07009616 kvm_smm_changed(vcpu, true);
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009617 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009618
Jason Baronb36464772021-01-14 22:27:56 -05009619 if (static_call(kvm_x86_get_nmi_mask)(vcpu))
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009620 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
9621 else
Jason Baronb36464772021-01-14 22:27:56 -05009622 static_call(kvm_x86_set_nmi_mask)(vcpu, true);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009623
9624 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
9625 kvm_rip_write(vcpu, 0x8000);
9626
9627 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
Jason Baronb36464772021-01-14 22:27:56 -05009628 static_call(kvm_x86_set_cr0)(vcpu, cr0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009629 vcpu->arch.cr0 = cr0;
9630
Jason Baronb36464772021-01-14 22:27:56 -05009631 static_call(kvm_x86_set_cr4)(vcpu, 0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009632
Paolo Bonzini18c36262015-08-07 12:27:54 +02009633 /* Undocumented: IDT limit is set to zero on entry to SMM. */
9634 dt.address = dt.size = 0;
Jason Baronb36464772021-01-14 22:27:56 -05009635 static_call(kvm_x86_set_idt)(vcpu, &dt);
Paolo Bonzini18c36262015-08-07 12:27:54 +02009636
Paolo Bonzini996ff542020-12-14 07:49:54 -05009637 kvm_set_dr(vcpu, 7, DR7_FIXED_1);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009638
9639 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
9640 cs.base = vcpu->arch.smbase;
9641
9642 ds.selector = 0;
9643 ds.base = 0;
9644
9645 cs.limit = ds.limit = 0xffffffff;
9646 cs.type = ds.type = 0x3;
9647 cs.dpl = ds.dpl = 0;
9648 cs.db = ds.db = 0;
9649 cs.s = ds.s = 1;
9650 cs.l = ds.l = 0;
9651 cs.g = ds.g = 1;
9652 cs.avl = ds.avl = 0;
9653 cs.present = ds.present = 1;
9654 cs.unusable = ds.unusable = 0;
9655 cs.padding = ds.padding = 0;
9656
9657 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
9658 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
9659 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
9660 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
9661 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
9662 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
9663
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009664#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009665 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Jason Baronb36464772021-01-14 22:27:56 -05009666 static_call(kvm_x86_set_efer)(vcpu, 0);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009667#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009668
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08009669 kvm_update_cpuid_runtime(vcpu);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009670 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009671}
9672
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009673static void process_smi(struct kvm_vcpu *vcpu)
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009674{
9675 vcpu->arch.smi_pending = true;
9676 kvm_make_request(KVM_REQ_EVENT, vcpu);
9677}
9678
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009679void kvm_make_scan_ioapic_request_mask(struct kvm *kvm,
9680 unsigned long *vcpu_bitmap)
9681{
Vitaly Kuznetsov620b2432021-09-03 09:51:41 +02009682 kvm_make_vcpus_request_mask(kvm, KVM_REQ_SCAN_IOAPIC, vcpu_bitmap);
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009683}
9684
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01009685void kvm_make_scan_ioapic_request(struct kvm *kvm)
9686{
9687 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
9688}
9689
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009690void kvm_vcpu_update_apicv(struct kvm_vcpu *vcpu)
9691{
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009692 bool activate;
9693
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009694 if (!lapic_in_kernel(vcpu))
9695 return;
9696
Sean Christopherson187c8832021-10-21 17:49:27 -07009697 down_read(&vcpu->kvm->arch.apicv_update_lock);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009698
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009699 activate = kvm_apicv_activated(vcpu->kvm);
9700 if (vcpu->arch.apicv_active == activate)
9701 goto out;
9702
9703 vcpu->arch.apicv_active = activate;
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009704 kvm_apic_update_apicv(vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009705 static_call(kvm_x86_refresh_apicv_exec_ctrl)(vcpu);
Vitaly Kuznetsovbca66db2021-06-09 17:09:10 +02009706
9707 /*
9708 * When APICv gets disabled, we may still have injected interrupts
9709 * pending. At the same time, KVM_REQ_EVENT may not be set as APICv was
9710 * still active when the interrupt got accepted. Make sure
9711 * inject_pending_event() is called to check for that.
9712 */
9713 if (!vcpu->arch.apicv_active)
9714 kvm_make_request(KVM_REQ_EVENT, vcpu);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009715
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009716out:
Sean Christopherson187c8832021-10-21 17:49:27 -07009717 up_read(&vcpu->kvm->arch.apicv_update_lock);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009718}
9719EXPORT_SYMBOL_GPL(kvm_vcpu_update_apicv);
9720
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009721void __kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009722{
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009723 unsigned long old, new;
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009724
Sean Christopherson187c8832021-10-21 17:49:27 -07009725 lockdep_assert_held_write(&kvm->arch.apicv_update_lock);
9726
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009727 if (!kvm_x86_ops.check_apicv_inhibit_reasons ||
Jason Baronb36464772021-01-14 22:27:56 -05009728 !static_call(kvm_x86_check_apicv_inhibit_reasons)(bit))
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06009729 return;
9730
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009731 old = new = kvm->arch.apicv_inhibit_reasons;
9732
9733 if (activate)
9734 __clear_bit(bit, &new);
9735 else
9736 __set_bit(bit, &new);
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009737
Maxim Levitsky36222b12021-08-10 23:52:43 +03009738 if (!!old != !!new) {
9739 trace_kvm_apicv_update_request(activate, bit);
Sean Christophersonee49a892021-10-21 17:49:25 -07009740 /*
9741 * Kick all vCPUs before setting apicv_inhibit_reasons to avoid
9742 * false positives in the sanity check WARN in svm_vcpu_run().
9743 * This task will wait for all vCPUs to ack the kick IRQ before
9744 * updating apicv_inhibit_reasons, and all other vCPUs will
9745 * block on acquiring apicv_update_lock so that vCPUs can't
9746 * redo svm_vcpu_run() without seeing the new inhibit state.
9747 *
9748 * Note, holding apicv_update_lock and taking it in the read
9749 * side (handling the request) also prevents other vCPUs from
9750 * servicing the request with a stale apicv_inhibit_reasons.
9751 */
Maxim Levitsky36222b12021-08-10 23:52:43 +03009752 kvm_make_all_cpus_request(kvm, KVM_REQ_APICV_UPDATE);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009753 kvm->arch.apicv_inhibit_reasons = new;
Maxim Levitsky36222b12021-08-10 23:52:43 +03009754 if (new) {
9755 unsigned long gfn = gpa_to_gfn(APIC_DEFAULT_PHYS_BASE);
Maxim Levitsky36222b12021-08-10 23:52:43 +03009756 kvm_zap_gfn_range(kvm, gfn, gfn+1);
9757 }
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009758 } else
9759 kvm->arch.apicv_inhibit_reasons = new;
9760}
9761EXPORT_SYMBOL_GPL(__kvm_request_apicv_update);
Suravee Suthikulpanit7d611232020-05-06 21:35:39 -05009762
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009763void kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
9764{
Sean Christopherson187c8832021-10-21 17:49:27 -07009765 down_write(&kvm->arch.apicv_update_lock);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009766 __kvm_request_apicv_update(kvm, activate, bit);
Sean Christopherson187c8832021-10-21 17:49:27 -07009767 up_write(&kvm->arch.apicv_update_lock);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009768}
9769EXPORT_SYMBOL_GPL(kvm_request_apicv_update);
9770
Yang Zhang3d81bc72013-04-11 19:25:13 +08009771static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08009772{
Wanpeng Lidcbd3e42018-12-17 10:43:23 +08009773 if (!kvm_apic_present(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08009774 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08009775
Andrey Smetanin63086302015-11-10 15:36:32 +03009776 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009777
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07009778 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03009779 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009780 else {
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -05009781 static_call_cond(kvm_x86_sync_pir_to_irr)(vcpu);
Wanpeng Lie97f8522018-11-20 16:34:18 +08009782 if (ioapic_in_kernel(vcpu->kvm))
9783 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009784 }
Liran Alone40ff1d2018-03-21 02:50:31 +02009785
9786 if (is_guest_mode(vcpu))
9787 vcpu->arch.load_eoi_exitmap_pending = true;
9788 else
9789 kvm_make_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu);
9790}
9791
9792static void vcpu_load_eoi_exitmap(struct kvm_vcpu *vcpu)
9793{
9794 u64 eoi_exit_bitmap[4];
9795
9796 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
9797 return;
9798
黄乐c5adbb3a2021-11-15 14:08:29 +00009799 if (to_hv_vcpu(vcpu)) {
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01009800 bitmap_or((ulong *)eoi_exit_bitmap,
9801 vcpu->arch.ioapic_handled_vectors,
9802 to_hv_synic(vcpu)->vec_bitmap, 256);
黄乐c5adbb3a2021-11-15 14:08:29 +00009803 static_call(kvm_x86_load_eoi_exitmap)(vcpu, eoi_exit_bitmap);
9804 return;
9805 }
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01009806
黄乐c5adbb3a2021-11-15 14:08:29 +00009807 static_call(kvm_x86_load_eoi_exitmap)(
9808 vcpu, (u64 *)vcpu->arch.ioapic_handled_vectors);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009809}
9810
Eiichi Tsukatae649b3f2020-06-06 13:26:27 +09009811void kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
9812 unsigned long start, unsigned long end)
Radim Krčmářb1394e72017-11-30 19:05:45 +01009813{
9814 unsigned long apic_address;
9815
9816 /*
9817 * The physical address of apic access page is stored in the VMCS.
9818 * Update it when it becomes invalid.
9819 */
9820 apic_address = gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
9821 if (start <= apic_address && apic_address < end)
9822 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
9823}
9824
Quanfa Fud081a342021-12-19 17:14:46 +08009825static void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
Tang Chen4256f432014-09-24 15:57:54 +08009826{
Paolo Bonzini35754c92015-07-29 12:05:37 +02009827 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02009828 return;
9829
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009830 if (!kvm_x86_ops.set_apic_access_page_addr)
Tang Chen4256f432014-09-24 15:57:54 +08009831 return;
9832
Jason Baronb36464772021-01-14 22:27:56 -05009833 static_call(kvm_x86_set_apic_access_page_addr)(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009834}
Tang Chen4256f432014-09-24 15:57:54 +08009835
Sean Christophersond264ee02018-08-27 15:21:12 -07009836void __kvm_request_immediate_exit(struct kvm_vcpu *vcpu)
9837{
9838 smp_send_reschedule(vcpu->cpu);
9839}
9840EXPORT_SYMBOL_GPL(__kvm_request_immediate_exit);
9841
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009842/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01009843 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009844 * exiting to the userspace. Otherwise, the value will be returned to the
9845 * userspace.
9846 */
Avi Kivity851ba692009-08-24 11:10:17 +03009847static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009848{
9849 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08009850 bool req_int_win =
9851 dm_request_for_irq_injection(vcpu) &&
9852 kvm_cpu_accept_dm_intr(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08009853 fastpath_t exit_fastpath;
Matt Gingell62a193e2015-11-16 15:26:07 -08009854
Jan Kiszka730dca42013-04-28 10:50:52 +02009855 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009856
Peter Xufb04a1e2020-09-30 21:22:22 -04009857 /* Forbid vmenter if vcpu dirty ring is soft-full */
9858 if (unlikely(vcpu->kvm->dirty_ring_size &&
9859 kvm_dirty_ring_soft_full(&vcpu->dirty_ring))) {
9860 vcpu->run->exit_reason = KVM_EXIT_DIRTY_RING_FULL;
9861 trace_kvm_dirty_ring_exit(vcpu);
9862 r = 0;
9863 goto out;
9864 }
9865
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +02009866 if (kvm_request_pending(vcpu)) {
Paolo Bonzinif4d31652021-11-11 10:13:38 -05009867 if (kvm_check_request(KVM_REQ_VM_DEAD, vcpu)) {
Sean Christopherson67369272021-07-02 15:04:25 -07009868 r = -EIO;
9869 goto out;
9870 }
Paolo Bonzini729c15c2020-09-22 06:53:57 -04009871 if (kvm_check_request(KVM_REQ_GET_NESTED_STATE_PAGES, vcpu)) {
Paolo Bonzini9a78e152021-01-08 11:43:08 -05009872 if (unlikely(!kvm_x86_ops.nested_ops->get_nested_state_pages(vcpu))) {
Jim Mattson671ddc72019-10-15 10:44:05 -07009873 r = 0;
9874 goto out;
9875 }
9876 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009877 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05009878 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03009879 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03009880 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02009881 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00009882 kvm_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03009883 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
9884 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10009885 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
9886 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10009887 if (unlikely(r))
9888 goto out;
9889 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009890 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03009891 kvm_mmu_sync_roots(vcpu);
Paolo Bonzini727a7e22020-03-05 03:52:50 -05009892 if (kvm_check_request(KVM_REQ_LOAD_MMU_PGD, vcpu))
9893 kvm_mmu_load_pgd(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009894 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) {
Sean Christopherson77809382020-03-20 14:28:18 -07009895 kvm_vcpu_flush_tlb_all(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009896
9897 /* Flushing all ASIDs flushes the current ASID... */
9898 kvm_clear_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
9899 }
Sean Christopherson40e5f9082021-11-25 01:49:43 +00009900 kvm_service_local_tlb_flush_requests(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009901
Avi Kivitya8eeb042010-05-10 12:34:53 +03009902 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03009903 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02009904 r = 0;
9905 goto out;
9906 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009907 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009908 if (is_guest_mode(vcpu)) {
9909 kvm_x86_ops.nested_ops->triple_fault(vcpu);
9910 } else {
9911 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
9912 vcpu->mmio_needed = 0;
9913 r = 0;
9914 goto out;
9915 }
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01009916 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02009917 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
9918 /* Page is swapped out. Do synthetic halt */
9919 vcpu->arch.apf.halted = true;
9920 r = 1;
9921 goto out;
9922 }
Glauber Costac9aaa892011-07-11 15:28:14 -04009923 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
9924 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009925 if (kvm_check_request(KVM_REQ_SMI, vcpu))
9926 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009927 if (kvm_check_request(KVM_REQ_NMI, vcpu))
9928 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009929 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009930 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009931 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009932 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07009933 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
9934 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
9935 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03009936 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07009937 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
9938 vcpu->run->eoi.vector =
9939 vcpu->arch.pending_ioapic_eoi;
9940 r = 0;
9941 goto out;
9942 }
9943 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08009944 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
9945 vcpu_scan_ioapic(vcpu);
Liran Alone40ff1d2018-03-21 02:50:31 +02009946 if (kvm_check_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu))
9947 vcpu_load_eoi_exitmap(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009948 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
9949 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03009950 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
9951 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9952 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
9953 r = 0;
9954 goto out;
9955 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03009956 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
9957 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9958 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
9959 r = 0;
9960 goto out;
9961 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03009962 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009963 struct kvm_vcpu_hv *hv_vcpu = to_hv_vcpu(vcpu);
9964
Andrey Smetanindb3975712015-11-10 15:36:35 +03009965 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009966 vcpu->run->hyperv = hv_vcpu->exit;
Andrey Smetanindb3975712015-11-10 15:36:35 +03009967 r = 0;
9968 goto out;
9969 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03009970
9971 /*
9972 * KVM_REQ_HV_STIMER has to be processed after
9973 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
9974 * depend on the guest clock being up-to-date
9975 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03009976 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
9977 kvm_hv_process_stimers(vcpu);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009978 if (kvm_check_request(KVM_REQ_APICV_UPDATE, vcpu))
9979 kvm_vcpu_update_apicv(vcpu);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02009980 if (kvm_check_request(KVM_REQ_APF_READY, vcpu))
9981 kvm_check_async_pf_completion(vcpu);
Alexander Graf1a1552542020-09-25 16:34:21 +02009982 if (kvm_check_request(KVM_REQ_MSR_FILTER_CHANGED, vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05009983 static_call(kvm_x86_msr_filter_changed)(vcpu);
Makarand Sonarea85863c2021-02-12 16:50:12 -08009984
9985 if (kvm_check_request(KVM_REQ_UPDATE_CPU_DIRTY_LOGGING, vcpu))
9986 static_call(kvm_x86_update_cpu_dirty_logging)(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02009987 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009988
David Woodhouse40da8cc2020-12-09 20:08:30 +00009989 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win ||
9990 kvm_xen_has_interrupt(vcpu)) {
Paolo Bonzini0f1e2612016-12-17 16:05:19 +01009991 ++vcpu->stat.req_event;
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009992 r = kvm_apic_accept_events(vcpu);
9993 if (r < 0) {
9994 r = 0;
9995 goto out;
9996 }
Jan Kiszka66450a22013-03-13 12:42:34 +01009997 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
9998 r = 1;
9999 goto out;
10000 }
10001
Jim Mattsona5f69092021-06-04 10:26:03 -070010002 r = inject_pending_event(vcpu, &req_immediate_exit);
10003 if (r < 0) {
10004 r = 0;
10005 goto out;
10006 }
Paolo Bonzinic9d40912020-05-22 11:21:49 -040010007 if (req_int_win)
Jason Baronb36464772021-01-14 22:27:56 -050010008 static_call(kvm_x86_enable_irq_window)(vcpu);
Gleb Natapov6a8b1d12009-05-11 13:35:51 +030010009
Avi Kivity3842d132010-07-27 12:30:24 +030010010 if (kvm_lapic_enabled(vcpu)) {
10011 update_cr8_intercept(vcpu);
10012 kvm_lapic_sync_to_vapic(vcpu);
10013 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010014 }
Avi Kivityb93463a2007-10-25 16:52:32 +020010015
Avi Kivityd8368af2012-05-14 18:07:56 +030010016 r = kvm_mmu_reload(vcpu);
10017 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +030010018 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +030010019 }
10020
Jan Kiszka42dbaa52008-12-15 13:52:10 +010010021 preempt_disable();
10022
Jason Baronb36464772021-01-14 22:27:56 -050010023 static_call(kvm_x86_prepare_guest_switch)(vcpu);
Paolo Bonzinib95234c2016-12-19 13:57:33 +010010024
10025 /*
10026 * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt
10027 * IPI are then delayed after guest entry, which ensures that they
10028 * result in virtual interrupt delivery.
10029 */
10030 local_irq_disable();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +080010031 vcpu->mode = IN_GUEST_MODE;
10032
Michael S. Tsirkin01b71912013-11-04 22:36:25 +020010033 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
10034
Lan Tianyu0f127d12016-03-13 11:10:29 +080010035 /*
Paolo Bonzinib95234c2016-12-19 13:57:33 +010010036 * 1) We should set ->mode before checking ->requests. Please see
Andrew Jonescde9af62017-04-26 22:32:24 +020010037 * the comment in kvm_vcpu_exiting_guest_mode().
Paolo Bonzinib95234c2016-12-19 13:57:33 +010010038 *
Luwei Kang81b01662019-01-31 16:52:02 +080010039 * 2) For APICv, we should set ->mode before checking PID.ON. This
Paolo Bonzinib95234c2016-12-19 13:57:33 +010010040 * pairs with the memory barrier implicit in pi_test_and_set_on
10041 * (see vmx_deliver_posted_interrupt).
10042 *
10043 * 3) This also orders the write to mode from any reads to the page
10044 * tables done while the VCPU is running. Please see the comment
10045 * in kvm_flush_remote_tlbs.
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +080010046 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +020010047 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010048
Paolo Bonzinib95234c2016-12-19 13:57:33 +010010049 /*
Sean Christopherson0f65a9d32021-12-08 01:52:26 +000010050 * Process pending posted interrupts to handle the case where the
10051 * notification IRQ arrived in the host, or was never sent (because the
10052 * target vCPU wasn't running). Do this regardless of the vCPU's APICv
10053 * status, KVM doesn't update assigned devices when APICv is inhibited,
10054 * i.e. they can post interrupts even if APICv is temporarily disabled.
Paolo Bonzinib95234c2016-12-19 13:57:33 +010010055 */
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -050010056 if (kvm_lapic_enabled(vcpu))
10057 static_call_cond(kvm_x86_sync_pir_to_irr)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010058
Wanpeng Li5a9f5442020-04-28 14:23:26 +080010059 if (kvm_vcpu_exit_request(vcpu)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +080010060 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010061 smp_wmb();
10062 local_irq_enable();
10063 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +020010064 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010065 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +030010066 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010067 }
10068
Paolo Bonzinic43203c2016-06-01 22:26:00 +020010069 if (req_immediate_exit) {
10070 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -050010071 static_call(kvm_x86_request_immediate_exit)(vcpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +020010072 }
Nadav Har'Eld6185f22011-09-22 13:52:56 +030010073
Sean Christopherson2620fe22020-01-17 11:30:51 -080010074 fpregs_assert_state_consistent();
10075 if (test_thread_flag(TIF_NEED_FPU_LOAD))
10076 switch_fpu_return();
Rik van Riel5f409e22019-04-03 18:41:52 +020010077
Jing Liuec5be882022-01-05 04:35:23 -080010078 if (vcpu->arch.guest_fpu.xfd_err)
10079 wrmsrl(MSR_IA32_XFD_ERR, vcpu->arch.guest_fpu.xfd_err);
10080
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010081 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010082 set_debugreg(0, 7);
10083 set_debugreg(vcpu->arch.eff_db[0], 0);
10084 set_debugreg(vcpu->arch.eff_db[1], 1);
10085 set_debugreg(vcpu->arch.eff_db[2], 2);
10086 set_debugreg(vcpu->arch.eff_db[3], 3);
Lai Jiangshanf85d4012021-06-29 01:26:32 +080010087 } else if (unlikely(hw_breakpoint_active())) {
10088 set_debugreg(0, 7);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010089 }
10090
Paolo Bonzinid89d04a2021-02-02 10:44:23 -050010091 for (;;) {
Sean Christophersonee49a892021-10-21 17:49:25 -070010092 /*
10093 * Assert that vCPU vs. VM APICv state is consistent. An APICv
10094 * update must kick and wait for all vCPUs before toggling the
10095 * per-VM state, and responsing vCPUs must wait for the update
10096 * to complete before servicing KVM_REQ_APICV_UPDATE.
10097 */
10098 WARN_ON_ONCE(kvm_apicv_activated(vcpu->kvm) != kvm_vcpu_apicv_active(vcpu));
10099
Paolo Bonzinid89d04a2021-02-02 10:44:23 -050010100 exit_fastpath = static_call(kvm_x86_run)(vcpu);
10101 if (likely(exit_fastpath != EXIT_FASTPATH_REENTER_GUEST))
10102 break;
10103
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -050010104 if (kvm_lapic_enabled(vcpu))
10105 static_call_cond(kvm_x86_sync_pir_to_irr)(vcpu);
Paolo Bonzinide7cd3f2021-10-20 06:27:36 -040010106
10107 if (unlikely(kvm_vcpu_exit_request(vcpu))) {
Paolo Bonzinid89d04a2021-02-02 10:44:23 -050010108 exit_fastpath = EXIT_FASTPATH_EXIT_HANDLED;
10109 break;
10110 }
Paolo Bonzinide7cd3f2021-10-20 06:27:36 -040010111 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010112
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010113 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +010010114 * Do this here before restoring debug registers on the host. And
10115 * since we do this before handling the vmexit, a DR access vmexit
10116 * can (a) read the correct value of the debug registers, (b) set
10117 * KVM_DEBUGREG_WONT_EXIT again.
10118 */
10119 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +010010120 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
Jason Baronb36464772021-01-14 22:27:56 -050010121 static_call(kvm_x86_sync_dirty_debug_regs)(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +010010122 kvm_update_dr0123(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +010010123 kvm_update_dr7(vcpu);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +010010124 }
10125
10126 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010127 * If the guest has used debug registers, at least dr7
10128 * will be disabled while returning to the host.
10129 * If we don't have active breakpoints in the host, we don't
10130 * care about the messed up debug address registers. But if
10131 * we have some of them active, restore the old state.
10132 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +010010133 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010134 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010135
Jim Mattsonc9671182020-06-03 16:56:23 -070010136 vcpu->arch.last_vmentry_cpu = vcpu->cpu;
Haozhong Zhang4ba76532015-10-20 15:39:07 +080010137 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -100010138
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +080010139 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +030010140 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +080010141
Kevin Tianb5274b12022-01-05 04:35:32 -080010142 /*
10143 * Sync xfd before calling handle_exit_irqoff() which may
10144 * rely on the fact that guest_fpu::xfd is up-to-date (e.g.
10145 * in #NM irqoff handler).
10146 */
10147 if (vcpu->arch.xfd_no_write_intercept)
10148 fpu_sync_guest_vmexit_xfd_state();
10149
Jason Baronb36464772021-01-14 22:27:56 -050010150 static_call(kvm_x86_handle_exit_irqoff)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010151
Jing Liuec5be882022-01-05 04:35:23 -080010152 if (vcpu->arch.guest_fpu.xfd_err)
10153 wrmsrl(MSR_IA32_XFD_ERR, 0);
10154
Sean Christophersond7a08882019-07-10 09:07:34 -070010155 /*
10156 * Consume any pending interrupts, including the possible source of
10157 * VM-Exit on SVM and any ticks that occur between VM-Exit and now.
10158 * An instruction is required after local_irq_enable() to fully unblock
10159 * interrupts on processors that implement an interrupt shadow, the
10160 * stat.exits increment will do nicely.
10161 */
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010162 kvm_before_interrupt(vcpu);
Sean Christophersond7a08882019-07-10 09:07:34 -070010163 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010164 ++vcpu->stat.exits;
Sean Christophersond7a08882019-07-10 09:07:34 -070010165 local_irq_disable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010166 kvm_after_interrupt(vcpu);
10167
Wanpeng Li16045712021-05-04 17:27:30 -070010168 /*
10169 * Wait until after servicing IRQs to account guest time so that any
10170 * ticks that occurred while running the guest are properly accounted
10171 * to the guest. Waiting until IRQs are enabled degrades the accuracy
10172 * of accounting via context tracking, but the loss of accuracy is
10173 * acceptable for all known use cases.
10174 */
10175 vtime_account_guest_exit();
10176
Wanpeng Liec0671d2019-05-20 16:18:08 +080010177 if (lapic_in_kernel(vcpu)) {
10178 s64 delta = vcpu->arch.apic->lapic_timer.advance_expire_delta;
10179 if (delta != S64_MIN) {
10180 trace_kvm_wait_lapic_expire(vcpu->vcpu_id, delta);
10181 vcpu->arch.apic->lapic_timer.advance_expire_delta = S64_MIN;
10182 }
10183 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010184
Paolo Bonzinif2485b32016-06-15 15:23:11 +020010185 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010186 preempt_enable();
10187
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010188 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -030010189
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010190 /*
10191 * Profile KVM exit RIPs:
10192 */
10193 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010194 unsigned long rip = kvm_rip_read(vcpu);
10195 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010196 }
10197
Zachary Amsdencc578282012-02-03 15:43:50 -020010198 if (unlikely(vcpu->arch.tsc_always_catchup))
10199 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +020010200
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +030010201 if (vcpu->arch.apic_attention)
10202 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +020010203
Jason Baronb36464772021-01-14 22:27:56 -050010204 r = static_call(kvm_x86_handle_exit)(vcpu, exit_fastpath);
Michael S. Tsirkind905c062012-06-24 19:25:00 +030010205 return r;
10206
10207cancel_injection:
Sean Christopherson8081ad02020-04-22 19:25:40 -070010208 if (req_immediate_exit)
10209 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -050010210 static_call(kvm_x86_cancel_injection)(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +030010211 if (unlikely(vcpu->arch.apic_attention))
10212 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010213out:
Marcelo Tosattid7690172008-09-08 15:23:48 -030010214 return r;
10215}
10216
Paolo Bonzini362c6982015-02-06 12:48:04 +010010217static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
10218{
Sean Christopherson98c25ea2021-12-08 01:52:17 +000010219 bool hv_timer;
10220
Sean Christophersonc3e8abf2021-12-08 01:52:19 +000010221 if (!kvm_arch_vcpu_runnable(vcpu)) {
Sean Christopherson98c25ea2021-12-08 01:52:17 +000010222 /*
10223 * Switch to the software timer before halt-polling/blocking as
10224 * the guest's timer may be a break event for the vCPU, and the
10225 * hypervisor timer runs only when the CPU is in guest mode.
10226 * Switch before halt-polling so that KVM recognizes an expired
10227 * timer before blocking.
10228 */
10229 hv_timer = kvm_lapic_hv_timer_in_use(vcpu);
10230 if (hv_timer)
10231 kvm_lapic_switch_to_sw_timer(vcpu);
10232
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +010010233 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Sean Christophersoncdafece2021-10-08 19:12:11 -070010234 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
10235 kvm_vcpu_halt(vcpu);
10236 else
10237 kvm_vcpu_block(vcpu);
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +010010238 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010239
Sean Christopherson98c25ea2021-12-08 01:52:17 +000010240 if (hv_timer)
10241 kvm_lapic_switch_to_hv_timer(vcpu);
10242
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +010010243 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
10244 return 1;
10245 }
Gleb Natapov09cec752009-03-23 15:11:44 +020010246
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010247 if (kvm_apic_accept_events(vcpu) < 0)
10248 return 0;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010249 switch(vcpu->arch.mp_state) {
10250 case KVM_MP_STATE_HALTED:
Tom Lendacky647daca2021-01-04 14:20:01 -060010251 case KVM_MP_STATE_AP_RESET_HOLD:
Paolo Bonzini362c6982015-02-06 12:48:04 +010010252 vcpu->arch.pv.pv_unhalted = false;
10253 vcpu->arch.mp_state =
10254 KVM_MP_STATE_RUNNABLE;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050010255 fallthrough;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010256 case KVM_MP_STATE_RUNNABLE:
10257 vcpu->arch.apf.halted = false;
10258 break;
10259 case KVM_MP_STATE_INIT_RECEIVED:
10260 break;
10261 default:
10262 return -EINTR;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010263 }
10264 return 1;
10265}
10266
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010267static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
10268{
Paolo Bonzini56083bd2020-04-17 10:32:53 -040010269 if (is_guest_mode(vcpu))
Sean Christophersoncb6a32c2021-03-02 09:45:14 -080010270 kvm_check_nested_events(vcpu);
Paolo Bonzini0ad3bed2016-12-19 15:23:54 +010010271
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010272 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
10273 !vcpu->arch.apf.halted);
10274}
10275
Paolo Bonzini362c6982015-02-06 12:48:04 +010010276static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -030010277{
10278 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010279 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -030010280
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010281 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Paolo Bonzinic595cee2018-07-02 13:07:14 +020010282 vcpu->arch.l1tf_flush_l1d = true;
Marcelo Tosattid7690172008-09-08 15:23:48 -030010283
Paolo Bonzini362c6982015-02-06 12:48:04 +010010284 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +020010285 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +030010286 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010287 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +010010288 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010289 }
10290
Gleb Natapov09cec752009-03-23 15:11:44 +020010291 if (r <= 0)
10292 break;
10293
Marcelo Tosatti084071d2021-05-25 10:41:17 -030010294 kvm_clear_request(KVM_REQ_UNBLOCK, vcpu);
Gleb Natapov09cec752009-03-23 15:11:44 +020010295 if (kvm_cpu_has_pending_timer(vcpu))
10296 kvm_inject_pending_timer_irqs(vcpu);
10297
Matt Gingell782d4222015-11-16 15:26:00 -080010298 if (dm_request_for_irq_injection(vcpu) &&
10299 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +020010300 r = 0;
10301 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +020010302 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010303 break;
Gleb Natapov09cec752009-03-23 15:11:44 +020010304 }
Gleb Natapovaf585b92010-10-14 11:22:46 +020010305
Thomas Gleixnerf3020b82020-07-30 09:19:01 +020010306 if (__xfer_to_guest_mode_work_pending()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010307 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +020010308 r = xfer_to_guest_mode_handle_work(vcpu);
10309 if (r)
10310 return r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010311 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -030010312 }
10313 }
10314
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010315 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010316
10317 return r;
10318}
10319
Gleb Natapov716d51a2012-09-03 15:24:26 +030010320static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
10321{
10322 int r;
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010323
Gleb Natapov716d51a2012-09-03 15:24:26 +030010324 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Sean Christopherson0ce97a22018-08-23 13:56:52 -070010325 r = kvm_emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
Gleb Natapov716d51a2012-09-03 15:24:26 +030010326 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010327 return r;
Gleb Natapov716d51a2012-09-03 15:24:26 +030010328}
10329
10330static int complete_emulated_pio(struct kvm_vcpu *vcpu)
10331{
10332 BUG_ON(!vcpu->arch.pio.count);
10333
10334 return complete_emulated_io(vcpu);
10335}
10336
Avi Kivityf78146b2012-04-18 19:22:47 +030010337/*
10338 * Implements the following, as a state machine:
10339 *
10340 * read:
10341 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010342 * for each mmio piece in the fragment
10343 * write gpa, len
10344 * exit
10345 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +030010346 * execute insn
10347 *
10348 * write:
10349 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010350 * for each mmio piece in the fragment
10351 * write gpa, len
10352 * copy data
10353 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +030010354 */
Gleb Natapov716d51a2012-09-03 15:24:26 +030010355static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +020010356{
10357 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +030010358 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010359 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +020010360
Gleb Natapov716d51a2012-09-03 15:24:26 +030010361 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +020010362
Gleb Natapov716d51a2012-09-03 15:24:26 +030010363 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010364 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
10365 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +030010366 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010367 memcpy(frag->data, run->mmio.data, len);
10368
10369 if (frag->len <= 8) {
10370 /* Switch to the next fragment. */
10371 frag++;
10372 vcpu->mmio_cur_fragment++;
10373 } else {
10374 /* Go forward to the next mmio piece. */
10375 frag->data += len;
10376 frag->gpa += len;
10377 frag->len -= len;
10378 }
10379
Andrew Honiga08d3b32014-02-27 19:35:14 +010010380 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +030010381 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +020010382
10383 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +020010384 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +030010385 return 1;
10386 vcpu->mmio_read_completed = 1;
10387 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +020010388 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010389
Gleb Natapov716d51a2012-09-03 15:24:26 +030010390 run->exit_reason = KVM_EXIT_MMIO;
10391 run->mmio.phys_addr = frag->gpa;
10392 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010393 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
10394 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +030010395 run->mmio.is_write = vcpu->mmio_is_write;
10396 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
10397 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +020010398}
10399
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +020010400/* Swap (qemu) user FPU context for the guest FPU context. */
10401static void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
10402{
Tom Lendackyed02b212020-12-10 11:10:01 -060010403 /*
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010404 * Exclude PKRU from restore as restored separately in
10405 * kvm_x86_ops.run().
Tom Lendackyed02b212020-12-10 11:10:01 -060010406 */
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010407 fpu_swap_kvm_fpstate(&vcpu->arch.guest_fpu, true);
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +020010408 trace_kvm_fpu(1);
10409}
10410
10411/* When vcpu_run ends, restore user space FPU context. */
10412static void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
10413{
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010414 fpu_swap_kvm_fpstate(&vcpu->arch.guest_fpu, false);
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +020010415 ++vcpu->stat.fpu_reload;
10416 trace_kvm_fpu(0);
10417}
10418
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010419int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010420{
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010421 struct kvm_run *kvm_run = vcpu->run;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010422 int r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010423
Christoffer Dallaccb7572017-12-04 21:35:25 +010010424 vcpu_load(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +010010425 kvm_sigset_activate(vcpu);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +080010426 kvm_run->flags = 0;
Peter Xu5663d8f2017-12-12 17:15:02 +010010427 kvm_load_guest_fpu(vcpu);
10428
Avi Kivityac9f6dc2008-07-06 15:48:31 +030010429 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
Jan H. Schönherr2f173d22017-09-06 18:34:06 +020010430 if (kvm_run->immediate_exit) {
10431 r = -EINTR;
10432 goto out;
10433 }
Sean Christopherson98c25ea2021-12-08 01:52:17 +000010434 /*
10435 * It should be impossible for the hypervisor timer to be in
10436 * use before KVM has ever run the vCPU.
10437 */
10438 WARN_ON_ONCE(kvm_lapic_hv_timer_in_use(vcpu));
Sean Christophersonc91d4492021-10-08 19:12:10 -070010439 kvm_vcpu_block(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010440 if (kvm_apic_accept_events(vcpu) < 0) {
10441 r = 0;
10442 goto out;
10443 }
Radim Krčmář72875d82017-04-26 22:32:19 +020010444 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Avi Kivityac9f6dc2008-07-06 15:48:31 +030010445 r = -EAGAIN;
Jan H. Schönherra0595002017-09-06 00:27:19 +020010446 if (signal_pending(current)) {
10447 r = -EINTR;
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010448 kvm_run->exit_reason = KVM_EXIT_INTR;
Jan H. Schönherra0595002017-09-06 00:27:19 +020010449 ++vcpu->stat.signal_exits;
10450 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +030010451 goto out;
10452 }
10453
Sean Christophersone489a4a2021-07-02 15:04:29 -070010454 if ((kvm_run->kvm_valid_regs & ~KVM_SYNC_X86_VALID_FIELDS) ||
10455 (kvm_run->kvm_dirty_regs & ~KVM_SYNC_X86_VALID_FIELDS)) {
Ken Hofsass01643c52018-01-31 16:03:36 -080010456 r = -EINVAL;
10457 goto out;
10458 }
10459
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010460 if (kvm_run->kvm_dirty_regs) {
Ken Hofsass01643c52018-01-31 16:03:36 -080010461 r = sync_regs(vcpu);
10462 if (r != 0)
10463 goto out;
10464 }
10465
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010466 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +020010467 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +010010468 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
10469 r = -EINVAL;
10470 goto out;
10471 }
10472 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010473
Gleb Natapov716d51a2012-09-03 15:24:26 +030010474 if (unlikely(vcpu->arch.complete_userspace_io)) {
10475 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
10476 vcpu->arch.complete_userspace_io = NULL;
10477 r = cui(vcpu);
10478 if (r <= 0)
Peter Xu5663d8f2017-12-12 17:15:02 +010010479 goto out;
Gleb Natapov716d51a2012-09-03 15:24:26 +030010480 } else
10481 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +020010482
Sean Christophersonfc4fad72021-12-28 23:24:36 +000010483 if (kvm_run->immediate_exit) {
Paolo Bonzini460df4c2017-02-08 11:50:15 +010010484 r = -EINTR;
Sean Christophersonfc4fad72021-12-28 23:24:36 +000010485 goto out;
10486 }
10487
10488 r = static_call(kvm_x86_vcpu_pre_run)(vcpu);
10489 if (r <= 0)
10490 goto out;
10491
10492 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010493
10494out:
Peter Xu5663d8f2017-12-12 17:15:02 +010010495 kvm_put_guest_fpu(vcpu);
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010496 if (kvm_run->kvm_valid_regs)
Ken Hofsass01643c52018-01-31 16:03:36 -080010497 store_regs(vcpu);
Marcelo Tosattif1d86e42010-05-03 23:04:27 -030010498 post_kvm_run_save(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +010010499 kvm_sigset_deactivate(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010500
Christoffer Dallaccb7572017-12-04 21:35:25 +010010501 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010502 return r;
10503}
10504
Ken Hofsass01643c52018-01-31 16:03:36 -080010505static void __get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010506{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010507 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
10508 /*
10509 * We are here if userspace calls get_regs() in the middle of
10510 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +080010511 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010512 * that usually, but some bad designed PV devices (vmware
10513 * backdoor interface) need this to work
10514 */
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010515 emulator_writeback_register_cache(vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010516 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10517 }
Sean Christophersonde3cd112019-04-30 10:36:17 -070010518 regs->rax = kvm_rax_read(vcpu);
10519 regs->rbx = kvm_rbx_read(vcpu);
10520 regs->rcx = kvm_rcx_read(vcpu);
10521 regs->rdx = kvm_rdx_read(vcpu);
10522 regs->rsi = kvm_rsi_read(vcpu);
10523 regs->rdi = kvm_rdi_read(vcpu);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010524 regs->rsp = kvm_rsp_read(vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010525 regs->rbp = kvm_rbp_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010526#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010527 regs->r8 = kvm_r8_read(vcpu);
10528 regs->r9 = kvm_r9_read(vcpu);
10529 regs->r10 = kvm_r10_read(vcpu);
10530 regs->r11 = kvm_r11_read(vcpu);
10531 regs->r12 = kvm_r12_read(vcpu);
10532 regs->r13 = kvm_r13_read(vcpu);
10533 regs->r14 = kvm_r14_read(vcpu);
10534 regs->r15 = kvm_r15_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010535#endif
10536
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010537 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +020010538 regs->rflags = kvm_get_rflags(vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010539}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010540
Ken Hofsass01643c52018-01-31 16:03:36 -080010541int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10542{
10543 vcpu_load(vcpu);
10544 __get_regs(vcpu, regs);
Christoffer Dall1fc9b762017-12-04 21:35:26 +010010545 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010546 return 0;
10547}
10548
Ken Hofsass01643c52018-01-31 16:03:36 -080010549static void __set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010550{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010551 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
10552 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10553
Sean Christophersonde3cd112019-04-30 10:36:17 -070010554 kvm_rax_write(vcpu, regs->rax);
10555 kvm_rbx_write(vcpu, regs->rbx);
10556 kvm_rcx_write(vcpu, regs->rcx);
10557 kvm_rdx_write(vcpu, regs->rdx);
10558 kvm_rsi_write(vcpu, regs->rsi);
10559 kvm_rdi_write(vcpu, regs->rdi);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010560 kvm_rsp_write(vcpu, regs->rsp);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010561 kvm_rbp_write(vcpu, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010562#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010563 kvm_r8_write(vcpu, regs->r8);
10564 kvm_r9_write(vcpu, regs->r9);
10565 kvm_r10_write(vcpu, regs->r10);
10566 kvm_r11_write(vcpu, regs->r11);
10567 kvm_r12_write(vcpu, regs->r12);
10568 kvm_r13_write(vcpu, regs->r13);
10569 kvm_r14_write(vcpu, regs->r14);
10570 kvm_r15_write(vcpu, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010571#endif
10572
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010573 kvm_rip_write(vcpu, regs->rip);
Wanpeng Lid73235d2017-12-07 00:30:08 -080010574 kvm_set_rflags(vcpu, regs->rflags | X86_EFLAGS_FIXED);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010575
Jan Kiszkab4f14ab2008-04-30 17:59:04 +020010576 vcpu->arch.exception.pending = false;
10577
Avi Kivity3842d132010-07-27 12:30:24 +030010578 kvm_make_request(KVM_REQ_EVENT, vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010579}
Avi Kivity3842d132010-07-27 12:30:24 +030010580
Ken Hofsass01643c52018-01-31 16:03:36 -080010581int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10582{
10583 vcpu_load(vcpu);
10584 __set_regs(vcpu, regs);
Christoffer Dall875656f2017-12-04 21:35:27 +010010585 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010586 return 0;
10587}
10588
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010589void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
10590{
10591 struct kvm_segment cs;
10592
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010593 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010594 *db = cs.db;
10595 *l = cs.l;
10596}
10597EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
10598
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010599static void __get_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010600{
Gleb Natapov89a27f42010-02-16 10:51:48 +020010601 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010602
Tom Lendacky52657132020-12-10 11:09:59 -060010603 if (vcpu->arch.guest_state_protected)
10604 goto skip_protected_regs;
10605
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010606 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10607 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10608 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10609 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10610 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10611 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010612
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010613 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10614 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010615
Jason Baronb36464772021-01-14 22:27:56 -050010616 static_call(kvm_x86_get_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010617 sregs->idt.limit = dt.size;
10618 sregs->idt.base = dt.address;
Jason Baronb36464772021-01-14 22:27:56 -050010619 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010620 sregs->gdt.limit = dt.size;
10621 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010622
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010623 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +020010624 sregs->cr3 = kvm_read_cr3(vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010625
10626skip_protected_regs:
10627 sregs->cr0 = kvm_read_cr0(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +020010628 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010629 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +020010630 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010631 sregs->apic_base = kvm_get_apic_base(vcpu);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010632}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010633
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010634static void __get_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10635{
10636 __get_sregs_common(vcpu, sregs);
10637
10638 if (vcpu->arch.guest_state_protected)
10639 return;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010640
Liran Alon04140b42018-03-23 03:01:31 +030010641 if (vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +030010642 set_bit(vcpu->arch.interrupt.nr,
10643 (unsigned long *)sregs->interrupt_bitmap);
Ken Hofsass01643c52018-01-31 16:03:36 -080010644}
Gleb Natapov16d7a192009-04-21 17:45:10 +030010645
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010646static void __get_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10647{
10648 int i;
10649
10650 __get_sregs_common(vcpu, (struct kvm_sregs *)sregs2);
10651
10652 if (vcpu->arch.guest_state_protected)
10653 return;
10654
10655 if (is_pae_paging(vcpu)) {
10656 for (i = 0 ; i < 4 ; i++)
10657 sregs2->pdptrs[i] = kvm_pdptr_read(vcpu, i);
10658 sregs2->flags |= KVM_SREGS2_FLAGS_PDPTRS_VALID;
10659 }
10660}
10661
Ken Hofsass01643c52018-01-31 16:03:36 -080010662int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
10663 struct kvm_sregs *sregs)
10664{
10665 vcpu_load(vcpu);
10666 __get_sregs(vcpu, sregs);
Christoffer Dallbcdec412017-12-04 21:35:28 +010010667 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010668 return 0;
10669}
10670
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010671int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
10672 struct kvm_mp_state *mp_state)
10673{
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010674 int r;
10675
Christoffer Dallfd232562017-12-04 21:35:30 +010010676 vcpu_load(vcpu);
Sean Christophersonf958bd22019-12-09 12:19:31 -080010677 if (kvm_mpx_supported())
10678 kvm_load_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010679
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010680 r = kvm_apic_accept_events(vcpu);
10681 if (r < 0)
10682 goto out;
10683 r = 0;
10684
Tom Lendacky647daca2021-01-04 14:20:01 -060010685 if ((vcpu->arch.mp_state == KVM_MP_STATE_HALTED ||
10686 vcpu->arch.mp_state == KVM_MP_STATE_AP_RESET_HOLD) &&
10687 vcpu->arch.pv.pv_unhalted)
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +053010688 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
10689 else
10690 mp_state->mp_state = vcpu->arch.mp_state;
10691
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010692out:
Sean Christophersonf958bd22019-12-09 12:19:31 -080010693 if (kvm_mpx_supported())
10694 kvm_put_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010695 vcpu_put(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010696 return r;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010697}
10698
10699int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
10700 struct kvm_mp_state *mp_state)
10701{
Christoffer Dalle83dff52017-12-04 21:35:31 +010010702 int ret = -EINVAL;
10703
10704 vcpu_load(vcpu);
10705
Paolo Bonzinibce87cc2016-01-08 13:48:51 +010010706 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +010010707 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
Christoffer Dalle83dff52017-12-04 21:35:31 +010010708 goto out;
Jan Kiszka66450a22013-03-13 12:42:34 +010010709
Liran Alon27cbe7d2019-11-11 11:16:40 +020010710 /*
10711 * KVM_MP_STATE_INIT_RECEIVED means the processor is in
10712 * INIT state; latched init should be reported using
10713 * KVM_SET_VCPU_EVENTS, so reject it here.
10714 */
10715 if ((kvm_vcpu_latch_init(vcpu) || vcpu->arch.smi_pending) &&
David Hildenbrand28bf2882017-03-23 11:46:03 +010010716 (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED ||
10717 mp_state->mp_state == KVM_MP_STATE_INIT_RECEIVED))
Christoffer Dalle83dff52017-12-04 21:35:31 +010010718 goto out;
David Hildenbrand28bf2882017-03-23 11:46:03 +010010719
Jan Kiszka66450a22013-03-13 12:42:34 +010010720 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
10721 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
10722 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
10723 } else
10724 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +030010725 kvm_make_request(KVM_REQ_EVENT, vcpu);
Christoffer Dalle83dff52017-12-04 21:35:31 +010010726
10727 ret = 0;
10728out:
10729 vcpu_put(vcpu);
10730 return ret;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010731}
10732
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010733int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
10734 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010735{
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010736 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010737 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010738
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010739 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +020010740
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010741 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010742 has_error_code, error_code);
Sean Christopherson10517782019-08-27 14:40:35 -070010743 if (ret) {
10744 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
10745 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
10746 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010747 return 0;
Sean Christopherson10517782019-08-27 14:40:35 -070010748 }
Gleb Natapovc6975182010-02-18 12:15:01 +020010749
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010750 kvm_rip_write(vcpu, ctxt->eip);
10751 kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010752 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +020010753}
10754EXPORT_SYMBOL_GPL(kvm_task_switch);
10755
Sean Christophersonee69c922020-10-06 18:44:16 -070010756static bool kvm_is_valid_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Lan Tianyuf2981032017-12-14 03:01:52 -050010757{
Tianyu Lan37b95952018-01-16 17:34:07 +080010758 if ((sregs->efer & EFER_LME) && (sregs->cr0 & X86_CR0_PG)) {
Lan Tianyuf2981032017-12-14 03:01:52 -050010759 /*
10760 * When EFER.LME and CR0.PG are set, the processor is in
10761 * 64-bit mode (though maybe in a 32-bit code segment).
10762 * CR4.PAE and EFER.LMA must be set.
10763 */
Sean Christophersonee69c922020-10-06 18:44:16 -070010764 if (!(sregs->cr4 & X86_CR4_PAE) || !(sregs->efer & EFER_LMA))
10765 return false;
Sean Christophersonca29e142021-02-03 16:01:12 -080010766 if (kvm_vcpu_is_illegal_gpa(vcpu, sregs->cr3))
Paolo Bonzinic1c35cf2020-11-13 08:30:38 -050010767 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010768 } else {
10769 /*
10770 * Not in 64-bit mode: EFER.LMA is clear and the code
10771 * segment cannot be 64-bit.
10772 */
10773 if (sregs->efer & EFER_LMA || sregs->cs.l)
Sean Christophersonee69c922020-10-06 18:44:16 -070010774 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010775 }
10776
Sean Christophersonee69c922020-10-06 18:44:16 -070010777 return kvm_is_valid_cr4(vcpu, sregs->cr4);
Lan Tianyuf2981032017-12-14 03:01:52 -050010778}
10779
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010780static int __set_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs,
10781 int *mmu_reset_needed, bool update_pdptrs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010782{
Jan Kiszka58cb6282014-01-24 16:48:44 +010010783 struct msr_data apic_base_msr;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010784 int idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +020010785 struct desc_ptr dt;
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010786
Sean Christophersonee69c922020-10-06 18:44:16 -070010787 if (!kvm_is_valid_sregs(vcpu, sregs))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010788 return -EINVAL;
Lan Tianyuf2981032017-12-14 03:01:52 -050010789
Jim Mattsond3802282017-08-10 10:14:13 -070010790 apic_base_msr.data = sregs->apic_base;
10791 apic_base_msr.host_initiated = true;
10792 if (kvm_set_apic_base(vcpu, &apic_base_msr))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010793 return -EINVAL;
Petr Matousek6d1068b2012-11-06 19:24:07 +010010794
Tom Lendacky52657132020-12-10 11:09:59 -060010795 if (vcpu->arch.guest_state_protected)
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010796 return 0;
Tom Lendacky52657132020-12-10 11:09:59 -060010797
Gleb Natapov89a27f42010-02-16 10:51:48 +020010798 dt.size = sregs->idt.limit;
10799 dt.address = sregs->idt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010800 static_call(kvm_x86_set_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010801 dt.size = sregs->gdt.limit;
10802 dt.address = sregs->gdt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010803 static_call(kvm_x86_set_gdt)(vcpu, &dt);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010804
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010805 vcpu->arch.cr2 = sregs->cr2;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010806 *mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +020010807 vcpu->arch.cr3 = sregs->cr3;
Lai Jiangshan3883bc9d2021-11-08 20:44:02 +080010808 kvm_register_mark_dirty(vcpu, VCPU_EXREG_CR3);
Michael Roth405329f2021-12-16 11:13:54 -060010809 static_call_cond(kvm_x86_post_set_cr3)(vcpu, sregs->cr3);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010810
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010811 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010812
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010813 *mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Jason Baronb36464772021-01-14 22:27:56 -050010814 static_call(kvm_x86_set_efer)(vcpu, sregs->efer);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010815
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010816 *mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Jason Baronb36464772021-01-14 22:27:56 -050010817 static_call(kvm_x86_set_cr0)(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +000010818 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010819
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010820 *mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Jason Baronb36464772021-01-14 22:27:56 -050010821 static_call(kvm_x86_set_cr4)(vcpu, sregs->cr4);
Xiao Guangrong63f42e02011-01-12 15:39:18 +080010822
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010823 if (update_pdptrs) {
10824 idx = srcu_read_lock(&vcpu->kvm->srcu);
10825 if (is_pae_paging(vcpu)) {
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +080010826 load_pdptrs(vcpu, kvm_read_cr3(vcpu));
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010827 *mmu_reset_needed = 1;
10828 }
10829 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Marcelo Tosatti7c93be442009-10-26 16:48:33 -020010830 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010831
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010832 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10833 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10834 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10835 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10836 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10837 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010838
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010839 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10840 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010841
Mikhail Ershov5f0269f2009-08-03 14:58:25 +030010842 update_cr8_intercept(vcpu);
10843
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010844 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +030010845 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010846 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +020010847 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010848 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10849
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010850 return 0;
10851}
10852
10853static int __set_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10854{
10855 int pending_vec, max_bits;
10856 int mmu_reset_needed = 0;
10857 int ret = __set_sregs_common(vcpu, sregs, &mmu_reset_needed, true);
10858
10859 if (ret)
10860 return ret;
10861
10862 if (mmu_reset_needed)
10863 kvm_mmu_reset_context(vcpu);
10864
Tom Lendacky52657132020-12-10 11:09:59 -060010865 max_bits = KVM_NR_INTERRUPTS;
10866 pending_vec = find_first_bit(
10867 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010868
Tom Lendacky52657132020-12-10 11:09:59 -060010869 if (pending_vec < max_bits) {
10870 kvm_queue_interrupt(vcpu, pending_vec, false);
10871 pr_debug("Set back pending irq %d\n", pending_vec);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010872 kvm_make_request(KVM_REQ_EVENT, vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010873 }
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010874 return 0;
10875}
Tom Lendacky52657132020-12-10 11:09:59 -060010876
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010877static int __set_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10878{
10879 int mmu_reset_needed = 0;
10880 bool valid_pdptrs = sregs2->flags & KVM_SREGS2_FLAGS_PDPTRS_VALID;
10881 bool pae = (sregs2->cr0 & X86_CR0_PG) && (sregs2->cr4 & X86_CR4_PAE) &&
10882 !(sregs2->efer & EFER_LMA);
10883 int i, ret;
Avi Kivity3842d132010-07-27 12:30:24 +030010884
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010885 if (sregs2->flags & ~KVM_SREGS2_FLAGS_PDPTRS_VALID)
10886 return -EINVAL;
10887
10888 if (valid_pdptrs && (!pae || vcpu->arch.guest_state_protected))
10889 return -EINVAL;
10890
10891 ret = __set_sregs_common(vcpu, (struct kvm_sregs *)sregs2,
10892 &mmu_reset_needed, !valid_pdptrs);
10893 if (ret)
10894 return ret;
10895
10896 if (valid_pdptrs) {
10897 for (i = 0; i < 4 ; i++)
10898 kvm_pdptr_write(vcpu, i, sregs2->pdptrs[i]);
10899
10900 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
10901 mmu_reset_needed = 1;
Maxim Levitsky158a48e2021-06-07 12:02:03 +030010902 vcpu->arch.pdptrs_from_userspace = true;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010903 }
10904 if (mmu_reset_needed)
10905 kvm_mmu_reset_context(vcpu);
10906 return 0;
Ken Hofsass01643c52018-01-31 16:03:36 -080010907}
10908
10909int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
10910 struct kvm_sregs *sregs)
10911{
10912 int ret;
10913
10914 vcpu_load(vcpu);
10915 ret = __set_sregs(vcpu, sregs);
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010916 vcpu_put(vcpu);
10917 return ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010918}
10919
Maxim Levitskycae72dc2021-11-08 11:02:45 +020010920static void kvm_arch_vcpu_guestdbg_update_apicv_inhibit(struct kvm *kvm)
10921{
10922 bool inhibit = false;
10923 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +000010924 unsigned long i;
Maxim Levitskycae72dc2021-11-08 11:02:45 +020010925
10926 down_write(&kvm->arch.apicv_update_lock);
10927
10928 kvm_for_each_vcpu(i, vcpu, kvm) {
10929 if (vcpu->guest_debug & KVM_GUESTDBG_BLOCKIRQ) {
10930 inhibit = true;
10931 break;
10932 }
10933 }
10934 __kvm_request_apicv_update(kvm, !inhibit, APICV_INHIBIT_REASON_BLOCKIRQ);
10935 up_write(&kvm->arch.apicv_update_lock);
10936}
10937
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010938int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
10939 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010940{
Jan Kiszka355be0b2009-10-03 00:31:21 +020010941 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010942 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010943
Tom Lendacky8d4846b2020-12-10 11:09:43 -060010944 if (vcpu->arch.guest_state_protected)
10945 return -EINVAL;
10946
Christoffer Dall66b56562017-12-04 21:35:33 +010010947 vcpu_load(vcpu);
10948
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010949 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
10950 r = -EBUSY;
10951 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +030010952 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010953 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
10954 kvm_queue_exception(vcpu, DB_VECTOR);
10955 else
10956 kvm_queue_exception(vcpu, BP_VECTOR);
10957 }
10958
Jan Kiszka91586a32009-10-05 13:07:21 +020010959 /*
10960 * Read rflags as long as potentially injected trace flags are still
10961 * filtered out.
10962 */
10963 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010964
10965 vcpu->guest_debug = dbg->control;
10966 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
10967 vcpu->guest_debug = 0;
10968
10969 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010970 for (i = 0; i < KVM_NR_DB_REGS; ++i)
10971 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +020010972 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010973 } else {
10974 for (i = 0; i < KVM_NR_DB_REGS; i++)
10975 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010976 }
Jan Kiszkac8639012012-09-21 05:42:55 +020010977 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010978
Jan Kiszkaf92653e2010-02-23 17:47:55 +010010979 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Yuan Yaoe87e46d2021-05-26 14:38:28 +080010980 vcpu->arch.singlestep_rip = kvm_get_linear_rip(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010981
Jan Kiszka91586a32009-10-05 13:07:21 +020010982 /*
10983 * Trigger an rflags update that will inject or remove the trace
10984 * flags.
10985 */
10986 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010987
Jason Baronb36464772021-01-14 22:27:56 -050010988 static_call(kvm_x86_update_exception_bitmap)(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010989
Maxim Levitskycae72dc2021-11-08 11:02:45 +020010990 kvm_arch_vcpu_guestdbg_update_apicv_inhibit(vcpu->kvm);
10991
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010992 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010993
Avi Kivity2122ff52010-05-13 11:25:04 +030010994out:
Christoffer Dall66b56562017-12-04 21:35:33 +010010995 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010996 return r;
10997}
10998
10999/*
Zhang Xiantao8b006792007-11-16 13:05:55 +080011000 * Translate a guest virtual address to a guest physical address.
11001 */
11002int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
11003 struct kvm_translation *tr)
11004{
11005 unsigned long vaddr = tr->linear_address;
11006 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020011007 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +080011008
Christoffer Dall1da5b612017-12-04 21:35:32 +010011009 vcpu_load(vcpu);
11010
Marcelo Tosattif656ce02009-12-23 14:35:25 -020011011 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +020011012 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -020011013 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +080011014 tr->physical_address = gpa;
11015 tr->valid = gpa != UNMAPPED_GVA;
11016 tr->writeable = 1;
11017 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +080011018
Christoffer Dall1da5b612017-12-04 21:35:32 +010011019 vcpu_put(vcpu);
Zhang Xiantao8b006792007-11-16 13:05:55 +080011020 return 0;
11021}
11022
Hollis Blanchardd0752062007-10-31 17:24:25 -050011023int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
11024{
Christoffer Dall13931232017-12-04 21:35:34 +010011025 struct fxregs_state *fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050011026
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011027 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
Tom Lendackyed02b212020-12-10 11:10:01 -060011028 return 0;
11029
Christoffer Dall13931232017-12-04 21:35:34 +010011030 vcpu_load(vcpu);
11031
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011032 fxsave = &vcpu->arch.guest_fpu.fpstate->regs.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050011033 memcpy(fpu->fpr, fxsave->st_space, 128);
11034 fpu->fcw = fxsave->cwd;
11035 fpu->fsw = fxsave->swd;
11036 fpu->ftwx = fxsave->twd;
11037 fpu->last_opcode = fxsave->fop;
11038 fpu->last_ip = fxsave->rip;
11039 fpu->last_dp = fxsave->rdp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000011040 memcpy(fpu->xmm, fxsave->xmm_space, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050011041
Christoffer Dall13931232017-12-04 21:35:34 +010011042 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050011043 return 0;
11044}
11045
11046int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
11047{
Christoffer Dall6a96bc72017-12-04 21:35:35 +010011048 struct fxregs_state *fxsave;
11049
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011050 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
Tom Lendackyed02b212020-12-10 11:10:01 -060011051 return 0;
11052
Christoffer Dall6a96bc72017-12-04 21:35:35 +010011053 vcpu_load(vcpu);
11054
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011055 fxsave = &vcpu->arch.guest_fpu.fpstate->regs.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050011056
Hollis Blanchardd0752062007-10-31 17:24:25 -050011057 memcpy(fxsave->st_space, fpu->fpr, 128);
11058 fxsave->cwd = fpu->fcw;
11059 fxsave->swd = fpu->fsw;
11060 fxsave->twd = fpu->ftwx;
11061 fxsave->fop = fpu->last_opcode;
11062 fxsave->rip = fpu->last_ip;
11063 fxsave->rdp = fpu->last_dp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000011064 memcpy(fxsave->xmm_space, fpu->xmm, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050011065
Christoffer Dall6a96bc72017-12-04 21:35:35 +010011066 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050011067 return 0;
11068}
11069
Ken Hofsass01643c52018-01-31 16:03:36 -080011070static void store_regs(struct kvm_vcpu *vcpu)
11071{
11072 BUILD_BUG_ON(sizeof(struct kvm_sync_regs) > SYNC_REGS_SIZE_BYTES);
11073
11074 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_REGS)
11075 __get_regs(vcpu, &vcpu->run->s.regs.regs);
11076
11077 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_SREGS)
11078 __get_sregs(vcpu, &vcpu->run->s.regs.sregs);
11079
11080 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_EVENTS)
11081 kvm_vcpu_ioctl_x86_get_vcpu_events(
11082 vcpu, &vcpu->run->s.regs.events);
11083}
11084
11085static int sync_regs(struct kvm_vcpu *vcpu)
11086{
Ken Hofsass01643c52018-01-31 16:03:36 -080011087 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_REGS) {
11088 __set_regs(vcpu, &vcpu->run->s.regs.regs);
11089 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_REGS;
11090 }
11091 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_SREGS) {
11092 if (__set_sregs(vcpu, &vcpu->run->s.regs.sregs))
11093 return -EINVAL;
11094 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_SREGS;
11095 }
11096 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_EVENTS) {
11097 if (kvm_vcpu_ioctl_x86_set_vcpu_events(
11098 vcpu, &vcpu->run->s.regs.events))
11099 return -EINVAL;
11100 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_EVENTS;
11101 }
11102
11103 return 0;
11104}
11105
Sean Christopherson897cc382019-12-18 13:55:09 -080011106int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011107{
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010011108 if (kvm_check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
Sean Christopherson897cc382019-12-18 13:55:09 -080011109 pr_warn_once("kvm: SMP vm created on host with unstable TSC; "
11110 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +080011111
Sean Christopherson897cc382019-12-18 13:55:09 -080011112 return 0;
Avi Kivity26e52152007-11-20 15:30:24 +020011113}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011114
Sean Christophersone529ef62019-12-18 13:55:15 -080011115int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
Avi Kivity26e52152007-11-20 15:30:24 +020011116{
Sean Christopherson95a0d012019-12-18 13:55:23 -080011117 struct page *page;
11118 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011119
Sean Christopherson63f5a192021-06-22 10:56:52 -070011120 vcpu->arch.last_vmentry_cpu = -1;
Sean Christopherson71170032021-09-20 17:02:54 -070011121 vcpu->arch.regs_avail = ~0;
11122 vcpu->arch.regs_dirty = ~0;
Sean Christopherson63f5a192021-06-22 10:56:52 -070011123
Sean Christopherson95a0d012019-12-18 13:55:23 -080011124 if (!irqchip_in_kernel(vcpu->kvm) || kvm_vcpu_is_reset_bsp(vcpu))
11125 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
11126 else
11127 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
11128
Sean Christopherson95a0d012019-12-18 13:55:23 -080011129 r = kvm_mmu_create(vcpu);
11130 if (r < 0)
11131 return r;
11132
11133 if (irqchip_in_kernel(vcpu->kvm)) {
Sean Christopherson95a0d012019-12-18 13:55:23 -080011134 r = kvm_create_lapic(vcpu, lapic_timer_advance_ns);
11135 if (r < 0)
11136 goto fail_mmu_destroy;
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -060011137 if (kvm_apicv_activated(vcpu->kvm))
11138 vcpu->arch.apicv_active = true;
Sean Christopherson95a0d012019-12-18 13:55:23 -080011139 } else
Cun Li6e4e3b42021-01-11 23:24:35 +080011140 static_branch_inc(&kvm_has_noapic_vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011141
11142 r = -ENOMEM;
11143
Shakeel Butt93bb59c2020-12-18 14:01:38 -080011144 page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011145 if (!page)
11146 goto fail_free_lapic;
11147 vcpu->arch.pio_data = page_address(page);
11148
11149 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
11150 GFP_KERNEL_ACCOUNT);
11151 if (!vcpu->arch.mce_banks)
11152 goto fail_free_pio_data;
11153 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
11154
11155 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask,
11156 GFP_KERNEL_ACCOUNT))
11157 goto fail_free_mce_banks;
11158
Sean Christophersonc9b8b072020-02-18 15:29:48 -080011159 if (!alloc_emulate_ctxt(vcpu))
11160 goto free_wbinvd_dirty_mask;
11161
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011162 if (!fpu_alloc_guest_fpstate(&vcpu->arch.guest_fpu)) {
11163 pr_err("kvm: failed to allocate vcpu's fpu\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -080011164 goto free_emulate_ctxt;
Sean Christopherson95a0d012019-12-18 13:55:23 -080011165 }
11166
Sean Christopherson95a0d012019-12-18 13:55:23 -080011167 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
Sean Christophersona8ac8642021-02-03 16:01:15 -080011168 vcpu->arch.reserved_gpa_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011169
11170 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
11171
11172 kvm_async_pf_hash_reset(vcpu);
11173 kvm_pmu_init(vcpu);
11174
11175 vcpu->arch.pending_external_vector = -1;
11176 vcpu->arch.preempted_in_kernel = false;
11177
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000011178#if IS_ENABLED(CONFIG_HYPERV)
11179 vcpu->arch.hv_root_tdp = INVALID_PAGE;
11180#endif
11181
Jason Baronb36464772021-01-14 22:27:56 -050011182 r = static_call(kvm_x86_vcpu_create)(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011183 if (r)
11184 goto free_guest_fpu;
Sean Christopherson5f73db12019-12-18 13:55:18 -080011185
Sean Christopherson0cf91352019-03-07 15:43:02 -080011186 vcpu->arch.arch_capabilities = kvm_get_arch_capabilities();
Jim Mattsone53d88af2018-10-30 12:20:21 -070011187 vcpu->arch.msr_platform_info = MSR_PLATFORM_INFO_CPUID_FAULT;
Xiao Guangrong19efffa2015-06-15 16:55:31 +080011188 kvm_vcpu_mtrr_init(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010011189 vcpu_load(vcpu);
Ilias Stamatis1ab92872021-06-07 11:54:38 +010011190 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Nadav Amitd28bc9d2015-04-13 14:34:08 +030011191 kvm_vcpu_reset(vcpu, false);
Sean Christophersonc9060662021-06-09 16:42:33 -070011192 kvm_init_mmu(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011193 vcpu_put(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010011194 return 0;
Sean Christopherson95a0d012019-12-18 13:55:23 -080011195
11196free_guest_fpu:
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011197 fpu_free_guest_fpstate(&vcpu->arch.guest_fpu);
Sean Christophersonc9b8b072020-02-18 15:29:48 -080011198free_emulate_ctxt:
11199 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011200free_wbinvd_dirty_mask:
11201 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
11202fail_free_mce_banks:
11203 kfree(vcpu->arch.mce_banks);
11204fail_free_pio_data:
11205 free_page((unsigned long)vcpu->arch.pio_data);
11206fail_free_lapic:
11207 kvm_free_lapic(vcpu);
11208fail_mmu_destroy:
11209 kvm_mmu_destroy(vcpu);
11210 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011211}
11212
Dominik Dingel31928aa2014-12-04 15:47:07 +010011213void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011214{
Andrew Jones332967a2014-02-28 12:52:55 +010011215 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011216
Christoffer Dallec7660c2017-12-04 21:35:23 +010011217 if (mutex_lock_killable(&vcpu->mutex))
Dominik Dingel31928aa2014-12-04 15:47:07 +010011218 return;
Christoffer Dallec7660c2017-12-04 21:35:23 +010011219 vcpu_load(vcpu);
Paolo Bonzini0c899c22020-09-24 14:45:27 +020011220 kvm_synchronize_tsc(vcpu, 0);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011221 vcpu_put(vcpu);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030011222
11223 /* poll control enabled by default */
11224 vcpu->arch.msr_kvm_poll_control = 1;
11225
Christoffer Dallec7660c2017-12-04 21:35:23 +010011226 mutex_unlock(&vcpu->mutex);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011227
Wanpeng Lib34de572020-02-28 11:18:41 +080011228 if (kvmclock_periodic_sync && vcpu->vcpu_idx == 0)
11229 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
11230 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011231}
11232
Hollis Blanchardd40ccc62007-11-19 14:04:43 -060011233void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011234{
Sean Christopherson95a0d012019-12-18 13:55:23 -080011235 int idx;
Gleb Natapov344d9582010-10-14 11:22:50 +020011236
Sean Christopherson50b143e2019-12-18 13:55:07 -080011237 kvmclock_reset(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011238
Jason Baronb36464772021-01-14 22:27:56 -050011239 static_call(kvm_x86_vcpu_free)(vcpu);
Sean Christopherson50b143e2019-12-18 13:55:07 -080011240
Sean Christophersonc9b8b072020-02-18 15:29:48 -080011241 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson50b143e2019-12-18 13:55:07 -080011242 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011243 fpu_free_guest_fpstate(&vcpu->arch.guest_fpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011244
11245 kvm_hv_vcpu_uninit(vcpu);
11246 kvm_pmu_destroy(vcpu);
11247 kfree(vcpu->arch.mce_banks);
11248 kvm_free_lapic(vcpu);
11249 idx = srcu_read_lock(&vcpu->kvm->srcu);
11250 kvm_mmu_destroy(vcpu);
11251 srcu_read_unlock(&vcpu->kvm->srcu, idx);
11252 free_page((unsigned long)vcpu->arch.pio_data);
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +020011253 kvfree(vcpu->arch.cpuid_entries);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011254 if (!lapic_in_kernel(vcpu))
Cun Li6e4e3b42021-01-11 23:24:35 +080011255 static_branch_dec(&kvm_has_noapic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011256}
11257
Nadav Amitd28bc9d2015-04-13 14:34:08 +030011258void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011259{
Sean Christopherson25b97842021-09-29 15:24:26 -070011260 struct kvm_cpuid_entry2 *cpuid_0x1;
Sean Christopherson0aa18372021-06-22 10:56:48 -070011261 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Sean Christopherson4c72ab52021-07-13 09:33:24 -070011262 unsigned long new_cr0;
Sean Christopherson0aa18372021-06-22 10:56:48 -070011263
Sean Christopherson62dd57d2021-09-20 17:03:03 -070011264 /*
11265 * Several of the "set" flows, e.g. ->set_cr0(), read other registers
11266 * to handle side effects. RESET emulation hits those flows and relies
11267 * on emulated/virtualized registers, including those that are loaded
11268 * into hardware, to be zeroed at vCPU creation. Use CRs as a sentinel
11269 * to detect improper or missing initialization.
11270 */
11271 WARN_ON_ONCE(!init_event &&
11272 (old_cr0 || kvm_read_cr3(vcpu) || kvm_read_cr4(vcpu)));
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011273
Radim Krčmářb7e31be2018-03-01 15:24:25 +010011274 kvm_lapic_reset(vcpu, init_event);
11275
Paolo Bonzinie69fab52015-06-04 10:44:44 +020011276 vcpu->arch.hflags = 0;
11277
Paolo Bonzinic43203c2016-06-01 22:26:00 +020011278 vcpu->arch.smi_pending = 0;
Liran Alon52797bf2017-11-15 13:43:14 +020011279 vcpu->arch.smi_count = 0;
Avi Kivity7460fb4a2011-09-20 13:43:14 +030011280 atomic_set(&vcpu->arch.nmi_queued, 0);
11281 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +020011282 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +030011283 kvm_clear_interrupt_queue(vcpu);
11284 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +020011285
Jan Kiszka42dbaa52008-12-15 13:52:10 +010011286 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +030011287 kvm_update_dr0123(vcpu);
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +080011288 vcpu->arch.dr6 = DR6_ACTIVE_LOW;
Jan Kiszka42dbaa52008-12-15 13:52:10 +010011289 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +020011290 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +010011291
Nadav Amit11190222015-04-02 03:10:38 +030011292 vcpu->arch.cr2 = 0;
11293
Avi Kivity3842d132010-07-27 12:30:24 +030011294 kvm_make_request(KVM_REQ_EVENT, vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011295 vcpu->arch.apf.msr_en_val = 0;
11296 vcpu->arch.apf.msr_int_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -040011297 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +030011298
Glauber Costa12f9a482011-02-01 14:16:40 -050011299 kvmclock_reset(vcpu);
11300
Gleb Natapovaf585b92010-10-14 11:22:46 +020011301 kvm_clear_async_pf_completion_queue(vcpu);
11302 kvm_async_pf_hash_reset(vcpu);
11303 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011304
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011305 if (vcpu->arch.guest_fpu.fpstate && kvm_mpx_supported()) {
11306 struct fpstate *fpstate = vcpu->arch.guest_fpu.fpstate;
Wanpeng Lia554d202017-10-11 05:10:19 -070011307
11308 /*
11309 * To avoid have the INIT path from kvm_apic_has_events() that be
11310 * called with loaded FPU and does not let userspace fix the state.
11311 */
Rik van Rielf775b132017-11-14 16:54:23 -050011312 if (init_event)
11313 kvm_put_guest_fpu(vcpu);
Thomas Gleixner087df482021-10-13 16:55:31 +020011314
11315 fpstate_clear_xstate_component(fpstate, XFEATURE_BNDREGS);
11316 fpstate_clear_xstate_component(fpstate, XFEATURE_BNDCSR);
11317
Rik van Rielf775b132017-11-14 16:54:23 -050011318 if (init_event)
11319 kvm_load_guest_fpu(vcpu);
Wanpeng Lia554d202017-10-11 05:10:19 -070011320 }
11321
Paolo Bonzini64d60672015-05-07 11:36:11 +020011322 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +030011323 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +020011324 vcpu->arch.smbase = 0x30000;
Kyle Hueydb2336a2017-03-20 01:16:28 -070011325
Kyle Hueydb2336a2017-03-20 01:16:28 -070011326 vcpu->arch.msr_misc_features_enables = 0;
Wanpeng Lia554d202017-10-11 05:10:19 -070011327
Like Xu05a9e062022-01-26 17:22:26 +000011328 __kvm_set_xcr(vcpu, 0, XFEATURE_MASK_FP);
11329 __kvm_set_msr(vcpu, MSR_IA32_XSS, 0, true);
Paolo Bonzini64d60672015-05-07 11:36:11 +020011330 }
Gleb Natapovf5132b02011-11-10 14:57:22 +020011331
Sean Christophersonff8828c2021-09-20 17:02:56 -070011332 /* All GPRs except RDX (handled below) are zeroed on RESET/INIT. */
Julian Stecklina66f7b722012-12-05 15:26:19 +010011333 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
Sean Christophersonff8828c2021-09-20 17:02:56 -070011334 kvm_register_mark_dirty(vcpu, VCPU_REGS_RSP);
Julian Stecklina66f7b722012-12-05 15:26:19 +010011335
Sean Christopherson49d86652021-07-13 09:32:57 -070011336 /*
11337 * Fall back to KVM's default Family/Model/Stepping of 0x600 (P6/Athlon)
11338 * if no CPUID match is found. Note, it's impossible to get a match at
11339 * RESET since KVM emulates RESET before exposing the vCPU to userspace,
Sean Christopherson25b97842021-09-29 15:24:26 -070011340 * i.e. it's impossible for kvm_find_cpuid_entry() to find a valid entry
11341 * on RESET. But, go through the motions in case that's ever remedied.
Sean Christopherson49d86652021-07-13 09:32:57 -070011342 */
Sean Christopherson25b97842021-09-29 15:24:26 -070011343 cpuid_0x1 = kvm_find_cpuid_entry(vcpu, 1, 0);
11344 kvm_rdx_write(vcpu, cpuid_0x1 ? cpuid_0x1->eax : 0x600);
Sean Christopherson49d86652021-07-13 09:32:57 -070011345
Jason Baronb36464772021-01-14 22:27:56 -050011346 static_call(kvm_x86_vcpu_reset)(vcpu, init_event);
Sean Christopherson0aa18372021-06-22 10:56:48 -070011347
Sean Christophersonf39e8052021-07-13 09:33:14 -070011348 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
11349 kvm_rip_write(vcpu, 0xfff0);
11350
Sean Christopherson03a6e842021-09-20 17:02:55 -070011351 vcpu->arch.cr3 = 0;
11352 kvm_register_mark_dirty(vcpu, VCPU_EXREG_CR3);
11353
Sean Christopherson4c72ab52021-07-13 09:33:24 -070011354 /*
11355 * CR0.CD/NW are set on RESET, preserved on INIT. Note, some versions
11356 * of Intel's SDM list CD/NW as being set on INIT, but they contradict
11357 * (or qualify) that with a footnote stating that CD/NW are preserved.
11358 */
11359 new_cr0 = X86_CR0_ET;
11360 if (init_event)
11361 new_cr0 |= (old_cr0 & (X86_CR0_NW | X86_CR0_CD));
11362 else
11363 new_cr0 |= X86_CR0_NW | X86_CR0_CD;
11364
11365 static_call(kvm_x86_set_cr0)(vcpu, new_cr0);
Sean Christophersonf39e8052021-07-13 09:33:14 -070011366 static_call(kvm_x86_set_cr4)(vcpu, 0);
11367 static_call(kvm_x86_set_efer)(vcpu, 0);
11368 static_call(kvm_x86_update_exception_bitmap)(vcpu);
11369
Sean Christopherson0aa18372021-06-22 10:56:48 -070011370 /*
11371 * Reset the MMU context if paging was enabled prior to INIT (which is
11372 * implied if CR0.PG=1 as CR0 will be '0' prior to RESET). Unlike the
11373 * standard CR0/CR4/EFER modification paths, only CR0.PG needs to be
11374 * checked because it is unconditionally cleared on INIT and all other
11375 * paging related bits are ignored if paging is disabled, i.e. CR0.WP,
11376 * CR4, and EFER changes are all irrelevant if CR0.PG was '0'.
11377 */
11378 if (old_cr0 & X86_CR0_PG)
11379 kvm_mmu_reset_context(vcpu);
Sean Christophersondf37ed32021-07-13 09:32:39 -070011380
11381 /*
11382 * Intel's SDM states that all TLB entries are flushed on INIT. AMD's
11383 * APM states the TLBs are untouched by INIT, but it also states that
11384 * the TLBs are flushed on "External initialization of the processor."
11385 * Flush the guest TLB regardless of vendor, there is no meaningful
11386 * benefit in relying on the guest to flush the TLB immediately after
11387 * INIT. A spurious TLB flush is benign and likely negligible from a
11388 * performance perspective.
11389 */
11390 if (init_event)
11391 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011392}
Sean Christopherson265e4352021-07-13 09:33:22 -070011393EXPORT_SYMBOL_GPL(kvm_vcpu_reset);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011394
Paolo Bonzini2b4a2732014-11-24 14:35:24 +010011395void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +010011396{
11397 struct kvm_segment cs;
11398
11399 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
11400 cs.selector = vector << 8;
11401 cs.base = vector << 12;
11402 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
11403 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011404}
Tom Lendacky647daca2021-01-04 14:20:01 -060011405EXPORT_SYMBOL_GPL(kvm_vcpu_deliver_sipi_vector);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011406
Radim Krčmář13a34e02014-08-28 15:13:03 +020011407int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011408{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -100011409 struct kvm *kvm;
11410 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +000011411 unsigned long i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011412 int ret;
11413 u64 local_tsc;
11414 u64 max_tsc = 0;
11415 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +030011416
Sean Christopherson7e34fbd2020-09-23 11:03:55 -070011417 kvm_user_return_msr_cpu_online();
Jason Baronb36464772021-01-14 22:27:56 -050011418 ret = static_call(kvm_x86_hardware_enable)();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011419 if (ret != 0)
11420 return ret;
11421
Andy Lutomirski4ea16362015-06-25 18:44:07 +020011422 local_tsc = rdtsc();
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010011423 stable = !kvm_check_tsc_unstable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011424 list_for_each_entry(kvm, &vm_list, vm_list) {
11425 kvm_for_each_vcpu(i, vcpu, kvm) {
11426 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +080011427 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011428 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
11429 backwards_tsc = true;
11430 if (vcpu->arch.last_host_tsc > max_tsc)
11431 max_tsc = vcpu->arch.last_host_tsc;
11432 }
11433 }
11434 }
11435
11436 /*
11437 * Sometimes, even reliable TSCs go backwards. This happens on
11438 * platforms that reset TSC during suspend or hibernate actions, but
11439 * maintain synchronization. We must compensate. Fortunately, we can
11440 * detect that condition here, which happens early in CPU bringup,
11441 * before any KVM threads can be running. Unfortunately, we can't
11442 * bring the TSCs fully up to date with real time, as we aren't yet far
11443 * enough into CPU bringup that we know how much real time has actually
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020011444 * elapsed; our helper function, ktime_get_boottime_ns() will be using boot
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011445 * variables that haven't been updated yet.
11446 *
11447 * So we simply find the maximum observed TSC above, then record the
11448 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
11449 * the adjustment will be applied. Note that we accumulate
11450 * adjustments, in case multiple suspend cycles happen before some VCPU
11451 * gets a chance to run again. In the event that no KVM threads get a
11452 * chance to run, we will miss the entire elapsed period, as we'll have
11453 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
11454 * loose cycle time. This isn't too big a deal, since the loss will be
11455 * uniform across all VCPUs (not to mention the scenario is extremely
11456 * unlikely). It is possible that a second hibernate recovery happens
11457 * much faster than a first, causing the observed TSC here to be
11458 * smaller; this would require additional padding adjustment, which is
11459 * why we set last_host_tsc to the local tsc observed here.
11460 *
11461 * N.B. - this code below runs only on platforms with reliable TSC,
11462 * as that is the only way backwards_tsc is set above. Also note
11463 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
11464 * have the same delta_cyc adjustment applied if backwards_tsc
11465 * is detected. Note further, this adjustment is only done once,
11466 * as we reset last_host_tsc on all VCPUs to stop this from being
11467 * called multiple times (one for each physical CPU bringup).
11468 *
Guo Chao4a969982012-06-28 15:17:27 +080011469 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011470 * will be compensated by the logic in vcpu_load, which sets the TSC to
11471 * catchup mode. This will catchup all VCPUs to real time, but cannot
11472 * guarantee that they stay in perfect synchronization.
11473 */
11474 if (backwards_tsc) {
11475 u64 delta_cyc = max_tsc - local_tsc;
11476 list_for_each_entry(kvm, &vm_list, vm_list) {
Ladi Proseka826faf2017-06-26 09:56:43 +020011477 kvm->arch.backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011478 kvm_for_each_vcpu(i, vcpu, kvm) {
11479 vcpu->arch.tsc_offset_adjustment += delta_cyc;
11480 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +080011481 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011482 }
11483
11484 /*
11485 * We have to disable TSC offset matching.. if you were
11486 * booting a VM while issuing an S4 host suspend....
11487 * you may have some problem. Solving this issue is
11488 * left as an exercise to the reader.
11489 */
11490 kvm->arch.last_tsc_nsec = 0;
11491 kvm->arch.last_tsc_write = 0;
11492 }
11493
11494 }
11495 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011496}
11497
Radim Krčmář13a34e02014-08-28 15:13:03 +020011498void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011499{
Jason Baronb36464772021-01-14 22:27:56 -050011500 static_call(kvm_x86_hardware_disable)();
Radim Krčmář13a34e02014-08-28 15:13:03 +020011501 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011502}
11503
Sean Christophersonb9904082020-03-21 13:25:55 -070011504int kvm_arch_hardware_setup(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011505{
Sean Christophersond008dfd2020-03-21 13:25:56 -070011506 struct kvm_x86_init_ops *ops = opaque;
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011507 int r;
11508
Sean Christopherson91661982020-03-02 15:57:06 -080011509 rdmsrl_safe(MSR_EFER, &host_efer);
11510
Paolo Bonzini408e9a32020-03-05 16:11:56 +010011511 if (boot_cpu_has(X86_FEATURE_XSAVES))
11512 rdmsrl(MSR_IA32_XSS, host_xss);
11513
Sean Christophersond008dfd2020-03-21 13:25:56 -070011514 r = ops->hardware_setup();
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011515 if (r != 0)
11516 return r;
11517
Sean Christophersonafaf0b22020-03-21 13:26:00 -070011518 memcpy(&kvm_x86_ops, ops->runtime_ops, sizeof(kvm_x86_ops));
Jason Baronb36464772021-01-14 22:27:56 -050011519 kvm_ops_static_call_update();
Sean Christopherson69c6f692020-03-21 13:25:59 -070011520
Paolo Bonzini408e9a32020-03-05 16:11:56 +010011521 if (!kvm_cpu_cap_has(X86_FEATURE_XSAVES))
11522 supported_xss = 0;
11523
Paolo Bonzini139f7422020-05-05 09:40:46 -040011524#define __kvm_cpu_cap_has(UNUSED_, f) kvm_cpu_cap_has(f)
11525 cr4_reserved_bits = __cr4_reserved_bits(__kvm_cpu_cap_has, UNUSED_);
11526#undef __kvm_cpu_cap_has
Sean Christophersonb11306b2019-12-10 14:44:13 -080011527
Haozhong Zhang35181e82015-10-20 15:39:03 +080011528 if (kvm_has_tsc_control) {
11529 /*
11530 * Make sure the user can only configure tsc_khz values that
11531 * fit into a signed integer.
Marcelo Tosatti273ba452018-06-11 14:12:10 -030011532 * A min value is not calculated because it will always
Haozhong Zhang35181e82015-10-20 15:39:03 +080011533 * be 1 on all machines.
11534 */
11535 u64 max = min(0x7fffffffULL,
11536 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
11537 kvm_max_guest_tsc_khz = max;
11538
Haozhong Zhangad7218832015-10-20 15:39:02 +080011539 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +080011540 }
Haozhong Zhangad7218832015-10-20 15:39:02 +080011541
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011542 kvm_init_msr_list();
11543 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011544}
11545
11546void kvm_arch_hardware_unsetup(void)
11547{
Jason Baronb36464772021-01-14 22:27:56 -050011548 static_call(kvm_x86_hardware_unsetup)();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011549}
11550
Sean Christophersonb9904082020-03-21 13:25:55 -070011551int kvm_arch_check_processor_compat(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011552{
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011553 struct cpuinfo_x86 *c = &cpu_data(smp_processor_id());
Sean Christophersond008dfd2020-03-21 13:25:56 -070011554 struct kvm_x86_init_ops *ops = opaque;
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011555
11556 WARN_ON(!irqs_disabled());
11557
Paolo Bonzini139f7422020-05-05 09:40:46 -040011558 if (__cr4_reserved_bits(cpu_has, c) !=
11559 __cr4_reserved_bits(cpu_has, &boot_cpu_data))
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011560 return -EIO;
11561
Sean Christophersond008dfd2020-03-21 13:25:56 -070011562 return ops->check_processor_compatibility();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011563}
11564
Paolo Bonzinid71ba782015-07-29 11:56:48 +020011565bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
11566{
11567 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
11568}
11569EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
11570
11571bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
11572{
11573 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
11574}
11575
Cun Li6e4e3b42021-01-11 23:24:35 +080011576__read_mostly DEFINE_STATIC_KEY_FALSE(kvm_has_noapic_vcpu);
11577EXPORT_SYMBOL_GPL(kvm_has_noapic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +030011578
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011579void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
11580{
Like Xub35e5542019-10-27 18:52:43 +080011581 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
11582
Paolo Bonzinic595cee2018-07-02 13:07:14 +020011583 vcpu->arch.l1tf_flush_l1d = true;
Like Xub35e5542019-10-27 18:52:43 +080011584 if (pmu->version && unlikely(pmu->event_count)) {
11585 pmu->need_cleanup = true;
11586 kvm_make_request(KVM_REQ_PMU, vcpu);
11587 }
Jason Baronb36464772021-01-14 22:27:56 -050011588 static_call(kvm_x86_sched_in)(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011589}
11590
Sean Christopherson562b6b02020-01-26 16:41:13 -080011591void kvm_arch_free_vm(struct kvm *kvm)
11592{
Vitaly Kuznetsov05f04ae2021-01-26 14:48:09 +010011593 kfree(to_kvm_hv(kvm)->hv_pa_pg);
Juergen Gross78b497f2021-09-03 15:08:05 +020011594 __kvm_arch_free_vm(kvm);
Sean Christopherson562b6b02020-01-26 16:41:13 -080011595}
11596
11597
Carsten Ottee08b9632012-01-04 10:25:20 +010011598int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011599{
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011600 int ret;
Paolo Bonzini869b4422021-09-16 18:15:36 +000011601 unsigned long flags;
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011602
Carsten Ottee08b9632012-01-04 10:25:20 +010011603 if (type)
11604 return -EINVAL;
11605
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011606 ret = kvm_page_track_init(kvm);
11607 if (ret)
11608 return ret;
11609
Paolo Bonzini6ef768f2014-11-20 13:45:31 +010011610 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +080011611 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Sean Christopherson10605202019-09-12 19:46:10 -070011612 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011613 INIT_LIST_HEAD(&kvm->arch.lpage_disallowed_mmu_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030011614 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060011615 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011616
Sheng Yang5550af42008-10-15 20:15:06 +080011617 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
11618 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -060011619 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
11620 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
11621 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +080011622
Jan Kiszka038f8c12011-02-04 10:49:11 +010011623 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +030011624 mutex_init(&kvm->arch.apic_map_lock);
Paolo Bonzini869b4422021-09-16 18:15:36 +000011625 seqcount_raw_spinlock_init(&kvm->arch.pvclock_sc, &kvm->arch.tsc_write_lock);
Paolo Bonzini8171cd62020-01-22 14:36:09 +010011626 kvm->arch.kvmclock_offset = -get_kvmclock_base_ns();
Paolo Bonzini869b4422021-09-16 18:15:36 +000011627
11628 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattid8281992012-11-27 23:29:01 -020011629 pvclock_update_vm_gtod_copy(kvm);
Paolo Bonzini869b4422021-09-16 18:15:36 +000011630 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +010011631
Drew Schmitt6fbbde92018-08-20 10:32:15 -070011632 kvm->arch.guest_can_read_msr_platform_info = true;
11633
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000011634#if IS_ENABLED(CONFIG_HYPERV)
11635 spin_lock_init(&kvm->arch.hv_root_tdp_lock);
11636 kvm->arch.hv_root_tdp = INVALID_PAGE;
11637#endif
11638
Andrew Jones7e44e442014-02-28 12:52:54 +010011639 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +010011640 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +010011641
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +020011642 kvm_apicv_init(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011643 kvm_hv_init_vm(kvm);
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011644 kvm_mmu_init_vm(kvm);
Paolo Bonzini319afe62021-08-04 12:48:41 -040011645 kvm_xen_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +080011646
Jason Baronb36464772021-01-14 22:27:56 -050011647 return static_call(kvm_x86_vm_init)(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011648}
11649
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011650int kvm_arch_post_init_vm(struct kvm *kvm)
11651{
11652 return kvm_mmu_post_init_vm(kvm);
11653}
11654
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011655static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
11656{
Christoffer Dallec7660c2017-12-04 21:35:23 +010011657 vcpu_load(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011658 kvm_mmu_unload(vcpu);
11659 vcpu_put(vcpu);
11660}
11661
11662static void kvm_free_vcpus(struct kvm *kvm)
11663{
Marc Zyngier46808a42021-11-16 16:04:02 +000011664 unsigned long i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011665 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011666
11667 /*
11668 * Unpin any mmu pages first.
11669 */
Gleb Natapovaf585b92010-10-14 11:22:46 +020011670 kvm_for_each_vcpu(i, vcpu, kvm) {
11671 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011672 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011673 }
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011674
Marc Zyngier27592ae2021-11-16 16:03:57 +000011675 kvm_destroy_vcpus(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011676}
11677
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011678void kvm_arch_sync_events(struct kvm *kvm)
11679{
Andrew Jones332967a2014-02-28 12:52:55 +010011680 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +010011681 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Xiao Guangrongaea924f2010-07-10 17:37:56 +080011682 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011683}
11684
Peter Xuff5a9832020-09-30 21:20:33 -040011685#define ERR_PTR_USR(e) ((void __user *)ERR_PTR(e))
11686
11687/**
11688 * __x86_set_memory_region: Setup KVM internal memory slot
11689 *
11690 * @kvm: the kvm pointer to the VM.
11691 * @id: the slot ID to setup.
11692 * @gpa: the GPA to install the slot (unused when @size == 0).
11693 * @size: the size of the slot. Set to zero to uninstall a slot.
11694 *
11695 * This function helps to setup a KVM internal memory slot. Specify
11696 * @size > 0 to install a new slot, while @size == 0 to uninstall a
11697 * slot. The return code can be one of the following:
11698 *
11699 * HVA: on success (uninstall will return a bogus HVA)
11700 * -errno: on error
11701 *
11702 * The caller should always use IS_ERR() to check the return value
11703 * before use. Note, the KVM internal memory slots are guaranteed to
11704 * remain valid and unchanged until the VM is destroyed, i.e., the
11705 * GPA->HVA translation will not change. However, the HVA is a user
11706 * address, i.e. its accessibility is not guaranteed, and must be
11707 * accessed via __copy_{to,from}_user().
11708 */
11709void __user * __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa,
11710 u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011711{
11712 int i, r;
Kees Cook3f649ab2020-06-03 13:09:38 -070011713 unsigned long hva, old_npages;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011714 struct kvm_memslots *slots = kvm_memslots(kvm);
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011715 struct kvm_memory_slot *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011716
11717 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011718 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
Peter Xuff5a9832020-09-30 21:20:33 -040011719 return ERR_PTR_USR(-EINVAL);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011720
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011721 slot = id_to_memslot(slots, id);
11722 if (size) {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011723 if (slot && slot->npages)
Peter Xuff5a9832020-09-30 21:20:33 -040011724 return ERR_PTR_USR(-EEXIST);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011725
11726 /*
11727 * MAP_SHARED to prevent internal slot pages from being moved
11728 * by fork()/COW.
11729 */
11730 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
11731 MAP_SHARED | MAP_ANONYMOUS, 0);
11732 if (IS_ERR((void *)hva))
Peter Xuff5a9832020-09-30 21:20:33 -040011733 return (void __user *)hva;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011734 } else {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011735 if (!slot || !slot->npages)
Muhammad Usama Anjum46914532021-03-05 23:08:16 +050011736 return NULL;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011737
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011738 old_npages = slot->npages;
Zheng Zhan Liangb66f9ba2021-02-01 13:53:10 +080011739 hva = slot->userspace_addr;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011740 }
11741
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011742 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011743 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011744
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011745 m.slot = id | (i << 16);
11746 m.flags = 0;
11747 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011748 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011749 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011750 r = __kvm_set_memory_region(kvm, &m);
11751 if (r < 0)
Peter Xuff5a9832020-09-30 21:20:33 -040011752 return ERR_PTR_USR(r);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011753 }
11754
Eric Biggers103c7632018-01-31 17:30:21 -080011755 if (!size)
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011756 vm_munmap(hva, old_npages * PAGE_SIZE);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011757
Peter Xuff5a9832020-09-30 21:20:33 -040011758 return (void __user *)hva;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011759}
11760EXPORT_SYMBOL_GPL(__x86_set_memory_region);
11761
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011762void kvm_arch_pre_destroy_vm(struct kvm *kvm)
11763{
11764 kvm_mmu_pre_destroy_vm(kvm);
11765}
11766
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011767void kvm_arch_destroy_vm(struct kvm *kvm)
11768{
Andrew Honig27469d22013-04-18 09:38:14 -070011769 if (current->mm == kvm->mm) {
11770 /*
11771 * Free memory regions allocated on behalf of userspace,
11772 * unless the the memory map has changed due to process exit
11773 * or fd copying.
11774 */
Peter Xu6a3c6232020-01-09 09:57:16 -050011775 mutex_lock(&kvm->slots_lock);
11776 __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
11777 0, 0);
11778 __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
11779 0, 0);
11780 __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
11781 mutex_unlock(&kvm->slots_lock);
Andrew Honig27469d22013-04-18 09:38:14 -070011782 }
Jason Baronb36464772021-01-14 22:27:56 -050011783 static_call_cond(kvm_x86_vm_destroy)(kvm);
Sean Christophersonb318e8d2021-03-16 11:44:33 -070011784 kvm_free_msr_filter(srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1));
Peter Xuc7611592017-03-15 16:01:19 +080011785 kvm_pic_destroy(kvm);
11786 kvm_ioapic_destroy(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011787 kvm_free_vcpus(kvm);
Radim Krčmářaf1bae52016-07-12 22:09:30 +020011788 kvfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Eric Hankland66bb8a02019-07-10 18:25:15 -070011789 kfree(srcu_dereference_check(kvm->arch.pmu_event_filter, &kvm->srcu, 1));
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011790 kvm_mmu_uninit_vm(kvm);
Paolo Bonzini2beb6dad2017-03-27 17:53:50 +020011791 kvm_page_track_cleanup(kvm);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +000011792 kvm_xen_destroy_vm(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011793 kvm_hv_destroy_vm(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011794}
Zhang Xiantao0de10342007-11-20 16:25:04 +080011795
Ben Gardonc9b929b2021-05-18 10:34:08 -070011796static void memslot_rmap_free(struct kvm_memory_slot *slot)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011797{
11798 int i;
11799
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011800 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011801 kvfree(slot->arch.rmap[i]);
11802 slot->arch.rmap[i] = NULL;
Ben Gardonc9b929b2021-05-18 10:34:08 -070011803 }
11804}
Sean Christophersone96c81e2020-02-18 13:07:27 -080011805
Ben Gardonc9b929b2021-05-18 10:34:08 -070011806void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
11807{
11808 int i;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011809
Ben Gardonc9b929b2021-05-18 10:34:08 -070011810 memslot_rmap_free(slot);
11811
11812 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011813 kvfree(slot->arch.lpage_info[i - 1]);
11814 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011815 }
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011816
Sean Christophersone96c81e2020-02-18 13:07:27 -080011817 kvm_page_track_free_memslot(slot);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011818}
11819
David Stevens1e76a3c2021-10-15 12:30:21 -040011820int memslot_rmap_alloc(struct kvm_memory_slot *slot, unsigned long npages)
Ben Gardon56dd1012021-05-18 10:34:09 -070011821{
11822 const int sz = sizeof(*slot->arch.rmap[0]);
11823 int i;
11824
11825 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
11826 int level = i + 1;
Peter Xu4139b192021-07-30 18:04:51 -040011827 int lpages = __kvm_mmu_slot_lpages(slot, npages, level);
Ben Gardon56dd1012021-05-18 10:34:09 -070011828
Paolo Bonzinifa138432021-10-15 13:05:00 -040011829 if (slot->arch.rmap[i])
11830 continue;
Ben Gardond501f742021-05-18 10:34:14 -070011831
Ben Gardon56dd1012021-05-18 10:34:09 -070011832 slot->arch.rmap[i] = kvcalloc(lpages, sz, GFP_KERNEL_ACCOUNT);
11833 if (!slot->arch.rmap[i]) {
11834 memslot_rmap_free(slot);
11835 return -ENOMEM;
11836 }
11837 }
11838
11839 return 0;
11840}
11841
Ben Gardona2557402021-05-18 10:34:12 -070011842static int kvm_alloc_memslot_metadata(struct kvm *kvm,
Sean Christopherson9d7d18e2021-12-06 20:54:16 +010011843 struct kvm_memory_slot *slot)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011844{
Sean Christopherson9d7d18e2021-12-06 20:54:16 +010011845 unsigned long npages = slot->npages;
Ben Gardon56dd1012021-05-18 10:34:09 -070011846 int i, r;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011847
Sean Christophersonedd4fa32020-02-18 13:07:15 -080011848 /*
11849 * Clear out the previous array pointers for the KVM_MR_MOVE case. The
11850 * old arrays will be freed by __kvm_set_memory_region() if installing
11851 * the new memslot is successful.
11852 */
11853 memset(&slot->arch, 0, sizeof(slot->arch));
11854
Ben Gardone2209712021-05-18 10:34:13 -070011855 if (kvm_memslots_have_rmaps(kvm)) {
Ben Gardona2557402021-05-18 10:34:12 -070011856 r = memslot_rmap_alloc(slot, npages);
11857 if (r)
11858 return r;
11859 }
Ben Gardon56dd1012021-05-18 10:34:09 -070011860
11861 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011862 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011863 unsigned long ugfn;
11864 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011865 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011866
Peter Xu4139b192021-07-30 18:04:51 -040011867 lpages = __kvm_mmu_slot_lpages(slot, npages, level);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011868
Ben Gardon254272c2019-02-11 11:02:50 -080011869 linfo = kvcalloc(lpages, sizeof(*linfo), GFP_KERNEL_ACCOUNT);
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011870 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011871 goto out_free;
11872
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011873 slot->arch.lpage_info[i - 1] = linfo;
11874
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011875 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011876 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011877 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011878 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011879 ugfn = slot->userspace_addr >> PAGE_SHIFT;
11880 /*
11881 * If the gfn and userspace address are not aligned wrt each
Sean Christopherson600087b2020-03-02 15:57:05 -080011882 * other, disable large page support for this slot.
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011883 */
Sean Christopherson600087b2020-03-02 15:57:05 -080011884 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1)) {
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011885 unsigned long j;
11886
11887 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011888 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011889 }
11890 }
11891
David Stevensdeae4a12021-09-22 13:58:59 +090011892 if (kvm_page_track_create_memslot(kvm, slot, npages))
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011893 goto out_free;
11894
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011895 return 0;
11896
11897out_free:
Ben Gardonc9b929b2021-05-18 10:34:08 -070011898 memslot_rmap_free(slot);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011899
Ben Gardonc9b929b2021-05-18 10:34:08 -070011900 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +010011901 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011902 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011903 }
11904 return -ENOMEM;
11905}
11906
Sean Christopherson15248252019-02-05 12:54:17 -080011907void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011908{
Boris Ostrovsky91724812019-12-05 01:30:51 +000011909 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +000011910 unsigned long i;
Boris Ostrovsky91724812019-12-05 01:30:51 +000011911
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +090011912 /*
11913 * memslots->generation has been incremented.
11914 * mmio generation may have reached its maximum value.
11915 */
Sean Christopherson15248252019-02-05 12:54:17 -080011916 kvm_mmu_invalidate_mmio_sptes(kvm, gen);
Boris Ostrovsky91724812019-12-05 01:30:51 +000011917
11918 /* Force re-initialization of steal_time cache */
11919 kvm_for_each_vcpu(i, vcpu, kvm)
11920 kvm_vcpu_kick(vcpu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011921}
11922
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011923int kvm_arch_prepare_memory_region(struct kvm *kvm,
Sean Christopherson537a17b2021-12-06 20:54:11 +010011924 const struct kvm_memory_slot *old,
11925 struct kvm_memory_slot *new,
11926 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +080011927{
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011928 if (change == KVM_MR_CREATE || change == KVM_MR_MOVE)
Sean Christopherson9d7d18e2021-12-06 20:54:16 +010011929 return kvm_alloc_memslot_metadata(kvm, new);
Sean Christopherson537a17b2021-12-06 20:54:11 +010011930
11931 if (change == KVM_MR_FLAGS_ONLY)
11932 memcpy(&new->arch, &old->arch, sizeof(old->arch));
11933 else if (WARN_ON_ONCE(change != KVM_MR_DELETE))
11934 return -EIO;
11935
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011936 return 0;
11937}
11938
Makarand Sonarea85863c2021-02-12 16:50:12 -080011939
11940static void kvm_mmu_update_cpu_dirty_logging(struct kvm *kvm, bool enable)
11941{
11942 struct kvm_arch *ka = &kvm->arch;
11943
11944 if (!kvm_x86_ops.cpu_dirty_log_size)
11945 return;
11946
11947 if ((enable && ++ka->cpu_dirty_logging_count == 1) ||
11948 (!enable && --ka->cpu_dirty_logging_count == 0))
11949 kvm_make_all_cpus_request(kvm, KVM_REQ_UPDATE_CPU_DIRTY_LOGGING);
11950
11951 WARN_ON_ONCE(ka->cpu_dirty_logging_count < 0);
11952}
11953
Kai Huang88178fd2015-01-28 10:54:27 +080011954static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
Anthony Yznaga37416792020-06-02 13:07:30 -070011955 struct kvm_memory_slot *old,
Hamza Mahfooz269e9552021-07-12 22:33:38 -040011956 const struct kvm_memory_slot *new,
Anthony Yznaga37416792020-06-02 13:07:30 -070011957 enum kvm_mr_change change)
Kai Huang88178fd2015-01-28 10:54:27 +080011958{
Sean Christopherson77aedf22021-12-06 20:54:20 +010011959 u32 old_flags = old ? old->flags : 0;
11960 u32 new_flags = new ? new->flags : 0;
11961 bool log_dirty_pages = new_flags & KVM_MEM_LOG_DIRTY_PAGES;
Makarand Sonarea85863c2021-02-12 16:50:12 -080011962
Anthony Yznaga37416792020-06-02 13:07:30 -070011963 /*
Makarand Sonarea85863c2021-02-12 16:50:12 -080011964 * Update CPU dirty logging if dirty logging is being toggled. This
11965 * applies to all operations.
11966 */
Sean Christopherson77aedf22021-12-06 20:54:20 +010011967 if ((old_flags ^ new_flags) & KVM_MEM_LOG_DIRTY_PAGES)
Makarand Sonarea85863c2021-02-12 16:50:12 -080011968 kvm_mmu_update_cpu_dirty_logging(kvm, log_dirty_pages);
11969
11970 /*
11971 * Nothing more to do for RO slots (which can't be dirtied and can't be
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011972 * made writable) or CREATE/MOVE/DELETE of a slot.
11973 *
11974 * For a memslot with dirty logging disabled:
11975 * CREATE: No dirty mappings will already exist.
11976 * MOVE/DELETE: The old mappings will already have been cleaned up by
11977 * kvm_arch_flush_shadow_memslot()
11978 *
11979 * For a memslot with dirty logging enabled:
11980 * CREATE: No shadow pages exist, thus nothing to write-protect
11981 * and no dirty bits to clear.
11982 * MOVE/DELETE: The old mappings will already have been cleaned up by
11983 * kvm_arch_flush_shadow_memslot().
Anthony Yznaga37416792020-06-02 13:07:30 -070011984 */
Sean Christopherson77aedf22021-12-06 20:54:20 +010011985 if ((change != KVM_MR_FLAGS_ONLY) || (new_flags & KVM_MEM_READONLY))
Kai Huang88178fd2015-01-28 10:54:27 +080011986 return;
Kai Huang88178fd2015-01-28 10:54:27 +080011987
11988 /*
Sean Christopherson52f460792021-02-12 16:50:11 -080011989 * READONLY and non-flags changes were filtered out above, and the only
11990 * other flag is LOG_DIRTY_PAGES, i.e. something is wrong if dirty
11991 * logging isn't being toggled on or off.
Anthony Yznaga37416792020-06-02 13:07:30 -070011992 */
Sean Christopherson77aedf22021-12-06 20:54:20 +010011993 if (WARN_ON_ONCE(!((old_flags ^ new_flags) & KVM_MEM_LOG_DIRTY_PAGES)))
Sean Christopherson52f460792021-02-12 16:50:11 -080011994 return;
11995
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011996 if (!log_dirty_pages) {
11997 /*
11998 * Dirty logging tracks sptes in 4k granularity, meaning that
11999 * large sptes have to be split. If live migration succeeds,
12000 * the guest in the source machine will be destroyed and large
12001 * sptes will be created in the destination. However, if the
12002 * guest continues to run in the source machine (for example if
12003 * live migration fails), small sptes will remain around and
12004 * cause bad performance.
12005 *
12006 * Scan sptes if dirty logging has been stopped, dropping those
12007 * which can be collapsed into a single large-page spte. Later
12008 * page faults will create the large-page sptes.
12009 */
Anthony Yznaga37416792020-06-02 13:07:30 -070012010 kvm_mmu_zap_collapsible_sptes(kvm, new);
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080012011 } else {
Keqian Zhu89212912021-04-29 11:41:15 +080012012 /*
12013 * Initially-all-set does not require write protecting any page,
12014 * because they're all assumed to be dirty.
12015 */
12016 if (kvm_dirty_log_manual_protect_and_init_set(kvm))
12017 return;
Anthony Yznaga37416792020-06-02 13:07:30 -070012018
Sean Christophersona018eba2021-02-12 16:50:10 -080012019 if (kvm_x86_ops.cpu_dirty_log_size) {
Keqian Zhu89212912021-04-29 11:41:15 +080012020 kvm_mmu_slot_leaf_clear_dirty(kvm, new);
12021 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_2M);
12022 } else {
12023 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_4K);
Jay Zhou3c9bd402020-02-27 09:32:27 +080012024 }
Kai Huang88178fd2015-01-28 10:54:27 +080012025 }
12026}
12027
Marcelo Tosattif7784b82009-12-23 14:35:18 -020012028void kvm_arch_commit_memory_region(struct kvm *kvm,
Sean Christopherson9d4c1972020-02-18 13:07:24 -080012029 struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +020012030 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +090012031 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -020012032{
Maciej S. Szmigieroe0c2b632021-12-06 20:54:23 +010012033 if (!kvm->arch.n_requested_mmu_pages &&
Maciej S. Szmigierof5756022021-12-06 20:54:24 +010012034 (change == KVM_MR_CREATE || change == KVM_MR_DELETE)) {
12035 unsigned long nr_mmu_pages;
12036
12037 nr_mmu_pages = kvm->nr_memslot_pages / KVM_MEMSLOT_PAGES_TO_MMU_PAGES_RATIO;
12038 nr_mmu_pages = max(nr_mmu_pages, KVM_MIN_ALLOC_MMU_PAGES);
12039 kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages);
12040 }
Kai Huang1c91cad42015-01-28 10:54:26 +080012041
Hamza Mahfooz269e9552021-07-12 22:33:38 -040012042 kvm_mmu_slot_apply_flags(kvm, old, new, change);
Sean Christopherson21198842020-02-18 13:07:25 -080012043
12044 /* Free the arrays associated with the old memslot. */
12045 if (change == KVM_MR_MOVE)
Sean Christophersone96c81e2020-02-18 13:07:27 -080012046 kvm_arch_free_memslot(kvm, old);
Zhang Xiantao0de10342007-11-20 16:25:04 +080012047}
Zhang Xiantao1d737c82007-12-14 09:35:10 +080012048
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030012049void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030012050{
Sean Christopherson7390de12019-02-05 13:01:31 -080012051 kvm_mmu_zap_all(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030012052}
12053
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030012054void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
12055 struct kvm_memory_slot *slot)
12056{
Xiaoguang Chenae7cd872016-10-09 15:41:44 +080012057 kvm_page_track_flush_slot(kvm, slot);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030012058}
12059
Liran Alone6c67d82018-09-04 10:56:52 +030012060static inline bool kvm_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
12061{
12062 return (is_guest_mode(vcpu) &&
Sean Christophersonafaf0b22020-03-21 13:26:00 -070012063 kvm_x86_ops.guest_apic_has_interrupt &&
Jason Baronb36464772021-01-14 22:27:56 -050012064 static_call(kvm_x86_guest_apic_has_interrupt)(vcpu));
Liran Alone6c67d82018-09-04 10:56:52 +030012065}
12066
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020012067static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
12068{
12069 if (!list_empty_careful(&vcpu->async_pf.done))
12070 return true;
12071
12072 if (kvm_apic_has_events(vcpu))
12073 return true;
12074
12075 if (vcpu->arch.pv.pv_unhalted)
12076 return true;
12077
Wanpeng Lia5f01f82017-09-13 04:04:01 -070012078 if (vcpu->arch.exception.pending)
12079 return true;
12080
ZhuangYanying47a66ee2017-05-26 13:16:48 +080012081 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
12082 (vcpu->arch.nmi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050012083 static_call(kvm_x86_nmi_allowed)(vcpu, false)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020012084 return true;
12085
ZhuangYanying47a66ee2017-05-26 13:16:48 +080012086 if (kvm_test_request(KVM_REQ_SMI, vcpu) ||
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -040012087 (vcpu->arch.smi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050012088 static_call(kvm_x86_smi_allowed)(vcpu, false)))
Paolo Bonzini73917732015-10-13 10:19:35 +020012089 return true;
12090
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020012091 if (kvm_arch_interrupt_allowed(vcpu) &&
Liran Alone6c67d82018-09-04 10:56:52 +030012092 (kvm_cpu_has_interrupt(vcpu) ||
12093 kvm_guest_apic_has_interrupt(vcpu)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020012094 return true;
12095
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +030012096 if (kvm_hv_has_stimer_pending(vcpu))
12097 return true;
12098
Sean Christophersond2060bd2020-04-22 19:25:39 -070012099 if (is_guest_mode(vcpu) &&
12100 kvm_x86_ops.nested_ops->hv_timer_pending &&
12101 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
12102 return true;
12103
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020012104 return false;
12105}
12106
Zhang Xiantao1d737c82007-12-14 09:35:10 +080012107int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
12108{
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020012109 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +080012110}
Zhang Xiantao57361992007-12-17 14:21:40 +080012111
Haiwei Li10dbdf92021-04-21 11:25:13 +080012112bool kvm_arch_dy_has_pending_interrupt(struct kvm_vcpu *vcpu)
12113{
12114 if (vcpu->arch.apicv_active && static_call(kvm_x86_dy_apicv_has_pending_interrupt)(vcpu))
12115 return true;
12116
12117 return false;
12118}
12119
Wanpeng Li17e433b2019-08-05 10:03:19 +080012120bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
12121{
12122 if (READ_ONCE(vcpu->arch.pv.pv_unhalted))
12123 return true;
12124
12125 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
12126 kvm_test_request(KVM_REQ_SMI, vcpu) ||
12127 kvm_test_request(KVM_REQ_EVENT, vcpu))
12128 return true;
12129
Haiwei Li10dbdf92021-04-21 11:25:13 +080012130 return kvm_arch_dy_has_pending_interrupt(vcpu);
Wanpeng Li17e433b2019-08-05 10:03:19 +080012131}
12132
Longpeng(Mike)199b5762017-08-08 12:05:32 +080012133bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
12134{
Wanpeng Lib86bb112021-04-22 16:34:19 +080012135 if (vcpu->arch.guest_state_protected)
12136 return true;
12137
Longpeng(Mike)de63ad42017-08-08 12:05:33 +080012138 return vcpu->arch.preempted_in_kernel;
Longpeng(Mike)199b5762017-08-08 12:05:32 +080012139}
12140
Christoffer Dallb6d33832012-03-08 16:44:24 -050012141int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +080012142{
Christoffer Dallb6d33832012-03-08 16:44:24 -050012143 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +080012144}
Gleb Natapov78646122009-03-23 12:12:11 +020012145
12146int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
12147{
Jason Baronb36464772021-01-14 22:27:56 -050012148 return static_call(kvm_x86_interrupt_allowed)(vcpu, false);
Gleb Natapov78646122009-03-23 12:12:11 +020012149}
Marcelo Tosatti229456f2009-06-17 09:22:14 -030012150
Nadav Amit82b32772014-11-02 11:54:45 +020012151unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
12152{
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012153 /* Can't read the RIP when guest state is protected, just return 0 */
12154 if (vcpu->arch.guest_state_protected)
12155 return 0;
12156
Nadav Amit82b32772014-11-02 11:54:45 +020012157 if (is_64_bit_mode(vcpu))
12158 return kvm_rip_read(vcpu);
12159 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
12160 kvm_rip_read(vcpu));
12161}
12162EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
12163
Jan Kiszkaf92653e2010-02-23 17:47:55 +010012164bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
12165{
Nadav Amit82b32772014-11-02 11:54:45 +020012166 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +010012167}
12168EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
12169
Jan Kiszka94fe45d2009-10-18 13:24:44 +020012170unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
12171{
12172 unsigned long rflags;
12173
Jason Baronb36464772021-01-14 22:27:56 -050012174 rflags = static_call(kvm_x86_get_rflags)(vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020012175 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +010012176 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +020012177 return rflags;
12178}
12179EXPORT_SYMBOL_GPL(kvm_get_rflags);
12180
Paolo Bonzini6addfc42014-03-27 11:29:28 +010012181static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +020012182{
12183 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +010012184 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +010012185 rflags |= X86_EFLAGS_TF;
Jason Baronb36464772021-01-14 22:27:56 -050012186 static_call(kvm_x86_set_rflags)(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +010012187}
12188
12189void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
12190{
12191 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +030012192 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020012193}
12194EXPORT_SYMBOL_GPL(kvm_set_rflags);
12195
Gleb Natapov56028d02010-10-17 18:13:42 +020012196void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
12197{
12198 int r;
12199
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020012200 if ((vcpu->arch.mmu->direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +080012201 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +020012202 return;
12203
12204 r = kvm_mmu_reload(vcpu);
12205 if (unlikely(r))
12206 return;
12207
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020012208 if (!vcpu->arch.mmu->direct_map &&
Sean Christophersond8dd54e2020-03-02 18:02:39 -080012209 work->arch.cr3 != vcpu->arch.mmu->get_guest_pgd(vcpu))
Xiao Guangrongfb67e142010-12-07 10:35:25 +080012210 return;
12211
Sean Christopherson7a026742020-02-06 14:14:34 -080012212 kvm_mmu_do_page_fault(vcpu, work->cr2_or_gpa, 0, true);
Gleb Natapov56028d02010-10-17 18:13:42 +020012213}
12214
Gleb Natapovaf585b92010-10-14 11:22:46 +020012215static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
12216{
Peter Xudd03bca2020-04-16 11:58:59 -040012217 BUILD_BUG_ON(!is_power_of_2(ASYNC_PF_PER_VCPU));
12218
Gleb Natapovaf585b92010-10-14 11:22:46 +020012219 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
12220}
12221
12222static inline u32 kvm_async_pf_next_probe(u32 key)
12223{
Peter Xudd03bca2020-04-16 11:58:59 -040012224 return (key + 1) & (ASYNC_PF_PER_VCPU - 1);
Gleb Natapovaf585b92010-10-14 11:22:46 +020012225}
12226
12227static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
12228{
12229 u32 key = kvm_async_pf_hash_fn(gfn);
12230
12231 while (vcpu->arch.apf.gfns[key] != ~0)
12232 key = kvm_async_pf_next_probe(key);
12233
12234 vcpu->arch.apf.gfns[key] = gfn;
12235}
12236
12237static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
12238{
12239 int i;
12240 u32 key = kvm_async_pf_hash_fn(gfn);
12241
Peter Xudd03bca2020-04-16 11:58:59 -040012242 for (i = 0; i < ASYNC_PF_PER_VCPU &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +080012243 (vcpu->arch.apf.gfns[key] != gfn &&
12244 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +020012245 key = kvm_async_pf_next_probe(key);
12246
12247 return key;
12248}
12249
12250bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
12251{
12252 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
12253}
12254
12255static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
12256{
12257 u32 i, j, k;
12258
12259 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
Peter Xu0fd46042020-04-16 11:59:10 -040012260
12261 if (WARN_ON_ONCE(vcpu->arch.apf.gfns[i] != gfn))
12262 return;
12263
Gleb Natapovaf585b92010-10-14 11:22:46 +020012264 while (true) {
12265 vcpu->arch.apf.gfns[i] = ~0;
12266 do {
12267 j = kvm_async_pf_next_probe(j);
12268 if (vcpu->arch.apf.gfns[j] == ~0)
12269 return;
12270 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
12271 /*
12272 * k lies cyclically in ]i,j]
12273 * | i.k.j |
12274 * |....j i.k.| or |.k..j i...|
12275 */
12276 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
12277 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
12278 i = j;
12279 }
12280}
12281
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020012282static inline int apf_put_user_notpresent(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020012283{
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020012284 u32 reason = KVM_PV_REASON_PAGE_NOT_PRESENT;
12285
12286 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &reason,
12287 sizeof(reason));
12288}
12289
12290static inline int apf_put_user_ready(struct kvm_vcpu *vcpu, u32 token)
12291{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012292 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
Paolo Bonzini4e335d92017-05-02 16:20:18 +020012293
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012294 return kvm_write_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
12295 &token, offset, sizeof(token));
12296}
12297
12298static inline bool apf_pageready_slot_free(struct kvm_vcpu *vcpu)
12299{
12300 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
12301 u32 val;
12302
12303 if (kvm_read_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
12304 &val, offset, sizeof(val)))
12305 return false;
12306
12307 return !val;
Gleb Natapov7c907052010-10-14 11:22:53 +020012308}
12309
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012310static bool kvm_can_deliver_async_pf(struct kvm_vcpu *vcpu)
12311{
12312 if (!vcpu->arch.apf.delivery_as_pf_vmexit && is_guest_mode(vcpu))
12313 return false;
12314
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012315 if (!kvm_pv_async_pf_enabled(vcpu) ||
Jason Baronb36464772021-01-14 22:27:56 -050012316 (vcpu->arch.apf.send_user_only && static_call(kvm_x86_get_cpl)(vcpu) == 0))
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012317 return false;
12318
12319 return true;
12320}
12321
12322bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu)
12323{
12324 if (unlikely(!lapic_in_kernel(vcpu) ||
12325 kvm_event_needs_reinjection(vcpu) ||
12326 vcpu->arch.exception.pending))
12327 return false;
12328
12329 if (kvm_hlt_in_guest(vcpu->kvm) && !kvm_can_deliver_async_pf(vcpu))
12330 return false;
12331
12332 /*
12333 * If interrupts are off we cannot even use an artificial
12334 * halt state.
12335 */
Paolo Bonzinic300ab92020-04-23 14:08:58 -040012336 return kvm_arch_interrupt_allowed(vcpu);
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012337}
12338
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012339bool kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
Gleb Natapovaf585b92010-10-14 11:22:46 +020012340 struct kvm_async_pf *work)
12341{
Avi Kivity6389ee92010-11-29 16:12:30 +020012342 struct x86_exception fault;
12343
Sean Christopherson736c2912019-12-06 15:57:14 -080012344 trace_kvm_async_pf_not_present(work->arch.token, work->cr2_or_gpa);
Gleb Natapovaf585b92010-10-14 11:22:46 +020012345 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +020012346
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012347 if (kvm_can_deliver_async_pf(vcpu) &&
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020012348 !apf_put_user_notpresent(vcpu)) {
Avi Kivity6389ee92010-11-29 16:12:30 +020012349 fault.vector = PF_VECTOR;
12350 fault.error_code_valid = true;
12351 fault.error_code = 0;
12352 fault.nested_page_fault = false;
12353 fault.address = work->arch.token;
Wanpeng Liadfe20f2017-07-13 18:30:41 -070012354 fault.async_page_fault = true;
Avi Kivity6389ee92010-11-29 16:12:30 +020012355 kvm_inject_page_fault(vcpu, &fault);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012356 return true;
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012357 } else {
12358 /*
12359 * It is not possible to deliver a paravirtualized asynchronous
12360 * page fault, but putting the guest in an artificial halt state
12361 * can be beneficial nevertheless: if an interrupt arrives, we
12362 * can deliver it timely and perhaps the guest will schedule
12363 * another process. When the instruction that triggered a page
12364 * fault is retried, hopefully the page will be ready in the host.
12365 */
12366 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012367 return false;
Gleb Natapov7c907052010-10-14 11:22:53 +020012368 }
Gleb Natapovaf585b92010-10-14 11:22:46 +020012369}
12370
12371void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
12372 struct kvm_async_pf *work)
12373{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012374 struct kvm_lapic_irq irq = {
12375 .delivery_mode = APIC_DM_FIXED,
12376 .vector = vcpu->arch.apf.vec
12377 };
Avi Kivity6389ee92010-11-29 16:12:30 +020012378
chai wenf2e10662013-10-14 22:22:33 +080012379 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +020012380 work->arch.token = ~0; /* broadcast wakeup */
12381 else
12382 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
Sean Christopherson736c2912019-12-06 15:57:14 -080012383 trace_kvm_async_pf_ready(work->arch.token, work->cr2_or_gpa);
Gleb Natapov7c907052010-10-14 11:22:53 +020012384
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012385 if ((work->wakeup_all || work->notpresent_injected) &&
12386 kvm_pv_async_pf_enabled(vcpu) &&
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020012387 !apf_put_user_ready(vcpu, work->arch.token)) {
12388 vcpu->arch.apf.pageready_pending = true;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012389 kvm_apic_set_irq(vcpu, &irq, NULL);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020012390 }
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012391
Xiao Guangronge6d53e32010-11-01 17:01:28 +080012392 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +030012393 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +020012394}
12395
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020012396void kvm_arch_async_page_present_queued(struct kvm_vcpu *vcpu)
12397{
12398 kvm_make_request(KVM_REQ_APF_READY, vcpu);
12399 if (!vcpu->arch.apf.pageready_pending)
12400 kvm_vcpu_kick(vcpu);
12401}
12402
Vitaly Kuznetsov7c0ade62020-05-25 16:41:18 +020012403bool kvm_arch_can_dequeue_async_page_present(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020012404{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012405 if (!kvm_pv_async_pf_enabled(vcpu))
Gleb Natapov7c907052010-10-14 11:22:53 +020012406 return true;
12407 else
Vitaly Kuznetsov2f15d022021-04-22 11:29:48 +020012408 return kvm_lapic_enabled(vcpu) && apf_pageready_slot_free(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020012409}
12410
Paolo Bonzini5544eb92015-07-07 15:41:58 +020012411void kvm_arch_start_assignment(struct kvm *kvm)
12412{
Marcelo Tosatti57ab8792021-05-25 10:41:16 -030012413 if (atomic_inc_return(&kvm->arch.assigned_device_count) == 1)
12414 static_call_cond(kvm_x86_start_assignment)(kvm);
Paolo Bonzini5544eb92015-07-07 15:41:58 +020012415}
12416EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
12417
12418void kvm_arch_end_assignment(struct kvm *kvm)
12419{
12420 atomic_dec(&kvm->arch.assigned_device_count);
12421}
12422EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
12423
12424bool kvm_arch_has_assigned_device(struct kvm *kvm)
12425{
12426 return atomic_read(&kvm->arch.assigned_device_count);
12427}
12428EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
12429
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060012430void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
12431{
12432 atomic_inc(&kvm->arch.noncoherent_dma_count);
12433}
12434EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
12435
12436void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
12437{
12438 atomic_dec(&kvm->arch.noncoherent_dma_count);
12439}
12440EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
12441
12442bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
12443{
12444 return atomic_read(&kvm->arch.noncoherent_dma_count);
12445}
12446EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
12447
Alex Williamson14717e22016-05-05 11:58:35 -060012448bool kvm_arch_has_irq_bypass(void)
12449{
Sean Christopherson92735b12019-08-02 15:06:17 -070012450 return true;
Alex Williamson14717e22016-05-05 11:58:35 -060012451}
12452
Feng Wu87276882015-09-18 22:29:40 +080012453int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
12454 struct irq_bypass_producer *prod)
12455{
12456 struct kvm_kernel_irqfd *irqfd =
12457 container_of(cons, struct kvm_kernel_irqfd, consumer);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012458 int ret;
Feng Wu87276882015-09-18 22:29:40 +080012459
Alex Williamson14717e22016-05-05 11:58:35 -060012460 irqfd->producer = prod;
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012461 kvm_arch_start_assignment(irqfd->kvm);
Jason Baronb36464772021-01-14 22:27:56 -050012462 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm,
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012463 prod->irq, irqfd->gsi, 1);
Feng Wu87276882015-09-18 22:29:40 +080012464
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012465 if (ret)
12466 kvm_arch_end_assignment(irqfd->kvm);
12467
12468 return ret;
Feng Wu87276882015-09-18 22:29:40 +080012469}
12470
12471void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
12472 struct irq_bypass_producer *prod)
12473{
12474 int ret;
12475 struct kvm_kernel_irqfd *irqfd =
12476 container_of(cons, struct kvm_kernel_irqfd, consumer);
12477
Feng Wu87276882015-09-18 22:29:40 +080012478 WARN_ON(irqfd->producer != prod);
12479 irqfd->producer = NULL;
12480
12481 /*
12482 * When producer of consumer is unregistered, we change back to
12483 * remapped mode, so we can re-use the current implementation
Andrea Gelminibb3541f2016-05-21 14:14:44 +020012484 * when the irq is masked/disabled or the consumer side (KVM
Feng Wu87276882015-09-18 22:29:40 +080012485 * int this case doesn't want to receive the interrupts.
12486 */
Jason Baronb36464772021-01-14 22:27:56 -050012487 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm, prod->irq, irqfd->gsi, 0);
Feng Wu87276882015-09-18 22:29:40 +080012488 if (ret)
12489 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
12490 " fails: %d\n", irqfd->consumer.token, ret);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012491
12492 kvm_arch_end_assignment(irqfd->kvm);
Feng Wu87276882015-09-18 22:29:40 +080012493}
12494
12495int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
12496 uint32_t guest_irq, bool set)
12497{
Jason Baronb36464772021-01-14 22:27:56 -050012498 return static_call(kvm_x86_update_pi_irte)(kvm, host_irq, guest_irq, set);
Feng Wu87276882015-09-18 22:29:40 +080012499}
12500
Longpeng(Mike)515a0c72021-08-27 16:00:03 +080012501bool kvm_arch_irqfd_route_changed(struct kvm_kernel_irq_routing_entry *old,
12502 struct kvm_kernel_irq_routing_entry *new)
12503{
12504 if (new->type != KVM_IRQ_ROUTING_MSI)
12505 return true;
12506
12507 return !!memcmp(&old->msi, &new->msi, sizeof(new->msi));
12508}
12509
Feng Wu520040142016-01-25 16:53:33 +080012510bool kvm_vector_hashing_enabled(void)
12511{
12512 return vector_hashing;
12513}
Feng Wu520040142016-01-25 16:53:33 +080012514
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012515bool kvm_arch_no_poll(struct kvm_vcpu *vcpu)
12516{
12517 return (vcpu->arch.msr_kvm_poll_control & 1) == 0;
12518}
12519EXPORT_SYMBOL_GPL(kvm_arch_no_poll);
12520
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012521
12522int kvm_spec_ctrl_test_value(u64 value)
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012523{
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012524 /*
12525 * test that setting IA32_SPEC_CTRL to given value
12526 * is allowed by the host processor
12527 */
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012528
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012529 u64 saved_value;
12530 unsigned long flags;
12531 int ret = 0;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012532
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012533 local_irq_save(flags);
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012534
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012535 if (rdmsrl_safe(MSR_IA32_SPEC_CTRL, &saved_value))
12536 ret = 1;
12537 else if (wrmsrl_safe(MSR_IA32_SPEC_CTRL, value))
12538 ret = 1;
12539 else
12540 wrmsrl(MSR_IA32_SPEC_CTRL, saved_value);
12541
12542 local_irq_restore(flags);
12543
12544 return ret;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012545}
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012546EXPORT_SYMBOL_GPL(kvm_spec_ctrl_test_value);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012547
Mohammed Gamal89786142020-07-10 17:48:03 +020012548void kvm_fixup_and_inject_pf_error(struct kvm_vcpu *vcpu, gva_t gva, u16 error_code)
12549{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +080012550 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Mohammed Gamal89786142020-07-10 17:48:03 +020012551 struct x86_exception fault;
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040012552 u32 access = error_code &
12553 (PFERR_WRITE_MASK | PFERR_FETCH_MASK | PFERR_USER_MASK);
Mohammed Gamal89786142020-07-10 17:48:03 +020012554
12555 if (!(error_code & PFERR_PRESENT_MASK) ||
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +080012556 mmu->gva_to_gpa(vcpu, mmu, gva, access, &fault) != UNMAPPED_GVA) {
Mohammed Gamal89786142020-07-10 17:48:03 +020012557 /*
12558 * If vcpu->arch.walk_mmu->gva_to_gpa succeeded, the page
12559 * tables probably do not match the TLB. Just proceed
12560 * with the error code that the processor gave.
12561 */
12562 fault.vector = PF_VECTOR;
12563 fault.error_code_valid = true;
12564 fault.error_code = error_code;
12565 fault.nested_page_fault = false;
12566 fault.address = gva;
12567 }
12568 vcpu->arch.walk_mmu->inject_page_fault(vcpu, &fault);
12569}
12570EXPORT_SYMBOL_GPL(kvm_fixup_and_inject_pf_error);
Carsten Otte043405e2007-10-10 17:16:19 +020012571
Babu Moger3f3393b2020-09-11 14:29:05 -050012572/*
12573 * Handles kvm_read/write_guest_virt*() result and either injects #PF or returns
12574 * KVM_EXIT_INTERNAL_ERROR for cases not currently handled by KVM. Return value
12575 * indicates whether exit to userspace is needed.
12576 */
12577int kvm_handle_memory_failure(struct kvm_vcpu *vcpu, int r,
12578 struct x86_exception *e)
12579{
12580 if (r == X86EMUL_PROPAGATE_FAULT) {
12581 kvm_inject_emulated_page_fault(vcpu, e);
12582 return 1;
12583 }
12584
12585 /*
12586 * In case kvm_read/write_guest_virt*() failed with X86EMUL_IO_NEEDED
12587 * while handling a VMX instruction KVM could've handled the request
12588 * correctly by exiting to userspace and performing I/O but there
12589 * doesn't seem to be a real use-case behind such requests, just return
12590 * KVM_EXIT_INTERNAL_ERROR for now.
12591 */
David Edmondsone615e352021-09-20 11:37:36 +010012592 kvm_prepare_emulation_failure_exit(vcpu);
Babu Moger3f3393b2020-09-11 14:29:05 -050012593
12594 return 0;
12595}
12596EXPORT_SYMBOL_GPL(kvm_handle_memory_failure);
12597
Babu Moger97150922020-09-11 14:29:12 -050012598int kvm_handle_invpcid(struct kvm_vcpu *vcpu, unsigned long type, gva_t gva)
12599{
12600 bool pcid_enabled;
12601 struct x86_exception e;
Babu Moger97150922020-09-11 14:29:12 -050012602 struct {
12603 u64 pcid;
12604 u64 gla;
12605 } operand;
12606 int r;
12607
12608 r = kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e);
12609 if (r != X86EMUL_CONTINUE)
12610 return kvm_handle_memory_failure(vcpu, r, &e);
12611
12612 if (operand.pcid >> 12 != 0) {
12613 kvm_inject_gp(vcpu, 0);
12614 return 1;
12615 }
12616
12617 pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
12618
12619 switch (type) {
12620 case INVPCID_TYPE_INDIV_ADDR:
12621 if ((!pcid_enabled && (operand.pcid != 0)) ||
12622 is_noncanonical_address(operand.gla, vcpu)) {
12623 kvm_inject_gp(vcpu, 0);
12624 return 1;
12625 }
12626 kvm_mmu_invpcid_gva(vcpu, operand.gla, operand.pcid);
12627 return kvm_skip_emulated_instruction(vcpu);
12628
12629 case INVPCID_TYPE_SINGLE_CTXT:
12630 if (!pcid_enabled && (operand.pcid != 0)) {
12631 kvm_inject_gp(vcpu, 0);
12632 return 1;
12633 }
12634
Sean Christopherson21823fb2021-06-09 16:42:24 -070012635 kvm_invalidate_pcid(vcpu, operand.pcid);
Babu Moger97150922020-09-11 14:29:12 -050012636 return kvm_skip_emulated_instruction(vcpu);
12637
12638 case INVPCID_TYPE_ALL_NON_GLOBAL:
12639 /*
12640 * Currently, KVM doesn't mark global entries in the shadow
12641 * page tables, so a non-global flush just degenerates to a
12642 * global flush. If needed, we could optimize this later by
12643 * keeping track of global entries in shadow page tables.
12644 */
12645
12646 fallthrough;
12647 case INVPCID_TYPE_ALL_INCL_GLOBAL:
Sean Christopherson28f28d42021-06-09 16:42:30 -070012648 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Babu Moger97150922020-09-11 14:29:12 -050012649 return kvm_skip_emulated_instruction(vcpu);
12650
12651 default:
Vipin Sharma796c83c2021-11-09 17:44:26 +000012652 kvm_inject_gp(vcpu, 0);
12653 return 1;
Babu Moger97150922020-09-11 14:29:12 -050012654 }
12655}
12656EXPORT_SYMBOL_GPL(kvm_handle_invpcid);
12657
Tom Lendacky8f423a82020-12-10 11:09:53 -060012658static int complete_sev_es_emulated_mmio(struct kvm_vcpu *vcpu)
12659{
12660 struct kvm_run *run = vcpu->run;
12661 struct kvm_mmio_fragment *frag;
12662 unsigned int len;
12663
12664 BUG_ON(!vcpu->mmio_needed);
12665
12666 /* Complete previous fragment */
12667 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
12668 len = min(8u, frag->len);
12669 if (!vcpu->mmio_is_write)
12670 memcpy(frag->data, run->mmio.data, len);
12671
12672 if (frag->len <= 8) {
12673 /* Switch to the next fragment. */
12674 frag++;
12675 vcpu->mmio_cur_fragment++;
12676 } else {
12677 /* Go forward to the next mmio piece. */
12678 frag->data += len;
12679 frag->gpa += len;
12680 frag->len -= len;
12681 }
12682
12683 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
12684 vcpu->mmio_needed = 0;
12685
12686 // VMG change, at this point, we're always done
12687 // RIP has already been advanced
12688 return 1;
12689 }
12690
12691 // More MMIO is needed
12692 run->mmio.phys_addr = frag->gpa;
12693 run->mmio.len = min(8u, frag->len);
12694 run->mmio.is_write = vcpu->mmio_is_write;
12695 if (run->mmio.is_write)
12696 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
12697 run->exit_reason = KVM_EXIT_MMIO;
12698
12699 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12700
12701 return 0;
12702}
12703
12704int kvm_sev_es_mmio_write(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12705 void *data)
12706{
12707 int handled;
12708 struct kvm_mmio_fragment *frag;
12709
12710 if (!data)
12711 return -EINVAL;
12712
12713 handled = write_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12714 if (handled == bytes)
12715 return 1;
12716
12717 bytes -= handled;
12718 gpa += handled;
12719 data += handled;
12720
12721 /*TODO: Check if need to increment number of frags */
12722 frag = vcpu->mmio_fragments;
12723 vcpu->mmio_nr_fragments = 1;
12724 frag->len = bytes;
12725 frag->gpa = gpa;
12726 frag->data = data;
12727
12728 vcpu->mmio_needed = 1;
12729 vcpu->mmio_cur_fragment = 0;
12730
12731 vcpu->run->mmio.phys_addr = gpa;
12732 vcpu->run->mmio.len = min(8u, frag->len);
12733 vcpu->run->mmio.is_write = 1;
12734 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
12735 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12736
12737 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12738
12739 return 0;
12740}
12741EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_write);
12742
12743int kvm_sev_es_mmio_read(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12744 void *data)
12745{
12746 int handled;
12747 struct kvm_mmio_fragment *frag;
12748
12749 if (!data)
12750 return -EINVAL;
12751
12752 handled = read_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12753 if (handled == bytes)
12754 return 1;
12755
12756 bytes -= handled;
12757 gpa += handled;
12758 data += handled;
12759
12760 /*TODO: Check if need to increment number of frags */
12761 frag = vcpu->mmio_fragments;
12762 vcpu->mmio_nr_fragments = 1;
12763 frag->len = bytes;
12764 frag->gpa = gpa;
12765 frag->data = data;
12766
12767 vcpu->mmio_needed = 1;
12768 vcpu->mmio_cur_fragment = 0;
12769
12770 vcpu->run->mmio.phys_addr = gpa;
12771 vcpu->run->mmio.len = min(8u, frag->len);
12772 vcpu->run->mmio.is_write = 0;
12773 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12774
12775 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12776
12777 return 0;
12778}
12779EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_read);
12780
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012781static int kvm_sev_es_outs(struct kvm_vcpu *vcpu, unsigned int size,
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012782 unsigned int port);
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012783
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012784static int complete_sev_es_emulated_outs(struct kvm_vcpu *vcpu)
12785{
12786 int size = vcpu->arch.pio.size;
12787 int port = vcpu->arch.pio.port;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012788
12789 vcpu->arch.pio.count = 0;
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012790 if (vcpu->arch.sev_pio_count)
12791 return kvm_sev_es_outs(vcpu, size, port);
12792 return 1;
12793}
12794
12795static int kvm_sev_es_outs(struct kvm_vcpu *vcpu, unsigned int size,
12796 unsigned int port)
12797{
12798 for (;;) {
12799 unsigned int count =
12800 min_t(unsigned int, PAGE_SIZE / size, vcpu->arch.sev_pio_count);
12801 int ret = emulator_pio_out(vcpu, size, port, vcpu->arch.sev_pio_data, count);
12802
12803 /* memcpy done already by emulator_pio_out. */
12804 vcpu->arch.sev_pio_count -= count;
12805 vcpu->arch.sev_pio_data += count * vcpu->arch.pio.size;
12806 if (!ret)
12807 break;
12808
12809 /* Emulation done by the kernel. */
12810 if (!vcpu->arch.sev_pio_count)
12811 return 1;
12812 }
12813
12814 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_outs;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012815 return 0;
12816}
12817
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012818static int kvm_sev_es_ins(struct kvm_vcpu *vcpu, unsigned int size,
12819 unsigned int port);
12820
12821static void advance_sev_es_emulated_ins(struct kvm_vcpu *vcpu)
12822{
12823 unsigned count = vcpu->arch.pio.count;
12824 complete_emulator_pio_in(vcpu, vcpu->arch.sev_pio_data);
12825 vcpu->arch.sev_pio_count -= count;
12826 vcpu->arch.sev_pio_data += count * vcpu->arch.pio.size;
12827}
12828
Paolo Bonzini4fa4b382021-10-12 11:25:45 -040012829static int complete_sev_es_emulated_ins(struct kvm_vcpu *vcpu)
12830{
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012831 int size = vcpu->arch.pio.size;
12832 int port = vcpu->arch.pio.port;
Paolo Bonzini4fa4b382021-10-12 11:25:45 -040012833
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012834 advance_sev_es_emulated_ins(vcpu);
12835 if (vcpu->arch.sev_pio_count)
12836 return kvm_sev_es_ins(vcpu, size, port);
Paolo Bonzini4fa4b382021-10-12 11:25:45 -040012837 return 1;
12838}
12839
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012840static int kvm_sev_es_ins(struct kvm_vcpu *vcpu, unsigned int size,
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012841 unsigned int port)
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012842{
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012843 for (;;) {
12844 unsigned int count =
12845 min_t(unsigned int, PAGE_SIZE / size, vcpu->arch.sev_pio_count);
12846 if (!__emulator_pio_in(vcpu, size, port, count))
12847 break;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012848
Paolo Bonziniea724ea2021-10-12 10:51:55 -040012849 /* Emulation done by the kernel. */
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012850 advance_sev_es_emulated_ins(vcpu);
12851 if (!vcpu->arch.sev_pio_count)
12852 return 1;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012853 }
12854
Paolo Bonziniea724ea2021-10-12 10:51:55 -040012855 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_ins;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012856 return 0;
12857}
12858
12859int kvm_sev_es_string_io(struct kvm_vcpu *vcpu, unsigned int size,
12860 unsigned int port, void *data, unsigned int count,
12861 int in)
12862{
Paolo Bonziniea724ea2021-10-12 10:51:55 -040012863 vcpu->arch.sev_pio_data = data;
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012864 vcpu->arch.sev_pio_count = count;
12865 return in ? kvm_sev_es_ins(vcpu, size, port)
12866 : kvm_sev_es_outs(vcpu, size, port);
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012867}
12868EXPORT_SYMBOL_GPL(kvm_sev_es_string_io);
12869
Lorenzo Bresciad95df952020-12-23 14:45:07 +000012870EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_entry);
Carsten Otte043405e2007-10-10 17:16:19 +020012871EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
12872EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
12873EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
12874EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
12875EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
12876EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
12877EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
12878EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
12879EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
12880EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Sean Christopherson5497b952019-07-11 08:58:29 -070012881EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmenter_failed);
Carsten Otte043405e2007-10-10 17:16:19 +020012882EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
12883EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
12884EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
12885EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Peter Xu4f75bcc2019-09-06 10:17:22 +080012886EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window_update);
Carsten Otte043405e2007-10-10 17:16:19 +020012887EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
12888EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
12889EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
12890EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);
Suravee Suthikulpanitab56f8e2020-03-12 05:39:28 -050012891EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_ga_log);
Suravee Suthikulpanit24bbf742019-11-14 14:15:07 -060012892EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_apicv_update_request);
Maxim Levitsky8e819d72021-12-09 13:54:36 +020012893EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_apicv_accept_irq);
Tom Lendackyd523ab6b2020-12-10 11:09:48 -060012894EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_enter);
12895EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_exit);
Tom Lendacky59e38b52020-12-10 11:09:52 -060012896EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_enter);
12897EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_exit);